.market-options .select {
    max-width: 375px;
}

@media(max-width: 767px) {
    .market-options .select {
        max-width: 100%;
    }
}

.market-options .select-name {
    height: 57px;
    font-size: 20px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.market-options .select-name:after {
    top: 16px;
}

.product {
    position: relative;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    text-align: center;
    padding: 37px;
    padding-bottom: 130px;
}

@media(max-width: 767px) {
    .product {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 15px;
    }
    .market-block .item {
        max-width: 350px;
    }
}

.product-image-cont {
    width: 100%;
    height: 302px;
}

.product-image {
    width: 100%;
    height: 100%;
}

.product-desc p {
    line-height: 1.52;
}

.product .btn {
    width: 100%;
    padding: 18px 15px 15px 15px;
}

.product .btn-block {
    position: absolute;
    width: 100%;
    bottom: 37px;
    left: 0;
    padding: 0 37px;
}

@media(max-width: 767px) {
    .product .btn-block {
        padding: 0 15px;
    }
}

.grid-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 57px;
    width: 57px;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    margin-right: 12px;
    transition: .3s;
}

.grid-item:hover {
    background-color: #d2ecff;
    transition: .3s;
}

.grid-item:last-child {
    margin-right: 0;
}

.grid-item svg {
    height: 24px;
    fill: #000;
}

@media(max-width: 767px) {
    .grid-items {
        order: -1;
        width: 100%;
        justify-content: center;
        padding-bottom: 15px;
    }
}