.tabs {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
}

.tabs .tab {
    padding-bottom: 5px;
    border-bottom: 1px solid #C4C4C4;
    display: flex;
    justify-content: center;
    flex-grow: 1;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: #868A9D;
}

.tabs .tab.active,
.tabs .tab:hover {
    cursor: pointer;
    color: #515461;
    border-color: #DF0008;
}

.tabs .tab:first-child {
    justify-content: flex-start;
}

.tabs__block .block {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #515461;
}

@media (max-width: 768px) {
    .tabs {
        flex-direction: column;
        gap: 20px;
    }

    .tabs .tab {
        width: fit-content;
        padding-right: 20px;
        border: none;
        justify-content: flex-start;
        flex-grow: 0;
    }

    .tabs .tab.active,
    .tabs .tab:hover {
        border-bottom: 1px solid #DF0008;
    }
}

.sectionBanner {
    margin-bottom: 20px;
    padding: 25px 60px 30px;
    border-radius: 10px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #373C3F;
    color: white;
    background-repeat: no-repeat;
    background-position-x: right;
    background-size: contain;
}



@media (max-width: 768px) {
    .sectionBanner {
        background-size: cover;
    }

    .sectionBanner:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,.5);
        z-index: 1;
    }
}

.sectionBanner__title {
    margin-bottom: 20px;
    font-family: 'NeueMachinaBold';
    font-weight: 700;
    font-size: 20px;
    line-height: 19px;
    z-index: 2;
}

.sectionBanner__text {
    max-width: 400px;
    margin-bottom: 10px;
    /*font-family: 'HelveticaNeueCyrLight', Helvetica, Arial, sans-serif;*/
    font-size: 16px;
    line-height: 130%;
    z-index: 2;
}

.sectionBanner__btn {
    max-width: 174px;
    padding: 13px 0;
    border: 1px solid #fff;
    border-radius: 3px;
    font-size: 14px;
    line-height: 13px;
    text-align: center;
    color: #fff;
    z-index: 2;
    cursor: pointer;
}

@media (max-width: 768px) {
    .sectionBanner {
        padding: 15px;

    }

    .sectionBanner__title,
    .sectionBanner__text {
        margin-bottom: 30px;
    }

    .sectionBanner__btn {
        max-width: 100%;
    }
}

.product-detail-info__big-pic .img img {
    display: block !important;
}

.product-detail-info {
    position: relative;
}

.product-detail-info .delay-btn {
    background: url(/local/static/icons/1g_heart_gray.svg) no-repeat;
    position: absolute;
    right: 0;
    top: 0;
    width: 26px;
    height: 26px;
    background-size: contain;
}

.product-detail-info .delay-btn.is-active {
    background-size: contain;
}