/** Shopify CDN: Minification failed

Line 6187:20 Unexpected "{"
Line 7294:10 Expected ":"
Line 7300:10 Expected ":"

**/
/* Base */
*,
*::before,
*::after {
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
    font-size: 62.5%;
    height: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: transparent;
}

.no-js:not(html) {
    display: none !important;
}

html.no-js .no-js:not(html) {
    display: block !important;
}

.no-js-inline {
    display: none !important;
}

html.no-js .no-js-inline {
    display: inline-block !important;
}

html.no-js .no-js-hidden {
    display: none !important;
}

body {
    font-family: var(--font-body-family);
    font-size: var(--font-body-size);
    font-weight: var(--font-body-weight);
    line-height: var(--body-line-height);
    letter-spacing: var(--body-letter-spacing);
    color: var(--color-text);
    background: var(--color-background);
    margin: 0 auto;
    opacity: 1;
    visibility: visible;
    overflow-x: hidden;
}

button {
    cursor: pointer;
}

/* Derived from base colors (theme settings) */
.color-accent-1 {
    color: var(--color-base-accent-text);
    background-color: var(--color-base-accent-1);
}

.color-accent-2 {
    color: var(--color-base-accent-text);
    background-color: var(--color-base-accent-2);
}

/* START: Layout Boxed */
    .header-boxed, .body-boxed, .footer-boxed{
        background-color: var(--color-background-layout-boxed);
        background-image: var(--image-background-layout-boxed);
        background-repeat: no-repeat;
        background-position: top;
        background-attachment: fixed;
    }            

    .halo-widget-banner{
        position: sticky;
        width: calc((100vw - 1400px) / 2);
        top: 55%;
        transform: translateY(-50%);
        height: 100%;
        visibility: hidden;
        opacity: 0;
    }

    .halo-widget-banner + .halo-widget-banner {
      order: 3;
    }
/* END: Body Layout */

/* START: Container */
    .container{
        display: block;
        width: 100%;
        position: relative;
        max-width: 100%;
        padding: 0 15px;
        margin: 0 auto;
    }

    .halo-row {
        display: flex;
        flex-wrap: wrap;
        margin-left: -15px;
        margin-right: -15px;
    }

    .halo-item {
        padding-left: 15px;
        padding-right: 15px;
    }

    .halo-row.column-1 .halo-item {
        width: 100%;
    }

    .halo-row.column-2 .halo-item {
        width: 50%;
    }

    .halo-row.column-3 .halo-item {
        width: calc(100% / 3);
    }

    .halo-row.column-4 .halo-item {
        width: 25%;
    }

    .halo-row.column-5 .halo-item {
        width: 20%;
    }

    .halo-row.column-6 .halo-item {
        width: calc(100% / 6);
    }

    .halo-row.column-7 .halo-item {
        width: calc(100% / 7);
    }

    .halo-row.column-8 .halo-item {
        width: calc(100% / 8);
    }

    .halo-row.column-9 .halo-item {
        width: calc(100% / 9);
    }

    .halo-row.column-10 .halo-item {
        width: 10%;
    }

    .wrapper-body {
        padding-bottom: 80px;
    }

    .template-index .wrapper-body {
        padding-bottom: 0px;
        overflow: hidden;
    }

/* END: Container */

/* START: Adaptive Height */
    .adaptive_height {
        display: block;
        max-width: 100%;
        position: relative;
        margin: 0 auto;
    }

    .adaptive_height img {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        max-width: 100%;
        cursor: pointer;
        object-fit: contain;
        object-position: center center;
        transition: opacity .5s;
    }

    .adaptive_height img.lazyload, 
    .adaptive_height img.lazyloading {
        opacity: 0;
        transition: var(--anchor-transition);
    }

    .adaptive_height img.lazyloaded {
        opacity: 1 !important;
    }

    .adaptive_height img.lazyload + .data-lazy-loading, 
    .adaptive_height img.lazyloading + .data-lazy-loading {
        content: '';
        position: absolute;
        height: 100%;
        width: 100%;
        left: 0;
        top: 0;
        z-index: 0;
        background-color: var(--bg-planceholder);
        display: block;
        transition: var(--anchor-transition);
    }

    .ajax-loaded .data-lazy-loading {
       display: none !important;
    }
/* END: Adaptive Height */

/* START: Display Srollbar */
    .disable-srollbar::-webkit-scrollbar {
      display: none;
    }

    .disable-srollbar::-webkit-scrollbar-track {
      display: none;
    }

    .disable-srollbar::-webkit-scrollbar-thumb {
      display: none;
    }

    .disable-srollbar::-webkit-scrollbar-thumb:hover {
      display: none;
    }
/* END: Display Srollbar */

/* START: SVG Icon */
    svg {
        display: inline-block;
        vertical-align: middle;
        fill: currentColor;
        stroke: currentColor;
        width: 1rem;
        height: 1rem;
        transition: var(--anchor-transition);
    }

    .icon{
        fill: var(--icon);
        stroke: transparent;
    }

    .placeholder-svg{
        display: block;
        fill: rgba(120, 129, 136, 0.15);
        stroke: rgba(120, 129, 136, 0.2);
        background-color: rgba(120, 129, 136, 0.1);
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        border: 1px solid rgba(120, 129, 136, 0.2);
        stroke-width: .1px
    }
/* END: SVG Icon */

/* START: Background Overlay */
    .background-overlay {
        position: fixed;
        background-color: rgba(35, 35, 35, 0.8);
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        cursor: pointer;
        display: block !important;
        z-index: 100;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--duration-long) ease;
    }

    body:not(.safari).show_effect_close .background-overlay{
        cursor: none;
    }

    body:not(.safari).show_effect_close .background-overlay:hover {
        cursor: none;
    }

    .background-overlay.hold {
        opacity: 1;
    }

    body:not(.safari) .background-cursor-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        -webkit-transform: translateY(calc(var(--translate-y, 0) * 1px - 50%)) translateX(calc(var(--translate-x, 0) * 1px - 50%));
        -moz-transform: translateY(calc(var(--translate-y, 0) * 1px - 50%)) translateX(calc(var(--translate-x, 0) * 1px - 50%));
        -ms-transform: translateY(calc(var(--translate-y, 0) * 1px - 50%)) translateX(calc(var(--translate-x, 0) * 1px - 50%));
        -o-transform: translateY(calc(var(--translate-y, 0) * 1px - 50%)) translateX(calc(var(--translate-x, 0) * 1px - 50%));
        transform: translateY(calc(var(--translate-y, 0) * 1px - 50%)) translateX(calc(var(--translate-x, 0) * 1px - 50%));
        transition: transform 70ms ease;
        -webkit-transition: transform 70ms ease;
    }
 
    body:not(.safari) .background-cursor-wrapper_outer {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: white;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    body:not(.safari) .background-cursor-wrapper_inner {
        width: 25px;
        height: 25px;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    body:not(.safari) .background-cursor-wrapper_outer,
    body:not(.safari) .background-cursor-wrapper_inner {
        transform: scale(0.1);
        opacity: 0;
        transition: transform 350ms ease-in-out, opacity 350ms 150ms ease;
    }

    body:not(.safari) .background-cursor-wrapper.enlarge-cursor .background-cursor-wrapper_outer,
    body:not(.safari) .background-cursor-wrapper.enlarge-cursor .background-cursor-wrapper_inner {
        transform: scale(1);
        opacity: 1;
        transition-delay: 0ms;
    }

    body:not(.safari) .background-cursor-wrapper .background-cursor-wrapper_inner svg {
        width: 15px;
        height: 15px;
        stroke: #232323;
    }
/* END: Background Overlay */

/* START: Gradient Background Color */
    .enable-gradient-color{
        background: var(--gradient-color-left) !important;
        background: -moz-linear-gradient(left, var(--gradient-color-left) 0%, var(--gradient-color-right) 100%) !important;
        background: -webkit-gradient(left top, right top, color-stop(0%, var(--gradient-color-left)), color-stop(100%, var(--gradient-color-right))) !important;
        background: -webkit-linear-gradient(left, var(--gradient-color-left) 0%, var(--gradient-color-right) 100%) !important;
        background: -o-linear-gradient(left, var(--gradient-color-left) 0%, var(--gradient-color-right) 100%) !important;
        background: -ms-linear-gradient(left, var(--gradient-color-left) 0%, var(--gradient-color-right) 100%) !important;
        background: linear-gradient(to right, var(--gradient-color-left) 0%, var(--gradient-color-right) 100%) !important;
        border: 0 !important;
    }
/* END: Gradient Background Color */

/* START: Button */
    body.safari .button {
        transition: all 0.2s var(--button-transition-ease);
    }

    body:not(.safari) .button {
        transition: var(--duration-long) var(--button-transition-ease);
        transition-property: color, background, background-color, border;
        border-radius:20px;
    }

    .button,
    .shopify-challenge__button {
        display: block;
        width: 100%;
        font-family: var(--btn-1-font-family);
        font-size: var(--btn-1-font-size);
        font-weight: var(--btn-1-font-weight);
        text-transform: var(--btn-1-text-transform);
        text-align: var(--btn-1-text-align);
        letter-spacing: var(--btn-1-letter-spacing);
        line-height: var(--btn-1-line-height);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        border-radius: var(--btn-1-border-radius);
        border-style: var(--btn-1-border-style);
        border-width: var(--btn-1-border-width);
        min-width: 130px;
        max-width: 100%;
        padding-top: var(--btn-1-padding-top);
        padding-bottom: var(--btn-1-padding-bottom);
        padding-left: 15px;
        padding-right: 15px;
        margin: auto;
        outline: none!important;
        box-shadow: var(--btn-1-horizontal-length) var(--btn-1-vertical-length) var(--btn-1-blur-radius) var(--btn-1-spread) var(--btn-1-all-bg-opacity) var(--btn-1-inset);
        cursor: pointer;
        position: relative;
    }

    .shopify-challenge__container .shopify-challenge__button {
        max-width: 304px;
        margin-top: 15px;
    }

    .button svg{
        display: inline-block;
        vertical-align: middle;
        width: 32px;
        height: 32px;
        margin: 0 6px 0 0;
    }
    
    .button.button-1,
    .button.button--primary{
        background: var(--btn-1-bg);
        border-color: var(--btn-1-border);
        color: var(--btn-1-color);
    }

    .button.button-1 svg,
    .button.button--primary svg{
        fill: var(--btn-1-color);
    }

    .button.button-2,
    .button.button--secondary{
        background: var(--btn-2-bg);
        border-color: var(--btn-2-border);
        color: var(--btn-2-color);
    }

    .button.button-2 svg,
    .button.button--secondary svg{
        fill: var(--btn-2-color);
    }

    .button.button-3{
        background: var(--btn-3-bg);
        border-color: var(--btn-3-border);
        color: var(--btn-3-color);
    }

    .button.button-3 svg{
        fill: var(--btn-3-color);
    }

    button[aria-disabled='true'],
    button:disabled,
    button[disabled],
    button.disabled,
    .button:disabled,
    .button[disabled],
    .button[aria-disabled='true'],
    .button.disabled,
    .btn-unavailable {
        opacity: .6;
        pointer-events: none;
    }

    .button:focus-visible,
    .button:focus {
        /*box-shadow: 0 0 0 0.1rem var(--color-background-10), 0 0 0 0.3rem var(--color-background), 0 0 0.5rem 0.4rem var(--color-background-30);*/
    }

    .button.loading:after {
        content: '';
        animation: loading var(--duration-long) infinite linear;
        border: 0.5rem solid rgba(var(--color-button-text-rgb), 0.4);
        border-left: 0.5rem solid var(--color-button-text);
        border-radius: 100%;
        box-sizing: content-box;
        display: block;
        height: 2rem;
        position: absolute;
        width: 2rem;
    }

    .button[aria-disabled='true'].button-continue {
        opacity: 1;
        pointer-events: auto;
    }
/* END: Button */

/* START: Block */
    .halo-block{
        position: relative;
        background: #fff;
    }

    .halo-block-header{
        position: relative;
        margin: 0 0 30px 0;
    }

    .halo-block-header .title{
        display: inline-block;
        position: relative;
        font-family: var(--font-heading-family);
        font-size: var(--font-heading-size);
        font-weight: var(--font-heading-weight);
        font-style: var(--font-heading-style);
        text-transform: var(--heading-text-transform);
        letter-spacing: var(--heading-letter-spacing);
        line-height: var(--heading-line-height);
        color: var(--color-text);
        margin-top: 1px;
        margin-bottom: 5px;
    }

    .halo-block-header .title .text{
        display: inline-block;
        vertical-align: top;
        width: auto;
        padding: 0 20px;
        position: relative;
        z-index: 1;
        background: var(--color-background);
        width: auto;
        max-width: 100%;
    }

    .halo-block-header:not(.text-center) .title .text {
        padding: 0;
    }

    .halo-block-header.text-left.viewAll--left .title,
    .halo-block-header.text-right.viewAll--right .title {
        margin-right: 30px;
    }

    .halo-block-header.text-left.viewAll--left.has-des .title,
    .halo-block-header.text-right.viewAll--right.has-des .title {
        margin-right: 0;
    }

    .halo-block-header.text-center .title {
        display: block;
        margin-right: 0;
    }

    .halo-block-header .title:before{
        content: '';
        display: block;
        position: absolute;
        top: calc(50% - 1px);
        left: 0;
        width: 100%;
        height: var(--heading-border-height);
        background: #c7c7c7;
    }

    .halo-block-header .title svg{
        width: 26px;
        height: 26px;
        position: relative;
        top: -3px;
        margin-right: 8px;
        margin-left: 0;
    }

    .halo-block-header .view_all{
        display: inline-block;
        border-bottom: 1px solid;
        line-height: 16px;
    }

    .halo-block-header .view_all .icon-svg{
        position: relative;
        top: -1px;
    }

    .halo-block-header .text-left .text,    
    .halo-block-header.text-left .title .text { 
        padding-left: 0;    
    }   

    .halo-block-header .text-right .text,   
    .halo-block-header.text-right .title .text {    
        padding-right: 0;   
    }

    /* Product Block Title Style 2 */
    .block-title--style2 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left !important;
    }

    .block-title--style2 .title {
        display: inline-block;
        margin: 0 !important;
    }

    .block-title--style2.enable_border_title_style2 .title {
        border-bottom: 3px solid;
    }

    .block-title--style2 .title:before {
        display: none;
    }

    .block-title--style2 .title .text {
        width: auto !important;
        padding: 0 !important;
    }

    .block-title--style2 .view_all {
        margin: 0 !important;
        position: relative;
        top: -3px;
    }

    .product-countdown-block {
        display: inline-block;
        border: 1px solid;
        padding: 6px 15px;
        line-height: 1;
        border-radius: 3px;
    }

    .product-countdown-block .clock-item {
        display: inline-block;
        font-weight: bold;
    }

    .product--countdown {
        flex: 1;
        position: relative;
        top: -7px;
        font-size: 0;
    }

    /* Countdown Style 2*/
    .countdown_style_2{
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left !important;
    }

    .countdown_style_2 .text{
        width: auto !important;
    }

    .countdown_style_2 .num{
        background: #323232;
        padding: 10px 8px;
        min-width: 34px;
        max-height: 34px;
        border-radius: 34px;
        display: inline-block;
        color: #fff;
        font-weight: 400;
        text-align: center;
    }

    .countdown_style_2 .icon{
        margin-right: 5px;
        margin-left: 5px;
        color: #202020;
    }

    .countdown_style_2 .product-countdown-block{
        margin-left: 0px;
        border: 0;
    }


    .price__label_sale {
        border-radius: 3px;
        overflow: hidden;
        height: 20px;
        line-height: 20px;
        margin: 0 0 0 3px !important;
        clip-path: polygon(0 50%, 20% 100%, 100% 100%, 100% 0, 20% 0, 0 50%);
    }

    .price__label_sale .label_sale {
        font-size: 12px;
        font-weight: 400;
        color: var(--sale-badge-color);
        background-color: var(--sale-badge-bg);
        padding: 0 10px;
        display: block;
    }

    .halo-product-block .products-carousel{
        display: block;
        position: relative;
        margin: 0 -15px;
        width: auto !important;
    }

    .halo-product-block .slick-dots{
        bottom: -40px;
    }

    .halo-product-block .product {
        display: inline-block;
        vertical-align: top;
        padding: 0 15px;
    }

    .halo-product-block .products-carousel.slick-dotted{
        margin-bottom: 30px;
    }

    .halo-product-block .products-carousel:not(.slick-initialized){
        white-space: nowrap;
        overflow: hidden;
        font-size: 0;
        letter-spacing: 0;
    }

    .halo-product-block .products-carousel:not(.slick-initialized) > .product{
        display: inline-block;
        vertical-align: top;
        width: 100%;
    }
/* END: Block */

/* START: Calculator Free Shipping Message */
     .haloCalculatorShipping{
        position: relative;
        margin: 0 0 12px 0;
        min-height: var(--free-shipping-min-height);
        padding: 0 20px;
    }

    .haloCalculatorShipping .progress{
        position: relative;
        margin: 0 0 10px 0;
        font-size: 0;
        letter-spacing: 0;
    }

    .haloCalculatorShipping .progress.progress-hidden{
        display: none;
    }

    .haloCalculatorShipping .progress .progress_shipping{
        height: var(--free-shipping-height);
        background-color: var(--free-shipping-bg);
        border-radius: var(--free-shipping-border-radius);
        border: 0;
    }

    .haloCalculatorShipping .progress .progress-meter{
        position: relative;
        display: block;
        width: 100%;
        height: 100%;
        font-size: calc(var(--font-body-size) - 1px);
        font-weight: var(--font-weight-normal);
        letter-spacing: 0;
        line-height: calc(var(--free-shipping-height) + 1px);
        color: var(--color-white);
        transition: width .3s ease;
    }

    .haloCalculatorShipping .progress.progress-free .progress_shipping{
        border-color: var(--free-shipping-bg-4);
    }

    .haloCalculatorShipping .progress.progress-30 .progress_shipping{
        border-color: var(--free-shipping-bg-1);
    }

    .haloCalculatorShipping .progress.progress-60 .progress_shipping{
        border-color: var(--free-shipping-bg-2);
    }

    .haloCalculatorShipping .progress.progress-100 .progress_shipping{
        border-color: var(--free_shipping_color3);
    }

    .haloCalculatorShipping .progress.progress-free .progress-meter{
        background-color: var(--free-shipping-bg-4);
    }

    .haloCalculatorShipping .progress.progress-30 .progress-meter{
        background-color: var(--free-shipping-bg-1);
    }

    .haloCalculatorShipping .progress.progress-60 .progress-meter{
        background-color: var(--free-shipping-bg-2);
    }

    .haloCalculatorShipping .progress.progress-100 .progress-meter{
        background-color: var(--free-shipping-bg-3);
    }

    .haloCalculatorShipping .message{
        font-size: var(--font-body-size);
        font-weight: var(--font-weight-normal);
        letter-spacing: 0;
        line-height: var(--body-line-height);
        color: var(--free-shipping-color);
        transition: color var(--duration-default) ease-in-out; 
    }
    
    .haloCalculatorShipping .progress.progress-free + .message {
        color: var(--free-shipping-bg-4);
    }

    .haloCalculatorShipping .message .text{
        text-transform: capitalize;
    }
    
    .haloCalculatorShipping .progress .progress-meter{
        text-align: center;
        animation: 2s linear 0s infinite progress-bar-stripes;
        background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
        background-size: 40px 40px;
        transition: .9s linear;
        transition-property: width,background-color;
        border-radius: var(--free-shipping-border-radius);
    }
        
    .halo-cart-sidebar .halo-sidebar-wrapper {
        padding-top: 13px;
    }

    .progress-truck-wrapper {
        position: absolute;
        right: 0;
        bottom: -2px;
    }

    .progress-truck-wrapper .icon-shipping-truck {
        --truck-color: var(--free-shipping-bg);

        width: calc(var(--free-shipping-height) * 3);
        height: calc(var(--free-shipping-height) * 3);
        stroke: white;
        transition: fill var(--duration-default) ease-in-out;
    }

    .haloCalculatorShipping .progress.progress-free .progress-meter .progress-truck-wrapper .icon-shipping-truck {
        fill: var(--free-shipping-bg-4);
        color: var(--free-shipping-bg-4);
    }

    .haloCalculatorShipping .progress.progress-30 .progress-meter .progress-truck-wrapper .icon-shipping-truck{
        fill: var(--free-shipping-bg-1);
        color: var(--free-shipping-bg-1);
    }

    .haloCalculatorShipping .progress.progress-60 .progress-meter .progress-truck-wrapper .icon-shipping-truck{
        fill: var(--free-shipping-bg-2);
        color: var(--free-shipping-bg-2);
    }

    .haloCalculatorShipping .progress.progress-100 .progress-meter .progress-truck-wrapper .icon-shipping-truck {
        fill: var(--free-shipping-bg-3);
        color: var(--free-shipping-bg-3);
    }

    .haloCalculatorShipping .progress-truck-wrapper .icon-shipping-truck .wheel{ 
        fill: white !important;
    }
/* END: Calculator Free Shipping Message */

.list-unstyled {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hidden {
  display: none !important;
}

.visually-hidden {
    position: absolute !important;
    overflow: hidden;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0 0 0 0);
    word-wrap: normal !important;
}

.visually-hidden--inline {
    margin: 0;
    height: 1em;
}

.overflow-hidden {
    overflow: hidden;
}

.clearfix:after{
    content: '';
    display: block;
    clear: both;
}

.full-width-link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
}

.grecaptcha-badge{
    display: none !important;
}

h1,
h2,
h3,
h4,
h5,
.h0,
.h1,
.h2,
.h3,
.h4,
.h5 {
    font-family: var(--font-heading-family);
    font-style: var(--font-heading-style);
    font-weight: var(--font-heading-weight);
    letter-spacing: var(--heading-letter-spacing);
    line-height: 4rem;
    color: var(--color-text);
}

.h0 {
    font-size: 4rem;
}

h1,
.h1 {
    font-size: 3rem;
}

h2,
.h2 {
    font-size: 2rem;
    line-height: 2.8rem;
}

h3,
.h3 {
    font-size: 1.7rem;
}

h4,
.h4 {
    font-size: 1.5rem;
}

h5,
.h5 {
    font-size: 1.2rem;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a{
    display: inherit;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    text-transform: inherit;
}

.hidden {
    display: none !important;
}

.left,
.text-left {
    text-align: left;
}

.center,
.text-center {
    text-align: center;
}

.right,
.text-right {
    text-align: right;
}

.uppercase {
    text-transform: uppercase;
}

.lowercase{
    text-transform: lowercase;
}

.capitalize{
    text-transform: capitalize;
}


br:empty,
hr:empty,
iframe:empty,
path:empty,
line:empty,
circle:empty,
use:empty,
input:empty,
rect:empty,
textarea:empty,
.display-empty:empty,
shopify-payment-terms:empty,
shopify-installments-modal:empty,
model-viewer:empty,
polyline:empty,
polygon:empty {
    display: block;
}

a{
    color: var(--color-link);
    cursor: pointer;
    border: none;
    box-shadow: none;
    text-decoration: none;
}

body:not(.safari) a {
    transition: var(--anchor-transition);
}

.link{
    display: inline-block;
    vertical-align: top;
    font-size: var(--font-body-size);
    font-weight: var(--font-weight-normal);
    line-height: var(--body-line-height);
    letter-spacing: var(--body-letter-spacing);
}

.link-underline .text{
    transition: text-decoration var(--duration-short) ease;
}

.circle-divider::after {
    content: '\2022';
    margin: 0 1.3rem 0 1.5rem;
}

.circle-divider:last-of-type::after {
    display: none;
}

hr {
    border: none;
    height: 0.1rem;
    display: block;
    margin: 5rem 0;
    background-color: var(--color-background-10);
}

details > * {
    box-sizing: border-box;
}

.break {
    word-break: break-word;
}

.visibility-hidden {
    visibility: hidden;
}

/* Image Zoom */
.image-zoom {
    overflow: hidden;
    position: relative;
}

.image-zoom img{
    will-change: transform;
    transition: transform .64s ease;
}

/* No Image */
.not_img {
    height: var(--height_not_img);
    line-height: var(--height_not_img);
    background-color: rgba(35,35,35,.2);
    width: 100%;
    display: block;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    padding-left: 10px;
    padding-right: 10px;
    text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgb(0 0 0 / 10%), 0 0 5px rgb(0 0 0 / 10%), 0 1px 3px rgb(0 0 0 / 30%), 0 3px 5px rgb(0 0 0 / 20%), 0 5px 10px rgb(0 0 0 / 25%), 0 10px 10px rgb(0 0 0 / 20%), 0 20px 20px rgb(0 0 0 / 15%);   
}

img {
    max-width: 100%;
}

/* arrow animation */
.animate-arrow .icon-arrow path {
    transform: translateX(-0.25rem);
    transition: transform var(--duration-short) ease;
}

.animate-arrow:hover .icon-arrow path {
    transform: translateX(-0.05rem);
}

/* base-details-summary */
summary {
    cursor: pointer;
    list-style: none;
    position: relative;
}

summary .icon-caret {
    position: absolute;
    height: 0.6rem;
    right: 1.5rem;
    top: calc(50% - 0.35rem);
}

summary::-webkit-details-marker {
    display: none;
}

.disclosure-has-popup {
    position: relative;
}

.disclosure-has-popup[open] > summary::before {
    content: ' ';
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: block;
    cursor: default;
    background: transparent;
}

.disclosure-has-popup > summary::before {
    display: none;
}

.disclosure-has-popup[open] > summary + * {
    z-index: 100;
}

/* Focus ring - default (with offset) */
*:focus-visible {
    outline: none;
}

/* Fallback - for browsers that don't support :focus-visible, a fallback is set for :focus */
*:focus {
    outline: none;
}

/* Negate the fallback side-effect for browsers that support :focus-visible */
*:focus:not(:focus-visible) {
    outline: 0;
    box-shadow: none;
}

/* Focus ring - inset */
.focus-inset:focus-visible {
    outline: 0;
    box-shadow: none;
}

/* Fallback */
.focus-inset:focus {
    outline: 0;
    box-shadow: none;
}

.focus-inset:focus:not(:focus-visible) {
    outline: 0;
    box-shadow: none;
}

/* Dangerous for a11y - Use with care */
.focus-none {
    box-shadow: none!important;
    outline: 0!important;
}

/* START: Form */
    .field {
        display: flex;
        position: relative;
        width: 100%;
    }

    .field__form {
        display: block;
        width: 100%;
    }

    .field--with-error {
        flex-wrap: wrap;
    }

    label{
        font-size: var(--font-body-size);
        font-weight: var(--font-weight-medium);
        letter-spacing: var(--body-letter-spacing);
        line-height: var(--body-line-height);
        text-transform: capitalize;
        text-align: left;
        color: var(--form-label);
    }

    label em{
        color: #e95144;
    }

    .form-label,
    .field__label{
        display: block;
        width: 100%;
        padding: 0;
        margin: 0 0 8px 0;
    }

    .field__labelInline{
        position: absolute;
        left: 15px;
        top: 50%;
        color: var(--form-input-placeholder);
        transition: top var(--duration-short) ease, font-size var(--duration-short) ease;
        pointer-events: none;
        transform: translateY(-50%);
        margin-bottom: 0;
    }

    label.hiddenLabels{
        display: none;
        border: 0;
        clip: rect(1px,1px,1px,1px);
        height: 1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    input{
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background: transparent;
        border-radius: 0;
        min-height: unset;
        outline-offset: unset;
    }

    input[type=checkbox],
    input[type=radio] {
        display: none;
        border: 0;
        clip: rect(1px,1px,1px,1px);
        height: 1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
        box-sizing: border-box;
    }

    input[type="checkbox"] + .form-label--checkbox,
    input[type="radio"] + .form-label--radio {
        display: block;
        width: 100%;
        position: relative;
        padding: 0 0 0 23px;
        margin: 0;
        pointer-events: auto;
        cursor: pointer;
        line-height: 22px;
    }

    input[type="checkbox"] + .form-label--checkbox:before{
        content: '';
        position: absolute;
        top: 3px;
        left: 0;
        border: 1px solid #dbdbdb;
        width: 15px;
        height: 15px;
        background-color: transparent;
        border-radius: 0;
    }

    input[type="checkbox"] + .form-label--checkbox:after{
        content: '';
        display: block;
        position: absolute;
        top: 5px;
        left: 3px;
        width: 10px;
        height: 10px;
        background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='far' data-icon='check' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='svg-inline--fa fa-check fa-w-16 fa-3x'%3E%3Cpath fill='%23ffffff' d='M435.848 83.466L172.804 346.51l-96.652-96.652c-4.686-4.686-12.284-4.686-16.971 0l-28.284 28.284c-4.686 4.686-4.686 12.284 0 16.971l133.421 133.421c4.686 4.686 12.284 4.686 16.971 0l299.813-299.813c4.686-4.686 4.686-12.284 0-16.971l-28.284-28.284c-4.686-4.686-12.284-4.686-16.97 0z' class=''%3E%3C/path%3E%3C/svg%3E");
        background-size: cover;
        background-position: center;
        line-height: 1;
        transition: transform .3s ease-out;
        opacity: 0;
        transform: scale(.9);
    }

    input[type="checkbox"]:checked + .form-label--checkbox:before {
        background-color: #000;
        border-color: #000;
    }

    input[type="checkbox"]:checked + .form-label--checkbox:after {
        opacity: 1;
        transform: scale(1);
    }

    input[type="radio"] + .form-label--radio:before{
        content: "";
        display: block;
        position: absolute;
        top: 4px;
        left: 0;
        transition: all 50ms ease-out;
        background-color: var(--form-label-checkbox-before-bg);
        border: 1px solid var(--form-label-checkbox-before-border);
        width: 16px;
        height: 16px;
        border-radius: 50%;
    }

    input[type="radio"] + .form-label--radio:after{
        content: "";
        display: block;
        position: absolute;
        top: 8px;
        left: 4px;
        transition: all 50ms ease-out;
        width: 0;
        height: 0;
        border: 4px solid var(--form-label-checkbox-before-bg-checked);
        border-radius: 50%;
        transform: scale(0);
        opacity: 0;
        background-color: var(--form-label-checkbox-before-bg-checked);
    }

    input[type="radio"]:checked + .form-label--radio:before{
        border-color: var(--form-label-checkbox-before-border-checked);
    }

    input[type="radio"]:checked + .form-label--radio:after{
        opacity: 1;
        transform: scale(1);
    }

    input[type=number]::-webkit-inner-spin-button,
    input[type=number]::-webkit-outer-spin-button{
        -webkit-appearance: auto;
        -moz-appearance: auto;
        appearance: auto;
        margin: 0;
        opacity: 1;
        width: 15px;
        height: auto;
    }

    .form-input,
    .field__input{
        flex-grow: 1;
        display: block;
        width: 100%;
        height: auto;
        font-family: var(--font-body-family);
        font-size: var(--font-body-size);
        font-weight: var(--font-weight-normal);
        letter-spacing: var(--body-letter-spacing);
        line-height: var(--body-line-height);
        text-align: left;
        border: 1px solid var(--form-input-border);
        color: var(--form-input-color);
        background-color: var(--form-input-bg);
        box-shadow: unset!important;
        outline: none!important;
        padding-top: var(--btn-1-padding-top);
        padding-bottom: var(--btn-1-padding-bottom);
        padding-left: 15px;
        padding-right: 15px;
        margin: 0;
        overflow: hidden;
        border-radius: var(--btn-1-border-radius);
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

    input.form-input-placeholder::-webkit-input-placeholder{
        color: var(--form-input-placeholder);
        transition: var(--anchor-transition);
    }

    input.form-input-placeholder:-ms-input-placeholder{
        color: var(--form-input-placeholder);
        transition: var(--anchor-transition);
    }

    input.form-input-placeholder::placeholder{
        color: var(--form-input-placeholder);
        transition: var(--anchor-transition);
    }

    input.form-input-placeholder:focus::-webkit-input-placeholder{
        opacity: 0;
        visibility: hidden;
    }

    input.form-input-placeholder:focus:-ms-input-placeholder{
        opacity: 0;
        visibility: hidden;
    }

    input.form-input-placeholder:focus::placeholder{
        opacity: 0;
        visibility: hidden;
    }

    .field__input::-webkit-search-cancel-button{
        display: none;
    }

    input.form-input-hiddenPlaceholder::-webkit-input-placeholder{
        opacity: 0;
        visibility: hidden;
    }

    input.form-input-hiddenPlaceholder::-ms-input-placeholder{
        opacity: 0;
        visibility: hidden;
    }

    input.form-input-hiddenPlaceholder::placeholder {
        opacity: 0;
        visibility: hidden;
    }

    .field__input:focus ~ .field__labelInline,
    .field__input:not(:placeholder-shown) ~ .field__labelInline,
    .field__input:-webkit-autofill ~ .field__labelInline{
        font-size: 1rem;
        top: 5px;
        left: 10px;
        letter-spacing: 0.04rem;
        transform: unset;
    }

    .select__select{
        font-family: var(--font-body-family);
        font-size: var(--font-body-size);
        font-weight: var(--font-weight-normal);
        letter-spacing: var(--body-letter-spacing);
        line-height: var(--body-line-height);
        -webkit-appearance: none;
        appearance: none;
        background-color: var(--form-input-bg);
        width: 100%;
        box-sizing: border-box;
        transition: box-shadow var(--duration-short) ease;
        cursor: pointer;
        padding: 11px 15px 10px 15px;
        box-shadow: 0 0 0 .1rem var(--form-input-border);
        border: 0;
        border-radius: var(--btn-1-border-radius);
        text-align: left;
        outline: none!important;
        color: var(--form-input-color);
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000000' viewBox='0 0 24 24'%3E%3Cpath d='M 7 10 L 12 15 L 17 10 Z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 9px center;
        background-size: 20px 20px;
        min-height: 45px;
    }

    .select__select:hover{
        box-shadow: 0 0 0 .2rem var(--form-input-border);
    }

    .text-area {
        min-height: 10rem;
        resize: none;
    }

    .text-area--resize-vertical {
        resize: vertical;
    }

    .form__message {
        display: flex;
        align-items: center;
        font-size: var(--font-body-size);
        font-weight: var(--font-weight-normal);
        line-height: var(--body-line-height);
        color: var(--color-grey);
        outline: 0;
        box-shadow: none;
    }

    .form__message .icon{
        width: 20px;
        height: 20px;
        margin: 0 10px 0 0;
    }

    .form-status {
        margin: 0;
    }

    .form-status-list {
        padding: 0;
        margin: 2rem 0 4rem;
    }

    .form-status-list li {
        list-style-position: inside;
    }

    .form-status-list .link::first-letter {
        text-transform: capitalize;
    }

    .form-field.form-field--success .form-input,
    .form-field.form-field--success .form-textarea{
        border-color: var(--color-success-bg);
    }

    .form-field.form-field--error .form-input,
    .form-field.form-field--error .form-textarea{
        border-color: var(--color-error-bg);
    }

    .update-quantity__group {
        display: flex;
        max-width: 94px;
        position: relative;
    }
    .update-quantity__group .btn-quantity {
        width: 32px;
        height: 45px;
        display: block;
        position: absolute;
        left: 0;
        top: 0;
    }

    .product-edit-quantity .update-quantity__group .btn-quantity:before {
        content: '';
        position: absolute;
        width: 12px;
        height: 1px;
        left: 10px;
        top: 22px;
        background: #5a5a5a;
    }

    .product-edit-quantity .update-quantity__group .btn-quantity.plus:after {
        content: '';
        position: absolute;
        width: 12px;
        height: 1px;
        left: 10px;
        top: 22px;
        background: #5a5a5a;
        transform: rotate(90deg);
    }

    .update-quantity__group .btn-quantity.plus {
        right: 0;
        left: auto;
    }

    .update-quantity__group .form-input {
        width: 100%;
        padding: 0 32px;
        height: 45px;
        text-align: center;
    }

    .update-quantity__group input::-webkit-outer-spin-button,
    .update-quantity__group input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
        display: none;
    }

    .update-quantity__group input[type=number] {
      -moz-appearance: textfield;
    }
/* END: Form */

/* START: Component Modal */
    .modal__toggle {
        list-style-type: none;
    }

    .no-js details[open] .modal__toggle {
        position: absolute;
        z-index: 2;
    }

    .modal__toggle-close {
        display: none;
    }

    .no-js details[open] .modal__toggle-close {
        display: flex;
        z-index: 1;
        height: 1.7rem;
        width: 1.7rem;
    }

    .modal__toggle-open {
        display: flex;
    }

    .no-js details[open] .modal__toggle-open {
        display: none;
    }

    .no-js .modal__close-button.link {
        display: none;
    }

    .modal__close-button.link {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0rem;
        height: 4.4rem;
        width: 4.4rem;
        background-color: transparent;
    }

    .modal__close-button .icon {
        width: 1.7rem;
        height: 1.7rem;
    }

    .modal__content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--bg-white);
    }

    .modal__content:empty {
        display: none;
    }
/* END: Component Modal */

/* START: Component Cart Count Bubble */
    .cart-count-bubble:empty,
    .wishlist-count-bubble:empty {
        display: none;
    }

    .cart-count-bubble,
    .wishlist-count-bubble {
        position: absolute;
        top: 0px;
        right: 0px;
        min-width: 23px;
        min-height: 23px;
        text-align: center;
        border-radius: 50%;
        font-size: var(--font-body-size);
        font-weight: var(--font-weight-normal);
        line-height: 22px;
        letter-spacing: var(--body-letter-spacing);
        background-color: var(--color-global);
        color: var(--color-white);
        letter-spacing: 0
    }

    .cart-count-bubble .text{
        display: inherit;
    }

    .bottom-bar--list .cart-count-bubble {
        min-width: 22px;
        min-height: 15px;
    }
/* END: Component Cart Count Bubble */

/* START: Page Header */
    .page-header {
        display: block;
        font-family: var(--font-page-title-family);
        font-size: var(--font-page-title-size);
        font-weight: var(--font-page-title-weight);
        font-style: var(--font-page-title-style);
        line-height: var(--page-title-line-height);
        letter-spacing: var(--page-title-letter-spacing);
        text-transform: var(--page-title-text-transform);
        color: var(--color-text);
        position: relative;
        padding: 37px 0 25px 0;
        margin: 0;
    }
    .breadcrumb-container +.page-header {
        padding-top: 10px;
    }
    .page-subheader{
        display: block;
        font-family: var(--font-page-title-family);
        font-size: calc(var(--font-page-title-size) - 6px);
        font-weight: var(--font-weight-semibold);
        letter-spacing: var(--body-letter-spacing);
        line-height: calc(var(--font-page-title-size) + 2px);
        position: relative;
        color: var(--color-text);
        padding: 0 0 17px 0;
        margin: 0;
    }
/* END: Page Header */

/* START: Section Announcement-bar */
    #shopify-section-announcement-bar {
        position: relative;
        z-index: 2;
    }

    .announcement-bar__message {
        display: inline-block;
        vertical-align: top;
        width: 100%;
        padding: 2px 0;
    }

    .announcement-bar__message .message, .announcement-bar__message p{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        padding: 5px 15px;
        position: relative;
        font-size: var(--font-body-size);
        font-weight: var(--font-weight-medium);
        letter-spacing: .05em;
        line-height: var(--body-line-height);
        margin: 0;
    }

    .announcement-bar__message .message a {
        margin-left: 5px;
    }

    .announcement-bar__message .message a:hover {
        text-decoration: underline;
    }

    .announcement-bar__message .message span img{
        position: relative;
        top: -4px;
        margin-right: 25px;
    }

    .announcement-bar__message .message span.btn{
        margin-left: 32px;
        font-weight: var(--font-weight-medium);
        padding: 1px 10px 1px 10px;
        border-radius: 3px;
        min-width: 110px;
        border: 1px solid;
        letter-spacing: 0;
        color: var(--button-color-style);
        background: var(--button-background-style);
        border-color: var(--button-border-style);
    }

    .announcement-close {
        display: block;
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        width: 17px;
        height: 17px;
        line-height: 1;
        font-size: 0;
        letter-spacing: 0;
        background: none;
        border: none;
        padding: 0;
    }

    .announcement-close svg {
        width: 100%;
        height: 100%;
        fill: var(--icon);
        stroke: transparent;
    }

    .top-mesage-countdown{
        text-align: center;
        font-weight: var(--font-weight-bold);
        padding-top: 10px;
    }

    .announcement-bar .announcement-countdown{
        padding: 14px 0 12px 0;
    }

    .announcement-bar .announcement-countdown .clock-item{
        border-radius: 4px;
        box-shadow: 0px 3px 1px rgb(247 248 250 / 80%);
        margin-left: 10px;
        margin-right: 10px;
        width: 48px;
        height: 50px;
        position: relative;
    }

    .announcement-bar .announcement-countdown .clock-item:before{
        content: ":";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: -14px;
        font-size: 22px;
    }

    .announcement-bar .announcement-countdown .clock-item:last-child:before{
        content: none;
    }

    .announcement-bar .announcement-countdown .clock-item span.num{
        font-size: 20px;
    }

    .announcement-bar .announcement-countdown .clock-item span.text{
        font-size: 12px;
        text-transform: capitalize;
    }

    .announcement-bar .announcement-countdown+.announcement-close{
        width: 21px;
        height: 21px;
    }

    .announcement-bar [data-announcement-bar] .slick-arrow.slick-prev svg{
        transform: rotate(0deg);
    }

    .announcement-bar [data-announcement-bar] .slick-arrow{
        background: transparent;
        border: none;
        opacity: 1 !important;
        box-shadow: none;
    }

    .announcement-bar [data-announcement-bar] .slick-arrow svg{
        width: 18px;
        height: 18px;
        transform: rotate(0deg) !important;
    }
/* END: Section Announcement-bar */

/* START: Section Header */
    .shopify-section-header-sticky {
        position: sticky;
        top: 0;
        transition: opacity .1s,visibility .2s,transform .2s,-webkit-transform .2s,top .2s;
    }

    .shopify-section-header-hidden {
        transform: translateY(-100%);
    }

    .shopify-section-header-sticky.slide-down {
        transform: translateY(-100%);
        animation: headerSlideDown 250ms ease-in-out forwards;
    }

    #shopify-section-header.animate {
        transition: transform 0.25s ease-out;
    }

    .header{
        pointer-events: auto;
    }

    @media screen and (min-width: 1025px) {
        .header{
            opacity: .01;
            animation: slowShow 550ms ease-in forwards;
        }
    }
/* END: Section Header */

/* START: Main Header Layout */
    .header-wrapper {
        display: block;
        position: relative;
    }

    .header-top{
        display: none;
        position: relative;
        background-color: var(--bg-white);
        padding-top: 15px;
        padding-bottom: 16px;
    }

    .header-top--wrapper{
        display: flex;
        flex-wrap: nowrap;
        align-items: flex-end;
        justify-content: space-between;
    }

    .shopify-section-header-sticky .header-top--wrapper{
        min-height: auto;
    }

    .header-top--wrapper-2{
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .header__logo .header__heading svg, .header-mobile--icon .header__heading-link svg{
        width: 100%;
        height: auto;
    }

    .header-top--left,
    .header-top--right{
        display: block;
        position: relative;
        font-size: 0;
        letter-spacing: 0;
    }

    .header-top--right .free-shipping-text {
        font-size: var(--font-body-size);
        font-weight: var(--font-weight-semibold);
        text-transform: uppercase;
        letter-spacing: .05em;
        margin-bottom: 15px;
    }

    .header__group .header__icon--cart svg{
        width: 20px;
        height: 20px;
        margin-right: 8px;
        position: relative;
        top: -2px;
    }

    .header__group .cart-count-bubble {
        margin-left: 8px;
    }

    .header__group .header__icon--wishlist svg {
        width: 19px;
        height: 18px;
        margin-right: 8px;
    }

    .top-language-currency {
        display: inline-block;
    }

    .top-language-currency .halo-top-currency, .top-language-currency .halo-top-language {
        position: relative;
        display: inline-block;
        vertical-align: middle;
    }

    .halo-top-language+.halo-top-currency {
        margin-left: 7px;
    }

    .halo-top-language .icon{
        width: 16px;
        height: 16px;
    }

    .halo-top-language .icon svg{
        width: 16px;
        height: 16px;
        stroke: initial;
        vertical-align: top;
    }

    .halo-top-language .text {
        font-family: var(--font-body-family);
        text-transform: uppercase;
        font-weight: var(--font-weight-medium);
        margin-left: 5px;
        margin-right: 5px;
    }

    .halo-top-language .text+svg {
        width: 9px;
        height: 10px;
    }

    .halo-top-language .disclosure__button {
        border: 0;
    }

    .dropdown-language .disclosure__list {
        padding: 8px 0;
    }

    .dropdown-language .localization-form .disclosure__link{
        display: flex;
        align-items: center;
        padding: 7px 15px;
    }

    .dropdown-language .localization-form {
        min-width: 100px;
    }

    .dropdown-language .localization-form .disclosure__link .icon{
        width: 22px;
        height: 22px;
        margin-right: 6px;
    }

    .dropdown-language .localization-form .disclosure__link .icon svg{
        width: 22px;
        height: 22px;
    }

    .dropdown-language .localization-form .disclosure__link.disclosure__link--active, 
    .dropdown-language .localization-form .disclosure__link:hover {
        text-decoration: underline;
        text-underline-offset: 2px;
    }

    .header-top-right-group {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .header-top-right-group .customer-service-text{
        font-size: var(--font-body-size);
        margin-right: 15px;
        letter-spacing: var(--body-letter-spacing);
    }

    .header-top--wrapper .customer-service-text p {
        margin: 0;
    }

    .halo-top-currency .currency-dropdown{
        line-height: 1;
    }

    .halo-top-currency .currency-dropdown .dropdown-label{
        display: flex;
        align-items: center;
        cursor: pointer;
    }

    .halo-top-currency .currency-dropdown.shopify-currency .dropdown-label {
        display: flex;
        align-items: center;
    }

    .halo-top-currency .shopify-currency .img-icon {
        width: 16px;
        height: 16px;
        display: inline-block;
        line-height: 1;
        position: relative;
        top: -1px;
    }

    .halo-top-currency .currency-menu .text+svg{
        display: none;
    }

    .halo-top-currency .text {
        text-transform: uppercase;
        font-weight: var(--font-weight-medium);
        color: #232323;
        margin-left: 5px;
        margin-right: 5px;
    }

    .halo-top-language .text+svg {
        width: 9px;
        height: 10px;
    }

    .halo-top-currency .icon{
        width: 16px;
        height: 16px;
        display: inline-block;
        line-height: 1;
        position: relative;
        top: -1px;
    }

    .halo-top-currency .text+svg {
        position: relative;
        top: 0px;
        width: 9px;
        height: 10px;
    }

    .halo-top-currency .currency-dropdown .icon svg {
        width: 100%;
        height: 100%;
        stroke: initial;
    }

    .halo-top-currency .currency-dropdown .icon svg polygon {
        display: block;
    }

    .dropdown-language, .dropdown-currency {
        display: flex;
        justify-content: flex-end;
        background: var(--bg-white);
        position: absolute;
        right: 0;
        top: 10px;
        opacity: 0;
        pointer-events: none;
        z-index: -1;
        overflow: hidden;
        webkit-transition: all .3s ease;
        transition: all .3s ease;
        box-shadow: 0px 1px 4px 0px rgb(0 0 0 / 15%);
    }

    .dropdown-language.show, .dropdown-currency.show {
        top: calc(100% + 4px);
        opacity: 1;
        z-index: 9;
        overflow: visible;
        pointer-events: auto;
    }

    .header__icons{
        position: static!important;
    }

    .header *[tabindex='-1']:focus {
        outline: none;
    }

    .header__heading{
        display: block;
        font-size: 0;
        letter-spacing: 0;
    }

    .header__heading .h2 {
        font-size: var(--font-heading-size);
        font-weight: var(--font-weight-normal);
        line-height: var(--body-line-height);
        letter-spacing: var(--letter-spacing);
        color: var(--color-text);
        line-height: normal;
        white-space: nowrap;
        overflow: hidden;
    }

    .header__heading-logo {
        width: 100%;
    }

    .header__heading--item .header__heading-link{
        display: none;
    }

    .header__heading--item .header__heading-link.is-active{
        display: flex;
        align-items: center;
    }

    .header__iconItem{
        display: inline-block;
        vertical-align: middle;
    }

    .header-top-right-group .header__search{
        margin-left: 20px;
    }

    .header__iconItem .header__icon--cart .cart-count-bubble{
        position: relative;
    }

    .header__icon--cart *, .header__icon--wishlist *{
        display: inline-block !important;
        vertical-align: middle;
    }

    .cart-text, .wishlist-text, .customer-links {
        font-size: var(--font-body-size);
        letter-spacing: var(--body-letter-spacing);
    }

    .customer-links {
        display: inline-block;
        vertical-align: middle;
        margin-left: 25px;
    }

    .header__search .search-modal__form {
        max-width: 160px;
    }

    .header__search .search-modal__form .search__input {
        padding: 3px 10px;
        background-color: transparent;
        border: 0;
    }

    .header__search .search-modal__form .search__button {
        min-width: inherit;
        text-overflow: unset;
        padding: 1px 10px 4px;
        border-radius: 0;
        min-height: 30px;
        background: transparent;
        box-shadow: none;
        border: 0;
    }

    .header__search .search-modal__form .search__button svg {
        width: 14px;
        height: 14px;
        position: relative;
        top: 1px;
    }

    .header-search-close{
        display: none;
        background: none;
        border: none;
    }

    .header__icon{
        display: inline-block;
        vertical-align: middle;
        font-size: 0;
        letter-spacing: 0;
        line-height: 1;
        width: auto;
        position: relative;
    }

    .header__icon span{
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .header__icon .icon {
        display: block;
    }

    .header__icon--menu .icon{
        transform: scale(1);
        transition: transform 150ms ease,opacity 150ms ease;
    }

    .header__icon .icon-search-1 {
        transform: rotate(-90deg);
    }

    .section-header-mobile {
        z-index: 20;
    }

    .header-mobile{
        box-shadow: 0 1px 3px rgb(0 0 0 / 10%);
        background: var(--bg-color);
        padding: var(--p-top) 0 var(--p-bottom);
        display: block;
    }

    @media screen and (min-width: 1025px) {
        .section-header-mobile{
            display: none;
        }
    }

    .header-mobile--wrapper{
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        grid-gap: min(30px, 7%);
    }

    .header-mobile--item{
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
    }

    .header-mobile--left{
        justify-content: flex-start;
    }

    .header-mobile__item--logo {
        display: flex;
        width: auto;
        flex: 1;
        justify-content: center;
    }

    .header-mobile--right{
        justify-content: flex-end;
    }

    .header-mobile--icon{
        display: flex;
        align-items: center;
        width: auto;
        min-height: 50px;
    }

    .header-mobile__item--cart {
        padding-right: 10px;
    }

    .header-mobile--icon.item__mobile--hamburger {
        margin-right: 3px;
    }

    .header-mobile--icon .header__icon--account svg{
        width: 26px;
        height: 26px;
    }

    .header-mobile--icon .header__icon--cart svg{
        width: 22px;
        height: 22px;
    }

    .header-mobile--icon .header__heading-link,
    .header-mobile--icon .header__heading-logo {
        text-align: center;
    }

    .header-mobile--icon .header__heading-link .h2,
    .header-mobile--icon .header__heading-logo .h2 {
        font-size: var(--logo-font-size);
        font-weight: var(--logo-font-weight);
        color: var(--logo-color);
    }

    .header-mobile__item .icon {
        fill: var(--i-color);
    }

    .header-mobile__item .header__icon--cart .cart-count-bubble {
        color: var(--color-bubble);
        background-color: var(--bg-bubble);
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .header-mobile__item--search .modal__toggle-close {
        display: none;
    }

    /* Header Style 02 */
    .mobile-header-2 .header-mobile--right .header-mobile--icon {
        padding-right: 10px;
    }

    .mobile-header-2 .header-mobile--right .header-mobile--icon + .header-mobile--icon {
        margin-left: 25px;
    }

    .mobileMenu-toggle {
        width: 24px;
        height: 24px;
        font-size: 0;
        overflow: hidden;
        position: relative;
        z-index: 1;
        outline: none;
        box-shadow: none;
        display: block;
        padding: 0;
        background: none;
        border: none;
    }

    .mobileMenu-toggle__Icon,
    .mobileMenu-toggle__Icon::before,
    .mobileMenu-toggle__Icon::after {
        content: "";
        display: block;
        height: 2px;
        width: 100%;
        position: absolute;
        transform: rotate(0deg);
        transition: transform 100ms ease-in, top 100ms ease-in 150ms, bottom 100ms ease-in 150ms;
    }

    .mobileMenu-toggle__Icon {
        top: 50%;
        width: calc(100%);
        transform: translateY(-50%);
        transition: background-color 10ms ease-in 100ms;
    }

    .mobileMenu-toggle__Icon::before {
        top: -8px;
    }

    .mobileMenu-toggle__Icon::after {
        bottom: -8px;
    }

    .mobileMenu-toggle.is-open .mobileMenu-toggle__Icon {
        background-color: transparent;
        transition-delay: 100ms;
    }

    .mobileMenu-toggle.is-open .mobileMenu-toggle__Icon::before,
    .mobileMenu-toggle.is-open .mobileMenu-toggle__Icon::after {
        bottom: auto;
        top: auto;
        transition: transform 100ms ease-in 150ms, top 100ms ease-in, bottom 100ms ease-in;
    }

    .mobileMenu-toggle.is-open .mobileMenu-toggle__Icon::before {
        top: 0;
        transform: rotate(45deg);
    }

    .mobileMenu-toggle.is-open .mobileMenu-toggle__Icon::after {
        bottom: 0;
        transform: rotate(-45deg);
    }

    .mobileMenu-toggle__Icon, .mobileMenu-toggle__Icon::before, .mobileMenu-toggle__Icon::after {
        background-color: var(--i-color);
    }

    details:not(.menu-opening) > .header__icon--menu .icon-close,
    details.menu-opening > .header__icon--menu .icon-hamburger{
        display: none;
        opacity: 0;
        visibility: hidden;
        transform: scale(.8);
    }
/* END: Main Header Layout */

/* START: Product Scroll */
    .products-cursor{
        display: none;
    }
/* END: Product Scroll */

/* START: Search */
    menu-drawer + .header__search {
        display: none;
    }

    .no-js details[open] > .header__icon--search {
        top: 1rem;
        right: 0.5rem;
    }
/* END: Search */

/* START: Slick */
    .slick-arrow {
        display: block;
        line-height: 1;
        font-size: 0;
        letter-spacing: 0;
        cursor: pointer;
        position: absolute;
        top: 50%;
        padding: 8px;
        width: var(--arrow-width);
        height: var(--arrow-height);
        transform: translateY(-50%);
        z-index: 1;
        outline: none;
        background: var(--arrow-background-color);
        border: none;
        transition: var(--anchor-transition);
        border: var(--arrow-border-width) solid var(--arrow-border-color);
        border-radius: var(--arrow-border-radius);
    }

    .slick-arrow svg{
        max-width: 100%;
        max-height: 100%;
        width: var(--arrow-size-icon);
        height: var(--arrow-size-icon);
        color: var(--arrow-color);
        fill: var(--arrow-color);
        stroke: transparent;
    }

    .slick-arrow.slick-prev {
        left: 15px;
        /*transform: translateY(-50%) rotate(-180deg);*/
        transform: translateY(-50%) rotate(0deg);
    }

    .slick-arrow.slick-prev svg{
        transform: rotate( -180deg);
    }

    .slick-arrow.slick-next {
        right: 15px;
    }

    .slick-arrow.slick-arrow--bottom{
        top: auto;
        transform: unset;
        width: 30px;
        height: 30px;
        padding: 0;
    }

    .slick-arrow--bottom.slick-prev{
        left: 0;
        transform: rotate(-180deg);
    }

    .slick-arrow--bottom.slick-next{
        right: 0;
    }

    .enable_button_disable_arrows .slick-arrow.slick-disabled{
        display: block !important;
    }

    .slick-arrow.slick-disabled {
        display: none !important;
        opacity: .4;
        filter: alpha(opacity=40);
    }

    .slick-dots, .slider-dots {
        position: absolute;
        top: auto;
        bottom: -40px;
        left: 0;
        list-style: none;
        display: block;
        text-align: center;
        font-size: 0;
        letter-spacing: 0;
        padding: 0;
        width: 100%;
    }

    .slick-dots li, .slider-dots li {
        display: inline-block;
        vertical-align: middle;
        width: auto;
        height: auto;
        margin: 0 7px;
        position: relative;
        border-radius: 50%;
    }

    .slick-dots li:first-child, .slider-dots li:first-child {
        margin-left: 0;
    }

    .slick-dots li:last-child, .slider-dots li:last-child {
        margin-right: 0;
    }

    .slick-dots li button, .slider-dots li button {
        display: inline-block;
        vertical-align: middle;
        position: relative;
        border-radius: 50%;
        border: 1px solid var(--dots-border-color);
        background: var(--dots-color);
        font-size: 0;
        letter-spacing: 0;
        padding: 0;
        width: var(--dots-width);
        height: var(--dots-height);
        cursor: pointer;
        transition: var(--anchor-transition);
    }

    .slick-dots li.slick-active button, .slider-dots li.active button {
        background: var(--dots-color-active);
        border-color: var(--dots-border-color-active);
    }

    .slick-loading .slick-slide {
        visibility: visible !important;
    }

    /* Arrows Style 2 */
    .style-arrows-2 .slick-arrow{
        padding: 0px 0px 2px;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1)
    }

    .style-arrows-2 .slick-arrow.slick-prev{
        transform: translateY(-50%) rotate(0deg);
    }

    .style-arrows-2 .slick-arrow.slick-prev svg{
        transform: rotate(0deg);
    }

    .style-arrows-2 .slick-arrow.slick-next svg{
        transform: rotate( -180deg);
    }

    /* Dots Style 2 */
    .style-dots-2 .slick-dots, .style-dots-2 .slider-dots{
        width: auto;
        background-color: var(--dots-style2-background-opacity);
        border-radius: 4px;
        margin: 0 auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .style-dots-2 .slick-dots li:first-child, .style-dots-2 .slider-dots li:first-child{
        margin-left: 5px;
    }

    .style-dots-2 .slick-dots li:last-child, .style-dots-2 .slider-dots li:last-child{
        margin-right: 5px;
    }

    .style-dots-2 .slick-dots li, .style-dots-2 .slider-dots li{
        margin: 0 5px;
        vertical-align: top;
    }

    .style-dots-2 .slideshow .slick-dots{
        bottom: 34px;
    }
/* END: Slick */

/* START: Popup Lookbook Product */
    .select-icon {
        position: absolute;
        cursor: pointer;
        width: 25px;
        height: 25px;
        z-index: 2
    }

    .select-icon .glyphicon {
        width: 24px;
        height: 24px;
        display: block;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        border-radius: 50%;
        position: relative;
        cursor: pointer;
        transition: var(--anchor-transition);
        transform: rotate(0deg);
    }

    .select-icon .glyphicon:before,
    .select-icon .glyphicon:after {
        position: absolute;
        top: 50%;
        left: 50%;
        content: "";
        -moz-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%)
    }

    .select-icon .glyphicon:before {
        width: 10px;
        height: 2px
    }

    .select-icon .glyphicon:after {
        width: 2px;
        height: 10px
    }

    .select-icon:before {
        -webkit-animation: box-shadow 1.5s linear infinite;
        animation: box-shadow 1.5s linear infinite;
        content: "";
        width: 24px;
        height: 24px;
        position: absolute;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        border-radius: 50%;
        left: 0;
        top: 0
    }

    .popup-lookbook-product-style-1 .select-icon.active .glyphicon {
        transform: rotate(45deg);
    }

    .halo-lookbook-popup{
        position: absolute;
        width: 200px;
        max-width: 100%;
        display: none;
        z-index: 5;
    }

    .halo-lookbook-popup.style-2 {
        width: 230px !important;
        height: 85px !important;
        display: block !important;
        opacity: 0;
        transition: opacity 250ms ease-in-out;
    }

    .halo-lookbook-popup.style-2.visible {
        opacity: 1;
    }
    
    .halo-lookbook-popup .halo-popup-wrapper.style-1,
    .halo-lookbook-popup .halo-popup-wrapper.style-2 {
        position: relative;
        -webkit-box-shadow: 0 1px 4px rgb(0 0 0 / 15%);
        -moz-box-shadow: 0 1px 4px rgba(0,0,0,.15);
        box-shadow: 0 1px 4px rgb(0 0 0 / 15%);
    }

    .halo-lookbook-popup .halo-popup-wrapper.style-1 {
        padding: 18px 18px 7px 18px;
        background-color: #fff;
        border: 1px solid #fbfbfb;
        -moz-border-radius: 1px;
        -webkit-border-radius: 1px;
        -ms-border-radius: 1px;
        -o-border-radius: 1px;
        border-radius: 1px;
    }

    /* START Lookbook Style 2 */
    :root {
        --lookbook-style-2-border-radius: 0.5rem;
    }

    .halo-lookbook-popup .halo-popup-wrapper.style-2 {
        padding: 9px;
        padding-right: 13px;
        background: var(--lookbook-background-color);
        -moz-border-radius: var(--lookbook-style-2-border-radius);
        -webkit-border-radius: var(--lookbook-style-2-border-radius);
        -ms-border-radius: var(--lookbook-style-2-border-radius);
        -o-border-radius: var(--lookbook-style-2-border-radius);
        border-radius: var(--lookbook-style-2-border-radius);
        max-width: 170px;
        height: 63px;
        max-height: 63px;
        cursor: pointer;
    }

    .halo-lookbook-popup .halo-popup-wrapper.style-2::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 12px;
        transform: translateY(-50%) rotate(-45deg);
        border-style: solid;
        border-width: 0 1.3px 1.3px 0;
        border-color: var(--lookbook-text-color);
        display: inline-block;
        padding: 2px;
        transition: transform 150ms ease-in-out;
    }

    .halo-lookbook-popup.swapped .halo-popup-wrapper.style-2::after {
        right: auto;
        left: 12px;
        transform: translateY(-50%) rotate(135deg);
    }

    .halo-lookbook-popup .halo-popup-wrapper.style-2:hover::after {
        transform: translateY(-50%) translateX(3px) rotate(-45deg);
    }

    .halo-lookbook-popup.swapped .halo-popup-wrapper.style-2:hover::after {
        transform: translateY(-50%) translateX(-3px) rotate(135deg);
    }

    .halo-lookbook-popup .halo-popup-wrapper.style-2 .card-information {
        padding-top: 0px;
    }

    .halo-lookbook-popup .halo-popup-wrapper.style-2 .card-title {
        text-align: left;
        margin-bottom: 0;
        color: var(--lookbook-text-color);
        -webkit-line-clamp: 1;
    }

    .halo-lookbook-popup.swapped .halo-popup-wrapper.style-2 .card-title {
        text-align: right;
    }

    .halo-lookbook-popup .halo-popup-wrapper.style-2 .card-price {
        justify-content: flex-start;
        font-size: calc(var(--product-title-font-size) + 2px);
        font-weight: var(--font-weight-semibold);
        margin-bottom: 0;
        color: var(--lookbook-text-color);
    }

    .halo-lookbook-popup.swapped .halo-popup-wrapper.style-2 .card-price {
        justify-content: flex-end;
    }

    [data-show-lookbook-container][data-style="2"] [data-lookbook-item-container] {
        position: relative;
    }

    /* END Style 2 */

    .halo-lookbook-popup .overlay {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        cursor: pointer;
        display: block;
    }

    .halo-lookbook-popup .overlay {
        background-color: transparent;
    }

    .halo-lookbook-popup .close-modal{
        position: fixed;
        right: 15px;
        top: 15px;
    }

    .halo-lookbook-popup .close-modal svg{
        color: #fff;
        width: 24px;
        height: 24px;
    }
/* END: Popup Lookbook Product */

/* START: Popup */
    .halo-popup{
        display: block;
        position: fixed;
        top: 50%;
        left: 50%;
        height: auto;
        z-index: 101;
     /*   overflow-x: hidden;
        overflow-y: auto;*/
        width: 100%;
        max-width: calc(100% - 30px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        background-color: var(--bg-white);
        box-shadow: 0px 6px 27px 0px rgb(0, 0, 0, 0.2);
        transition: opacity 300ms, transform 350ms ease, visibility 350ms ease;
        transform: translate3d(calc(-50% - 10px),-50%,0);
    }

    .halo-popup-banner{
        display: none;
        position: relative;
    }

    .halo-popup-banner img{
        width: 100%;
    }

    .halo-popup-wrapper{
        position: relative;
        padding: 30px;
    }

    .halo-popup-header{
        margin: 0 0 25px 0;
        padding: 21px 0 0 0;
    }

    .halo-popup-close {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 30px;
        height: 30px;
        line-height: 1;
        font-size: 0;
        letter-spacing: 0;
        background: var(--bg-black);
        text-align: center;
        padding: 7px;
        border: none;
    }

    .halo-popup-close svg {
        width: 100%;
        height: 100%;
        fill: var(--color-white);
        /*stroke: transparent;*/
    }

    .halo-popup-title{
        font-size: var(--font-heading-size);
        overflow: hidden;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
        text-transform: uppercase;
        margin: 0;
        padding: 0;
    }

    .halo-popup-desc{
        display: block;
        font-size: var(--font-body-size);
        font-weight: var(--font-weight-normal);
        line-height: var(--body-line-height);
        letter-spacing: var(--body-letter-spacing);
        padding: 2px 0 20px 0;
        color: var(--color-text);
    }

    .halo-popup-scroll{
        position: relative;
        overflow-x: hidden;
        overflow-y: auto;
        max-height: 80vh;
        webkit-overflow-scrolling: touch;
    }

    .customPopup-banner{
        height: auto;
        max-height: 81vh;
    }

    .customPopup-header{
        padding-top: 0!important;
    }

    .customPopup-header-2{
        padding: 3px 30px!important;
        margin-bottom: 0;
        border-bottom: 1px solid #efefef;
    }

    .customPopup-close{
        top: 10px;
        right: 10px;
        width: 15px;
        height: 15px;
        padding: 0;
        background-color: var(--bg-white);
    }

    .customPopup-close svg{
        fill: var(--bg-black);
    }

    .customPopup-title{
        font-size: calc(var(--font-body-size) + 4px);
        font-weight: var(--font-weight-bold);
    }

    .customPopup-title-2{
        font-size: var(--font-body-size);
        font-weight: var(--font-weight-normal);
        letter-spacing: var(--body-letter-spacing);
        text-transform: capitalize;
        color: var(--text-cart);
        padding-top: 10px;
        padding-bottom: 10px;
    }

    body.term-condition-show .halo-term-condition-popup {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate3d(-50%,-50%,0);
        z-index: 1000;
    }

    body.term-condition-show .background-overlay{
        opacity: 1;
        pointer-events: auto;
        z-index: 999;
    }
/* END: Popup */

/* START: Sidebar */
    .halo-sidebar{
        position: fixed;
        top: 0;
        bottom: 0;
        padding: 0;
        height: 100%;
        z-index: 101;
        max-width:calc(100vw - 40px);
        width: 100%;
        opacity: 1;
        visibility: hidden;
        transition: opacity 500ms, transform var(--duration-long) ease, visibility var(--duration-long) ease;
        /*transition: transform var(--duration-default) ease, visibility var(--duration-default) ease;*/
        background-color: var(--bg-white);
    }

    .halo-sidebar-header{
        position: relative;
        padding: 24px 20px 0px 20px;
        background-color: #fff;
    }

    .halo-sidebar-header .title{
        display: block;
        font-size: calc(var(--font-body-size) + 4px);
        font-style: var(--font-heading-style);
        font-weight: var(--font-weight-semibold);
        letter-spacing: var(--body-letter-spacing);
        line-height: var(--body-line-height);
        color: var(--color-text);
        text-transform: capitalize;
    }

    .halo-sidebar-close{
        position: absolute;
        top: 16px;
        width: 40px;
        height: 40px;
        font-size: 0;
        z-index: 10;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        pointer-events: auto;
        background-color: transparent;
        border: none;
        padding: 0;
    }

    .halo-sidebar-close svg{
        display: block;
        width: 18px;
        height: 18px;
        fill: var(--color-text);
        stroke: transparent;
    }

    .halo-sidebar-wrapper{
        height: 100%;
        position: relative;
        overflow-x: hidden;
        overflow-y: auto;
        padding: 0 0 70px 0;
    }

    .halo-cart-sidebar .halo-sidebar-wrapper{
        overflow-y: hidden;
    }

    .halo-sidebar.halo-sidebar-left{
        left: 0;
        transform: translate3d(-101%, 0, 0);
    }

    .halo-sidebar.halo-sidebar-right{
        right: 0;
        transform: translate3d(101%, 0, 0);
    }

    .halo-sidebar.halo-sidebar-left .halo-sidebar-close{
        left: 20px;
    }

    .halo-sidebar.halo-sidebar-right .halo-sidebar-close{
        right: 20px;
    } 
/* END:  Sidebar */

/* START: Alert */
    .alertBox{
        font-size: var(--font-body-size);
        font-weight: var(--font-weight-normal);
        line-height: var(--body-line-height);
        letter-spacing: var(--body-letter-spacing);
        padding: 13px 15px;
    }

    .alertBox-message{
        margin-top: 0;
        margin-bottom: 0;
    }

    .alertBox.alertBox--success{
        color: var(--color-success);
        background-color: var(--color-success-bg);
    }

    .alertBox.alertBox--error{
        color: var(--color-error);
        background-color: var(--color-error-bg);
    }

    .alertBox.alertBox--info{
        color: var(--color-info);
        background-color: var(--color-info-bg);
    }
/* END: Alert */

/* START: Notify Me */
    .halo-notifyMe{
        padding: 30px 0 0 0;
    }

    .halo-notifyMe .form-field{
        display: flex;
        flex-wrap: wrap;
    }

    .halo-notifyMe .form-input{
        width: calc(100% - 185px);
    }

    .halo-notifyMe .form-label{
        color: var(--color-text2);
    }

    .halo-notifyMe .button{
        width: 175px;
        margin: 0 0 0 10px;
    }

    .notifyMe-text{
        display: none;
        margin: 20px 0 0 0;
    }

    .halo-notifyMe--popup{
        padding-top: 0;
    }

    .halo-notifyMe--popup .form-label{
        text-align: center;
        margin-bottom: 23px;
    }

    .halo-notifyMe--popup .form-input{
        width: 100%;
    }

    .halo-notifyMe--popup .button{
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
    }

    body.notify-me-show{
        overflow: hidden;
        /*height: 100%;*/
    }

    body.notify-me-show .background-overlay{
        opacity: 1;
        pointer-events: all;
    }

    body.notify-me-show .halo-notify-popup{
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate3d(-50%,-50%,0);
    }
/* END: Notify Me */

/* START: Menu */
    .header__inline-menu {
        display: block;
        grid-area: navigation;
    }

    .header__inline-menu[data-navigation] .menu-heading-mobile.halo-sidebar-header {
        display: none;
    }

    .list-menu {
        display: block;
        list-style: none;
        padding: 0;
        margin: 0;
        font-size: 0;
        letter-spacing: 0;
    }

    .menu-lv-item{
        display: inline-block;
        vertical-align: top;
        position: relative;
    }

    .menu-lv-2,
    .menu-lv-3{
        width: 100%;
        padding: 0 20px 0 0;
    }

    .menu-lv-item > a, .menu-lv-item .site-nav-list-dropdown > a{
        display: block;
        position: relative;
    }

    .menu-lv-item .site-nav-list-dropdown > a.has-icon {
        padding-right: 15px;
    }

    .menu-lv-1__action {
        padding: 11px 20px 12px 20px;
    }

    .menu-lv-2__action,
    .menu-lv-3__action {
        padding: 8px 0;
        border-bottom: 1px solid #ebebeb;
    }

    .menu-lv-1__action,
    .menu--mobile-lv-1__action{
        font-family: var(--font-menu-lv1-family);
        font-size: var(--font-menu-lv1-size);
        font-weight: var(--font-menu-lv1-weight);
        line-height: var(--menu-lv1-line-height);
        letter-spacing: var(--menu-lv1-letter-spacing);
        text-transform: var(--menu-lv1-text-transform);
    }

    .menu-lv-2__action,
    .menu--mobile-lv-2__action{
        font-family: var(--font-menu-lv2-family);
        font-size: var(--font-menu-lv2-size);
        font-weight: var(--font-menu-lv2-weight);
        line-height: var(--menu-lv2-line-height);
        letter-spacing: var(--menu-lv2-letter-spacing);
        text-transform: var(--menu-lv2-text-transform);
    }

    .menu-lv-3__action,
    .menu--mobile-lv-3__action{
        font-family: var(--font-menu-lv3-family);
        font-size: var(--font-menu-lv3-size);
        font-weight: var(--font-menu-lv3-weight);
        line-height: var(--menu-lv3-line-height);
        letter-spacing: var(--menu-lv3-letter-spacing);
        text-transform: var(--menu-lv3-text-transform);
    }

    .menu-lv-1__action .text{
        text-decoration-thickness: 0.2rem!important;
    }

    .menu-lv-1 .label{
        display: inline-block;
        vertical-align: middle;
        position: absolute;
        right: 7px;
        top: -9px;
        font-size: calc(var(--font-body-size) - 2px);
        font-weight: var(--font-weight-normal);
        letter-spacing: 0;
        line-height: 15px;
        height: 15px;
        padding: 0px 6px;
        text-transform: capitalize;
        text-align: center;
        border-radius: 1px;
    }

    .site-nav-title .label,
    .site-nav-link .label,
    .menu-lv-2__action .label{
        position: relative;
        top: 0px;
        margin-left: 20px;
    }

    .menu-lv-3__action .label{
        position: relative;
        top: -2px;
        margin-left: 20px;
    }

    .menu-lv-1 .label:before{
        content: "";
        position: absolute;
        left: 50%;
        bottom: -9px;
        transform: translateX(-50%) rotate(180deg);
        border: 5px solid transparent;
    }

    .site-nav-title .label:before,
    .site-nav-link .label:before,
    .menu-lv-2__action .label:before,
    .menu-lv-3__action .label:before{
        left: -5px;
        bottom: 4px;
        transform: translate(-50%) rotate(270deg);
    }

    .menu-lv-item.menu-lv-1 .icon-dropdown{
        display: none;
    }

    .menu-lv-item:last-child .site-nav-list-dropdown > a,
    .menu-lv-item:last-child > a{
        border-bottom: none;
    }

    .menu-lv-item .text {
        transition: text-decoration var(--duration-short) ease;
    }

    .menu-lv-item .icon {
        display: block;
        position: absolute;
        height: 10px;
        width: 10px;
        top: 50%;
        right: 0px;
        transform: translateY(-50%);
    }

    .menu-lv-item.has-megamenu{
        position: static;
    }

    .menu-lv-blink .label.new-label,
    .menu-lv-blink .label.hot-label,
    .menu-lv-blink .label.sale-label{
        -webkit-animation: .6s blink infinite;
        animation: .6s blink infinite;
        opacity: 0; 
    }
/* END: Menu */

/* START: Product Grid */
    .products-grid{
        display: block;
        position: relative;
        margin: 0 -15px;
        font-size: 0;
        letter-spacing: 0;
    }

    .products-grid .product{
        display: inline-block;
        vertical-align: top;
        width: 100%;
        padding: 0 15px;
        margin-top: 30px;
    }

    .products-grid .product:first-child{
        margin-top: 0;
    }

    .products-grid.slider .product {
        margin-top: 0;
        flex-shrink: 0;
    }

    .products-grid .loading{
        font-size: var(--font-body-size);
    }
/* END: Product Grid */

/* START: Infinite Scroll */
    .product-infinite-scroll{
        margin: 55px 0 0 0;
    }

    .product-infinite-scroll .button{
        width: 100%;
        max-width: 270px;
        margin-left: auto;
        margin-right: auto;
    }

    .product-infinite-scroll .button span{
        pointer-events: none;
    }

    .product-infinite-scroll .button svg{
        width: 14px;
        height: 14px;
        margin-right: 8px;
        margin-top: -2px;
    }

    .product-infinite-scroll .button.is-loading{
        pointer-events: none;
    }

    .product-infinite-scroll .button[disabled] {
        display: none !important;
    }
/* END: Infinite Scroll */

/* START: Footbar Fixed */
    .footbar-fixed{
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 10;
        line-height: 0;
        transition: all .3s ease;
    }
    .sticky-toolbar-mobile .footbar-fixed{
        bottom: 60px;
    }
    .footbar-fixed .footbar-fixed-left, .footbar-fixed .footbar-fixed-right {
      line-height: 22px;
      display: inline-block;
    }
    .footbar-fixed-left {
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      display: inline-block;
      vertical-align: top;
      transition: all 0.3s ease;
    }
    .footbar-fixed-right {
      left: 0;
      right: 0;
      bottom: 0;
      display: inline-block;
      vertical-align: top;
      transition: all 0.3s ease;
    }
/* END: Footbar Fixed */

/* START: Slideshow */
    .slideshow .item {
        position: relative;
    }

    .slide-content .slide-heading {
        margin-top: 0;
        margin-bottom: var(--heading-spacing-bottom-style);
        position: relative;
        display: inline-block;
        line-height: 1;
    }

    .slide-content .slide-heading.has-border {
        padding-bottom: 22px;
    }

    .slide-content .slide-heading .line {
        position: absolute;
        left: 50%;
        bottom: 0;
        -moz-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        height: 2px;
        width: 40px;
        display: inline-block;
    }

    .slide-content .slide-sub{
        color: var(--slide-sub-color-style);
        font-size: var(--slide-sub-font-size-style);
        font-weight: var(--font-weight-sub-heading-style);
        margin-top: 0;
        margin-bottom: var(--sub-heading-spacing-bottom-style);
    }

    .slide-content .slide-sub.border--solid span {
        border-bottom: 1px solid var(--slide-sub-color-style);
    }

    .slide-content .slide-text {
        margin-top: 0;
        margin-bottom: var(--des-spacing-bottom-style);
        max-width: 425px;
        margin-left: auto;
        margin-right: auto;
    }

    .slide-content .slide-sub.slide-mobile {
        margin-bottom: var(--sub-heading-spacing-bottom-style) !important;
    }

    .slide-content .slide-heading.slide-mobile{
        margin-bottom: var(--heading-spacing-bottom-style) !important;
    }

    .slide-content .slide-text.slide-mobile {
        margin-bottom: var(--des-spacing-bottom-style) !important;
    }

    .slide-content .slide-button {
        min-width: 240px;
        width: auto;
        display: inline-block;
    }

    .fluid-width-video-wrapper {
        width: 100%;
        position: relative;
        padding: 0;
        overflow: hidden;
    }

    .fluid-width-video-wrapper video,
    .fluid-width-video-wrapper iframe {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        width: 100%;
    }

    .slick-slider img {
        visibility: visible !important;
    }

    .slideshow:not(.slick-slider) .item:nth-child(n+2) {
        display: none;
    }

    .slideshow:not(.slick-slider) .swatch .item:nth-child(n+2) {
        display: inline-block;
    }

    .slideshow .slick-arrow {
      /*  width: 72px;
        height: 72px;*/
        opacity: 0;
       /* padding: 20px;*/
    }

    .slideshow:hover .slick-arrow {
        opacity: 1;
    }

    .slideshow .slick-dots {
        position: absolute;
        left: 50%;
        bottom: 20px;
        -moz-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .slick-slide img{
        margin-left: auto;
        margin-right: auto;
    }

    .slideshow .content-box--absolute:before {
        content: "";
        position: absolute;
        border: 4px solid;
        width: calc(100% - 20px);
        height: calc(100% - 20px);
        left: 10px;
        top: 10px;
        z-index: -1;
        display: none;
    }

    .wrapper-category-banner{
        display: flex;
        flex-wrap: wrap;
        margin-left: -5px;
        margin-right: -5px;
    }

    .wrapper-category-banner .slideshow{
        padding-left: 5px;
        padding-right: 5px;
    }

    .block-categories-slider{
        padding-left: 5px;
        padding-right: 5px;
    }

    .block-categories-slider .wrapper-category{
        padding: 20px 20px 17px 20px;
        background-color: #fff;
        box-shadow: 0 2px 11px #0000001a;
        border-radius: 10px;
    }

    .block-categories-slider .title {
        text-transform: unset;
        margin-bottom: 5px; 
    }

    .block-categories-slider .title span {
        display: inline-block;
        padding: 6px 20px;
        font-weight: var(--font-weight-bold);
        border-radius: 6px 6px 0 0;
        letter-spacing: .02em;
    }

    .block-categories-slider .categories-slider--list{
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        margin: 0;
        padding: 0;
    }

    .block-categories-slider .categories-slider--list li {
        width: 50%;
        margin: 0;
        border-top: 1px solid #f5f5f5;
        border-right: 1px solid #f5f5f5;
        min-height: 72px;
    }

    .block-categories-slider .categories-slider--list li:nth-child(1), 
    .block-categories-slider .categories-slider--list li:nth-child(2) {
        border-top: 0;
    }

    .block-categories-slider .categories-slider--list li:nth-child(2n + 0){
        border-right: 0;
    }

    .block-categories-slider .categories-slider--list li a {
        display: flex;
        align-content: space-around;
        flex-wrap: wrap;
        justify-content: center;
        height: 100%;
        line-height: 24px;
        color: #202020;
    }

    .block-categories-slider .categories-slider--list li a:hover .text-menu{
        text-decoration: underline;
        text-underline-offset: 0.3rem;
    }

    .block-categories-slider .categories-slider--list li a span {
        display: block;
        width: 100%;
        text-align: center;
        overflow: hidden;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
    }

    .block-categories-slider .categories-slider--list li a img {
        max-width: 24px;
        margin-bottom: 5px;
        padding-top: 5px;
        margin-left: auto;
        margin-right: auto;
    }

    .block-banner-slider{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-content: space-between;
        padding-left: 5px;
        padding-right: 5px;
    }

    .block-banner-slider .banner{
        width: calc(50% - 5px);
    }
/* END: Slideshow */

/* START: Lookbook Popup Mobile */
    .halo-lookbook-popup-mobile {
        --lookbook-mobile-duraton: 500ms;
        position: fixed;
        inset: 0;
        background-color: transparent;
        z-index: 100;
        pointer-events: none;
        transition: opacity var(--lookbook-mobile-duraton) 50ms ease-in-out, background-color var(--lookbook-mobile-duraton) 50ms ease-in-out;
    }
/* END: Lookbook Popup Mobile */

/* START: Video Popup */
    body.video-show .halo-video-popup {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate3d(-50%,-50%,0);
    }

    body.video-show .background-overlay {
        opacity: 1;
        pointer-events: all;
    }

    body.is-custom-information #halo-product-custom-information {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate3d(-50%,-50%,0);
    }

    body.is-custom-information .background-overlay {
        opacity: 1;
        pointer-events: all;
    }

    .halo-video-popup .halo-popup-close {
        z-index: 9;
    }

    .halo-video-popup .halo-popup-wrapper {
        padding: 0;
    }

    .halo-video-popup .halo-popup-header {
        margin: 0;
        padding: 0;
    }

    .halo-video-popup .fluid-width-video-wrapper {
        padding-top: 56%;
    }

    .halo-video-popup .fluid-width-video-wrapper iframe {
        height: 100%;
        border: 0;
    }
/* END: Video Popup */

/* START: Mobile Sidebar Icons */
    .site-nav-mobile.nav-account {
        --icon-size: 20px;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .site-nav-mobile.nav-account .icon-wrapper {
        width: calc(var(--icon-size) + 5px);
        height: var(--icon-size);
    }

    .site-nav-mobile.nav-account .customer-links.customer-login .icon-wrapper {
        height: calc(var(--icon-size) + 3px);
    }

    .site-nav-mobile.nav-account .last-link {
        border-bottom: 1px solid #e6e6e6;
    }
    
    .site-nav-mobile.nav-account .header__link--account,
    .site-nav-mobile.nav-account .header__icon {
        padding: 15px 20px !important;
        border-top: 1px solid #e6e6e6;
    }

    .site-nav-mobile.nav-account .header__link--account .title {
        position: relative;
        top: 1px;
    }

    .site-nav-mobile.nav-account .header__link--account .title,
    .site-nav-mobile.nav-account .header__icon .title {
        margin-left: 5px !important;
    }

    .site-nav-mobile.nav-account .customer-links .icon-wrapper svg,
    .site-nav-mobile.nav-account .header__icon .icon-wrapper .icon-wishlist {
        width: var(--icon-size);
        height: var(--icon-size);
        fill: var(--color-text);
    }

    .site-nav-mobile.nav-account .customer-links .customer_register_link .icon-wrapper svg {
        width: 18px;
        height: 18px;
    }

    .site-nav-mobile.nav-account .customer-links .icon-wrapper .icon-account path {
        width: var(--icon-size);
        height: var(--icon-size);
        transform: scale(1.2);
        transform-origin: center center;
    }
    
    .site-nav-mobile.nav-account .wrapper-links {
        padding-top: 7px;
        padding-bottom: 10px;
    }

    .site-nav-mobile.nav-account .customer-links.customer-login {
        padding: 15px 20px;
        border-top: 1px solid #e6e6e6;
    }

    .site-nav-mobile.nav-account .customer-links.customer-login .header__link--account {
        border-top: none;
        padding: 0 7px !important;
    }

    .site-nav-mobile.nav-account .customer-links.customer-login .header__link--account.customer_logount {
        padding-left: 0 !important;
        margin-left: 5px;
    }
    .site-nav-mobile.nav-account .customer-links.customer-login {
        align-items: normal !important;
    }
/* END: Mobile Sidebar Icons */

/* Responsive */
@media (max-width: 1600px){
    /* START: Slideshow */
        .wrapper-category-banner .block-categories-slider{
            -webkit-box-flex: 0;
            -ms-flex: 0 0 20% !important;
            flex: 0 0 20% !important;
            max-width: 20% !important;
        }

        .wrapper-category-banner.has-categories.has-banner .slideshow{
            -webkit-box-flex: 0;
            -ms-flex: 0 0 48% !important;
            flex: 0 0 48% !important;
            max-width: 48% !important;
        }

        .wrapper-category-banner .block-banner-slider {
            -webkit-box-flex: 0;
            -ms-flex: 0 0 32% !important;
            flex: 0 0 32% !important;
            max-width: 32% !important;
            align-content: unset !important;
        }
    /* END: Slideshow */
}

@media (max-width: 1400px){
    /* START: Slideshow */
        .wrapper-category-banner .block-categories-slider{
            -webkit-box-flex: 0;
            -ms-flex: 0 0 20% !important;
            flex: 0 0 20% !important;
            max-width: 20% !important;
        }

        .wrapper-category-banner.has-categories.has-banner .slideshow{
            -webkit-box-flex: 0;
            -ms-flex: 0 0 49% !important;
            flex: 0 0 49% !important;
            max-width: 49% !important;
        }

        .wrapper-category-banner .block-banner-slider {
            -webkit-box-flex: 0;
            -ms-flex: 0 0 31% !important;
            flex: 0 0 31% !important;
            max-width: 31% !important;
        }
    /* END: Slideshow */
}

@media (max-width: 1366px){
    /* START: Slideshow */
        .wrapper-category-banner .block-categories-slider{
            order: 1;
            -ms-flex: 0 0 100% !important;
            flex: 0 0 100% !important;
            max-width: 100% !important;
            margin-top: 20px !important;
        }

        .wrapper-category-banner.has-categories.has-banner .slideshow{
            -webkit-box-flex: 0;
            -ms-flex: 0 0 calc(100% - 520px) !important;
            flex: 0 0 calc(100% - 520px) !important;
            max-width: calc(100% - 520px) !important;
        }

        .wrapper-category-banner.has-categories .slideshow{
            -ms-flex: 0 0 100% !important;
            flex: 0 0 100% !important;
            max-width: 100% !important;
        }

        .wrapper-category-banner .block-banner-slider {
            -webkit-box-flex: 0;
            -ms-flex: 0 0 520px !important;
            flex: 0 0 520px !important;
            max-width: 520px !important;
            align-content: space-between !important;
        }

        .block-categories-slider .categories-slider--list {
            scroll-snap-type: x mandatory;
            flex-wrap: nowrap;
            overflow: auto;
            padding-bottom: 10px;
        }

        .block-categories-slider .categories-slider--list li {
            border-top: 0;
            border-right: 0;
            scroll-snap-align: start;
            scroll-snap-stop: always;
            -ms-flex: 0 0 13%;
            flex: 0 0 13%;
            max-width: 13%;
        }
    /* END: Slideshow */
}

@media (max-width: 1200px){
    
    .wrapper-category-banner.has-categories.has-banner .slideshow{
        -webkit-box-flex: 0;
        -ms-flex: 0 0 60% !important;
        flex: 0 0 60% !important;
        max-width: 60% !important;
    }

    .wrapper-category-banner.has-banner .slideshow{
        -webkit-box-flex: 0;
        -ms-flex: 0 0 60% !important;
        flex: 0 0 60% !important;
        max-width: 60% !important;
    }

    .wrapper-category-banner .block-banner-slider {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 40% !important;
        flex: 0 0 40% !important;
        max-width: 40% !important;
        align-content: space-between !important;
    }
}

@media (max-width: 1024px) {
    body.cart-sidebar-show #halo-sidebar.page-sidebar,
    body.auth-sidebar-show #halo-sidebar.page-sidebar,
    body.open_search_mobile #halo-sidebar.page-sidebar,
    body.open_search_mobile #halo-sidebar.page-sidebar,
    body.menu_open #halo-sidebar.page-sidebar,
    body.lang-currency-sidebar-show#halo-sidebar.page-sidebar {
        display: none;
    }

    .header-with-sidebar {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
        
    .header-with-sidebar .page-header {
        padding: 21px 0 21px 0 !important;
    }

    .header-with-sidebar .page-header.text-right + .sidebar-toggle {
        order: 1;
        padding-left: 0;
    }
    
    .header-with-sidebar .page-header.text-right {
        order: 2;
    }

    .background-cursor-wrapper {
        display: none;
    }
    
    /* START: Container */
        .container-1770{
            display: block;
            width: 100%;
            position: relative;
            max-width: 100%;
            padding: 0 15px;
            margin: 0 auto;
        }

        .container-1570 {
            padding-left: 15px;
            padding-right: 15px;
        }

        .container-1470 {
            padding-left: 15px;
            padding-right: 15px;
        }

        .container-1370 {
            padding-left: 15px;
            padding-right: 15px;
        }

        .container-1320 {
            padding-left: 15px;
            padding-right: 15px;
        }

        .container-1170 {
            padding-left: 15px;
            padding-right: 15px;
        }

        .halo-row{
            margin-left: -8px;
            margin-right: -8px;
        }

        .halo-item{
            padding-left: 8px;
            padding-right: 8px;
        }

        .wrapper-body {
            padding-bottom: 50px;
        }
    /* END: Container; */

    /* START: Halo Row */
        .halo-row.halo-slider.md-column-3:not(.slick-slider) .halo-item:nth-child(n + 4){
            display: none;
        }

        .halo-row.halo-slider.md-column-3:not(.slick-slider) .halo-item{
            width: 33.333333%;
        }
    /* END: Halo Row */

    /* START: Block */
        .halo-product-block .products-carousel, .halo-product-block .products-grid{
            margin: 0 -8px;
        }

        .halo-product-block .products-carousel .product, .halo-product-block .products-grid .product {
            padding: 0 8px;
        }

        .products-grid .product .card-action, .products-carousel .product .card-action{
            padding: 0 0 15px 0;
        }

        .card-action .variants-popup{
            bottom: 15px !important;
        }

        .halo-block-header.text-left.viewAll--right .title, .halo-block-header.text-right.viewAll--left .title {
            margin-right: 30px;
        }
      
        .halo-block-header.text-left.viewAll--left,
        .halo-block-header.text-left.viewAll--right{
            text-align: left;
        }

        .halo-block-header.text-right.viewAll--right,
        .halo-block-header.text-right.viewAll--left{
            text-align: right;
        }

        .view_all{
            margin-bottom: 0 !important;
        }

        .halo-product-block .collection-column-2{
            -webkit-box-flex: 0;
            -ms-flex: 0 0 50%;
            flex: 0 0 50%;
            max-width: 50%;
            padding-left: 10px;
            padding-right: 10px;
        }
    /* END: Block */

    /* START: Slideshow */
        .slide-content .slide-sub{
            margin-bottom: 10px;
        }

        .slide-content .slide-heading{
            margin-bottom: 3px;
            padding-bottom: 7px;
            font-size: 24px!important;
        }

        .slide-content .slide-heading.has-border{
            padding-bottom: 17px;
            margin-bottom: 17px;
        }

        .slide-content .slide-text{
            margin-bottom: 24px !important;
        }

        .slideshow .slick-dots li {
            margin: 0px 5px;
            width: 10px;
            height: 10px;
        }

        .block-categories-slider .categories-slider--list{
            padding: 0;
        }

        .block-categories-slider .categories-slider--list li {
            -ms-flex: 0 0 18%;
            flex: 0 0 18%;
            max-width: 18%;
            border-right: 0;
        }

        .block-categories-slider .categories-slider--list li a{
            align-content: center;
        }
    /* END: Slideshow */

    /* START: Lookbook Popup Mobile */

        .halo-popup-wrapper-mobile {
            position: absolute;
            bottom: 0;
            left: 0;
            height: max-content;
            max-height: 85%;
            width: 100%;
            background-color: white;
            transform: translateY(100%);
            transition: transform var(--lookbook-mobile-duraton) ease-in-out;
        }

        body.mobile-popup-active {
            overflow-y: hidden;
        }

        .halo-lookbook-popup-mobile {
            opacity: 0;
            visibility: hidden;
            transition: opacity var(--lookbook-mobile-duraton) ease, visibility var(--lookbook-mobile-duraton) ease;
        }

        .halo-lookbook-popup-mobile .product-item {
            flex: 0 0 55%;
        }

        .halo-lookbook-popup-mobile .price-item--saved {
            display: none;
        }
            
        .halo-lookbook-popup-mobile .halo-popup-wrapper-mobile .halo-popup-container-mobile {
            display: flex;
            align-items: stretch;
            justify-content: start;
            gap: 10px;
        }

        .halo-lookbook-popup-mobile .halo-popup-wrapper-mobile .halo-popup-container-mobile.center {
            align-items: stretch;
            justify-content: center;
        }

        .select-icon .lookbook-modal {
            display: none;
        }

        body.mobile-popup-active .halo-lookbook-popup-mobile {
            pointer-events: auto;
            opacity: 1;
            visibility: visible;
            background-color: rgba(0,0,0,0.7);
        }

        body.mobile-popup-active .halo-lookbook-popup-mobile .halo-popup-wrapper-mobile {
            transform: translateY(0);
        }

        .halo-popup-wrapper-mobile .close-modal {
            position: absolute;
            right: 10px;
            background: none;
            border: none;
            padding: 0;
        }

        .mobile-popup-header {
            width: 100%;
            padding: 10px;
            margin: 0;
            border-bottom: 1px solid rgba(0,0,0,0.2);
            display: block;
            text-align: center;
            color: var(--text-color);
            font-size: var(--font-heading-size);
            line-height: var(--heading-line-height);
            letter-spacing: var(--heading-letter-spacing);
            font-weight: var(--font-weight-medium);
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            text-transform: uppercase;
        }

        .halo-popup-wrapper-mobile .halo-popup-container-mobile {
            display: flex;
            justify-content: center;
            align-items: start;
            gap: 10px;
            padding: 10px;
        }

        .halo-popup-wrapper-mobile .lookbook-mobile-item {
            display: inline-block;
            width: auto;
            height: max-content;
            max-width: 55vw;
            flex: 0 0 55vw;
        }

        .halo-popup-wrapper-mobile .lookbook-mobile-item .img-box .lookbook-mobile-image-container {
            width: 100%;
            /*max-height: 60vh; */
        }

        .halo-popup-wrapper-mobile .lookbook-mobile-item img {
            max-width: 100%;
            max-height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .halo-popup-wrapper-mobile .lookbook-mobile-item .text-shorten {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            font-size: var(--product-title-font-size);
            font-weight: var(--font-weight-medium);
            line-height: var(--product-title-line-height);
            letter-spacing: var(--product-title-letter-spacing);
            text-transform: var(--product-title-text-transform);
            margin-top: 10px;
            display: block;
        }

        .halo-popup-wrapper-mobile .lookbook-mobile-item .mobile-lookbook-title,
        .halo-popup-wrapper-mobile .lookbook-mobile-item .mobile-lookbook-price {
            text-align: center;
        }

        .halo-popup-wrapper-mobile .lookbook-mobile-item .mobile-lookbook-price {
            font-size: var(--product-price-font-size);
            font-weight: var(--font-weight-normal);
            line-height: var(--product-price-line-height);
            letter-spacing: var(--product-price-letter-spacing);
            margin-top: var(--product-price-margin-top);
            margin-bottom: 0px;
            padding-bottom: 15px;
        }

        .halo-popup-wrapper-mobile .scroll-snap-mobile {
            padding: 0px;
            overflow-x: scroll;
        }

        .halo-lookbook-popup-mobile .close-modal svg {
            width: 16px;
            height: 16px;
        }
    /* END: Lookbook Popup Mobile */

    /* START: Lookbook Dots */
        .hide-on-mobile {
            visibility: hidden;
        }
    /* END: Lookbook Dots */

    /* START: Footbar Fixed */
        .footbar-fixed-left.cookie_someone_right{
            position: absolute;
            bottom: 143px;
        }
    /* END: Footbar Fixed */

    /* START: Sidebar */
        .halo-sidebar-header{
            padding: 13px 20px 0 20px;
        }
        .halo-sidebar-close{
            top: 5px;
        }
        .halo-sidebar.halo-sidebar-left .halo-sidebar-close{
            left: 5px;
        }
        .halo-sidebar.halo-sidebar-right .halo-sidebar-close{
            right: 5px;
        }
        .halo-sidebar.halo-sidebar-left.halo-sidebar_search .halo-sidebar-close{
            left: auto;
            right: 5px;
        }
        .halo-sidebar.halo-sidebar-left.halo-sidebar_menu .halo-sidebar-close{
            position: inherit;
            top: 0;
            left: auto;
            right: -15px;
            background-color: transparent;
        }
        .halo-sidebar.halo-sidebar-left.halo-sidebar_menu .site-nav-mobile+.halo-sidebar-close{
            position: absolute;
            right: 5px;
        }
        .halo-sidebar.halo-sidebar-left.halo-sidebar_menu .halo-sidebar-close svg{
            fill: var(--color-black);
        }

        #navigation-mobile .halo-sidebar-close {
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--duration-long) ease;
        }

        body.menu_open #navigation-mobile .halo-sidebar-close {
            opacity: 1;
            pointer-events: auto;
        }
    /* END: Sidebar */

    /* START: Header */
        .announcement-close{
            width: 15px;
            height: 15px;
            right: 10px;
        }
        .header__icon--cart .cart-count-bubble {
            position: absolute;
            right: -12px;
            top: -8px;
        }
        .search-modal__form {
            background-color: #fafafa;
            border-bottom: 1px solid #e7e7e7;
        }
        .search-modal__form .search__button {
            min-width: inherit;
            text-overflow: unset;
            padding: 1px 10px 4px;
            border-radius: 0;
            min-height: 30px;
            background: transparent;
            box-shadow: none;
            border: 0;
        }
        .search-modal__form .search__input{
            padding: 3px 10px;
            background-color: transparent;
            border: 0;
        }
        .search-modal__form .search__button svg {
            width: 20px !important;
            height: 20px !important;
            position: relative;
        }
        .menu-heading-mobile{
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 6px 20px 3px 20px;
        }
        .halo-top-language .icon svg{
            width: 20px;
            height: 20px;
        }
        .halo-currency .currency-menu .icon svg{
            width: 20px !important;
            height: 20px !important;
            position: relative;
            top: 1px;
        }
        .halo-sidebar_menu #HeaderLanguageList, .halo-sidebar_menu .halo-currency .currency-menu{
            padding: 10px 10px !important;
        }
        .halo-sidebar_menu #HeaderLanguageList .disclosure__item, .halo-sidebar_menu .halo-currency .currency-menu .dropdown-item{
            padding: 10px 10px 10px 10px !important;
        }
        .logo-m-none {
            display: none !important;
        }
    /* END: Header */

    /* START: Menu */
        .halo-sidebar_menu .site-nav-mobile .menu-lv-1 .label{
            position: relative;
            top: -1px;
            right: 0;
            margin-left: 12px;
            line-height: 18px;
            height: 18px;
        }
        .halo-sidebar_menu .site-nav-mobile .menu-lv-1 .menu-lv-1__action .label{
            top: 2px;
        }
        .menu-lv-1 .label:before{
            left: -10px;
            top: 4px;
            bottom: auto;
            transform: rotate(270deg);
        }
        .halo-sidebar_menu  .nav-title-mobile{
            font-size: var(--font-menu-lv1-size);
            text-transform: uppercase;
        }
        .halo-sidebar_menu .site-nav{
            font-size: var(--font-menu-lv1-size);
        }
        .dropdown-currency, .dropdown-language {
            pointer-events: auto;
        }
    /* END: Menu */

    /* START: Product Grid */
        .products-grid.grid{
            display: flex;
            margin-left: 0;
            margin-right: 0;
            margin-bottom: 30px;
        }

        .products-grid.grid .grid__item{
            padding-left: 0;
            padding-right: 0;
            margin-top: 0!important;
            margin-left: 0.5rem;
            width: calc(25% - 0.5rem * 3 / 4)!important;
            max-width: 50%;
            flex-grow: 1;
            flex-shrink: 0;
        }

        .products-grid.grid .grid__item:first-of-type{
            margin-left: 15px;
        }

        .products-grid.grid .grid__item:last-of-type{
            margin-right: 15px;
        }
    /* END: Product Grid */

    /* START: Slick Dots */
        .style-dots-2 .slick-dots li:last-child, .style-dots-2 .slider-dots li:last-child{
            margin-right: 7px;
        }
    /* END: Slick Dots */

    /* START: Scrollbar Disable */
        .disable-srollbar-mb::-webkit-scrollbar {
            display: none;
        }
    
        .disable-srollbar-mb::-webkit-scrollbar-track {
            display: none;
        }
    
        .disable-srollbar-mb::-webkit-scrollbar-thumb {
            display: none;
        }
    
        .disable-srollbar-mb::-webkit-scrollbar-thumb:hover {
            display: none;
        }
    /* END: Scrollbar Disable */
}

@media (max-width: 992px){
    /* START: Product Grid */
        .products-grid.grid .grid__item{
            width: calc(33.333333% - 0.5rem * 3 / 4)!important;
        }
    /* END: Product Grid */

    /* START: Scroll Snap Mobile */
        .scroll-snap-mobile {
            -webkit-flex-wrap: nowrap;
            -moz-flex-wrap: nowrap;
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
            overflow-x: auto;
            padding: 0 0 0 15px;
            margin-left: 0;
            align-items: center;
            scroll-snap-type: x mandatory;
        }
        .scroll-snap-mobile .halo-item {
            padding-left: 0;
            padding-right: 0;
            margin-right: 15px;
            max-width: 400px !important;
            -webkit-box-flex: 0;
            -ms-flex: 0 0 90%;
            flex: 0 0 90%;
            scroll-snap-align: start;
            scroll-snap-stop: always;
        }
    /* END: Scroll Snap Mobile */

    /* START: Product Block */
        .halo-product-block .collection-column-2{
            -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
            flex: 0 0 100%;
            max-width: 100%;
            padding-left: 10px;
            padding-right: 10px;
        }

        .halo-product-block .collection-column-2+.collection-column-2{
            margin-top: 40px;
        }
    /* END: Product Block */
}

@media (max-width: 767px){
    /* START: Slideshow */
        .slide-pc,
        .hidden-mobile {
            display: none !important;
        }

        .slide-content .slide-heading{
            margin-bottom: 8px;
            padding-bottom: 10px;
        }

        .slide-content .slide-heading.has-border{
            padding-bottom: 17px;
        }

    /* END: Slideshow */

    /* START: Footbar Fixed */
        .footbar-fixed-left.cookie_someone_right {
            position: absolute;
            bottom: 128px;
        }
    /* END: Footbar Fixed */

    /* START: Popup Lookbook Product */
        .halo-lookbook-popup{
            left: 0;
            right: 0;
            margin: 20px auto;
            width: 275px;
            max-width: -moz-calc(100vw - 30px);
            max-width: -webkit-calc(100vw - 30px);
            max-width: -ms-calc(100vw - 30px);
            max-width: calc(100vw - 30px);
        }

        .halo-lookbook-popup .halo-popup-wrapper{
            padding: 10px 12px;
        }

        .halo-lookbook-popup .card{
            display: flex;
        }

        .halo-lookbook-popup .card-product{
            -webkit-box-flex: 0;
            -ms-flex: 0 0 30%;
            flex: 0 0 30%;
            max-width: 30%;
            margin-right: 15px;
        }

        .halo-lookbook-popup .card-information{
            padding: 0;
            -webkit-box-flex: 0;
            -ms-flex: 0 0 calc(70% - 15px);
            flex: 0 0 calc(70% - 15px);
            max-width: -moz-calc(70% - 15px);
            max-width: -webkit-calc(70% - 15px);
            max-width: -ms-calc(70% - 15px);
            max-width: calc(70% - 15px);
        }

        .halo-lookbook-popup .card-information__wrapper{
            text-align: left;
        }

        .halo-lookbook-popup .card-information .card-price{
            justify-content: flex-start !important;
        }

        .halo-lookbook-popup .card-action{
            display: none;
        }
    /* END: Popup Lookbook Product */

    /* START: Product Price Label Sale */
        .price__label_sale{
            height: 16px;
            line-height: 16px;
            margin: 0 0 0 0px!important;
            position: relative;
            top: 4px;
            display: none;
        }

        .price__label_sale .label_sale{
            font-size: 10px;
            padding: 0 5px;
        }
    /* END: Product Price Label Sale */

    /* START: Product Block */
        .halo-product-block .collection-column-2+.collection-column-2{
            margin-top: 25px;
        }

        .countdown_style_2 {
            display: block;
        }
    /* END: Product Block */
}

@media (max-width: 551px){
    /* START: Container */
        .container{
            padding-left: 10px;
            padding-right: 10px;
        }

        .container-1770{
            padding-left: 10px;
            padding-right: 10px;
        }

        .container-1570{
            padding-left: 10px;
            padding-right: 10px;
        }

        .container-1470{
            padding-left: 10px;
            padding-right: 10px;
        }

        .container-1370{
            padding-left: 10px;
            padding-right: 10px;
        }

        .container-1320 {
            padding-left: 10px;
            padding-right: 10px;
        }

        .container-1170{
            padding-left: 10px;
            padding-right: 10px;
        }

        .halo-row{
            margin-left: -5px;
            margin-right: -5px;
        }

        .halo-item{
            padding-left: 5px;
            padding-right: 5px;
        }

        .halo-row.column-3 .slider__slide{
            width: 100%;
        }
    /* END: Container; */

    /* START: Halo Row */
        .halo-row.halo-slider.sm-column-1:not(.slick-slider) .halo-item:nth-child(n + 2),
        .halo-row.halo-slider.sm-column-2:not(.slick-slider) .halo-item:nth-child(n + 3){
            display: none;
        }

        .halo-row.halo-slider.sm-column-1:not(.slick-slider) .halo-item{
            width: 100%;
        }

        .halo-row.halo-slider.sm-column-2:not(.slick-slider) .halo-item{
            width: 50%;
        }
    /* END: Halo Row */

    /* START: Scroll Snap Mobile */
        .scroll-snap-mobile {
            padding: 0 0 0 10px;
            margin-left: 0;
        }
        .scroll-snap-mobile .halo-item {
            margin-right: 10px;
        }
    /* END: Scroll Snap Mobile */

    /* START: Product Grid */
        .products-grid.grid .grid__item{
            width: calc(50% - 3.75rem / 2)!important;
        }

        .product-block-has__banner.container-full .product-block__grid{
            padding: 0 5px !important;
        }

        .halo-product-block .container-full .products-carousel, .halo-product-block .container-full .products-grid{
            margin: 0;
        }

        .halo-product-block .container-full:not(.product-block-has__banner) .halo-block-content{
            padding: 0 5px;
        }
    /* END: Product Grid */

    /* START: Term Condition */
        .halo-term-condition-popup .halo-popup-scroll{
            max-height: 50vh;
        }

        .halo-term-condition-popup .halo-popup-header {
            margin: 0 0 20px 0;
            padding: 5px 0 0 0;
        }
    /* END: Term Condition */

    /* START: Infinite Scroll */
        .product-infinite-scroll{
            margin: 30px 0 0 0;
        }
    /* END: Infinite Scroll */
    
    /* START: Block */
        .halo-product-block .products-carousel, .halo-product-block .products-grid{
            margin: 0 -5px;
        }

        .halo-product-block .products-carousel .product, .halo-product-block .products-grid .product {
            padding: 0 5px;
        }

        .products-grid .product .card-action, .products-carousel .product .card-action{
            padding: 0 0 15px 0;
        }

        .product-card__button2 {
            padding: 0;
        }

        .button{
            padding-top: 7px !important;
            padding-bottom: 7px !important;
        }

        .field__input, .form-input{
            padding-top: 7px;
            padding-bottom: 7px;
        }

        .halo-product-block .slick-dots {
            bottom: -40px;
        }

        .halo-product-block .products-carousel.slick-dotted{
            margin-bottom: 40px;
        }
    /* END: Block */
  
  	/* START: Slideshow */
        .grouped_btn--slider .slide-button {
            padding-top: var(--btn-1-padding-top) !important;
    		padding-bottom: var(--btn-1-padding-bottom) !important;
        }

        .wrapper-category-banner.has-categories.has-banner .slideshow{
            -webkit-box-flex: 0;
            -ms-flex: 0 0 60% !important;
            flex: 0 0 100% !important;
            max-width: 100% !important;
            margin-bottom: 20px;
        }

        .wrapper-category-banner .block-banner-slider {
            -webkit-box-flex: 0;
            -ms-flex: 0 0 100% !important;
            flex: 0 0 100% !important;
            max-width: 100% !important;
        }

        .wrapper-category-banner .block-categories-slider{
            margin-top: 10px !important;
        }

        .block-categories-slider .wrapper-category{
            padding: 20px 20px 10px 20px;
        }

        .block-categories-slider .categories-slider--list{
            padding-bottom: 0;
        }

        .block-categories-slider .categories-slider--list li{
            -ms-flex: 0 0 28%;
            flex: 0 0 28%;
            max-width: 28%;
            border-right: 0;
        }

        .block-categories-slider .categories-slider--list li a{
            align-content: center;
        }

        .block-banner-slider .banner {
            margin-bottom: 15px;
        }

  	/* START: Slideshow */

    /* START: Page Header */
        .page-header {
            padding: 10px 0 15px;
        }
    /* END: Page Header */
}
@media (max-width: 551px){
          .products-grid.column-2 .product,
        .products-grid.column-3 .product,
        .products-grid.column-4 .product,
        .products-grid.column-5 .product{
            width: 46% !important;
        }
}
@media (min-width: 321px){
    /* START: Product Grid */
        .products-grid.column-2 .product,
        .products-grid.column-3 .product,
        .products-grid.column-4 .product,
        .products-grid.column-5 .product{
            width: 50%;
        }

        .products-grid.column-2 .product:nth-child(-n + 2),
        .products-grid.column-3 .product:nth-child(-n + 2),
        .products-grid.column-4 .product:nth-child(-n + 2),
        .products-grid.column-5 .product:nth-child(-n + 2){
            margin-top: 0;
        }
    /* END: Product Grid */
}

@media (min-width: 375px){
    /* START: Block */
        .halo-product-block .products-carousel:not(.slick-initialized) > .product{
            width: 50%;
        }
    /* END: Block */
}

@media (min-width: 551px){
    /* START: Footbar Fixed */
        .footbar-fixed{
            left: 15px;
            right: auto;
            bottom: 15px;
        }
    /* END: Footbar Fixed */
    
    /* START: Popup */
        .halo-popup-header{
            padding-top: 3px;
        }

        .halo-popup.customPopup-tiny{
            max-width: 535px;
        }

        .halo-popup.customPopup-small{
            max-width: 470px;
        }
    /* END: Popup */

    /* START: Sidebar */
        .halo-sidebar{
            max-width: 370px;
        }
        .halo-sidebar.halo-cart-sidebar{
            max-width: 420px;
        }
    /* END: Sidebar */
}

@media only screen and (min-width: 750px){
    .h0 {
        font-size: 5.2rem;
    }

    h1,
    .h1 {
        font-size: 4rem;
    }

    h2,
    .h2 {
        font-size: 2.4rem;
    }

    h3,
    .h3 {
        font-size: 1.8rem;
    }

    h5,
    .h5 {
        font-size: 1.3rem;
    }

    blockquote {
        padding-left: 1.5rem;
    }

    hr {
        margin: 7rem 0;
    }
}

@media (min-width: 768px){
    /* START: Slideshow */
        .slide-mobile,
        .hidden-pc {
            display: none !important;
        }

        .grouped_btn--slider{
            display: flex;
            align-items: center;
        }

        .grouped_btn--slider .slide-button:first-child {
            margin-right: 5px;
        }

        .grouped_btn--slider .slide-button:last-child {
            margin-left: 5px;
        }
    /* END: Slideshow */

    /* START: Popup */
        .halo-popup{
            max-width: 720px;
        }
    /* END: Popup */

    /* START: Product Grid */
        .products-grid.column-2 .product{
            margin-top: 30px;
        }

        .products-grid.column-3 .product,
        .products-grid.column-4 .product,
        .products-grid.column-5 .product{
            width: 31.3333333%;
            margin-top: 50px;
        }

        .products-grid.column-3 .product:nth-child(-n + 3),
        .products-grid.column-4 .product:nth-child(-n + 3),
        .products-grid.column-5 .product:nth-child(-n + 3){
            margin-top: 0;
        }
    /* END: Product Grid */

    /* START: Block */
        .halo-product-block .products-carousel:not(.slick-initialized) > .product{
            width: 33.3333333%;
        }
    /* END: Block */
}

@media (min-width: 992px){
    /* START: Block */
        .halo-product-block .products-carousel:not(.slick-initialized) > .product{
            width: 25%;
        }
    /* END: Block */
}

@media (min-width: 1025px){
  .swiper{
    max-width:1200px;
  }
    a:hover{
        color: var(--color-link-hover);
    }

    .link-underline:hover .text{
        text-decoration: underline;
        text-underline-offset: 0.3rem;
    }

    .halo-block-header .title .text{
        width: 420px;
    }

    .halo-block-header.text-left.viewAll--left .title .text,
    .halo-block-header.text-right.viewAll--right .title .text{
        width: auto;
    }

    /* START: Product Scroll */
        .products-cursor{
            display: block;
            position: fixed;
            top: -20px;
            left: -20px;
            z-index: 10000;
            width: 40px;
            height: 40px;
            border-radius: 100%;
            user-select: none;
            opacity: 0;
            pointer-events: none;
            will-change: transform;
            transition: transform .35s cubic-bezier(.04,.64,.56,1),opacity .5s ease-in-out,background-color .25s ease-in-out,border-color .25s ease-in-out,-webkit-transform .35s cubic-bezier(.04,.64,.56,1);
        }

        .products-cursor__inner{
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: transparent;
            padding: 5px;
        }

        .products-cursor__image{
            opacity: 0;
            -webkit-transform-origin: center;
            transform-origin: center;
            flex: 0 0 100%;
            width: 100%;
            height: 100%;
            animation: cursorInfinite 6s linear infinite;
        }

        .products-cursor__icon{
            position: absolute;
            top: 50%;
            left: 50%;
            width: 36%;
            height: 36%;
            opacity: 0;
            fill: var(--color-white);
            stroke: transparent;
            opacity: 0;
            transform-origin: center;
            transition: unset;
            transform: translate(-50%, -50%);
        }
    /* END: Product Scroll */

    /* START: Arrow */
        .slick-arrow:hover {
            border-color: var(--arrow-border-color-hover);
            background: var(--arrow-background-color-hover);
        }

        .slick-arrow:hover svg{
            color: var(--arrow-color-hover);
            fill: var(--arrow-color-hover);
        }

        .body-custom-width .slick-arrow.slick-prev{
            left: 15px;
        }

        .body-custom-width .slick-arrow.slick-next{
            right: 15px;
        }
    /* END: Arrow */

    /* START: Container */
        .container{
            max-width: 1210px;
            padding-left: 15px;
            padding-right: 15px;
        }

        .container-full{
            width: 100%;
            /*max-width: 1920px;*/
            max-width: 100%;
            padding-left: 0;
            padding-right: 0;
            margin-left: auto;
            margin-right: auto;
            overflow: hidden;
        }

        .container-1770{
            max-width: 1800px;
            padding-left: 15px;
            padding-right: 15px;
            margin-left: auto;
            margin-right: auto;
        }

        .container-1570{
            max-width: 1600px;
            padding-left: 15px;
            padding-right: 15px;
            margin-left: auto;
            margin-right: auto;
        }

        .container-1470{
            max-width: 1500px;
            padding-left: 15px;
            padding-right: 15px;
            margin-left: auto;
            margin-right: auto;
        }

        .container-1370{
            max-width: 1400px;
            padding-left: 15px;
            padding-right: 15px;
            margin-left: auto;
            margin-right: auto;
        }

        .container-1320 {
            max-width: 1350px;
            padding-left: 15px;
            padding-right: 15px;
            margin-left: auto;
            margin-right: auto;
        }

        .container-1170{
            max-width: 1200px;
            padding-left: 15px;
            padding-right: 15px;
            margin-left: auto;
            margin-right: auto;
        }

        .has-megamenu .container{
            max-width: var(--container_size) !important;
            padding-left: 15px !important;
            padding-right: 15px !important;
        }

        .header-full-width .header .container,
        .header-full-width #shopify-section-announcement-bar .container, 
        .body-full-width .wrapper-body .container {
            max-width: 100%;
            padding: 0 3.175%;
        }

        .body-custom-width .wrapper-body .container{
            max-width: var(--body-custom-width-container);
            padding-left: 15px;
            padding-right: 15px;
        }
    /* END: Container */

    /* START: Halo Row */
        .halo-row.halo-slider.column-2:not(.slick-slider) .halo-item:nth-child(n + 3),
        .halo-row.halo-slider.column-3:not(.slick-slider) .halo-item:nth-child(n + 4),
        .halo-row.halo-slider.column-4:not(.slick-slider) .halo-item:nth-child(n + 5),
        .halo-row.halo-slider.column-5:not(.slick-slider) .halo-item:nth-child(n + 6),
        .halo-row.halo-slider.column-6:not(.slick-slider) .halo-item:nth-child(n + 7),
        .halo-row.halo-slider.column-7:not(.slick-slider) .halo-item:nth-child(n + 8),
        .halo-row.halo-slider.column-8:not(.slick-slider) .halo-item:nth-child(n + 9),
        .halo-row.halo-slider.column-9:not(.slick-slider) .halo-item:nth-child(n + 10),
        .halo-row.halo-slider.column-10:not(.slick-slider) .halo-item:nth-child(n + 11) {
            display: none;
        }

        .products-carousel.column-2:not(.slick-slider) .product:nth-child(n + 3),
        .products-carousel.column-3:not(.slick-slider) .product:nth-child(n + 4),
        .products-carousel.column-4:not(.slick-slider) .product:nth-child(n + 5),
        .products-carousel.column-5:not(.slick-slider) .product:nth-child(n + 6),
        .products-carousel.column-6:not(.slick-slider) .product:nth-child(n + 7),
        .products-carousel.column-7:not(.slick-slider) .product:nth-child(n + 8),
        .products-carousel.column-8:not(.slick-slider) .product:nth-child(n + 9),
        .products-carousel.column-9:not(.slick-slider) .product:nth-child(n + 10),
        .products-carousel.column-10:not(.slick-slider) .product:nth-child(n + 11) {
            display: none;
        }
    /* END: Halo Row */

    /* START: Header */
        .header-top,
        .header-bottom{
            display: block;
        }

        .header-bottom .main-menu, .header-bottom .main-menu > .container{
            position: static;
        }

        .header__list .link{
            padding: 23px 25px;
        }

        .header__icon:hover .icon{
            transform: scale(1.15);
        }

        .header__icon:hover .icon-search-1 {
            transform: rotate(-90deg) scale(1.15);
        }

        .halo-top-language #HeaderLanguageLabel{
            display: none;
        }

        .halo-top-currency .currency-block .title{
            display: none;
        }

        .menu-lv-item .site-nav-list-dropdown > .menu-lv-2__action{
            display: flex;
        }
    /* END: Header */

    /* START: Slideshow */
        .wrapper-category-banner .block-categories-slider{
            -webkit-box-flex: 0;
            -ms-flex: 0 0 305px;
            flex: 0 0 305px;
            max-width: 305px;
        }

        .wrapper-category-banner.has-categories .slideshow{
            -webkit-box-flex: 0;
            -ms-flex: 0 0 calc(100% - 305px);
            flex: 0 0 calc(100% - 305px);
            max-width: calc(100% - 305px);
        }

        .wrapper-category-banner.has-categories.has-banner .slideshow{
            -webkit-box-flex: 0;
            -ms-flex: 0 0 calc(100% - 825px);
            flex: 0 0 calc(100% - 825px);
            max-width: calc(100% - 825px);
        }

        .wrapper-category-banner.has-banner .slideshow{
            -webkit-box-flex: 0;
            -ms-flex: 0 0 calc(100% - 520px);
            flex: 0 0 calc(100% - 520px);
            max-width: calc(100% - 520px);
        }

        .wrapper-category-banner .block-banner-slider {
            -webkit-box-flex: 0;
            -ms-flex: 0 0 520px;
            flex: 0 0 520px;
            max-width: 520px;
        }

    /* END: Slideshow */

    /* START: Lookbook Popup */
        [data-show-lookbook-container][data-style="2"] [data-lookbook-item-container] .select-icon.invisible {
            visibility: hidden;
        }
    /* END: Lookbook Popup */

    /* START: Sticky Header */
        .header-wrapper .header-bottom .fixed-left, .header-wrapper .header-bottom .fixed-right{
            display: none;
        }

        .shopify-section-header-sticky .header-wrapper .header-top{
            display: none;
        }

        .shopify-section-header-sticky .header-wrapper .header-bottom{
            display: flex;
            justify-content: center;
            align-items: stretch;
        }

        .shopify-section-header-sticky .header-wrapper .header-bottom .fixed-center{
            width: calc(100% - 112px - 112px);
            display: flex;
            align-items: center;
        }

        .shopify-section-header-sticky .header-wrapper .header-bottom .fixed-left{
            width: 112px;
            padding: 6px 10px 6px 15px;
            display: inline-flex;
            align-items: center;
        }

        .shopify-section-header-sticky .header-wrapper .header-bottom .fixed-right{
            width: 112px;
            display: flex;
            align-items: center;
        }

        .shopify-section-header-sticky .header-wrapper .header-bottom .fixed-right .header__search{
            width: 45px;
            height: 100%;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            border-left: 1px solid rgba(255, 255, 255, 0.15);
            padding-top: 9px;
            padding-bottom: 9px;
        }

        .shopify-section-header-sticky .header-wrapper .header-bottom .fixed-right .header__icon--cart{
            width: 45px;
            height: 100%;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            border-left: 1px solid rgba(255, 255, 255, 0.15);
            padding-top: 9px;
            padding-bottom: 9px;
        }

        .shopify-section-header-sticky .header-wrapper .header-bottom .fixed-right .cart-count-bubble{
            top: 5px;
            right: 5px;
            min-width: 20px;
            min-height: 20px;
            line-height: 20px;
        }

        .sticky-search-open .shopify-section-header-sticky .header-wrapper .header-top{
            display: block;
            padding: 0;
        }

        .sticky-search-open .shopify-section-header-sticky .header-wrapper .header-top .header-top--left{
            display: none;
        }

        .sticky-search-open .shopify-section-header-sticky .header-wrapper .header-top .header-top--right .header__group, 
        .sticky-search-open .shopify-section-header-sticky .header-wrapper .header-top .header-top--right .free-shipping-text,
        .sticky-search-open .shopify-section-header-sticky .header-wrapper .header-top .header-top--right .customer-service-text,
        .sticky-search-open .shopify-section-header-sticky .header-wrapper .header-top .header-top--right .top-language-currency{
            display: none;
        }

        .sticky-search-open .shopify-section-header-sticky .header-wrapper .header-top .header-top--right .header-top-right-group{
            margin: 0;
        }

        .sticky-search-open #shopify-section-header{
            will-change: unset;
            transform: none !important;
        }

        .sticky-search-open .header-top-right-group .header__search{
            position: fixed;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(35,35,35,.8);
            width: 100%;
            height: 100%;
            margin: 0;
            z-index: 101;
            opacity: 0;
            animation: slowShow 500ms ease forwards;
        }

        .sticky-search-open .header__search .search-modal__form {
            max-width: 555px;
        }

        .sticky-search-open .header__search .search-modal__form .search__input{
            padding: 7px 10px;
        }

        .sticky-search-open .header__search .search-modal__form .search__button svg{
            width: 18px;
            height: 18px;
        }

        .sticky-search-open .search_details {
            top: 10vh;
            position: relative;
            max-width: 555px;
            margin: 0 auto;
            text-align: center;
            animation: animateMenuOpen 500ms ease;
        }
        
        .sticky-search-open .search_details .quickSearchResultsWrap{
/*             top: calc(100% + 80px); */
            right: 0;
            left: 0;
            width: 555px;
        }

        .sticky-search-open .quickSearchResults .container{
            padding-left: 20px;
            padding-right: 20px;
        }

        .sticky-search-open .search_details .header-search-close {
            padding-bottom: 15px;
            display: block;
        }

        .sticky-search-open .search_details .header-search-close svg{
            width: 20px;
            height: 20px;
            color: var(--bg-white);
        }

        .sticky-search-open details>.search-modal{
            opacity: 1;
            animation: animateMenuOpen var(--duration-default) ease;
        }

        .sticky-search-open details>.search-modal .quickSearchResultsWrap{
            display: block!important;
            animation: appear-down var(--duration-default) ease;
        }
    /* END: Sticky Header */

    /* START: Custom Scroll Bar */
        .custom-scrollbar::-webkit-scrollbar-track {
            background-color: #f4f4f4;
        }

        .custom-scrollbar::-webkit-scrollbar {
            width: 5px;
            background-color: #f4f4f4;
        }

        .custom-scrollbar::-webkit-scrollbar-thumb {
            background-color: var(--color-background-30);
        }

        .custom-scrollbar-x::-webkit-scrollbar{
            height: 5px;
        }

        .custom-scrollbar-x::-webkit-scrollbar-track{
            background-color: #f4f4f4;
        }

        .custom-scrollbar-x::-webkit-scrollbar-thumb{
            background-color: var(--color-background-30);
        }
    /* END: Custom Scroll Bar */

    /* START: Button */
        .button:hover {
            box-shadow: var(--btn-1-horizontal-length) var(--btn-1-vertical-length) var(--btn-1-blur-radius) var(--btn-1-spread) var(--btn-1-all-bg-opacity-hover) var(--btn-1-inset);
        }

        .button.button-1:hover,
        .button.button--primary:hover,
        .button.button--primary:focus{
            color: var(--btn-1-color-hover);
            background: var(--btn-1-bg-hover);
            border-color: var(--btn-1-border-hover);
        }

        .button.button-1:hover svg,
        .button.button--primary:hover svg,
        .button.button--primary:focus svg{
            fill: var(--btn-1-color-hover);
        }

        .button.button-2:hover,
        .button.button--secondary:hover,
        .button.button--secondary:focus{
            color: var(--btn-2-color-hover);
            background: var(--btn-2-bg-hover);
            border-color: var(--btn-2-border-hover);
        }

        .button.button-2:hover svg,
        .button.button--secondary:hover svg,
        .button.button--secondary:focus svg{
            fill: var(--btn-2-color-hover);
        }

        .button.button-3:hover,
        .button.button-3:focus{
            color: var(--btn-3-color-hover);
            background: var(--btn-3-bg-hover);
            border-color: var(--btn-3-border-hover);
        }
        
        .button.button-3:hover svg,
        .button.button-3:focus svg{
            fill: var(--btn-3-color-hover);
        }
    /* END: Button */

    /* START: View All Header Block Position */
        .halo-block-header.text-left.viewAll--center .view_all,
        .halo-block-header.text-right.viewAll--center .view_all {
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            right: auto;
        }

        .halo-block-header.text-left.viewAll--center {
            padding-right: 55%;
        }

        .halo-block-header.text-right.viewAll--center {
            padding-left: 55%;
        }

        .halo-block-header.text-center.viewAll--left,
        .halo-block-header.text-center.viewAll--right {
            padding-left: 70px;
            padding-right: 70px;
        }

        .halo-block-header.text-right.viewAll--left {
            padding-left: 70px;
        }

        .halo-block-header.text-left.viewAll--right {
            padding-right: 70px;
        }

        .halo-block-header.text-center.viewAll--left .view_all,
        .halo-block-header.text-right.viewAll--left .view_all {
            position: absolute;
            top: 12px;
            left: 0;
            right: auto;
        }

        .halo-block-header.text-center.viewAll--right .view_all,
        .halo-block-header.text-left.viewAll--right .view_all {
            position: absolute;
            top: 12px;
            left: auto;
            right: 0;
        }
    /* END: View All Header Block Position */

    /* START: Popup */
        .halo-popup-banner{
            display: block;
        }

        .halo-popup.customPopup-large{
            max-width: 1000px;
        }

        .halo-popup.halo-edit-cart-popup.customPopup-large{
            max-width: 840px;
        }
        .halo-popup.halo-edit-cart-popup .halo-notifyMe {
          display: none !important;
        }
        .halo-popup.halo-quick-view-popup.customPopup-large{
            max-width: 1020px;
        }

        .halo-popup.halo-size-chart-popup.customPopup-large,
        .halo-popup.halo-ask-an-expert-popup.customPopup-large{
            max-width: 700px;
        }

        .halo-popup.halo-compare-color-popup.customPopup-large{
            max-width: 970px;
        }
    /* END: Popup */

    /* START: Sidebar */
        .halo-sidebar-header{
            padding-left: 30px;
            padding-right: 30px;
        }
    /* END: Sidebar */

    /* START: Announcement */
        .announcement-bar__message .text{
            font-size: calc(var(--font-body-size) + 4px);
        }
    /* END: Announcement */

    /* START: Menu */
        .menu-lv-item:hover > a > .text,
        .menu-lv-item> .site-nav-list-dropdown > a > .text,
        .menu-lv-item:hover > .site-nav-list-dropdown > a > .text {
            border-bottom: 1px solid transparent;
        }

        .menu-lv-item:hover > .header__submenu, .menu-lv-item.menu-lv-2.dropdown:hover .site-nav-list-dropdown > .header__submenu{
            display: block;
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateY(0);
            animation: animateMenuOpen var(--duration-default) ease;
            z-index: 1;
        }

        .menu-lv-item.menu-lv-1 .menu-lv-2__action .icon-dropdown {
            display: block;
        }
    /* END: Menu */

    /* START: Product Grid */
        .products-grid.column-4 .product,
        .products-grid.column-5 .product{
            width: 24%;
        }

        .products-grid.column-4 .product:nth-child(-n + 4),
        .products-grid.column-5 .product:nth-child(-n + 4){
            margin-top: 0;
        }
    /* END: Product Grid */

    /* START: Product Block */
        .halo-product-block .slick-arrow{
            /* top: calc(50% - 70px); */
        }

        .halo-product-block .slick-prev{
            left: 0px;
        }

        .halo-product-block .slick-next{
            right: 0px;
        }

        .halo-product-block .products-carousel.column-1:not(.slick-initialized) > .product{
            width: 100%;
        }

        .halo-product-block .products-carousel.column-2:not(.slick-initialized) > .product{
            width: 50%;
        }

        .halo-product-block .products-carousel.column-3:not(.slick-initialized) > .product{
            width: calc(100% / 3);
        }

        .halo-product-block .products-carousel.column-4:not(.slick-initialized) > .product{
            width: 25%;
        }

        .halo-product-block .products-carousel.column-5:not(.slick-initialized) > .product{
            width: 20%;
        } 

        .halo-product-block .products-carousel.column-6:not(.slick-initialized) > .product{
            width: calc(100% / 6);
        }

        .halo-product-block .collection-column-2{
            -webkit-box-flex: 0;
            -ms-flex: 0 0 50%;
            flex: 0 0 50%;
            max-width: 50%;
            padding-left: 15px;
            padding-right: 15px;
        }

        .halo-product-block .collection-column-2:first-child{
            padding-right: 10px;
        }

        .halo-product-block .collection-column-2+.collection-column-2{
            padding-left: 10px;
        }
    /* END: Product Block */

    /* START: Footbar Fixed */
        .footbar-fixed-left {
            position: fixed;
            left: 15px;
            right: auto;
            bottom: 15px;
            z-index: 10;
            width: auto;
        }
        .footbar-fixed-right {
            position: fixed;
            left: auto;
            right: 15px;
            bottom: 15px;
            z-index: 10;
          }
    /* END: Footbar Fixed */

    /* START: Image Zoom */
        .image-zoom:hover img{
            transform: scale(1.06);
        }
    /* END: Image Zoom */

    /* START: Custom Position */
        .custom_position {
            top: var(--vertical_position) !important;
            left: var(--horizontal_position) !important;
            right: auto !important;
            bottom: auto !important;
            transform: translate(var(--minus_horizontal_position), var(--minus_vertical_position)) !important;
        }
    /* END: Slideshow */

    /* START: Calculator Free Shipping Message */
        .haloCalculatorShipping{
            padding: 0 30px;
        }
    /* END: Calculator Free Shipping Message */

    /* Start: Sidebar Animation */
        .body-content-wrapper {
            transition: transform var(--duration-long) ease;
            
        }
        
        body.cart-sidebar-show .body-content-wrapper,
        body.auth-sidebar-show .body-content-wrapper,
        body.show-pickup-availability .body-content-wrapper {
            transform: translateX(calc(var(--page-content-distance) * -1));
        }
        
        body.menu_open .body-content-wrapper,
        body.open_search_mobile .body-content-wrapper {
            transform: translateX(var(--page-content-distance));
        }
        
        #halo-cart-sidebar .halo-sidebar-header,
        #halo-cart-sidebar .previewCartMessage,
        #halo-cart-sidebar .previewCart-wrapper,
        #halo-auth-sidebar .halo-sidebar-header,
        #halo-auth-sidebar .halo-sidebar-wrapper,
        #halo-language-currency-sidebar .title,
        #halo-language-currency-sidebar .halo-top-language,
        #halo-language-currency-sidebar .halo-top-currency
        {
            transform: translateX(calc(var(--sidebar-content-distance) * 1));
            opacity: 0;
            transition: transform var(--duration-long) ease, opacity var(--duration-long) ease;
            transition-delay: 0;
        }

        body:not(.safari).cart-sidebar-show #halo-cart-sidebar .halo-sidebar-header,
        body:not(.safari).auth-sidebar-show #halo-auth-sidebar .halo-sidebar-header,
        body:not(.safari).lang-currency-sidebar-show #halo-language-currency-sidebar .title {
            transition-delay: 250ms;
        }

        body:not(.safari).cart-sidebar-show #halo-cart-sidebar .previewCartMessage,
        body:not(.safari).lang-currency-sidebar-show #halo-language-currency-sidebar .halo-top-language,
        body:not(.safari).lang-currency-sidebar-show #halo-language-currency-sidebar .halo-top-currency {
            transition-delay: 400ms;
        }

        body:not(.safari).cart-sidebar-show #halo-cart-sidebar .previewCart-wrapper {
            transition-delay: 550ms;
        }

        body:not(.safari).cart-sidebar-show #halo-auth-sidebar .halo-sidebar-header {
            transition-delay: 300ms;
        }

        body:not(.safari).auth-sidebar-show #halo-auth-sidebar .halo-sidebar-wrapper {
            transition-delay: 300ms;
        }

        #search-form-mobile .halo-sidebar-header,
        #search-form-mobile .header__search-full,
        #search-form-mobile .quickSearchTrending,
        #search-form-mobile .quickSearchProduct,
        #navigation-mobile .halo-sidebar-wrapper
        {
            transform: translateX(calc(var(--sidebar-content-distance) * -1));
            opacity: 0;
            transition: transform var(--duration-long) ease, opacity var(--duration-long) ease;
            transition-delay: 0;
        }

        body:not(.safari).open_search_mobile #search-form-mobile .halo-sidebar-header,
        body:not(.safari).menu_open #navigation-mobile .halo-sidebar-wrapper
        {
            transition-delay: 250ms;
        }

        body:not(.safari).open_search_mobile #search-form-mobile .header__search-full {
            transition-delay: 400ms;
        }

        body:not(.safari).open_search_mobile #search-form-mobile .quickSearchTrending {
            transition-delay: 550ms;
        }

        body:not(.safari).open_search_mobile #search-form-mobile .quickSearchProduct {
            transition-delay: 700ms;
        }

        body.cart-sidebar-show #halo-cart-sidebar .halo-sidebar-header,
        body.cart-sidebar-show #halo-cart-sidebar .previewCartMessage,
        body.cart-sidebar-show #halo-cart-sidebar .previewCart-wrapper,
        body.auth-sidebar-show #halo-auth-sidebar .halo-sidebar-header,
        body.auth-sidebar-show #halo-auth-sidebar .halo-sidebar-wrapper,
        body.open_search_mobile #search-form-mobile .halo-sidebar-header,
        body.open_search_mobile #search-form-mobile .header__search-full,
        body.open_search_mobile #search-form-mobile .quickSearchTrending,
        body.open_search_mobile #search-form-mobile .quickSearchProduct,
        body.menu_open #navigation-mobile .halo-sidebar-wrapper,
        body.lang-currency-sidebar-show #halo-language-currency-sidebar .title,
        body.lang-currency-sidebar-show #halo-language-currency-sidebar .halo-top-language,
        body.lang-currency-sidebar-show #halo-language-currency-sidebar .halo-top-currency {
            transform: translateX(0);
            opacity: 1;
        }

        body.cart-sidebar-show,
        body.auth-sidebar-show,
        body.open_search_mobile,
        body.menu_omenu_openpen,
        body.quick-view-show,
        body.quickshop-popup-show,
        body.newsletter-show,
        body.show-pickup-availability {
            padding-inline-end: 16px;
        } 
    /* END: Sidebar Animation */

    /* START: Mobile Lookbook */
        .halo-popup-wrapper-mobile {
            display: none;
        }
    /* END: Mobile Lookbook */
}

@media (min-width: 1200px){
}

@media (min-width: 1280px){
    /* START: Popup */
        .halo-popup.customPopup-extraLarge{
            max-width: 1170px;
        }

        .halo-lookbook-popup .halo-popup-wrapper {
            max-height: 366px;
        } 

        .halo-lookbook-popup .lookbook-content .card-media {
            padding-bottom: 133.33333333333334% !important;
        }
    /* END: Popup */
}

@media (min-width: 1400px){
    /* START: Layout Boxed */
        .wrapper-hasbanner-adv{
            display: flex;
        }
    /* END: Layout Boxed */

    /* START: Popup */
        .halo-popup.customPopup-extraLarge{
            max-width: 1370px;
        }
    /* END: Popup */
}

@media (min-width: 1600px){
    /* START: Layout Boxed */
        .halo-widget-banner{
            opacity: 1;
            visibility: visible;
        }

        .halo-widget-banner .adaptive_height img.lazyload+.data-lazy-loading{
            background: transparent;
        }
    /* END: Layout Boxed */

    /* START: Popup */
        .halo-popup.customPopup-extraLarge{
            max-width: 1570px;
        }
    /* END: Popup */

    /* START: Product Grid */
        .products-grid.column-5 .product{
            width: 20%;
        }

        .products-grid.column-5 .product:nth-child(-n + 5){
            margin-top: 0;
        }
    /* END: Product Grid */

    /* START: Block */
        .halo-product-block .slick-prev{
            left: 0px;
        }

        .halo-product-block .slick-next{
            right: 0px;
        }

        .halo-product-block .products-carousel.column-5:not(.slick-initialized) > .product{
            width: 20%;
        }
    /* END: Block */
}

@media (min-width: 1920px){
    /* START: Block */
        .halo-product-block .slick-prev{
            left: 0px;
        }

        .halo-product-block .slick-next{
            right: 0px;
        }
    /* END: Block */

    .slick-arrow.slick-next{
        right: var(--position-horizontal-slick-arrow) !important;
    } 

    .slick-arrow.slick-prev{
        left: var(--position-horizontal-slick-arrow) !important;
    }
}

@media (min-width: 768px) and (max-width: 1024px){
    /* START: Lookbook */
        .halo-lookbook-popup-mobile .halo-popup-wrapper-mobile .product-item .card-action,
        .halo-lookbook-popup-mobile .halo-popup-wrapper-mobile .product-item .card-information .card-swatch {
            display: none;
        }

        .halo-lookbook-popup-mobile .product-item {
            flex-basis: 25%;
        }
    /* END: Lookbook */
    
    /* START: Slider */
        .halo-row.column-3 .slider__slide, .halo-row.column-4 .slider__slide{
            width: 50%;
        }

        .halo-row.column-5 .slider__slide, .halo-row.column-5 .halo-item{
            width: 33.333333%;
        }

        .halo-row.column-5:not(.brands-slider) .halo-item{
            margin-bottom: 15px;
        }

        .slider-dots.count_2,
        .slider-action.count_2{
            display: none;
        }

        .slider-dots li:last-child{
            display: none;
        }
    /* END: Slider */

    /* START: Block */
        .halo-block-header .title .text{
            padding: 0 60px;
        }
    /* END: Block */
}

@media (prefers-reduced-motion){
    .motion-reduce {
        transition: none !important;
    }
}

/*ae changes*/
.home_category_row{
    overflow-x: scroll;
    display: flex;
    scroll-snap-type: x mandatory;
    scroll-padding: 24px;
    gap: 12px;
    width: 100%;
    transition: all 1.5s ease 0s;
}
.home_category_row::-webkit-scrollbar {
    display: none;
  scrollbar-width: none;
}
.home_category_listing{
  text-align: center;
  position: relative;
  display: block;
}
.home_category_list_item {
  cursor: pointer;
  flex: 0 0 20rem;
  scroll-snap-align: start;
}

.category_image img{
  border-radius:50%;
  width:100%;
}
.category_title{
  margin: 5px;
  font-weight: 500;
}
.home_category_row{
  padding: 0 10rem 0 10rem;
  margin-bottom:5rem;
}
.menu-lv-item a{
  font-family: var(--font-body-family) !important;
  font-weight: 550;
}
.policies-icon.image-zoom{
  width: 44px !important;
}
.custom-service-block .halo-item a{
  flex-direction: row !important;
  padding: 5px !important;
  align-items: flex-start !important;
}
span.policies-text.type--font_1 {
    font-size: 12px !important;
    text-align: left;
  margin-left: 15px;
}
.header-advanced__link--account{
  flex-direction:column;
  align-items: baseline;
}
.header-advanced__link--account span{
  line-height:1.5;
}
.floating_btn{
  position: fixed;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  line-height: 50px;
  text-align: center;
  color: #fff;
  z-index: 99;
}
.whatsapp{
  background: #86df7b;
  right: 1.5rem;
  bottom: 3rem;
}
.call{
  background: #5c6ac4;
  left: 1.5rem;
  bottom: 3rem;
  visibility:hidden;
}
@media only screen and (max-width: 600px) {
  .whatsapp{
    background: #86df7b;
    right: 1.5rem;
    bottom: 8rem;
  }
  .call{
    background: #5c6ac4;
    left: 1.5rem;
    bottom: 8rem;
    visibility:visible;
  }
  .ae-collection-banner-title nav{
    display:none;
  }
}
.floating_btn:focus,
.floating_btn:active,
.floating_btn:hover,{
  color:white !important;
}
.floating_btn svg {
  width: 3.5rem;
  height: 2.5rem;
  color:white;
}
@media only screen and (max-width: 600px) {
  .home_category_row{
    padding:0;
  }
  .home_category_list_item{
    flex: 0 0 7rem;
  }
  .rich-text.section-block-template--16757106540767__a4641120-0463-4d99-9af8-0859113fe609 {
    display: none;
  }
    .collection-banner{
    height:130px !important;
  }
}
.category_back_arrow,
.category_next_arrow{
    width: 60px;
    height: 60px;
    display: block;
    background: #ffffff75;
    position: absolute;
    z-index: 1;
    border-radius: 100%;
    margin: auto;
    top: 0;
    bottom: 0;
    cursor: pointer;
    line-height: 60px;
    text-align: center;
}
.category_back_arrow svg,
.category_next_arrow svg{
  width:3rem !important;
  height:3rem !important;
}
#cat_container{
  transition:0.5s ease;
  scroll-behavior:smooth;
}
.category_back_arrow{
  left:15px;
}
.category_next_arrow{
  right:15px;
  transform: scale(-1);
}
.tammara{
    height: 33px;
    position: relative;
    background: url(/cdn/shop/files/MicrosoftTeams-image_2_1_1.png?v=1691134014);
    width: 50px;
    background-size: 100% 100%;
    border-radius: 5px;
    width: 70px;
}
.product{
    border: 1px solid #ccc;
    border-radius: 10px;
    margin: 0 1px 0 9.3px;
}
.collection .column-2 .product {
  width:48% !important;
}
.collection .column-3 .product {
  width:32% !important;
}
.collection .column-4 .product {
  width:23.5% !important;
}
.product .badge{
  padding: 2px 10px 2px 10px !important;
    margin: 11px 0px 0px 0px !important;
    border-radius: 20px !important;
}
.product-form__submit{
  border-radius:30px !important;
}
.label-tab,
.button .button--primary .filter__price--apply{
  border-radius: 20px !important;
}
.price__last .money,
.discounted-price .money,
.total .money{
  color: #05B374 !important;
    font-weight: 600 !important;
    font-size: 16px !important;
}
.price__compare .money,
.before-discount-price .money{
  color:#d62828 !important;
}
.productGrid.column-2 .product, .productGrid.column-3 .product, .productGrid.column-4 .product, .productGrid.column-5 .product{
  margin-top:11px !important;
}
.facets__price--box .filter__price{
  border-radius:30px !important;
}
.facets__price--slide input[type=range]{
  appearance:auto;
  accent-color:black;
}
.collection-banner{
  height:300px;
  background-size: 100% !important;
}
.ae-collection-banner-title{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    color: white !important;
    width: 100%;
    text-align: center;
    height: 100%;
    background-color: #0000007d;
  z-index:1;
}
breadcrumb-component nav{
  justify-content:center;
  z-index:1;
}
.ae-collection-title{
  display:none !important;
}
.field__currency{
  display:none;
}
.facets__price .filter__price{
  border:none !important;
  padding:0 !important;
  text-align:center !important;
}
.card-action{
  width:fit-content;
}
.card-information{
  border-top:1px solid #ccc;
  height: 20rem !important;
}
.product{
  padding:0 !important;
  overflow:hidden !important;
}
.product-card-layout-02 .productListing .product-item.enable_custom_layout_card .wrapper__card{
  justify-content:center !important;
}
.collection-header.container .breadcrumb {
  visibility:hidden;
}
@media only screen and (max-width: 600px) {
.collection-header.container .breadcrumb {
  visibility:visible;
}
}
.pagination.style--3 .pagination__item{
  border-radius:100% !important;
}
input[type="email"]{
  border-radius:50px !important;
}
.cart-item{
  border-radius:15px !important;
}
input{
  border-radius:30px !important;
}
.cart-item .cart-item-total .money,
.cart-total-grandtotal > .cart-total-value .money{
  color: #00b087 !important;
}
.cart-total-savings .cart-total-value .money{
  color: red !important;
}
.policies-block-wrapper .halo-item {
  display: flex;
  justify-content: center;
  align-items: center;
}  
.policies-block-wrapper .halo-item a{
  height: fit-content;
  display:flex;
}
.policies-block-wrapper .halo-item a .policies-icon{
  margin-bottom:0 !important;
  align-self:center;
}
.policies-block-wrapper .halo-item:hover img{
  filter:invert(67%) sepia(81%) saturate(4006%) hue-rotate(128deg) brightness(87%) contrast(101%);
}
.policies-block-wrapper .halo-item:hover .policies-text{
  color: #00b087;
}
div[data-desc="digital-pianos"] #product-add-to-cart,
div[data-desc="digital-pianos"] .is-notify-me{
  width: fit-content !important;
}
.halo-popup-wrapper{
  border-radius:15px !important;
}
.countdown-block{
  gap:1rem;
}
.clock-item{
  border: 1px solid #F2F2F2 !important;
  border-radius:10px !important;
}
.swiper{
    width: 100%;
    height: auto;
    position: relative;
    padding: 20px
}
.swiper .swiper-slide{
    border-radius: 5px;
    text-align: center;
}
.category-image-container{
    text-align: center;
    border-radius: 100%;
    display: flex;
    position: relative;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    border:1px solid #ececec;
    /* aspect-ratio: 1 / 1;*/
}
.category-image-container a,
.category-image-container img{
  width:100%;
  height:100%;
}
.category-image-container img{
     transition: 0.5s ease;
     object-fit:cover;
}
.category-image-container:hover img{
  transform: scale(1.2);
}
.category_title{
  text-align:center;
}
.category-section{
  padding:0 2rem 0 2rem;
  position:relative;
}
.swiper-pagination-bullet{
  display: inline-block;
}
.product-block__image{
  border-radius:10px;
}

.productList .card-information__wrapper{
  margin-top:5rem !important;
}
.customImageBanner-inner .sub_title,
.customImageBanner-inner .des{
  font-size:24px !important;
}
.customImageBanner-inner h3{
  font-size:26px !important;
}
@media screen and (max-width: 700px){
  .wishlist-icon{
    width:25px !important;
    height:25px !important;
    margin-right:10px;
  }
  .product .badge{
    margin:0 !important;
  }
    .card-quickview{
      display:none !important;
    }
   .list-product-tabs{
     margin-top:1rem !important;
   }
  .policies-block-wrapper .halo-item{
    border-left:unset !important;
  }
  .productGrid .product, .productGrid.column-2 .product{
    width:46% !important;
  }
  .content-box--absolute{
    padding:25px 25px 30px;
  }
  .customImageBanner-inner{
    margin-top:5rem;
  }
  .customImageBanner-row .sub_title{
    background: black;
    font-size: 16px !important;
    width: fit-content;
  }
  .customImageBanner-row .link_title{
    font-size: 10px !important;
    line-height: 1 !important;
  }
  .customImageBanner-row .des {
    font-size: 16px !important;
  }
}
.customImageBanner-row .link_title{
    line-height: 1 !important;
}
back-to-top-button{
  display:none !important;
}
.get_direction{
    text-align: center;
    font-size: 13px;
    cursor: pointer;
    margin: 10px 0 0 0;
    display: block;
    width: fit-content;
    font-weight:600;
}

.swiper-pagination-bullet{
  background-color:white !important;
  border: 1px solid var(--dots-border-color) !important;
  background: var(--dots-color) !important;
  width: var(--dots-width) !important;
  height: var(--dots-height) !important;
}
.swiper-pagination-bullet-active{
  background: #7c7c7c !important;
}
.card-information{
  position:relative !important;
}
.card-information__wrapper{
  margin-top:10px;
}
.express-badge{
    background: black;
    color: white;
    width: fit-content;
    border-radius: 50px;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: -12px;
    z-index: 1;
}
.express-badge-product-page{
    background: black;
    color: white;
    width: fit-content;
    border-radius: 50px;
    padding:0px 10px 0px 10px
}
.price__sale{
  justify-content:center !important;
}
.card-title{
  font-weight:600 !important;
  height:4rem;
  padding: 5px !important;
}
.header__inline-menu{
  position:relative;
}
.site-nav{
  text-align:center;
}
.site-nav-list:hover a {
    color: #ffcb05;
}
/* .header__inline-menu{
  position:relative;
}
.header__submenu{
    display: flex;
    width: 100%;
    position: absolute;
    left: 0;
    flex-wrap: wrap;
    border-radius:10px;
}
.menu-lv-item{
  position:unset !important;
}
.menu-lv-item a{
  border-bottom:unset !important;
}
.menu-lv-2, .menu-lv-3{
  width:16.66% !important;
} */
h3.article-card__title{
  height:7rem;
}
.article-card__des{
  height:10rem;
}
.recommended-ae .card-information__wrapper{
  padding:10px !important;
}
.card-action{
  padding:0 10px 0 10px !important;
}
.shipping{
    display: inline-flex !important;
    justify-content: space-around;
    flex-direction: column;
    list-style: none !important;
    margin: 0 !important;
    /* max-width: 450px !important;
     height:270px; */
    padding:0 !important;
}
ul.shipping li {
    font-weight: 500 !important;
    font-size: 15px !important;
    /* margin: 0 0 20px 0; */
}
ul.shipping li span,
ul.shipping li svg{
  vertical-align:middle;
}
ul.shipping li svg{
  width:18px !important;
  height:18px !important;
}
.product-tab-img{
    width: 500px;
    height:270px;
    border-radius: 10px;
    display: inline !important;
    vertical-align: top;
    margin-right: 15px;
    margin-bottom:15px;
}
.halo-block-header{
  padding-top:15px;
}
.spr-container{
  display:none !important;
}
.productView-soldProduct{
  vertical-align:baseline !important;
  white-space:nowrap;
}
.productView-customText p {
    font-weight: unset !important;
}
.collections-wrapper .des{
  display:none !important;
}
.img-box a{
  border-radius:10px !important;
}

.flex-column{
  flex-direction: column;
}
.tab-popup-content[data-test="description"] .d-flex > h6 {
    font-size: 14px;
}
.tab-popup-content[data-test="description"] .d-flex > p {
    font-size: 16px;
    margin: 0 0 15px 0;
}
.ae-button{
  padding:20px;
  border-radius:10px;
}
.ae-button[data-type="basic"]{
  background:white;
  border: 1px solid #707070;
  color: #000;
}
.toolbar-icon[data-col="1"] {
    display: none !important;
}
.product{
  margin-bottom:5px !important;
}
#halo-product-custom-information{
    overflow-y: scroll;
    max-height: 90%;
    overflow-x: hidden;
}
.size-guide-table tr th,
.size-guide-table tr td {
  text-align: center;
  width: 100px;
}

.size-guide-table tr:nth-child(even) {
  background-color: #fbfbfb;
}

.size-guide-table th {
  background-color: #f5f5f5;
}
/* ----------- iPhone 12 Mini ----------- */
/* 2340x1080 pixels at 476ppi */ 
@media only screen
and (device-width: 360px) 
and (device-height: 780px) 
and (-webkit-device-pixel-ratio: 3) { }
/* ----------- iPhone 12, 12 Pro ----------- */
/* 2532x1170 pixels at 460ppi */ 
@media only screen 
and (device-width: 390px) 
and (device-height: 844px) 
and (-webkit-device-pixel-ratio: 3) { }
/* ----------- iPhone 11 ----------- */
/* 1792x828px at 326ppi */ 
@media only screen 
and (device-width: 414px) 
and (device-height: 896px) 
and (-webkit-device-pixel-ratio: 2) { }
/* ----------- OnePlus 6 ----------- */
@media only screen
and (min-width: 412px) 
and (max-width: 869px) {}
/* For extremely small screen devices (595px and below) */
@media only screen and (max-width: 595px) {
  .size-guide th, .size-guide td{
    font-size:10px;
  }
  .menu-lv-item > a{
    text-align:left;
  }
  .collection .column-3 .product {
    width:46% !important;
  }
  .search-block-content .column-3 .product{
    margin:0 5px 0 5px !important;
  }
  .halo-sidebar_search .quickSearchResultsBlock .search-block-content .products-grid{
    padding:15px;
  }
  .cart-countdown{
    border-radius:10px !important;
  }
}
.article-card__title a{
      line-height: 1.5em;
    height: 3em;
    overflow: hidden; 
}
.image_logo img{
  width:20rem;
}
.size-guide table,
.size-guide th,
.size-guide td{
  border: 1px solid black;
  border-collapse: collapse;
}
.main-page-title{
  text-align:center !important;
}
.warranty_info{
    flex-wrap: wrap;
    display: flex;
    text-align: center;
    justify-content: space-between;
}
.warranty_box table{
  display:none;
}
.warranty_box {
    width: 100%;
    margin: 10px 0 10px 0;
}
@media (min-width: 768px){
  .warranty_box {
    width: 45%;
}
}

.warranty_box line{
    background: #9E9E9E;
    top: 0;
    width: 96%;
    height: 1px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    z-index: 0;
}
.warranty_box .liner-continer{
    display: flex;
    align-items: center;
    border-color: rgba(0,0,0,.105);
    flex-direction: row;
}
.warranty_box .liner-continer:before{
    content: "";
    display: block;
    flex: 1 1 auto;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: inherit;
    margin-right: 20px;
}
.warranty_box .liner-continer:after{
    content: "";
    display: block;
    flex: 1 1 auto;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: inherit;
    margin-left: 20px;
}
.warranty_box a{
  width:fit-content !important;
}
.warranty_pdf_content .btn:hover{
    background: var(--product-action-bg-hover);
    color: var(--product-action-color-hover);
    border-color: var(--product-action-border-hover);
    box-shadow: var(--btn-3-horizontal-length) var(--btn-3-vertical-length) var(--btn-3-blur-radius) var(--btn-3-spread) var(--btn-3-all-bg-opacity-hover) var(--btn-3-inset);
}
/* .newsletter-section{
  background-image: url('/cdn/shop/files/newsallater_bg.webp?v=1696404339') !important;
  background-position: center !important;
  background-size: contain !important;
} */
.header-navigation .container{
      width: fit-content !important;
}
.swiper-slide {
    width: 130px;
    margin-right:20px;
}
.header__submenu, .menu-dropdown__wrapper{
  border-radius:10px;
}
div#tab-description-mobile > .tab-popup-content p:has(iframe),
.yt-embed{
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}
div#tab-description-mobile > .tab-popup-content p:has(iframe) > iframe,
div#tab-description-mobile > .tab-popup-content p:has(iframe) > object,
div#tab-description-mobile > .tab-popup-content p:has(iframe) > embed,
.yt-embed iframe, 
.yt-embed object, 
.yt-embed embed { 
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
}
.banner-text{
  text-align: justify;
}
.card-information{
  display: flex !important;
    flex-direction: column !important;
}
.judgeme-container{
    display: inline-flex !important;
    width: fit-content !important;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.reviews-container{
    display: flex;
    align-items: center;
    background: #ffCB05;
    padding: 3px 7px 3px 7px;
    border-radius: 20px;
    font-weight: 500;
}
.reviews-container[data-background="yellow"]{
  background: #ffCB05;
}
.reviews-container svg{
    width: 12px;
    height: auto;
    margin-left: 2px;
    stroke: unset;
    margin-bottom: 2px;
}
.reviews-container p{
  margin:0 !important;
}
.reviews-container svg > path{
  fill:white;
}
/* .jdgm-widget{
    position: absolute !important;
    top: -24px !important;
    left: 0 !important;
    right: 0 !important;
    margin: auto !important;
} */
.button-ATC{
  width:fit-content !important;
}
.list-payment__item.tammara > svg {
    display: none;
}
div[data-test="description"]{
  user-select: none !important;
}
#popup-overlay,
#popup-overlay-postpay{
    background: #00000085;
    width: 100%;
    height: 100%;
    position: fixed;
    display: none;
    z-index: 9999;
    overflow: hidden;
    top: 0;
    bottom: 0;
}
.postpay-popup-btn svg{
    width: 10rem;
    height: auto;
}

.postpay-popup-btn{
    margin-top: 1rem;
    background-size: cover;
    background-position: center;
    border: unset;
    background-color: #00dfff;
}
.tabby-popup-btn{
    background: #3dedbf;
    border: 1px solid #3dedbf;
}
.tabby-popup-btn, .postpay-popup-btn{
    display:flex;
    border-radius: 10px;
    width: 100%;
    height: auto;
    text-align: center;
    font-size: 14px;
    text-transform: unset;
    cursor: pointer;
    position: relative;
    padding:15px 10px 15px 10px;
  justify-content:space-between;
}
.tabby-popup-btn p,
.postpay-popup-btn p{
    display: inline-block;
    margin: 0;
    font-weight: 600;
    font-size: 14px;
}
.tabby-popup-footer,
.postpay-popup-footer{
  width: 100%;
  position: relative;
  padding: 10px;
  text-align: left;
}
.tabby-popup-footer button,
.postpay-popup-footer button{
  width: fit-content;
  padding: 20px;
  font-size: 17px;
  text-transform: unset;
  font-weight: 500;
  display: inline;
}
.tabby-popup-container,
.postpay-popup-container{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: white;
    width: 55%;
    height: fit-content;
    max-height: 98%;
    margin: auto;
    border-radius: 10px;
    padding:30px;
}
.tabby-popup-header,
.postpay-popup-header{
    height: 60px;
    width: 100%;
    display: block;
    position:relative;
}
.tabby-popup-title,
.postpay-popup-title{
    font-family: var(--font-body-family) !important;
    font-size: 40px;
    font-weight: 700;
    line-height: 42px;
    background: linear-gradient(270deg, #00EBA9 0%, #6BF 47.92%, #9450FF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.tabby-popup-subtitle,
.postpay-popup-subtitle{
    font-size: 18px;
    font-weight: 600;
    margin-top: 12px;
    color: #292929;
}
.tabby-popup-diagrom-container,
.postpay-popup-diagrom-container{
  margin-top: 32px;
  display:block;
}
.rounded-diagram-container p {
    margin: 0;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
}
.rounded-diagram-container {
    display: inline-block;
    margin: 0 5px 0px 5px;
}
span.rounded-diagram {
    width: 40px;
    height: 40px;
    position: relative;
    display: block;
    border-radius: 100%;
    border: 3px solid #fff;
    outline: 1px solid #7f90a3;
    margin-bottom:1rem;
}

span.diagram-line:after {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    background: #7f90a3;
    left: 37px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.rounded-diagram-container:nth-child(1) > span{
  background:conic-gradient(#7f90a3 25%, #fff 25%);
}
.rounded-diagram-container:nth-child(2) > span{
  background:conic-gradient(#7f90a3 50%, #fff 50%);
}
.rounded-diagram-container:nth-child(3) > span{
  background:conic-gradient(#7f90a3 75%, #fff 75%);
}
.rounded-diagram-container:nth-child(4) > span{
  background:conic-gradient(#7f90a3 100%, #fff 100%);
}
.tabby-popup-content > p,
.postpay-popup-content > p{
    font-size: 30px;
    font-weight: 600;
}
ul.tabby-popup-ul,
ul.postpay-popup-ul{
    margin: 0;
    padding:0;
    list-style: none;
}
ul.tabby-popup-ul li,
ul.postpay-popup-ul li{
    padding-left: 0;
    display: flex;
    align-items: center;
    margin:10px 0 0px 0px;
    width: fit-content;
}
ul.tabby-popup-ul li span,
ul.postpay-popup-ul li span{
    display: inline-block;
    background: #F2F5F7;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    font-size: 17px;
    border-radius: 100%;
    font-weight: 600;
    margin-right: 10px;
}
ul.tabby-popup-ul li p,
ul.postpay-popup-ul li p{
    font-size: 17px;
    display: inline-block;
    margin: 0;
}
.tabby-header-close,
.postpay-header-close{
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    height: auto;
    cursor: pointer;
    overflow-y:auto;
}
/* Small screen devices (600px and above) */
@media only screen and (max-width: 700px) {
  .tabby-popup-container,
  .postpay-popup-container{
    overflow:scroll;
    width:95% !important;
    height:95% !important;
  }
}

/* Medium screen devices (768px and above) */
@media only screen and (min-width: 768px) {}

/* Big screen devices (889px and above) */
@media only screen and (min-width: 889px) {}

/* Extra big screen devices (1200px and above) */
@media only screen and (min-width: 1200px) {}
.postpay{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 191.15 60.67'%3E%3Cpath d='m153.52,46.34h4.19c.32,0,.59-.16.71-.47l10.23-25.72c.16-.44-.04-.67-.47-.67h-4.35c-.32,0-.59.16-.71.47l-4.58,12.56-4.62-12.56c-.12-.32-.39-.47-.71-.47h-4.34c-.44,0-.63.24-.47.67l7.47,18.72-2.8,6.79c-.2.44.04.67.47.67m-24.02-17.18c0-3.08,2.13-5.17,5.02-5.17s4.9,2.05,4.9,5.17-2.01,5.18-4.9,5.18-5.02-2.05-5.02-5.18m3.87,10.15c2.88,0,4.98-1.22,6.32-3.2l.08,2.13c0,.36.24.59.59.59h3.83c.36,0,.63-.24.63-.59v-18.17c0-.36-.24-.59-.59-.59h-3.87c-.35,0-.59.24-.59.59l-.08,2.13c-1.3-2.01-3.4-3.2-6.32-3.2-5.45,0-9.2,4.42-9.2,10.15s3.75,10.15,9.2,10.15m-27.18-10.15c0-3.12,2.01-5.17,4.94-5.17s4.98,2.09,4.98,5.17-2.13,5.18-4.98,5.18-4.94-2.05-4.94-5.18m-4.82,17.18h4.31c.36,0,.59-.24.59-.59v-9.2c1.34,1.74,3.36,2.77,6,2.77,5.41,0,9.16-4.39,9.16-10.15s-3.75-10.15-9.16-10.15c-2.96,0-5.02,1.19-6.32,3.2l-.08-2.13c0-.36-.24-.59-.59-.59h-3.91c-.36,0-.59.24-.59.59v25.68c0,.36.24.59.59.59m-7.35-7.27c1.3,0,3.28-.24,3.28-1.15v-2.88c0-.39-.28-.59-.71-.55-.47.04-.87.04-1.22.04-1.03,0-1.7-.55-1.7-1.7v-9.12h3.04c.36,0,.59-.24.59-.59v-3.04c0-.36-.24-.59-.59-.59h-3.04v-4.54c0-.36-.24-.59-.59-.59h-4.31c-.36,0-.59.24-.59.59v4.54h-2.45c-.36,0-.59.24-.59.59v3.04c0,.35.24.59.59.59h2.45v9.72c0,4.23,2.76,5.65,5.85,5.65m-18.05.24c3.87,0,7.23-2.01,7.27-5.93.04-2.96-1.9-4.66-4.35-5.65l-2.73-1.07c-1.07-.39-1.86-.91-1.86-1.86,0-.83.59-1.54,1.86-1.54,1.15,0,2.25.55,3.52,1.62.36.28.63.32.91,0l1.74-2.09c.2-.24.28-.55.04-.83-1.62-1.94-3.95-2.96-6.48-2.96-3.6,0-6.75,2.13-6.75,5.85,0,2.69,1.74,4.34,4.23,5.33l2.45.99c1.42.59,2.01,1.03,2.01,1.97,0,1.11-.87,1.62-2.17,1.62-1.5,0-2.84-.67-4.46-1.9-.32-.24-.67-.32-.99.16l-1.38,1.94c-.28.43-.32.87-.08,1.15,1.54,1.82,3.99,3.2,7.23,3.2m-24.89-10.15c0-3.16,2.13-5.14,4.9-5.14s4.86,1.98,4.86,5.14-2.13,5.14-4.86,5.14-4.9-1.97-4.9-5.14m4.9,10.15c5.81,0,10.11-4.42,10.11-10.15s-4.31-10.15-10.11-10.15-10.15,4.42-10.15,10.15,4.31,10.15,10.15,10.15m-28.13-10.15c0-3.12,2.02-5.17,4.94-5.17s4.98,2.09,4.98,5.17-2.13,5.18-4.98,5.18-4.94-2.05-4.94-5.18m-4.82,17.18h4.31c.35,0,.59-.24.59-.59v-9.2c1.34,1.74,3.36,2.77,6.01,2.77,5.41,0,9.16-4.39,9.16-10.15s-3.75-10.15-9.16-10.15c-2.96,0-5.02,1.19-6.32,3.2l-.08-2.13c0-.36-.24-.59-.59-.59h-3.91c-.36,0-.59.24-.59.59v25.68c0,.36.24.59.59.59'%3E%3C/path%3E%3C/svg%3E");
  width: 80px;
  height: 30px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
@keyframes animStar {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(2000px);
  }
}
.star-layers {
  height: 100vh;
  overflow: hidden;
  position: absolute;
  width:100%;
  z-index:1;
}
.star-layers .star-layer {
  position: absolute;
  width: 1px;
  height: 1px;
  background: transparent;
  display:block;
  animation: hideMeAnimation 0s 5s forwards;
}
.star-layers .star-layer:after {
  content: " ";
  position: absolute;
  top: 2000px;
  width: 1px;
  height: 1px;
  background: transparent;
}
.star-layers #stars {
  box-shadow: 377px 705px #FFF, 449px 1686px #FFF, 1934px 1787px #FFF, 555px 887px #FFF, 1947px 910px #FFF, 858px 1347px #FFF, 1856px 17px #FFF, 741px 1755px #FFF, 1342px 334px #FFF, 359px 1048px #FFF, 144px 1713px #FFF, 339px 398px #FFF, 1278px 44px #FFF, 1743px 1832px #FFF, 736px 928px #FFF, 1098px 576px #FFF, 474px 402px #FFF, 1419px 59px #FFF, 1987px 1540px #FFF, 860px 289px #FFF, 1450px 733px #FFF, 1917px 795px #FFF, 1668px 1722px #FFF, 1576px 1490px #FFF, 1952px 1334px #FFF, 543px 1797px #FFF, 264px 103px #FFF, 992px 114px #FFF, 927px 1141px #FFF, 1517px 1538px #FFF, 471px 1717px #FFF, 624px 1366px #FFF, 1919px 1967px #FFF, 1621px 480px #FFF, 65px 817px #FFF, 995px 471px #FFF, 227px 285px #FFF, 1017px 1956px #FFF, 806px 1332px #FFF, 706px 1871px #FFF, 1671px 1023px #FFF, 753px 141px #FFF, 1420px 1819px #FFF, 607px 1978px #FFF, 766px 1710px #FFF, 901px 1003px #FFF, 861px 551px #FFF, 1686px 368px #FFF, 648px 1943px #FFF, 931px 636px #FFF, 558px 791px #FFF, 359px 1288px #FFF, 1811px 1337px #FFF, 1621px 47px #FFF, 1922px 1519px #FFF, 157px 1722px #FFF, 1574px 1643px #FFF, 1156px 1417px #FFF, 1398px 1535px #FFF, 540px 981px #FFF, 283px 516px #FFF, 366px 1023px #FFF, 1061px 1646px #FFF, 1440px 1554px #FFF, 1041px 363px #FFF, 189px 888px #FFF, 306px 587px #FFF, 677px 829px #FFF, 446px 860px #FFF, 119px 1163px #FFF, 366px 791px #FFF, 698px 1894px #FFF, 1748px 1304px #FFF, 566px 724px #FFF, 181px 1385px #FFF, 533px 1488px #FFF, 1487px 368px #FFF, 1466px 177px #FFF, 586px 1157px #FFF, 947px 1375px #FFF, 1727px 645px #FFF, 1865px 1151px #FFF, 99px 855px #FFF, 1686px 1831px #FFF, 70px 1622px #FFF, 784px 1185px #FFF, 402px 621px #FFF, 657px 232px #FFF, 1298px 578px #FFF, 243px 1444px #FFF, 574px 1337px #FFF, 1784px 697px #FFF, 481px 1126px #FFF, 1636px 1758px #FFF, 1465px 515px #FFF, 1986px 464px #FFF, 881px 875px #FFF, 1517px 1763px #FFF, 1327px 1422px #FFF, 1596px 423px #FFF, 816px 220px #FFF, 230px 373px #FFF, 1513px 1167px #FFF, 1380px 1428px #FFF, 1795px 410px #FFF, 1396px 1883px #FFF, 363px 1299px #FFF, 1997px 1803px #FFF, 1434px 498px #FFF, 1166px 1599px #FFF, 930px 1723px #FFF, 846px 839px #FFF, 1279px 142px #FFF, 401px 1125px #FFF, 1451px 555px #FFF, 1442px 902px #FFF, 283px 1131px #FFF, 91px 544px #FFF, 570px 1277px #FFF, 663px 532px #FFF, 487px 1535px #FFF, 1503px 488px #FFF, 1476px 1868px #FFF, 633px 1141px #FFF, 729px 129px #FFF, 538px 908px #FFF, 1715px 1025px #FFF, 1025px 596px #FFF, 204px 302px #FFF, 1748px 1829px #FFF, 1992px 182px #FFF, 1938px 1754px #FFF, 1185px 1987px #FFF, 1088px 909px #FFF, 1386px 1165px #FFF, 698px 1174px #FFF, 673px 777px #FFF, 1508px 202px #FFF, 509px 1436px #FFF, 74px 1762px #FFF, 585px 767px #FFF, 1524px 1301px #FFF, 997px 81px #FFF, 1787px 1506px #FFF, 1351px 1022px #FFF, 157px 1552px #FFF, 206px 125px #FFF, 1882px 1151px #FFF, 1121px 172px #FFF, 392px 771px #FFF, 578px 528px #FFF, 1024px 661px #FFF, 1985px 1609px #FFF, 1855px 366px #FFF, 1687px 42px #FFF, 1840px 1846px #FFF, 465px 1802px #FFF, 1924px 238px #FFF, 1474px 142px #FFF, 707px 139px #FFF, 1195px 188px #FFF, 1758px 350px #FFF, 568px 1648px #FFF, 631px 490px #FFF, 1134px 991px #FFF, 1194px 1231px #FFF, 56px 651px #FFF, 1025px 458px #FFF, 1352px 1878px #FFF, 233px 1679px #FFF, 1627px 1886px #FFF, 887px 1789px #FFF, 422px 1222px #FFF, 255px 1825px #FFF, 59px 113px #FFF, 938px 702px #FFF, 1999px 580px #FFF, 1423px 76px #FFF, 1981px 1514px #FFF, 885px 1232px #FFF, 995px 1942px #FFF, 304px 1563px #FFF, 1382px 1471px #FFF, 1968px 1413px #FFF, 609px 1784px #FFF, 1975px 176px #FFF, 337px 744px #FFF, 802px 1134px #FFF, 625px 1442px #FFF, 894px 1394px #FFF, 1869px 677px #FFF, 615px 424px #FFF, 344px 245px #FFF, 1220px 1021px #FFF, 182px 312px #FFF, 188px 1841px #FFF, 166px 1965px #FFF, 1491px 27px #FFF, 1389px 339px #FFF, 1961px 982px #FFF, 1193px 232px #FFF, 1769px 1821px #FFF, 1932px 469px #FFF, 1509px 686px #FFF, 1463px 642px #FFF, 839px 1131px #FFF, 1291px 817px #FFF, 1219px 313px #FFF, 1478px 1549px #FFF, 1529px 1391px #FFF, 1664px 1025px #FFF, 236px 1997px #FFF, 1123px 1574px #FFF, 1425px 1752px #FFF, 1228px 491px #FFF, 3px 1611px #FFF, 1088px 1269px #FFF, 1860px 1463px #FFF, 1534px 1376px #FFF, 1813px 1699px #FFF, 1379px 1977px #FFF, 1882px 450px #FFF, 1579px 511px #FFF, 1411px 860px #FFF, 94px 1249px #FFF, 1207px 89px #FFF, 1759px 1701px #FFF, 278px 1535px #FFF, 683px 1788px #FFF, 509px 1656px #FFF, 1633px 365px #FFF, 1401px 479px #FFF, 875px 601px #FFF, 1450px 824px #FFF, 349px 913px #FFF, 1402px 293px #FFF, 272px 1499px #FFF, 1593px 1823px #FFF, 1869px 217px #FFF, 1059px 1518px #FFF, 267px 1808px #FFF, 1696px 1625px #FFF, 503px 158px #FFF, 589px 1012px #FFF, 380px 1772px #FFF, 1190px 268px #FFF, 1086px 174px #FFF, 1857px 1510px #FFF, 1504px 625px #FFF, 1961px 1451px #FFF, 144px 1156px #FFF, 1023px 1341px #FFF, 528px 1069px #FFF, 1703px 1250px #FFF, 1105px 1001px #FFF, 263px 1931px #FFF, 1765px 404px #FFF, 565px 1806px #FFF, 1294px 330px #FFF, 116px 1598px #FFF, 1447px 1797px #FFF, 742px 918px #FFF, 900px 337px #FFF, 288px 1806px #FFF, 160px 565px #FFF, 1275px 574px #FFF, 1743px 1598px #FFF, 164px 1525px #FFF, 1874px 33px #FFF, 1080px 1097px #FFF, 784px 1281px #FFF, 1161px 1989px #FFF, 241px 1351px #FFF, 1664px 1887px #FFF, 1679px 1536px #FFF, 823px 601px #FFF, 1442px 261px #FFF, 1631px 881px #FFF, 1452px 1156px #FFF, 1024px 264px #FFF, 1942px 1557px #FFF, 208px 1873px #FFF, 1069px 1910px #FFF, 224px 991px #FFF, 1014px 196px #FFF, 1656px 51px #FFF, 180px 731px #FFF, 1097px 1130px #FFF, 1475px 1699px #FFF, 1470px 1495px #FFF, 286px 357px #FFF, 1976px 881px #FFF, 903px 1498px #FFF, 278px 666px #FFF, 1961px 1683px #FFF, 695px 1788px #FFF, 846px 1083px #FFF, 1240px 67px #FFF, 1330px 227px #FFF, 574px 1342px #FFF, 965px 1604px #FFF, 1963px 1778px #FFF, 1958px 1219px #FFF, 1740px 1668px #FFF, 1012px 1037px #FFF, 1835px 904px #FFF, 915px 746px #FFF, 1576px 978px #FFF, 907px 1858px #FFF, 1380px 77px #FFF, 1278px 1162px #FFF, 1509px 1579px #FFF, 1108px 809px #FFF, 704px 98px #FFF, 715px 585px #FFF, 1837px 387px #FFF, 434px 624px #FFF, 759px 53px #FFF, 662px 1131px #FFF, 99px 30px #FFF, 1154px 12px #FFF, 271px 353px #FFF, 150px 298px #FFF, 155px 751px #FFF, 714px 1499px #FFF, 1713px 720px #FFF, 622px 768px #FFF, 1490px 1085px #FFF, 1350px 1625px #FFF, 1203px 826px #FFF, 1792px 472px #FFF, 95px 790px #FFF, 1945px 1174px #FFF, 1833px 1863px #FFF, 1px 575px #FFF, 1702px 1110px #FFF, 1491px 125px #FFF, 850px 1850px #FFF, 450px 455px #FFF, 1952px 19px #FFF, 190px 535px #FFF, 643px 1045px #FFF, 1613px 1772px #FFF, 577px 1449px #FFF, 1895px 254px #FFF, 446px 192px #FFF, 266px 1993px #FFF, 1702px 1718px #FFF, 1710px 1708px #FFF, 1012px 202px #FFF, 743px 207px #FFF, 1399px 993px #FFF, 1663px 818px #FFF, 807px 394px #FFF, 1632px 1678px #FFF, 1980px 1993px #FFF, 1091px 594px #FFF, 1202px 1496px #FFF, 281px 1923px #FFF, 865px 719px #FFF, 249px 1514px #FFF, 1717px 1295px #FFF, 1893px 1060px #FFF, 398px 330px #FFF, 478px 973px #FFF, 434px 753px #FFF, 879px 1593px #FFF, 1356px 1810px #FFF, 540px 842px #FFF, 320px 131px #FFF, 1653px 535px #FFF, 205px 1940px #FFF, 1120px 444px #FFF, 1984px 1245px #FFF, 544px 34px #FFF, 254px 1048px #FFF, 718px 920px #FFF, 552px 945px #FFF, 1522px 1273px #FFF, 1244px 1241px #FFF, 369px 308px #FFF, 1292px 960px #FFF, 40px 1650px #FFF, 65px 820px #FFF, 1657px 1858px #FFF, 46px 645px #FFF, 1808px 1420px #FFF, 610px 969px #FFF, 1228px 1146px #FFF, 309px 1086px #FFF, 1030px 273px #FFF, 896px 370px #FFF, 1062px 1843px #FFF, 1181px 930px #FFF, 711px 1035px #FFF, 1069px 1140px #FFF, 1126px 93px #FFF, 400px 625px #FFF, 737px 1731px #FFF, 1397px 513px #FFF, 1011px 730px #FFF, 15px 1346px #FFF, 438px 1231px #FFF, 222px 1365px #FFF, 1741px 61px #FFF, 204px 1715px #FFF, 963px 1226px #FFF, 1493px 1783px #FFF, 188px 46px #FFF, 187px 1193px #FFF, 1919px 1925px #FFF, 1989px 1031px #FFF, 1938px 871px #FFF, 884px 1425px #FFF, 1905px 714px #FFF, 56px 937px #FFF, 976px 863px #FFF, 1610px 1601px #FFF, 1988px 1375px #FFF, 1777px 1996px #FFF, 1966px 168px #FFF, 1475px 1050px #FFF, 1170px 1299px #FFF, 1074px 700px #FFF, 1370px 661px #FFF, 1363px 1834px #FFF, 80px 843px #FFF, 1118px 1677px #FFF, 1159px 503px #FFF, 159px 244px #FFF, 1074px 1080px #FFF, 286px 1700px #FFF, 708px 1922px #FFF, 384px 165px #FFF, 1228px 357px #FFF, 1674px 911px #FFF, 52px 229px #FFF, 1540px 730px #FFF, 690px 1087px #FFF, 9px 301px #FFF, 905px 1699px #FFF, 591px 738px #FFF, 1627px 1825px #FFF, 512px 1778px #FFF, 1218px 1990px #FFF, 1510px 1194px #FFF, 841px 1143px #FFF, 1221px 737px #FFF, 165px 50px #FFF, 1347px 83px #FFF, 1626px 1514px #FFF, 511px 464px #FFF, 1301px 701px #FFF, 1513px 1356px #FFF, 144px 364px #FFF, 1029px 1344px #FFF, 648px 1012px #FFF, 1585px 1174px #FFF, 1837px 1276px #FFF, 612px 1981px #FFF, 1851px 955px #FFF, 477px 1909px #FFF, 1707px 859px #FFF, 1099px 448px #FFF, 888px 1529px #FFF, 465px 1540px #FFF, 1737px 374px #FFF, 788px 1513px #FFF, 187px 1189px #FFF, 1970px 728px #FFF, 1340px 485px #FFF, 972px 298px #FFF, 487px 1515px #FFF, 303px 1802px #FFF, 1965px 249px #FFF, 389px 1200px #FFF, 1067px 741px #FFF, 847px 577px #FFF, 296px 369px #FFF, 531px 1516px #FFF, 1709px 959px #FFF, 1151px 591px #FFF, 1972px 825px #FFF, 1754px 542px #FFF, 9px 1098px #FFF, 180px 308px #FFF, 1059px 866px #FFF, 914px 849px #FFF, 919px 518px #FFF, 261px 1194px #FFF, 135px 1676px #FFF, 1012px 89px #FFF, 796px 451px #FFF, 959px 957px #FFF, 1947px 1754px #FFF, 578px 660px #FFF, 1982px 1052px #FFF, 566px 182px #FFF, 489px 634px #FFF, 40px 1023px #FFF, 1512px 1771px #FFF, 985px 1279px #FFF, 1563px 1392px #FFF, 1116px 1785px #FFF, 1919px 366px #FFF, 1837px 1583px #FFF, 1173px 1563px #FFF, 18px 814px #FFF, 1364px 28px #FFF, 706px 1856px #FFF, 1413px 345px #FFF, 1859px 326px #FFF, 1458px 1640px #FFF, 1319px 1892px #FFF, 212px 1702px #FFF, 1209px 685px #FFF, 1755px 884px #FFF, 771px 581px #FFF, 1900px 843px #FFF, 1897px 524px #FFF, 72px 410px #FFF, 1975px 1408px #FFF, 213px 299px #FFF, 571px 1482px #FFF, 1424px 1485px #FFF, 1096px 1180px #FFF, 899px 1952px #FFF, 6px 1917px #FFF, 1917px 403px #FFF, 1835px 199px #FFF, 346px 678px #FFF, 1663px 360px #FFF, 1134px 1068px #FFF, 1983px 1012px #FFF, 122px 1064px #FFF, 217px 310px #FFF, 881px 1436px #FFF, 1779px 128px #FFF, 267px 1001px #FFF, 1547px 1889px #FFF, 60px 1224px #FFF, 1401px 1243px #FFF, 785px 415px #FFF, 1511px 1229px #FFF, 1294px 390px #FFF, 1630px 494px #FFF, 1335px 397px #FFF, 1286px 1119px #FFF, 1478px 339px #FFF, 1312px 1700px #FFF, 1031px 137px #FFF, 1910px 52px #FFF, 190px 1750px #FFF, 1290px 81px #FFF, 113px 594px #FFF, 1258px 460px #FFF, 73px 1962px #FFF, 302px 1692px #FFF, 433px 265px #FFF, 740px 1811px #FFF, 1822px 1145px #FFF, 548px 918px #FFF, 191px 773px #FFF, 1445px 79px #FFF, 1663px 1774px #FFF, 1206px 1961px #FFF, 1188px 278px #FFF, 458px 716px #FFF, 1724px 1998px #FFF, 230px 1503px #FFF, 1462px 588px #FFF, 1472px 1861px #FFF, 1973px 238px #FFF, 1644px 1096px #FFF, 1111px 603px #FFF, 1665px 577px #FFF, 1624px 160px #FFF, 328px 1262px #FFF, 670px 737px #FFF, 1606px 113px #FFF, 803px 1577px #FFF, 1803px 717px #FFF, 1404px 1294px #FFF, 993px 1766px #FFF, 1444px 1605px #FFF, 1028px 1918px #FFF, 787px 80px #FFF, 1076px 642px #FFF, 1151px 1899px #FFF, 500px 1371px #FFF, 623px 391px #FFF, 455px 584px #FFF, 629px 782px #FFF, 1563px 793px #FFF, 772px 1867px #FFF, 1316px 495px #FFF, 1759px 63px #FFF, 1615px 401px #FFF, 1009px 595px #FFF, 1021px 597px #FFF, 529px 410px #FFF, 1586px 124px #FFF, 734px 1462px #FFF, 1795px 449px #FFF, 758px 1637px #FFF, 1719px 300px #FFF, 1421px 1022px #FFF, 1832px 1802px #FFF, 1137px 1808px #FFF, 1760px 1818px #FFF, 563px 31px #FFF, 876px 1254px #FFF, 58px 1777px #FFF, 1708px 896px #FFF, 950px 1251px #FFF, 295px 237px #FFF, 709px 1018px #FFF, 1674px 1137px #FFF, 40px 1070px #FFF, 1417px 1762px #FFF, 755px 996px #FFF, 434px 950px #FFF, 1867px 1097px #FFF, 1667px 1983px #FFF, 1771px 418px #FFF, 1728px 758px #FFF, 744px 1039px #FFF, 1088px 252px #FFF, 1083px 1201px #FFF, 1129px 1627px #FFF, 448px 1125px #FFF, 215px 261px #FFF, 210px 1078px #FFF, 485px 336px #FFF, 1331px 1111px #FFF, 1866px 960px #FFF, 578px 1475px #FFF, 72px 321px #FFF, 1773px 1971px #FFF, 780px 418px #FFF, 685px 473px #FFF, 679px 1501px #FFF, 1859px 1410px #FFF, 1765px 1888px #FFF, 1445px 1464px #FFF, 144px 563px #FFF, 917px 325px #FFF, 277px 343px #FFF, 1851px 1114px #FFF, 1772px 1456px #FFF, 1379px 1502px #FFF, 641px 1905px #FFF, 1107px 1969px #FFF, 1155px 817px #FFF, 1881px 880px #FFF, 1408px 1583px #FFF, 499px 1107px #FFF, 819px 514px #FFF, 1373px 490px #FFF, 384px 1016px #FFF, 977px 1104px #FFF, 1685px 1249px #FFF, 525px 1336px #FFF, 318px 1662px #FFF, 304px 1285px #FFF, 1259px 1512px #FFF, 681px 822px #FFF, 1200px 525px #FFF, 1534px 543px #FFF, 272px 832px #FFF, 442px 1693px #FFF, 1221px 1360px #FFF, 111px 350px #FFF, 1126px 828px #FFF, 489px 121px #FFF, 1968px 688px #FFF, 1176px 1466px #FFF, 758px 124px #FFF, 1610px 1184px #FFF, 61px 189px #FFF, 1802px 1560px #FFF, 1434px 1392px #FFF, 1060px 368px #FFF, 604px 300px #FFF, 886px 1959px #FFF, 570px 187px #FFF, 1761px 1255px #FFF, 8px 1896px #FFF, 329px 79px #FFF, 168px 1245px #FFF, 257px 1661px #FFF, 458px 156px #FFF, 1929px 403px #FFF, 156px 1146px #FFF, 1270px 960px #FFF, 1653px 919px #FFF, 1861px 1386px #FFF, 1106px 461px #FFF, 1923px 622px #FFF, 1581px 1037px #FFF;
  animation: animStar 30s linear 1;
}
.star-layers #stars:after {
  box-shadow: 377px 705px #FFF, 449px 1686px #FFF, 1934px 1787px #FFF, 555px 887px #FFF, 1947px 910px #FFF, 858px 1347px #FFF, 1856px 17px #FFF, 741px 1755px #FFF, 1342px 334px #FFF, 359px 1048px #FFF, 144px 1713px #FFF, 339px 398px #FFF, 1278px 44px #FFF, 1743px 1832px #FFF, 736px 928px #FFF, 1098px 576px #FFF, 474px 402px #FFF, 1419px 59px #FFF, 1987px 1540px #FFF, 860px 289px #FFF, 1450px 733px #FFF, 1917px 795px #FFF, 1668px 1722px #FFF, 1576px 1490px #FFF, 1952px 1334px #FFF, 543px 1797px #FFF, 264px 103px #FFF, 992px 114px #FFF, 927px 1141px #FFF, 1517px 1538px #FFF, 471px 1717px #FFF, 624px 1366px #FFF, 1919px 1967px #FFF, 1621px 480px #FFF, 65px 817px #FFF, 995px 471px #FFF, 227px 285px #FFF, 1017px 1956px #FFF, 806px 1332px #FFF, 706px 1871px #FFF, 1671px 1023px #FFF, 753px 141px #FFF, 1420px 1819px #FFF, 607px 1978px #FFF, 766px 1710px #FFF, 901px 1003px #FFF, 861px 551px #FFF, 1686px 368px #FFF, 648px 1943px #FFF, 931px 636px #FFF, 558px 791px #FFF, 359px 1288px #FFF, 1811px 1337px #FFF, 1621px 47px #FFF, 1922px 1519px #FFF, 157px 1722px #FFF, 1574px 1643px #FFF, 1156px 1417px #FFF, 1398px 1535px #FFF, 540px 981px #FFF, 283px 516px #FFF, 366px 1023px #FFF, 1061px 1646px #FFF, 1440px 1554px #FFF, 1041px 363px #FFF, 189px 888px #FFF, 306px 587px #FFF, 677px 829px #FFF, 446px 860px #FFF, 119px 1163px #FFF, 366px 791px #FFF, 698px 1894px #FFF, 1748px 1304px #FFF, 566px 724px #FFF, 181px 1385px #FFF, 533px 1488px #FFF, 1487px 368px #FFF, 1466px 177px #FFF, 586px 1157px #FFF, 947px 1375px #FFF, 1727px 645px #FFF, 1865px 1151px #FFF, 99px 855px #FFF, 1686px 1831px #FFF, 70px 1622px #FFF, 784px 1185px #FFF, 402px 621px #FFF, 657px 232px #FFF, 1298px 578px #FFF, 243px 1444px #FFF, 574px 1337px #FFF, 1784px 697px #FFF, 481px 1126px #FFF, 1636px 1758px #FFF, 1465px 515px #FFF, 1986px 464px #FFF, 881px 875px #FFF, 1517px 1763px #FFF, 1327px 1422px #FFF, 1596px 423px #FFF, 816px 220px #FFF, 230px 373px #FFF, 1513px 1167px #FFF, 1380px 1428px #FFF, 1795px 410px #FFF, 1396px 1883px #FFF, 363px 1299px #FFF, 1997px 1803px #FFF, 1434px 498px #FFF, 1166px 1599px #FFF, 930px 1723px #FFF, 846px 839px #FFF, 1279px 142px #FFF, 401px 1125px #FFF, 1451px 555px #FFF, 1442px 902px #FFF, 283px 1131px #FFF, 91px 544px #FFF, 570px 1277px #FFF, 663px 532px #FFF, 487px 1535px #FFF, 1503px 488px #FFF, 1476px 1868px #FFF, 633px 1141px #FFF, 729px 129px #FFF, 538px 908px #FFF, 1715px 1025px #FFF, 1025px 596px #FFF, 204px 302px #FFF, 1748px 1829px #FFF, 1992px 182px #FFF, 1938px 1754px #FFF, 1185px 1987px #FFF, 1088px 909px #FFF, 1386px 1165px #FFF, 698px 1174px #FFF, 673px 777px #FFF, 1508px 202px #FFF, 509px 1436px #FFF, 74px 1762px #FFF, 585px 767px #FFF, 1524px 1301px #FFF, 997px 81px #FFF, 1787px 1506px #FFF, 1351px 1022px #FFF, 157px 1552px #FFF, 206px 125px #FFF, 1882px 1151px #FFF, 1121px 172px #FFF, 392px 771px #FFF, 578px 528px #FFF, 1024px 661px #FFF, 1985px 1609px #FFF, 1855px 366px #FFF, 1687px 42px #FFF, 1840px 1846px #FFF, 465px 1802px #FFF, 1924px 238px #FFF, 1474px 142px #FFF, 707px 139px #FFF, 1195px 188px #FFF, 1758px 350px #FFF, 568px 1648px #FFF, 631px 490px #FFF, 1134px 991px #FFF, 1194px 1231px #FFF, 56px 651px #FFF, 1025px 458px #FFF, 1352px 1878px #FFF, 233px 1679px #FFF, 1627px 1886px #FFF, 887px 1789px #FFF, 422px 1222px #FFF, 255px 1825px #FFF, 59px 113px #FFF, 938px 702px #FFF, 1999px 580px #FFF, 1423px 76px #FFF, 1981px 1514px #FFF, 885px 1232px #FFF, 995px 1942px #FFF, 304px 1563px #FFF, 1382px 1471px #FFF, 1968px 1413px #FFF, 609px 1784px #FFF, 1975px 176px #FFF, 337px 744px #FFF, 802px 1134px #FFF, 625px 1442px #FFF, 894px 1394px #FFF, 1869px 677px #FFF, 615px 424px #FFF, 344px 245px #FFF, 1220px 1021px #FFF, 182px 312px #FFF, 188px 1841px #FFF, 166px 1965px #FFF, 1491px 27px #FFF, 1389px 339px #FFF, 1961px 982px #FFF, 1193px 232px #FFF, 1769px 1821px #FFF, 1932px 469px #FFF, 1509px 686px #FFF, 1463px 642px #FFF, 839px 1131px #FFF, 1291px 817px #FFF, 1219px 313px #FFF, 1478px 1549px #FFF, 1529px 1391px #FFF, 1664px 1025px #FFF, 236px 1997px #FFF, 1123px 1574px #FFF, 1425px 1752px #FFF, 1228px 491px #FFF, 3px 1611px #FFF, 1088px 1269px #FFF, 1860px 1463px #FFF, 1534px 1376px #FFF, 1813px 1699px #FFF, 1379px 1977px #FFF, 1882px 450px #FFF, 1579px 511px #FFF, 1411px 860px #FFF, 94px 1249px #FFF, 1207px 89px #FFF, 1759px 1701px #FFF, 278px 1535px #FFF, 683px 1788px #FFF, 509px 1656px #FFF, 1633px 365px #FFF, 1401px 479px #FFF, 875px 601px #FFF, 1450px 824px #FFF, 349px 913px #FFF, 1402px 293px #FFF, 272px 1499px #FFF, 1593px 1823px #FFF, 1869px 217px #FFF, 1059px 1518px #FFF, 267px 1808px #FFF, 1696px 1625px #FFF, 503px 158px #FFF, 589px 1012px #FFF, 380px 1772px #FFF, 1190px 268px #FFF, 1086px 174px #FFF, 1857px 1510px #FFF, 1504px 625px #FFF, 1961px 1451px #FFF, 144px 1156px #FFF, 1023px 1341px #FFF, 528px 1069px #FFF, 1703px 1250px #FFF, 1105px 1001px #FFF, 263px 1931px #FFF, 1765px 404px #FFF, 565px 1806px #FFF, 1294px 330px #FFF, 116px 1598px #FFF, 1447px 1797px #FFF, 742px 918px #FFF, 900px 337px #FFF, 288px 1806px #FFF, 160px 565px #FFF, 1275px 574px #FFF, 1743px 1598px #FFF, 164px 1525px #FFF, 1874px 33px #FFF, 1080px 1097px #FFF, 784px 1281px #FFF, 1161px 1989px #FFF, 241px 1351px #FFF, 1664px 1887px #FFF, 1679px 1536px #FFF, 823px 601px #FFF, 1442px 261px #FFF, 1631px 881px #FFF, 1452px 1156px #FFF, 1024px 264px #FFF, 1942px 1557px #FFF, 208px 1873px #FFF, 1069px 1910px #FFF, 224px 991px #FFF, 1014px 196px #FFF, 1656px 51px #FFF, 180px 731px #FFF, 1097px 1130px #FFF, 1475px 1699px #FFF, 1470px 1495px #FFF, 286px 357px #FFF, 1976px 881px #FFF, 903px 1498px #FFF, 278px 666px #FFF, 1961px 1683px #FFF, 695px 1788px #FFF, 846px 1083px #FFF, 1240px 67px #FFF, 1330px 227px #FFF, 574px 1342px #FFF, 965px 1604px #FFF, 1963px 1778px #FFF, 1958px 1219px #FFF, 1740px 1668px #FFF, 1012px 1037px #FFF, 1835px 904px #FFF, 915px 746px #FFF, 1576px 978px #FFF, 907px 1858px #FFF, 1380px 77px #FFF, 1278px 1162px #FFF, 1509px 1579px #FFF, 1108px 809px #FFF, 704px 98px #FFF, 715px 585px #FFF, 1837px 387px #FFF, 434px 624px #FFF, 759px 53px #FFF, 662px 1131px #FFF, 99px 30px #FFF, 1154px 12px #FFF, 271px 353px #FFF, 150px 298px #FFF, 155px 751px #FFF, 714px 1499px #FFF, 1713px 720px #FFF, 622px 768px #FFF, 1490px 1085px #FFF, 1350px 1625px #FFF, 1203px 826px #FFF, 1792px 472px #FFF, 95px 790px #FFF, 1945px 1174px #FFF, 1833px 1863px #FFF, 1px 575px #FFF, 1702px 1110px #FFF, 1491px 125px #FFF, 850px 1850px #FFF, 450px 455px #FFF, 1952px 19px #FFF, 190px 535px #FFF, 643px 1045px #FFF, 1613px 1772px #FFF, 577px 1449px #FFF, 1895px 254px #FFF, 446px 192px #FFF, 266px 1993px #FFF, 1702px 1718px #FFF, 1710px 1708px #FFF, 1012px 202px #FFF, 743px 207px #FFF, 1399px 993px #FFF, 1663px 818px #FFF, 807px 394px #FFF, 1632px 1678px #FFF, 1980px 1993px #FFF, 1091px 594px #FFF, 1202px 1496px #FFF, 281px 1923px #FFF, 865px 719px #FFF, 249px 1514px #FFF, 1717px 1295px #FFF, 1893px 1060px #FFF, 398px 330px #FFF, 478px 973px #FFF, 434px 753px #FFF, 879px 1593px #FFF, 1356px 1810px #FFF, 540px 842px #FFF, 320px 131px #FFF, 1653px 535px #FFF, 205px 1940px #FFF, 1120px 444px #FFF, 1984px 1245px #FFF, 544px 34px #FFF, 254px 1048px #FFF, 718px 920px #FFF, 552px 945px #FFF, 1522px 1273px #FFF, 1244px 1241px #FFF, 369px 308px #FFF, 1292px 960px #FFF, 40px 1650px #FFF, 65px 820px #FFF, 1657px 1858px #FFF, 46px 645px #FFF, 1808px 1420px #FFF, 610px 969px #FFF, 1228px 1146px #FFF, 309px 1086px #FFF, 1030px 273px #FFF, 896px 370px #FFF, 1062px 1843px #FFF, 1181px 930px #FFF, 711px 1035px #FFF, 1069px 1140px #FFF, 1126px 93px #FFF, 400px 625px #FFF, 737px 1731px #FFF, 1397px 513px #FFF, 1011px 730px #FFF, 15px 1346px #FFF, 438px 1231px #FFF, 222px 1365px #FFF, 1741px 61px #FFF, 204px 1715px #FFF, 963px 1226px #FFF, 1493px 1783px #FFF, 188px 46px #FFF, 187px 1193px #FFF, 1919px 1925px #FFF, 1989px 1031px #FFF, 1938px 871px #FFF, 884px 1425px #FFF, 1905px 714px #FFF, 56px 937px #FFF, 976px 863px #FFF, 1610px 1601px #FFF, 1988px 1375px #FFF, 1777px 1996px #FFF, 1966px 168px #FFF, 1475px 1050px #FFF, 1170px 1299px #FFF, 1074px 700px #FFF, 1370px 661px #FFF, 1363px 1834px #FFF, 80px 843px #FFF, 1118px 1677px #FFF, 1159px 503px #FFF, 159px 244px #FFF, 1074px 1080px #FFF, 286px 1700px #FFF, 708px 1922px #FFF, 384px 165px #FFF, 1228px 357px #FFF, 1674px 911px #FFF, 52px 229px #FFF, 1540px 730px #FFF, 690px 1087px #FFF, 9px 301px #FFF, 905px 1699px #FFF, 591px 738px #FFF, 1627px 1825px #FFF, 512px 1778px #FFF, 1218px 1990px #FFF, 1510px 1194px #FFF, 841px 1143px #FFF, 1221px 737px #FFF, 165px 50px #FFF, 1347px 83px #FFF, 1626px 1514px #FFF, 511px 464px #FFF, 1301px 701px #FFF, 1513px 1356px #FFF, 144px 364px #FFF, 1029px 1344px #FFF, 648px 1012px #FFF, 1585px 1174px #FFF, 1837px 1276px #FFF, 612px 1981px #FFF, 1851px 955px #FFF, 477px 1909px #FFF, 1707px 859px #FFF, 1099px 448px #FFF, 888px 1529px #FFF, 465px 1540px #FFF, 1737px 374px #FFF, 788px 1513px #FFF, 187px 1189px #FFF, 1970px 728px #FFF, 1340px 485px #FFF, 972px 298px #FFF, 487px 1515px #FFF, 303px 1802px #FFF, 1965px 249px #FFF, 389px 1200px #FFF, 1067px 741px #FFF, 847px 577px #FFF, 296px 369px #FFF, 531px 1516px #FFF, 1709px 959px #FFF, 1151px 591px #FFF, 1972px 825px #FFF, 1754px 542px #FFF, 9px 1098px #FFF, 180px 308px #FFF, 1059px 866px #FFF, 914px 849px #FFF, 919px 518px #FFF, 261px 1194px #FFF, 135px 1676px #FFF, 1012px 89px #FFF, 796px 451px #FFF, 959px 957px #FFF, 1947px 1754px #FFF, 578px 660px #FFF, 1982px 1052px #FFF, 566px 182px #FFF, 489px 634px #FFF, 40px 1023px #FFF, 1512px 1771px #FFF, 985px 1279px #FFF, 1563px 1392px #FFF, 1116px 1785px #FFF, 1919px 366px #FFF, 1837px 1583px #FFF, 1173px 1563px #FFF, 18px 814px #FFF, 1364px 28px #FFF, 706px 1856px #FFF, 1413px 345px #FFF, 1859px 326px #FFF, 1458px 1640px #FFF, 1319px 1892px #FFF, 212px 1702px #FFF, 1209px 685px #FFF, 1755px 884px #FFF, 771px 581px #FFF, 1900px 843px #FFF, 1897px 524px #FFF, 72px 410px #FFF, 1975px 1408px #FFF, 213px 299px #FFF, 571px 1482px #FFF, 1424px 1485px #FFF, 1096px 1180px #FFF, 899px 1952px #FFF, 6px 1917px #FFF, 1917px 403px #FFF, 1835px 199px #FFF, 346px 678px #FFF, 1663px 360px #FFF, 1134px 1068px #FFF, 1983px 1012px #FFF, 122px 1064px #FFF, 217px 310px #FFF, 881px 1436px #FFF, 1779px 128px #FFF, 267px 1001px #FFF, 1547px 1889px #FFF, 60px 1224px #FFF, 1401px 1243px #FFF, 785px 415px #FFF, 1511px 1229px #FFF, 1294px 390px #FFF, 1630px 494px #FFF, 1335px 397px #FFF, 1286px 1119px #FFF, 1478px 339px #FFF, 1312px 1700px #FFF, 1031px 137px #FFF, 1910px 52px #FFF, 190px 1750px #FFF, 1290px 81px #FFF, 113px 594px #FFF, 1258px 460px #FFF, 73px 1962px #FFF, 302px 1692px #FFF, 433px 265px #FFF, 740px 1811px #FFF, 1822px 1145px #FFF, 548px 918px #FFF, 191px 773px #FFF, 1445px 79px #FFF, 1663px 1774px #FFF, 1206px 1961px #FFF, 1188px 278px #FFF, 458px 716px #FFF, 1724px 1998px #FFF, 230px 1503px #FFF, 1462px 588px #FFF, 1472px 1861px #FFF, 1973px 238px #FFF, 1644px 1096px #FFF, 1111px 603px #FFF, 1665px 577px #FFF, 1624px 160px #FFF, 328px 1262px #FFF, 670px 737px #FFF, 1606px 113px #FFF, 803px 1577px #FFF, 1803px 717px #FFF, 1404px 1294px #FFF, 993px 1766px #FFF, 1444px 1605px #FFF, 1028px 1918px #FFF, 787px 80px #FFF, 1076px 642px #FFF, 1151px 1899px #FFF, 500px 1371px #FFF, 623px 391px #FFF, 455px 584px #FFF, 629px 782px #FFF, 1563px 793px #FFF, 772px 1867px #FFF, 1316px 495px #FFF, 1759px 63px #FFF, 1615px 401px #FFF, 1009px 595px #FFF, 1021px 597px #FFF, 529px 410px #FFF, 1586px 124px #FFF, 734px 1462px #FFF, 1795px 449px #FFF, 758px 1637px #FFF, 1719px 300px #FFF, 1421px 1022px #FFF, 1832px 1802px #FFF, 1137px 1808px #FFF, 1760px 1818px #FFF, 563px 31px #FFF, 876px 1254px #FFF, 58px 1777px #FFF, 1708px 896px #FFF, 950px 1251px #FFF, 295px 237px #FFF, 709px 1018px #FFF, 1674px 1137px #FFF, 40px 1070px #FFF, 1417px 1762px #FFF, 755px 996px #FFF, 434px 950px #FFF, 1867px 1097px #FFF, 1667px 1983px #FFF, 1771px 418px #FFF, 1728px 758px #FFF, 744px 1039px #FFF, 1088px 252px #FFF, 1083px 1201px #FFF, 1129px 1627px #FFF, 448px 1125px #FFF, 215px 261px #FFF, 210px 1078px #FFF, 485px 336px #FFF, 1331px 1111px #FFF, 1866px 960px #FFF, 578px 1475px #FFF, 72px 321px #FFF, 1773px 1971px #FFF, 780px 418px #FFF, 685px 473px #FFF, 679px 1501px #FFF, 1859px 1410px #FFF, 1765px 1888px #FFF, 1445px 1464px #FFF, 144px 563px #FFF, 917px 325px #FFF, 277px 343px #FFF, 1851px 1114px #FFF, 1772px 1456px #FFF, 1379px 1502px #FFF, 641px 1905px #FFF, 1107px 1969px #FFF, 1155px 817px #FFF, 1881px 880px #FFF, 1408px 1583px #FFF, 499px 1107px #FFF, 819px 514px #FFF, 1373px 490px #FFF, 384px 1016px #FFF, 977px 1104px #FFF, 1685px 1249px #FFF, 525px 1336px #FFF, 318px 1662px #FFF, 304px 1285px #FFF, 1259px 1512px #FFF, 681px 822px #FFF, 1200px 525px #FFF, 1534px 543px #FFF, 272px 832px #FFF, 442px 1693px #FFF, 1221px 1360px #FFF, 111px 350px #FFF, 1126px 828px #FFF, 489px 121px #FFF, 1968px 688px #FFF, 1176px 1466px #FFF, 758px 124px #FFF, 1610px 1184px #FFF, 61px 189px #FFF, 1802px 1560px #FFF, 1434px 1392px #FFF, 1060px 368px #FFF, 604px 300px #FFF, 886px 1959px #FFF, 570px 187px #FFF, 1761px 1255px #FFF, 8px 1896px #FFF, 329px 79px #FFF, 168px 1245px #FFF, 257px 1661px #FFF, 458px 156px #FFF, 1929px 403px #FFF, 156px 1146px #FFF, 1270px 960px #FFF, 1653px 919px #FFF, 1861px 1386px #FFF, 1106px 461px #FFF, 1923px 622px #FFF, 1581px 1037px #FFF;
}
.star-layers #stars2 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  box-shadow: 1228px 930px #FFF, 460px 1168px #FFF, 1062px 516px #FFF, 1052px 330px #FFF, 1621px 1103px #FFF, 1966px 1728px #FFF, 786px 850px #FFF, 1987px 168px #FFF, 1325px 1498px #FFF, 116px 83px #FFF, 1364px 31px #FFF, 1734px 1752px #FFF, 1132px 1348px #FFF, 1617px 270px #FFF, 1487px 1970px #FFF, 264px 574px #FFF, 560px 1405px #FFF, 115px 796px #FFF, 287px 1034px #FFF, 1304px 1874px #FFF, 590px 309px #FFF, 1990px 1961px #FFF, 204px 96px #FFF, 742px 474px #FFF, 1823px 1367px #FFF, 898px 696px #FFF, 463px 1230px #FFF, 601px 1793px #FFF, 1567px 755px #FFF, 1969px 284px #FFF, 622px 1013px #FFF, 1963px 381px #FFF, 1799px 1132px #FFF, 1433px 656px #FFF, 1716px 381px #FFF, 23px 1266px #FFF, 656px 610px #FFF, 1925px 1050px #FFF, 1203px 1277px #FFF, 709px 317px #FFF, 324px 1478px #FFF, 1795px 231px #FFF, 1143px 1740px #FFF, 348px 1689px #FFF, 1195px 813px #FFF, 1016px 1040px #FFF, 177px 439px #FFF, 1124px 995px #FFF, 1739px 1882px #FFF, 45px 653px #FFF, 869px 384px #FFF, 1190px 481px #FFF, 682px 1128px #FFF, 116px 77px #FFF, 1458px 1594px #FFF, 287px 72px #FFF, 581px 1872px #FFF, 1078px 1526px #FFF, 791px 340px #FFF, 1024px 996px #FFF, 1771px 698px #FFF, 22px 1410px #FFF, 1433px 812px #FFF, 1847px 116px #FFF, 301px 251px #FFF, 927px 433px #FFF, 1668px 1364px #FFF, 1685px 510px #FFF, 1891px 971px #FFF, 1943px 355px #FFF, 218px 498px #FFF, 537px 335px #FFF, 830px 1676px #FFF, 526px 1036px #FFF, 346px 1464px #FFF, 1920px 425px #FFF, 1042px 899px #FFF, 1278px 1838px #FFF, 966px 1028px #FFF, 474px 1500px #FFF, 1275px 1687px #FFF, 1321px 1036px #FFF, 288px 485px #FFF, 1260px 1823px #FFF, 437px 863px #FFF, 1997px 923px #FFF, 296px 369px #FFF, 1598px 355px #FFF, 430px 1739px #FFF, 342px 240px #FFF, 1195px 755px #FFF, 1925px 1942px #FFF, 807px 1843px #FFF, 1419px 121px #FFF, 1251px 1958px #FFF, 23px 146px #FFF, 1825px 1782px #FFF, 1354px 1294px #FFF, 727px 997px #FFF, 591px 1620px #FFF, 295px 1608px #FFF, 782px 1346px #FFF, 1299px 1456px #FFF, 338px 140px #FFF, 219px 96px #FFF, 443px 472px #FFF, 1293px 269px #FFF, 838px 808px #FFF, 1494px 609px #FFF, 864px 1888px #FFF, 504px 418px #FFF, 1461px 640px #FFF, 1950px 1420px #FFF, 277px 647px #FFF, 658px 120px #FFF, 1420px 1340px #FFF, 168px 125px #FFF, 172px 4px #FFF, 507px 658px #FFF, 1230px 892px #FFF, 319px 1746px #FFF, 485px 812px #FFF, 934px 1089px #FFF, 1332px 1384px #FFF, 1315px 1380px #FFF, 1796px 1307px #FFF, 914px 368px #FFF, 1762px 21px #FFF, 627px 1039px #FFF, 1898px 1062px #FFF, 694px 994px #FFF, 770px 224px #FFF, 1741px 358px #FFF, 697px 191px #FFF, 129px 1430px #FFF, 995px 145px #FFF, 891px 1164px #FFF, 1598px 1297px #FFF, 1788px 1232px #FFF, 621px 1799px #FFF, 676px 902px #FFF, 1202px 1434px #FFF, 672px 960px #FFF, 762px 334px #FFF, 1861px 1224px #FFF, 365px 888px #FFF, 498px 1724px #FFF, 738px 737px #FFF, 1246px 1859px #FFF, 1214px 1630px #FFF, 283px 1788px #FFF, 798px 963px #FFF, 1822px 1905px #FFF, 1284px 794px #FFF, 1347px 373px #FFF, 344px 1593px #FFF, 1777px 770px #FFF, 1302px 926px #FFF, 203px 1751px #FFF, 1232px 1844px #FFF, 1389px 1240px #FFF, 1828px 1684px #FFF, 927px 1845px #FFF, 283px 533px #FFF, 1816px 112px #FFF, 658px 1554px #FFF, 689px 1444px #FFF, 1395px 1977px #FFF, 219px 1555px #FFF, 195px 1244px #FFF, 1824px 999px #FFF, 881px 467px #FFF, 7px 1367px #FFF, 431px 1226px #FFF, 1129px 1527px #FFF, 1643px 593px #FFF, 1452px 1461px #FFF, 1284px 1907px #FFF, 1708px 1645px #FFF, 153px 180px #FFF, 367px 1931px #FFF, 1385px 1131px #FFF, 1771px 1509px #FFF, 777px 1306px #FFF, 831px 1810px #FFF, 1128px 1028px #FFF, 1581px 1184px #FFF, 1467px 892px #FFF, 1526px 1597px #FFF, 1016px 1292px #FFF, 1852px 1338px #FFF, 1691px 1352px #FFF, 1573px 520px #FFF, 1802px 1026px #FFF, 1661px 116px #FFF, 1109px 1650px #FFF, 303px 562px #FFF, 1552px 1283px #FFF, 1065px 1468px #FFF, 370px 986px #FFF;
  animation: animStar 20s linear 1;
}
.star-layers #stars2:after {
  width: 2px;
  height: 2px;
  box-shadow: 1228px 930px #FFF, 460px 1168px #FFF, 1062px 516px #FFF, 1052px 330px #FFF, 1621px 1103px #FFF, 1966px 1728px #FFF, 786px 850px #FFF, 1987px 168px #FFF, 1325px 1498px #FFF, 116px 83px #FFF, 1364px 31px #FFF, 1734px 1752px #FFF, 1132px 1348px #FFF, 1617px 270px #FFF, 1487px 1970px #FFF, 264px 574px #FFF, 560px 1405px #FFF, 115px 796px #FFF, 287px 1034px #FFF, 1304px 1874px #FFF, 590px 309px #FFF, 1990px 1961px #FFF, 204px 96px #FFF, 742px 474px #FFF, 1823px 1367px #FFF, 898px 696px #FFF, 463px 1230px #FFF, 601px 1793px #FFF, 1567px 755px #FFF, 1969px 284px #FFF, 622px 1013px #FFF, 1963px 381px #FFF, 1799px 1132px #FFF, 1433px 656px #FFF, 1716px 381px #FFF, 23px 1266px #FFF, 656px 610px #FFF, 1925px 1050px #FFF, 1203px 1277px #FFF, 709px 317px #FFF, 324px 1478px #FFF, 1795px 231px #FFF, 1143px 1740px #FFF, 348px 1689px #FFF, 1195px 813px #FFF, 1016px 1040px #FFF, 177px 439px #FFF, 1124px 995px #FFF, 1739px 1882px #FFF, 45px 653px #FFF, 869px 384px #FFF, 1190px 481px #FFF, 682px 1128px #FFF, 116px 77px #FFF, 1458px 1594px #FFF, 287px 72px #FFF, 581px 1872px #FFF, 1078px 1526px #FFF, 791px 340px #FFF, 1024px 996px #FFF, 1771px 698px #FFF, 22px 1410px #FFF, 1433px 812px #FFF, 1847px 116px #FFF, 301px 251px #FFF, 927px 433px #FFF, 1668px 1364px #FFF, 1685px 510px #FFF, 1891px 971px #FFF, 1943px 355px #FFF, 218px 498px #FFF, 537px 335px #FFF, 830px 1676px #FFF, 526px 1036px #FFF, 346px 1464px #FFF, 1920px 425px #FFF, 1042px 899px #FFF, 1278px 1838px #FFF, 966px 1028px #FFF, 474px 1500px #FFF, 1275px 1687px #FFF, 1321px 1036px #FFF, 288px 485px #FFF, 1260px 1823px #FFF, 437px 863px #FFF, 1997px 923px #FFF, 296px 369px #FFF, 1598px 355px #FFF, 430px 1739px #FFF, 342px 240px #FFF, 1195px 755px #FFF, 1925px 1942px #FFF, 807px 1843px #FFF, 1419px 121px #FFF, 1251px 1958px #FFF, 23px 146px #FFF, 1825px 1782px #FFF, 1354px 1294px #FFF, 727px 997px #FFF, 591px 1620px #FFF, 295px 1608px #FFF, 782px 1346px #FFF, 1299px 1456px #FFF, 338px 140px #FFF, 219px 96px #FFF, 443px 472px #FFF, 1293px 269px #FFF, 838px 808px #FFF, 1494px 609px #FFF, 864px 1888px #FFF, 504px 418px #FFF, 1461px 640px #FFF, 1950px 1420px #FFF, 277px 647px #FFF, 658px 120px #FFF, 1420px 1340px #FFF, 168px 125px #FFF, 172px 4px #FFF, 507px 658px #FFF, 1230px 892px #FFF, 319px 1746px #FFF, 485px 812px #FFF, 934px 1089px #FFF, 1332px 1384px #FFF, 1315px 1380px #FFF, 1796px 1307px #FFF, 914px 368px #FFF, 1762px 21px #FFF, 627px 1039px #FFF, 1898px 1062px #FFF, 694px 994px #FFF, 770px 224px #FFF, 1741px 358px #FFF, 697px 191px #FFF, 129px 1430px #FFF, 995px 145px #FFF, 891px 1164px #FFF, 1598px 1297px #FFF, 1788px 1232px #FFF, 621px 1799px #FFF, 676px 902px #FFF, 1202px 1434px #FFF, 672px 960px #FFF, 762px 334px #FFF, 1861px 1224px #FFF, 365px 888px #FFF, 498px 1724px #FFF, 738px 737px #FFF, 1246px 1859px #FFF, 1214px 1630px #FFF, 283px 1788px #FFF, 798px 963px #FFF, 1822px 1905px #FFF, 1284px 794px #FFF, 1347px 373px #FFF, 344px 1593px #FFF, 1777px 770px #FFF, 1302px 926px #FFF, 203px 1751px #FFF, 1232px 1844px #FFF, 1389px 1240px #FFF, 1828px 1684px #FFF, 927px 1845px #FFF, 283px 533px #FFF, 1816px 112px #FFF, 658px 1554px #FFF, 689px 1444px #FFF, 1395px 1977px #FFF, 219px 1555px #FFF, 195px 1244px #FFF, 1824px 999px #FFF, 881px 467px #FFF, 7px 1367px #FFF, 431px 1226px #FFF, 1129px 1527px #FFF, 1643px 593px #FFF, 1452px 1461px #FFF, 1284px 1907px #FFF, 1708px 1645px #FFF, 153px 180px #FFF, 367px 1931px #FFF, 1385px 1131px #FFF, 1771px 1509px #FFF, 777px 1306px #FFF, 831px 1810px #FFF, 1128px 1028px #FFF, 1581px 1184px #FFF, 1467px 892px #FFF, 1526px 1597px #FFF, 1016px 1292px #FFF, 1852px 1338px #FFF, 1691px 1352px #FFF, 1573px 520px #FFF, 1802px 1026px #FFF, 1661px 116px #FFF, 1109px 1650px #FFF, 303px 562px #FFF, 1552px 1283px #FFF, 1065px 1468px #FFF, 370px 986px #FFF;
}
.star-layers #stars3 {
  width: 5px;
  border-radius: 50%;
  height: 5px;
  box-shadow: 1772px 1757px #FFF, 1927px 703px #FFF, 720px 1492px #FFF, 1554px 1973px #FFF, 1780px 1772px #FFF, 1445px 1851px #FFF, 367px 1305px #FFF, 245px 1525px #FFF, 1601px 210px #FFF, 1346px 1978px #FFF, 651px 77px #FFF, 49px 1948px #FFF, 1228px 1201px #FFF, 1939px 1035px #FFF, 1651px 260px #FFF, 419px 292px #FFF, 264px 1912px #FFF, 742px 1105px #FFF, 408px 1287px #FFF, 1299px 771px #FFF, 1825px 1904px #FFF, 685px 105px #FFF, 1367px 1461px #FFF, 1138px 89px #FFF, 465px 1240px #FFF, 265px 1555px #FFF, 59px 553px #FFF, 1152px 481px #FFF, 1273px 1239px #FFF, 1676px 778px #FFF, 1672px 371px #FFF, 123px 1301px #FFF, 998px 284px #FFF, 446px 688px #FFF, 473px 275px #FFF, 316px 1890px #FFF, 530px 1721px #FFF, 286px 984px #FFF, 1695px 1809px #FFF, 1276px 1335px #FFF, 927px 1085px #FFF, 1067px 1950px #FFF, 737px 895px #FFF, 927px 750px #FFF, 1438px 1368px #FFF, 92px 1804px #FFF, 1611px 985px #FFF, 1128px 552px #FFF, 7px 1726px #FFF, 1153px 105px #FFF, 1037px 1159px #FFF, 910px 1948px #FFF, 1381px 122px #FFF, 1905px 613px #FFF, 1385px 1922px #FFF, 191px 579px #FFF, 860px 426px #FFF, 1908px 301px #FFF, 1609px 806px #FFF, 356px 1094px #FFF, 1157px 477px #FFF, 1653px 1224px #FFF, 1831px 1859px #FFF, 267px 840px #FFF, 665px 1055px #FFF, 3px 190px #FFF, 1045px 1092px #FFF, 1300px 807px #FFF, 866px 610px #FFF, 1693px 1032px #FFF, 281px 1288px #FFF, 196px 474px #FFF, 495px 1982px #FFF, 890px 507px #FFF, 764px 1613px #FFF, 308px 45px #FFF, 1338px 1871px #FFF, 1656px 1989px #FFF, 1276px 1147px #FFF, 1079px 1115px #FFF, 812px 1058px #FFF, 1357px 1882px #FFF, 1171px 242px #FFF, 425px 716px #FFF, 1569px 53px #FFF, 1118px 1932px #FFF, 837px 586px #FFF, 1346px 1423px #FFF, 1756px 567px #FFF, 1689px 1384px #FFF, 215px 649px #FFF, 1347px 1248px #FFF, 150px 755px #FFF, 886px 164px #FFF, 254px 97px #FFF, 365px 1562px #FFF, 178px 1589px #FFF, 1547px 754px #FFF, 1949px 1607px #FFF, 385px 1253px #FFF;
  animation: animStar 15s linear 1;
}
.star-layers #stars3:after {
  width: 3px;
  height: 3px;
  box-shadow: 1772px 1757px #FFF, 1927px 703px #FFF, 720px 1492px #FFF, 1554px 1973px #FFF, 1780px 1772px #FFF, 1445px 1851px #FFF, 367px 1305px #FFF, 245px 1525px #FFF, 1601px 210px #FFF, 1346px 1978px #FFF, 651px 77px #FFF, 49px 1948px #FFF, 1228px 1201px #FFF, 1939px 1035px #FFF, 1651px 260px #FFF, 419px 292px #FFF, 264px 1912px #FFF, 742px 1105px #FFF, 408px 1287px #FFF, 1299px 771px #FFF, 1825px 1904px #FFF, 685px 105px #FFF, 1367px 1461px #FFF, 1138px 89px #FFF, 465px 1240px #FFF, 265px 1555px #FFF, 59px 553px #FFF, 1152px 481px #FFF, 1273px 1239px #FFF, 1676px 778px #FFF, 1672px 371px #FFF, 123px 1301px #FFF, 998px 284px #FFF, 446px 688px #FFF, 473px 275px #FFF, 316px 1890px #FFF, 530px 1721px #FFF, 286px 984px #FFF, 1695px 1809px #FFF, 1276px 1335px #FFF, 927px 1085px #FFF, 1067px 1950px #FFF, 737px 895px #FFF, 927px 750px #FFF, 1438px 1368px #FFF, 92px 1804px #FFF, 1611px 985px #FFF, 1128px 552px #FFF, 7px 1726px #FFF, 1153px 105px #FFF, 1037px 1159px #FFF, 910px 1948px #FFF, 1381px 122px #FFF, 1905px 613px #FFF, 1385px 1922px #FFF, 191px 579px #FFF, 860px 426px #FFF, 1908px 301px #FFF, 1609px 806px #FFF, 356px 1094px #FFF, 1157px 477px #FFF, 1653px 1224px #FFF, 1831px 1859px #FFF, 267px 840px #FFF, 665px 1055px #FFF, 3px 190px #FFF, 1045px 1092px #FFF, 1300px 807px #FFF, 866px 610px #FFF, 1693px 1032px #FFF, 281px 1288px #FFF, 196px 474px #FFF, 495px 1982px #FFF, 890px 507px #FFF, 764px 1613px #FFF, 308px 45px #FFF, 1338px 1871px #FFF, 1656px 1989px #FFF, 1276px 1147px #FFF, 1079px 1115px #FFF, 812px 1058px #FFF, 1357px 1882px #FFF, 1171px 242px #FFF, 425px 716px #FFF, 1569px 53px #FFF, 1118px 1932px #FFF, 837px 586px #FFF, 1346px 1423px #FFF, 1756px 567px #FFF, 1689px 1384px #FFF, 215px 649px #FFF, 1347px 1248px #FFF, 150px 755px #FFF, 886px 164px #FFF, 254px 97px #FFF, 365px 1562px #FFF, 178px 1589px #FFF, 1547px 754px #FFF, 1949px 1607px #FFF, 385px 1253px #FFF;
}

@keyframes cssAnimation {
  to   { opacity: 0; }
}
.shopify-payment-button__button--unbranded{
  padding:1.75rem !important;
  background: #000 !important;
  border-radius: 1rem !important;
  color: #fff !important;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 500;
}
.shopify-payment-button__button--unbranded:hover{
  background: #ffcb05 !important;
  color: #000 !important;
  box-sizing:border-box;
}
.contactus-itemleft{
  border-right:1px solid #ccc;
}
.contactus-itemright{
    padding: 4rem !important;
    margin: auto !important;
    width:550px !important;
}
.contactus-box,
.contactus-box div[data-section="left"],
.contactus-box div[data-section="right"]{
    position:relative;
    display:flex;
}
.contactus-box{
  width:100%;
  height:auto;
  border:1px solid #ccc;
  border-radius:4rem;
  overflow:hidden;
}
.contactus-box div[data-section="left"],
.contactus-box div[data-section="right"]{
  flex-direction:column;
  padding:4rem;
}
.contactus-box div[data-section="left"]{
  border-right:1px solid #ccc;
}
.contactus-box div[data-section="right"]{
  background-color: #f5f5f5;
  flex:1;
}
.contactus-box div[data-type="heading"] span{
  font-size: 2.25rem;
  display: inline-block;
  font-weight: 600;
}
.contactus-1 > div,
.contactus-2 > div{
  border-radius:21px;
  overflow:hidden;
}
.contactus-1 > div img,
.contactus-2 > div img{
   transition:0.64s ease all;
}
.contactus-1:hover > div img,
.contactus-2:hover > div img{
  scale:1.06;
}
.menu-dropdown__column{
   position: relative;
    height: auto !important;
    display: flex;
    flex-wrap: wrap;
}
.site-nav{
position: relative !important;
    top: unset !important;
    left: unset !important;
    height: fit-content;
}
img:is([sizes="auto" i], [sizes^="auto," i]) {
    contain-intrinsic-size: 677px !important;
    aspect-ratio: 1/1;
}
#gjxEYYwrCyPDXK2uvRSsng input{
  direction:rtl !important;
}
.discount-text{
  font-size: 13px;
    font-weight: 515;
    border: 0px solid;
    width: fit-content;
    padding: 3px 10px 3px 10px;
    border-radius: 10px;

}
.discount-text-2{
     background: linear-gradient(to right, white);
    color: #1a4314;
    border: 1px solid;
    border color: #1a4314
}
.discount-text-1 {
    background: linear-gradient(to right, #FF8602, #FFD584);
    color: black;
    border: 1px solid;
    border color: black
}