/*subscribe popup*/
.subscribe__btn-wrapper {
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 99999;

}

.subscribe__popup .mfp-close {
    right: 30px !important;
    top: 33px !important;
    width: 21px !important;
    height: 21px !important;
}

.subscribe__btn {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mfp-wrap:has(.subscribe__popup) {
    background: rgba(0, 0, 0, 0.5);
    padding: 0 15px;
}

.mfp-content:has(.subscribe__popup) {
    padding: 0 15px;
}

.subscribe__popup {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;

}

.subscribe__popup-content {
    background: white;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    grid-gap: 10px;

}

.subscribe__popup-content .img__side {
    max-height: clamp(580px, 70vh, 740px);
}

.subscribe__popup-content .img__side picture {
    width: 100%;
    height: 100%;
    display: flex;
}

.subscribe__popup-content .img__side picture img {
    width: 100%;
    object-fit: cover;
}

.subscribe__popup-content .title__side {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 42px 30px;
    max-width: 600px;
    margin: 0 auto;
}

.subscribe__popup-content .title__header {
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.2;
    text-align: center;
    color: black;
    margin: 0 auto 20px;
    font-weight: 600;
    text-transform: uppercase;
    max-width: 400px;
}

.subscribe__popup-second .subscribe__popup-content .side__description {
    text-align: center;
    max-width: 550px;
    margin: 0 auto 30px;
}

.subscribe__popup-content .side__description {
    font-size: clamp(14px, 1.5vw, 18px);
    line-height: 1.5;
    text-align: left;
    color: black;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 5px;

}

.subscribe__popup-content .side__description span {
    display: inline-flex;
    align-items: center;
}

.subscribe__popup-content .side__description img {
    margin: 0 5px;
}

.subscribe__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;

}

.subscribe__form .input__wrapper .error__field_email,
.subscribe__form .input__wrapper .error__field {
    display: none;
    font-size: 12px;
    line-height: 14px;
    color: red;

}

.subscribe__form .input__wrapper.has-error-email .error__field_email,
.subscribe__form .input__wrapper.has-error .error__field {
    display: block;
    border-top: 10px;
}

.subscribe__form .input__wrapper.has-error .input, .subscribe__form .input__wrapper.has-error-email input {
    border-color: red;

}

.subscribe__form .input__wrapper .input {
    height: 60px;
    padding: 0 35px;
    border: 1px solid #f5f5f5;
    width: 100%;
}

.subscribe__form .input__wrapper.checkbox__wrapper {
    margin-top: 20px;
}

.subscribe__form .input__wrapper.checkbox__wrapper .label {
    display: grid;
    grid-template-columns: 13px 1fr;
    grid-gap: 10px;
    align-items: center;
    font-size: 13px;
    line-height: 18px;
    cursor: pointer;
}

.subscribe__form .input__wrapper.checkbox__wrapper .c__checkbox {
    width: 13px;
    height: 13px;
    appearance: none;
    display: inline-block;
    border: 3px solid #000;


}

.subscribe__form .input__wrapper.checkbox__wrapper .c__checkbox:checked {
    background: black url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2211%22%20viewBox%3D%220%200%2014%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23fff%22%20points%3D%2212%201%205%207.5%202%205%201%205.5%205%2010%2013%201.5%22%20%2F%3E%0A%3C%2Fsvg%3E%0A") no-repeat center/cover;
}

.mfp-bg {
    z-index: 9999999 !important;
}

.subscribe__submit-btn {
    width: 100%;
    height: 60px;
    background-color: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    font-weight: 700;
    font-size: 22px;
    line-height: 22px;
    text-align: center;
    cursor: pointer;
}

.subscribe__submit-btn[disabled] {
    background-color: #cccccc;
}

.footer__new-subscribe .footer__subscribe-header {
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    color: white;
    margin-bottom: 40px;
}

.footer__subscribe-title {
    font-size: 14px;
    line-height: 24px;
    color: white;
    margin-bottom: 34px;
}

.footer__subscribe-btn {
    width: 100%;
    background: white;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 5px;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    max-width: 500px;
}


@media (max-width: 992px) {
    .subscribe__popup .mfp-close {
        right: 20px !important;
        top: 20px !important;
    }

    .subscribe__btn-wrapper {
        right: 10px;
        bottom: 60px;
    }

    .subscribe__btn-wrapper .subscribe__btn {
        width: 90px;
        height: auto;
    }
}

@media (max-width: 768px) {
    .subscribe__popup-content {
        grid-template-columns: 1fr;


    }

    .subscribe__popup-second .subscribe__popup-content .title__side {
        padding-top: 73px;
        padding-bottom: 43px;
    }

    .subscribe__popup-first.subscribe__popup .subscribe__popup-content .img__side {
        display: none;
    }


    .subscribe__popup .subscribe__popup-content {
        display: flex;
        flex-direction: column-reverse;
        grid-template-columns: initial;
        grid-gap: initial;
    }

    .subscribe__popup .subscribe__popup-content .img__side {
        display: flex;
        height: auto;
    }

    @media (max-width: 500px) {
        .subscribe__popup-content .side__description span {
            display: flex;
            width: 100%;
        }
    }


}

/* ---- subscribe popup  end ---- */


.select2-container {
    z-index: 99999999;
}

.datepicker-dropdown {
    z-index: 99999999 !important;
}

.page .main {
    z-index: 1;
}


.main-screen:before {
    display: none;
}


@media only screen and (min-width: 1280px) {
    .footer__logo {
        width: 100%;
    }

    .main-screen__container {
        padding-top: 16.9375vw;
    }

}


@media only screen and (min-width: 1600px) {
    .main-screen__container {
        padding-top: 19.9375vw;
    }

    .main-screen__media {
        object-fit: fill;
    }
}

@media only screen and (max-width: 766px) {
    .main-screen .main-screen__buttons {
        padding-top: 5.4em;
    }
}

@media only screen and (min-width: 769px) {


    * {
        scrollbar-width: 16px;
        scrollbar-color: #c4c4c4 #fff;
    }

    ::-webkit-scrollbar {
        width: 16px;
        height: 16px;
    }

    ::-webkit-scrollbar-corner,
    ::-webkit-scrollbar-track {
        background-color: #ffffff;
        border-left: 1px solid #a0a0a0;
        border-right: 1px solid #a0a0a0;
    }

    ::-webkit-scrollbar-thumb {
        background-color: #c4c4c4;
        background-clip: padding-box;
        border: 0px solid transparent;
    }

    ::-webkit-scrollbar-thumb:hover {
        background-color: #a6a6a6;
    }

    ::-webkit-scrollbar-thumb:active {
        background-color: #9a9a9a;
    }

    /* Buttons */
    ::-webkit-scrollbar-button:single-button {
        background-color: #ffffff;
        display: block;
        background-size: 8px;
        background-repeat: no-repeat;
        border: 1px solid #a0a0a0;
        border-radius: 3px;
    }

    /* Up */
    ::-webkit-scrollbar-button:single-button:vertical:decrement {
        height: 16px;
        width: 16px;
        background-position: center 5px;
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='rgb(96, 96, 96)'><polygon points='50,00 0,50 100,50'/></svg>");
    }

    ::-webkit-scrollbar-button:single-button:vertical:decrement:hover {
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='rgb(112, 112, 112)'><polygon points='50,00 0,50 100,50'/></svg>");
    }

    ::-webkit-scrollbar-button:single-button:vertical:decrement:active {
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='rgb(128, 128, 128)'><polygon points='50,00 0,50 100,50'/></svg>");
    }

    /* Down */
    ::-webkit-scrollbar-button:single-button:vertical:increment {
        height: 16px;
        width: 16px;
        background-position: center 5px;
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='rgb(96, 96, 96)'><polygon points='0,0 100,0 50,50'/></svg>");
    }

    ::-webkit-scrollbar-button:single-button:vertical:increment:hover {
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='rgb(112, 112, 112)'><polygon points='0,0 100,0 50,50'/></svg>");
    }

    ::-webkit-scrollbar-button:single-button:vertical:increment:active {
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='rgb(128, 128, 128)'><polygon points='0,0 100,0 50,50'/></svg>");
    }

    /* Left */
    ::-webkit-scrollbar-button:single-button:horizontal:decrement {
        height: 12px;
        width: 12px;
        background-position: 3px 3px;
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='rgb(96, 96, 96)'><polygon points='0,50 50,100 50,0'/></svg>");

    }

    ::-webkit-scrollbar-button:single-button:horizontal:decrement:hover {
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='rgb(112, 112, 112)'><polygon points='0,50 50,100 50,0'/></svg>");
    }

    ::-webkit-scrollbar-button:single-button:horizontal:decrement:active {
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='rgb(128, 128, 128)'><polygon points='0,50 50,100 50,0'/></svg>");
    }

    /* Right */
    ::-webkit-scrollbar-button:single-button:horizontal:increment {
        height: 12px;
        width: 12px;
        background-position: 3px 3px;
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='rgb(96, 96, 96)'><polygon points='0,0 0,100 50,50'/></svg>");
    }

    ::-webkit-scrollbar-button:single-button:horizontal:increment:hover {
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='rgb(112, 112, 112)'><polygon points='0,0 0,100 50,50'/></svg>");
    }

    ::-webkit-scrollbar-button:single-button:horizontal:increment:active {
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='rgb(128, 128, 128)'><polygon points='0,0 0,100 50,50'/></svg>");
    }


}


.vdz_hidden {
    display: none !important;
}

/*.catalog-menu .item_id_22 .catalog-menu__item-text{*/
/*    min-width: 100px;*/
/*}*/
/*.catalog-menu .item_id_27 .catalog-menu__item-text{*/
/*    min-width: 90px;*/
/*}*/
@media screen and (min-width: 1280px) {
    .slider--gallery .slider__list {
        width: 20vw;
    }
}

@media screen and (min-width: 1400px) {
    .slider--gallery .slider__list {
        width: 17vw;
    }
}

@media screen and (min-width: 1921px) {
    .slider--gallery .slider__list {
        width: 16vw;
    }

    .slick-track {
        width: 100% !important;
        margin: 0 auto;
    }
}

@media screen and (min-width: 1280px) {
    .item-gallery__brand {
        width: 4.5vw;
        height: 3.8645833333vw;
    }
}

.slider--gallery-preview .slider__slide.slick-current {
    border-color: rgba(0, 0, 0, 0.4) !important;
}

.product-card__delivery,
.item-gallery__delivery {
    color: #ff7e00 !important;
    fill: #ff7e00 !important;
}

.item-gallery__delivery-block,
.item-gallery__brand {
    position: initial !important;
}

.slider--gallery {
    padding: 0;
    margin-top: 2.8em;
}

.slider--gallery .slider__list {
    height: auto;
}

.item-gallery {
    padding: 1.5625vw;
}

.item-info--article {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.4);
    margin-top: 15px;
    display: block;
}

.title--product {
    margin-bottom: 20px !important;
}

.section_product .slider__dots {
    height: 1rem !important;
}

.section_product .slider__dots .slick-dots {
    justify-content: center !important;
}

.section_product .slider__dots .slick-dots li,
.section_product .slider__dots .slick-dots li button,
.section_product .slider__dots .slick-dots li.slick-active,
.section_product .slider__dots .slick-dots li.slick-active button {
    width: 1rem !important;
    height: 1rem !important;
    border-radius: 50%;
}

.section_product .slider__dots .slick-dots li {
    margin-right: 15px;
}

.section_product .slider__dots .slick-dots li button {
    background-color: #828282 !important;
}

.section_product .slider__dots .slick-dots li.slick-active button {
    color: #c61617 !important;
    background-color: #c61617 !important;
}

.section_product .item-info__wrapper {
    position: relative;
    padding: 0;
    background: transparent;
}

.section_product .product_action-buttons {
    position: absolute;
    top: -55px;
    right: 0;
    display: flex;
    flex-wrap: wrap;
    max-width: 65px;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 25px;
    cursor: pointer;

}

.section_product .product_action-buttons button {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #000 !important;
    cursor: pointer;
}

.section_product .product_action-buttons .product_action-buttons-item * {
    color: #000 !important;
}

.section_product .product_action-buttons .product_action-buttons-item:hover *,
.section_product .product_action-buttons .product_action-buttons-item:hover {
    fill: #a6141e !important;
    color: #a6141e !important;
}

.section_product .product_action-buttons span {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    text-transform: none;
}

.product .item-info__wrapper {
    position: relative;
}

.product_action-buttons {
    position: absolute;
    top: 0;
    right: 0;
}

.section_product .product_action-buttons .share-button {
    /*margin-top: 15px;*/
}

.product_action-buttons-item {
    display: flex;
    flex-wrap: wrap;
    max-width: 60px;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 25px;
    cursor: pointer;
}

#share_popup .popup-hint {
    padding: 20px;
    max-width: 30vw;
}

#share_popup .ya-share2__container {
    display: flex;
    justify-content: center;
}

.tabs {
    background-color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 12px 50px !important;
    margin-left: 1.25rem;
    margin-top: 2.5rem;
}

.section_product .tabs [data-tab] {
    color: rgba(16, 16, 16, .4);
    font-weight: 600;
    padding-bottom: 2px;
    border-bottom: 2px solid rgba(16, 16, 16, .4);
    cursor: pointer;
}

.section_product .tabs [data-tab].active {
    color: #000;
    border-color: #000;
}

#main.section_product {
    margin-bottom: 2.5rem !important;
}

div[id^="section"].vdz_tab {
    display: none;
}

div[id^="section"].vdz_tab.active {
    display: block;
}

.page.show-card .button--favorits span {
    display: none;
}

.reviews_col {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    width: 50%;
    flex-basis: 50%;
    padding: 20px 15px;
    /*border-right: 1px solid #ecedef;*/
    /*border-left: 1px solid #ecedef;*/
    margin-bottom: 3rem;
}

.reviews-info {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    flex-basis: 100%;
    width: 100%;
}

.reviews-info > div {
    flex-basis: 50%;
}

.reviews-title {
    font-size: 20px;
    width: 100%;
    margin-bottom: 20px;
}

.reviews-total_rating {
    text-align: center;
    font-size: 5em;
    line-height: normal;
    color: #dea50c
}

.reviews-total_count {
    font-size: 0.8em;
    text-align: center;
}

.reviews-total {
    display: flex;
    flex-direction: column;
}

.reviews-rating_list--item {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reviews-rating_list--item progress {
    border-radius: 7px;
    width: 70%;
    height: 10px;
    margin: 0 5%;
    box-shadow: none;
}

.reviews-rating_list--item progress::-webkit-progress-bar {
    background-color: #ecedef;
    border-radius: 7px;
}

.reviews-rating_list--item progress::-webkit-progress-value {
    background-color: #a6141e;
    border-radius: 7px;
}

.reviews-timeline_body,
.reviews-timeline_header {
    display: flex;
}

.reviews-timeline_header .reviews-timeline_cell {
    font-size: 13px;
    color: #898d97
}

.reviews-timeline_body {
    border-top: 1px solid #ecedef;
    padding: 5px;
    margin-top: 10px;
}

.reviews-timeline_cell {
    width: 25%;
}

.reviews-tip {
    cursor: pointer;
    margin-top: 10px;
    display: flex;
    color: #a6141e;
}

.reviews-tip .cart__warning-icon {
    margin-left: 5px;
    font-size: 13px;
    width: 1.3em;
    height: 1.3em;
}

.product-reviews-info {
    display: flex;
    justify-content: center;
}

#reviews_popup_rating .popup-hint {
    padding: 20px;
}

.price_list_item {
    display: flex;
    width: 100%;
    justify-content: space-between;
    font-size: 2rem;
    line-height: 1.15625em;
    font-weight: 300;
    margin-bottom: 2rem;
}

.continue_shopping {
    margin: 20px auto;
    text-align: center;
}

.continue_shopping > a {
    margin: auto;
    max-width: 100%;
    width: 340px;
    font-size: 13px;
    padding: 9px;
    color: #000;
    border-color: #000;
}

.checkout--third-step .quantity__input, .cart .quantity__input, .list-quantity .quantity__input {
    padding: 0.12vw !important;
}

div[data-catalog-main] .button--favorits + span,
.slider__slide .button--favorits + span {
    display: none;
}

@media screen and (max-width: 767px) {
    .price_list_item {
        display: flex;
        font-size: 1.2rem;
        width: 100%;
        /*flex-direction: row-reverse;*/
    }

    .price_list_item ._justify-center {
        display: block !important;
        margin-bottom: 5px;
        margin-right: 15px;
    }

    .continue_shopping > a {
        max-width: 80%;
    }

    .section_product .tabs [data-tab] {
        display: block;
        margin-bottom: 8px;
        margin-right: 16px;
    }

    .product-reviews-info .reviews_col {
        width: 90%;
        flex-basis: 90%;
    }
}

.vdz_small_text {
    display: block;
    color: #BFBFBF;
    white-space: nowrap;
    font-size: 1rem;
}

@media screen and (min-width: 768px) {
    .product-card__price {
        font-size: 1rem;
        /*white-space: nowrap;*/
        margin-right: 10px;
    }
}

.price_list_item span b {
    font-size: 1.5rem;
}

.vdz_info_tabs {
    position: relative;
}

.vdz_info_tabs:after {
    position: relative;
    content: '';
    padding: 0 50px;
    border-bottom: 1px solid #C4C4C4;
    width: 100%;
    bottom: -1px;
    margin-top: 8px;
}

.section_product .tabs [data-tab].active {
    color: #BF1E2E !important;
}

.section_product .tabs.vdz_info_tabs [data-tab] {
    border-bottom: none !important;
    position: relative;
}

.section_product .tabs.vdz_info_tabs *[data-tab].active:before {
    display: block;
    position: absolute;
    content: '';
    bottom: -10px;
    width: 100%;
    z-index: 500;
    border-bottom: 1px solid #BF1E2E;
}

@media screen and (max-width: 767px) {
    .page.show-card {
        /*background-color: #fff;*/
    }

    .section_product .tabs.vdz_info_tabs [data-tab] {
        /*border-bottom: 1px solid !important;*/
    }

    .vdz_info_tabs {
        border-bottom: 1px solid #C4C4C4 !important;
    }

    .vdz_info_tabs:after {
        display: none;
    }

    .page.show-card .item-info--article {
        text-align: center;
        margin-top: 0;
    }

    .vdz_info_tabs {
        flex-wrap: initial;
        overflow-x: auto;
        padding: 5px 5px !important;
        padding-bottom: 8px !important;
    }

    .vdz_info_tabs > * {
        white-space: nowrap;
        margin-right: 10px;
    }

    .section_product .product_action-buttons {
        position: initial;
        max-width: 100%;
        margin-bottom: 0;
    }

    .section_product .product_action-buttons .product_action-buttons-item {
        /*margin-bottom: 0;*/
        margin: 0 15px;
    }

    div[class^="category_id_"] .stars {
        display: block;
    }

    div[class^="category_id_"] .stars .stars__text {
        margin-left: 0;
    }

    button[data-mobile-menu="mobile-filter"] {
        position: fixed;
        top: 110px;
        z-index: 900;
        background-color: #ECEDEF;
        padding: 5px !important;
        border-radius: 5px;
    }

    .breadcrumbs__wrapper {
        padding-top: 60px;
    }
}

div[class^="category_id_"] .product-card__title {
    font-weight: bold;
}

.product-card__prices .product-card__prices-item .product-card__price {
    font-size: 0.9rem;
    line-height: 1;
    width: 50%;
}

.product-card__prices .product-card__prices-item .product-card__price span {
    white-space: nowrap;
}

.product-card__prices .product-card__prices-item .product-card__price .vdz_small_text {
    white-space: break-spaces;
    font-size: 0.7rem;
    color: #BFBFBF;
}

.product-card__prices .product-card__prices-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.product-card__prices-item .quantity.list-quantity {
    width: 50%;
    border: none;
}

.cart-item__quantity .quantity__plus,
.cart-item__quantity .quantity__minus,
.product_price_list_items .quantity__plus,
.product_price_list_items .quantity__minus,
.product-card__prices-item .quantity__plus,
.product-card__prices-item .quantity__minus {
    background: #ECEDEF;
    border: 1px solid #000000 !important;
    border-radius: 7.5px;
}

.cart-item__quantity .quantity__plus:hover,
.cart-item__quantity .quantity__minus:hover,
.product_price_list_items .quantity__plus:hover,
.product_price_list_items .quantity__minus:hover,
.product-card__prices-item .quantity__plus:hover,
.product-card__prices-item .quantity__minus:hover {
    color: #fff !important;
    fill: #fff !important;
    background: #959595;
    transition: all linear 300ms;
}

.cart-item__quantity {
    border: none;
}

.product_price_list_items .quantity {
    border: none;
    min-width: 120px;
}

.cart-item__quantity .quantity__input,
.product_price_list_items .quantity__input,
.product-card__prices-item .list-quantity .quantity__input {
    background: #FFFFFF;
    border: 0.383269px solid #000000;
    margin: 0 2px;
}

.slider--products-list .product-card__title.product_card__title_w,
div[class^="category_id_"] .product-card__title.product_card__title_w {
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: #ECEDEF;
    border: 0.383269px solid #000000;
    border-radius: 8.5px;
    padding: 5px;
    height: auto;
    min-height: 42px;
    overflow: hidden;
}

div[class^="category_id_"].category_id_22 .product_id_97 .product-card__title.product_card__title_w {
    font-size: 9px;
    font-family: Roboto;
}

.slider--products-list .product-card__title.product_card__title_w > span:first-child,
div[class^="category_id_"] .product-card__title.product_card__title_w > span:first-child {
    height: auto !important;
    text-overflow: ellipsis;
    /*overflow: hidden;*/
    display: flex;
    align-items: center;
}

.slider--products-list .product-card__title.product_card__title_w > span:first-child {
    font-weight: bold;
}

.slider--products-list .product-card__title.product_card__title_w:hover,
div[class^="category_id_"] .product-card__title.product_card__title_w:hover {
    color: #fff;
    background: #959595;
    transition: all linear 400ms;
}

.slider--products-list .product-card__title.product_card__title_w:hover span.vdz_weight:before,
div[class^="category_id_"] .product-card__title.product_card__title_w:hover span.vdz_weight:before {
    transition: all linear 400ms;
    border-left: 1px solid #fff;
}

.slider--products-list .product-card__title.product_card__title_w span.vdz_weight,
div[class^="category_id_"] .product-card__title.product_card__title_w span.vdz_weight {
    display: block;
    position: relative;
    font-size: 14px;
    white-space: nowrap;
    display: inline-block;
    margin-left: 15px;
    font-weight: bold;
}

.slider--products-list .product-card__title.product_card__title_w span.vdz_weight:before,
div[class^="category_id_"] .product-card__title.product_card__title_w span.vdz_weight:before {
    content: '';
    display: block;
    border-left: 1px solid #000;
    min-height: 26px;
    position: absolute;
    top: -6px;
    left: -10px;
}

@media only screen and (min-width: 1280px) {

    .product-card__container {
        /*padding: 1.875rem 1rem 0;*/
        padding: 1rem 1rem 0;
    }
}

@media screen and (max-width: 768px) {
    .product-card__container {
        padding: 1.875rem 0.75rem 0;
    }

    div[class^="category_id_"] .product-card__title.product_card__title_w {
        font-size: 0.65rem;
    }

    .product-card__prices .product-card__prices-item .product-card__price {
        font-size: 0.75rem;
    }
}

.category_product_action_btns {
    position: absolute;
    top: 0;
    left: -20px;
    display: flex;
    flex-wrap: wrap;
    max-width: 50px;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    cursor: pointer;
}

.category_product_action_btns .favorite_wrapper,
.category_product_action_btns .share-button {
    display: flex;
    /* flex-basis: revert; */
    flex-wrap: wrap-reverse;
    justify-content: center;
    margin-bottom: 10px;
    cursor: pointer;
}

.category_product_action_btns .button--favorits {
    position: initial;
}

.category_product_action_btns .favorite_wrapper:hover svg,
.category_product_action_btns .share-button:hover svg {
    fill: #BF1E2E;
}

.category_product_action_btns .favorite_wrapper:hover,
.category_product_action_btns .share-button:hover {
    color: #BF1E2E;
}

.category_product_action_btns span {
    display: block !important;
    text-align: center;
    font-size: 0.45rem;
    font-weight: 600;
}

.category_product_action_btns span.item-info--article {
    display: block;
    font-weight: 500;
    color: #828282;
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
    margin-top: 0px;
}

.section .category_product_action_btns .favorite_wrapper,
.category_product_action_btns .product_action-buttons-item {
    display: none !important;
}

.favorite-list .category_product_action_btns .favorite_wrapper {
    display: block !important;
}

.category_product_action_btns {
    padding-right: 1rem !important;
}

.item-info__wrapper .continue_shopping > a {
    background: #ECEDEF;
    border: 0.381146px solid #000000;
    box-sizing: border-box;
    border-radius: 8.38521px;
}

.item-info__wrapper .continue_shopping > a:hover {
    background: #959595;
}

#section_description_wrapper {
    position: relative;
    top: -40px;
}

.product-card .product-card__brands {
    position: absolute;
    top: 0px;
    left: -15px;
}

.product-card .product-card__brand {
    width: 40px !important;
    height: 40px !important;
}

@media screen and (min-width: 1600px) {
    .product-card .product-card__brand {
        width: 50px !important;
        height: 50px !important;
    }
}

.product-card .product-card__image {
    align-items: normal;
    height: 14rem;
    margin-bottom: 10px;
}

.product-card__image img {
    max-width: 94%;
    max-height: 100%;
    margin: 0 auto;
}

.product-card__delivery svg {
    width: 24px;
    height: 24px;
}

.product-card__delivery {
    font-size: 8px;
    max-width: 90%;
    font-size: 7px;
    max-width: 150px;
    line-height: 150%;
}

@media screen and (max-width: 768px) {
    .product-card .product-card__image {
        height: 8.5rem;
    }

    .product-card__image img {
        max-width: 88%;
        max-height: 100%;
    }

    .category_product_action_btns span.item-info--article {
        margin-bottom: 25px;
    }

    button[data-mobile-menu="mobile-filter"] {
        bottom: 90px;
        top: initial;
    }

    .page.show-card .item-gallery__delivery {
        font-weight: 500;
        font-size: 10px;
        max-width: 220px;
    }

    .page.show-card .item-gallery__delivery svg {
        width: 20px;
        height: 20px;
    }

    .page.show-card .slider--gallery {
        margin-top: 0;
    }

    .page.show-card .item-gallery ._lg\:show {
        display: block !important;
        position: absolute;
        z-index: 500;
    }

    .page.show-card .item-gallery .slider--gallery-preview {
        display: none !important;
    }

    .page.show-card .item-gallery .item-gallery__brand {
        position: absolute;
    }

    .page.show-card .item-gallery .item-gallery__brand img {
        width: 50px;
        height: 50px;
    }

    .page.show-card .item-gallery .product_action-buttons .product_action-buttons-item {
        margin-bottom: 15px;
    }

    .page.show-card .item-gallery .product_action-buttons {
        position: absolute;
        top: 10px;
        right: -15px;
        display: block;
        z-index: 1000;
        padding-right: 10px;
    }

    #share_popup .popup-hint {
        max-width: 100vw;
    }

    .mfp-wrap,
    .mfp-content {
        z-index: 9999999999 !important;
    }

    .page.show-card .product_action-buttons .item-info--article {
        font-weight: 500;
        font-size: 9px;
        line-height: 12px;
        text-align: center;
        color: #828282;
        margin-bottom: 30px;
    }

    .page.show-card .product_action-buttons span {
        font-weight: 500;
        font-size: 8.40531px;
        line-height: 11px;
        text-align: center;
        color: #000000;
    }

    .page.show-card .product-card__title.product_card__title_w {
        padding: 8px 20px;
        display: flex;
        align-items: center;
        background: #ECEDEF;
        border: 0.383269px solid #000000;
        border-radius: 8.5px;
        padding: 5px;
        height: auto;
        min-height: 42px;
    }

    .page.show-card .product-card__title.product_card__title_w > span:first-child {
        /*height: auto !important;*/
        font-weight: 500;
        font-size: 16px;
        line-height: 20px;
        color: #000000;
    }

    .page.show-card .product-card__title.product_card__title_w span.vdz_weight {
        position: relative;
        white-space: nowrap;
        display: inline-block;
        margin-left: 20px;
        font-weight: 500;
        font-size: 18px;
        line-height: 23px;
        color: #000000;
    }

    .page.show-card .product-card__title.product_card__title_w span.vdz_weight:before {
        content: '';
        display: block;
        border-left: 1px solid #000;
        min-height: 24px;
        height: 100%;
        max-height: 100%;
        position: absolute;
        top: 0px;
        left: -10px;
    }

    .page.show-card .price_list_item span b {
        font-weight: 600;
        font-size: 21.5px;
        line-height: 28px;
    }

    .page.show-card .price_list_item span .vdz_small_text {
        font-weight: 500;
        font-size: 18px;
        line-height: 23px;
        color: #BFBFBF;
    }

    .page.show-card .product_price_list_items .quantity {
        width: 170px;
    }

    .page.show-card .quantity__plus,
    .page.show-card .quantity__minus {
        width: 25% !important;
    }
}

@media screen and (max-width: 448px) {
    div[class^="category_id_"] .vdz_product_cell {
        --m-mcw: 100%;
        width: 100%;
    }

    .product-card__image img {
        max-width: 100%;
        max-height: 100%;
    }

    .product-card .product-card__image {
        height: 12.5rem;
    }

    .product-card .product-card__brand {
        width: 3.125rem !important;
        height: 3.125rem !important;
    }

    .product-card .product-card__brands {
        position: initial;
    }

    .category_product_action_btns {
        right: -10px;
    }

    .category_product_action_btns span {
        font-size: 8.5px;
    }

    .category_product_action_btns span.item-info--article {
        font-size: 9px;
        color: #828282;
    }

    .product-card__wrapper {
        top: 2.25rem;
    }

    .product-card__delivery {
        font-size: 11px;
        line-height: 14px;
        font-weight: 500;
        color: #EC6810;
        max-width: 200px;
    }

    div[class^="category_id_"] .product-card__title.product_card__title_w {
        padding: 8px 20px;
    }

    div[class^="category_id_"] .product-card__title.product_card__title_w > span:first-child {
        /*height: 44px !important;*/
        font-size: 16px;
        line-height: 1;
    }

    div[class^="category_id_"] .product-card__title.product_card__title_w span.vdz_weight {
        font-size: 18px;
        line-height: 34px !important;
        height: 34px;
    }

    .product-card__prices-item .quantity__plus, .product-card__prices-item .quantity__minus {
        width: 25% !important;
    }

    .product-card__prices-item .quantity__controls {
        justify-content: flex-end;
    }

    .product_card__title_w + ._flex._flex-column._flex-grow._mb-md > ._flex._justify-between._items-center {
        display: flex;
    }

    .product-card__prices .product-card__prices-item .product-card__price {
        font-size: 21.6px;
        font-weight: 500;
    }

    .product-card__prices .product-card__prices-item .product-card__price .vdz_small_text {
        font-size: 18px;
        font-weight: 500;
        margin-top: 5px;
    }

    div[class^="category_id_"] .stars {
        margin-top: 10px;
    }

    .product-card__prices-item .quantity.list-quantity {
        width: 64%;
    }

    .cart_mobile {
        min-width: 170px !important;
        border: 0.375px solid #000000 !important;
        box-sizing: border-box;
        border-radius: 8.25px !important;
    }

    .cart_mobile::after {
        min-width: 180px !important;
    }

    .cart_mobile .cart__cost {
        white-space: nowrap;
    }
}

.stars .stars__item {
    fill: #FFB951 !important;
}

.vdz_product_cell .stars {
    cursor: pointer;
}

.slider--gallery {
    margin-top: 0;
}

.item-gallery__brand {
    z-index: 500 !important;
}

.page.show-card .item-gallery__brand {
    margin-top: 7px;
}

.item-info {
    padding: 1.5625vw;
}

.item-info .item-info--article {
    margin-top: 5px;
}

.slider--gallery-preview .slider__slide.slick-current {
    border: 0.634842px solid #000000 !important;
    box-sizing: border-box;
    border-radius: 6.34842px;
}

.slider--gallery-preview .slider__slide.slick-current img {
    border-radius: 6.34842px;
}

.page.show-card .item-info__title {
    display: block;
    width: 100%;
}

@media screen and (min-width: 1480px) {
    .product-card .product-card__brands {
        left: -10px
    }

    .product-card .product-card__brands,
    .product-card .category_product_action_btns {
        top: -2px;
    }

    .product-card__prices .product-card__prices-item .product-card__price {
        font-size: 1.2rem;
    }

    .product-card__prices .product-card__prices-item .product-card__price .vdz_small_text {
        font-size: 1rem;
    }

    .page.show-card .item-info .vdz_small_text {
        display: inline-block;
    }

    .product_price_list_items .quantity {
        margin-top: 3px;
    }
}

.item-gallery__delivery-block {
    margin-top: 10px;
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
    .page.show-card ._spacer > * {
        margin-bottom: 0px !important;
    }

    .section_product .slider__dots {
        margin-bottom: 20px;
    }

    .breadcrumbs {
        padding-bottom: 30px;
    }

    .breadcrumbs__wrapper {
        display: none;
    }

    .item-info__wrapper .continue_shopping > a {
        margin-bottom: 20px;
        border: 1px solid #000000;
    }

    .vdz_info_tabs {
        margin-top: 0px;
    }

    .page.show-card .product-card__title.product_card__title_w {
        margin-bottom: 20px;
    }

    .item-gallery__delivery-block {
        margin-bottom: 10px;
    }

    .quantity__controls input[type="number"] {
        border-radius: 0 !important;
    }

    .cart_mobile {
        bottom: initial !important;
        left: initial !important;
        top: 178px;
        right: 10px;
        box-shadow: none !important;
        background: #ECEDEF !important;
        border: 0.375px solid #000000;
        box-sizing: border-box;
        border-radius: 8.25px;
        justify-content: space-between;
        height: 40px;
        align-items: center;
    }

    .cart_mobile:focus,
    .cart_mobile:hover {
        background: #959595 !important;
        color: #fff !important;
    }

    body .cart_mobile:focus svg,
    body .cart_mobile:hover svg {
        /*stroke: #fff;*/
        fill: #fff;
    }

    body .cart_mobile:focus .cart__cost,
    body .cart_mobile:hover .cart__cost {
        color: #fff !important;
    }

    body .cart_mobile .cart_mobile-icon {
        position: relative;
        margin-left: 0.5rem;
    }

    body .cart_mobile .cart_mobile-icon span {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: -5px;
        right: -5px;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: #BE1E2E;
        font-size: 8px;
        color: #fff;
    }

    body .cart_mobile .cart__cost {
        margin: 0 0.5rem !important;
        font-size: 15px;
        font-weight: 600;
        line-height: 18px;
    }

    .cart_mobile::after {
        display: none !important;
    }

    button[data-mobile-menu="mobile-filter"] {
        position: fixed;
        bottom: initial;
        top: 214px;
        background: #ECEDEF;
        border: 0.375px solid #000000;
        box-sizing: border-box;
        border-radius: 8.25px;
        color: #fff;
        display: flex !important;
        flex-direction: row-reverse;
        z-index: 1000 !important;
        padding: 0.5rem 0.8rem !important;
        height: 40px;
        align-items: center;
    }

    button[data-mobile-menu="mobile-filter"] svg {
        /*stroke: #fff;*/
    }

    button[data-mobile-menu="mobile-filter"]:focus,
    button[data-mobile-menu="mobile-filter"]:hover {
        background: #959595;
        color: #fff;
    }

    button[data-mobile-menu="mobile-filter"] .sort-title {
        margin-left: 1.875rem !important;
        margin-right: 0 !important;
        font-size: 15px;
        text-transform: uppercase;
        font-weight: 600;
        /*color: #fff !important;*/
    }

    button[data-mobile-menu="mobile-filter"]:focus .sort-title,
    button[data-mobile-menu="mobile-filter"]:hover .sort-title {
        color: #fff !important;
    }

    button[data-mobile-menu="mobile-filter"]:hover svg,
    button[data-mobile-menu="mobile-filter"]:focus svg {
        stroke: #fff;
    }

    .section.section--white._pb-lg._m-none {
        display: none !important;
    }

    .page.show-card .vdz_product_cell {
        margin-bottom: 1.5rem !important;
    }

    div[class^="category_id_"] > ._spacer:first-child {
        margin-bottom: 1.25rem !important;
    }

    .page.show-card .catalog-menu {
        margin-bottom: 40px;
    }

    .sort_wrapper {
        display: none !important;
    }

    .page.show-card .categories_menu_product {
        padding-bottom: 1.875rem !important;
    }

    .header-mobile .header__control > div > div.header__login,
    .header-mobile .header__control > div.right {
        float: right;
    }

    .category_product_action_btns span {
        color: #000;
    }
}

.page:after {
    z-index: 9999;
}

.header {
    z-index: 5000000;
}

.mobile-menu.is-open {
    z-index: 7000000;
}

.header-mobile {
    background: #38496A;
    padding: 0;
}

.header-mobile .container {
    padding: 0;
}

.header-mobile svg {
    display: block;
    fill: #fff !important;
    color: #fff !important;
}

.header-mobile svg:focus,
.header-mobile svg:hover {
    fill: #BE1E2E !important;
    color: #BE1E2E !important;
}

.header-mobile .header__login svg {
    fill: #BE1E2E !important;
    color: #BE1E2E !important;
    stroke: #fff !important;
}

.header-mobile .header__login-link span {
    display: none;
}

.header-mobile .header__control {
    width: 100%;
}

.header-mobile .header__control > div {
    width: 33%;
    display: flex;
}

.header-mobile .header__control > div > div {
    padding: .4375rem 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-mobile .header__control > div * {
    margin-bottom: 0;
}

.header-mobile .header__control > div.center {
    justify-content: center;
}

.header-mobile .header__control > div.right {
    justify-content: flex-end;
}

.header-mobile .header__control div.header-mobile__button,
.header-mobile .header__control div.header__search {
    margin-right: 4px;
}

.header-mobile .header__control > div > div.header__login {
    padding: .4375rem 0.8rem;
    background: #BE1E2E;
}

@media only screen and (min-width: 1280px) {
    div.category_id_23 .product-card,
    div.category_id_22 .product-card {
        min-height: 22.1875rem;
    }

    div.category_id_23 .product-card__descr,
    div.category_id_22 .product-card__descr {
        top: 94%;
    }
}

#cart-site,
body .cart_mobile {
    z-index: 8500 !important;
}

body.show_cart_site_widget .vdz_header__cart {
    /*display: none !important;*/
}

@media only screen and (max-width: 768px) {
    .page.show-card .categories_menu_product,
    #category_header {
        position: fixed;
        width: 100%;
        z-index: 8000 !important;
        padding-top: 40px;
        top: 50px;
        padding-bottom: 18px !important;
    }

    #cart-site .cart_mobile,
    .page.show-card button[data-mobile-menu="mobile-filter"] {
        z-index: 9000 !important;
    }

    .page.show-card .categories_menu_product + .section {
        padding-top: 220px !important;
    }

    #category_header + .section {
        padding-top: 180px !important;
    }

    .page.show-card .categories_menu_product {
        z-index: 1200 !important;
    }

    .page.show-card .categories_menu_product + #main > div.container > ._grid {
        z-index: 0;
    }

    .page.show-card .item-gallery .product_action-buttons,
    .page.show-card .page.show-card .item-gallery .item-gallery__brand {
        z-index: 500 !important;
    }

    .page.show-card .slick-slider .slick-slide {
        z-index: 200 !important;
    }

}

@media only screen and (max-width: 480px) {
    .page.show-card .item-gallery .product_action-buttons {
        right: 0;
    }

    .section_product .product_action-buttons .product_action-buttons-item {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .product_action-buttons-item {
        max-width: 50px;
    }
}

.product_id_411 .product-card__prices > .product-card__prices-item + .product-card__prices-item,
.product_id_411 .product_price_list_items > .price_list_item + .price_list_item,
.product_id_410 .product-card__prices > .product-card__prices-item + .product-card__prices-item,
.product_id_410 .product_price_list_items > .price_list_item + .price_list_item,
.product_id_215 .product-card__prices > .product-card__prices-item + .product-card__prices-item,
.product_id_215 .product_price_list_items > .price_list_item + .price_list_item,
.product_id_112 .product-card__prices > .product-card__prices-item + .product-card__prices-item,
.product_id_112 .product_price_list_items > .price_list_item + .price_list_item,
.product_id_114 .product-card__prices > .product-card__prices-item + .product-card__prices-item,
.product_id_114 .product_price_list_items > .price_list_item + .price_list_item,
.product_id_113 .product-card__prices > .product-card__prices-item + .product-card__prices-item,
.product_id_111 .product-card__prices > .product-card__prices-item + .product-card__prices-item,
.product_id_221 .product-card__prices > .product-card__prices-item + .product-card__prices-item,
.product_id_113 .product_price_list_items > .price_list_item + .price_list_item,
.product_id_111 .product_price_list_items > .price_list_item + .price_list_item,
.product_id_221 .product_price_list_items > .price_list_item + .price_list_item {
    display: none !important;
}

.product-card__prices .product-card__prices-item.vdz_disable {
    position: relative;
}

.product-card__prices .product-card__prices-item.vdz_disable:after {
    display: block;
    content: '';
    position: absolute;
    width: 100%;
    top: 0px;
    bottom: 0px;
    z-index: 500;
    cursor: pointer;
}

.product-card .product-card__container .form-item--select2 {
    display: none;
}

.category_id_22 .product-card .form-item--select2 {
    display: none !important;
}

.product_id_385 .product-card__prices-item.vdz_hidden,
.product_id_407 .product-card__prices-item.vdz_hidden,
.product_id_172 .product-card__prices-item.vdz_hidden,
.product_id_97 .product-card__prices-item.vdz_hidden,
.product_id_98 .product-card__prices-item.vdz_hidden,
.product_id_95 .product-card__prices-item.vdz_hidden {
    display: flex !important;
}

.product_id_385 .product-card__prices-item.vdz_hidden + .product-card__prices-item,
.product_id_407 .product-card__prices-item.vdz_hidden + .product-card__prices-item,
.product_id_172 .product-card__prices-item.vdz_hidden + .product-card__prices-item,
.product_id_97 .product-card__prices-item.vdz_hidden + .product-card__prices-item,
.product_id_98 .product-card__prices-item.vdz_hidden + .product-card__prices-item,
.product_id_95 .product-card__prices-item.vdz_hidden + .product-card__prices-item {
    display: none !important;
}

.product_id_385 .price_list_item.vdz_hidden,
.product_id_407 .price_list_item.vdz_hidden,
.product_id_172 .price_list_item.vdz_hidden,
.product_id_97 .price_list_item.vdz_hidden,
.product_id_98 .price_list_item.vdz_hidden,
.product_id_95 .price_list_item.vdz_hidden {
    display: flex !important;
}

.product_id_385 .price_list_item.vdz_hidden + .price_list_item,
.product_id_407 .price_list_item.vdz_hidden + .price_list_item,
.product_id_172 .price_list_item.vdz_hidden + .price_list_item,
.product_id_97 .price_list_item.vdz_hidden + .price_list_item,
.product_id_98 .price_list_item.vdz_hidden + .price_list_item,
.product_id_95 .price_list_item.vdz_hidden + .price_list_item {
    display: none !important;
}

.slider--gallery-preview .slick-list.draggable,
.slider--gallery-preview {
    height: initial !important;
}

.slider--gallery-preview .slider__slide,
.slider--gallery-preview .slider__slide.slick-current {
    width: 64px !important;
}

.slider--gallery-preview .slider__slide img {
    width: 90%;
}

.slider--gallery-preview {
    padding-bottom: 0.78vw;
}

.item-gallery__video {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    padding: 15px 0;
}

/*31-01-2022*/

@media screen and (min-width: 769px) {
    body.hidden_cart_site_widget #cart-site {
        display: none;
    }

    body.hidden_cart_site_widget #cart-site.vdz_show {
        display: block;
    }

    body.hidden_cart_site_widget .header__cart {
        display: none;
    }

    body.hidden_cart_site_widget .header__cart.vdz_header__cart {
        display: block;
    }

    body.hidden_cart_site_widget #cart-site .cart-collapse {
        display: none;
    }

    body.sidebarCartOpen .page.show-card,
    body.hidden_cart_site_widget .page.show-card {
        width: 80%;
    }
}

.item-gallery__delivery-block .vdz_delivery_label_green,
.vdz_delivery_label_green {
    color: #66C91F !important;
    fill: #66C91F !important;
}

.item-gallery__delivery-block .vdz_delivery_label_orange,
.vdz_delivery_label_orange {
    color: #EC6810 !important;
    fill: #EC6810 !important;
}

.item-gallery__delivery-block .vdz_delivery_label_red,
.vdz_delivery_label_red {
    color: #DB0F15 !important;
    fill: #DB0F15 !important;
}

.item-gallery__delivery-block .vdz_delivery_label_green *,
.item-gallery__delivery-block .vdz_delivery_label_red *,
.item-gallery__delivery-block .vdz_delivery_label_orange * {
    cursor: pointer;
}

.item-gallery__delivery-block .vdz_delivery_label_green:hover *,
.item-gallery__delivery-block .vdz_delivery_label_red:hover *,
.item-gallery__delivery-block .vdz_delivery_label_orange:hover * {
    opacity: 0.7;
}

.item-gallery__delivery-block .vdz_delivery_label_green svg,
.item-gallery__delivery-block .vdz_delivery_label_red svg,
.item-gallery__delivery-block .vdz_delivery_label_orange svg {
    width: 15px;
    height: 15px;
}

.mfp-wrap {
    z-index: 9999999 !important;
}

.delivery_text_popup .delivery_text_popup_btn {
    text-align: center;
}

.delivery_text_popup .change_popup_btn {
    display: flex;
    justify-content: center;
}

.delivery_text_popup .change_products_btn {
    margin-right: 15px;
}

body button.swal2-confirm,
.swal2-styled.swal2-confirm,
.swal2-actions button.swal2-confirm,
.swal2-actions .swal2-styled.swal2-confirm,
.delivery_text_popup .change_products_btn,
.delivery_text_popup .mfp-close {
    color: #333 !important;
    position: initial;
    opacity: 1;
    display: inline-block !important;
    right: initial !important;
    top: initial !important;
    width: auto !important;
    background: #ECEDEF !important;
    background-color: #ECEDEF !important;
    border: 0.629416px solid #000000;
    box-sizing: border-box;
    border-radius: 13.8472px;
    font-family: "IBM Plex Sans" !important;
    font-style: normal;
    font-weight: 500;
    font-size: 22.7423px !important;
    line-height: 47px !important;
    text-transform: uppercase;
    padding: 0px 24px !important;
    height: auto !important;
    animation: none;
    box-shadow: none !important;
}

.swal2-actions button.swal2-confirm:hover,
.delivery_text_popup .change_products_btn:hover,
.delivery_text_popup .mfp-close:hover {
    color: #a6141e !important;
}

.delivery_text_popup .popup_inner {
    padding: 30px 33px;
    border: 1.84585px solid #000000;
    font-family: "IBM Plex Sans" !important;
    font-style: normal;
    font-weight: 500;
    font-size: 21.2273px;
    line-height: 28px;
    text-align: justify;
}

.delivery_text_popup .popup_inner p {
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    .delivery_text_popup .popup_inner {
        padding: 12px;
        font-size: 16px;
        line-height: 1.2;
        text-align: left;
        font-weight: 300;
    }

    body .popup {
        width: 90%;
    }
}

#changePopup .change_popup_btn button {
    font-size: 16px !important;
    line-height: 32px !important;
    cursor: pointer;
}

#changePopup .change_popup_btn button:hover {
    color: #a6141e;
}

#promocode_wrapper {
}

#promocode_enter .promocode_wrapper {
    /*display: flex;*/
    position: relative;
}

#promocode_enter .promocode_line.no_promocode {
    display: flex !important;
    flex-direction: column;
}

#promocode_enter .promocode_line.no_promocode .checkout__title {
    color: #9F9F9F;
}

#promocode_enter .promocode_line.no_promocode .checkout__total {
    font-weight: 600;
    font-size: 23.6438px;
    line-height: 31px;
}

#promocode_enter .promocode_line {
    margin-top: 15px;
    gap: 5px;
}

#promocode_enter .promocode_line .checkout__title {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
}

#promocode_enter .alert-success {
    font-size: .75rem;
    font-weight: 500;
    color: green;
}

#promocode_enter .promocode_line .checkout__total {
    font-weight: 600;
    font-size: 17px;
    line-height: 24px;
    color: #000000;
    white-space: nowrap;
}

#promocode_enter .promocode_line .promocode_title + .checkout__total {
    color: #FDB204;
}

#promocode_enter .promocode_title {
    background: #FDB204;
    border-radius: 7.41241px;
    font-weight: 500;
    font-size: 11.7083px;
    color: #000000;
    padding: 0 5px;
    white-space: nowrap;
}


#promocode_enter .promocode_title span:first-child {
    border-right: 1px solid #000;
    padding-right: 5px;
    margin-right: 5px;
}

@media screen and (max-width: 1440px) {
    #promocode_enter .promocode_title {
        display: flex;
        flex-direction: column;
    }

    #promocode_enter .promocode_title span {
        text-align: center;
    }

    #promocode_enter .promocode_title span:first-child {
        border-bottom: 1px solid #000;
        border-right: none;
        padding-right: 0px;
        margin-right: 0px;
    }

}

#promocode_enter input {
    display: block;
    width: 100%;
    padding-right: 95px;
    padding-left: 8px;
    background: #ECEDEF;
    border: 0.567234px solid #BEBEBE;
    height: 37px;
    line-height: 20px;
}

#promocode_enter button {
    position: absolute;
    top: 4px;
    right: 5px;
    background: #DB0F15;
    border-radius: 4.32926px;
    font-family: "IBM Plex Sans";
    font-style: normal;
    font-weight: 500;
    /*font-size: 11.2759px;*/
    font-size: .625vw;
    line-height: 15px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    color: #FFFFFF;
    cursor: pointer;
    z-index: 500;
    padding: 7px 10px;
}

#checkout_new button {
    border-radius: 5px;
    font-size: 13px;
}

.checkout .main > .content > .section.section--white {
    display: none;
}

@media screen and (max-width: 768px) {

    .checkout .breadcrumbs {
        padding-bottom: 0;
    }

    #promocode_enter .promocode_wrapper {
        display: flex;
        justify-content: center;
    }

    #promocode_enter button {
        position: relative;
        top: auto;
        right: auto;
        margin: 0 !important;
    }

    #promocode_enter input {
        padding-right: 8px;
        /*width: auto;*/
        margin-right: 20px;
        background-color: #fff !important;
    }

    #promocode_enter .msg span.error {
        padding: 3px 5px;
        background-color: #fff;
        border-radius: 5px;
        box-shadow: 2px 2px 5px 1px #dcdcdc;
    }

    .checkout .main > .content > .section.section--white {
        display: block;
        padding-bottom: 0 !important;
    }

    .checkout .main > .content > .section.section--white .title {
        font-family: "IBM Plex Sans";
        padding: 10px 0;
        margin: 0;
        font-size: 20px;
        font-weight: 500;
        text-align: center;
    }

}

#livewire-error {
    z-index: 9999999 !important;
}

.popup--cart .cart .quantity__plus,
.popup--cart .cart .quantity__minus {
    width: 25%;
}

#error[data-error_key="min-order"] {
    border: 1.59484px solid #FDB304;
    align-items: center !important;
    margin-top: 0.625rem;
    background-color: #fff;
}

#error[data-error_key="min-order"] p {
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    color: #000000;
}

#error[data-error_key="min-order"] .cart__warning-icon {
    background-color: #FDB304;
    transform: none;
}

#error[data-error_key="min-order"] .cart__warning_text {
    padding: 5px 3px;
}

#error[data-error_key="min-order"] .cart__warning_text span {
    white-space: nowrap;
}

#error[data-error_key="min-order"] .cart__warning_text p {
    margin: 0;
}

#error[data-error_key="min-order"] .cart__warning_text p:first-child {
    margin-bottom: 10px;
}


@media only screen and (min-width: 768px) {
    .checkout__delivery {
        width: 50%;
        margin-right: 1.5rem;
    }
}

#checkout_order_comment_w_promo {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}

#checkout_order_comment_w_promo section#comment_wrapper {
    width: 45%;
}

#checkout_order_comment_w_promo section + section {
    width: 52%;
}

#comment_wrapper textarea[name="comment"] {
    background: #ECEDEF;
    border: 0.567234px solid #BEBEBE;
    border-radius: 0;
}

#comment_wrapper textarea[name="comment"] + span.form-group__label {
    /*display: none;*/
    top: 25%;
    font-size: 0.8rem;
}

#comment_wrapper textarea[name="comment"].has-value + span.form-group__label {
    /*display: none;*/
}

.cart-item__product-wrapper .item-gallery__delivery-block {
    padding: 0;
    margin-top: 10px;
}

#checkout_order_cart .quantity__plus,
#checkout_order_cart .quantity__minus {
    width: 25% !important;
}

#checkout_order_cart .quantity--cart {
    min-width: 120px;
    height: 18.8px;
}

#checkout_order_cart .quantity--cart * {
    height: 26px;
    min-height: 26px;
    font-weight: 500;
    font-size: 14px;
}

#checkout_order_cart .quantity--cart input {
    width: 50px !important;
    min-width: 50px !important;
}

#checkout_order_cart .quantity--cart .quantity__controls button {
    width: 26px !important;
    border-radius: 5px;
}

#checkout_order_cart .cart-item__product .cart-item__weight,
#checkout_order_cart .cart-item__product .cart-item__product-price {
    display: none;
}

#checkout_order_cart .cart-item__product-image img {
    width: 95px;
    height: 95px;
}

#checkout_order_cart .cart-item__product-title {
    /*font-family: "IBM Plex Sans";*/
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 17px;
    color: #000000;
}

#checkout_order_cart .item-gallery__delivery-block .item-gallery__delivery span {
    font-family: "IBM Plex Sans";
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 13px;
    text-transform: none;
}

#checkout_order_cart .item-gallery__delivery-block svg {
    width: 12.23px;
    height: 12.23px;
}

#checkout_order_cart .cart-item__product .cart-item__delete {
    position: initial;
    background: #ECEDEF;
    border: 1px solid #000000 !important;
    border-radius: 5px;
    height: 36px;
    min-height: 36px;
    width: 36px !important;
    min-width: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
}

#checkout_order_cart .cart-item__product .cart-item__delete svg {
    width: 16px;
    height: 16px;
    margin: 0
}

#checkout_order_cart .cart-item__product .cart-item__delete span {
    display: none;
}

#checkout_order_cart .cart-item__product .cart-item__info-price {
    font-family: "IBM Plex Sans";
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    color: #000000;
}

#checkout_order_cart .cart-item__product .cart-item__info {
    margin-left: 3.3708333333vw;
    margin-right: 6.7708333333vw;
}

#checkout_order_cart .cart__list {
    max-height: 420px;
    overflow-y: auto;
    padding-right: 0;
    border-bottom: 1px solid #BEBEBE;
}

#checkout_order_cart .cart__list .cart__item:not(:last-child) {
    border-bottom: 1px solid #BEBEBE;
}

.cart__warning-icon {
    width: 2rem;
    height: 2rem;
    font-size: 22px;
    background-color: #febc03;
}

.cart-item {
    padding: 1.0416666667vw 10px;
}

body .main-screen {
    /*margin-top: 0;*/
    min-height: auto !important;
    padding-bottom: 0 !important;
}

body .main-screen .main-screen__media {
    min-height: auto;
    /*position: relative;*/
}


.hidden_cart_site_widget .page-connect {
    display: none;
}

.sale_item .seo-block {
    display: none !important;
}

.main-sale__link {
    margin-top: 1.5rem;
}


#vdz_sale_popup .mfp-close {
    top: 0 !important;
    right: 0 !important;
}

#vdz_sale_popup .popup_inner {
    padding: 20px;
}

#vdz_sale_popup .popup_inner > p:first-child {
    margin: 0;
}

#vdz_sale_popup img {
    max-width: 100%;
}

@media only screen and (min-width: 1024px) {
    #vdz_sale_popup .popup {
        max-width: 60vw;
    }
}

@media only screen and (min-width: 1200px) {
    #vdz_sale_popup .popup {
        max-width: 40vw;
    }
}

@media only screen and (max-width: 768px) {
    #vdz_sale_popup .popup {
        width: 90%;
    }
}


.page-connect {
    display: none;
}

#checkout_new .cart__title--checkout {
    display: none;
}

#checkout_new .block_title {
    font-family: "IBM Plex Sans";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    /*line-height: 21px;*/
    height: 28px;
    display: flex;
    align-items: center;
    color: #040404;
    justify-content: center;
    margin-bottom: 25px;
}

#checkout_new .checkout__wrapper {
    position: relative;
}

#checkout_new #checkout_order_cart .cart-item__product .cart-item__info {
    margin: 0;
}

#checkout_new #checkout_order_cart .quantity--cart {
    margin: 0 !important;
    min-width: auto;
    width: auto;
}

.item-gallery__delivery {
    margin-bottom: 5px;
}

.cart-item__product-image {
    display: flex;
    align-items: center;
}

.v_btn_inline_no_style {
    display: inline-block;

}

#checkout_new {
    font-family: "IBM Plex Sans";
}

#checkout_new .login_btn {
    background: #DB0F15;
    color: #fff;
    fill: transparent;
    stroke: #fff;
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    /*line-height: 19px;
    height: 28px;*/
    text-transform: uppercase;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 7px 10px;
    font-family: "IBM Plex Sans";
    /*white-space: nowrap;*/
}

#checkout_new .login_btn svg {
    /*width: 15px;*/
    /*height: 17px;*/
    width: 17px;
    height: 19px;
    margin: 0 8px;
}

#checkout_new .step1_login {
    justify-content: center;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
}

#checkout_new .cart__warning {
    border: 1px solid #febc03;
    padding: 10px;
    border-radius: 0;
}

#checkout_new .cart__warning p:last-child {
    margin-bottom: 0;
}

#error[data-error_key="min-order"] {
    border: 1px solid #FDB304;
}

#checkout_new .cart__warning p {
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
    margin-bottom: 0 !important;
}

#checkout_new .cart__main {
    margin-bottom: 32px;
}

.step1_login ._cell--8, .step1_login ._cell--3 {
    width: auto;
    max-width: initial;
    flex-basis: auto;
}

#checkout_new .login_btn {
    margin-left: 0 !important;
}

#checkout_new .login_btn_text {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #525252;
    max-width1: 128px;
    text-align: center;
    margin-left: 0;
}

@media only screen and (min-width: 460px) {

    #checkout_new .step1_login {
        justify-content: start;
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        flex-direction: row;
    }

    #checkout_new .login_btn_text {
        text-align: left;
        margin-left: 20px;
    }
}


#checkout_new .label_checkout__title {
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
}

#checkout_new .form-item__checkbox-icon + .label_checkout__title {
    margin-left: 8px;
}

#checkout_new .__title_line {
    border-bottom: 1px solid #000000;
    position: relative;
    top: 35px;
}

#checkout_new .cart {
    /*margin-left: 0;8*/
}

#checkout_cart_new {
    margin-left: 50px;
}

#checkout_new input {
    background: #ECEDEF;
    border: 0.567234px solid #BEBEBE;
    border-radius: 0;
}
#checkout_new {
    label.is-error{
        input{
            border-color: #c61617 !important;
        }
    }
}
#checkout_new ._mb-df:has(.error){
    .form-item__control{
        border-color: #c61617 !important;
    }
}


.form-group input.has-error, .form-group input.has-value, .form-group input.is-focus, .form-group input.is-valid {
    padding-top: 0;
}

#recipient_other {
    /* background-color: #f6f9f9;*/
    margin-top: 2rem;
    padding: 0;
}

#recipient_other > div {
    margin-top: 0 !important;
}

#new_checkout_delivery {
    font-family: "IBM Plex Sans";
    margin-top: 30px;
}

#new_checkout_delivery .checkout__label svg {
    margin-right: 8px;
}

#new_checkout_delivery .checkout__label {
    font-weight: 500;
    font-size: 13px;
    line-height: 12px;
    color: #000000;
    display: flex;
    align-items: center;
}

#new_checkout_delivery .checkout__delivery-icon,
#new_checkout_delivery .checkout__payment-icon {
    border-radius: 0;
    opacity: 1;
    background-color: #ECEDEF;
    color: #ECEDEF;
    border: 1px solid #000;
}

#new_checkout_delivery .checkout__delivery-icon svg,
#new_checkout_delivery .checkout__payment-icon svg {
    display: none;
}

#new_checkout_delivery input:checked + .checkout__delivery-item .checkout__delivery-icon,
#new_checkout_delivery input[checked] + .checkout__delivery-item .checkout__delivery-icon,
#new_checkout_delivery input:checked + .checkout__payment-item .checkout__payment-icon,
#new_checkout_delivery input[checked] + .checkout__payment-item .checkout__payment-icon {
    opacity: 1;
    background-color: #000;
}

#new_checkout_delivery input:checked + .checkout__delivery-item .checkout__delivery-icon svg,
#new_checkout_delivery input[checked] + .checkout__delivery-item .checkout__delivery-icon svg,
#new_checkout_delivery input:checked + .checkout__payment-item .checkout__payment-icon svg,
#new_checkout_delivery input[checked] + .checkout__payment-item .checkout__payment-icon svg {
    display: block;
}

#new_checkout_delivery .form-item__control {
    border: 0.567234px solid #BEBEBE;
}

#new_checkout_delivery .select2-container--default {
    background: #ECEDEF;
}

#new_checkout_delivery .select2-selection__arrow {
    width: 20px;
    height: 18px;
    background: #FFFFFF;
    border: 0.156642px solid #000000;
    box-sizing: border-box;
    border-radius: 3.13284px;
}

#new_checkout_delivery .select2-selection__arrow b {
    display: block;
    border-color: #000000 transparent transparent;
    border-style: solid;
    border-width: 6px 5px 0;
    height: 0;
    left: 50%;
    margin-left: -5px;
    margin-top: 0px;
    position: absolute;
    top: 39%;
    width: 0;
}

#new_checkout_delivery .checkout__delivery-text {
    font-weight: 500;
    font-size: 12px;
    line-height: 13px;
    text-align: center;
    color: #000000;
    text-transform: lowercase;
}

#new_checkout_delivery .checkout__delivery-item {
    height: 7rem;
    border-radius: 10.7545px;
    padding: 0.5rem 0.6rem;
}

#new_checkout_delivery .checkout__delivery-text[data-id="9"] {
    margin-top: 8px;
    margin-bottom: 0;
}

#new_checkout_delivery .checkout__delivery-icon {
    /* right: 10px;*/
}

#new_checkout_delivery .form-item .form-item__checkbox {
    margin-bottom: 5px;
}

#new_checkout_delivery .form-item.form-item--accept .form-item__checkbox {
    margin-bottom: 0;
}

#new_checkout_delivery .m-red {
    font-weight: bold;
    color: #DB0F15;
}

#new_checkout_delivery ._items-start {
    align-items: self-start;
}

#new_checkout_delivery .form-item .form-item__checkbox .form__accept {
    margin-left: 8px;
    font-weight: normal;
    font-size: 12px;
    line-height: 12px;
    text-align: justify;
    color: #000000;
}

#new_checkout_delivery .cart__warning {
    border: 1.59484px solid #FDB304;
    align-items: center !important;
    /*margin-top: 0.625rem;*/
    background-color: #fff;
    width: 180px;
    margin-left: 15px;
}

#new_checkout_delivery .cart__warning .cart__warning-icon {
    background-color: #FDB304;
    transform: none;
    width: 23.92px;
    height: 22.84px;
    font-size: 20px;
    margin-right: 0.5rem;
}

#new_checkout_delivery .cart__warning .cart__warning_text {
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    text-align: left;
    color: #000000;
}

#new_checkout_delivery .checkout__label_image {
    margin-right: 8px;
}

#new_checkout_delivery .checkout__payment {
    /*width: auto;*/
    width: 40%;
    margin-right: 20px;
}

#new_checkout_delivery .checkout__payment-item {
    height: 90px;
    padding: 8px;
    display: flex;
    /*flex-wrap: wrap;*/
    flex-direction: row;
    min-width: 120px;
    margin-right: 10px;
    border: 0.71742px solid #000000;
    box-sizing: border-box;
    border-radius: 10.7545px;
    align-items: center;
    justify-content: space-around;
}

#new_checkout_delivery .checkout__payment-item .checkout__label_image, #new_checkout_delivery .checkout__payment-item > svg {
    width: 60px;
    height: 70px;
}

#new_checkout_delivery .checkout__delivery-descr p {
    font-family: "IBM Plex Sans";
    font-weight: normal;
    margin-top: 0;
}

/*#new_checkout_delivery ._spacer,*/
/*#new_checkout_delivery ._spacer>*{*/
/*    margin-bottom: 0 !important;*/
/*}*/

.form__accept, .form__accept a {
    color: rgba(0, 0, 0, 1);
    font-size: 12px;
    line-height: 140%;
    font-weight: 400;
}

@media only screen and (min-width: 1660px) {
    #new_checkout_delivery ._xxl\:cell--10 {
        --m-mcw: 100%;
    }
}

#new_checkout_delivery .checkout__payment {
    width: 50%;
    margin-right: 1.5rem;
}

#new_checkout_delivery .checkout__payment:last-child {
    margin-right: 0 !important;
}

#new_checkout_delivery input:checked + .checkout__delivery-item,
#new_checkout_delivery input:checked + .checkout__payment-item {
    background: #ECEDEF;
}

#new_checkout_delivery .checkout__payment-item .checkout__payment-text {
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    color: #000000;
    display: flex;
    align-items: center;
    height: 100%;
    max-width: 56%;
}

#new_checkout_delivery .checkout__payment_cash {

}

#step2btn,
#step3btn {
    margin-top: 30px;
    /*line-height: 1;*/
    align-items: center;
}

#step2btn > div._cell:first-child,
#step3btn > div._cell:first-child {
    text-align: right;
}

#step2btn > div._cell:last-child,
#step3btn > div._cell:last-child {
    text-align: left;
}

#step2btn .step2btn,
#step3btn .step3btn {
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    align-items: center;
    text-transform: uppercase;
    padding: 7px 10px;
    margin: 0 10px;
    cursor: pointer;
    color: #000000;
    background: #ECEDEF;
    border: 0.5px solid #000000;
    box-sizing: border-box;
    border-radius: 5px;
    text-decoration: none;
    font-family: "IBM Plex Sans";
    white-space: nowrap;
}

#step2btn button.step2btn,
#step3btn button.step3btn {
    background: #DB0F15;
    border: 0.5px solid #DB0F15;
    color: #fff;
}

#step2btn .step2btn:hover,
#step3btn .step3btn:hover {
    opacity: 0.75;
}

.mobile_visible_only {
    display: none;
}

#checkout_new .block_title.delim {
    display: none;
}

@media screen and (max-width: 768px) {

    #new_checkout_delivery .form-item .form-item__checkbox {
        margin-bottom: 20px
    }

    .mobile_visible_only {
        display: block;
    }

    #step2btn > div,
    #step2btn > div._cell:last-child,
    #step3btn > div._cell:last-child {
        text-align: center !important;
    }

    #step2btn {
        flex-wrap: wrap-reverse;
    }

    #step2btn a.step2btn {
        display: inline-block;
        margin-top: 15px !important;
    }

    #step2btn .step2btn {
        min-width: 210px;
        text-align: center;
    }

    #step3btn a.step3btn {
        display: none;
    }

    form#step1 ._cell._cell--6 {
        width: 100%;
        max-width: 100%;
        flex-basis: 100%;
        margin-bottom: 10px !important;
    }

    #recipient_other ._grid._spacer ._cell--12 {
        margin-bottom: 10px !important;
    }

    #new_checkout_delivery .cart__warning {
        width: 50%;
        height: fit-content;
        margin-top: 0;
    }

    #new_checkout_delivery ._flex._items-stretch {
        align-items: center !important;
    }

    #new_checkout_delivery .cart__warning .cart__warning_text {
        text-align: left;
    }

    #new_checkout_delivery .checkout__container.checkout__container--white {
        padding: 1.25rem 0;
    }

    #new_checkout_delivery .checkout__payment {
        margin-right: 8px;
    }

    #new_checkout_delivery .checkout__payment_cash + .cart__warning {
        margin-left: 8px;
        width: 50%;
    }

    #checkout_new .cart {
        display: none;
    }

    #checkout_new .mobile_visible_only .cart {
        display: block;
        margin-left: 0;
    }

    /*
    #checkout_new .mobile_visible_only .cart .cart-item__product{
        align-items:normal !important;
        padding-bottom: 30px;
    }
    */
    #checkout_new .mobile_visible_only .cart .cart-item--single {
        padding: 0.625rem;
        border: none;
    }

    #checkout_new .mobile_visible_only .cart .cart-item__product .cart-item__product-wrapper {
        width: 85%;
        margin-bottom: 0;
    }

    /*
    #checkout_new .mobile_visible_only #checkout_order_cart .quantity--cart{
        position: absolute;
			bottom: 13px;
    		left: 5px;
        margin: 0 !important;
    }
    */
    /*
    #checkout_new .mobile_visible_only #checkout_order_cart .cart-item__product .cart-item__info{
        position: absolute;
        bottom: 10px;
        justify-content: right;
        right: 8px;
        margin: 0 !important;
    }
    */
    /*
    #checkout_new .mobile_visible_only #checkout_order_cart .cart-item__product .cart-item__delete{
        position: absolute;
        top: 10px;
        right: 8px;
        margin: 0 !important;
    }
    */
    #checkout_new .mobile_visible_only #checkout_order_comment_w_promo section#comment_wrapper {
        width: 100%;
    }

    #checkout_new .mobile_visible_only #checkout_order_comment_w_promo #promocode_wrapper {
        width: auto;
        position: absolute;
        top: -45px;
        right: 10px;
        left: 10px;
    }

    #checkout_new .mobile_visible_only .block_title {
        padding-top: 0;
        margin-bottom: 4px;
        font-size: 20px;
        font-weight: 500;
    }

    .checkout__delivery {
        width: 48%;
    }

    #checkout_new div:not(.mobile_visible_only) .block_title {
        display: none;
    }

    #checkout_new div:not(.mobile_visible_only) .__title_line {
        display: none;
    }

    #checkout_new .step1_login {
        justify-content: center;
    }

    #checkout_new .checkout__wrapper {
        position: relative;
        margin-top: 24px;
    }

    #checkout_new .block_title.delim {
        margin-bottom: 0;
        display: flex !important;
        position: relative;
        font-size: 20px;
        font-weight: 500;
        margin-top: 30px;
    }

    #checkout_new .block_title.delim:before {
        display: none;
        content: '';
        position: absolute;
        height: 10px;
        width: 100vw;
        background-color: #ecedef;
        top: -20px;
        text-align: center;
    }

    #checkout_new .block_title.delim.nodelim:before {
        display: none;
    }

    /*
    #checkout_order_cart .cart__list .cart__item:not(:last-child){
        position: relative;
    }

    #checkout_order_cart .cart__list .cart__item:not(:last-child):before{
        content: '';
        position: absolute;
        height: 10px;
        width: 100vw;
        background-color: #ecedef;
        bottom: 0;
        text-align: center;
    }
    */

}

#checkout_new button {
    margin-left: auto;
    margin-right: auto;
}


@media screen and (max-width: 526px) {
    #checkout_new .step1_login {
        justify-content: center;
    }
}

@media screen and (max-width: 1023px) {
    #checkout_cart_new {
        margin-left: 0;
    }
}

@media only screen and (max-width: 1444px) {

    .cart-item--single {
        border: none;
    }

    #checkout_new #checkout_order_cart .cart-item__product .cart-item__info {
        position: absolute;
        bottom: 10px;
        justify-content: right;
        right: 8px;
        margin: 0 !important;
    }

    #checkout_new .cart .cart-item__product {
        align-items: normal !important;
        padding-bottom: 50px !important;
    }

    #checkout_new .cart .cart-item__product .cart-item__product-wrapper {
        width: 85%;
        margin-bottom: 0;
    }

    #checkout_new #checkout_order_cart .quantity--cart {
        position: absolute;
        bottom: 37px;
        right: 8px;
        margin: 0 !important;
    }

    #checkout_new #checkout_order_cart .cart-item__product .cart-item__delete {
        position: absolute;
        top: 10px;
        right: 8px;
        margin: 0 !important;
    }
}

.checkout__delivery {
    width: 50%;
    margin-right: 1.5rem;
}

.checkout__delivery:last-child {
    margin-right: 0;
}

.checkout__container_ ._flex-wrap {
    flex-wrap: nowrap !important;
}

#new_checkout_delivery .checkout__payment {
    width: 50%;
    margin-right: 1.5rem;
}

#new_checkout_delivery .checkout__payment:last-child {
    margin-right: 0;
}

.checkout__container ._flex-wrap {
    flex-wrap: nowrap !important;
}

.checkout #cart-site {
    display: none;
}

.cart-item__delete-text {
    display: none !important;
}

.sale_item .seo-block {
    display: none !important;
}

.main-sale__link {
    margin-top: 1.5rem;
}


#vdz_sale_popup .mfp-close {
    top: 0 !important;
    right: 0 !important;
}

#vdz_sale_popup .popup_inner {
    padding: 20px;
}

#vdz_sale_popup .popup_inner > p:first-child {
    margin: 0;
}

#vdz_sale_popup img {
    max-width: 100%;
}

@media only screen and (max-width: 768px) {
    body #vdz_sale_popup .popup_inner {
        padding: 10px;
    }

    #vdz_sale_popup .mfp-close {
        line-height: 1 !important;
        font-size: 20px !important;
        width: 18px !important;
        height: 18px !important;
    }
}

/*29-04-2022*/
.swal2-popup.swal2-modal.swal2-show {
    padding: 30px 33px;
    border: 1.84585px solid #000000;
    border-radius: 0;
}

#swal2-html-container {
    margin: 0;
    font-family: "IBM Plex Sans" !important;
    font-style: normal;
    font-weight: 500;
    font-size: 21.2273px;
    line-height: 28px;
    text-align: justify;
    color: #000;
}

#swal2-html-container strong {
    font-weight: bolder;
}

.popup--cart .cart__footer > a.button,
.popup--cart .cart__cost + .button,
#cart-site .button {
    background: #DB0F15;
    border-radius: 11.3981px;
    border: 0.5px solid #DB0F15;
    font-family: 'IBM Plex Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 1rem !important;
    line-height: 1.2rem;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    color: #FFFFFF;
    width: 100%;
}

.popup--cart .cart__footer > a.button {
    background: #ECEDEF;
    border: 1.1px solid #000000;
    width: auto;
    padding: 0 1rem;
    color: #000;
}

#cart-site.open .cart__footer {
    /*padding: 1.5rem !important;*/
    padding: 1rem !important;
}

.popup--cart .cart__cost_title,
#cart-site .cart__cost_title {
    text-align: center;
    margin-bottom: 8px;
    font-family: 'IBM Plex Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 20.4274px;
    line-height: 27px;
    color: #9F9F9F;
}

.cart__scroll .cart__list {
    padding-bottom: 4rem;
}

.cart__warning p {
    margin-top: 0;
}

#checkout_cart_new .checkout_cart_new_info {
    /*display: none !important;*/
}

#checkout_cart_new .checkout_cart_new_total {
    display: none !important;
}

.checkout__container.__payments {
    padding-left: 0;
    padding-right: 0;
}

.cart_sidebar_gallery__delivery {
    margin: 5px 0;
}

.cart_sidebar_gallery__delivery .item-gallery__delivery {
    cursor: pointer;
    margin: 0;
    margin-bottom: 5px;
}

@media screen and (min-width: 769px) {
    #checkout_order_cart .cart__list {
        padding-bottom: 1rem;
    }
}

@media screen and (max-width: 768px) {
    #comment_wrapper textarea[name="comment"].has-value + span.form-group__label {
        top: 25px;
    }

    .mobile_hidden {
        display: none !important;
    }

    .mobile_visible_only .cart__scroll .cart__list {
        padding-bottom: 1rem;
    }

    .mobile_visible_only #checkout_order_cart .cart__list {
        height: 170px;
        transition: height linear 400ms;
        overflow: auto;
        padding-bottom: 20px;
    }


    .mobile_visible_only #checkout_order_cart .cart__list.custom_hide {
        height: auto;
        max-height: 320px;
        padding-bottom: 0;
    }
}

#checkout_order_comment_mobile {
    margin-bottom: 30px;
    display: none;
}

.datepicker-panel > ul > li {
    height: 18px !important;
    line-height: 18px;
    font-size: 12px;
}

#checkout_new .cart__main {
    position: relative;
}

.down_arrow {
    position: absolute;
    right: 17px;
    bottom: -19px;
    height: 20px;
    background-color: #fff;
    color: #000;
    width: 40px;
    text-align: center;
    font-size: 16px;
    border-width: 0 1px 1px 1px;
    border-style: solid;
    border-radius: 0 0 9px 9px;
    border-color: transparent #BEBEBE #BEBEBE #BEBEBE;
    cursor: pointer;
    display: none;
}

.down_arrow:hover {
    background-color: #BEBEBE;
}

.noscroll_openList {
    height: auto !important;
    max-height: none !important;
}

@media screen and (max-width: 768px) {

    .down_arrow {
        display: block;
    }

    #checkout_order_comment_mobile {
        display: block;
    }

    #checkout_order_comment_w_promo #comment_wrapper {
        display: none;
    }
}

.checkout__delivery-price {
    margin-top: 5px;
}

.popup--cart .quantity__controls > * {
    height: 36px !important;
}


.total_mobile {
    display: block;
    margin-bottom: 20px;
}

.total_decktop {
    display: none;
}

@media screen and (min-width: 769px) {
    .total_mobile {
        display: none;
    }

    .total_decktop {
        display: block;
    }
}

.form-item .form-item__checkbox .form-item__checkbox-icon {
    background-color: #ECEDEF;
    border: 1px solid #000;
}

.select2-selection {
    padding: 0 1.5625rem 0 1.4375rem;
}


.brands__item-icon svg,
.brands__item-icon {
    width: 150px;
    height: 150px;
}

@media only screen and (min-width: 1280px) {
    .brands__item:before {
        top: 50%;
    }
}

@media (min-width: 1280px) {
    body .checkout--third-step .cart-item__quantity {
        width: 8.5rem !important;
    }
}

.main-screen .main-screen__buttons {
    padding-bottom: 3em;
}

@media only screen and (max-width: 768px) {
    .main-screen .main-screen__title,
    .main-screen .main-screen__text {
        display: none;
    }

    .main-screen .main-screen__buttons {
        padding-top: 7em;
        padding-bottom: 1.5em;
    }
}

@media only screen and (max-width: 768px) {
    #advantages ._grid {
        display: flex;
        flex-wrap: initial;
        overflow-x: auto;
        align-items: baseline !important;
    }

    #advantages .advantage__title {
        line-height: 1.4em;
        max-height: initial;
    }
}

.one_item_cont {
    padding-top: 20px;
    display: none;
}

.one_item_cont .one_product_info {
    flex-direction: column;
    justify-content: space-between;
}

.one_item_cont .one_product_more {
    font-size: 13px;
    color: #acacac;
}

.one_item_cont .one_product_total {
    font-size: 13px;
    font-weight: 600;
}

.one_item_cont .arrow_div {
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.one_item_cont .arrow_div:before {
    content: '';
    width: 15px;
    height: 15px;
    border-width: 2px 2px 0 0;
    border-color: #000;
    border-style: solid;
    transform: rotate(45deg);
}

#checkout_order_mobile {
    display: none;
    background-color: #ecedef;
    position: fixed;
    top: 55px;
    left: 0;
    bottom: 0;
    right: 0;
    overflow-y: scroll;
    padding: 52px 10px 10px 10px;
    z-index: 999999;
    transform: translateX(1000px);
    transition: all 0.5s;
}

#checkout_order_mobile .button_cont {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

#checkout_order_mobile #closeModOrder2 {
    background: #DB0F15;
    border-radius: 5px;
    margin-bottom: 20px;
}

#checkout_order_mobile .tocatalog {
    background-color: #ECEDEF;
    border-radius: 5px;
    border: 1px solid #000;
    color: #000;
}

.checkout_order_mobile_title {
    background-color: #fff;
    font-family: "IBM Plex Sans";
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    height: 42px;
    display: flex;
    align-items: center;
    color: #040404;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999999;
}

.checkout_order_mobile_title:before {
    content: '';
    position: absolute;
    left: 10px;
    width: 15px;
    height: 15px;
    border-width: 0 0 2px 2px;
    border-color: #000;
    border-style: solid;
    transform: rotate(45deg);
}

.mobile_visible_only #checkout_order_cart .cart__list .cart__item {
    border-bottom: 10px solid #ecedef;
}

.mobile_visible_only #checkout_order_cart #checkout_order_mobile .cart__list {
    height: auto;
    max-height: none;
    padding-bottom: 0;
    border-bottom: none;
}

#checkout_order_cart #checkout_order_mobile .cart-item.cart-item--single {
    background-color: #fff;
}

#checkout_order_cart #checkout_order_mobile .cart__scroll {
    padding-top: 0;
}

.checkout_order_mobile_footer {
    background-color: #fff;
    padding: 10px;
}

@media only screen and (max-width: 768px) {

    #checkout_order_mobile {
        display: block;
    }

    .one_item_cont {
        display: flex;
    }

    .desktop_list {
        display: none;
    }

    .checkout_cart_new_info {
        display: none;
    }

    .checkout-address {
        padding-bottom: 22px;
    }
}


#cart-site .cart__list {
    padding-bottom: 0;
}

#cart-site .cart__warning, .popup .cart__warning {
    display: flex;
    justify-content: start;
    align-items: center !important;
    gap: 10px;
    border: 1px solid #febc03;
    padding: 10px !important;
    border-radius: 0;
    width: 100%;
    background-color: #fff;
}

#cart-site .cart__warning-icon, .popup .cart__warning-icon {
    margin: 0 !important;
    transform: translateY(0) !important;
}

#cart-site.open .cart-collapse svg {
    transform: rotate(180deg);
}

#cart-site .cart__warning .cart__warning_text,
.popup .cart__warning .cart__warning_text,
#cart-site .cart__warning p, .popup .cart__warning p {
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
    margin-bottom: 0;
}

#cart-site .cart {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
}


#cart-site .cart__body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    overflow: hidden;
}

#cart-site .cart__main {
    max-height: none !important;
    overflow-y: auto;
}

#cart-site .cart__footer {
    position: relative !important;
}

html {
    scroll-behavior: smooth;
}

#promocode_enter .promocode_line strike.checkout__total {
    text-decoration-color: red;
    text-decoration-style: solid;
    text-decoration-thickness: 3px;
}

@media (min-width: 1280px) {
    /*
    #cart-site .cart__main {
        max-height: 56vh;
        overflow-y: auto!important;
    }
    */
    body #cart-site.open .cart-item__delivery {
        display: flex;
    }
}

@media (min-width: 1280px) and (max-width: 1480px) {
    .title--text-indent {
        margin-top: 20px;
    }
}


.cart-item__delivery svg {
    width: 15px;
    height: 15px;
}

#checkout_new .mobile_visible_only #checkout_order_comment_w_promo #promocode_wrapper {
    width: auto;
    position: absolute;
    top: -45px;
    right: 15px;
    left: 15px;
}

#promocode_enter .promocode_wrapper {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 768px) {
    #promocode_enter input {
        flex-grow: 1;
    }

    body .popup {
        width: 90%;
        background-color: #ecedef;
        max-width: 480px;
    }

    .popup.popup--cart {
        padding: 0;
    }

    .popup .cart__body {
        padding: 10px;
    }

    .popup .mfp-close {
        top: 19px !important;
    }

    .popup .cart__scroll {
        padding: 0;
    }

    .popup--cart .cart__main {
        padding: 0;
    }

    .popup .cart__title {
        background-color: #ffffff;
        padding: 15px 10px;
        margin: 0 !important;
        font-size: 1.6rem;
    }

    .popup .cart__scroll .cart__list {
        padding-bottom: 0;
    }

    .popup .cart__item {
        background-color: #fff;
        margin-bottom: 10px;
    }

    .popup .cart__item .cart-item__delete {
        position: absolute;
        right: 15px;
        top: 15px;
        width: 36px;
        height: 36px;
        background-color: #ECEDEF;
        border: 1px solid #000000;
        border-radius: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        color: #999;
        fill: #999;
        z-index: 2;
        cursor: pointer;
    }

    .popup .cart__item .cart-item__delete svg {
        margin-left: 0;
    }

    .popup .cart__item .cart-item__product-wrapper {
        width: 100%;
        padding-right: 50px;
        margin-bottom: 4.5rem;
    }

    .popup .cart__item .cart-item__quantity {
        position: absolute;
        right: 15px;
        bottom: 45px;
        margin: 0 !important;
    }

    .popup .cart__item .cart-item__quantity input {
        width: 46px;
        height: 36px;
    }

    .popup .cart__item .quantity__minus, .popup .cart__item .quantity__plus {
        width: 36px;
        height: 36px;
    }

    .popup .cart__item .cart-item__info {
        position: absolute;
        right: 15px;
        bottom: 15px;
        width: 126px;
    }

    .popup .cart__warning {
        margin-bottom: 10px !important;
    }

    .popup ._mt-xs {
        margin: 0 !important;
    }

    .popup .cart__footer {
        background-color: #ffffff;
    }

    #new_checkout_delivery .checkout__container.checkout__container--white {
        padding: 0 0 0 0;
    }

    .form-item.form-item--accept {
        margin-bottom: 36px;
    }

    #checkout_cart_new #checkout_order_comment_w_promo section#comment_wrapper {
        display: none;
    }

}

.select2-selection {
    padding: 0 1.5625rem 0 0.9375rem;
}

#checkout_order_comment_w_promo section#comment_wrapper {
    display: block;
}

section#comment_wrapper .error {
    display: block;
    color: #a6141e;
    font-size: 0.75rem;
    font-weight: 400;
}

#checkout_order_comment_w_promo section#comment_wrapper textarea {
    width: 100%;
    outline: none;
    padding: 20px;
    font-family: "IBM Plex Sans";
}

#checkout_order_comment_mobile section#comment_wrapper textarea {
    width: 100%;
    height: 90px;
    padding: 10px .9375rem;
    border: 1px solid #BEBEBE;
    border-radius: 0;
}

.promo_for_mobile {
    display: none;
}

.total_mobile {
    display: none;
}

@media screen and (max-width: 768px) {

    .promo_for_mobile {
        display: block;
    }

    .promo_for_mobile #promocode_enter .promocode_wrapper {
        display: none;
    }

    .promo_for_mobile .total_decktop {
        display: block;
    }

    #checkout_order_comment_w_promo {
        margin: 0;
    }

}

@media screen and (max-width: 768px) {
    #promocode_enter .promocode_title {
        display: flex;
        flex-direction: row;
    }

    #promocode_enter .promocode_title span {
        text-align: center;
    }

    #promocode_enter .promocode_title span:first-child {
        border-right: 1px solid #000;
        border-bottom: none;
        padding-right: 5px;
        margin-right: 5px;
    }

    .thanks-page__info {
        margin-bottom: 40px;
    }

}

input[name="delivery_id"][value="9"] + label.checkout__delivery-item {
    justify-content: center;
}

input[name="delivery_id"][value="9"] + label.checkout__delivery-item .checkout__delivery-text {
    min-height: 0 !important;
}

#section_step_3 #checkout_new {
    display: none;
}

#section_step_3 .preloader {
    background: #fff;
    z-index: 10000;
}


::placeholder,
#checkout_new span.select2-selection__rendered,
#checkout_new input::placeholder,
#checkout_new textarea::placeholder {
    font-size: 1rem !important;
    color: #999;
    font-family: Roboto, sans-serif;
}

@media screen and (max-width: 1279px) and (min-width: 700px) {
    #category_header {
        padding-bottom: 0 !important;
    }
}

@media screen and (max-width: 1279px) and (min-width: 768px) {
    #cart-site {
        left: initial !important;
        bottom: initial !important;
        position: relative !important;
    }

    body .cart_mobile {
        /*position: absolute !important;*/
        position: fixed !important;
        left: initial !important;
        bottom: initial !important;
        top: 388px;
        right: 30px;
        width: 180px;
    }

    body .cart_mobile::after {
        width: 188px;
    }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
    .page.show-card .vdz_product_cell {
        flex-basis: 33.333% !important;
        width: 33.333% !important;
        --m-mcw: 33.333% !important;
    }
}

@media screen and (max-width: 767px) and (min-width: 580px) {
    .page.show-card .vdz_product_cell {
        flex-basis: 50% !important;
        width: 50% !important;
        --m-mcw: 50% !important;
    }
}

@media screen and (max-width: 580px) {
    .page.show-card .vdz_product_cell {
        flex-basis: 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        --m-mcw: 100% !important;
    }
}


.m_modal * {
    box-sizing: border-box
}

.m_modal {
    position: fixed;
    z-index: 999200002;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    visibility: hidden;
    opacity: 0;
    transition: opacity .15s, transform 0s;
    font-family: "IBM Plex Sans", Arial, Helvetica, sans-serif;
}

.m_modal.show {
    display: block;
    opacity: 1;
    visibility: visible
}

.m_modal .modal-data {
    position: relative;
    z-index: 1;
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff
}

.m_modal .close-times {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 18px;
    width: 1em;
    height: 1em;
    z-index: 99;
    background-repeat: no-repeat;
    background-position: 50%;
    background-color: transparent;
    cursor: pointer;
    color: #000;
    opacity: 1;
    transition: opacity .15s, transform 0s;
    transform: translateZ(0);
    pointer-events: all;
    will-change: transform, opacity
}

.m_modal .close-times:after,
.m_modal .close-times:before {
    display: block;
    content: "";
    width: 3px;
    height: 1.3em;
    background: #7a7a7a;
    position: absolute;
    left: 0;
    right: 0;
    top: -2px;
    margin: 0 auto
}

.m_modal .close-times:before {
    transform: rotate(45deg)
}

.m_modal .close-times:after {
    transform: rotate(-45deg)
}

.component-bg {
    overflow: hidden;
    clip: rect(auto, auto, auto, auto);
    pointer-events: none;
    z-index: -1
}

.component-bg,
.component-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.component-bg .overlay {
    z-index: 1;
    transition: all .18s
}

.m_modal .component-bg .overlay {
    background-color: rgba(88, 88, 88, 0.9)
}

.m_modal .scroller {
    pointer-events: all;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    max-height: 100%;
    width: 100%;
    will-change: transform;
    transition: transform .35s cubic-bezier(.15, .6, .3, .8);
    transform: translateY(0)
}

.m_modal .modal-content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column;
    flex-flow: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    background-color: #fff;
    color: #000;
    max-width: 320px;
}

.m_modal .form {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    padding: 30px 20px;
    position: relative
}

.component-form {
    width: 100%;
    padding: 10px
}

.smsCont {
    width: 100%;
    box-sizing: border-box;
}

.smsInfo {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    color: #000;
    margin: 0px 0 20px;
}

.smsInfo p {
    margin: 0 0 5px 0;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
}

.smsForm {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.smsCont .smsInput {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 100%;
}

.smsForm .error {
    color: #a6141e;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 400;
}

.smsCont button {
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 1;
    align-items: center;
    text-transform: uppercase;
    padding: 7px 10px;
    cursor: pointer;
    background-color: #DB0F15;
    border: 1px solid #DB0F15;
    color: #fff;
    box-sizing: border-box;
    border-radius: 5px;
    text-decoration: none;
    white-space: nowrap;
    width: 210px;
}

.smsCont button:hover {
    opacity: 0.75;
}

.smsCont input {
    background-color: #ECEDEF;
    border: 1px solid #BEBEBE;
    border-radius: 0;
    height: 32px;
    padding: 0 10px;
    font-size: 1.2rem;
    text-align: center;
    outline: none;
    width: 210px;
    box-sizing: border-box;
    letter-spacing: 4px;
}

.smsCont .alterButton {
    color: #000000;
    background-color: #ECEDEF;
    border: 1px solid #000000;
}

.smsCont .alterButton:active:hover:not(:disabled):not([disabled]) {
    opacity: 0.75;
}

.smsCont .alterButton:disabled,
.smsCont .alterButton[disabled] {
    color: #dcdcdc;
    background-color: #ECEDEF;
    border: 1px solid #dcdcdc;
    cursor: default;
}

@media (max-width: 796px) {
    .smsForm {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 36px;
    }


    .smsCont button {
        height: 46px;
    }
}

@media (min-width: 1280px) and (max-width: 1300px) {
    .product-card .product-card__image {
        height: 7rem;
    }
}

@media (max-width: 680px) {
    .product-card .item-gallery__delivery-block {
        margin-top: 0;
    }
}

@media (max-width: 680px) and (min-width: 449px) {
    .page.show-card .product-card__title.product_card__title_w > span:first-child {
        font-size: 12px;
        line-height: 14px;
    }

    .page.show-card .product-card__title.product_card__title_w span.vdz_weight {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .swal2-container {
        z-index: 9000 !important;
    }

    #swal2-html-container {
        text-align: left !important;
    }

    .vdz_small_text.count_text {
        white-space: break-spaces;
    }

    .catalog-menu {
        position: relative;
        padding-left: 0.5rem;
    }

    .catalog-menu div._mr-lg {
        margin-right: 1.2rem !important;
    }

    /*#category_header +.section{*/
    /*    padding-top: 135px !important;*/
    /*}*/
}


.catalog-menu .catalog-menu__item-text {
    white-space: nowrap !important;
}

@media (max-width: 768px) {
    .is-safari button[data-mobile-menu="mobile-filter"],
    .is-safari .cart_mobile {
        top: 185px;
    }
}

@media (min-width: 1024px) {
    .is-safari #cart-site .cart__footer {
        bottom: 30px !important;
    }
}


.item-gallery img.new_flag_img {
    width: 55px;
    top: 0;
    left: 0;
    float: right;
    position: inherit;
}

.product-card__container {
    position: relative;
}

.product-card .new_flag_img {
    position: absolute;
    width: 75px;
    top: 16px;
    right: 5px;
    z-index: 500;
}

.product-card .category_product_action_btns span.item-info--article {
    margin-bottom: 0;
    margin-top: 40px;
    display: none !important;
}

.catalog-menu .new_flag_img {
    width: 50px;
    top: -21px;
    left: 75px;
}

.catalog-menu .no_new_flag_img {
    height: 24px;
}

.catalog-menu .category_item .new_flag_img {
    width: 50px;
    top: -21px;
    left: 75px;
}

.category-card .new_flag_img {
    position: absolute;
    width: 90px;
    top: 2.0833333333vw;
    right: -2px;
    z-index: 500;
}

@media (max-width: 768px) {
    .category-card .new_flag_img {
        top: 20px;
    }

    .product-card .new_flag_img {
        top: 30px;
        right: -10px;
        width: 90px;
    }

    #date_time ._cell + ._cell > .checkout__label {
        display: none;
    }
}

.catalog-menu[data-route="catalog"] {
    display: none;
}


#new_checkout_delivery #date_time {
    margin-top: 20px;
    margin-bottom: 20px;
}

#new_checkout_delivery #date_time select[name="deliverTime"] + span.select2 .select2-selection__rendered {
    color: #000 !important;
}

.catalog-menu > div {
    text-align: center;
}

@media (max-width: 768px) {
    .item-info {
        position: relative;
    }

    .item-gallery img.new_flag_img {
        left: 15px;
    }

    .section_product .product_action-buttons {
        position: absolute;
        top: 130px !important;
        z-index: 500;
        display: block;
    }

    .page.show-card .item-info--article {
        position: absolute;
        right: 8px;
        top: -25%;
        z-index: 500;
    }

    body.catalog_menu_top .page.show-card .categories_menu_category + .section ._spacer > ._cell {
        margin-bottom: 1.875rem !important;
    }
}

.catalog-menu svg.w50 {
    width: 50px !important;
}

.social-links__list .social-links__item svg {
    width: 25px !important;
    height: 25px !important;
}

.social-links__list .social-links__item a[title="Tiktok"] svg {
    width: 30px !important;
    height: 30px !important;
    position: relative;
    top: -2.5px;
}

#cart-site .cart .quantity__controls,
#cart-site.open .cart .quantity__controls {
    min-width: 105px;
}

.__date_time_label {
    margin-bottom: 0 !important;
}


.catalog-menu__item svg,
.category_item svg {
    /*width: 80px;*/
    width: 76px;
    /*height: 80px;*/
    height: 76px;
    /*border: 1px solid red;*/
}

.catalog-menu > div {
    margin-right: 15px !important;
}

.catalog-menu > div:last-child {
    margin-right: 0;
}

@media screen and (max-width: 768px) {
    .catalog-menu {
        padding-left: 0 !important;
    }

    .catalog-menu__item svg, .category_item svg {
        /*width: 70px;*/
        /*height: 70px;*/
        width: 66px;
        height: 66px;
    }

    .catalog-menu__item .catalog-menu__item-text {
        margin-top: 0;
    }
}

@media screen and (min-width: 768px) {
    .catalog-menu__item {
        width: 105px !important;
        max-width: 105px !important;
    }
}

.cart__item .preloader,
#checkout_new .preloader {
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    z-index: 99999999;
}

.cart__item .preloader {
    position: absolute;
}

.cart-item--single {
    position: relative;
}

.item-info-stock {
    width: 100%;
    font-size: 12px;
    margin-bottom: 0 !important;
}

.item-info-stock .out-of-stock {
    color: grey;
}

.item-info-stock .in-stock {
    color: #66C91F !important;
}


/*DELIVERY PAGE*/

.page-dostavka .wysiwyg ul,
.page-delivery .wysiwyg ul {
    padding: 0;
    margin: 0;
}

.page-dostavka .container,
.page-delivery .container {
    padding: 0;
    max-width: 100%;
}


.all-cont-delivery-info, .delivery-promo {
    background: #f6f6f6;
}

.section._py-xl._md\:py-xxl.page-dostavka,
.section._py-xl._md\:py-xxl.page-delivery {
    background: #f6f6f6;
}

.delivery-promo ul li,
.all-cont-delivery-info ul li {
    list-style: none;
    padding-left: 29px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 300;
    font-size: 17px;
    line-height: 22px;
    color: #000000;
    margin-bottom: 0;
}

.delivery-promo ul li span,
.all-cont-delivery-info ul li span {
    font-weight: 600;
}

.delivery-promo ul li b,
.all-cont-delivery-info ul li b {
    font-size: 17px;
}

.delivery-promo ul li:before,
.all-cont-delivery-info ul li:before {
    content: '';
    display: block;
    position: absolute;
    top: 3px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #BA2932;
}

.delivery-promo b,
.all-cont-delivery-info b {
    font-weight: 600;
}

.delivery-promo {
    padding-top: 44px;
}

.delivery-promo-cont span.name {
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    color: #000000;
    display: block;
    margin-bottom: 25px;
    padding-right: 8px;
}

.delivery-promo-cont {
    width: 46%;
}

.delivery-promo .container {
    display: flex;
    justify-content: space-between;
}

.delivery-promo-img {
    margin-top: -160px;
    width: 44%;
}

.delivery-promo-img img {
    width: 100%;
}

.all-cont-delivery-info {
    padding-top: 65px;
    margin-top: 0;
}

.tab-block.container {
    display: flex;
    justify-content: space-between;
}


.b-nav-tab {
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    width: 33%;
    text-align: center;
    padding: 34px 15px 40px;
    transition: all 0.3s;
    cursor: pointer;
}

.b-nav-tab img {
    display: block;
    margin: 0 auto;
}

.b-nav-tab span.name {
    font-weight: 700;
    font-size: 25px;
    line-height: 32px;
    text-align: center;
    color: #000000;
    display: block;
    margin-bottom: 26px;
}

.b-nav-tab span.text {
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    text-align: center;
    color: #BA2932;
    transition: all 0.3s;
}

.b-nav-tab:hover span.text,
.b-nav-tab.active span.text {
    color: #767676;
}

.img-block {
    margin-bottom: 30px;
}

.b-nav-tab:hover,
.b-nav-tab.active {
    background: #F6F6F6;
    border: 1px solid #C1C1C1;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.info-delivery {
    margin-top: 80px;
}

.info-delivery .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-delivery span.title {
    font-weight: 700;
    font-size: 35px;
    line-height: 46px;
    color: #000000;
    display: block;
    margin-bottom: 14px;
}

.info-delivery p {
    font-weight: 300;
    font-size: 17px;
    line-height: 25px;
    color: #000000;
    margin-bottom: 13px;
}

.info-delivery-cont-row {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.info-delivery-cont .info-delivery-cont-row:last-child {
    align-items: flex-start;
}

.info-delivery-cont-row .icon-img {
    width: 80px;
    height: 80px;
    background: #FFFFFF;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-delivery-cont-row .info-delivery-cont-row-text {
    width: calc(100% - 80px);
    padding-left: 20px;
}

.info-delivery .info-delivery-cont-row-text p {
    margin-bottom: 0;
}

.page-dostavka .info-delivery ul,
.page-delivery .info-delivery ul {
    margin-top: 15px;
}

.all-cont-delivery-info .table {
    margin-top: 24px;
    padding-bottom: 100px;
}

.all-cont-delivery-info .table-head {
    background: #BA2932;
    border-radius: 10px 10px 0 0;
}

.all-cont-delivery-info .table-head .flex, .all-cont-delivery-info .table-body-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.all-cont-delivery-info .table-head-item {
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    color: #FFFFFF;
    padding: 15px 31px;
}

.all-cont-delivery-info .table-body-row-item {
    font-weight: 300;
    font-size: 17px;
    line-height: 25px;
    color: #000000;
    padding: 15px 31px;
}

.all-cont-delivery-info .table-body-row-item b {
    font-weight: 600;
}

.all-cont-delivery-info .table-head-item:last-child, .all-cont-delivery-info .table-body-row-item:last-child {
    width: 30%;
}

.all-cont-delivery-info .table-body-row-item:first-child, .all-cont-delivery-info .table-head-item:first-child {
    width: 70%;
    border-right: 1px solid #a8a6a6;
}

.all-cont-delivery-info .table.full .table-body-row-item:first-child, .all-cont-delivery-info .table.full .table-head-item:first-child {
    width: 100%;
    border-right: none;
}

.all-cont-delivery-info .table-wrap {
    border: 1px solid #D7D7D7;
    border-radius: 10px;
}

.all-cont-delivery-info .table-body-row.dark {
    background: rgba(217, 217, 217, 0.23);
}

.info-delivery.bg {
    background: url("/public_html/public/images/delivery/bg-delivery.png") no-repeat;
}

.info-delivery.bg {
    margin-top: -170px;
    padding-top: 250px;
    padding-bottom: 240px;
    margin-bottom: -190px;
}

.b-tab.hidden {
    height: 0;
    overflow: hidden;
}

.b-nav-tab-cont {
    text-align: center;
}

.page-dostavka .container .container,
.page-delivery .container .container {
    padding: 0 0.625rem;
}

.page-dostavka span.info-title,
.page-delivery span.info-title {
    font-size: 34px;
    margin-bottom: 35px;
    display: block;
    text-align: center;
    font-weight: 600;
}


@media only screen and (min-width: 1280px) {
    .page-dostavka .container .container,
    .page-delivery .container .container {
        max-width: 75vw;
    }
}

@media only screen and (min-width: 768px) {
    .page-dostavka .container .container,
    .page-delivery .container .container {
        padding: 0 1.25rem;
    }
}


@media only screen and (max-width: 1499px) {
    .info-delivery.bg {
        margin-top: -170px;
        padding-top: 220px;
        padding-bottom: 160px;
        margin-bottom: -190px;
    }

    .info-delivery img {
        max-width: 50%;
    }
}

@media only screen and (max-width: 1199px) {
    .info-delivery .container, .delivery-promo .container {
        flex-wrap: wrap;
    }

    .info-delivery img {
        order: 2;
        margin: 0 auto;
    }

    .info-delivery .info-delivery-cont {
        order: 1;
    }

    .delivery-promo-img {
        margin-top: 22px;
        width: 100%;
    }

    .delivery-promo-cont {
        width: 100%;
    }

    .all-cont-delivery-info .table {
        margin-top: 50px;
    }

    .all-cont-delivery-info .tab-block.container {
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 768px) {
    .b-tab {
        display: none;
        width: 100%;
    }

    .delivery-promo {
        padding-top: 23px;
    }

    .delivery-promo-cont span.name {
        margin-bottom: 19px;
        padding-right: 0;
    }

    .delivery-promo-cont ul li,
    .delivery-promo-cont ul li b {
        font-size: 16px;
    }

    ul li:before {
        top: 5px;
    }

    .delivery-promo-img {
        margin-top: 7px;
    }

    .all-cont-delivery-info {
        padding-top: 27px;
    }

    .b-nav-tab {
        width: 100%;
        margin-bottom: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .b-nav-tab .img-block {
        margin-bottom: 0;
        height: auto !important;
    }

    .b-nav-tab img {
        margin-right: 14px;
    }

    .b-nav-tab span.name {
        margin-bottom: 9px;
        font-size: 20px;
    }

    .b-nav-tab-cont {
        text-align: left;
    }

    .info-delivery {
        margin-top: 19px;
    }

    .info-delivery .container {
        padding: 0;
    }

    .info-delivery span.title {
        font-size: 30px;
    }

    .info-delivery-cont-row .icon-img {
        width: 60px;
        height: 60px;
    }

    .info-delivery-cont-row .info-delivery-cont-row-text {
        width: calc(100% - 70px);
        padding-left: 10px;
    }

    .info-delivery-cont-row {
        margin-bottom: 22px;
    }

    .info-delivery-cont-row ul li {
        padding-bottom: 13px;
        font-size: 16px;
    }

    .info-delivery.bg {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .info-delivery.bg {
        margin-top: 40px;
        margin-bottom: 40px;
        margin-left: -1.25rem;
        margin-right: -1.25rem;
        padding: 0 1.25rem;
    }

    .info-delivery img {
        max-width: 100%;
    }

    .all-cont-delivery-info .table-body-row-item:first-child, .all-cont-delivery-info .table-head-item:first-child {
        width: 100%;
        border-right: none;
    }

    .all-cont-delivery-info .table-head-item:last-child {
        display: none;
    }

    .all-cont-delivery-info .table-head-item:first-child {
        display: block;
    }

    .all-cont-delivery-info .table-body-row-item:last-child {
        width: 100%;
        border-right: none;
    }

    .all-cont-delivery-info .table-head .flex, .all-cont-delivery-info .table-body-row {
        flex-wrap: wrap;
    }

    .all-cont-delivery-info .table .container {
        padding: 0;
    }

    .all-cont-delivery-info .table-body-row-item:last-child {
        width: 100%;
        border-right: none;
        padding-top: 0;
    }

    .all-cont-delivery-info .table-body-row-item:first-child {
        padding-top: 15px;
    }

    .all-cont-delivery-info .table {
        padding-bottom: 30px;
    }
}


@media only screen and (max-width: 480px) {
    .b-nav-tab {
        justify-content: flex-start;
        height: 115px;
        padding: 15px;
    }

    .b-nav-tab img {
        max-width: 89px;
    }

    .b-nav-tab span.name {
        text-align: left;
    }

    .page-dostavka span.info-title,
    .page-delivery span.info-title {
        font-size: 24px;
        margin-bottom: 30px;
        text-align: left;
    }
}
header.header .header__bottom{
    background: #38496A;
}
footer.footer{
    background: #38496A;
}
/**menu on main**/
.header__bottom {
    grid-template-columns: minmax(157px, 24.0104166667vw) minmax(180px, auto) minmax(0, auto) minmax(120px, 7.7083333333vw);
}

/**menu on main**/
.header__bottom {
    grid-template-columns: minmax(157px, 24.0104166667vw) minmax(180px, auto) minmax(0, auto) minmax(120px, 7.7083333333vw);
}


a.catalog-link_btn {
    display: flex;
    align-items: center;
    width: 180px;
    padding: 15px 30px;
    border-radius: 13px;
    background: #8E1F26;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
}

a.catalog-link_btn:hover {
    background: #BA2932;
}

a.catalog-link_btn img {
    margin-right: 10px;
    display: block;
}

.header-catalog_desc {
    position: relative;
    max-width: 180px;
}

.catalog_menu {
    position: absolute;
    top: 99%;
    padding-top: 22px;
    display: none;
}

.catalog_menu::-webkit-scrollbar {
    width: 2px;
}

.catalog_menu::-webkit-scrollbar-thumb {
    background-color: #8E1F26;
}

.header-catalog_desc-wrap:hover .catalog_menu {
    display: block;
}

.catalog_menu-wrapper {
    border-top: 3px solid #BA2932;
    background: #FFF;
    min-width: 70vw;
    height: 417px;
    overflow-y: auto;
    overflow-x: hidden;
}

.catalog_menu-wrapper::-webkit-scrollbar {
    width: 2px;
}

.catalog_menu-wrapper::-webkit-scrollbar-thumb {
    background-color: #8E1F26;
}

.catalog_menu-second-level-wrap, .catalog_menu-last-level-wrap {
    display: none;
}

.catalog_menu-first-level .catalog_menu-first-level-item a {
    padding: 7px 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #111;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.3px;
    width: 100%;
    border-bottom: 1px solid #ddd;
    text-decoration: none;
    transition: all 0.3s;
    text-transform: uppercase;
}

.catalog_menu-first-level-cont {
    max-width: 269px;
    width: 100%;
    position: relative;
}

.catalog_menu-first-level .catalog_menu-first-level-item a:hover {
    background: #F4F4F4;
    color: #BA2932;
}


.catalog_menu-first-level .catalog_menu-first-level-item:last-child a {
    border: none;
}

.catalog_menu-first-level .catalog_menu-first-level-item:last-child .catalog_menu-second-level-wrap a {
    border-bottom: 1px solid #ddd;
}

.catalog_menu-first-level .catalog_menu-first-level-item:last-child .catalog_menu-second-level-wrap .catalog_menu-second-level_item:last-child a {
    border: 0;
}

@media only screen and (min-width: 1280px) {
    .catalog_menu-first-level .catalog_menu-first-level-item:hover .catalog_menu-second-level-wrap {
        display: block;
        position: absolute;
        top: 0;
        left: 100%;
        /*background: #F4F4F4;*/
        box-shadow: 3px 0 4px 0 rgba(0, 0, 0, 0.05) inset;
        width: 100%;
        max-width: 269px;
        height: 100%;
    }
}


.catalog_menu-second-level {
    position: relative;
    height: 100%;

}

@media only screen and (min-width: 1280px) {
    .catalog_menu-second-level_item:hover .catalog_menu-last-level-wrap {
        position: absolute;
        display: block;
        left: 100%;
        top: 0;
        width: calc(70vw - 538px);
        height: 100%;
    }
}

.catalog_menu-first-level .catalog_menu-first-level-item .catalog_menu-last-level a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: transparent;
    margin-bottom: 20px;
    border: none !important;
    padding-left: 30px;
    padding-right: 30px;
    text-transform: initial;
}

.catalog_menu-first-level .catalog_menu-first-level-item .catalog_menu-last-level a img {
    margin-right: 20px;
    display: block;
    max-width: 80px;
    max-height: 80px;
}

.catalog_menu-last-level-wrap {
    padding-top: 20px;
}

.container-catalog {
    max-width: 880px;
    width: 100%;
}

.catalog-slider_prev {
    margin-right: 0.5rem !important;
}


.filter-for_link .filter__wrapper {
    padding-left: 0;
    padding-right: 0;
}

.filter-for_link .filter__container, .filter-for_link .filter__wrapper {
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.15);
}

.filter-catalog-link {
    padding: 15px 19px;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    position: relative;
}

.filter-catalog-link:before {
    content: '';
    display: block;
    position: absolute;
    top: 100%;
    left: 10px;
    right: 10px;
    width: calc(100% - 20px);
    height: 1px;
    background: #ddd;
}

.filter-catalog-group:last-child .filter-catalog-link:before {
    display: none;
}

.filter-catalog-link .name-link img {
    display: none;
    filter: invert(23%) sepia(78%) saturate(2760%) hue-rotate(341deg) brightness(75%) contrast(90%);
}

.filter-catalog-link span.text {
    width: 100%;
    color: #BA2932;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: initial;
    display: none;
    margin-top: 3px;
}

.filter-catalog-link.active,
.filter-catalog-link:hover {
    color: #BA2932;
    background: rgba(245, 234, 234, 1);
}

.filter-catalog-link.active:before,
.filter-catalog-link:hover:before {
    display: none;
}

.filter-catalog-link.active span.text {
    display: block;
}

.filter-catalog-link.active .name-link img {
    display: inline-block;
}

.filter-catalog-link.active img,
.filter-catalog-link:hover img {
    filter: invert(23%) sepia(78%) saturate(2760%) hue-rotate(341deg) brightness(75%) contrast(90%);
}

.mob-fixed-row {
    display: none;
}

.page .main {
    z-index: 10000;
}

.filter__wrapper.filter-block-all {
    padding: 1.5625vw 0.8333333333vw;
    display: none;
}

.product-card__container, .product-card--hover-card:hover:after {
    border-radius: 9px;
}

.sort__icon img {
    transform: rotate(90deg);
    transition: all 0.3s;
}

.sort__item--main {
    padding: 8px 9px 7px 12px;
    border: 1px solid;
}

.sort__icon {
    margin-left: 4px;
}

.sort.is-active .sort__icon {
    background: transparent;
}

.sort.is-active .sort__icon img {
    transform: rotate(270deg);
}

.filter-wrapper-top {
    border-radius: 9px;
    padding: 10px 20px;
    background: #fff;
    box-sizing: border-box;
    width: 100%;
    margin-right: 0;
    margin-left: auto !important;
    margin-bottom: 30px !important;
    justify-content: space-between;
}

.filter-wrapper-top .filter-top {
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-wrapper-top ._cell {
    margin: 0 !important;
    padding: 0 !important;
}

.sort_wrapper {
    gap: 10px;
}

.sort-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.6px;
}

.sort.is-active .sort__wrapper {
    width: max-content;
    border-top: 2px solid #000;
    background: #FFF;
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.15);
    top: 100%;
    padding: 20px;
    padding-bottom: 12px;
    z-index: 9999;
}

.filter-wrapper-top .filter__label--checkbox .filter__icon {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.filter-wrapper-top .filter__label--checkbox .filter__input[checked] + .filter__icon {
    background: #A6141E;
    border-color: #A6141E;
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.filter-wrapper-top .filter__icon:before {
    width: 16px;
    height: 16px;
    background-color: #fff;
    z-index: 0;
    border-radius: 4px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.filter__link span.name {
    color: #111;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1.4px;
    opacity: 0.6;
}

.filter__link:hover span.name {
    opacity: 1;
}

.filter-wrapper-top .filter__label--checkbox .filter__link .filter__input[checked] + span.name {
    opacity: 1;
}

.filter-wrapper-top .sort.is-active.price-row .sort__wrapper {
    width: 300px;
}

.filter__range-value {
    width: 80px;
}

.button--submit {
    width: 63px;
}

.irs-handle {
    top: 28px !important;
    width: 20px !important;
    height: 20px !important;
    background: #A6141E !important;
}

.irs-bar {
    background: #A6141E !important;
}

.irs-wrap__to .irs-bar {
    transform: translateX(-10px) !important;
}

.filter-wrapper-top .sort.is-active.price-row .sort__wrapper {
    z-index: 9991;
}

.sort__list .sort__item {
    padding: 0;
    margin-bottom: 8px;
    color: #111;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1.4px;
    opacity: 0.6;
}

.sort__list .sort__item:hover {
    opacity: 1;
    color: #111;
    background: #fff;
}

.pagination-block {
    padding-left: 6.5rem !important;
}

.pagination__number--current:before {
    border-radius: 9px;
}

.reset {
    color: #FFF;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    border-radius: 2px;
    background: #333538;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 12px;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid #333538;
    text-decoration: none;
}

.reset:hover {
    background: transparent;
    color: #333538;
}


.filter-block {
    width: 24%;
    min-width: 300px;
}

.container-catalog {
    width: 75%;
}


@media only screen and (min-width: 1280px) {
    #description.container, .footer .container, .breadcrumbs .container, .container-catalog-size {
        max-width: 1540px;
    }

    .filter {
        width: 100%;
    }

    .item-gallery__main-image, .slider__dots .slick-dots {
        margin: 0 auto;
    }

}

@media only screen and (max-width: 1400px) {
    .container {
        max-width: 90vw;
    }
}

@media only screen and (max-width: 1279px) {
    .pagination-block {
        padding-left: 0 !important;
    }

    .catalog_menu {
        position: static;
        height: auto;
        width: 100%;
        min-width: initial;
    }

    .catalog_menu-wrapper {
        border-top: none;
    }

    .header-catalog_mob-wrap .catalog-link_btn {
        margin: 0 auto;
    }

    .catalog_menu-first-level-cont {
        max-width: 100%;
        width: 100%;
    }

    .catalog_menu-first-level .catalog_menu-first-level-item a {
        font-size: 16px;
        padding: 14px 0;
    }

    .header-catalog_mob-wrap {
        margin-bottom: 20px;
    }

    .mob-fixed-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 26px;
        position: fixed;
        bottom: 0;
        z-index: 99999;
        width: 100%;
        left: 0;
        border-radius: 20px 20px 0 0;
        background: #38496A;
    }

    .mob-fixed-menu_item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }

    .mob-fixed-row .header__login-link span {
        display: none;
    }

    .mob-fixed-row .text-menu_fixed {
        color: #F9F9F9;
        text-align: center;
        font-size: 13px;
        font-weight: 400;
        line-height: 18px;
        display: block;
    }

    .filter-wrapper-top {
        display: none;
    }

    .mob-fixed-row button._flex._items-center._pl-none {
        width: auto;
        background: transparent;
        border: none;
        box-sizing: border-box;
        border-radius: 0;
        color: #fff;
        display: flex !important;
        flex-direction: column;
        z-index: 1000 !important;
        padding: 0 !important;
        height: auto;
        position: static !important;
    }

    .mob-fixed-row .sort-title._mr-lg {
        margin-left: 1.875rem !important;
        margin-right: 0 !important;
        font-size: 16px;
        text-transform: uppercase;
        font-weight: 600;
    }


    .mob-fixed-row a.catalog-link_btn {
        width: 165px;
        padding: 15px 25px;
    }

    .mobile-menu__content .filter-block {
        display: block !important;
        width: 100%;
        min-width: initial;
        padding: 10px;
    }

    .mobile-menu__content .filter-for_link .filter__wrapper {
        border-radius: 0;
        background: #FFF;
        box-shadow: none;
        width: 100%;
        display: block;
    }

    .mobile-menu__content .filter-for_link .filter__wrapper.category {
        display: none;
    }
}


/**end menu on main**/
.category-card {
    border-radius: 9px;
    overflow: hidden;
}

@media only screen and (max-width: 480px) {
    .item-gallery__main-image {
        width: 87%;
        margin: 0 auto;
    }

    .header-catalog_desc {
        max-width: 100%;
    }
}


/*HEADER RESTYLE*/

.header__login svg {
    width: 17px;
    height: 15px;
}


.header__login-link {
    stroke: none;
    fill: #fff;
}

.header__login-link:hover {
    fill: #a6141e;
}

.form-item--select2-city .select2-selection {
    border-bottom: none !important;
}

.header__search svg,
.header.is-active .header__favorites svg, .is-active-always .header__favorites svg,
.header.is-active .header__cart svg, .is-active-always .header__cart svg {
    width: 20px;
    height: 20px;
}

.header-center-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

a.catalog-link_btn {
    width: auto;
    padding: 15px 20px;
    background: #D4302B;
    font-size: 16px;
    font-weight: 700;
}

a.link-to-form {
    border-radius: 10px;
    border: 1px solid #9C9C9C;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    background-color: white;
}
a.link-to-form svg{
    fill: black;
}
header.header.is-active, .header.is-active-always, .is-active-menu .header{
    color: white;
    fill: white;
}

header.header.is-active .header__favorites svg, .is-active-always .header__favorites svg,
header.header.is-active .header__cart svg, .is-active-always .header__cart svg{
    fill: white;
}

.mobile-menu a.link-to-form {
    margin-top: 20px;
}

a.link-to-form svg {
    margin-right: 16px;
}


a.link-to-form:hover {
    background: #000;
    color: #fff;
}

a.link-to-form:hover svg {
    fill: #fff;
}

.header__bottom {
    grid-template-columns: minmax(100px, 148px) minmax(372px, 544px) minmax(0, auto) minmax(120px, 7.7083333333vw);
}

.menu__item .link__text {
    font-size: 16px;
}

.header__cart-counter {
    width: 20px;
    height: 20px;
    font-size: 11px;
    background: #D4302B;
}

.breadcrumbs a:before {
    content: '/';
    border: none;
    transform: none;
    top: 2px;
    right: 5px;
}

@media only screen and (max-width: 1600px) {
    .header__bottom {
        grid-template-columns: minmax(157px, 170px) minmax(372px, 420px) minmax(0, auto) minmax(120px, 7.7083333333vw);
    }

    .sidebarCartOpen .header__bottom {
        grid-template-columns: minmax(90px, 99px) minmax(372px, 400px) minmax(0, auto) minmax(120px, 7.7083333333vw);
    }
}

@media only screen and (min-width: 1600px) {
    .form-item--select2-city .form-item__control, .form-item--select2-city .form-item__control select {
        width: 4.729167vw;
    }
}

@media only screen and (min-width: 1280px) {
    .menu__item {
        margin-right: 2.5625vw;
    }

    .breadcrumbs a {
        padding-right: 2vw;
    }
}

@media only screen and (max-width: 1360px) {
    .header__bottom {
        grid-template-columns: minmax(157px, 170px) minmax(372px, 399px) minmax(0, auto) minmax(120px, 7.708333vw);
    }

    .menu__item {
        margin-right: 2vw;
    }
}

@media only screen and (max-width: 1280px) {
    .form-item--select2-city .form-item__control, .form-item--select2-city .form-item__control select {
        width: 4.729167vw;
    }

    .header-mobile .header__control > div > div.header__login {
        background: transparent;
        fill: #fff;
        stroke: none !important;
    }

    .header-mobile .header__login svg {
        fill: #fff !important;
        color: #BE1E2E !important;
        stroke: none !important;
    }

    .header__login svg {
        width: 18px !important;
        height: 20px !important;
        display: block;
    }
}

@media only screen and (max-width: 768px) {
    .container-catalog {
        width: 100%;
    }

    .container {
        max-width: 100%;
    }

    .page.show-card ._spacer > * {
        margin-left: 0;
    }

    .page.show-card ._spacer > * {
        margin-left: 0;
    }

    .continue_shopping {
        margin: 0 auto !important;
    }

    .slider--products-list .slider__slide {
        margin: 0;
    }

    .section_product ._spacer--df {
        --m-ss: 0;
    }

    .header__cart:hover svg,
    .header__favorites:hover svg,
    .header__login-link:hover {
        fill: #fff;
        stroke: none;
    }
}


.overflow-section .filter-for_link .filter__wrapper {
    max-height: 600px;
    overflow-x: hidden;
    overflow-у: auto;
}

.overflow-section .filter-for_link .filter__wrapper::-webkit-scrollbar {
    width: 2px;
}

.overflow-section .filter-for_link .filter__wrapper::-webkit-scrollbar-thumb {
    background-color: #8E1F26;
}

.mb-0 ._cell._cell--12._md\:cell--6._lg\:cell--6 {
    margin-bottom: 0 !important;
}

.pb-20 {
    padding-bottom: 20px;
}

@media only screen and (max-width: 1440px) {
    .header__bottom, .header__top {
        padding: 0 1.083333vw;
    }

    .header__bottom {
        grid-template-columns: minmax(100px, 115px) minmax(372px, 420px) minmax(0, auto) minmax(120px, 7.7083333333vw);
    }

    .menu__item {
        margin-right: 2vw;
    }

}

@media only screen and (max-width: 480px) {
    .main-screen .catalog-link_btn {
        display: none;
    }

    .main-screen .main-screen__buttons {
        padding-top: 7em;
        padding-bottom: 4.5em;
    }
}

@media only screen and (min-width: 1280px) {
    .breadcrumbs__wrapper {
        padding: 1.5vw 0;
    }
}


/*CATALOG MOB MENU */
.back-to-first-level {
    display: none;
}

@media only screen and (max-width: 1279px) {
    .header-catalog_desc {
        max-width: 100%;
    }

    .back-to-first-level {
        margin-bottom: 20px;
        font-size: 20px;
        font-weight: 500;
        display: block;
    }

    .back-to-first-level img {
        transform: rotate(180deg);
    }

    .mobile-menu__container.catalog-mob-menu-show .mobile-menu__list,
    .mobile-menu__container.catalog-mob-menu-show .catalog-link_btn.mob_show-catalog,
    .mobile-menu__container.catalog-mob-menu-show .mobile-menu__footer {
        display: none;
    }

    .mobile-menu__container.catalog-mob-menu-show .catalog_menu {
        display: block;
    }

    .mobile-menu__container.catalog-mob-menu-show .catalog_menu-wrapper {
        height: auto;
        overflow-x: hidden;
    }

    .catalog_menu-first-level .catalog_menu-first-level-item .catalog_menu-second-level-wrap.show {
        left: 0;
        background: #fff;
        box-shadow: none;
        max-width: 100%;
        display: block;
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
    }

    .catalog_menu-first-level .catalog_menu-first-level-item a:hover {
        background: #fff;
        color: #111;
    }
}

.mobile-menu__content .catalog_menu-wrapper {
    height: auto;
    overflow: auto;
}
.subscribe__btn-wrapper{
    transition: all 0.4s;
}
@media (min-width: 1280px) {
    .main-conteiner:has(#cart-site:not(.hidden)){
        .subscribe__btn-wrapper{
            right: clamp(160px, 12%, 300px);
        }
    }
   body.sidebarCartOpen .main-conteiner .subscribe__btn-wrapper{
       right: clamp(160px, 20%, 500px) !important;
   }
}
div.swal2-container{
    z-index: 9999999;
}
.cabinet__sidebar-row{
    text-decoration: none;
}
.contacts__info .first__point{
}
.contacts__info .second__point{
    max-width: 320px
}

.contacts__info .work__time{

}
@media screen and (max-width: 1200px){
    .contacts__info .second__point{
        max-width: 290px
    }
}
@media screen and (max-width: 992px){
    .contacts__info .second__point{
        max-width: 100%
    }
    .contacts__info{
        flex-direction: column;
        gap: 15px;
    }
}
@media screen and (max-width: 768px){

}

/*!*ВРЕМЕННО СПРЯТАТЬ НАДПИСЬ НА ГЛАВНОЙ НА БАННЕРЕ*!*
/*.main-screen__title .title--size-h1 {*/
/*    color: transparent;*/
/*}*/
/*body .main-screen {*/
/*    margin-top: 0 !important;*/
/*}*/
