/*#slideshow-plus-0 .slick-slide {*/
/*    margin: 0 5px;*/
/*}*/
/*!* the parent *!*/
/*#slideshow-plus-0 .slick-list {*/
/*    margin: 0 -5px;*/
/*}*/

#mobile-menu-backdrop{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    filter: blur(1px);
    z-index: 95;
    background: #000000a1;
    visibility: hidden;
    opacity: 0;
    transition: .2s;
}

#mobile-menu-backdrop.active{
    visibility: visible;
    opacity: 1;
}

#mobile-menu{
    position: fixed;
    top: 0px;
    background: #ffffff;
    z-index: 200;
    max-width: 360px;
    left: -400px;
    bottom: 55px;
    overflow-y: auto;
    transition: .25s;
    padding-bottom: 50px;
    width: 100%;
}

#mobile-menu *{
    font-weight: 400;
}

#mobile-menu.active{
    left: 0;
}

.header{
    z-index: 99;
}

.mobile-menu{
    display: flex;
    flex-direction: column;
    padding: 12px;
    background: #fff;
    list-style: none;
}

.mobile-menu-logo{
    display: flex;
    align-items: center;
    padding: 12px 0 0 16px;
}

.mobile-menu-item{
    padding: 8px 0 4px 8px;
}

.mobile-menu-item-inner{
    display: flex;
    width: 100%;
    align-items: center;
    min-height: 32px;
}

.mobile-menu-item-img{
    max-width: 24px;
    max-height: 24px;
}

.mobile-menu-item-link{
    font-size: 14px;
    margin-left: 12px;
    font-weight: 400;
}

.mobile-menu-item-inner .toggle-dropdown{
    margin-left: auto;
    height: 32px;
    display: flex;
    align-items: center;
    width: 32px;
    justify-content: center;
    cursor: pointer;
}

.mobile-menu-item-inner .toggle-dropdown.unfolded{
    transform: rotate(90deg);
    transition: .2s;
}

.mobile-menu-item-layer-2{
    padding-left: 35px;
    list-style: none;
}

.mobile-menu-item-layer-2 .mobile-menu-item-link{
    display: flex;
    min-height: 32px;
    align-items: center;
}

.mobile-menu-item-layer-3{
    padding-left: 12px;
    list-style: none;
}


.mobile-menu-item-layer-3 .mobile-menu-item-link{
    display: flex;
    min-height: 32px;
    align-items: center;
}

.mobile-menu-collapse{
    font-size: 14px;
}

.mobile-menu-unfold, .mobile-menu-fold{
    display: flex;
    align-items: center;
    height: 32px;
    cursor: pointer;
}

.mobile-menu-image{
    display: flex;
}

.mobile-menu-image-wrapper {
    background: #fafafa;
}

.mobile-menu-image-wrapper img{
    width: 100%;
    padding: 12px;
}

.mobile-menu-contact-wrapper{
    padding: 8px 20px;
    background: #fff;
}

.mobile-menu-contact-wrapper-row-1{
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-contact-wrapper-phone{
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 400;
}

.mobile-menu-contact-wrapper-wh{
    font-size: 13px;
    color: #767676;
    font-weight: 400;
}

.mobile-menu-contact-wrapper-row-2 {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
}
.mobile-menu-contact-item{
    display: flex;
    grid-gap: 4px;
    align-items: center;
    font-size: 14px;
}

.mobile-menu-second-items{
    display: flex;
    flex-direction: column;
    padding: 12px;
    background: #fff;
    list-style: none;
    border-top: 8px solid #F2F4F8;
}

.mobile-menu-second-item{
    display: flex;
    align-items: center;
    height: 40px;
    padding: 8px;
    grid-gap: 12px;
    border-radius: 8px;
}

.mobile-menu-second-item a{
    font-size: 14px;
}


.mobile-menu-user-section{
    display: flex;
    flex-direction: column;
    padding: 12px;
    background: #fff;
    border-top: 8px solid #F2F4F8;
}

.mobile-menu-user-section .mobile-menu-second-items{
    padding-left: 0;
}

.mobile-menu-contact-btn{
    border-radius: 8px;
    background: #ececec;
    width: 100%;
    display: flex;
    align-items: center;
    height: 40px;
    justify-content: center;
    margin-top: 16px;
}

#mobile-menu-button{
    display:flex;
    flex-direction: column;
    justify-content: space-around;
    position: relative;
    margin: 0!important;
    height: 38px;
    width: 100%;
}

.mobile-menu-button-line{
    width: 26px;
    height: 2px;
    background: #001f3f;
    position: absolute;
}

.mobile-menu-button-line-1{
    top: 9px;
}

.mobile-menu-button-line-2{
    top: 18px;
}

.mobile-menu-button-line-3{
    top: 27px;
}

#mobile-menu-button.active .mobile-menu-button-line-1{
    animation-name: mobile-menu-button-line-1;
    animation-duration: .3s;
    animation-fill-mode: forwards;
}
#mobile-menu-button.active .mobile-menu-button-line-2{
    display: none;
}
#mobile-menu-button.active .mobile-menu-button-line-3{
    animation-name: mobile-menu-button-line-3;
    animation-duration: .3s;
    animation-fill-mode: forwards;
}

@keyframes mobile-menu-button-line-1 {
    0%   {top: 9px;}
    50% {top: 17px; transform: rotate(0deg);}
    100% {top: 17px; transform: rotate(45deg);}
}

@keyframes mobile-menu-button-line-3 {
    0%   {top: 9px;}
    50% {top: 17px; transform: rotate(0deg);}
    100% {top: 17px; transform: rotate(-45deg);}
}

.mobile-menu-button-close{
    position: relative;
    margin-top: 14px!important;
    margin-right: 9px !important;
}

.mobile-menu-button-close .mobile-menu-button-line-1 {
    width: 26px;
    height: 2px;
    background: #001f3f;
    position: absolute;
    top: 17px;
    transform: rotate(-45deg);
    left: 0;
}

.mobile-menu-button-close .mobile-menu-button-line-2 {
    width: 26px;
    height: 2px;
    background: #001f3f;
    position: absolute;
    top: 17px;
    transform: rotate(45deg);
    left: 0;
}

.mobile-header-icons{
    display: flex;
    grid-gap: 8px;
    padding-right: 10px;
    width: 80px;
}

.pos-rel{
    position: relative;
}

.header-buttons-cart-quantity{
    right: calc(50% - 20px);
    bottom: 23px;
}

.mobile-header-icons{
    display: none;
}
@media screen and (max-width:1199px) {
    #mobile-menu{
        bottom: 0;
    }
    #mobile-menu-backdrop{
        z-index: 105;
    }
    .mobile-menu-logo .mobile-logo{
        display:block;
    }
    .header-search{
        padding: 0 16px 0 32px;
    }
}
@media screen and (max-width:767px) {
    .header-buttons-cart{
        padding: 0!important;
    }
    .mobile-header-icons{
        display:flex
    }

    .header-search .form-control{
        background: #fff;
    }

    .search-inner-wrapper{
        border: 1px solid #d3d8e7;
    }

    .search-inner-wrapper{
        background: unset;
    }

    .header.with-slideshow{
        background: #fff;
    }
    .header-buttons .sc-btn:not(:first-child){
        border-left: 0;
    }

    #top{
        background: transparent;
    }

    .header-search-box .mobile-menu-button{
        display:none
    }

    #mobile-menu{
        bottom: 55px;
    }

    #mobile-menu-backdrop{
        z-index: 95;
    }
    .header-search{
        padding: 0 1rem 0 0
    }

    .mobile-menu-button-close{
        display:none!important;
    }
}

.mobile-menu-second-items li:last-of-type a{
    color: #d03131;
    font-weight: 700!important;
}

.mobile-menu-language-section{
    display: flex;
    flex-direction: row;
    background: #fff;
    grid-gap: 8px;
    font-weight: 400;
    padding-top: 0;
}

.mobile-menu-language-item{
    cursor: pointer;
}

.mobile-menu-language-item.active{
    font-weight: 900!important;
}

.mobile-menu-language-item-delim{
    width: 1px;
    height: 24px;
    background: #dfdfdf;
}

.mobile-menu-sec-1{
    padding-bottom: 0;
}

.mobile-menu-sec-2{
    padding-top: 0;
    padding-bottom: 0;
}

.mobile-menu-sec-3{
    padding-top: 0;
}

#logo{
    padding-left: 3px;
}

#top{
    z-index: 105;
}

.mobile-menu-btn-expansion{
    width: 32px;
}

.border-top-3{
    border-top: 8px solid #F2F4F8;
}

.mobile-visible .header-buttons-cart svg{
    width: 24px;
    height: 24px;
}

.header-buttons.mobile-visible>*{
    padding: 0!important;
    width: 25%;
    max-width: 25%;
}

@keyframes glowAnim {
    0% {
        box-shadow: 0px 0px 0px 0px #fff;
    }
    50% {
        box-shadow: 0px 0px 8px -2px #001f3f;
    }
    100% {
        box-shadow: 0px 0px 0px 0px #fff;
    }
}

.mobile-menu-second-item.glow {
    animation: glowAnim 1.3s ease-in-out 2;
}

.mobile-menu-button-tablet{
    position: relative;
    height: 32px;
    margin-left: 8px !important;
    margin-right: 0 !important;
    margin-bottom: 7px !important;
}
.mobile-menu-button-tablet .mobile-menu-button-line{
    left: 0;
}

#slideshow-plus-0 .slick-track{
    grid-gap: 10px;
}


/*#oct-infobar #oct-infobar-btn{*/
/*    display: none;*/
/*}*/

#oct-infobar .oct-infobar-text{
    display: flex;
    grid-gap: 5px;
    margin: 0 auto;
    /* color: #000!important; */
    font-weight: bold;
    font-size: 14px;
}

@media (max-width: 500px) {
    #oct-infobar .oct-infobar-text{
        grid-gap: 10px;
        font-size: 12px;
    }
}

@media (max-width: 350px) {
    #oct-infobar .oct-infobar-text{
        grid-gap: 10px;
        font-size: 8px;
    }
}

.usdt_rate{
    display: flex;
    margin-top: 5px;
}

.usdt_rate .usdt_rate_item{
    display: flex;
    flex-direction: column;
    grid-gap: 5px;
}

.usdt_rate .usdt_rate_item img{
    width: 24px;
}

.usdt_content{
    align-items: center;
}

.usdt_title{
    font-weight: bold;
}

.usdt_content span{
    font-size: 14px;
}

.usdt{
    background: #e9efff;
    border: 0;
    padding: 12px 10px;
}
.usdt_value{
    color: #BE5663;
    font-weight: bold;
}

.usdt_name{
    color: #444655;
    font-weight: normal;
}

.usdt_info{
    border: 1px solid #BE5663;
    color: #BE5663;
}

.usdt_info_item_text{
    color: #444655;
}

.usdt{
    display: flex;
    align-items: center;
    grid-gap: 5px;
    font-size: 12px;
    /*border: 1px solid #dfe7f6;*/
    padding: 10px;
    border-radius: 6px;
    width: max-content;
    height: 42px;
    /*margin-top: 15px;*/
    margin-right: auto;
    margin-left: 15px;
}

.usdt_name{
    color: #000;
    font-weight: bold;
}


.usdt_info{
    width: 15px;
    height: 15px;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.usdt_info_item{
    display: none;
    background: #fff;
    position: absolute;
    border: 1px solid #dfe7f6;
    left: 38px;
    top: -14px;
    border-radius: 8px;
    z-index: 15;
    text-align: center;
}

.usdt_info_item_text{
    position: relative;
    display: block;
    padding: 10px;
}

.usdt_info_item_text:before{
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    transform: rotate(45deg);
    z-index: 14;
    position: absolute;
    border-left: 1px solid #dfe7f6;
    border-bottom: 1px solid #dfe7f6;
    left: -7px;
    top: 15px;
    background: #fff;
}

.usdt_info_item_text:hover .usdt_info_item{
    display: block;
}

.usdt_info:hover .usdt_info_item{
    display: block;
}

/*.sc-product-buttons .sc-product-one-click-btn{*/
/*    margin-top: 0;*/
/*}*/

.mr-3{
    margin-right: 1.5rem;
}

.gg-10{
    grid-gap: 10px;
}


.max-w-48{
    max-width: 48px;
    padding: 0!important;
    width: 48px;
    height: 48px;
}


/*@media (min-width: 991px) {*/
/*    .sc-product-buttons #button-cart.sc-btn {*/
/*        padding: 0.875rem;*/
/*        width: 100%;*/
/*    }*/
/*}*/


@media (min-width: 992px) and (max-width: 1199px) {
    .sc-product-buttons .sc-module-quantity{
        flex: 0 0 100px;
    }
    .sc-module-quantity button span{
        width: 15px;
        height: 15px;
    }

    .sc-module-quantity button{
        padding: .25rem;
    }
}



.squares-wrapper{
    display: flex;
    grid-gap: 25px;
}

.squares-wrapper .square-item{
    display: flex;
    padding: 10px;
    flex-direction: column;
    border-radius: 8px;
    width: 25%;
    position: relative;
    grid-gap: 10px;
    text-decoration: none;
    border: 1px solid #001F3F1A;
}

.squares-wrapper .square-short-info{
    position: absolute;
    width: 15px;
    height: 15px;
    display: block;
    top: 10px;
    right: 10px;
    display: none;
}
.squares-wrapper .square-short-info svg{
    width: 15px;
    height: 15px;
}

.squares-wrapper img{
    margin: 0 auto;
}

.squares-wrapper span{
    text-align: center;
    margin-top: 0px;
    color: #000;
    font-weight: 300;
    font-size: 12px;
    font-size: 14px;
}


.sqaure_info{
    position: relative;
    cursor: pointer;
    line-height: 1px;
    max-height: 15px;
    display: block;
}

.sqaure_info_item{
    background: #8a1e5a;
    position: absolute;
    border: 1px solid #8a1e5a;
    left: -12px;
    bottom: 5px;
    border-radius: 8px;
    z-index: 15;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    transition: .2s;
    transform: scale(0.4);

}

.sqaure_info_item_text{
    position: relative;
    display: block;
    padding: 10px;
    color: #fff!important;
}

.sqaure_info_item_text:before{
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    transform: rotate(315deg);
    z-index: 14;
    position: absolute;
    left: 7px;
    bottom: -7px;
    background: #8a1e5a;;
}

.sqaure_info_item_text:hover .sqaure_info_item{
    display: block;
}

.sqaure_info:hover .sqaure_info_item{
    visibility: visible;
    opacity: 1;
    left: -5px;
    bottom: 25px;
    transform: scale(1);
}

.swiper-container-squares{
    overflow: hidden;
    position: relative;
    /*padding: 0px 15px 20px 15px;*/
}

.swiper-container-squares-arrows{
    position: relative;
}

.swiper-container-squares-arrows .swiper-button-prev,
.swiper-container-squares-arrows .swiper-button-next{
    top: 50%;
    position: absolute;
    opacity: 0;
    transition: .2s;

}

.swiper-container-squares-arrows:hover .swiper-button-prev{
    opacity: 1;
}
.swiper-container-squares-arrows:hover .swiper-button-next{
    opacity: 1;
}

.swiper-container-squares-arrows .swiper-button-prev{
    left: 20px;
}

.swiper-container-squares-arrows .swiper-button-next{
    right: 20px;
}

#sc_livesearch .sc-livesearch-list{
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    grid-gap: 15px;
}

.sc-livesearch-list> .sc-module-item{
    width: calc(50% - 8px);
    border-radius: 8px;
}

.sc-livesearch-list .content-block{
    height: 100% !important;
}

@media (max-width: 1400px){

    .swiper-container-squares-arrows .swiper-button-prev{
        left: 25px;
        opacity: 1;
    }

    .swiper-container-squares-arrows .swiper-button-next{
        right: 25px;
        opacity: 1;
    }

    .sc-livesearch-list> .sc-module-item{
        width: calc(100%);
    }
}
@media (max-width: 1199px){
    .sc-livesearch-list> .sc-module-item{
        width: calc(50% - 8px);
    }
}


.square-item img{
    max-height: 40px;
}


.swiper-container-squares-arrows .swiper-button-next,
.swiper-container-squares-arrows .swiper-button-prev {
    width: 15px;
    height: 25px;
    background-size: 15px 30px;
}

.modal-body-info{
    min-height: unset!important;
}

.modal-body-info ul{
    padding-left: 20px;
}

.sc-btn-secondary:not([disabled]){
    background-color: #e9efff;
}

.sc-btn.added{
    /*background: linear-gradient(90deg, rgba(138, 30, 90, 1) 0%, rgba(190, 86, 99, 1) 100%)!important;*/
    background: #001f3f!important;
}

.sc-btn.added svg path{
    /*fill: #fff;*/
    stroke: #fff;
}

#product .sc-btn.sc-btn-secondary:not([disabled]):hover{
    background: #f2f4f8;
}
#product .sc-btn.sc-btn-secondary:not([disabled]):hover span{
    color: #000!important;
}

/*#button-cart{*/
/*    !*padding: 8px!important;*!*/
/*    margin-right: 1.5rem;*/
/*    padding: .875rem;*/
/*    width: 100%;*/
/*    max-width: 235px;*/
/*}*/


/*#button-cart .sc-btn-icon.sc-btn-icon-cart-img{*/
/*    width: 30px;*/
/*    height: 30px;*/
/*}*/

.swiper-container-squares-arrows .swiper-button-next{
    background-image: url(/catalog/view/theme/oct_showcase/image/right.svg);
}

.swiper-container-squares-arrows .swiper-button-prev {
    background-image: url(/catalog/view/theme/oct_showcase/image/right.svg);
    transform: rotate(180deg);
}

.sc-category-products .price-tax{
    display: none;
}

.sc-category-sort select{
    background-color: #fff;
    color: #1c1c28;
}

#productImages .sc-module-stickers{
    position: absolute;
    top: 10px;
    left: 20px;
    z-index: 1;
}

#productImages{
    position: relative;
}

@media (max-width: 768px) {
    #productImages .sc-module-stickers{
        top: 15px;
    }
}
.fixed-price{
    display: flex;
    align-items: center;
    grid-gap: 7px;
}

.fixed-price .sc-module-price-km-usdt{
    display:none
}
.sc-module-price-km .sc-module-price-km-prices:after{
    display:none!important;
}

.fixed-price>div{
    margin: 0!important;
}

.oct-checkout-block .form-group{
    position: relative;
}

.user_info_adress[data-delivery-code="free.free"] .input-wrapper-postcode,
.user_info_adress[data-delivery-code="free.free"] .input-wrapper-zone_id {
    display: block;
}

.input-wrapper-postcode,
.input-wrapper-zone_id{
    display: none;
}



.user_info_adress[data-delivery-code="pickup.pickup"] .input-wrapper-address_1,
.user_info_adress[data-delivery-code="pickup.pickup"] .input-shipping-firstname,
.user_info_adress[data-delivery-code="pickup.pickup"] .input-shipping-lastname,
.user_info_adress[data-delivery-code="pickup.pickup"] .input-shipping-zone,
.user_info_adress[data-delivery-code="pickup.pickup"] .shipping-address,
.user_info_adress[data-delivery-code="pickup.pickup"] .input-wrapper-city {
    display: none!important;
}


.hidden{
    display: none!important;
}

.usdnt-price-grid{
    color: #BE5663;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
}

.usdnt-price-grid span{
    font-size: 12px;
    font-weight: 500;
    color: #1A1A1A;
}

.km-grid-add-to-cart{
    max-height: 36px;
    align-self: end;
    margin-bottom: 5px;
}

#slideshow-plus-0 picture,
#slideshow-plus-0 img{
    max-height: 410px;
}

.max-h-logo{
    max-height: 35px;
}

#oct-infobar-btn{
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fafafa'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat rgba(0, 0, 0, 0) !important;
}


.sc-product-content-description h1,
.sc-product-content-description h2{
    margin-top: 30px;
    margin-bottom: 10px;
}

.sc-category-products .sc-module-sticker-infinity{
    /*display: none;*/
}

.sc-category-products .sc-module-title,
.sc-module-info .sc-module-title{
    margin: 12px 0;
    line-height: 1.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 575.98px){
    .sc-category-products .sc-module-title{
        -webkit-line-clamp: 3;
    }
}



.button-preorder-default{
    display: none!important;
}

.sc-no-stock .sc-module-stickers{
    display: none!important;
}

.sc-no-stock .sc-btn-outline:hover{
    border-color: transparent;
}



#oct-scales-static{
    margin-top: 3px;
}

#oct-scales-static:checked{
    border: 1px solid #fff;
}

.thankyou_page img{
    max-width: 175px;
}

.thankyou_page a span{
    color: #0d6efd;
}

.sc-module-item .sc-module-img .sc-module-stickers{
    position: absolute;
    top: 0;
    margin-top: 0!important;
}

.sc-category-products .sc-module-product-info{
    /*display: none;*/
    margin-bottom: 10px;
}

.sc-module-model{
    /*display: none;*/
    color: #8a8a8a;
}

.hover-gradient:hover{
    background: linear-gradient(90deg, rgba(138, 30, 90, 1) 0%, rgba(190, 86, 99, 1) 100%) !important;
}



@media (max-width: 575.98px){
    .sc-category-products .content-block .sc-module-price-box .sc-module-cart .sc-module-cart{
        margin-right: auto;
    }
    .sc-category-products .content-block .sc-module-price-box .sc-module-cart{
        flex-direction: column;
        padding-top: 0.5rem;
    }
}



.sc-module-price{
    margin-top: 0!important;
}

.flex-d-col{
    flex-direction: column;
}

.sc-module-sticker-green{
    display: none;
}

.attribute-wrapper .more-btn{
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}
.attribute-wrapper .more-btn:hover{
    color: #0d6efd;
}

.attribute-wrapper-collapsed{
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.attribute-wrapper-collapsed .more-btn{
    display: block;
}

#button-ukrcredits{
    margin-left: .55rem;
    font-size: .875rem;
    height: 42px;
    border: 1px solid #e9efff;
    transition: .2s;
    display: flex;
    align-items: center;
    grid-gap: 5px;
    border-radius: .5rem !important;
}

@media screen and (min-width: 1400px) {
    #button-ukrcredits {
        margin-left: .55rem;
    }

}
.product-second-line-3{
    margin-left: .55rem;
}

#button-ukrcredits path{
    transition: .2s;
}
#button-ukrcredits:hover path{
    stroke: #fff;
    fill: #fff;
}
/*
#button-ukrcredits .bg{
    height: 100%;
    width: 100%;
    padding: .5rem 1rem;
    display: flex;
    align-items: center;
    background: #fff;
    justify-content: center;
}
*/
#button-ukrcredits .bold{
    font-weight: 700;
    color: #001f3f !important;
    transition: .2s;
}

#button-ukrcredits:hover{
    background: #1e448a;
    color: #fff;
}

#button-ukrcredits:hover .bold{
    color: #fff !important;
}
#button-ukrcredits:hover .parts{
    color: #fff !important;
}
#button-ukrcredits:hover svg{
    filter: brightness(0) saturate(100%) invert(100%) sepia(4%) saturate(194%) hue-rotate(276deg) brightness(118%) contrast(100%) !important;
}



@media (max-width: 1599px){
    #button-cart{
        padding: .875rem 2rem;
    }
}

#button-ukrcredits .icon svg{
    filter: brightness(0) saturate(100%) invert(8%) sepia(24%) saturate(7499%) hue-rotate(194deg) brightness(96%) contrast(104%);
}

#button-ukrcredits .icon img{
    max-width: 20px;
}

#button-ukrcredits .parts{
    color: #001f3f !important;
}

@media (max-width: 1399px){
    #button-ukrcredits .icon{
        display: inline-block;
    }

    #button-ukrcredits .parts{
        display: none;
    }

    #button-cart{
        padding: .875rem 1rem;
    }
}

@media (max-width: 1199px){
    #button-ukrcredits{
        margin-left: 0.75rem;
    }

    .sc-product-buttons .sc-module-quantity{
        margin-right: 0.75rem;
    }

    #button-ukrcredits .bold{
        line-height: 16px;
    }
}

@media (max-width: 600px){
    #button-cart{
        width: auto;
    }
}


@media (max-width: 550px){
    .quanitty-mobile-100{
        width: 100%;
    }

    #button-cart{
        width: 49%;
        margin-top: 1rem;
    }

    #button-ukrcredits{
        width: auto;
        margin-top: 0;
        margin-left: auto;
    }

    .m-col-wrap{
        flex-wrap: wrap;
    }
    .quanitty-mobile-100>div{
        max-width: 150px;
        /*margin: 0 auto!important;*/
    }
}

#ukrcredit-popup .prop_total{
    margin-top: 30px;
}

.oct-checkout .btn{
    padding: 1rem;
}

@media (max-width: 430px){
    #button-cart{
        width: 40%;
    }

    #button-ukrcredits{
        width: 55%;
    }
}

.usdt img{
    display: none;
}

label[for="no_call"]{
    display: flex;
    align-items: center;
}

.max-w-100{
    max-width: 100% !important;
}

.sc-module-img.position-relative{
    margin: 0;
    padding: 0;
}

@media (max-width: 468px) {
    .sc-category-products .product-layout.sc-module-col.product-grid{
        padding: 5px;
        margin-top: 0;
    }
    .sc-category-products .content-block .sc-module-price-box .sc-module-cart .sc-module-cart{
        margin: 0!important;
        width: 100%;
    }

    .sc-category-products .content-block{
        padding: 0.5rem;
    }

    .sc-category-products .km-grid-add-to-cart.sc-btn{
        width: 100%;
    }

    .sc-category-products [data-type=split] .content-block{
        height: 100% !important;
    }

    .sc-category-products .sc-module-product-info .sc-module-model span{
        display: none;
    }
    .sc-category-products .sc-module-product-info{
        margin-bottom: 0;
    }
    [data-type=split] .sc-module-caption{
        max-width: 100% ;
    }
}

.sc-megamenu.sc-megamenu-custom{
    max-width: 306px;
}

.sc-megamenu-list-item>a.d-flex.align-items-center.flex-grow-1 img{
    max-width: 28px;
    max-height: 23px;
}



.sc-megamenu .sc-megamenu-list{
    padding-top: 12px;
    border: 0;
}


.sc-megamenu-child-wrapper{
    margin-top: -1px;
}
.without-day-products .sc-megamenu-child-wrapper{
    margin-top: 0px;
}

.align-center{
    text-align: center;
}

#custom-field1{
    display: none!important;
}

.sc-megamenu-children-item a img{
    max-width: 65px;
    max-height: 65px;
}


/* правки меню */
@media (min-width: 1200px){
    .sc-megamenu-children-item .flex-column {
        flex-direction: row !important;
        align-items: center;
        grid-column-gap: 15px;
    }
    .sc-megamenu-children {
        grid-column-gap: 25px;
    }
    .sc-megamenu-child-title.mb-4 {
        margin-bottom: 10px!important;
        font-size: 1.125rem !important;
    }
    .sc-megamenu-children-item {
        padding-bottom: 10px;
    }
    .sc-megamenu-children-item a img {
        max-width: 55px;
        max-height: 55px;
        width: 55px;
        height: 55px;
    }
    .sc-megamenu.with-slideshow .sc-megamenu-list.without-day-products:hover,
    .sc-megamenu.active .sc-megamenu-list,
    .sc-megamenu.with-slideshow.active .sc-megamenu-list.without-day-products {
        /*min-height: auto;*/
        min-height: 460px;

    }
    .sc-megamenu-children-item ul {
        padding-left: 73px;
    }
    .sc-megamenu-child-wrapper {
        padding: 1rem 2rem;
        max-height: inherit;
        min-height: auto;
    }
    .sc-megamenu-list-item>.sc-megamenu-child {
        min-height: calc(100% - 9px);
        height: auto;
    }
    .sc-megamenu.with-slideshow .sc-megamenu-list-item>.sc-megamenu-child {
        min-height: calc(100% - 32px);
        height: auto;
    }
    .sc-slideshow-plus-item-fullimg img {
        height: 400px;
    }
    .sc-megamenu .sc-megamenu-list {
        padding-bottom: 12px;
    }
}
/* правки меню */


@media (min-width: 1200px){
    .sc-megamenu-child{
        width: 988px;
    }
}


@media (min-width: 1600px){
    .sc-megamenu-child{
        width: 1038px;
    }
}

.km-language-switcher .nav-dropdown-menu button{
    color: #fff;
    padding: 0px;
    font-weight: 200;
    font-size: 14px;
}

.km-language-switcher .nav-dropdown-menu button.active-item{
    border-bottom: 1px solid #fff;
    border-radius: 0;
    font-weight: 600;
    outline: 0;
    box-shadow: unset;
}

.km-language-switcher .nav-dropdown-menu{
    display: flex;
    grid-gap: 7px;
}

.mobile-sidebar-lang .km-language-switcher .nav-dropdown-menu button {
    font-size: 18px !important;
    text-transform: uppercase;
    color: #000;
    padding: 0;
}

.mobile-sidebar-lang .km-language-switcher .nav-dropdown-menu button.active-item {
    border-bottom: 1px solid #000;
}


.mobile-sidebar-lang .nav-dropdown-menu{
    grid-gap: 12px;
}

.nav-dropdown-menu button{
    color: #fff;
}
.km-language-switcher {
    margin-left: 50px;
    margin-right: 15px;
}

.mobile-sidebar-lang .km-language-switcher{
    margin-left: 25px;
    margin-right: 0;
    margin-top: 5px;
}

.mobile-sidebar-lang .km-language-switcher .mobile-info-title{
    display: none;
}

@media (max-width: 575.98px) {
    .sc-module-info .sc-module-title{
        min-height: 58px;
    }

    .category-price-block{
        min-height: 72px;
    }
}

.sc-megamenu-custom .sc-megamenu-children-item ul{
    padding-left: 0;
}

.sc-megamenu-children-item a img.menu-child-icon{
    max-width: 40px;
    max-height: 20px;
    width: auto;
    height: auto;
    margin-left: 5px;
}

.modal-cart-bottom-buttons{
    display: flex;
    justify-content: space-between;
    grid-gap: 10px;
}

.km-cart-button-order{
    padding: .985rem 0rem;
    width: 48%;
}

.popup-cart-rec-product{
    display: flex;
    grid-gap: 10px;
}

.popup-cart-rec-product-name{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 50px;
    color: #000!important;
}

.popup-cart-rec-product-img{
    max-width: 50px;
    max-height: 50px;
    object-position: center;

}

.popup-cart-rec-product-img-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-cart-rec-product-add{
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    flex-direction: column;
    margin-left: auto;
}

.recomend-product-title{
    border-top: 1px solid #f2f4f8;
    padding-top: 15px;
    text-align: center;
}

.cart-recomend-products{
    overflow-y: auto;
    max-height: 200px;
}

.popup-cart-rec-product-old_price{
    color: #9d9d9d;
    font-weight: normal;
    text-decoration: line-through;
    font-size: 14px;
    margin-top: 2px;
}

.popup-cart-rec-product-info-price{
    display: flex;
    align-items: center;
    grid-gap: 5px;
}

.popup-cart-rec-product-info{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 60px;
}

#cartModal{
    z-index: 21000!important;
}

.modal textarea#inputReviewComment{
    height: 125px!important;
}




.form__container {
    position: relative;
    width: 100%;
    border: 1px solid #e4e4eb;
    align-items: center;
    font-size: 18px;
    padding: 15px;
    transition: .2s;
    border-radius: 8px;
}



.form__container.active {
    background-color: rgba(192, 192, 192, 0.2);
}

.form__file {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    opacity: 0;
}

.form__files-container {
    display: flex;
    width: 100%;
    font-size: 0;
    margin-top: 20px;
    flex-wrap: wrap;
    grid-gap: 10px;
}

.form__image-container {
    display: inline-block;
    width: calc(12% - 10px);
    margin-bottom: 10px;
    position: relative;
    border-radius: 12px;
}



.form__image-container:after {
    content: "✕";
    position: absolute;
    line-height: 200px;
    font-size: 30px;
    margin: auto;
    top: 0;
    right: 0;
    left: 0;
    text-align: center;
    font-weight: bold;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form__image-container:hover:after {
    opacity: 1;
    cursor: pointer;
}

.form__image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    display: flex;
    object-fit: cover;
}

#upload-container{
    display: flex;
}

.review-images-wrapper{
    display: flex;
    grid-gap: 10px;
    flex-wrap: wrap;
}

.review-image-item{
    max-width: 95px;
    border-radius: 5px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}


.review-video-link{
    margin-top: 15px;
    position: relative;
}

.review-video-thumb{
    height: 100%;
    max-height: 90px;
    border-radius: 5px;
}

.review-video-link:before{
    content: '';
    display: block;
    position: absolute;
    background: url(/image/icons/youtube_logo.png);
    width: 48px;
    height: 48px;
    background-size: contain;
    top: calc(50% - 24px);
    left: calc(50% - 24px);
}



.review-video-title{
    margin-bottom: 5px;
}

.auth_to_review{
    color: #1e448a;
    text-decoration: underline;
    cursor: pointer;
}

.auth_to_review:hover{
    color: #000;
}

.oct-infobar-text .text{
    flex: auto;
    align-items: center;
}

.oct-infobar-text {
    align-items: center;
}


@media (max-width: 500px) {
    .modal-body{
        padding: 2rem 1.4rem;
    }
}

.bundle_wrapper{
    background: #ECECEC;
    margin-top: 50px;
    padding: 25px 65px;
    border-radius: 12px;
    /*max-width: 648px;*/
    width: 100%;
    margin: 0 auto;
    margin-top: 50px;
    border-radius: 0;
}


.bundle_wrapper.bundles_count-1{
    padding: 25px;
}

.bundle_wrapper.bundles_count-1 .bundle_product_name{
    -webkit-line-clamp: 2;
    height: 44px;
}

.bundle_item{

}

.bundle_products{
    display: flex;
    grid-gap: 25px;
}

.bundle_product{
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    max-width: calc(33% - 16px);
}

.bundle_products-2 .bundle_product{
    max-width: 50%;
}

.bundle_products-2 .bundle_product_img img{
    /*aspect-ratio: 10 / 7;*/
    max-width: 174px;
    width: 100%;
}

.bundle_product_img{
    margin-bottom: 15px;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bundle_product_img img{
    max-width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 12px;
    object-fit: contain;
    background: #fff;
}

.bundle_product_name{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 15px;
    height: 63px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
}

.bundle_product_price{
    display: flex;
    position: relative;
    font-weight: 500;
    color: #001F3F;
}

.bundle_product_pricees{
    flex-direction: column;
    display: flex;
}

.bundle_product_pricees .discount_percentage{
    display: flex;
    align-items: center;
}

.bundle_products-2 .bundle_product_pricees{
    /*flex-direction: row;*/
}

.bundle_product_price:after{
    content: ' ';
    width: 1px;
    display: none;
    height: 16px;
    background: #8f90a6;
    margin-left: 10px;
    margin-top: 5px;
}

.bundle_product_usdt_price{
    color: #1A1A1A;
    opacity: .5;
    font-weight: 500;
}

.bundle_products-2 .bundle_product_usdt_price{
    /*padding-left: 10px;*/
}

.bundle_products{
    border-bottom: 1px solid #001F3F1A;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.bundle_info{
    padding: 16px;
    border-radius: 12px;
    background: #fff;
    margin-top: 25px;
}

.bundle_footer{
    display: flex;
}

.bundle_footer_buy_btn{
    height: 48px;
    font-size: 18px;
    background: #001F3F;
    color: #fff;
    display: flex;
    align-items: center;
    padding: .875rem 1rem;
    border-radius: 10px;
    margin-left: auto;
    border: 1px solid #1e448a;
    cursor: pointer;
}

.bundle_footer_buy_btn:hover{
    background: #193552;
}

.bundle_footer_usdt_price{
    display: flex;
    align-items: end;
}

.pb-25{
    padding-bottom: 25px;
}

.bundle_footer_info{
    display: flex;
}

.bundle_footer_full_price{
    text-decoration: line-through;
    color: #001F3F;
    font-weight: 400;
    font-size: 14px;
}

.bundle_footer_comp_price{
    font-size: 20px;
    color: #D03131;
    font-weight: 500;
}

.bundle_footer_usdt_price{
    position: relative;
    font-size: 16px;
    font-weight: 400;
    color: #8f90a6;
}

.bundle_footer_usdt_price:before{
    content: ' ';
    width: 1px;
    display: block;
    height: 16px;
    background: #8f90a6;
    margin-left: 10px;
    margin-right: 10px;
    bottom: 5px;
    margin-bottom: 5px;
}

.bundles_header_title{
    font-size: 20px;
    font-weight: 500;
    color: #001f3f;
}


.bundle_products .bundle_product:not(:last-child) .bundle_product_img::after {
    content: "+";
    display: block;
    position: absolute;
    top: calc(50% - 20px);
    right: -22px;
    font-size: 32px;
    color: #d1d1d1;
}

.bundle_product_img{
    position: relative;
}

.bundle_wrapper .slick-arrow{
    display: flex;
    font-size: 0;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 12px;
    justify-content: center;
    align-items: center;
}

.bundle_wrapper .slick-prev{
    position: absolute;
    left: -52px;
    top: calc(50% - 20px);
}

.bundle_wrapper .slick-next{
    position: absolute;
    right: -52px;
    top: calc(50% - 20px);
}

.bundle_wrapper .slick-prev:before{
    content: ' ';
    display: block;
    width: 22px;
    height: 22px;
    background-image: url('data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M14%207L9%2012L14%2017%22%20stroke%3D%22%23001F3F%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E');
    transition: .2s;
}


.bundle_wrapper .slick-next:before{
    content: ' ';
    display: block;
    width: 22px;
    height: 22px;
    background-image: url('data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M10%207L15%2012L10%2017%22%20stroke%3D%22%23001F3F%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E');
    transition: .2s;
}

.bundle_wrapper .slick-next:hover:before{
    background-image: url('data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M10%207L15%2012L10%2017%22%20stroke%3D%22%23FFFFFF%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E');
}

.bundle_wrapper .slick-next:hover{
    background: #001f3f;
    transition: .1s;
}


.bundle_wrapper .slick-prev:hover:before{
    background-image: url('data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M14%207L9%2012L14%2017%22%20stroke%3D%22%23FFFFFF%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E');
}

.bundle_wrapper .slick-prev:hover{
    background: #001f3f;
    transition: .1;
}

.bundle_wrapper .slick-dots{
    padding: 0;
    display: block;
    text-align: center;
    margin-top: 10px;
}

.bundle_footer_buy_btn.success_ajax{
    color: #1e448a;
    background: #fff;

}


@media (min-width: 1600px) {
    .bundle_product_img img{
        /*height: 296px;*/
    }
}

@media (max-width: 1599px) {
    .bundle_product_img img{
        max-height: 225px;
    }

    .bundle_products-2 .bundle_product_pricees{
        flex-direction: column;
    }

    .bundle_products-2 .bundle_product_usdt_price{
        padding-left: 0;
    }
}

@media (max-width: 1200px) {
    .bundle_footer{
        flex-direction: column;
    }

    .bundle_footer_buy_btn{
        margin: 0;
        width: fit-content;
        margin-top: 10px;
        padding: .875rem 2rem;
    }
}

@media (max-width: 575.98px){
    .bundle_products{
        flex-direction: column;
    }
    .bundle_product{
        max-width: 100%;
        flex-direction: row;
        grid-gap: 15px;
    }
    .bundle_product_img {
        max-width: 40%;
        margin-bottom: 0;
        width: 100%;
        min-width: 40%;
    }
    /*.bundle_product_img img{*/
    /*    aspect-ratio: 1 / 1;*/
    /*    object-fit: contain;*/
    /*    object-position: center;*/
    /*    width: 100%;*/
    /*}*/
    .bundle_product_detail {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .bundle_products .bundle_product:not(:last-child) .bundle_product_img::after {
        top: unset;
        bottom: -37px;
    }

    .bundle_products-2 .bundle_product{
        max-width: 100%;
    }

    .bundle_wrapper{
        padding: 25px 15px;
        border-right: 0;
    }

    .bundle_wrapper .slick-next{
        right: -40px;
    }

    .bundle_wrapper .slick-prev{
        left: -40px;
        z-index: 1;
    }

    .bundle_wrapper .slick-arrow{
        width: 36px;
        height: 36px;
    }

    .bundle_products-2 .bundle_product_pricees{
        flex-direction: column;
    }

    .bundle_footer{
        flex-direction: column;
    }
    .bundle_products-2 .bundle_product_usdt_price{
        padding-left: 0;
    }

    .bundle_footer_buy_btn{
        width: 100%;
        justify-content: center;
        margin: 10px 0 0 0 ;
    }
    .slick-initialized .slick-slide{
        margin-right: 15px;
    }
}


@media (max-width: 376px){
    .bundle_footer_buy_btn{
        padding: .875rem 0;
        width: 100%;
    }
}


/* mono_checkout */
#mono_checkout_cart_page {
    display: block;
    width: 100%;
    padding: 10px 0;
}

.wrapper_checkout_mono {
    display: block;
    /*margin-bottom: 2%;*/
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px 0; /* Відступи зверху та знизу */
    position: relative;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #ECEDEF; /* Колір лінії */
    margin: 0 22px; /* Відступ між текстом і лінією */
}

.divider span {
    color: #CECECF; /* Колір тексту */
    font-size: 16px; /* Розмір шрифту */
    font-weight: normal; /* Стиль тексту */
}

.wrapper_product_mono {
    display: block;
}



#mono_checkout_product_page img {
    width: 180px
}

.modal-cart-bottom-buttons-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    width: 100%;
}

.modal-cart-bottom-buttons-wrapper #mono_checkout_cart_page {
    margin: 0 !important;
}

.modal-cart-bottom-buttons {
    flex-wrap: wrap;
}

.modal-cart-bottom-buttons .km-cart-button-cart {
    background: none;
    text-decoration: none;
    color: #1F448A;
}

.modal-cart-bottom-buttons-wrapper #mono_checkout_cart_page img {
    width: 165px;
}

.modal-cart-bottom-buttons .km-cart-button-cart:hover {
    background: none !important;
    color: #1F448A !important;
    text-decoration: underline;
}

@media screen and (max-width: 500px) {
    #button-cart {
        max-width: 47%;
        width: 47%;
        margin-right: 6%;
    }

    #mono_checkout_product_page:not(.custom) {
        margin: 1rem 0 0 0!important;
        max-width: 47%;
    }
    #mono_checkout_product_page img{
        width: 155px;
    }

    /*#mono_checkout_product_page{*/
    /*    margin: 1rem 0 0 10px!important;*/
    /*}*/
}
@media screen and (max-width: 500px) {
    #mono_checkout_product_page img{
        width: 135px;
    }
}
/* end mono_chekout */
.sna_icons, .sna_header{
    display: none;
}

.socauth{
    /*display:block!important;*/

}

.socauth-separator-link-checkout img{
    height: 24px;
    width: 24px;
}

.socauth-separator-link-checkout{
    margin-left: auto;
    margin-right: 25px;
    padding: 0 15px;
    height: 32px!important;
}

.socauth-separator{
    position: relative;
}

.socauth-separator-line{
    border-bottom: 1px solid #e4e4eb;
    margin: 25px 0;
}

.socauth-separator-text{
    position: absolute;
    top: -13px;
    background: #fff;
    padding: 2px;
    width: 75px;
    text-align: center;
    font-size: 16px;
    color: #CECECF;
    left: calc(50% - 37px);
}


.socauth-separator-link img{
    width: 24px;
    height: 24px;
}

.socauth-separator-link{
    background: #F2F4F8;
    display: flex;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    grid-gap: 10px;
    color: #000 !important;
    border: 2px solid #F2F4F8;
    transition: .2s;
}

.socauth-separator-link:hover{
    background: unset;
}


@media (max-width: 767.98px) {
    .socauth-separator-link-checkout{
        margin: 0;
        max-width: 210px;
        margin-bottom: 10px;
    }
}

.socauth-mobile-menu{
    width: 100%;
    margin-bottom: 10px;
}

.socauth-mobile-menu .socauth-separator-line{
    margin-top: 10px;
}



.acc-login{
    flex-wrap: wrap;
}




.acc-login .socauth-separator-link{
    padding-left: 15px;
    padding-right: 15px;
    margin-left: 15px;
}

@media (max-width: 575.98px) {
    .acc-login .socauth-separator-link{
        width: 100%;
        margin-top: 15px;
        margin-left: 0;
    }
}
@media (min-width: 768px) {
    .sc-account-row .form-control {
        max-width: 430px;
    }
}


/*
 *
 *
 *
 *
 *
 *
 *
 *
 * редизайн
 * redesign
 *
 *
 *
 *
 *
 *
 *
 *
 *
 */


#oct-infobar{
    /* background: #001F3F!important; */
}

#oct-infobar .oct-infobar-text .text{
    /* color: #fafafa; */
    text-transform: uppercase;
    font-weight: 200;
}

.top-left-links li a,
#top .sc-dropdown-toggle,
.top-right .popup-call-trigger{
    color: #001f3f;
    font-size: 14px!important;
    font-weight: normal!important;
}

.top-right .popup-call-trigger{
    margin-left: 15px!important;
    text-decoration: none;
}

#top{
    background: #fff;
}

#top .sc-dropdown-toggle:after {
    background: #001F3F;
}

.max-h-logo{
    max-height: 44px;
    width: 100%;
}

#logo{
    margin: 10px 0;
}

#top{
    height: 64px;
}
.header.with-slideshow{
    background: #f8f9fa;
}

.sc-btn-secondary:not([disabled]){
    background: #001f3f;
}

.sc-btn-secondary .sc-btn-text{
    color: #fafafa;
    font-size: 20px;
}

.sc-btn-secondary .sc-btn-icon{
    background: #fafafa;
}

.header .sc-btn-icon-catalog{
    width: 22px;
    height: 22px;
    background: url(/image/catalog/menu-icon.png)!important;
    background-size: contain;
    mask-image: unset;
}

.header-search .form-control {
    background: #ececec;
    border: unset;
    height: 40px;
    font-weight: 200;
    border-radius: 8px;
}

.header-search .form-control::placeholder{
    font-size: 14px;
    font-weight: 200!important;
}

#sc-search-button{
    background: #001f3f;
}

.sc-btn-icon{
    color: #ececec;
    width: 24px;
    height: 24px;
    background: #ececec;
}

#sc-search-button{
    border-radius: 0 8px 8px 0;
}

.km-language-switcher .nav-dropdown-menu button{
    color: #001f3f;
}

.km-language-switcher .nav-dropdown-menu button.active-item{
    border-bottom: 1px solid #001f3f;
    font-size: 16px;
}

.sc-dropdown-toggle::after{
    width: 15px;
}

#form-language .nav-dropdown-menu button{
    display: flex;
    align-items: end;
}

.header-buttons .text-lowercase{
    display: none!important;
}

.sc-btn-icon.sc-btn-icon-account{
    mask-image: unset;
    background-color: unset;
    width: auto;
    height: auto;
    display: block;
    /*background: url(/image/icons/personal.png);*/
    /*background-size: contain;*/
    /*height: 32px;*/
    /*width: 32px;*/
    /*background-repeat: no-repeat;*/
}

#cart .header-buttons-cart-quantity{
    background: #001f3f;
}

.header-buttons-cart-quantity{
    top: unset;
    bottom: 5px;
    right: 16px;
}

.header-buttons .sc-btn:hover .sc-btn-icon{
    background: unset;
}

#menuToggleButton{
    border-radius: 8px!important;
}
.top-right .popup-call-trigger:hover{
    color: #001f3f;
}

#top .sc-dropdown-toggle:hover{
    color: #001f3f;
}

.blue-link{
    color: #001f3f;
}

.sc-btn-primary:not([disabled]){
    background: #001f3f;
    font-size: 14px;
}

.gg-15{
    grid-gap: 15px;
}

.slick-dots{
    bottom: -23px;
    margin: 0;
    padding: 0;
    width: 100%;
    justify-content: center;
}

#cart-summary{
    background: #fff;
    border-radius: 12px;
    display: flex;
    padding: 15px;
    align-items: center;
    justify-content: space-between;
}

.cart-summary-products{
    display: flex;
    grid-gap: 25px;
}

.cart-summary-info{
    display: flex;
    grid-gap: 10px;
    align-items: center;
}

.cart-summary-products img{
    max-width: 50px;
    max-height: 50px;
    width: 100%;
    height: 100%;
}

.cart-summary-buttons{
    display: flex;
    grid-gap: 15px;
}


.cart-summary-button-cart {

}

.cart-summary-button-checkout{
    padding: 12px 25px;
    background: #001F3F;
    color: #FAFAFA;
    font-size: 16px;
    border-radius: 12px;
    border: 1px solid #001F3F;
    transition: .125s;
}

.cart-summary-button-checkout:hover{
    background: #002954;
    color: #FAFAFA;
}

.cart-summary-buttons{
    align-items: center;
}

.sc-slideshow-plus-block .slick-dots{
    bottom: -23px;
}


#sc-category-wall-slick .slick-slide {
    margin: 0 12px;
}

#sc-category-wall-slick .slick-list {
    /*margin: 0 -12px;*/
}

img.wall_slick_img{
    aspect-ratio: 50 / 71;
    width: 100%;
}

.wall_slick_item{
    padding: 0!important;
    background: unset;
    border: 0;
}
.wall_slick_item img{
    aspect-ratio: 50 / 71;
    object-fit: cover;
    padding: 0!important;
    background: unset;
    border-radius: 12px;
    width: 100%;
    height: auto;
    transition: .7s;
    transition-timing-function: cubic-bezier(0, 0.49, 0.81, 1.08);
}

.wall_slick_item {
    overflow: hidden;
    border-radius: 12px;
}
.wall_slick_item:hover img{
    transform: scale(1.5);
}



#sc-category-wall-slick .slick-prev,
#sc-category-wall-slick .slick-next{
    display: block;
    font-size: 0;
    width: 40px;
    height: 40px;
    background-color: #f0f1f2;
    border-radius: 12px;
}


#sc-category-wall-slick .slick-prev {
    position: absolute;
    top: calc(50% - 40px);
    left: -8px;
    z-index: 15;
}

#sc-category-wall-slick .slick-next {
    position: absolute;
    top: calc(50% - 40px);
    right: -8px;
    z-index: 15;
}

.sc-module-header-slick-cat{
    margin-top: 15px!important;

}

#slideshow-plus-1 .sc-btn-secondary{
    position: absolute;
}
#slideshow-plus-1 .slick-slide{
    padding: 0!important;
    margin: 0 12px!important;
}


.pos-r{
    position: relative;
}

#slideshow-41 .sc-btn-secondary{
    position: absolute;
    bottom: 75px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    font-weight: 500;
}

@media screen and (max-width:768px) {
    #slideshow-41 .sc-btn-secondary{
        bottom: 40px;
    }
}

.top-left-links li a,.top-right .popup-call-trigger{
    transition: .1s;
    border-bottom: 1px solid rgba(0, 31, 63, 0);
}
.top-left-links li a:hover,
.top-right .popup-call-trigger:hover{
    border-bottom: 1px solid #001f3f;
}

.sc-megamenu>nav>ul>li:hover{
    background: #ececec;
}

.sc-megamenu>nav>ul{
    padding: 0!important;
}


.sc-megamenu .sc-btn-icon{
    width: 10px;
    height: 10px;
    background: #000;
}

.sc-megamenu .custom-btn-wrapper .sc-btn-icon {
    background: #fff;
}

.sc-megamenu-list-item:hover > span{
    background: unset;
}

#sc-category-wall-slick .slick-arrow:hover{
    background-color: #001f3f;
    transition: .125s;
}

#sc-category-wall-slick .slick-arrow:hover svg path{
    stroke: #fff;
    transition: .125s;
}

#slideshow-41 *{
    border: 0;
}

#slideshow-41 a img{
    border-radius: 12px;
    aspect-ratio: 5 / 4;
    object-fit: contain;
    /*max-height: 60vh;*/
}

.slick-dots li.slick-active button{
    background: #001F3F!important;
}

.cart-summary-product-item a{
    display: block;
    padding: 3px;
    border: 1px solid #ebebeb;
    border-radius: 12px;
}

.sc-footer {
    background: #001F3F;
}

.w-auto{
    width: auto;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img{
    max-width: 124px;
}
.flex-align-center{
    align-items: center;
}

.km-social-footer{
    grid-gap: 50px;
    margin-left: auto;
}

#slideshow-41 .sc-btn-full-width{
    background: rgb(236 236 236) !important;
    padding: 12px 24px;
    border-radius: 8px;
    color: #001F3F;
    transition: .2s;
}

#slideshow-41 .sc-btn-full-width.slideshow-image-button-opacyty{
    background: rgb(236 236 236 / 60%) !important;
    backdrop-filter: blur(3px);
}

#slideshow-41 .sc-btn-full-width:hover{
    background: rgb(205 205 205) !important;
    color: #001F3F!important;
}

#slideshow-41 .sc-btn-full-width.slideshow-image-button-opacyty:hover{
    background: rgb(236 236 236) !important;
}

#slideshow-41 .slick-dots{
    grid-gap: 8px;
}
#slideshow-41 .slick-dots li{
    background: #ececec!important;
    border-radius: 8px;
    width: 20px;
    height: 6px;
}
#slideshow-41 .slick-dots li.slick-active{
    background: #001F3F!important;
}

.km-modif-product-moudle .slick-list{
    /*margin: 0 -12px;*/
}
.km-modif-product-moudle .slick-slide{
    margin: 0 12px;
}

.km-modif-product-moudle.sc-module .content-block{
    padding: 0;
}

.km-modif-product-moudle.sc-module .sc-module-img a img{
    aspect-ratio: 3 / 4;
    object-fit: contain;
    width: 100%;
    border-radius: 12px;
    background: #fff;
}

#common-home.container-fluid.container-lg{
    background: #fafafa;
    /*padding: 0 60px;*/
}

.sc-module-btns{
    opacity: 1;
    visibility: visible;
    top: 8px;
    right: 8px;
}

.sc-module .sc-module-img button{
    background: #fafafab3;
    border-radius: 12px!important;
    border: 0;
}

.sc-module .sc-module-img button:hover svg path{
    stroke: #fff;
}

.km-modif-product-moudle .sc-module-img .sc-module-stickers{
    top: 8px;
    left: 8px;
    width: calc(100% - 50px);
}

.km-modif-product-moudle .sc-module-sticker{
    padding: 6px 18px;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 16px;
}

.sc-module-sticker-stickers_popular{
    background: #D67700;
}

.sc-module-sticker-stickers_new{
    color: rgb(255, 255, 255);
    background: rgb(24, 57, 90);
}

#product-search .sc-module-sticker{
    padding: 6px 18px;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 16px;
}

.km-modif-product-moudle .sc-module-info{

}

.km-modif-product-moudle .content-block:hover{
    box-shadow: unset;
}

.sc-module-price-km {
    display: flex;
    align-items: end;
    grid-gap: 15px;
}

.sc-module-price-km .sc-module-price-km-prices .km-price-regular{
    font-size: 18px;
    color: #001F3F;
}
.sc-module-price-km .sc-module-price-km-prices .km-price-linethrow{
    font-size: 14px;
    color: #001F3F;
    text-decoration: line-through;
    font-weight: 400;
}
.sc-module-price-km .sc-module-price-km-prices .km-price-special{
    font-size: 18px;
    color: #D03131;
    font-weight: 500;
}

.sc-module-price-km .sc-module-price-km-usdt{
    font-size: 16px;
    color: #8a8a8a;
    position: relative;
    font-weight: 400;
    height: fit-content;
}

.sc-module-price-km .sc-module-price-km-usdt:before{
    content: '';
    width: 1px;
    height: 14px;
    background: #8a8a8a;
    display: block;
    position: absolute;
    left: -7px;
    bottom: 4px;
}

.km-modif-product-moudle-list .slick-prev,
.km-modif-product-moudle-list .slick-next{
    display: block;
    font-size: 0;
    width: 40px;
    height: 40px;
    background-color: #f0f1f2;
    border-radius: 12px;
}


.km-modif-product-moudle-list .slick-prev {
    position: absolute;
    left: -8px;
    top: 30%;
    z-index: 15;
}

.km-modif-product-moudle-list .slick-next {
    position: absolute;
    right: -8px;
    top: 30%;
    z-index: 15;
}

.km-modif-product-moudle-list .slick-arrow:hover{
    background-color: #001f3f;
    transition: .125s;
}

.km-modif-product-moudle-list .slick-arrow:hover svg path{
    stroke: #fff;
    transition: .125s;
}

.km-news-slider{
    margin-top: 30px;
}

.km-news-slider .slick-prev,
.km-news-slider .slick-next{
    display: block;
    font-size: 0;
    width: 40px;
    height: 40px;
    background-color: #f0f1f2;
    border-radius: 12px;
}


.km-news-slider .slick-prev {
    position: absolute;
    top: calc(50% - 50px) !important;
    left: -8px;
    z-index: 1;
}

.km-news-slider .slick-next {
    position: absolute;
    top: calc(50% - 50px) !important;
    right: -8px;
    z-index: 1;
}

.km-news-slider .slick-arrow:hover{
    background-color: #001f3f;
    transition: .125s;
}

.km-news-slider .slick-arrow:hover svg path{
    stroke: #fff;
    transition: .125s;
}

.km-news-slider .content-block>a{
    overflow: hidden;
    border-radius: 12px;
}

.km-news-slider .content-block>a img{
    transition: .7s;
    transition-timing-function: cubic-bezier(0, 0.49, 0.81, 1.08);
}

.km-news-slider .content-block>a:hover img{
    transform: scale(1.3);
}

.mb-30{
    margin-bottom: 40px;
}

.mb-40{
    margin-bottom: 40px;
}

.mt-70{
    margin-top: 70px;
}

.b-0{
    border: 0;
}

.news-title-km{
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 30px;
}

.mt-12{
    margin-top: 12px;
}

.km-news-slider .slick-slide {
    margin: 0 12px;
}

.km-news-slider .slick-list {
    /*margin: 0 -12px;*/
}

.km-new-info{
    align-items: baseline;
}

.news-slider-img{
    aspect-ratio: 424 / 284;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
}

.km-news-slider .content-block:hover{
    box-shadow: unset;
}

.sc-footer-middle-info{
    grid-gap: 8px;
    display: flex;
    flex-direction: column;
}

.sc-footer-middle-info li a{
    text-decoration: none;
    color: #fafafa;
}

.sc-footer-middle-info div,
.sc-footer-middle-info a{
    color: #fafafa;
}

.sc-footer-title{
    color: #fafafa;
}

.color-fafafa{
    color: #fafafa;
}

.mb-15{
    margin-bottom: 15px;
}

.footer-layer-1>div,
.footer-layer-2>div{
    max-width: 33.333%;
}

.footer-layer-1{

}

.layer-1-item-3,
.layer-2-item-3{
    width: 345px;
}

.layer-1-item-1,
.layer-2-item-1{
    width: 250px;
}
.layer-1-item-2,
.layer-2-item-2{
    width: 250px;
}

@media (max-width: 768px) {
    .layer-1-item-1,.layer-1-item-2, .layer-1-item-3{
        margin-top: 35px;
    }

    .layer-2-item-2, .layer-2-item-3{
        margin-top: 35px;
    }

    .layer-2-item-3 .sc-footer-subscribe{
        margin-top: 0;
    }

    .layer-2-item-1 .sc-footer-title,
    .layer-2-item-2 .sc-footer-title,
    .layer-2-item-3 .sc-footer-title {
        display:none;
    }

    .footer-layer-2{
        margin-top: 35px!important;
    }
}


.footer-layer-2{
    margin-top: 50px;
}

.brand-list-wrapper{
    grid-gap: 25px;
    justify-content: space-between;
    margin-left: 10px;
    margin-right: 10px;
}

.brand-list-top-wrapper{
    align-items: center;
}

.home-brnad-list-item{
    background: #fff;
    max-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4.48px 8.96px 0px rgba(183, 183, 183, 0.08);
    border-radius: 12px;
    height: 72px;
    margin: 0 12px;
}

.brand-list-top-all-brands{
    position: relative;
    margin-right: 10px;
}


.brand-list-top-all-brands:before{
    content: ' ';
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    background: #000;
}



.home-brnad-list-item img,
.home-brnad-list-item svg {
    width: 75%;
}

.dark-bg-hover:hover{
    background: #001F3F;
}

.dark-bg-hover:hover path,
.dark-bg-hover:hover g {
    fill: #fff;
}

.home-brnad-list-item.dark-bg{
    background: #001F3F;
}

.home-brnad-list-item-moshi img{
    filter: brightness(0);
    max-height: 60px;
    width: auto;
}

/*.home-brnad-list-item:hover{*/
/*    background: #001F3F;*/
/*}*/

.footer-icon-wrapper{
    width: 88px;
}

.w-fa{
    width: -webkit-fill-available;
}

.sc-footer-subscribe{
    max-width: 100%;
}

#footer-make-subscribe{
    padding: 8px;
    background: rgb(250 250 250 / 70%) !important;
    height: 40px;
    border-radius: 0 8px 8px 0;
    border: 1px solid rgb(250 250 250 / 70%);
    border-left: 0;
}

#InputSubscribeEmail::placeholder {
    color: #afb8c2;
    font-size: 14px;
    font-weight: 200;
}

#InputSubscribeEmail{
    font-size: 14px;
    color: #fafafa;
    background: unset;
    border-radius: 8px 0 0 8px;
    border: 1px solid rgb(250 250 250 / 70%);
    border-right: 0;
    max-width: 258px;
}

#back-top{
    right: 35px;
    border: 1px solid #001f3f;
    z-index: 99;
}

.sc-footer-subscribe .form-check-input{
    /*background: #fafafa;*/
    border: 0!important;
}

.form-check-input:checked[type=checkbox]{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
    background-position: center;
    background-repeat: no-repeat;
}

#account-register .form-check-input:checked[type=checkbox]{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
    background-position: center;
    background-repeat: no-repeat;
}



.footer-sub-policy-wrapper{
    max-width: 255px;
}

.mb-20{
    margin-bottom: 20px;
}

.sc-megamenu > nav{
    /*margin-left: 50px;*/
}



.sc-module-home-km .km-news-slider .slick-prev,
.sc-module-home-km .km-news-slider .slick-next{
    top: -73px;
}

.mt-65{
    margin-top: 60px;
}

.sc-btn-outline-secondary:not(#oct-blog-search-button, #sc-search-button, [disabled]):hover{
    background: #001f3f;
}

.popup-cart-button{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fafafab3;
    backdrop-filter: blur(2px);
    z-index: -1;
    opacity: 0;
    transition: .1s;
}
.sc-module .sc-module-img:hover .popup-cart-button{
    z-index: 1;
    opacity: 1;
}

.sc-module .sc-module-img .popup-cart-button>button{
    background: #001f3f;
    width: calc(100% - 10px);
    margin: 0 auto;
    margin: 25px auto 45px;
    min-height: 50px;
    border-radius: 12px;
}

.sc-module .sc-module-img .popup-cart-button>button:hover{
    background: #002954;
}

.sc-module .sc-module-img .popup-cart-button>button span{
    color: #fafafa;
}

.footer-social-km-modif a{
    background: unset;
    border: 1px solid #fafafa;
}
.footer-social-km-modif a:hover{
    background: unset!important;
}

.footer-layer-2-phone.layer-2-item-1 a{
    border-bottom: 2px solid transparent;
    transition: .15s;
}
.footer-layer-2-phone.layer-2-item-1 a:hover{
    border-bottom: 2px solid rgb(199, 201, 217);
}

.layer-2-item-2 .sc-footer-middle-info a{
    border: 1px solid #fafafa;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.sc-footer-payments-list-km{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.sc-footer-payments-list-km .sc-footer-payments-item{
    display: flex;
}

.sc-footer-credits-km{
    display: flex;
    justify-content: space-between;
}

.d-none-mobile{
    display: none;
}


@media (max-width: 1024px) {
    #common-home.container-fluid.container-lg{
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    #common-home.container-fluid.container-lg{
        padding: 0 15px;
    }

    .d-none-mobile{
        display: none!important;
    }

    .d-none-desktop{
        display: block;
    }

}

@media (max-width: 450px) {
    #common-home.container-fluid.container-lg{
        padding: 0 10px;
    }
}

#mobile-menu-button{
    margin-right: 20px;
}

#logo-mobile img{
    max-width: 28px;
    max-height: 36px;
    object-fit: contain;
    width: 100%;
    height: auto;
}


@media (max-width: 991px) {
    .footer-layer-2-phone.layer-2-item-1 a{
        font-size: 18px!important;
    }
    .sc-livesearch-list> .sc-module-item{
        width: 100%;
    }
}

.popup-cart-button .km-grid-add-to-cart svg{
    display: none;
}

#slideshow-41{
    margin-bottom: 0px;
}

.km-modif-product-moudle .sc-module-header{
    font-size: 18px !important;
    font-weight: 500 !important;
}

.mobile-header-search{
    display: none;
    /*width: 100%;*/
}

.mobile-header-search{
    display: none;
    /*width: 100%;*/
}

.mobile-header-search .sc_livesearch{
    inset: unset;
    max-height: calc(100vh - 150px);
    left: 0;
    right: 0;
    top: 94px;
    background: #F2F4F8;
}

.mobile-header-search .header-search{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    display: none!important;
}

.mobile-header-search .header-search.active{
    display: block;
    background: #fff;
}

.brand-list-wrapper .slick-next {
    position: absolute;
    top: calc(50% - 20px);
    right: -8px;
    z-index: 0;
    display: block;
    font-size: 0;
    width: 40px;
    height: 40px;
    background-color: #f0f1f2;
    border-radius: 12px;
    box-shadow: unset;
    filter: unset;
    border-radius: 12px!important;
}

.brand-list-wrapper .slick-prev {
    position: absolute;
    top: calc(50% - 20px);
    left: -8px;
    z-index: 15;
    display: block;
    font-size: 0;
    width: 40px;
    height: 40px;
    background-color: #f0f1f2;
    border-radius: 12px;
    box-shadow: unset;
    filter: unset;
    border-radius: 12px!important;
}



.brand-list-wrapper .slick-arrow:hover{
    background-color: #001f3f;
    transition: .125s;
}

.brand-list-wrapper .slick-arrow:hover svg path{
    stroke: #fff;
    transition: .125s;
}

.brand-list-wrapper .slick-slider-btn-prev span,
.brand-list-wrapper .slick-slider-btn-next span {
    background: #001F3F;
}

@media (max-width: 767.98px) {
    #logo {
        position: relative;
        left: unset;
        right: unset;
    }

    .km-modif-product-moudle-list .slick-list,
    #slideshow-41 .slick-list,
    #sc-category-wall-slick .slick-list{
        padding-right: 25px;
        margin-right: 0;
    }

    #slideshow-41 .slick-list .slick-slide{
        margin: 0 4px !important;
    }

    .km-modif-product-moudle .slick-slide{
        margin: 0 12px;
    }
    .km-modif-product-moudle-list .slick-arrow{
        display: none!important;
    }

    .km-modif-product-moudle-list{
        padding-right: 0;
        padding-top: 20px;
    }
    #common-home.container-fluid.container-lg{
        /*padding-right: 0;*/
    }

    #sc-category-wall-slick .slick-arrow{
        display: none!important;
    }
    #sc-category-wall-slick .slick-slide{
        margin: 0 8px;
    }

    .km-modif-product-moudle .sc-module-img .sc-module-stickers{
        flex-direction: column;
        align-items: flex-start !important;
    }

    .sc-module-info .sc-module-title{
        font-size: 16px;
        font-weight: 500!important;
    }

    .sc-module-model{
        font-size: 12px!important;
    }

    .sc-module-model span{
        font-size: 12px!important;
    }

    .km-modif-product-moudle .sc-module-header{
        text-align: left!important;
    }
    .km-news-slider .slick-slide {
        margin: 0 5px;
    }

    .km-news-slider .slick-list{
        padding-right: 15px;
    }

    .km-news-slider .slick-arrow{
        display: none!important;
    }

    .popup-cart-button{
        opacity: 1;
        z-index: 1;
        left: unset;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        right: 5px;
        bottom: 5px;
        border-radius: 12px;
    }

    .popup-cart-button .km-grid-add-to-cart .sc-btn-text{
        font-size: 0;
    }

    .sc-module .sc-module-img .popup-cart-button>button{
        background: unset;
        margin: 0;
        padding: 0;
        min-height: unset;
        height: 40px;
        min-height: 40px;
        min-width: 40px;
    }

    .sc-module .sc-module-img .popup-cart-button>button.added svg path{
        stroke: #fff;
    }

    .popup-cart-button .km-grid-add-to-cart svg{
        display: block;
        max-height: 20px;
    }

    .km-social-footer .sc-footer-title{
        display: none!important;
    }

    .sc-footer-top{
        flex-direction: row!important;
    }

    .footer-layer-1{
        flex-direction: column;
    }
    .footer-layer-1>div, .footer-layer-2>div{
        max-width: 100%;
        width: 100%;
    }

    .footer-layer-2{
        flex-direction: column;
    }
    .footer-layer-2>div, .footer-layer-2>div{
        max-width: 100%;
        width: 100%;
    }
    #cart-summary{
        display: none;
    }

    .sc-slideshow-plus.with-megamenu{
        margin-right: 0;
    }

    .sc-footer-middle .sc-footer-title{
        border: 0!important;
        background: unset;
        padding-bottom: 0;

    }

    .layer-2-item-3 .sc-footer-title{
        padding-left: 0;
    }

    .sc-footer-middle-info{
        max-height: unset;
    }

    .sc-footer-middle .sc-footer-title:after{
        display: none;
    }

    .layer-2-item-1 a{
        padding-left: 20px;
    }

    .sc-footer-middle-info li a{
        font-weight: 200 !important;
    }

    .sc-footer-credits-km{
        flex-direction: column;
        grid-gap: 10px;
    }

    #InputSubscribeEmail{
        max-width: 100%;
    }

    #slideshow-41{
        margin-bottom: 30px;
    }

    .km-modif-product-moudle .sc-module-header{
        margin-bottom: 15px;
    }

    .sc-module-header-slick-cat{
        margin-top: 40px !important;
        font-size: 18px !important;
        font-weight: 500;
    }

    #sc-category-wall-slick .sc-category-wall-title{
        margin-top: 10px!important;
        font-weight: 400;
    }

    .km-modif-product-moudle-list .content-block.flex-column{
        flex-direction: column!important;
    }

    .km-news-slider .content-block{
        flex-direction: column!important;
    }

    .km-news-slider .content-block a,
    .km-news-slider .content-block a img{
        width: 100%;

    }
    .news-slider-img{
        aspect-ratio: 288 / 177;
    }
    .sc-last-news-item .content-block > a{
        flex: 0 0 200px;
    }

    .sc-last-news-item .sc-last-news-title{
        padding: 0!important;
    }
    .km-news-slider .sc-last-news-caption .sc-last-news-item-date{
        padding: 0!important;
    }

    .news-title-km {
        -webkit-line-clamp: 1;
        max-height: 30px;
    }

    .mobile-header-search{
        display: block;
    }
}


@media (max-width: 575.98px){
    .km-modif-product-moudle-list .sc-module-img.position-relative{
        max-width: 100%;
    }
    [data-type=split] .sc-module-caption, [data-type=split] .sc-module-img {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    #slideshow-41 .sc-btn-full-width{
        white-space: pre;
    }
    .sc-module-info .sc-module-title{
        -webkit-line-clamp: 3;
    }

    .km-modif-product-moudle{
        margin-top: 0!important;
    }

    .km-modif-product-moudle-list .slick-list,
    #slideshow-41 .slick-list{
        padding-right: 15px;
        margin-right: 0;
    }

    #sc-category-wall-slick .slick-list{
        padding-right: 25px;
        margin-right: 0;
    }

    .sc-module-price-km{
        flex-direction: column;
        grid-gap: 0;
        align-items: flex-start;
    }

    .sc-module-price-km .sc-module-price-km-usdt:before{
        opacity: 0;
    }

    .sc-module-price-km .sc-module-price-km-prices{
        position: relative;
    }
    .sc-module-price-km .sc-module-price-km-prices:after{
        content: '';
        width: 1px;
        height: 14px;
        background: #8a8a8a;
        display: block;
        position: absolute;
        right: -10px;
        bottom: 2px;
    }

    .km-modif-product-moudle-list .sc-module-btns{
        display: none!important;
    }

    .news-title-km{
        -webkit-line-clamp: 2;
        max-height: 75px;
    }

    .km-news-slider .sc-last-news-caption{
        flex-direction: column;
    }

    .km-news-slider .sc-last-news-caption .sc-last-news-item-date{
        padding-left: 15px;
    }

    #oct-infobar .oct-infobar-text .text{
        font-size: 10px;
    }

    #oct-infobar .row>div{
        flex-direction: row!important;
    }

    #oct-infobar-btn{
        max-width: 16px;
        max-height: 16px;
    }

}

#logo img{
    object-fit: contain;
}



body{
    font-family: "Mulish", serif;
}

.mobile-header-search .header-search.active{
    display: block!important;
}
.mobile-header-search .header-search.active .sc_livesearch{
    display: block!important;
    overflow-y: scroll!important;
}

#overlay.active{
    z-index: 4;
}

#overlay.transparent{
    background-color: #00000026;
}

.pseudo-mobile-search-wrapper{
    display: flex;
    border-radius: 5px;
}

.pseudo-mobile-search-wrapper .pseudo-mobile-search{
    width: -webkit-fill-available;
    outline: unset;
    border: 0;
    background: #ececec;
    border-radius: 5px;
    height: 36px;
}


.pseudo-search-icon{
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pseudo-search-icon img{
    max-width: 21px;
}

.mobile-header-search .header-search.active .search{
    padding: 24px!important;
    display: flex;
}

.mobile-header-search .header-search{
    padding-right: 0!important;
}

.mobile-header-search .header-search .sc-search-button{
    right: 15px!important;
    height: 40px;
    top: 16px!important;
}

.mobile-header-search .header-search .input_search{
    min-height: 44px;
    padding: 0 0 0 8px;
}

.mobile-back-btn{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
}

.mobile-back-btn{
    display: none;
}
.mobile-logo{
    display: none;
    object-fit: contain;
    width: 106px;
}

@media (max-width: 767.98px) {
    .mobile-back-btn{
        display: flex;
    }
    .mobile-logo{
        display: block;
    }
    .desktop-logo{
        display: none;
    }

}

#menuToggleButton:hover{
    background: #002954;
}
#menuToggleButton:hover .sc-btn-icon-catalog{
    width: 22px;
    height: 22px;
    background: url(/image/catalog/menu-icon.png);
    background-size: contain;
    mask-image: unset;
}

#sc-category-wall-slick .slick-dots{
    margin-top: 20px;
}

.km-modif-product-moudle .slick-dots{
    margin-top: 20px;
}

.sc-breadcrumb-item:first-child,
.sc-breadcrumb-item:first-child > *{
    width: auto;
    height: auto;
}

.sc-subcategories-km{
    margin: 0 25px;
}

.sc-subcategories-km .slick-next,
.sc-subcategories-km .slick-prev{
    box-shadow: 0px 4px 56px 0px rgba(0, 0, 0, 0.08);
}

.sc-subcategories-km .cat-list-item-title{
    display: block;
    text-align: center;
}

.cat-list-item-img{
    width: 100%;
}

.sc-subcategories-km .slick-track{
    margin: 0 -12px;
}

.sc-subcategories-km .slick-slide{
    margin: 0 12px;
}

.sc-subcategories-km .slick-slide img{
    border-radius: 12px;
    margin-bottom: 12px;
}

.sc-subcategories-km .slick-prev{
    position: absolute;
    top: calc(50% - 65px);
    z-index: 15;
    display: flex;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    align-items: center;
    left: -25px;
    justify-content: center;
    background: #fff;
}

.sc-subcategories-km .slick-next{
    position: absolute;
    top: calc(50% - 65px);
    z-index: 15;
    display: flex;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    align-items: center;
    right: -25px;
    justify-content: center;
    background: #fff;
}


.sc-subcategories-km .slick-dots{
    margin-top: 15px;
    margin-bottom: 50px;
}

.fsz-48{
    font-size: 48px;
}

.cat-sc-page-title{
    padding-bottom: 45px;
    margin-bottom: 65px;
    border-bottom: 1px solid #001F3F1A;
}

.ocf-container{
    background: unset;
    border: 0;
}

.ocf-selected-card{
    background-color: unset!important;
    border-top: 1px solid #001F3F1A;
    border-bottom: 1px solid #001F3F1A;
    box-shadow: unset!important;
    border-radius: 0!important;
}

@media screen and (min-width:1200px) {
    .ocf-container:hover{
        box-shadow: unset!important;
    }
}

.custom-list-wrapper.collapsed{
    display: none;
}


.ocf-filter-km{
    border-bottom: 1px solid #001F3F1A;
    margin-bottom: 15px!important;
    position: relative;
}

.ocf-filter-km .ocf-filter-header{
    padding-left: 35px;
}

.ocf-filter-km .ocf-filter-name{
    color: #407CB2;
    text-transform: none;
    cursor: pointer;
}

.ocf-filter-km .ocf-filter-header:before{
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    display: block;
    background: url('/image/icons/arrow-top.png');
    transition: .2s;
}


.collapsed-wrapper.ocf-filter-km .ocf-filter-header:before{
    transform: rotate(180deg);
}

.custom-list-wrapper {
    padding-bottom: 15px;
}

.ocf-selected .ocf-value-input::before{
    background: #000 !important;
    border-color: #000 !important;
}

.ocf-value-input{
    width: 18px!important;
    height: 18px!important;
    flex: 0 0 18px!important;
    margin-left: 4px;
}

.ocf-value .ocf-value-input::after{
    background-size: 10px;
}

.ocf-value-input::before{
    border: 1px solid #C0C0C080;
    border-radius: 5px!important;
}

.ocf-value-list-body button.ocf-checkbox.value-item-image {
    position: relative;
}
.ocf-value-list-body button.ocf-checkbox.value-item-image:before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    border: 1px solid #adb5bd;
    margin-left: 4px;
    margin-right: 10px;
    border-radius: 5px;
    background: #fff;
    /*margin-top: 2px;*/
    justify-content: flex-start;
}

button.ocf-checkbox.value-item-image{
    display: flex;
    align-items: center;
}

.ocf-value-list-body button.ocf-checkbox.value-item-image.ocf-selected:before {
    background: #000;
    border: 1px solid #000;
}

.ocf-value-list-body button.ocf-checkbox.value-item-image.ocf-selected:after {
    content: '';
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
    position: absolute;
    width: 16px;
    height: 16px;
    left: 5px;
    top: 3px;
    background-repeat: no-repeat;
    background-position: center;
}

.ocf-value-image, .ocf-value-color{
    border: 1px solid #adb5bd!important;
}
.ocf-selected .ocf-value-image, .ocf-selected .ocf-value-color{
    box-shadow: unset!important;
}

.ocf-value .ocf-value-append{
    margin-left: 5px!important;
    min-width: unset;
}

.ocf-value-count{
    padding: 0!important;
    background-color: unset!important;
    color: #C0C0C0!important;
}

.ocf-selected .ocf-value-count{
    display: block!important;
}

.ocf-theme-light .ocf-value-count:before{
    content: '(';
}

.ocf-theme-light .ocf-value-count:after{
    content: ')';
}

#product-category{
    background: #fff;
}

#product-manufacturer{
    background: #fff;
}

.ocf-input-group-addon{
    background-color: unset!important;
}

.long-dash{
    position: relative;
    font-size: 0!important;
}

.long-dash:before{
    content: '';
    height: 1px;
    display: block;
    width: 15px;
    background: #000;
}

.ocf-noUi-handle,
.ocf-noUi-connect:before{
    background-color: #001F3F!important;
}

.ocf-theme-light .ocf-selected-discard:hover{
    border: 1px solid transparent!important;
}


.ocf-theme-light .ocf-selected-discard:hover svg path{
    fill: red;
}

.ocf-theme-light .ocf-selected-filter{
    width: fit-content;
    background: #ececec;
    border-radius: 8px!important;
    padding: 4px 8px;
}

.clear-filter{
    padding: 0!important;
}

.ocf-selected-card{
    padding-left: 0!important;
}

.select2-search{
    /*display: none!important;*/
}

.sc-megamenu.active ul.sc-megamenu-list{
    position: static!important;

}

.sc-megamenu.active ul.sc-megamenu-list>li:nth-child(1) .sc-megamenu-child{
    /*opacity: 1;*/
    /*visibility: visible;*/
}


.sc-megamenu.click-show ul.sc-megamenu-list>li:nth-child(1) .sc-megamenu-child{
    opacity: 1;
    visibility: visible;
}

.sc-megamenu-list.hide-first-visible>li:nth-child(1) .sc-megamenu-child{
    opacity: inherit!important;
    visibility: hidden!important;
}

.sc-megamenu-child{
    -webkit-transition: opacity .15s ease-out .05s, visibility .15s ease-out .05s;
    -o-transition: opacity .15s ease-out .05s, visibility .15s ease-out .05s;
    transition: opacity .15s ease-out .05s, visibility .15s ease-out .05s;
}

.select2-container{
    width: auto!important;
    min-width: 200px;
}

.select2-container--default .select2-selection--single{
    border: 0;
}


.select2-container--default .select2-selection--single .select2-selection__rendered{
    color: #407cb2;
}


.select2-container--default .select2-results>.select2-results__options{
    /*border-radius: 8px;*/
}

.cat-sort-wrapper{
    position: relative;
    font-weight: 500;

}


.cat-sort-items{
    position: absolute;
    right: 0;
    top: 15px;
    background: #fff;
    padding: 5px;
    list-style: none;
    box-shadow: 0px 4px 56px 0px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transition: .2s;
}

.cat-sort-wrapper.active .cat-sort-items{
    opacity: 1;
    visibility: visible;
    z-index: 15;
}

.cat-sort-items li{
    padding: 6px;
}


.cat-sort-items li span,
.cat-sort-items li a{
    display: block;
    font-weight: 500;
    white-space: pre;
}

.cat-sort-items li{
    border-radius: 8px;
    font-weight: 500;
}

.cat-sort-items li.sort-active-item{
    color: rgba(192, 192, 192, 1);
}

.cat-sort-items li.sort-item:hover{
    background: rgba(236, 236, 236, 1);
}

.cat-sort-wrapper .sort-arrow img{
    max-width: 10px;
    transition: .2s;
}
.cat-sort-wrapper .sort-arrow{
    margin-left: 15px;
}

.cat-sort-wrapper.active .sort-arrow img{
    transform: rotate(180deg);
}

.open-sort-list{
    color: #407cb2;
    cursor: pointer;
    display: block;
}

.aspect-r-3-4{
    aspect-ratio: 3 / 4;
    object-fit: contain;
    width: 100%;
    border-radius: 12px;
    background: #fff;
}

.aspect-r-3-4-cover{
    object-fit: cover;
}

.sc-category-products{
    grid-gap: 15px;
}

.sc-category-products .product-layout{
    border-radius: 8px;
    overflow: hidden;
}
.sc-category-products .product-layout .content-block{
    border: 0px;
}

.sc-category-products .sc-module-stickers{
    margin-top: 0!important;
    position: absolute;
    top: 8px;
    left: 8px;
}

.sc-category-products .sc-module-stickers .sc-module-sticker{
    text-align: center;
    /*padding: 0;*/
}

.km-category-products{

}

.km-category-products .product-grid{
    max-width: calc(33% - 9px);
    width: 100%;
}

.km-category-products .product-grid .content-block{
    box-shadow: none;
    background: unset;
}

.km-category-products .product-grid .sc-btn-outline-secondary{
    width: 40px;
    height: 40px;
    border-radius: 12px !important;
}
.km-category-products .product-grid .sc-btn-outline-secondary:not([disabled]){
    background: rgba(250, 250, 250, 0.7);
    border: 0;
}

.km-category-products .product-grid .sc-btn-outline-secondary .sc-btn-icon{
    background: rgba(0, 31, 63, 1);
    width: 24px;
    height: 24px;
}

.km-category-products .product-grid .sc-btn-outline-secondary.added .sc-btn-icon{
    background: #fff;
}

.km-category-products .product-grid .sc-btn-outline-secondary:hover .sc-btn-icon{
    background: #fff;
    width: 24px;
    height: 24px;
}

.km-category-products .product-grid .sc-module-title{
    margin-top: 0;
    margin-bottom: 5px;
}

.mb-12{
    margin-bottom: 12px;
}

.mb5{
    margin-bottom: 5px;
}

.product-cat-img-wrapper:hover .popup-cart-button{
    z-index: 1;
    opacity: 1;
}

.product-layout:hover .popup-cart-button{
    z-index: 1;
    opacity: 1;
}

.km-category-products .product-grid .popup-cart-button .km-grid-add-to-cart {
    background: #001f3f;
    color: #fff;
    width: calc(100% - 10px);
    margin: 0 auto;

    margin: 15px auto 45px;
    min-height: 50px;
    border-radius: 12px;
}

.km-category-products .product-grid .sc-module-caption .popup-cart-button .km-grid-add-to-cart{
    background: #fff;
    border: 1px solid #001f3f;
}

.km-category-products .product-grid .sc-module-caption .popup-cart-button .km-grid-add-to-cart svg path{
    stroke: #001f3f;
}

.km-category-products .product-grid .sc-module-caption .popup-cart-button .km-grid-add-to-cart.added svg path{
    stroke: #fff;
}

@media (max-width: 767.98px) {
    .popup-cart-button .km-grid-add-to-cart{
        margin: 0;
        padding: 0;
        min-width: 40px;
        min-height: 40px;
        border-radius: 8px !important;
    }

    .km-category-products .sc-module-btns{
        display: none;
    }

    .km-category-products  .popup-cart-button .km-grid-add-to-cart{
        min-width: 40px!important;
        min-height: 40px!important;
    }


    .km-category-products  .km-grid-add-to-cart{
        margin: 0!important;
    }


    .product-cat-img-wrapper .popup-cart-button{
        display: none;
    }

    .popup-cart-button{
        position: relative;
        left: unset;
        right: unset;
        bottom: unset;
        top: unset;
        margin-left: auto;
    }
}

@media (max-width: 769px) {
    .sc-subcategories-km .slick-custom-arrow{
        display: none!important;
    }
}

@media (max-width: 600px) {
    .km-category-products .product-grid{
        max-width: calc(50% - 8px);
    }
}

.oct-load-more-button{
    border-radius: 8px!important;
}

.pagination li span,
.pagination li a {
    border-radius: 8px;
}

.pagination li.active span{
    background-color: rgb(0 31 63);
}

.pagination li:hover a{
    background: #002954;
}

.sc-subcategories > *{
    max-width: 100%;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    #top #logo .desktop-logo{
        display: none;
    }
    #top #logo .mobile-logo{
        display: block;
    }
}


.filter-button-wrapper{
    display: none;
}

.cat-sort-wrapper>div{
    display: flex;
    grid-gap: 5px;
}

.sc-category-sort-limit{
    margin-bottom: 10px;
}

@media (max-width: 1199px) {

    .filter-button-wrapper{
        display: flex;
    }

    .ocf-body{
        padding-left: 20px;
    }
    .ocf-body>.ocf-filter-list{
        padding-right: 20px;
    }

    .text-sort-by{
        display: none;
    }

    .filter-button-wrapper>span{
        border: 1px solid #001F3F1A;
        padding: 7px 0px;
        border-radius: 12px;
        background: #001F3F;
        color: #fff;
        width: 140px;
        text-align: center;
        display: flex    ;
        align-items: center;
        justify-content: center;
        grid-gap: 8px;
    }

    .open-sort-list{
        border: 1px solid #001F3F1A;
        padding: 9px 12px;
        border-radius: 12px;
        color: #1a1a1a;
    }

    .cat-sort-filter-wrapper{
        display: flex;
        grid-gap: 10px;
        width: 100%;
        justify-content: space-between;
    }

    .cat-sc-page-title{
        margin-bottom: 15px;
        padding-bottom: 15px;
    }


    .cat-sort-items{
        top: 50px;
    }

    .ocf-selected-card{
        display: flex    ;
        flex-direction: column;
        grid-gap: 5px;
    }


    .ocf-selected-filter button{
        background: unset;
        padding: 0;
    }

    .ocf-btn.clear-filter{
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .ocf-selected-header{
        display: none;
    }

    .ocf-selected-card{
        padding-top: 10px;
    }

    .ocf-filter-header-append{
        display: none!important;
    }

    .ocf-filter-km .ocf-filter-header:before{
        left: unset;
        right: 0;
    }

    .ocf-filter-km .ocf-filter-header {
        padding-left: 4px;
    }

    .sc-category-products{
        padding: 15px;
    }
    .sidebar .sc-btn-icon{
        color: #001f3f;
        background: #001f3f;
    }
    .sidebar [data-sidebar=close]{
        top: 17px;
    }
}



.ocf-btn-mobile-fixed{
    display: none!important;
}

.sc-subcategories-km {

}

.header-soc-widget-top{
    display: flex;
    flex-direction: column;
    grid-gap: 10px;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 10px;
    margin-bottom: 7px;
}

.widget-top-line{
    display: flex;
    grid-gap: 8px;
}

.widget-top-line a{
    font-size: 14px;
    color: #001F3F;
    font-weight: 500;
    display: flex;
    grid-gap: 8px;
}

.widget-top-line a:hover{
    color: #002954;
}

.widget-top-line-item{
    font-size: 14px;
    color: #001F3F;
    font-weight: 500;
}

.header-soc-widget-body .widget-top-line-item{
    margin-bottom: 5px;
    display: flex;
    grid-gap: 8px;
}

.widget-body-hours{
    color: #C0C0C0;
}

.header-soc-widget-footer span{
    background: #ECECEC;
    width: 100%;
    display: flex;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    margin-top: 10px;
    cursor: pointer;
    font-weight: 500;
}

.header-soc-widget-footer span:hover{
    background: #001f3f;
    color: #fff;
    transition: .15s;
}

.header-soc-dropdown{
    border-radius: 8px;
}

.top-contact-box{
    display: flex;
    grid-gap: 25px;
    width: 100%;
    margin-bottom: 25px;
}

.top-contact-item{
    width: 100%;
    background: #fff;
    padding: 30px 25px;
    border-radius: 8px;
}

.top-contact-item-title{
    color: #1A1A1A;

    margin-bottom: 15px;
}

.top-contact-item-dark{
    background: #001F3F;
}

.top-contact-item-dark .top-contact-item-title{
    color: #FAFAFA;
}

.top-contact-item-phone{
    color: #fff;
    display: flex;
    align-items: center;
    grid-gap: 10px;
}

.top-contact-item-phone:hover{
    color: #fff;
}

.op-contact-item-soc{
    display: flex;
    grid-gap: 10px;
}

.op-contact-item-soc-item a{
    display: flex;
    min-width: 40px;
    min-height: 40px;
    border: 1px solid #001F3F;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.op-contact-item-soc-item a{
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form-wrapper{
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    height: 100%;
}

.contact-form-header{
    padding-bottom: 25px;
    border-bottom: 1px solid #e5e8eb;
    margin-bottom: 25px;
}

.contact-form .dark-text{
    color: #8c8c8c;
}

.contact-form .form-control{
    height: 52px;
    border-radius: 8px;
}
.contact-form .form-control::placeholder{
    color: #8c8c8c;
    font-weight: 500;
}

#inputContactsComment{
    min-height: 120px;
    resize: none;
}

#agreeCheaperCheck:checked[type=checkbox]{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
    background-color: #001F3F;
}

.contact-submit{
    min-width: 75%;
}

.sc-contact-us-item-title{
    padding-bottom: 25px;
    border-bottom: 1px solid #e5e8eb;
    margin-bottom: 25px;
}

.gg-10{
    grid-gap: 10px;
}

.sc-contact-us-item-subtitle span{
    color: #8c8c8c;
}

.sc-contact-us-item-km{
    background: #fff;
    border-radius: 12px;
}

.sc-contact-us-item-shedule{
    margin-bottom: 25px;
}

.sc-contact-us-item-address{
    color: #001F3F;
    font-weight: 500;
}

.map-wrapper{
    border-radius: 8px;
}

.mb-10{
    margin-bottom: 10px;
}

.sc-contact-us-form-box{
    display: flex;
    flex-direction: column;
}

@media screen and (max-width:768px) {
    .top-contact-box{
        flex-direction: column;
    }
    .contact-page, .coop-page{
        padding: 15px;
    }

}

.go-home-link{
    background: #001F3F;
    color: #fff;
    padding: 15px 40px;
    display: inline-block;
    border-radius: 8px;
    margin-top: 15px;
}

.coop-info-wrapper{
    padding: 25px;
    border-radius: 12px;
    background: #fff;
    margin-bottom: 25px;
}

.coop-info-text{
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #001F3F1A;
}

.coop-info-manager{
    color: #8c8c8c;
}

.coop-info-text *{
    font-weight: 500;
}

.coop-info-text ul{
    margin-left: 20px;
}

.coop-page .top-contact-box {
    margin-bottom: 0;
}



@media screen and (max-width:1425px) and (min-width:1200px) {
    .top-contact-item-phone{
        font-size: 18px!important;
    }
}

.detail-about-coop{
    display: inline-block;
    min-width: 75%;
    color: #001F3F;
    background: #ECECEC;
    border-radius: 12px;
    padding: 12px;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    margin-top: 25px;
}

.modal .modal-dialog {
    max-width: 516px;
}

.modal-title{
    color: #001F3F;
    font-weight: 400;
}

.modal-header{
    background: #fff;
    border-bottom: 1px solid #e5e8eb!important;
}

.modal-header .btn-close{
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c0c0c0'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat rgba(0, 0, 0, 0);
}


.modal input:-webkit-autofill,
.modal input:-webkit-autofill:hover,
.modal input:-webkit-autofill:focus,
.modal input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.modal label{
    color: #c8c8c8;
}

.socauth-separator-link-checkout img{
    height: 24px;
    width: 24px;
}

.socauth-separator-link-checkout{
    margin-left: auto;
    margin-right: 25px;
    padding: 0 15px;
    height: 32px!important;
}

.socauth-separator{
    position: relative;
}

.socauth-separator-line{
    border-bottom: 1px solid #e4e4eb;
    margin: 25px 0;
}

.socauth-separator-text{
    position: absolute;
    top: -13px;
    background: #fff;
    padding: 2px;
    width: 75px;
    text-align: center;
    font-size: 16px;
    color: #CECECF;
    left: calc(50% - 37px);
}

.socauth-separator-link img{
    width: 24px;
    height: 24px;
}

.socauth-separator-link{
    background: #F2F4F8;
    display: flex;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    grid-gap: 10px;
    color: #000 !important;
    border: 2px solid #F2F4F8;
    transition: .2s;
}

.socauth-separator-link:hover{
    background: unset;
}


@media (max-width: 767.98px) {
    .socauth-separator-link-checkout{
        margin: 0;
        max-width: 210px;
        margin-bottom: 10px;
    }
}

.socauth-mobile-menu{
    width: 100%;
    margin-bottom: 10px;
}

.socauth-mobile-menu .socauth-separator-line{
    margin-top: 10px;
}



.acc-login{
    flex-wrap: wrap;
}




.acc-login .socauth-separator-link{
    padding-left: 15px;
    padding-right: 15px;
    margin-left: 15px;
}

@media (max-width: 575.98px) {
    .acc-login .socauth-separator-link{
        width: 100%;
        margin-top: 15px;
        margin-left: 0;
    }
}
@media (min-width: 768px) {
    .sc-account-row .form-control {
        max-width: 430px;
    }
}

.forgotten_pass-modal{
    color: #D03131!important;
    font-size: 14px;
    text-decoration: none;
}

.no-registered{
    margin-top: 25px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
}

.no-registered a{
    text-decoration: none;
    color: #407CB2;
}

.register-account-fields{
    display: flex;
    flex-wrap: wrap;
    grid-gap: 15px;
}

.register-account-fields .form-group {
    max-width: calc(50% - 13px);
    width: 100%;
}

.register-custom-fields .form-group{
    max-width: calc(50% - 13px);
    width: 100%;
}

.register-password-fields .field-wrapper{
    display: flex;
    flex-wrap: wrap;
    grid-gap: 15px;
}

.register-password-fields .form-group {
    max-width: calc(50% - 13px);
    width: 100%;
}

.register-news-form .form-check{
    padding-left: 17px;
}

.register-content-block{
    background: #fff;
}

.register-content-block .form-control{
    max-width: 100%;
}

.register-account-fields .form-group .dark-text,
.register-password-fields .form-group .dark-text{
    /*color: #c8c8c8;*/
}

@media screen and (max-width:768px) {
    .register-account-fields .form-group,
    .register-password-fields .form-group{
        max-width: 100%;
    }
}

.sc-account-module-icon{
    background: unset;
}

.sc-account-module .sc-column-categories-item > :not(ul){
    padding: 0;
}

.sc-column-categories-item{
}

.km-text-dark{
    color: #001F3F;
}

.km-text-red{
    color: #d03131;
}


.sc-column-categories .sc-account-module li.sc-column-categories-item a {
    border: 0;
    justify-content: space-between;
}

.sc-column-categories .sc-column-categories-item.first-menu-item a{
    justify-content: flex-start!important;
    border: 0;
}

.sc-account-module li.sc-column-categories-item a:hover {
    text-decoration: none;
}

.sc-account-module>ul {
    padding: 8px!important;
}

.active-menu-item a{
    background: #ECECEC;
    border-radius: 8px;
}
.active-menu-item a:hover{
    background: #ECECEC;
}

.sc-column-categories-item.first-menu-item{
    border-bottom: 1px solid #ececec;
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.sc-column-categories-item a .menu-item-user-name{
    color: #001F3F;
}

.sc-column-categories-item a .menu-item-user-email{
    color: rgb(0 31 63 / 50%);
}

.user-fields-list{
    display: flex;
    flex-direction: column;
    max-width: 500px;
    grid-gap: 8px;
}

.user-field-item{
    display: flex;
}

.user-field-item-name{
    min-width: 200px;
    color: #7c8c9d;
    font-weight: 400;
}

.user-field-item-value{
    color: #001F3F;
    font-weight: 500;
}

.user-info-edit-button{
    margin-top: 35px;
}

.user-info-edit-button a{
    background: #001F3F;
    color: #fff;
    width: 250px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    display: block;
}

.personal-h1{
    font-size: 32px;
    color: #001F3F;
    font-weight: 500;
    margin-bottom: 25px;
    margin-top: 0;
}

#account-account,
#account-edit{
    padding: 10px;
}

.menu-item-count{
    margin-left: auto;
    margin-right: 10px;
    color: #A0A5B1;
    font-size: 14px;
    font-weight: 400;
}



.sc-account-module li.sc-column-categories-item a span.km-text-dark{
    margin-right: auto;
}



@media screen and (max-width:768px) {
    #account-account #column-left,
    #account-edit #column-left {
        /*position: fixed;*/
        /*z-index: 5;*/
        /*top: 0;*/
        /*left: 0;*/
        /*bottom: 0;*/
        /*background: #fff;*/
        /*padding-top: 70px;*/
        /*left: -200%;*/
        /*transition: .3s;*/
    }
}

.form-group-half,
.sc-account-form .custom-field{
    max-width: calc(50% - 8px);
    width: 100%;
}

.sc-account-form-edit{
    display: flex;
    flex-wrap: wrap;
    grid-gap: 15px;
}

.form-group.w-100 input{
    max-width: 100%;
    width: 100%;
}

#account-edit input[type="text"],
#content-account-password input[type="password"],
#account-edit input[type="tel"],
#account-edit input[type="tel"],
#account-edit input[type="email"],
#account-edit input[type="date"]
{
    border-radius: 8px;
    height: 52px;
}

.cancel-edit{
    margin-left: 15px;
    color: #407CB2;
    font-size: 16px;
}

@media screen and (max-width:768px) {
    .form-group-half,
    .sc-account-form .custom-field{
        max-width: 100%;
        width: 100%;
    }

    .user-field-item-name{
        min-width: unset;
    }

    .user-field-item{
        flex-direction: column;
    }
}

.bg-unset{
    background: unset!important;
}

#content-wishlist .sc-module-btns .sc-btn.added{
    background: #FAFAFAB2!important;
}

/*
.km-grid-add-to-cart svg path{
    stroke: #fff;
}

#content-wishlist .km-category-products .sc-module-btns{
    display: block!important;
}

#content-wishlist .km-category-products .sc-module-btns .sc-compare-btn{
    display: none;
}

#content-wishlist .km-category-products .product-grid .popup-cart-button .km-grid-add-to-cart{
    background: #FAFAFAB2;
}

#content-wishlist .km-category-products .product-grid .popup-cart-button .km-grid-add-to-cart svg path{
    stroke: #001f3f;
}

#content-wishlist .sc-btn.added svg path{
    stroke: #001f3f;
    fill: unset;
}

#content-wishlist .km-category-products .product-grid .popup-cart-button .km-grid-add-to-cart.added{
    background: #001f3f!important;
}

#content-wishlist .km-category-products .product-grid .popup-cart-button .km-grid-add-to-cart.added svg path{
    stroke: #fff;
}*/

@media screen and (max-width:370px) {
    .top-contact-item-phone{
        font-size: 20px!important;
    }
}

.sc-column-categories-item:last-child > a{
    border: 0;
}

@media screen and (max-width:767px) {
    .km-grid-add-to-cart svg path{
        stroke: #001f3f;
    }
}

.mobile-wishlist-button{
    display: none;
    position: absolute;
    top: 5px;
    right: 5px;
}

@media (max-width: 767.98px) {
    .mobile-wishlist-button{
        display: block;
    }

    .product-grid .sc-compare-btn{
        display: none;
    }
}

#account-wishlist .sc-btn.added.sc-wishlist-btn svg path{
    stroke: unset;
    fill: unset;
}

#content-notif .sc-wishlist-btn:hover svg path{
    fill: #fff;
}

.sc-column-categories-item.active-menu-item svg{
    opacity: 0;
}

#content-wishlist .sc-module-btns .sc-btn.sc-wishlist-btn.added:hover{
    background: #d03131!important;
}

#content-wishlist .sc-module-btns .sc-btn.sc-wishlist-btn.added:hover svg path{
    fill: #fff;
}


#content-wishlist .sc-module-btns .sc-btn.sc-compare-btn.added{
    background: #001f3f!important;
}

#content-wishlist .sc-module-btns .sc-btn.sc-compare-btn.added svg path{
    fill: #fff;
}





.sc-alert-success .sc-alert-icon{
    background-color:#001f3f!important;
}

.remove-notif{
    position: absolute;
    top: 8px;
    left: 8px;
    max-width: 40px;
    max-height: 40px;
    border: 1px solid #d03131;
}

.remove-notif svg path{
    fill: #d03131;
}

.remove-notif:hover{
    background: #d03131;
}

.remove-notif:hover svg path{
    fill: #fff;
}

#column-left .sc-account-module{
    position: sticky;
    top: 65px;
}

.mw-430{
    max-width: 430px;
    width: 100%;
}

.order-list-item-head{
    display: flex;
    width: 100%;
}

.order-list-dark{
    color: #1a1a1a;
    opacity: .5;
    margin-bottom: 4px;
    font-size: 12px;
}

.order-list-item-head-info-3{
    display: flex;
    grid-gap: 8px;
    align-items: center;
}

.order-list-item-head-info-3 img{
    max-width: 52px;
    max-height: 52px;
    object-fit: cover;
}

.order-list-item{
    background: #fff;
    padding: 8px 15px;
    border-radius: 12px;
}

.order-list-status{
    padding: 8px 16px;
    background: #D67700;
    font-size: 12px;
    color: #fff;
    text-align: center;
    width: 140px;
}

.order-list-item-total{
    font-weight: 500;
    font-size: 18px;
    color: #001f3f;
}

.order-list-item-exapnd{
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 24px;
    margin-left: 25px;
    margin-right: 10px;
    transition: .2s;
}

.order-list-item-exapnd.active{
    transform: rotate(180deg);
}

.order-list-item-exapnd svg{
    transform: rotate(90deg);
    stroke: #407CB2!important;
}

.order-list-item-header-wrapper{
    display: flex;
}

.order-item-product{
    display: flex;
}

.order-list-item-body-wrapper{
    margin-top: 25px;
}

.order-item-product{
    grid-gap: 10px;
}

.order-item-product-content-title{
    color: #001F3F;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.order-item-product-content-model{
    opacity: .5;
    font-size: 12px;
    color: #1a1a1a;
}

.order-item-product-image{
    aspect-ratio: 4 / 5;
    display: block;
    max-width: 116px;
}

.order-item-product-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}

.order-item-product-content{
    display: flex;
    flex-direction: column;
    height: 100%;
}

.order-item-product-content-prices{
    margin-top: auto;
}

.order-item-products{
    display: flex;
    flex-direction: column;
    grid-gap: 5px;
}

.order-list-item-body{
    border: 1px solid #e6e9ec;
    border-radius: 8px;
    padding: 8px 0;
}

.order-item-products .order-item-product:not(:last-child){
    border-bottom:1px solid #e6e9ec;
    padding-bottom: 15px;
}


.order-item-products .order-item-product{
    padding-left: 8px;
}

.order-info{
    display: flex;
    margin-top: 17px;
    padding: 8px;
    grid-gap: 20px;

}

.order-info-list{
    flex-direction: column;
}

.order-info-list.w-65{
    width: 65%;
    flex-direction: column;
}

.order-info-list.w-50{
    width: 50%;
    flex-direction: column;
}

.order-info-list.w-35{
    width: 35%;
    flex-direction: column;
}

.order-info-item{
    display: flex;
    justify-content: space-between;
}

.order-info-item>div{
    /*width: 50%;*/
}

.order-info-item-name{
    color: #001f3f;
    opacity: .5;
}

.order-info-item-value{
    color: #001F3F;
    font-weight: 500;
}

.btn-reorder{
    display: inline-block;
    margin-top: 15px;
    color: #fff;
    background: #001F3F;
    padding: 10px 25px;
    cursor: pointer;
}

.order-info{
    border-top: 1px solid #e6e9ec;
}

.d-flex.order-info-list.w-35 .order-info-item-value{
    text-align: right;
}



@media screen and (max-width:767px) {
    .order-list-item-head{
        flex-direction: column;
    }

    .order-list-status{
        display: inline-block;
    }

    .order-list-item{
        margin-top: 25px;
    }

    .order-list-item-exapnd{
        align-items: flex-start;
        height: 24px;
    }

    .order-info{
        flex-direction: column;
    }
    .order-info-list.w-35,
    .order-info-list.w-50,
    .order-info-list.w-65{
        width: 100%;
    }

    .order-info-item{
        flex-direction: column;
        margin-bottom: 10px;
    }

    .order-info-item{
        grid-gap: 4px;
    }
    .d-flex.order-info-list.w-35 .order-info-item-value{
        text-align: left;
    }
    .order-list-dark{
        margin-bottom: 4px;
    }
    .order-list-item-head-info-1{
        margin-bottom: 8px;
    }
}


/*В очікуванні*/
.order-status-id-1 {
    background: #D67700;
}

/*Відхилений*/
.order-status-id-8 {
    background: #ECECEC;
}

/*Сплачений*/
.order-status-id-17 {
    background: green;
}

/*Failed*/
.order-status-id-10 {
    background: red;
}

.account-menu{
    /*margin-top: 25px;*/
    margin-bottom: 25px;
}

.account-menu-button {
    display: flex;
    background: #001f3f;
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    max-width: 175px;
    grid-gap: 10px;
    font-size: 18px;
    margin: 0 auto;
    /*margin-bottom: 20px;*/
    position: relative;
    justify-content: center;
    display: none;
}

.account-menu-button .sc-btn-icon{
    color: #ececec;
    width: 24px;
    height: 24px;
    background: #ececec;
    margin-top: 2px;
    margin-right: 15px;
    position: absolute;
    left: 15px;
    top: 10px;
}

@media screen and (max-width:767px) {
    .account-menu-button{
        /*display: flex;*/
    }
    .account-menu{
        /*display: none;*/
    }
}


.modal-go-cart{
    color: #407CB2;
    font-size: 16px;
    font-weight: 500;
    margin-left: auto;
}

.modal-header .btn-close{
    margin-left: 30px;
}

.modal .modal-dialog-cart{
    max-width: 840px;
}

.popup-cart-image{
    /*max-width: 116px;*/
    width: auto;
    max-height: 164px;
    aspect-ratio: 3 / 4;
    object-fit: contain;
    border-radius: 12px;
    background: #fff;
    padding: 3px;
}

.sidebar-cart-item-title {
    margin-bottom: 5px;
}
.sidebar-cart-item-title a{
    color: #001F3F;
}

.popup-cart-product-model{
    font-size: 12px;
    font-weight: 400;
    color: #8D8D8D;
}

.popup-cart-product-model{
    margin-bottom: 15px;
}

.br-l-0{
    border-left: 0;
}

.modal-dialog-cart .sc-module-quantity .sc-module-quantity-btn{
    width: 40px;
    height: 40px;
}

.modal-dialog-cart .sc-module-quantity .form-control.br-l-0{
    width: 40px;
    height: 40px;
}

.product-quanitity-1 path{
    stroke: #C0C0C0
}

#modalCartBody .modal-body-cart-items{
    max-height: calc(100vh - 457px);
}

.modal-body-cart-items .popup-cart-item{
    border-bottom: 1px solid #e5e8eb;
}


.modal-body-cart-items .popup-cart-item:last-child{
    margin-bottom: 0;
    border-bottom: 0;
}

.popup-cart-item-delete{
    color: #407CB2;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-left: auto;
}

.popup-cart-total {
    display: flex;
    max-width: 50%;
    width: 100%;
    margin-left: auto;
    justify-content: space-between;
    font-size: 20px;
    color: #001F3F;
    font-weight: 500;
    /*margin-bottom: 25px;*/
    padding-top: 0!important;
    padding-bottom: 0!important;
}

.popup_one_click_buy_wrapper{
    flex-direction: column;
}

#oct_purchase_byoneclick_form_popup_cart{
    width: 100%;
}

#one_click_input{
    width: 100%!important;
}

.sc-product-one-click-btn{
    height: 48px;
    width: 100%;
    background: #ECECEC;
    color: #001F3F;
    margin-top: 16px;
}

.h-48{
    height: 48px;
}

.km-cart-button-order{
    margin-bottom: 15px;
}

#mono_checkout_cart_page{
    background: #1a1a1a;
    color: #fff;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: 10px;
}

.km-grid-add-to-cart-small{
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 40px;
    height: 40px;
    background: rgb(250 250 250 / 70%);
    backdrop-filter: blur(2px);
}

#cartModal .km-category-products{
    margin-top: 25px;
}

#cartModal .km-category-products .product-grid{
    margin: 0px;
    max-width: calc(25% - 30px);
}
#cartModal .km-category-products.slick-slider .product-grid{
    margin: 0 10px;
    max-width: unset;
}

.cart-reated-title{
    margin-bottom: 25px;
    font-size: 20px;
    color: #001F3F;
    font-weight: 500;
    margin-top: 25px;
}

#cartModal .modal-content{
    max-height: calc(100vh - 50px);
    overflow-y: auto;
}




/* Для Webkit-браузерів (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 4px;
    height: 2px;
}

::-webkit-scrollbar-thumb {
    background-color: #001F3F;
    border-radius: 4px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

.popup-cart-item{
    padding-top: 0!important;
}

.popup-cart-item-checkbox{
    width: 18px;
    height: 18px;
    margin-right: 15px;
}

.cehcked-items{
    display: flex;
    align-items: center;
    grid-gap: 5px;

}

.popup-cart-item-checkbox-all{
    width: 18px;
    height: 18px;
}


.cehcked-items-wrapper{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ebebeb;
    padding-left: 40px;
}

.modal-dialog-cart .cehcked-items-wrapper{
    flex-direction: row-reverse;
}

.cehcked-actions{
    display: flex;
}

.cehcked-action-item{
    cursor: pointer;
}

.cehcked-action-item-wishist{
    border-right: 1px solid #ebebeb;
    padding-right: 16px;
    margin-right: 16px;
}

.cehcked-actions{
    padding-right: 25px;
}

.cehcked-action-item:hover{
    color: #d03131;
}

.alert-block{
    z-index: 99999999!important;
}

.cehcked-action-item-wishist:hover path{
    stroke: #d03131;
}

.km-p-4{
    padding: 1.5rem;
}

@media (max-width: 768px) {
    .km-p-4{
        padding: .7rem;
    }

    .cehcked-items-wrapper{
        padding-left: 12px;
    }

    .popup-cart-item-checkbox{
        margin-right: 7px;
    }
}

.popup-cart-product-model{
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-cart-item-title a{
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .popup-cart-image {
        /*aspect-ratio: 1 / 2;*/
    }
    .popup-cart-total{
        margin-left: 0;
        width: 100%;

    }
    .popup-cart-total-value{
        white-space: pre;
        margin-left: auto;
    }
    .sidebar-cart-item-buttons {
        /*flex-direction: row;*/
        justify-content: flex-start !important;
        text-align: left;
        align-items: flex-start !important;
    }


    .popup-cart-item-delete{
        margin-left: 0;
        margin-top: 10px;
    }

    #cartModal .sc-module-price-km{
        flex-direction: row;
        grid-gap: 15px;
        align-items: end;
    }
    .cehcked-actions{
        padding-left: 10px;
    }
    .popup-cart-item{
        padding: 0!important;
    }

    .sidebar-cart-item-title a {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .popup-cart-product-model{
        margin-bottom: 10px;
    }
    .popup-cart-total{
        max-width: unset;
        margin-bottom: 0;
    }
    .sc-product-one-click-btn{
        margin-bottom: 25px;
    }

    .km-cart-button-order{
        margin-bottom: 10px;
    }
}


@media (max-width: 450px) {

    /*.popup-cart-image-wrapper{*/
    /*    max-width: 45%;*/
    /*    width: 100%;*/
    /*    min-width: 116px;*/
    /*}*/

    .popup-cart-product-model{
        display: none;
    }
}

.header-buttons-cart-quantity{
    right: calc(50% - 16px);
}

.sidebar-header .sc-megamenu-close .sc-btn-icon{
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.color-half-dark{
    color: #001F3F;
    opacity: .5;
}

.color-dark{
    color: #001F3F;
}

.empty-cart-btn{
    background: #ECECEC;
    padding: 14px;
    min-width: 280px;
    display: inline-block;
}

.cart-coupon-wrapper{

}

#input-coupon{
    border-radius: 8px 0 0 8px;
    border: 1px solid #ECECEC;
    padding-left: 25px;
}

#button-coupon{
    height: 48px;
    border-radius: 0 8px 8px 0;
    padding: 15px 10px;
    background: #ECECEC;
}

.sc-cart-actions-block{
    border-bottom: 1px solid #ebebeb;
}

@media (min-width: 1200px) {
    .sc-megamenu {
        left: 15px;
    }
}

.pl-br-0{
    padding-left: 0;
    border-left: 0;
}

.totals-wrapper{
    padding-bottom: 25px;
    border-bottom: 1px solid #ECECEC;
}

.sc-cart-actions .sc-buy-one-click{
    margin-top: 0!important;
}
.sc-cart-actions .sc-buy-one-click form{
    width: 100%;
}

.sc-cart-actions .sc-buy-one-click form .popup_one_click_buy_wrapper {
    display: flex;
}
.sc-cart-actions .sc-buy-one-click form .popup_one_click_buy_wrapper input{
    max-width: unset;
    margin-bottom: 15px;
}


.sc-cart-actions .sc-buy-one-click form .popup_one_click_buy_wrapper .sc-product-one-click-btn{
    margin-top: 0!important;
}

.content-block{
    border: 0!important;
}

.content-block:hover{
    box-shadow: unset;
}

.sc-cart-actions{
    position: relative;
    top: 0;
}

.cart-cards-wrapper{
    display: flex;
    grid-gap: 12px;
    width: 100%;
}

.cart-cards-item{
    display: flex;
    flex-direction: column;
    width: calc(25% - 6px);
}

.cart-cards-item-icon{
    text-align: center;
}

.cart-cards-item-name{
    margin-top: 15px;
    text-align: center;
    font-weight: 400;
}

.cart-cards-item{
    border-radius: 8px;
}

.sc-cart .popup-cart-item{
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.sc-cart .popup-cart-item:last-child{
    border-bottom: 0;
}

.sc-cart .popup-cart-item:last-child{
    border-bottom: 0;
}

.cart-quanitity-input{
    background: unset;
}

.sc-module-quantity.disabled button{
    cursor: default;
    pointer-events: none;
}

.cart-quanitity-input{
    cursor: default;
}


.form-control[readonly]{
    background: unset;
}


.cart-actions-wrapper{
    margin-left: auto;
    align-items: center;
}

.cart-actions-wrapper .sc-wishlist-btn{
    background: unset;
    position: relative;
    /*padding-right: 15px;*/
    /*margin-right: 15px;*/
}
.cart-actions-wrapper .popup-cart-item-delete{
    margin-top: 0;
}

.cart-actions-wrapper{
    margin-top: 10px;
    padding-bottom: 5px;
}

.cart-actions-wrapper .sc-wishlist-btn span{
    background: #001F3F;
}

.cart-actions-wrapper .sc-wishlist-btn:before{
    content: ' ';
    width: 1px;
    height: 16px;
    background: #1a1a1a;
    position: absolute;
    right: 0;
    opacity: 0.5;
    top: 5px;
    display: none;
}


.cart-actions-wrapper .sc-wishlist-btn.added span{
    background: #d03131;
}

@media (max-width: 768px) {
    .cart-actions-wrapper{
        /*margin-left: 0;*/
    }
}

.product-images-grid{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    grid-gap: 24px;
}

.product-images-grid .oct-gallery{
    /*max-width: calc(50% - 12px);*/
    /*width: 100%;*/
    /*aspect-ratio: 4 / 5;*/
    height: 100%;
}
.product-images-grid .oct-gallery img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
    border-radius: 12px;
}

.sc-breadcrumb{
    padding-bottom: 25px;
}

.produc-page-h1{
    font-size: 32px;
    line-height: 40px;
}

#product-product{
    background: #fff;
}

.sc-product-info-item-badge{
    font-size: 16px;
    font-weight: 500;
    color: #1c1c28;
    margin-left: 8px;
    white-space: pre;
    background: unset;
}

.sc-module-rating-star{
    width: 16px;
    height: 16px;
}

.sc-module-rating-star + .sc-module-rating-star{
    margin-left: 3px;
}

.sc-product-info-top{
    justify-content: space-between;
}

.color-blue{
    color: #407CB2;
}

#product .km-price-linethrow{
    font-size: 16px;
}

#product .km-price-special{
    font-size: 18px;
}

#product .sc-module-price-km-usdt{
    font-size: 18px;
}

.product-action-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    background: unset;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    transition: .2s;
}
.product-action-btn.added{
    background: #001f3f;
}

.product-action-btn.added path{
    stroke: #fff;
}


#product .sc-product-buttons{
    display: flex;
    width: 100%;
    grid-gap: 26px;
}

#product #button-cart{
    width: calc(50% - 13px);
    height: 72px;
    font-size: 20px;
}
@media screen and (min-width: 1400px) {
    #product #button-cart{
        width: calc(50% - 3px);
    }
}
@media screen and (max-width: 576px) {
    #product #button-cart{
        height: 50px;
    }
}

#product #mono_checkout_product_page{
    width: 50%;
    height: 72px;
    font-size: 16px;
    padding: 0;
}

#product #mono_checkout_product_page img{
    width: auto;
    height: 12px;
    margin-left: 5px;
}

#product .sc-product-actions{
    margin-top: 25px;
}

.sc-product-actions-top{

}

.detail-product-info{
    position: sticky;
    top: 100px;
}

#product .popup_one_click_buy_wrapper{
    display: flex;
    flex-direction: row;
}

#product .popup_one_click_buy_wrapper .input-group-btn{
    display: block;
}

#product .popup_one_click_buy_wrapper .input-group-btn button{
    margin: 0;
}

.oneclickbuy-button-icon{
    display: none;
}

.onelick_buy_text{
    display: none;
    color: #001F3F;
    font-size: 14px;
    margin-right: 15px;
    font-weight: 500;
}


.detail-product-info .sc-buy-one-click #one_click_input{
    height: 40px!important;
    border-radius: 8px 0 0 8px!important;
}

.detail-product-info .oneclickbuy-button-icon{
    display: block;
    width: 24px;
    height: 24px;
}

.detail-product-info .onelick_buy_text{
    display: block;
    white-space: pre;
}

.detail-product-info #oct_purchase_byoneclick_form_product{
    display: flex;
    align-items: center;
}

.detail-product-info .sc-buy-one-click .input-group-btn .sc-product-one-click-btn{
    display: flex;
    height: 40px;
    width: 40px;
    align-items: center;
    justify-content: center;
    font-size: 0;
    border-radius: 0 8px 8px 0!important;
    background: #001F3F;
}

.detail-product-info .sc-buy-one-click .input-group-btn .sc-product-one-click-btn:hover{
    background: #193552;
    transition: .2s;
}

.sc-product-actions .sc-buy-one-click{
    padding: 25px 0 !important;
}

.square-item svg{
    margin: 0 auto;
}

.sc-product-tab-badge{
    display: none!important;
}

.sc-product-tabs{
    border-radius: 0;
    box-shadow: unset;
}

.sc-product-tab{
    flex: 1;
    padding: 15px 0 10px 0;
    border-bottom: 2px solid #001F3F1A;
    border-left: 0 !important;
    border-right: 0 !important;
}

.sc-product-content-title{
    /*display: none!important;*/
}

.sc-product-tabs-box{
    margin-bottom: 25px;
    margin-top: 0!important;
    position: absolute;
    top: 0;
}

.sc-product-tabs-box.fixed{
    position: fixed;
}

@media (max-width: 767.98px) {
    .body-product {
        padding-top: 0px!important;
    }
    .body-product #top{
        position: relative;
    }
}

.tab-title{
    font-size: 32px;
}

.mb-35{
    margin-bottom: 35px;
}

.sc-product-content-attributes-list-item > div{
    padding: 24px 0;
    border-bottom: 1px solid #001F3F1A;
}

.sc-product-content-attributes-list-item:nth-child(even){
    background: unset;
}

.sc-product-content-attributes-list-item > div:first-child{
    font-weight: 500;
    font-size: 18px;
    width: 70%;
}

.sc-product-content-attributes-list-item > div:last-child{
    font-weight: 400;
    font-size: 18px;
    width: 30%;
}

.sc-product-content-left{
    border-right: 0;
}

.scrolling-product-title{
    font-size: 16px;
    line-height: 22px;
    color: #001F3F;
}

.scrolling-product .sc-module-price-box{
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}
.scrolling-product .sc-module-price-box .usdnt-price-grid{
    margin-left: 5px;
    padding-left: 5px;
    border-left: 1px solid #1A1A1A;
    opacity: .5;
    color: #1A1A1A;
    font-size: 16px;
    font-weight: 400;
    text-transform: unset;
}

.sc-module-price-old{
    font-weight: 500;
    font-size: 14px;
    color: #001F3F;
    opacity: .5;
}

.sc-module-price{
    font-weight: 500;
    font-size: 16px;
    color: #001F3F;
}

.sc-module-price-sale{
    color: #D03131;
}

.scrolling-product-model{
    color: #1a1a1a;
    font-size: 16px;
    opacity: .5;
    margin-top: 5px;
    font-weight: 400;
}

.scrolling-product .sc-module-btns button .sc-btn-icon{
    width: 22px;
    height: 22px;
    background: #001f3f;
}

.scrolling-product .sc-module-btns button{
    background: #FFFFFFB2;
    border: 0;
}

.scrolling-product .sc-module-btns button.added .sc-btn-icon{
    background: #fff;
}

.product-reviews-ask-buttons{
    display: flex;
    grid-gap: 15px;
    cursor: pointer;
    margin-bottom: 30px;
    color: #C0C0C0;
    font-weight: 500;
}

.product-reviews-ask-button{
    font-size: 16px;
}

.product-reviews-ask-button.active{
    color: #1A1A1A;
    border-bottom: 1px solid #1A1A1A;
}


.product-reviews-wrapper{
    display: none;
}

.product-reviews-wrapper.active{
    display: flex;
    flex-direction: column;
}

.product-asks-wrapper{
    display: none;
}

.product-asks-wrapper.active{
    display: flex;
}

.product-reviews-ask-title{
    color: #001F3F;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 32px;
}

.sc-product-product-review-title{
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.reviews-summary{
    display: flex;
    margin-bottom: 30px;
}

.sc-product-leave-review{
    border-radius: 12px;
    display: flex;
    border: 1px solid #001F3F1A;
    padding: 12px 15px;
    justify-content: space-between;
    align-items: center;

}

.sc-product-leave-review-text{
    color: #001F3F;
    font-size: 14px;
    font-weight: 500;
}

.review-item-head{
    flex-direction: column;
}

.sc-product-content-reviews-item-info{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sc-last-reviews-author-name{
    font-size: 16px;
    margin-bottom: 12px;
}

.sc-product-content-reviews-rating-stars{
    background: unset;
}

.review-item-head .sc-product-content-reviews-rating-stars{
    padding: 0;
}

.review-item-head .sc-last-reviews-date{
    color: #c0c0c0;
}
.review-item-head .sc-module-rating-star{
    width: 14px;
    height: 14px;
}

.sc-product-content-reviews-item-text {
    font-size: 14px;
    font-weight: 400;
    color: #1a1a1a;
}

.sc-product-content-media{
    display: flex;
    margin-top: 25px;
    border-top: 1px solid #f2f4f8;
    padding-top: 15px;
}

.review-image-title{
    margin-bottom: 5px;
}

.review-video-wrapper {
    padding-right: 15px;
    margin-right: 15px;
    position: relative;
    flex-direction: column;
}

.review-video-wrapper:after{
    content: ' ';
    position: absolute;
    height: 55px;
    width: 1px;
    background: #f2f4f8;
    right: 0;
    bottom: 7px;
}

.sc-product-content-reviews-item{
    border: 0;
}

.sc-product-content-reviews-item {
    border-bottom: 1px solid #f2f4f8;
}

.sc-product-content-attributes{
    border-bottom: 0;
}

.sc-empty-reviews{
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #001F3F;
    border: 0;
    background: unset;
}

.add-review-button{
    padding: 12px 24px;
    background: #ECECEC;
    color: #1a1a1a;
    border-radius: 12px;
}

.modal-body-product-img{
    border: 0!important;
}

.modal-body-product-img{
    min-width: 150px!important;
    max-width: 150px;
}
.modal-body-product-img img{
    max-width: 150px;
    width: 100%;
    height: auto !important;
    object-fit: cover !important;
}

.popup_review-head{
    display: flex;
    grid-gap: 15px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #001F3F1A;
}

.modal-body-product-title{
    font-size: 32px;
    font-weight: 500;
}

#reviewModal .modal-dialog{
    max-width: 855px;
}

.modal-body-product-title{
    margin-bottom: 16px;
}

.review-form-label{
    font-size: 14px;
    color: #1a1a1a!important;
    opacity: .5;
    align-self: flex-start;
    margin-bottom: 8px;
}

.sc-module-rating-box{
    display: flex;
    flex-direction: column;
}

.modal-body-product-info .sc-module-rating{
    background: unset;
}
.modal-body-product-info .sc-module-rating-star{
    width: 48px;
    height: 48px;
    cursor: pointer;
}

.sc-module-rating-star{
    background-position: center;
}

#inputReviewComment{
    resize: none;
}

.review-video-wrapper{
    display: flex;
}

.modal-review-video-wrapper-head{
    display: flex;
    grid-gap: 8px;
    margin-bottom: 8px;
}

.modal-review-video-wrapper{
    padding: 24px 16px;
    border: 1px solid #e4e4eb;
    border-radius: 8px;
}

.review-upload-info{
    display: flex;
    max-width: 50%;
    font-size: 12px;
    color: #001F3F;
    grid-gap: 8px;
}

.review-upload-info-title{
    font-size: 14px;
    color: #001F3F;
    font-weight: 500;
}

.review-upload{
    width: 50%;
    background: #ECECEC;
    color: #001F3F;
    text-align: center;
    padding: 12px;
    border-radius: 12px;
    margin-left: auto;
    font-weight: 500;
}

#close-review-form{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    background: #ECECEC;
    border-radius: 8px;
    color: #001F3F;
    cursor: pointer;
    transition: .2s;
}
#close-review-form:hover{
    color: #fff;
    background: #001F3F;
}

#button-review{
    width: 100%;
}

.sc-product-content-reviews-item-answer{
    background: unset;
    font-size: 16px;
    width: calc(100% - 10px);
    margin-left: auto;
    margin-bottom: 15px;
    border: 1px solid #e5e8eb;
}
.sc-product-content-reviews-item-answer p{
    color: #001F3F;
    font-weight: 400;
}

.desktop-product-info{

}

.mobile-product-info{
    display: none;
}

.custom-enabled{
    transform: translateY(0);
    border-top: 1px solid #f2f4f8;
    height: 56px;
    display: flex;
    align-content: center;
    background: #ECECECE5;
    backdrop-filter: blur(4px);
    bottom: 55px!important;
}

.sc-product-fixed-cart-btn{
    height: 40px!important;
    padding: 8px 24px!important;
}

.custom-enabled .sc-module-price-km-usdt{
    font-size: 12px;
    /*margin-left: 20px;*/
}

.custom-enabled .km-price-special{
    font-size: 14px;
}

.custom-enabled .sc-module-price-km{

}

.custom-enabled .product-action-btn{
    padding: 0;
    border: 0!important;
}

.custom-enabled .sc-product-actions-top-right{
    grid-gap: 10px;
}

.custom-enabled .sc-wishlist-btn{
    border-right: 1px solid #ececec;
}

.delimeter-btn{
    width: 1px;
    background: #001F3F1A;
    height: 40px;
}

.sc-product-fixed-cart-btn{
    font-size: 16px!important;
}

.sc-product-fixed-cart-btn span{
    display: block!important;
}

.sc-product-actions-top-desktop {
    display: block;
}

.sc-product-actions-top-mobile {
    display: none;
}

.sc-product-actions-top-mobile .sc-product-actions-top-right{
    justify-content: center;
}

#productImages .sc-module-stickers-left{
    flex-direction: column;
    align-items: flex-start!important;
    grid-gap: 5px;
}


#productImages .sc-module-stickers-left > div{
    padding: 6px 18px;
}



@media screen and (max-width:1200px) {
    .desktop-product-info .sc-product-info{
        flex-direction: column;
        grid-gap: 8px;
    }

    .sc-product-info-left{
        flex-direction: column;
        align-items: flex-start !important;
        grid-gap: 8px;
    }
    .sc-product-info-left>div{
        margin-left: 0!important;
    }

    #product #button-cart{
        width: calc(45% - 15px);
    }

    #product #mono_checkout_product_page{
        width: 55%;
        font-size: 14px;
    }

    .squares-wrapper{
        grid-gap: 10px;
    }

    .squares-wrapper span{
        font-size: 12px;
    }
    #product #mono_checkout_product_page img{
        margin-left: 0;
    }

}

@media screen and (max-width:767px) {
    #productImages,
    .produc-page-h1,
    .sc-product-actions{
        padding: 0 15px!important;
    }

    #oct-tabs{
        /*display: none!important;*/
    }

    .desktop-product-info{
        display: none;
    }

    .mobile-product-info{
        display: block;
        margin-bottom: 5px;
        margin-top: 40px;
    }

    .mobile-product-info .sc-product-info{
        flex-direction: column;
        grid-gap: 8px;
    }
    .mobile-product-info .sc-product-info .sc-product-info-left{
        flex-direction: column;
        align-items: self-start !important;
        grid-gap: 8px;
    }
    .mobile-product-info .sc-product-info .sc-product-info-left .ms-3{
        margin: 0!important;
    }

    .product-images-grid{
        grid-gap: 15px;
    }

    #product #button-cart{
        width: 100%;
        max-width: 100%;
        margin-right: 0;
    }

    #product .mono_checkout__button.mono_checkout__button--black:not(.custom){
        display: none!important;
    }

    .sc-product-actions-top-desktop{
        display: none;
    }

    .sc-product-actions-top-mobile {
        display: block;
    }

    .squares-wrapper.swiper-wrapper{
        overflow-x: auto;
        padding-bottom: 4px;
    }
    .squares-wrapper .square-item{
        width: 44%;
    }
    .bundle_wrapper{
        margin-top: 20px;
    }

    .sc-product-content-attributes-list-item > div:first-child{
        max-width: 115px;
        width: 100%;
    }
    .sc-product-content-attributes-list-item > div:last-child{
        width: 100%;
        padding-left: 5px;
    }

    .product-reviews-ask-title{
        font-size: 20px;
    }
}

.modal-body-review{
    padding: 24px;
}

@media screen and (max-width:359px) {
    .custom-enabled{
        bottom: 50px!important;
    }
}


.sc-product-actions-top-mobile {
    margin-top: 25px;
    padding-bottom: 25px;
}
@media (max-width: 576px) {
    .sc-product-actions-top-mobile {
        padding-bottom: 0;
    }
}

.sc-product-actions-top-mobile .product-action-btn{
    width: auto;
    grid-gap: 8px;
}

.sc-product-actions-top-mobile .product-action-btn span{
    font-size: 14px;
    font-weight: 400;
}

.mb25{
    margin-bottom: 25px;
}

.sc-product-actions-top-mobile .product-action-btn.added{
    background: unset;
}


.sc-product-actions-top-mobile .product-action-btn.added path{
    stroke: #001f3f;
    fill: #001f3f;
}

.product-reviews-ask-buttons div span{
    color: #c0c0c0;
    font-weight: 500;
}

@media screen and (max-width:560px) {
    .sc-product-leave-review{
        border: 0;
    }
    .sc-product-leave-review-text{
        display: none;
    }
    .add-review-button{
        width: 100%;
    }
    .reviews-summary{
        margin-bottom: 15px;
    }
    #review{
        margin-top: 0px!important;
    }
    .sc-product-content-media{
        flex-direction: column;
    }
    .review-video-wrapper{
        margin-bottom: 5px;
    }
    .sc-product-actions-top{
        display: none!important;
    }

    .modal-body-product-img{
        max-width: 15% !important;
        min-width: unset!important;
    }

    #upload-container{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .review-upload-info{
        width: 100%;
        max-width: 100% ;
    }

    .review-upload{
        width: 100%;
        margin-top: 15px;
    }
}

.sc-product-content-reviews-item-text p{
    text-align: left;
}

.sc-product-content-reviews-item-answer p{
    text-align: left;
}
.review-images-wrapper{
    padding-bottom: 5px;
}


@media screen and (max-width:767px) {
    #oct_purchase_byoneclick_form_product{
        flex-direction: column;
        align-items: flex-start!important;
    }
    .bundle_wrapper.bundles_count-1{
        padding: 0;
    }
    .bundle_products{
        grid-gap: 35px;
    }
    .bundle_products .bundle_product:not(:last-child) .bundle_product_img::after{
        right: unset;
        left: calc(50% - 10px);;
    }

    .bw-p-15{
        padding: 0 15px;
    }
    .modal-review-footer{
        position: sticky;
        bottom: -25px;
        background: #fff;
        padding: 15px 0 25px 0;
    }
    .modal-body-product-title{
        font-size: 18px;
    }

    .modal-body-review{
        padding: 12px;
    }

    .bundles_header_title{
        text-align: center;
        margin-top: 5px;
    }
}

#reviewModal .modal-dialog{
    max-width: calc(100% - 20px);
    margin: 0 auto;
    margin-top: 10px;
}

.km-modif-product-moudle-list .sc-module-rating{
    display: none!important;
}

.product-layout .sc-module-rating{
    display: none!important;
}

.sc-livesearch-list{
    padding: 20px;
}

.oct-checkout-block{
    box-shadow: unset;
    border-radius: 8px;
}

#button-go{
    border-radius: 8px!important;
}

/*#checkoutCheckbox{*/
/*    background-color: #fff;*/
/*}*/

.pagination{
    margin-bottom: 15px!important;
}


@media screen and (max-width:370px) {
    .sc-module-price-km .sc-module-price-km-prices .km-price-regular{
        font-size: 14px;
        white-space: pre;
    }
    .sc-module-price-km .sc-module-price-km-prices:after{
        right: -6px;
    }
}


#error-not-found {
    background-color: #ffffff;
}
#error-not-found h1 {
    font-size: 32px;
    color: #001F3F;
    font-weight: 500;
    padding-bottom: 20px;
    padding-top: 40px;
}
@media (max-width: 576px) {
    #error-not-found h1 {
        text-align: left;
    }
}
#error-not-found .content-block {
    padding: 0;
    padding-bottom: 40px;
}
#error-not-found .img-wrapper {
    display: flex;
    justify-content: center;
}
@media (max-width: 768px) {
    #error-not-found .img-fluid {
        height: 170px;
    }
}
#error-not-found .sc-404-content-text {
    font-size: 14px;
    color: #001F3F;
    opacity: 0.5;
}
@media (max-width: 768px) {
    #error-not-found .sc-404-content-text {
        padding-bottom: 20px;
    }
}
@media (max-width: 576px) {
    #error-not-found .sc-404-content-text {
        text-align: left;
    }
}
#error-not-found .back-home {
    display: inline-block;
    color: #ffffff;
    font-size: 20px;
    padding: 20px;
    background-color: #001F3F;
    border-radius: 12px;
}
@media (max-width: 768px) {
    #error-not-found .back-home {
        margin-top: 30px;
    }
}


.breadcrumbs {
    background-color: #ffffff;
}

.rules {
    padding-top: 15px;
    padding-bottom: 50px;
    background-color: #ffffff;
}
@media (max-width: 768px) {
    .rules {
        padding-top: 30px;
    }
}
.rules__left-block {
    padding-top: 70px;
    padding-right: 30px;
}
@media (max-width: 998px) {
    .rules__left-block {
        padding-top: 0;
    }
}
.rules__right-block {
    padding-left: 30px;
}
@media (max-width: 992px) {
    .rules__right-block {
        padding-top: 50px;
    }
}
@media (max-width: 768px) {
    .rules__right-block {
        padding-left: 0;
        padding-right: 0;
    }
}
.rules__our-rules {
    font-size: 14px;
    text-transform: uppercase;
    color: #1A1A1A;
    opacity: 0.5;
}
.rules__heading {
    font-size: 48px;
    font-weight: 500;
    color: #001F3F;
    padding-top: 10px;
    padding-bottom: 20px;
    white-space: nowrap;
}
@media (max-width: 768px) {
    .rules__heading {
        font-size: 32px;
    }
}
.rules__desc {
    font-size: 18px;
    color: #1A1A1A;
    opacity: 0.8;
}
.rules__img {
    width: 100%;
    max-width: 900px;
    object-fit: cover;
    background-color: transparent;
}

.feature {
    background-color: #001F3F;
    padding: 90px 50px;
}
@media (max-width: 576px) {
    .feature {
        padding: 70px 30px;
    }
}
@media (max-width: 1200px) {
    .feature__blocks {
        flex-direction: column-reverse;
    }
}
.feature__left-block {
    display: flex;
    align-items: flex-end;
}
@media (max-width: 1200px) {
    .feature__left-block {
        padding-left: 0;
    }
}
.feature__numbers {
    display: flex;
    column-gap: 20px;
}
.feature__number {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.feature__number-value {
    font-size: 96px;
    font-weight: 500;
    color: #ffffff;
    opacity: 0.7;
}
@media (max-width: 768px) {
    .feature__number-value {
        font-size: 64px;
    }
}
.feature__number-desc {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    opacity: 0.8;
}
@media (max-width: 1200px) {
    .feature__number-desc {
        text-align: center;
    }
}
.feature__right-block {
    padding-left: 40px;
}
@media (max-width: 1200px) {
    .feature__right-block {
        padding-left: 0;
        padding-bottom: 30px;
    }
}
.feature__our-feature {
    text-transform: uppercase;
    font-size: 14px;
    color: #FAFAFA;
    opacity: 0.5;
}
.feature__heading {
    color: #ffffff;
    font-size: 48px;
    font-weight: 500;
    padding: 10px 0 20px 0;
}
@media (max-width: 768px) {
    .feature__heading {
        font-size: 28px;
    }
}
.feature__desc {
    font-size: 18px;
    color: #FAFAFA;
    opacity: 0.8;
}

.brands {
    padding: 50px 0;
    background-color: #ffffff;
}
.brands__about-brands {
    font-size: 14px;
    text-transform: uppercase;
    color: #1A1A1A;
    opacity: 0.5;
}
.brands__heading {
    font-size: 48px;
    font-weight: 500;
    color: #001F3F;
    padding: 10px 0 15px 0;
}
@media (max-width: 768px) {
    .brands__heading {
        font-size: 32px;
    }
}
.brands__desc {
    font-style: 18px;
    color: #1A1A1A;
    opacity: 0.8;
    padding-bottom: 30px;
}
.brands__brand {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
@media (max-width: 768px) {
    .brands__brand {
        padding-bottom: 20px;
    }
}
.brands__img-anchor {
    overflow: hidden;
    display: block;
    border-radius: 12px;
}
@media (max-width: 768px) {
    .brands__img-anchor {
        max-height: 430px;
    }
}
.brands__brand-img {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: 0.3s;
    height: 460px;
}
.brands__brand-img:hover {
    transform: scale(1.2);
}
.brands__brand-title {
    font-weight: 500;
    font-size: 20px;
    color: #001F3F;
}
.brands__show-all {
    display: flex;
    justify-content: center;
    padding-top: 40px;
}
@media (max-width: 768px) {
    .brands__show-all {
        margin-top: -30px;
    }
}
.brands__show-all-anchor {
    color: #001F3F;
    font-size: 20px;
    font-weight: 500;
    background-color: #ECECEC;
    border-radius: 12px;
    padding: 18px 24px;
}

.contacts {
    background-color: #ECECEC;
    padding: 100px 0;
}
@media (max-width: 768px) {
    .contacts {
        padding: 70px 0;
    }
}
.contacts__left-block {
    padding-right: 30px;
}
.contacts__right-block {
    padding-left: 30px;
}
@media (max-width: 992px) {
    .contacts__right-block {
        padding-left: calc(var(--bs-gutter-x) * 0.5);
        padding-top: 50px;
    }
}
.contacts__heading {
    font-size: 48px;
    font-weight: 500;
    color: #001F3F;
}
@media (max-width: 768px) {
    .contacts__heading {
        font-size: 28px;
    }
}
.contacts__descs {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.contacts__desc {
    font-size: 18px;
    color: #1A1A1A;
    opacity: 0.8;
}
.contacts__propositions {
    color: #ffffff;
    font-weight: 500;
    padding: 21px 20px;
    background: #001F3F;
    border-radius: 12px;
    display: inline-block;
    text-align: center;
}
.contacts__propositions:hover {
    color: #ffffff;
}
.contacts__contact-us {
    color: #1A1A1A;
    opacity: 0.5;
    font-size: 18px;
    padding-bottom: 25px;
}
.contacts__blocks {
    display: flex;
    column-gap: 20px;
    row-gap: 20px;
    width: 100%;
}
@media (max-width: 1400px) {
    .contacts__blocks {
        flex-direction: column;
    }
}
@media (max-width: 768px) {
    .contacts__blocks {
        flex-direction: column;
    }
}
.contacts .contacts-block {
    border-radius: 8px;
    border: 1px solid #001F3F;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    flex: 50%;
}
.contacts__phone {
    background-color: #001F3F;
    flex: 53% !important;
}
.contacts__phone-label {
    color: #ffffff;
    font-size: 14px;
    opacity: 0.8;
}
.contacts__phone-anchor {
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    display: flex;
    column-gap: 10px;
    align-items: center;
}
.contacts__phone-anchor:hover {
    color: #ffffff;
}
@media (max-width: 768px) {
    .contacts__phone-anchor {
        font-size: 20px;
    }
}
.contacts__social-label {
    color: #1A1A1A;
    font-size: 14px;
    opacity: 0.5;
}
.contacts__social-links {
    display: flex;
    column-gap: 10px;
}
.contacts__social-link {
    border-radius: 50%;
    border: 1px solid #001F3F;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contacts__social-link svg, .contacts__social-link path {
    filter: brightness(0) saturate(100%) invert(10%) sepia(46%) saturate(2270%) hue-rotate(186deg) brightness(98%) contrast(105%);
}
.sc-breadcrumb {
    display: flex;
    flex-wrap: wrap;
}

.breadcrumb-item {
    font-size: 14px !important;
}
.breadcrumb-item a {
    text-decoration: none;
    color: #001F3F !important;
}

.sc-breadcrumb-item + .sc-breadcrumb-item::before {
    content: "/";
    background: none;
    height: auto;
}

.posts {
    padding-bottom: 20px;
}
.posts__title {
    color: #001F3F !important;
}
@media (max-width: 768px) {
    .posts__title {
        font-size: 32px !important;
    }
}
.posts__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 25px;
    column-gap: 20px;
    row-gap: 20px;
}
.posts__categories {
    display: flex;
    column-gap: 15px;
    position: relative;
    height: 32px;
}
.posts__categories::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(0, 31, 63, 0.062745098);
}
@media (max-width: 768px) {
    .posts__categories {
        overflow-x: scroll;
        overflow-y: hidden;
    }
}
.posts__category {
    display: flex;
    column-gap: 5px;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    white-space: nowrap;
}
.posts__category:hover, .posts__category:focus, .posts__category.active {
    border-bottom: 2px solid #001F3F;
}
.posts__category:hover .posts__category-title, .posts__category:focus .posts__category-title, .posts__category.active .posts__category-title {
    opacity: 1;
}
.posts__sort .cat-sort-items {
    top: 30px !important;
}
@media (max-width: 576px) {
    .posts__sort .cat-sort-wrapper {
        width: 100%;
    }
    .posts__sort .open-sort-list {
        width: 100%;
        justify-content: space-between;
        display: flex;
    }
    .posts__sort .cat-sort-items {
        top: 50px !important;
    }
}
.posts__category-title {
    color: #1A1A1A;
    opacity: 0.3;
    transition: 0.1s;
}
.posts__category-count {
    color: #1A1A1A;
    opacity: 0.3;
}
.posts__post {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 7px;
}
.posts__post-img-link {
    width: 100%;
    display: block;
    height: fit-content;
    overflow: hidden;
    border-radius: 12px;
}
.posts__post-img-link:hover .posts__post-img {
    transform: scale(1.3);
}
.posts__post-img {
    height: 285px;
    object-fit: cover;
    border-radius: 12px;
    transition: 0.6s;
}
.posts__post-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.posts__post-title {
    font-size: 20px;
    font-weight: 500;
    color: #001F3F;
    padding-right: 20px;
}
.posts__post-date {
    font-size: 14px;
    color: #1A1A1A;
    opacity: 0.5;
}

.blog-article-new h1 {
    font-size: 32px;
    color: #001F3F;
    line-height: 1.3;
}
.blog-article-new .sc-blog-post-info {
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: none;
}
.blog-article-new .sc-blog-post-info-item span {
    color: #C0C0C0;
    font-size: 14px;
    font-weight: 500 !important;
}
.blog-article-new .sc-blog-post-info-item-date:before {
    background: none !important;
    margin: 0;
    width: 0;
}
.blog-article-new .sc-blog-post-info-item-views:before {
    background: url(/catalog/view/theme/oct_showcase/img/sprite-2.svg) no-repeat;
}
.blog-article-new .content-block {
    border-radius: 12px;
}
.blog-article-new .sc-blog-post-info {
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 20px;
}
.blog-article-new .img-fluid {
    border-radius: 12px;
}
.blog-article-new h2 {
    margin: 15px 0 10px;
    color: #001F3F;
}
.blog-article-new .content-block p {
    color: #1A1A1A;
    font-size: 16px;
}
.blog-article-new li {
    font-size: 16px;
}
.blog-article-new .sc-account-row {
    margin-top: 20px;
}
@media (max-width: 768px) {
    .blog-article-new .sc-page-title {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}
@media (max-width: 768px) {
    .blog-article-new .sc-blog-post-info-item:not(:last-child) {
        margin-bottom: 1rem;
    }
}
.blog-article-new .sc-last-news-item .content-block {
    background-color: transparent;
}
.blog-article-new .sc-module-header {
    font-size: 20px !important;
    margin-top: 30px !important;
    color: #001F3F;
}
.blog-article-new .slick-arrow {
    width: 56px;
    height: 56px;
    background-color: #fff;
}
.blog-article-new .news-title-km {
    color: #001F3F;
}
@media (max-width: 768px) {
    .blog-article-new .sc-module {
        background: transparent;
    }
}
.blog-article-new .custom-new-module-wrapper {
    padding: 0 16px;
}

@media (max-width: 768px) {
    .km-modif-product-moudle {
        margin-top: 30px !important;
    }
}
.km-modif-product-moudle .sc-module-img a img {
    height: 430px;
}
@media (max-width: 768px) {
    .km-modif-product-moudle .sc-module-img a img {
        height: 260px;
    }
}

.custom-new-module-wrapper .km-modif-product-moudle-list .slick-custom-arrow {
    width: 56px;
    height: 56px;
    background-color: #fff;
    top: 40% !important;
}
.custom-new-module-wrapper .sc-module-title {
    font-size: 16px;
    font-weight: 500 !important;
}
.custom-new-module-wrapper .sc-module-model {
    font-size: 16px !important;
}
@media (max-width: 768px) {
    .custom-new-module-wrapper .sc-module-model {
        font-size: 12px !important;
    }
}
.custom-new-module-wrapper .km-price-regular {
    font-weight: 500 !important;
}
.custom-new-module-wrapper .km-modif-product-moudle-list .slick-arrow:hover {
    background-color: #001F3F !important;
}
.custom-new-module-wrapper .km-modif-product-moudle-list .slick-arrow:hover svg path {
    stroke: #fff;
}
@media (max-width: 768px) {
    .custom-new-module-wrapper .km-grid-add-to-cart svg path {
        stroke: #001F3F !important;
    }
}
.custom-new-module-wrapper .sc-module-header {
    font-size: 20px !important;
    font-weight: 500 !important;
    color: #001F3F;
}
@media (max-width: 768px) {
    .custom-new-module-wrapper .sc-module-header {
        line-height: 22px;
        margin-bottom: 30px;
    }
}
.custom-new-module-wrapper .sc-module {
    background: transparent;
}
@media (max-width: 768px) {
    .custom-new-module-wrapper .sc-module .sc-module-img button {
        background: rgba(250, 250, 250, 0.7019607843);
    }
}
.custom-new-module-wrapper .content-block {
    background-color: transparent !important;
}
.custom-new-module-wrapper .sc-btn.added svg path {
    stroke: #bbbbbb !important;
}


#information-information {
    background-color: #FAFAFA;
}

.heading_title {
    font-size: 32px;
    font-weight: 500;
    color: #001F3F;
}

.methods {
    padding-top: 30px;
}
.methods__title {
    font-size: 28px;
    font-weight: 500;
    color: #001F3F;
    padding-bottom: 20px;
}
.methods__method {
    min-height: 332px;
}
.methods__method-inner {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px;
    min-height: 320px;
    height: 100%;
}
@media (max-width: 1800px) {
    .methods__method-inner {
        min-height: 350px;
    }
}
@media (max-width: 1440px) {
    .methods__method-inner {
        min-height: 370px;
    }
}
@media (max-width: 992px) {
    .methods__method-inner {
        min-height: 380px;
    }
}
@media (max-width: 576px) {
    .methods__method-inner {
        min-height: 320px;
    }
}
.methods__method-title {
    font-size: 20px;
    font-weight: 500;
    color: #001F3F;
    padding: 20px 0;
}
@media (max-width: 768px) {
    .methods__method-title {
        font-size: 24px;
    }
}
.methods__method-list {
    padding-left: 25px;
}
.methods__method-list-item {
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 12px;
}
.methods__method-list-item .text-delivery-place {
    color: #407CB2;
}
.methods__method-list-item .text-payment {
    color: #009924;
}
.methods__method-details-btn {
    background-color: transparent;
    color: #407CB2;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    column-gap: 10px;
    margin-top: 15px;
}
.methods__method-details-btn > .sc-btn-icon {
    transition: 0.3s;
    transform: scale(0.6);
    filter: brightness(0) saturate(100%) invert(46%) sepia(76%) saturate(382%) hue-rotate(167deg) brightness(84%) contrast(91%);
}
.methods__method-details-btn > .sc-btn-icon.clicked {
    transform: rotate(180deg) scale(0.6);
}
.methods__method-details {
    color: #001F3F;
    font-weight: 500;
    display: none;
}
.methods__method-details-list {
    margin-top: 20px;
    padding-left: 25px;
}
.methods__method-details-list-item {
    padding-bottom: 15px;
}

.payments {
    padding-top: 35px;
    padding-bottom: 50px;
}
.payments__title {
    font-size: 28px;
    font-weight: 500;
    color: #001F3F;
    padding-bottom: 5px;
}
.payments__method-inner {
    padding: 20px;
    border-radius: 12px;
    background-color: #ffffff;
}
.payments__method-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.payments__method-title-wrapper > .sc-btn-icon {
    transform: scale(0.5);
    transition: 0.3s;
    filter: brightness(0) saturate(100%) invert(46%) sepia(76%) saturate(382%) hue-rotate(167deg) brightness(84%) contrast(91%);
    width: 29px;
    height: 23px;
    margin-bottom: 10px;
    display: inline-block;
}
.payments__method-title-wrapper > .sc-btn-icon.clicked {
    transform: rotate(180deg) scale(0.5);
}
.payments__method-title {
    font-size: 24px;
    font-weight: 500;
    color: #001F3F;
    padding-bottom: 15px;
    width: 80%;
}
.payments__method-desc {
    border-top: 1px solid #ECECEC;
    padding-top: 15px;
    display: none;
    flex-direction: column;
    row-gap: 15px;
}
.payments__method-desc > div > div {
    padding-bottom: 10px;
}
.payments__method-desc > div > div > strong {
    font-size: 20px;
    font-weight: 500;
    color: #001F3F;
}
.payments__method-desc > div > p {
    font-size: 18px;
    color: #1A1A1A;
    padding-bottom: 10px;
    opacity: 0.8;
}

.payments__method-desc > div > div {
    font-size: 18px;
    color: #1A1A1A;
    padding-bottom: 10px;
    opacity: 0.8;
}

.payments__method-desc ul,
.payments__method-desc ul li
{
    font-size: 18px;
    color: #1A1A1A;
}

.payments__method-desc > div > ul {
    font-size: 18px;
    color: #1A1A1A;
    padding-bottom: 10px;
    opacity: 0.8;
}
.payments__method-desc > div > ul li {
    margin-left: 25px;
}


#information-information {
    background-color: #FAFAFA;
}

.heading_title {
    font-size: 32px;
    font-weight: 500;
    color: #001F3F;
}

.procedure {
    padding-top: 20px;
    padding-bottom: 15px;
}
.procedure__inner {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px;
}
.procedure__inner > .row {
    row-gap: 20px;
}
.procedure__heading {
    font-size: 24px;
    font-weight: 500;
    color: #001F3F;
    padding-bottom: 15px;
}
.procedure__desc {
    font-size: 18px;
    color: #1A1A1A;
    opacity: 0.8;
}
.procedure__blocks {
    display: flex;
    column-gap: 20px;
    row-gap: 20px;
    width: 100%;
}
@media (max-width: 1400px) {
    .procedure__blocks {
        flex-direction: column;
    }
}
@media (max-width: 768px) {
    .procedure__blocks {
        flex-direction: column;
    }
}
.procedure .contacts-block {
    border-radius: 8px;
    border: 1px solid #001F3F;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    flex: 50%;
}
.procedure__phone {
    background-color: #001F3F;
    flex: 53% !important;
}
.procedure__phone-label {
    color: #ffffff;
    font-size: 14px;
    opacity: 0.8;
}
.procedure__phone-anchor {
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    display: flex;
    column-gap: 10px;
    align-items: center;
}

@media screen and (max-width:1600px) {
    .procedure__phone-anchor{
        font-size: 22px;
    }
}

.procedure__phone-anchor:hover {
    color: #ffffff;
}
@media (max-width: 768px) {
    .procedure__phone-anchor {
        font-size: 20px;
    }
}
.procedure__social-label {
    color: #1A1A1A;
    font-size: 14px;
    opacity: 0.5;
}
.procedure__social-links {
    display: flex;
    column-gap: 10px;
}
.procedure__social-link {
    border-radius: 50%;
    border: 1px solid #001F3F;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.procedure__social-link svg, .procedure__social-link path {
    filter: brightness(0) saturate(100%) invert(10%) sepia(46%) saturate(2270%) hue-rotate(186deg) brightness(98%) contrast(105%);
}

.accordions {
    padding-bottom: 40px;
}
.accordions__method-inner {
    padding: 20px;
    border-radius: 12px;
    background-color: #ffffff;
}
.accordions__method-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.accordions__method-title-wrapper > .sc-btn-icon {
    transform: scale(0.5);
    transition: 0.3s;
    filter: brightness(0) saturate(100%) invert(46%) sepia(76%) saturate(382%) hue-rotate(167deg) brightness(84%) contrast(91%);
    width: 29px;
    height: 23px;
    margin-bottom: 10px;
    display: inline-block;
}
.accordions__method-title-wrapper > .sc-btn-icon.clicked {
    transform: rotate(180deg) scale(0.5);
}
.accordions__method-title {
    font-size: 24px;
    font-weight: 500;
    color: #001F3F;
    padding-bottom: 15px;
    width: 95%;
}
.accordions__method-desc {
    border-top: 1px solid #ECECEC;
    padding-top: 15px;
    display: none;
    flex-direction: column;
    row-gap: 15px;
}
.accordions__method-desc > div > div {
    padding-bottom: 10px;
}
.accordions__method-desc > div > div > strong {
    font-size: 20px;
    font-weight: 500;
    color: #001F3F;
}
.accordions__method-desc > div > p {
    font-size: 18px;
    color: #1A1A1A;
    padding-bottom: 10px;
    opacity: 0.8;
}
.accordions__method-desc > div > ul {
    font-size: 18px;
    color: #1A1A1A;
    padding-bottom: 10px;
    opacity: 0.8;
}
.accordions__method-desc > div > ul li {
    margin-left: 25px;
}

#mono_checkout_cart_page{
    margin-top: 15px!important;
}

.produc-page-h1{
    margin-bottom: 10px;
}

.compare-page {
    padding-top: 20px;
    color: #001F3F;
}
.compare-page .slick-slide {
    margin-right: 0;
}
.compare-page .breadcrumb {
    display: flex;
    column-gap: 10px;
    font-size: 14px;
    font-weight: 400;
}
.compare-page .breadcrumb a {
    color: #001F3F;
}
.compare-page .breadcrumb span {
    color: #1A1A1A;
    opacity: 0.5;
}
.compare-page .custom-main-heading {
    font-size: 32px;
    font-weight: 500;
    color: #001F3F;
    padding-bottom: 15px;
}
.compare-page .custom-clear-all-btn {
    color: #407CB2;
    font-weight: 500;
    font-size: 16px;
    background: transparent;
    transition: 0.1s;
}
.compare-page .custom-clear-all-btn:hover {
    color: #001f3f;
}
.compare-page .sc-btn-with-icon:hover svg {
    filter: brightness(0) saturate(100%) invert(89%) sepia(62%) saturate(2%) hue-rotate(14deg) brightness(116%) contrast(100%);
}
.compare-page .slick-arrow.next {
    border-right: 1px solid #e5e5e5;
}
.compare-page .compare_top {
    row-gap: 20px;
}
.compare-page .categories-wrapper {
    column-gap: 30px;
    row-gap: 10px;
}
.compare-page .categories {
    display: flex;
    column-gap: 15px;
    position: relative;
    height: 32px;
}
.compare-page .categories::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(0, 31, 63, 0.062745098);
}
@media (max-width: 768px) {
    .compare-page .categories {
        overflow-x: scroll;
        overflow-y: hidden;
    }
}
.compare-page .category {
    display: flex;
    column-gap: 5px;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    white-space: nowrap;
}
.compare-page .category span {
    color: #1A1A1A;
    opacity: 0.3;
}
.compare-page .category:hover, .compare-page .category:focus, .compare-page .category.active {
    border-bottom: 2px solid #001F3F;
}
.compare-page .category:hover span, .compare-page .category:focus span, .compare-page .category.active span {
    opacity: 1;
}
.compare-page .category-count {
    color: #001F3F;
    opacity: 0.3 !important;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
}
.compare-page .nav-tabs {
    border-bottom: none;
}
.compare-page .tab-content {
    margin-top: 30px;
    max-width: 858px;
}
.compare-page .tab-pane {
    border: 1px solid #e5e5e5 !important;
    border-right: none !important;
}
.compare-page .compare_main_slider_block {
    top: 57px;
}
.compare-page .attribute_title {
    font-size: 18px;
    font-weight: 500;
    color: #001F3F;
    border-right: 1px solid #e5e5e5;
}
.compare-page .attribute_value span {
    font-size: 18px;
}
.compare-page .attribute_value span:not(.not_diff) {
    color: #001F3F;
}
.compare-page .pull-right span {
    font-size: 16px;
    color: #001F3F;
    font-weight: 500;
}
.compare-page .product-item {
    row-gap: 20px;
    padding: 15px 25px;
    align-items: flex-start;
}
.compare-page .product-item * {
    text-align: left;
}
@media (max-width: 768px) {
    .compare-page .product-item {
        padding: 12px 7px;
    }
    .cl-launcher{
        left: 10px!important;
        bottom: 65px!important;
    }

    .contact-popup{
        bottom: 65px!important;
    }
}
.compare-page .image a {
    display: block;
    max-width: 240px;
    max-height: 220px;
    overflow: hidden;
    border-radius: 15px;
}
.compare-page .img-responsive {
    object-fit: cover;
    transition: 0.3s;
}
.compare-page .caption {
    row-gap: 5px;
}
.compare-page .caption a {
    color: #001F3F;
    font-size: 16px;
    font-weight: 500;
}
.compare-page .custom-product-sku {
    color: #1A1A1A;
    font-size: 12px;
    font-weight: 400;
    opacity: 0.5;
}
.compare-page .price {
    margin-top: 10px;
}
.compare-page .price-span {
    color: #001F3F !important;
    font-size: 16px;
    font-weight: 500;
    opacity: 1 !important;
}
.compare-page .price-usdt {
    color: #1A1A1A;
    opacity: 0.7;
}
.compare-page .button-group {
    display: flex;
    right: 0;
    top: 0;
    flex-direction: column !important;
    row-gap: 5px;
    padding: 7px;
    width: fit-content;
}
.compare-page .button-group .sc-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 12px !important;
    background-color: rgba(250, 250, 250, 0.4392156863);
}
.compare-page .button-group .sc-btn:hover > .sc-btn-icon, .compare-page .button-group .sc-btn.added > .sc-btn-icon {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7469%) hue-rotate(301deg) brightness(110%) contrast(93%);
}
.compare-page .button-group .sc-btn-icon {
    filter: brightness(0) saturate(100%) invert(11%) sepia(22%) saturate(4070%) hue-rotate(184deg) brightness(100%) contrast(105%);
}

.cl-launcher .cl-launcher-inner-content sys-container-static{
    background: rgb(0 31 63)!important;
}

#content-account-password,
#content-notif,
#content-wishlist,
#account-forgotten,
#account-order
{
    padding-bottom: 25px;
}

.sc-livesearch-list .km-price-regular {
    font-size: 14px!important;
}
.sc-livesearch-list .sc-module-price-km-usdt {
    font-size: 14px;
}

.sc-product-content-reviews-item + .sc-product-content-reviews-item{
    padding-bottom: 1rem;
}

.header-buttons-account{
    text-align: center;
}

.sc-btn-secondary:not([disabled]).clicked {
    background: #001f3f;
}

@media screen and (max-width:330px) {
    .open-sort-list{
        padding: 9px 7px;
    }

    .cat-sort-wrapper .sort-arrow{
        margin-left: 4px;
    }
}

.km-category-products .km-grid-add-to-cart svg path{
    stroke: #fff;
}

#product-product{
    background: #fafafa;
}

.sc-product-actions{
    background: unset;
}

.sc-product-attr-list-item:nth-child(even){
    background: #fafafa!important;
}

.sc-product-tab+.sc-product-tab{
    background: #fafafa;
}

.sc-product-tab{
    background: #fafafa;
}

.sc-module-home-km{
    padding-bottom: 0px!important;
}

#column-left .ocf-theme-light .ocf-search-btn-popover{
    background-color: #001f3f;
}
#column-left .ocf-theme-light .ocf-search-btn-popover:hover{
    background-color: #002954;
}

.sc-module-sticker {
    text-transform: none;
}

.bottom-buttons{
    display: flex;
    grid-gap: 15px;
    justify-content: center;
    margin-top: 50px;
}

.bottom-buttons-cabinet{
    color: #fff;
    background: #001F3F;
    padding: 24px;
    text-align: center;
}

.bottom-buttons-home{
    color: #001F3F;
    background: #ECECEC;
    padding: 24px;
    text-align: center;
}

.success-top-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 48px;
}

.success-top-title{
    font-size: 32px;
    color: #001F3F;
    margin-bottom: 16px;
    text-align: center;
}

.success-top-subtitle{
    font-size: 14px;
    color: #001F3F;
    text-align: center;
}

@media (max-width: 500px) {
    .bottom-buttons{
        flex-direction: column;
    }
}


#sc_livesearch_close{
    background-color: #001F3F;;
}

.cl-launcher{
    z-index: 100!important;
}

#button-ukrcredits{
    /*display:none*/
    background-color: transparent;
}

.product-second-line{
    display: flex;
}

.product-third-line{
    display: flex;
}

.product-second-line-1{
    max-width: calc(50% - 13px);
    width: 100%;
}

.product-second-line-2{
    display: flex;
    padding: 25px 0;
    width: 100%;
}

.product-second-line-3{
    display: flex;
    padding: 25px 0;
    width: 100%;
    max-width: 42px;
}

.product-second-line-2 button{
    width: 100%;
    border-radius: 8px!important;
}

.product-second-line-2 button{
    background: #000;
    max-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.product-second-line-2 button:hover{
    background: #001f3f!important;
}


.product-second-line-2 button span{
    color: #fff!important;
}


@media (max-width: 1400px) {
    .detail-product-info #oct_purchase_byoneclick_form_product {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .product-second-line-2 button {
        margin-top: 20px;
    }
    .product-second-line-3>div {
        margin-top: 20px;
    }
}
@media (max-width: 991px) {
    .product-second-line-1{
        max-width: unset;
    }

    .product-second-line-2{
        padding: 0;
        align-items: flex-end;
    }
    .sc-buy-one-click{
        padding-bottom: 0!important;
    }
    .product-second-line-2 button{
        width: 100%!important;
    }

    .product-second-line{
        margin-bottom: 15px;
        margin-top: 15px;
        grid-gap: 20px;
    }

    .product-third-line{
        margin-bottom: 15px;
        margin-top: 15px;
        grid-gap: 20px;
    }

    #button-ukrcredits{
        margin-left: 0;
    }


    .sc-product-actions .sc-buy-one-click{
        padding: 0!important;
        border: 0;
    }

    .sc-product-actions .sc-buy-one-click .form-control{
        max-width: unset;
    }

    #product #mono_checkout_product_page{
        width: 50%;
    }

    #product #button-cart{
        width: 50%;
    }

    #product .sc-product-buttons{
        grid-gap: 20px;
    }
}

@media (max-width: 460px) {
    .product-images-grid .oct-gallery{
        max-width: 100%;
        aspect-ratio: unset;
    }

    .product-images-grid .oct-gallery img{
        height: auto;
    }

}
@media (max-width: 999px) {
    #content #productImages.col-md-6,
    #content #product.col-md-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }
}

.bundle_footer_prices.price-bottom{
    display: flex;
    align-items: flex-end;
}

.bundle_footer_prices.price-bottom .bundle_footer_comp_price{
    color: #1c1c28;
}


/* Product page */
.sc-product-fixed-cart-btn.fixed-btn {
    display: inline-block;
    width: 100%;
    max-width: none !important;
    flex-grow: 1 !important;
}

#sc_sidebar_content .sc-btn-icon.sc-btn-icon-chevron {
    background: #fff !important;
    width: 10px;
    height: 10px;
}


/* Ви дивилися фікси */

.sidebar-main-menu-item-viewed .sc-module-img {
    max-width: none !important;
}
.sidebar-main-menu-item-viewed .sc-module-caption {
    max-width: none !important;
}

.mobile-visible-block{
    display:none!important;
}

@media (max-width: 767px) {
    #button-ukrcredits {
        margin-left: 0;
    }
    .product-second-line-2 button {
        margin-top: 0;
    }

    #product #button-cart{
        width: 100%;
    }


    .mobile-visible-block{
        display:flex!important;
    }

    .mobile-hide{
        display: none!important;
    }
}

#product #mono_checkout_product_page.custom {
    height: 48px;
}

@media (min-width: 767px) {
    #mono_checkout_product_page.custom {
        display: none;
    }
}

.sc-product-one-click-btn .buy-1-click-text-load {
    display: none;
}
.sc-product-one-click-btn:disabled {
    cursor: not-allowed;
}

#modalCartBody .alert-text-item {
    padding-top: 30px;
}

#modalCartBody button.sc-btn-secondary {
    width: 50% !important;
    margin: 0 auto;
    color: white;
}

.alert-block .sc-alert-text a:first-child {
    /* display: none; */
    text-decoration: none;
    pointer-events: none;
    color: #1c1c28;
    font-size: 13px;
}

@media (max-width: 576px) {

    /* .alert-block .sc-alert-text::first-letter {
        text-transform: uppercase;
    }

    .alert-block .sc-alert-success {
        min-height: 70px;
        height: 70px;
    }
    .alert-block .sc-alert-icon {
        min-height: 70px;
        height: 73px;
    } */
}

a.hpm-button,
span.hpm-button {
    padding: 0;
    border-radius: 50%;
    border: 2px solid #f2f4f8;
    border-color:#f2f4f8;
    padding: 2px;
}

.column-custom3{
    display: flex;
    align-items: center;
    /*border-bottom: 1px solid #f2f4f8;*/
    margin-top: 10px;
    /*padding-bottom: 10px;*/
    margin-bottom: 10px;
    flex-direction: column;
    align-items: flex-start;
}

.column-custom3 h4{
    margin-top: 0;
    margin-right: 10px;
}

a.hpm-button img,
span.hpm-button img{
    border-radius: 50%;
    border: 1px solid #e1e4e7;
}

.hpm-button.active{
    border-color: #b1b1b1;
}

.hpm-button:hover:not(.active){
    border-color: #f2f4f8;
}



@media (max-width: 768px) {
    .contact-popup{
        display:none;
    }
    .cl-launcher{
        display:none;
    }
}

.product-grid .column-custom3 h4{
    display: none;
}

.hpm-block-cat .hpm-button{
    padding: 2px;
}

.hpm-block-cat .hpm-button.active{
    border-color: #001f3f;
}

.product-grid .column-custom3{
    border: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.product-grid .hpm-block-cat{
    display: flex !important;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.sc-megamenu.with-slideshow .sc-megamenu-list-item>.sc-megamenu-child:before{
    content: ' ';
    position: absolute;

}

.product-grid .hpm-block-cat .hpm-button{
    padding: 0;
}

@media screen and (max-width:520px) {
    .product-grid .hpm-block-cat{
        justify-content: flex-start;
        margin-left: 15px;
        margin-bottom: 3px;
    }
}

.column-attr_256{
    display: flex;
    flex-direction: column;
}

.column-attr_256 a.hpm-button, .column-attr_256 span.hpm-button{
    border-radius: 8px;
    padding: 5px 10px;
    margin: 0;
}

.column-attr_256 span.hpm-button.active{
    background: #001f3f;
    color: #fff;
    border-color: #001f3f;
}
.column-attr_256 h4{
    margin-bottom: 10px;
}

.column-attr_256 .hpm-button-wrapper{
    display: flex;
    flex-wrap: wrap;
    grid-gap: 5px;
}

.sc-product-actions-middle .hpm-block{
    border-bottom: 1px solid #f2f4f8;
    padding-bottom: 10px;
}

.sc-product-info.sc-product-info-top{
    grid-gap: 7px;
    flex-wrap: wrap;
}


@media screen and (max-width:767px) {
    .product-grid .column-custom3{
        margin: 0;
    }

    .product-grid .hpm-block-cat .hpm-button-wrapper{
        display: flex;
        flex-wrap: wrap;
    }

    .product-grid .hpm-block-cat .hpm-button{
        border: 1px solid #f2f4f8;
    }

    .product-grid .hpm-block-cat{
        bottom: -30px;
        justify-content: center;
        margin: 0;
    }

    .product-grid.collections-link .sc-module-caption{
        margin-top: 25px;
    }

    .product-grid .hpm-button-wrapper > *:nth-child(n+6) {
        display: none;
    }

}
@media (max-width: 767.98px) {

    .product-grid .sc-module-model {
        display: none;
    }
}

#language .mobile-info-title{
    display: none;
}


@media screen and (min-width:1000px) and (max-width:1199px) {
    #product #mono_checkout_product_page{
        width: 50%;
        font-size: 0;
    }
    #product #button-cart{
        width: 50%;
    }
    .sc-product-actions .sc-buy-one-click{
        border: 0;
    }

    .product-second-line{
        grid-gap: 7px;
    }

    #button-ukrcredits{
        margin-left: 0;
    }
}

.menu-bold{
    font-weight: bold!important;
}

.menu-italic{
    font-style: italic;
}



@media (max-width: 768px) {

    .km-modif-product-moudle-list-viewed {
        display: flex;
        flex-wrap: wrap;
        grid-gap: 15px;
        padding-top: 15px;
        justify-content: space-between;
    }


    .km-modif-product-moudle-list-viewed .sc-module-item {
        max-width: calc(33% - 15px);
        width: 100%;
    }


    .km-modif-product-moudle-list-viewed .sc-module-item .sc-module-price-box {
        margin-top: 0 !important;
    }

    .sidebar-main-menu-item-viewed .km-modif-product-moudle-list-viewed .sc-module-caption {
        justify-content: flex-start !important;
    }
    .km-modif-product-moudle-list-viewed .sc-module-img a img{
        padding: 3px;
    }
}

@media (max-width: 545px) {

    .km-modif-product-moudle-list-viewed {
        display: flex;
        flex-wrap: wrap;
        grid-gap: 15px;
    }


    .km-modif-product-moudle-list-viewed .sc-module-item {
        max-width: calc(50% - 15px);
        width: 100%;
    }
}

.column-attr_256 .hpm-button-wrapper .hpm-button.out-stock{
    filter: brightness(0.92);
}

.column-attr_256 .hpm-button-wrapper .hpm-button.out-stock:before{
    border-color: #dfe0e4;
}

.product-grid .hpm-block-cat .hpm-button:nth-child(n+8) {
    display: none;
}

@media (max-width: 991px) {
    .product-grid .hpm-block-cat .hpm-button:nth-child(n+6) {
        display: none;
    }
}

@media (min-width: 601px) and (max-width: 640px) {
    .product-grid .hpm-block-cat .hpm-button:nth-child(n+5) {
        display: none;
    }
}

@media (max-width: 601px) {
    .product-grid .hpm-block-cat .hpm-button:nth-child(n+6) {
        display: none;
    }
}

@media (max-width: 400px) {
    .product-grid .hpm-block-cat .hpm-button:nth-child(n+5) {
        display: none;
    }
}




@media (min-width: 601px) and (max-width: 640px) {
    .product-grid.km-modif-product-moudle-list .hpm-block-cat .hpm-button:nth-child(n+4) {
        display: none;
    }
}

@media (max-width: 601px) {
    .product-grid.km-modif-product-moudle-list .hpm-block-cat .hpm-button:nth-child(n+5) {
        display: none;
    }
}

@media (max-width: 400px) {
    .product-grid.km-modif-product-moudle-list .hpm-block-cat .hpm-button:nth-child(n+4) {
        display: none;
    }
}



#button-reward{
    color: #fff;
    background: #001f3f;
    border-radius: 8px!important;
}

#button-reward:hover{
    opacity: .9;
}

#checkout-cart .sc-cart-actions-block-reward{
    display:none;
}

.product-grid .hpm-block img{
    max-width: 25px;
    max-height: 25px;
}

.product-grid a.hpm-button{
    width: 29px;
}

.coupon-notice{
    margin-top: 20px;
    color: #1c1c28;
    background: #f8f9fa;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    font-weight: 500;
}

#hello-discount{
    position: fixed;
    z-index: 10000;
    bottom: 60px;
    right: -400px;
    background: #fff;
    max-width: 350px;
    padding: 15px;
    font-size: 19px;
    border-radius: 8px 0 0 8px;
    box-shadow: 0px 0px 5px -2px #696969;
    transition: .5s;
}

#hello-discount.active{
    right: 0px;
}

#hello-discount-close .modal-cart-close{
    position: absolute;
    top: -15px;
    right: -10px;
    background-size: 50%;
}

.data-filter-id-256-2-1{
    max-height: 270px;
    overflow: scroll;
}


#slideshow-plus-0.sc-slideshow-plus-block.slick-initialized >div:nth-child(2) {
    display: block;
}


.sc-slideshow-plus-block .slick-slider-btn-prev{
    left: -20px;
}
.sc-slideshow-plus-block .slick-slider-btn-next{
    right: -20px;
}

.sc-slideshow-plus-block .slick-slider-btn-prev,
.sc-slideshow-plus-block .slick-slider-btn-next{
    display: block;
    font-size: 0;
    width: 40px;
    height: 40px;
    background-color: #f0f1f2;
    /*opacity: 0;*/
    border-radius: 12px!important;
}
.sc-slideshow-plus-block .slick-slider-btn-prev span,
.sc-slideshow-plus-block .slick-slider-btn-next span{
    background: #001F3F;
}

@media (max-width: 991px) {
    .sc-slideshow-plus-block .slick-slider-btn-prev{
        left: 5px;
    }
    .sc-slideshow-plus-block .slick-slider-btn-next{
        right: 5px;
    }
}


/*@media (min-width: 768px) {*/
/*    .header-search {*/
/*        padding-left: 0px;*/
/*    }*/

/*    .header-custom-padding{*/
/*        padding: 0 30px;*/

/*    }*/
/*}*/

/*@media (min-width: 991px) {*/
/*    .header-custom-padding{*/
/*        padding: 0 60px;*/
/*        max-width: 960px;*/
/*    }*/
/*}*/

/*@media (min-width: 1024px) {*/
/*    .header-custom-padding{*/
/*        padding: 0 60px;*/

/*    }*/
/*}*/

/*@media (min-width: 1200px) {*/
/*    .header-custom-padding{*/
/*        padding: 0 60px;*/
/*        max-width: unset;*/
/*    }*/
/*}*/

.sc-megamenu-children-title span{
    font-size: 14px;
}

.product-quanitity-1:hover path{
    transition: .1s;
    stroke: #d03131;
    fill: #d03131;
}

.oct-checkout-block[data-delivery-code="pickup.pickup"]{
    display:none
}




.oct-checkout .left-side-checkout .form-check-input:focus {
    box-shadow: unset!important;
}

.oct-checkout .left-side-checkout .form-check-input:checked::before {
    content: '';
    width: 12px;
    height: 12px;
    background-color: #001f3f;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 4px;
}

.oct-checkout .left-side-checkout .form-check-input{
    width: 22px;
    height: 22px;
    min-width: 22px;
}

.oct-checkout .left-side-checkout .form-check-input:checked{
    background-image: unset;
    background-color: unset;
    border-color: #001f3f;
    position: relative;
}

.oct-checkout-block-title span{
    font-size: 20px;
}

.oct-checkout .form-check-label{
    font-size: 16px;
}

.oct-checkout-block p{
    font-size: 16px;
}

.shipping-method-box .form-check:not(:last-child){
    margin-bottom: 20px;
}

.shipping-method-icon[src*="novaposhta"] {
    width: 32px;
    height: 32px;
    padding: 5px;
    border-radius: 5px;
    box-sizing: border-box;
}

.shipping-method-icon {
    margin: 0 5px 0 0px;
    flex-shrink: 0;
}

.shipping-method-icon[src*="uklon"] {
    margin: 0 8px 0 4px;
}

.payment-method .form-check:not(:last-child){
    margin-bottom: 20px;
}

.color-gray{
    color: #8D8D8D;
}

.color-gray .required{
    display: none;
}

.delivery-price-block{
    color: #8D8D8D;
    font-weight: 500;
    margin-left: auto;
    font-size: 12px;
    letter-spacing: .7px;
    text-align: right;
}

.delivery-description {
    margin-left: 66px;
    margin-top: 15px;
}

.delivery-description svg{
    margin-right: 10px;
}

.oct-checkout .form-control{
    border-radius: 8px;
}

.oct-checkout .form-check-input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    min-width: 20px;
    max-width: 20px;
    width: 20px;
    height: 20px;
    border: 1px solid #001f3f;
    background-color: #fff;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    margin-right: 8px;
    background-image: unset;
}

/* Стиль для відміченого стану */
.oct-checkout .form-check-input[type="checkbox"]:checked {
    background-color: #001f3f;
}

/* Галочка через псевдоелемент */
.oct-checkout .form-check-input[type="checkbox"]:checked::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    border-radius: 0;
    background-color: unset;
}

.no_call_notice{
    margin-left: 28px;
}

#agree-block {
    padding-left: 0;
}
#agree-block #checkoutCheckbox{
    display: none;
}

#agree-block label{
    font-size: 11px;
}

#agree-block a{
    color: #001f3f;
    text-decoration: underline;
    font-size: 11px;
}

.checkout-cart-title {
    font-size: 24px;
    font-weight: 500;
}

.checkout-cart-edit{
    font-size: 16px;
    color: #407cb2;
    font-weight: 400;
}

.checkout-notice{
    margin: 25px 0;
    color: #8d8d8d;
    font-size: 14px;
}

.oct-checkout .sidebar-cart-item-title a{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.oct-checkout .popup-cart-item{
    border-bottom: 1px solid #e6e9ec;
    margin-bottom: 15px;
}

.oct-checkout .popup-cart-product-model{
    font-size: 12px;
}

.sc-livesearch-list .sc-module-price-box{
    padding-right: 0;
}

.oct-checkout-actions-total-item span,
.oct-checkout-actions-total-item:last-child span:not(.light-text){
    font-size: 14px;
    font-weight: normal!important;
}

.end-total span{
    font-size: 18px;
    font-weight: 500 !important;
    color: #001f3f
}

.end-total{
    /*margin: 20px 0;*/
    padding-top: 20px;
}

#registerCheckbox{
    max-width: 16px;
    min-width: 16px;
    width: 16px;
    max-height: 16px;
    min-height: 16px;
    height: 16px;
}

#registerCheckbox:before{
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
}

label[for="registerCheckbox"]{
    font-weight: 400!important;
}

.ml-a{
    margin-left: auto;
}


.header-menu-items ul li:last-of-type a{
    color: #d03131;
    font-weight: bold!important;

}
.header-menu-items ul li:last-of-type a:hover{
    border-color: #d03131;
}

#slideshow-plus-1.sc-slideshow-plus-block.slick-initialized >div:nth-child(2){
    display: block;
}

#slideshow-plus-1.sc-slideshow-plus-block .slick-slider-btn-prev,
#slideshow-plus-1.sc-slideshow-plus-block .slick-slider-btn-next{
    background: #f0f1f2!important;
    z-index: 90;
}

#slideshow-plus-1.sc-slideshow-plus-block .slick-slider-btn-prev:hover,
#slideshow-plus-1.sc-slideshow-plus-block .slick-slider-btn-next:hover{
    background: #001f3f!important;
    z-index: 90;
}

#slideshow-plus-1.sc-slideshow-plus-block .slick-slider-btn-prev span,
#slideshow-plus-1.sc-slideshow-plus-block .slick-slider-btn-next span{
    background: #000 !important;
}

#slideshow-plus-1.sc-slideshow-plus-block .slick-slider-btn-prev:hover span,
#slideshow-plus-1.sc-slideshow-plus-block .slick-slider-btn-next:hover span{
    background: #fff !important;
}

#common-home .slick-dots{
    display: none!important;
}

.spin-load{
    display: none;
}

.spin-load-svg{
    width: 100%;
}


.spin-load-svg {
    animation: spin-slowdown 1.5s linear infinite;
    transform-origin: center;
}

@keyframes spin-slowdown {
    0% {
        transform: rotate(0deg);
    }
    35% {
        transform: rotate(180deg);
    }
    65% {
        transform: rotate(200deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


.sc-product-one-click-btn.loading .spin-load{
    display: block;
}
.sc-product-one-click-btn.loading .oneclickbuy-button-icon{
    display: none;
}


@media screen and (min-width:768px) {
    .price-popup-cart-button.popup-cart-button .km-grid-add-to-cart {
        display: none;
    }
}

.product-whitepay-info{
    height: 42px;
    border: 1px solid #e9efff;
    font-size: 14px;
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    border-radius: 8px;
    font-weight: 700;
    color: #001f3f !important;
}

.product-whitepay-info-svg{
    max-width: 24px;
}

.fixed-price .sc-module-price-km-usdt {
    display: none;
}

.product-whitepay-info-desktop{
    max-width: 42px;
    width: 100%;
    min-width: 42px;
}

.product-whitepay-info-desktop-popup{
    position: absolute;
    right: -2px;
    bottom: calc(100%);
    padding-bottom: 10px;
}

.product-thumbs-slider{
    display:none
}

.mobile-visible{
    display:none!important;
}

.desktop-visible{
    display:flex;
}

.breadcrumb-mobile-button{
    display: flex;
    align-items: center;
}
.breadcrumb-mobile-button svg{
    max-width: 24px;
    max-height: 24px;
}

.breadcrumb-mobile-button-carret{
    width: 24px;
    height: 24px;
}

.breadcrumb-mobile-last-item{
    font-weight: 500;
    color: #001f3f;
}

#breadcrumb-mobile{
    border-bottom: 1px solid #001F3F1A;
    padding-bottom: 5px;
}

.breadcrumb-mobile{
    padding-top: 11px;
}

.breadcrumb-mobile{
    position: relative;
    overflow: unset;
    z-index: 2;
}

.breadcrumb-mobile-dropdown{
    position: absolute;
    background: #ffffffc7;
    top: 23px;
    left: 12px;
    padding: 15px;
    backdrop-filter: blur(2px);
    border-radius: 5px;
    box-shadow: 0px 0px 5px 0px #d3d3d3;
    display: flex;
    flex-direction: column;
    grid-gap: 15px;
    visibility: hidden;
    z-index: -1;
}

.product-whitepay-info-desktop-popup-info{
    padding: 15px;
    backdrop-filter: blur(2px);
    border-radius: 5px;
    box-shadow: 0px 0px 5px 0px #d3d3d3;
    display: block;
    flex-direction: column;
    background: #ffffffc7;
    min-width: 200px;
    height: 0px;
    overflow: hidden;
    opacity: 0;
    transition: .1s;
    font-weight: 500;
}


.product-whitepay-info-desktop:hover .product-whitepay-info-desktop-popup-info{
    height: 72px;
    opacity: 1;
}

.product-whitepay-info-desktop-popup .product-whitepay-info-svg{
    width: 24px;
    height: 24px;
    min-height: 24px;
=======
display: flex;
    flex-direction: column;
    grid-gap: 15px;
    visibility: hidden;
    z-index: -1;
}

.breadcrumb-mobile.active .breadcrumb-mobile-dropdown{
    visibility: visible;
    z-index: 1;
}
#breadcrumb-mobile{
    padding-left: 15px;
}

.breadcrumb-mobile-button-img{
    margin-right: 5px;
}

.breadcrumb-mobile-button li a{
    font-size: 14px;
    text-decoration: none;
}


@media (max-width: 767px) {
    #productImages .swiper-slide a img{
        object-fit: contain;
        width: 100%;
        height: auto;
        max-height: 46vh;
    }

    .product-thumbs-slider{
        display:block;
        margin-top: 15px;
    }

    .product-thumbs-slider .swiper-slide img{
        aspect-ratio: 1 / 1;
        object-fit: contain;
        max-width: 60px;
        max-height: 60px;
    }

    /*.product-thumbs-slider .swiper-slide{*/
    /*    opacity: .33;*/
    /*    transition: .2s;*/
    /*}*/
    /*.product-thumbs-slider .swiper-slide.swiper-slide-thumb-active{*/
    /*    opacity: 1;*/
    /*}*/

    /*.product-thumbs-slider .swiper-slide.swiper-slide-active{*/
    /*    opacity: 1;*/
    /*}*/


    #product-product .produc-page-h1{
        font-size: 20px;
        line-height: 24px;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .breadcrumb.sc-breadcrumb{
        flex-wrap: nowrap;
    }

    .breadcrumb-item {
        display: none;
    }

    .breadcrumb-item:first-child,
    .breadcrumb-item:last-child {
        display: list-item;
    }

    .breadcrumb-item:last-child::before {
        content: "/  …   /";
        margin-right: 34px;
        color: #666;
    }

    .show-all .breadcrumb-item:last-child::before {
        content: "/";
        margin-right: 6px;
    }

    .breadcrumb.sc-breadcrumb.show-all .breadcrumb-item {
        display: block;
    }

    .sc-breadcrumb {
        padding-bottom: 5px;
    }

    .mobile-visible{
        display:flex!important;
    }
    .desktop-visible{
        display:none!important;
    }

    .mobile-hide{
        display: none!important;
    }

    .sc-product-tab{
        padding: 10px 0 10px 0;
    }

    .sc-product-tab-title {
        font-size: 12px!important;
    }

    .header-buttons .header-buttons-wishlist{
        display:none!important;
    }
    .header-buttons .header-buttons-compare{
        display:none!important;
    }
}

@media (max-width: 420px) {
    #product-product .produc-page-h1 {
        font-size: 16px;
        line-height: 20px;
    }

    .sc-product-tab{
        padding: 8px 0 8px 0;
    }


    .breadcrumb.sc-breadcrumb{
        padding-top: 5px;
    }

    #product .sc-product-actions{
        margin-top: 15px;
    }

    #product #button-cart{
        margin-top: 0;
    }

    .sc-product-actions-top-mobile{
        margin-top: 15px;
    }
    .body-product{
        padding-top: 90px;
    }
}
@media (min-width: 768px) {
    .product-images-slider .swiper-slide{
        max-width: calc(50% - 12px);
        width: 100%;
        aspect-ratio: 4 / 5;
    }

    .product-images-slider .swiper-wrapper{
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        grid-gap: 24px
    }

    #productImages .swiper-slide a img{
        width: 100%;
        height: 100%;
        object-fit: contain;
        background: #fff;
        border-radius: 12px;
    }

}

.body-product #oct-infobar{
    display: none!important;
}

.product-grid.km-modif-product-moudle-list .sc-module-caption .popup-cart-button .km-grid-add-to-cart{
    border: 1px solid #001f3f;
    background: #fff;
}

@media (max-width: 400px) {
    .product-grid.km-modif-product-moudle-list .sc-module-price-box .km-price-regular,
    .product-grid.km-modif-product-moudle-list .sc-module-price-box .km-price-special
    {
        font-size: 16px;
    }

    .km-modif-product-moudle .slick-slide{
        margin: 0 9px;
    }
    .product-grid.km-modif-product-moudle-list .sc-module-caption .popup-cart-button .km-grid-add-to-cart{
        min-width: 36px;
        min-height: 36px;
    }
}

@media (max-width: 350px) {
    .product-grid.km-modif-product-moudle-list .sc-module-price-box .km-price-regular,
    .product-grid.km-modif-product-moudle-list .sc-module-price-box .km-price-special
    {
        font-size: 14px;
    }
}

.popover-header{
    margin-top: 0;
    display: none;
}

.popover-body{
    padding-top: 15px!important;
    text-align: center;
}

.popover{
    min-width: 150px!important;
}

#productImages .sc-module-sticker{
    width: 100%;
    text-align: center;
}

.sc-category-products .sc-module-stickers .sc-module-sticker.sc-module-sticker-image{
    text-align: left;
}


.sc-module-sticker img{
    object-fit: contain;
    max-width: 105px;
}

.sc-module-sticker img{
    object-fit: contain;
    max-width: 105px;
    width: 100%;
    height: auto;
}

@media (max-width: 767px) {

    .sc-category-products .sc-module-stickers .sc-module-sticker.sc-module-sticker-image img{
        max-width: 75px;
        max-height: 75px;
    }
    .sc-category-products .sc-module-stickers .sc-module-sticker{
        padding: 6px 10px;
    }
}


@media (max-width: 450px) {
    .sc-category-products .sc-module-stickers .sc-module-sticker.sc-module-sticker-image{
        text-align: left;
    }

    .sc-category-products .sc-module-stickers .sc-module-sticker.sc-module-sticker-image img{
        max-width: 65px;
        max-height: 65px;
    }
    .sc-category-products .sc-module-stickers .sc-module-sticker{
        padding: 5px 5px;
    }
}

#home-brand-list .slick-initialized .slick-slide{
    display: flex;
}


.km-modif-product-moudle-list .sc-module-stickers .sc-module-sticker.sc-module-sticker-image{
    text-align: left;
}

.sc-module-sticker img.square-sticker-1{
    max-width: 64px;
}

#productImages .sc-module-sticker img{
    max-width: 105px;
}

#productImages .sc-module-sticker img.square-sticker-1{
    max-width: 64px;
}

@media (max-width: 768px) {

    .km-modif-product-moudle-list .sc-module-stickers .sc-module-sticker.sc-module-sticker-image img{
        max-width: 75px;
    }
}


@media (max-width: 450px) {
    .km-modif-product-moudle-list .sc-module-stickers .sc-module-sticker.sc-module-sticker-image{
        text-align: left;
    }

    .km-modif-product-moudle-list .sc-module-stickers .sc-module-sticker.sc-module-sticker-image img{
        max-width: 65px;
    }
}


@media (max-width: 768px) {
    .home-brnad-list-item-all{
        width: 110px;
        padding-left: 0px;
        padding-right: 0px;
    }

    .home-brnad-list-item{
        margin: 0 8px!important;
    }
}

@media (max-width: 550px) {
    .home-brnad-list-item img, .home-brnad-list-item svg{
        width: 85%;
    }
}

@media (max-width: 450px) {
    .home-brnad-list-item img, .home-brnad-list-item svg{
        width: 85%;
    }
}

.payment-info-wrapper {
    display: flex;
    grid-gap: 10px
}
.payment-info-wrapper img{
    width: 36px;
}

.payment-item-liqpay{
    margin-bottom: 0!important;
}

.cart-cards-item.content-block{
    padding: 8px!important;
}

.exp-info-detail *{
    font-size: 20px;
}

.payment-method-short-info{
    font-size: 14px;
    color: #8a8a8a;
    padding-left: 6px;
}

@media (max-width: 768px) {
    .oct-fastorder-payment {
        position: fixed;
        bottom: 0px;
        left: 0px;
        right: 0px;
        z-index: 15;
        padding: 0px 15px 15px;
        background: #fff;
        border-top: 1px solid #f2f4f8;
    }
}

.border-bottom-black{
    border-bottom: 1px solid #001f3f;
}

.filter-type-only .ocf-filter-km {
    display:none;
}
.filter-type-only .ocf-filter-km#ocf-filter-65-2-1 {
    display: block;
}

.ocf-filter-km-description {
    display:none
}
.filter-type-only .ocf-filter-km-description {
    display: block;
    padding-bottom: 15px;
    color: #001f3f;
    font-weight: 400;
}


.sc-slideshow-plus-specials .slick-list{
    margin: 0 -12px;
}

.sc-slideshow-plus-specials .popup-cart-item{
    padding: 15px!important;
    margin-left: 0;
    background: #fff;
    border-radius: 12px;
    margin: 0 12px;
}

.sc-slideshow-plus-specials .sidebar-cart-info{
    height: 100%;
}

.sc-slideshow-plus-specials .sidebar-cart-item-title{
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.sc-slideshow-plus-specials .sidebar-cart-item-title a{
    line-height: 1.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sc-slideshow-plus-specials .sidebar-cart-info .sc-module-cart-btn{
    background: #fff;
    border: 1px solid #001f3f;
    min-width: 40px;
    min-height: 40px;
    filter: unset;
    margin-left: auto;
}

.sc-slideshow-plus-specials .sidebar-cart-info .sc-module-price-km{
    align-items: center;
}

.sc-slideshow-plus-specials .slick-slider-btn{
    border: 0;
    background-color: #f0f1f2;
    border-radius: 8px !important;
}
.sc-slideshow-plus-specials .slick-slider-btn .sc-btn-icon{
    background: #001f3f;
}

.tmp-hidden{
    display:none
}

.sc-slideshow-plus-specials .popup-cart-item .price-wrapper{
    display: flex;
    grid-gap: 15px;
    align-items: center;
}

.button-wrapper{
    margin-left: auto;
}

@media (max-width: 767.98px) {
    .sc-slideshow-plus-specials .popup-cart-item{
        margin: 0 8px;
    }
    #home-brand-list{
        margin-top: 0;
    }
}

@media (max-width: 690px) {


    .sc-slideshow-plus-specials .pre-price-wrapper{
        align-items: flex-end;
    }

    .sc-slideshow-plus-specials .popup-cart-item .price-wrapper{
        flex-direction: column;
        grid-gap: 0;
        align-items: flex-start;
    }
    .sc-module-price-km .sc-module-price-km-usdt:before{
        display:none
    }
}

.home-module-block{
    margin-bottom: 50px;
}

.bundle_product_special{
    color: #D03131;
    font-weight: 500;
}

.bundle_product_price.linethrough{
    font-weight: 400;
}
.linethrough{
    text-decoration: line-through;
}

@media (max-width: 767.98px) {
    #common-home .slick-slider-btn {
        display: none!important;
    }
    .sc-subcategories-km {
        margin: 0 -8px;
    }
    .sc-subcategories-km .slick-track{
        margin: 0;
    }

    .sc-subcategories-km .slick-slide{
        margin: 0 8px;
    }
    #common-home .slick-custom-arrow{
        display:none!important;
    }
}
.search-inner-wrapper{
    display: flex;
    width: 100%;
    border-radius: 8px;
    align-items: center;
    padding: 0 8px;
    background: #ececec;
}

@media (max-width: 767.98px) {
    #search{
        border: 1px solid #D3D8E7;
    }
}

.sc-product-tabs-box{
    z-index: 2;
}

.sc-cart-actions{
    z-index: 95;
}
.oct-checkout-column{
    z-index: 95;
}

.hpm-block-prd .h4{
    font-size: 16px;
    margin: 5px 10px 10px 0;
}

.column-custom3 .h4{
    margin-right: 10px;
}

.hpm-block-cat .h4{
    display: none;
}
.toggle-dropdown2{
    position: absolute;
    right: 0;
    top: 7px;
    height: 32px;
    width: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.toggle-dropdown2.folded.unfolded {
    transform: rotate(90deg);
    transition: .2s;
}

.mobile-menu-item-layer-2 .mobile-menu-item-link{
    padding-right: 30px;
}

.oct-fastorder-payment * {
    float: unset !important;
}

.oct-checkout-column #agree-block{
    width: 100%;
    margin-top: 15px;
}

.oct-checkout-column .proposition .buttons>div{
    width: 100%;
}

.sc-blog-post-photo{
    border: 0!important;
    text-align: center;
}


.hotpost-item{
    position: absolute;
    height: 36px;
    width: 36px;
    transform: translate(-18px, -18px);
    border-radius: 12px;
    backdrop-filter: blur(1px);
    transition: .2s;
    cursor: pointer;
    z-index: 800;
    display: none;
}

.slick-initialized .hotpost-item{
    display: block;
}


.hotpost-item-inner:before{
    content: '';
    width: 16px;
    height: 2px;
    background: #001f3f;
    top: 17px;
    position: absolute;
    left: 10px;
}

.hotpost-item-inner:after{
    content: '';
    width: 16px;
    height: 2px;
    background: #001f3f;
    top: 17px;
    position: absolute;
    left: 10px;
    transform: rotate(90deg);
    transition: .2s;
}

.hotpost-item.active .hotpost-item-inner:after{
    transform: rotate(0deg);
}


.hotpsot-product{
    position: absolute;
    background: #fff;
    padding: 7px 15px;
    top: 45px;
    border-radius: 12px;
    visibility: hidden;
    opacity: 0;
    transition: .2s;
    z-index: 900;
    left: 5%;
    right: 5%;
    grid-gap: 5px;
}

#slideshow-41 .hotpsot-product{
    width: fit-content;
}

.hotpsot-product.active{
    opacity: 1;
    visibility: visible;
}

.hotpost-item.active .hotpsot-product{
    visibility: visible;
    opacity: 1;
    grid-gap: 10px;
    width: fit-content;
}

#slideshow-plus-1 .hotpsot-product.hotspot-pull-x-left{
    right: -15px;
    left: unset;
}
#slideshow-plus-1 .hotpsot-product.hotspot-pull-x-center{
    left: calc(50% - 135px);
}
#slideshow-plus-1 .hotpsot-product.hotspot-pull-x-right{
    left: -15px;
    right: unset;
}

#slideshow-plus-1 .hotpsot-product.hotspot-pull-y-top{
    bottom: 42px;
    top: unset;
}

#slideshow-plus-1 .hotpost-item.active .hotpsot-product{
    opacity: 1;
    visibility: visible;
}

.hotpost-item.active{
    z-index: 99999;
}

.hotspot-item-mobile{
    left: 5%;
    right: 5%;
    width: 90%;
}

.hotpsot-product-image{
    width: 50px!important;
    height: 50px!important;
    object-fit: contain;
}

.hotpsot-product-name {
    width: 180px;
    color: #1c1c28;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 500;
    margin-bottom: 5px;
}

.hotpsot-product-name:hover{
    color: #1E448AFF;
}

.hotpsot-product-left-part{
    display: flex;
    align-items: center;
}



@media screen and (max-width:500px) {
    .hotpsot-product-desktop{
        display:none!important;
    }
    .hotspot-item-mobile{
        display:flex
    }

    #slideshow-41 .hotpsot-product-name{
        width: auto;
    }
}

@media screen and (min-width:500px) {
    .hotpsot-product-desktop{
        display:flex;
    }
    .hotspot-item-mobile{
        display:none!important;
    }
}

.hotspot-size-24{
    height: 24px;
    width: 24px;
    border-radius: 6px;
}

.hotspot-size-24 .hotpost-item-inner:before{
    top: 11px;
    left: 5px;
    width: 10px;
    width: 14px;
}

.hotspot-size-24 .hotpost-item-inner:after{
    top: 11px;
    left: 5px;
    width: 10px;
    width: 14px;
}

.hotspot-shape-circle{
    border-radius: 50%;
}

.hotspot-shape-circle.hotspot-size-24 .hotpost-item-inner:before,
.hotspot-shape-circle.hotspot-size-24 .hotpost-item-inner:after{
    opacity: 0
}

.slideshow-image-button-opacyty{

}


#remove-coupon{
    position: absolute;
    height: 48px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 15;
    cursor: pointer;
}

#remove-coupon svg{
    width: 12px;
    height: 12px;
}

#remove-coupon svg path{
    fill: #D03131;
}


.sc-cart-items-wrapper{
    position: relative;
}
.sc-cart-items-wrapper.loading .sc-cart-items{
    transition: .2s;
    filter: blur(2px);
}

.sc-cart-items-wrapper .sc-loader{
    visibility: hidden;
    opacity: 0;
    transition: .2s;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 15;
}
.sc-cart-items-wrapper.loading .sc-loader{
    visibility: visible;
    opacity: 1;
}

.birthday-info{
    font-size: 12px;
    display: flex;
    align-items: center;
    grid-gap: 6px;
    margin-top: 7px;
    padding-left: 5px;
    cursor: pointer;
    text-decoration: underline;
}

@media screen and (max-width:768px) {
    .register-custom-fields .form-group{
        max-width: 100%;
    }
}

.cart-economy{
    text-align: left;
    color: #9da4ae;
    font-weight: 400;
    margin-top: 5px;
    font-size:12px;
}

.cart-economy-checkout{
    text-align: left;
    margin-top: 0px;
}

.discount_percentage{
    color: #9da4ae;
    padding: 1px 7px;
    text-align: center;
    border-radius: 8px;
    font-size: 12px;
}
.km-cart-button-order{
    margin: 0;
}
.km-cart-button-wrapper{
    display: flex;
    align-items: flex-end;
}
.desktop-breadcrumbs{
    padding-top: 50px;
}

.ws-pre{
    white-space: pre;
}
@media (max-width: 1199px) and (min-width: 767px) {
    .mr-auto {
        margin-right: auto;
    }
    .header-logo-wrapper{
        max-width: 109px;
    }
}

.sc-megamenu-child-title:hover{
    text-decoration:underline;
}

.wishlist-products-wrapper{
    flex-wrap: wrap;
}

.wishlist-products-wrapper .aspect-r-3-4{
    padding: 15px;
}

/*В очікуванні*/
.order-status-id-1{
    background: #D67700;
    color: #fff;
}

/*Обробка*/
.order-status-id-2{
    background: #D67700;
    color: #fff;
}

/*Надісланий*/
.order-status-id-17{
    background: #001f3f;
    color: #fff;
}

/*Скасовано*/
.order-status-id-7{
    background: #D67700;
    color: #fff;
}

/*Відхилений*/
.order-status-id-8{
    background: #ECECEC;
    color: #001f3f;
}

/*Сплачений*/
.order-status-id-3{
    background: green;
    color: #fff;
}
.cart-summary-products .cart-summary-product-item:nth-child(n+5) {
    display: none;
}

.pagen-space{
    height: 35px;
}

.order-list-item-head-info-1-2{
    display:flex;
    justify-content: space-between;
    width: 60%;
}
.order-list-item-head-info-3{
    width: 40%;
    justify-content: flex-end;
    flex-wrap: wrap;
}

@media screen and (max-width:768px) {
    .order-list-item-head-info-1-2{
        flex-direction: column;
        justify-content: flex-start;
    }

    .order-list-item-head-info-3{
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

.sc-buy-one-click .form-control{
    padding: .5rem!important;
}
@media screen and (max-width:1440px) and (min-width: 1000px) {
    .product-second-line-2{
        max-width: 255px
    }

    .product-second-line-1 {
        max-width: calc(52% - 13px);
        width: 100%;
    }

}

@media (max-width: 991px) and (min-width: 768px) {
    .product-second-line-2 {
        align-items: flex-start;
    }
    .product-second-line-3 {
        padding: 0;
    }
}
@media screen and (min-width: 1400px) {
    .detail-product-info .sc-buy-one-click #one_click_input{
        min-width: 160px
    }

    .product-second-line-1{
        min-width: 325px
    }
}

@media screen and (max-width:440px) {
    .product-second-line{
        flex-direction: column;
    }
}

.sc-product-content-reviews-item-answer-shop-name{
    display:flex;
    grid-gap: 7px;
    font-weight: 600;
    color: #001f3f;
}

@media (min-width: 1366px) {
    .methods .methods__method{
        max-width: calc(25% - 15px);
    }
}

.temporary-overflow {
    overflow: hidden;
    width: calc(100% - 12px) !important
}

.tmp-hero-block {
    display: flex !important;
    flex-direction: row;
    overflow-y: scroll;
    width: 9000px;
    grid-gap: 25px
}

@media screen and (min-width: 576px) {
    .tmp-hero-block {
        grid-gap: 10px
    }
}

#sc-category-wall-slick:not(.slick-initialized), .km-modif-product-moudle-list:not(.slick-initialized), .km-news-slider:not(.slick-initialized) {
    display: flex;
    overflow: hidden;
    gap: 16px
}

.km-modif-product-moudle-list:not(.slick-initialized) > .sc-module-col {
    min-width: calc(20% - 13px);
    flex-shrink: 0
}

.km-news-slider:not(.slick-initialized) > * {
    min-width: calc(33.333% - 11px);
    flex-shrink: 0
}

#sc-category-wall-slick:not(.slick-initialized) > * {
    min-width: calc(16.666% - 14px);
    flex-shrink: 0
}

@media screen and (min-width: 768px) {
    .sc-footer-payments-item {
        margin-bottom: 0;
    }

    .sc-footer-payments-list-km {
        align-items: center;
    }
}

@media screen and (max-width: 768px) {
    .mobile-order-3 {
        order: 3;
    }
}

.pe-none{
    pointer-events: none;
}

.button-loader{
    position: relative;
}

.button-loader .sc-btn-text{
    opacity: 0;
}

.button-loader:after{
    content: ' ';
    display: block;
    width: 20px;
    height: 20px;
    background: url(/image/icons/loading-circle.svg);
    background-size: contain;
    border-radius: 50%;
    z-index: 9999;
    position: absolute;
    top: 14px;
    left: calc(50% - 10px);

    animation: button-loader-spin 1.3s linear infinite;
}

@keyframes button-loader-spin {
    0% {
        transform: rotate(0deg);
    }

    45% {
        transform: rotate(288deg); /* 80% кола */
    }

    100% {
        transform: rotate(360deg); /* останні 20% повільніше */
    }
}

.oct-checkout-actions-total-item.end-total{
    border-top: 1px solid #f2f4f8;
    padding-bottom: 5px;
}

.select2-container .select2-selection--single{
    height: auto!important;
}

.select2-container { width: 100% !important; }
.select2-container--default .select2-selection--single {
    height: calc(2.25rem + 2px);
    border: 1px solid #ced4da;
    border-radius: .25rem;
    padding: .25rem .5rem;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 1.6;
}

/* Підсвічування помилки на полях Нової пошти (select2) */
#input-np-city.error_style + .select2-container .select2-selection,
#input-np-department.error_style + .select2-container .select2-selection {
    border-color: #dc3545 !important;
}

#input-np-city.error_style + .select2-container .select2-selection,
#input-np-department.error_style + .select2-container .select2-selection {
    border-color: #dc3545 !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
    height: 42px!important;
}

.select2-container--default .select2-selection--single{
    border: 1px solid #e4e4eb!important;
}

.select2-container--default .select2-search--dropdown .select2-search__field{
    font-size: .875rem;
    font-weight: 300;
    background-color: #fff;
    border: 1px solid #e4e4eb;
    padding: .625rem 1rem;
    border-radius: 8px;
    margin-top: 5px;
    color: #1c1c28;
    font-weight: 400;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
    color: #1c1c28;
}

.select2-dropdown{
    border: 1px solid #e4e4eb!important;
}

.select2-dropdown{
    border-radius: 0 0 8px 8px!important;
    padding: 5px;
}

/* Завжди відкривати список select2 вниз */
.select2-container--open .select2-dropdown--above {
    top: auto !important;
    bottom: auto !important;
}

/* Прибираємо «перевернуті» радіуси, коли список іде вгору */
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    color: #001f3f;
    background: #ececec;
}

.select2-results__option--selectable {
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    padding-left: 15px;
}

.select2-container--default .select2-selection--single{
    padding: 8px;
}

.shipping-address-input-wrapper{
    padding-left: 5px;
}

.sc-product-timer {
    display: none;
}

/* Інформаційний блок про графік доставки Uklon */
.uklon-schedule-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0 0 20px;
    padding: 16px 18px;
    border: 1px solid #e5e8eb;
    border-radius: 8px;
    background: #f7f8fa;
    color: #001f3f;
    font-size: 14px;
    line-height: 1.55;
}

.uklon-schedule-info__icon {
    flex-shrink: 0;
    margin-top: 1px;
    color: #001f3f;
    font-size: 16px;
    opacity: .55;
}

.uklon-schedule-info__body {
    flex: 1;
    min-width: 0;
}

.uklon-schedule-info__title {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 500;
    color: #001f3f;
}

.uklon-schedule-info__list {
    margin: 0;
    padding-left: 18px;
    list-style: disc;
}

.uklon-schedule-info__list li {
    margin-bottom: 4px;
    color: #001f3f;
}

.uklon-schedule-info__list li::marker {
    color: #b3b9c2;
}

/* Перекриваємо загальне правило .oct-checkout-block p { font-size: 16px } */
.oct-checkout-block .uklon-schedule-info__note {
    margin: 12px 0 0;
    font-size: 14px;
    color: #001f3f;
}

@media screen and (max-width: 575px) {
    .uklon-schedule-info {
        gap: 10px;
        padding: 14px;
    }
}