

@media screen and (min-width: 901px) {
    body{
        min-height: 100dvh;
        display: flex;
        flex-direction: column;
    }
    .footer{
        margin-top: auto;
    }
}

/* body:has(.header._scrolled) .arm_alert{
    position: fixed;
    top: 0;
} */
body:has(.header_checkout) .footer{
    display: none !important;
}

body:has(.header_checkout) .arm_alert{
    top: 6rem;
}
body:has(.header_checkout._scrolled) .arm_alert{
    position: fixed;
    top: 0;
}
@media screen and (max-width: 900px) {
    body:has(.header_checkout) .arm_alert{
        top: 65px;
    }
}


.seo_text_text._no_fade::before{
    display: none;
}

.swiper-button,
.swiper-pagination{
    user-select: none;
}


/*                      HEADER                      */

.header{
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
}


@media screen and (min-width: 1920px) {
    .catalog_menu{
        left: calc(50vw - 840px);
    }
}

.mobile_menu_links ._id_70{
    color: #d20071;
}
.mobile_menu_links ._id_71{
    color: #0F9E03;
}
.mobile_menu_links ._id_72{
    color: #7D0042;
}
.mobile_menu_links ._id_73{
    color: #F1AE00;
}


.select_storage {
    height: 2.85rem;
  }
  .select_storage_btn {
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  .select_storage ._arrow {
    transform: rotate(90deg);
    transition: var(--global-transition);
    margin-top: 0.31rem;
    width: clamp(20px, 1.25rem, 1.25rem);
  }
  .select_storage_title {
    transition: var(--global-transition);
    overflow: hidden;
    font-size: clamp(13px, 0.875rem, 0.875rem);
    color: var(--color-border-gray);
    margin-bottom: 2px;
  }
  .select_storage_current {
    font-size: clamp(15px, 1rem, 1rem);
    font-weight: 600;
  }
  .select_storage_list {
    transition: var(--global-transition);
    overflow: hidden;
    max-height: 0;
  }
  .select_storage_list_item {
    cursor: pointer;
    transition: var(--global-transition);
    font-size: clamp(13px, 0.875rem, 0.875rem);
  }
  @media (hover: hover) {
    .select_storage_list_item:hover {
      color: var(--color-pink-dark);
    }
  }
  .select_storage._active .select_storage_title {
    max-height: 0;
  }
  .select_storage._active ._arrow {
    transform: rotate(90deg) scale(-1);
  }
  .select_storage._active .select_storage_list {
    max-height: 3rem;
  }
  @media screen and (min-width: 901px) {
    .select_storage {
      margin-left: auto;
    }
    .select_storage._active{
        height: 3.5rem;
    }
  }
  @media screen and (max-width: 900px) {
    .select_storage_btn {
      gap: 16px;
    }
    .select_storage ._arrow {
      margin-top: 5px;
    }
    .select_storage_title {
      font-size: 14px;
      margin-bottom: 2px;
    }
    .select_storage_current {
      font-size: 16px;
    }
  }
  
  @media screen and (min-width: 901px) {
    .select_storage + .header_btn__logout {
      margin-left: 0;
    }
  }


  
.arm_currency{
    background: var(--color-bg-gray);
    border-radius: 16px;
    display: flex;
    align-items: center;
    height: 3.5rem;
    padding: 0.5rem;
}
    .arm_currency_btn{
        border-radius: 24px;
        color: var(--color-border-gray);
        font-size: 1.3rem;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 .3rem;
        width: 2.5rem;
        height: 2.5rem;
        transition: var(--global-transition);
    }
        .arm_currency_btn._active{
            cursor: default;
            background: #FFF;
            color: var(--color-black);
            font-weight: 600;          
        }

  @media (hover:hover){
    .arm_currency_btn:not(._active):hover{
        color: var(--color-black);
    }
  }


@media screen and (max-width: 900px) {

    .arm_currency{
        width: max-content;
        background: transparent;
        padding: 6px 20px;
    }
        .arm_currency_title{
            font-size: 14px;
            font-weight: 600;
            margin-right: 10px;
        }
        .arm_currency_btn{
            font-size: 20px;
            width: 30px;
            height: 30px;
            border-radius: 8px;
        }
            .arm_currency_btn._active{
                background: var(--color-bg-gray);
            }

}


/*                      BRANDS                      */

@media screen and (min-width: 901px) {

    .filters_wrap{
        max-height: calc(100dvh - 20rem);
        overflow-y: auto;
    }
        /* body:has(.header._scrolled) .filters_wrap{
            max-height: calc(100dvh - 10rem);
        } */

    .filters{
        padding: 1rem 1.25rem;
    }
        .filters_wrap{
            padding: .75rem 1.25rem;
        }

    .filters_actions{
        background: #F7F7F7;
        z-index: 2;
        position: sticky;
        bottom: -1.25rem;
        left: 0;
        padding: 1.25rem 0;
    }
}


.brands_list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
    .brands_list_item{
        width: calc( (100% - 6rem) / 4);
        border-radius: 12px;
        border: 2px solid var(--color-border-gray);
        color: var(--color-black);
        font-size: 1.5rem;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 2rem 1rem ;
    }
        .brands_list_item span{
            font-size: 1rem;
            font-weight: 400;
            padding-top: .5rem;
        }
    @media (hover:hover) {
        .brands_list_item:hover{
            color: var(--color-pink-dark);
            border-color: var(--color-pink-dark);
        }
    }


@media screen and (max-width: 900px) {

    .brands_list {
       gap: 1rem;
    }
        .brands_list_item{
            width: calc( 50% - .5rem);
            font-size: 1rem;
            padding: 1rem .5rem;
        }
        .brands_list_item span{
            font-size: .75rem;
        }

}


/*                      END   BRANDS                      */





/*                      CATEGORY                      */

.category_excel{
    transition: var(--global-transition);
}
    .category_excel._disable{
        opacity: 0.6;
        pointer-events: none;
        cursor: not-allowed
    }

.filter_price_inputs{
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: .5rem 0 1.5rem;
}
    .filter_price_inputs ._input{
        flex-grow: 1;
        margin-bottom: 0;
    }
    .filter_price_inputs input{
        background: #fff;
        border-radius: 10px;
        border: 2px solid #ECECEC;
        text-align: center;
        font-weight: 500;
        padding: 0.65rem 1.25rem  !important;
    }
    .filter_price_inputs ._sep{
        width: 1.25rem;
        min-width: 1.25rem;
    }

.filter_price_desc{
    color: #5F5F5F;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: .875rem;
    line-height: 1.3;
    margin-top: 1.5rem;
}
    .filter_price_desc_item:last-child{
        text-align: right;
    }

.filter_item_value._disabled{
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.6;
}

.filters_actions .btn_cart{
    width: 100%;
}

.filters .popover{
    display: none !important;
}



.product_reviews_content,
.category_products,
.pagination_wrap{
    transition: var(--global-transition);
}
    .product_reviews_content._loading,
    .category_products._loading,
    .pagination_wrap._loading{
        pointer-events: none;
        cursor: not-allowed;
        opacity: 0.6;
    }


.main_looked{
    margin-bottom: 4rem;
}
.main_looked h1{
    padding: 0;
}
@media screen and (min-width: 901px) {

    .main_looked .category_main {
        flex-grow: unset;
        width: calc( 100% - clamp(280px, 25rem, 25rem) );
        margin-inline: auto;
    }

}
@media screen and (max-width: 900px) {
    .main_looked h1{
       width: 100%;
    }
}





/*                      CATEGORY PROMOTIONS                      */


.category_promotions_list{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

    .category_promotions_list .home_promotions_item{
        width: calc( 50% - 1rem );
    }
    .home_promotions_item:nth-child(3){
        width: 100%;
    }

@media screen and (max-width: 900px) {

    

    .category_promotions_list{
        gap: 10px;
    }
    
        .category_promotions_list .home_promotions_item{
            width: 100%;
        }
        .category_promotions_list .home_promotions_item_content{
            padding: 16px 24px 45px;
        }

}





/*                      SEARCH                      */

.search_popup_empty{
    text-align: center;
    margin-bottom: 1.5rem;
}

.search_guest_price{
    font-size: .75rem;
    line-height: 1.3;
}




/*                      PRODUCT                      */

.product_card_price + .hidden_price_btn{
    margin-top: 1.5rem;
}

.hidden_price_btn svg{
    display: block;
    width: 1.5rem;
    min-width: 1.5rem;
    height: 1.5rem;
}



._input:has(.rating_field) label{
    position: relative;
    top: unset !important;
    left: unset !important ;
}

._input:has(.rating_field) > label{
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}




.product_card .hidden_price_btn._avail{
    padding: .87rem;
}

@media screen and (max-width: 900px) {
    .product_card .hidden_price_btn._avail{
        padding: 6px 7px;
    }
}


.product_attr a{
    color: var(--color-black);
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media (hover:hover){
    .product_attr a:hover{
        color: var(--color-pink-dark);
    }
}



/*                      ACCOUNT                      */
.main_account .success_page_order_total{
    margin-bottom: 1rem;
}

.order_detail .category_excel{
    width: max-content;
    max-width: 100%;
    margin: 1.5rem 0;
    border-color: #0B0B0B;
    font-size: 1rem
}

.order_detail_status_storage{
    color: var(--color-black);
    font-size: 1.25rem;
    font-weight: 500;
    margin: 1rem 0;
}


@media screen and (max-width: 900px) {

    .order_detail .category_excel{
        margin: 0 0 16px;
        font-size: 14px;
    }

    .order_detail_status_storage{
        font-size: 16px;
        margin: 1rem 0;
    }

    .header_btn__toggle {
        justify-content: center;
        margin-top: 16px;
    }

}
 


.popup_login {
    z-index: 99;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    visibility: hidden;
    transition: var(--global-transition);
    max-width: 100%;
    max-height: calc(100dvh - 20px);
    overflow-y: auto;
}
.popup_login._active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

body:has(.popup_login._active) .header {
    z-index: 98;
}

form{
    user-select: none;
}

form input,
form textarea{
    user-select: auto;
}

.order_history_item_status._5,
.order_detail_status._5{
    color: var(--color-green);
}
.order_history_item_status._7,
.order_detail_status._7{
    color: var(--color-border-gray);
}


@media screen and (min-width: 901px) {

    .account_desc._with_logout{
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        width: 51.25rem;
        max-width: 100%;
    }
        .account_desc_text{
            width: 25rem;
            max-width: 100%; 
        }

}
@media screen and (max-width: 900px) {
    .btn_cart._logout{
        font-size: 16px;
        margin-inline: auto;
        padding: 18px 24px;
    }
}
.btn_cart._logout{
    width: max-content;
    border-color: #5f5f5f;
    background: #5f5f5f;
}
    .btn_cart._logout img,
    .btn_cart._logout svg{
        width: 1.5rem;
        min-width: 1.5rem;
    }
    @media (hover:hover) {
        .btn_cart._logout:hover{
            border-color: var(--color-pink-dark2);
            background:  var(--color-pink-dark2);
        }
    }

    

.account_info_form .account_select{
    background: #f7f7f7;
    margin-bottom: 1.25rem;
}
    .account_info_form .account_select_list{
        flex-direction: column;
    }
        .account_info_form .account_select_list_item{
            width: 100%;
            background: var(--color-bg-gray);
        }
            .account_info_form .account_select_list_item._active{
                background: var(--color-pink-light);
            }
            .account_info_form .account_select_list_item:not(:first-child){
                margin-top: 0;
            }


@media (hover: hover) {
    .account_info_form .account_select_list_item:hover {
        background: var(--color-pink-light);
    }
}



/*      CART     */


.popup_cart_product_right_col:has(._error_multiple) .quantity{
    background: var(--color-pink-light);
}
    .popup_cart_product_right_col:has(._error_multiple) .quantity_btn:not(:hover) path, 
    .popup_cart_product_right_col:has(._error_multiple) .quantity_btn:not(:hover) rect{
        fill: var(--color-black);
    }

._error_multiple{
    color: var(--color-pink-dark);
    font-size: clamp(12px, .875rem, .875rem );
    font-weight: 600;
    margin: .8755rem 0 .4rem;
}
.btn_fix_multuple.btn_cart{
    font-size: clamp(10px, .6rem, .6rem);
    padding: .5rem;
    font-weight: 400;
    letter-spacing: -0.1px;
}

@media screen and (min-width: 1580px) and (max-width: 1800px){
    .btn_fix_multuple.btn_cart{
        margin: 0 -.7rem;
    }
}
@media screen and (min-width: 901px) and (max-width:1581px){
    .btn_fix_multuple.btn_cart{
        margin: 0 -1.4rem;
    }
}

@media screen and (max-width: 900px){
    .btn_fix_multuple.btn_cart{
        margin: 0;
    }
}

._button_in_cart{
    background: var(--color-pink-dark2)!important;
    border-color: var(--color-pink-dark2)!important;
    color: #fff!important;
}
    ._button_in_cart svg path[stroke]{
        stroke: #fff;
    }

    .product_card ._button_in_cart svg path[stroke]{
        stroke-width: 2px;
    }

/* .quantity input[data-package-quantity]{
    pointer-events: none;
    cursor: not-allowed;
} */

/* body:has(.header._scrolled) .popup_cart{
    top: 50px;
}
    body:has(.header._scrolled) .popup_cart_wrap{
        max-height: calc(100dvh - 3rem - 100px);
    } */

.popup_cart._loading{
    cursor: not-allowed;
    pointer-events: none;
    user-select: none;
}
.popup_cart::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,.6);
    border-radius: 30px;
    z-index: 9;
    transition: var(--global-transition);
    opacity: 0;
    visibility: hidden;
}
    .popup_cart._loading::before{
        opacity: 1;
        visibility: visible;
    }

    .popup_cart::after{
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 6rem;
        height: 6rem;
        z-index: 10;
        transition: var(--global-transition);
        transform: translate(-50%, -50%);
        animation: spin 1.5s linear infinite;
        opacity: 0;
        visibility: hidden;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M304 48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zm0 416a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM48 304a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm464-48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM142.9 437A48 48 0 1 0 75 369.1 48 48 0 1 0 142.9 437zm0-294.2A48 48 0 1 0 75 75a48 48 0 1 0 67.9 67.9zM369.1 437A48 48 0 1 0 437 369.1 48 48 0 1 0 369.1 437z" fill="%23D20071"/></svg>');
    }
        .popup_cart._loading::after{
            opacity: 1;
            visibility: visible;
        }

@keyframes spin {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

/*    END   CART     */



/*      widget form         */

.widget_fixed{
    position: fixed;
    bottom: 8rem;
    left: 8rem;
    border-radius: 20px;
    border: 1px solid #ECECEC;
    background: #F7F7F7;
    box-shadow: 0px 86px 24px 0px rgba(0, 0, 0, 0.00), 0px 55px 22px 0px rgba(0, 0, 0, 0.01), 0px 31px 19px 0px rgba(0, 0, 0, 0.04), 0px 14px 14px 0px rgba(0, 0, 0, 0.07), 0px 3px 8px 0px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--global-transition);
    z-index: 90;
    max-width: 260px;
}
    .widget_fixed._active{
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

.widget_fixed_btn{
    cursor: pointer;
    position: fixed;
    bottom: 2.25rem;
    left: 8.6rem;
    transition: var(--global-transition);
    background: var(--color-pink-dark);
    border-radius: 50%;
    padding: .75rem;
    z-index: 90;
}
    .widget_fixed_btn svg{
        display: block;
        width: 2.75rem;
    }

.widget_fixed_socials{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}
.widget_fixed_link{
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-black);
    transition: var(--global-transition);
    user-select: none;
}
    .widget_fixed_ico{
        width: 2.5rem;
    }
        .widget_fixed_ico svg, 
        .widget_fixed_ico img{
            width: 100%;
            display: block;
        }
            .widget_fixed_ico svg rect{
                transition: var(--global-transition);
            }

.widget_fixed_form{
    border-top: 1px solid var(--color-border-gray);
    padding-top: 1rem;
    margin-top: 1rem;
}

    .widget_fixed_form._active .widget_fixed_form_btn svg rect{
        fill: var(--color-pink-dark);
    }

    .widget_fixed_form ._input{
       margin: 1rem 0!important;
    }
        .widget_fixed_form ._input input{
            padding: 1.1rem 1.5rem 1.1rem;
        }
        .widget_fixed_form ._input > label{
            top: 1.25rem;
        }
        .widget_fixed_form ._input:has( input:focus ) label, 
        .widget_fixed_form ._input:has( input:not(:placeholder-shown) ) label, 
        .widget_fixed_form ._input:has( textarea:focus ) label, 
        .widget_fixed_form ._input:has( textarea:not(:placeholder-shown) ) label{
            opacity: 0;
            visibility: hidden;
        }

    .widget_fixed_form p{
        margin: 1rem 0 0;
    }

    .widget_fixed_form .btn_cart{
        width: 100%;
    }



@media (hover:hover){
    .widget_fixed_btn:hover{
        transform: scale(1.1);
    }
    .widget_fixed_form_btn:hover svg rect{
        fill: var(--color-pink-dark);
    }
}

@media screen and (max-width: 900px) {
    .widget_fixed { 
        left: 16px;
        bottom: 100px;
        max-width: 280px;
    }
    .widget_fixed_btn {
        bottom: 24px;
        left: 30px;
        padding: 10px;
    }
        .widget_fixed_btn svg{
            width: 40px;
        }
}

/*      END widget form         */