/** Shopify CDN: Minification failed

Line 1273:10 Expected ":"

**/
/* ========================== */
/*           HEADER           */
/* ========================== */

.load-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    opacity: 1;
    pointer-events: none;
    background-color: var(--bg-base);
    animation: overlayFadeOut 0.3s ease forwards;
    -webkit-animation: overlayFadeOut 0.3s ease forwards;
    animation-delay: 0.3s;
}

@keyframes overlayFadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.section-header {
    position: fixed;
    top: 24px;
    left: 0;
    width: 100%;
    z-index: 100;
}

.header--content {
    @media (max-width: 991px) {
        height: 56px !important;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 8px 8px 8px 16px;
        background-color: var(--bg-lift-88);
        border-radius: 8px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        transition: background-color 0.3s ease;
        -webkit-transition: background-color 0.3s ease;
        -moz-transition: background-color 0.3s ease;
        -ms-transition: background-color 0.3s ease;
        -o-transition: background-color 0.3s ease;
    }

    @media (max-width: 370px) {
        padding: 8px;
    }
}

.header--content.inset-border {
    border-color: transparent;

    @media (max-width: 991px) {
        border-color: var(--border);
    }
}

/*   ---   LEFT NAV   ---   */

.header__nav.nav--left {
    position: fixed;
    top: 24px;
    left: 32px;
    height: 48px;
    width: max-content;
    display: flex;
    align-items: center;
    padding: 8px 8px 8px 16px;
    background-color: var(--bg-lift-88);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: background-color 0.3s ease;
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    -ms-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;

    @media (max-width: 991px) {
        position: relative;
        left: unset;
        top: unset;
        height: 100%;
        background: transparent !important;
        padding: 0;
        border: none;
        gap: 8px;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
}

.header__nav.nav--left::before {
    @media (max-width: 991px) {
        display: none !important;
    }
}

.header__nav__menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    @media (max-width: 991px) {
        display: flex;
    }
}

.header__nav__menu-btn--inner {
    position: relative;
    width: 18px;
    height: 14px;
}

.header__nav__menu-btn span {
    position: absolute;
    left: 50%;
    display: block;
    width: 18px;
    height: 1.5px;
    background-color: var(--default);
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.header__nav__menu-btn span.line-1 {
    top: 0;
}

.header__nav__menu-btn span.line-2 {
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.header__nav__menu-btn span.line-3 {
    top: calc(100% - 1px);
}

body.open--mobile-menu .header__nav__menu-btn span.line-1 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -moz-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    -o-transform: translate(-50%, -50%) rotate(45deg);
}

body.open--mobile-menu .header__nav__menu-btn span.line-2 {
    opacity: 0;
}

body.open--mobile-menu .header__nav__menu-btn span.line-3 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -moz-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    -o-transform: translate(-50%, -50%) rotate(-45deg);
}

.header__nav__logo {
    display: flex;
    align-items: center;
    height: 18px;
    width: auto;
}

.header__nav__logo .media__item.if-b2b {
    display: none;
}

body.is-b2b .header__nav__logo .media__item.if-b2b {
    display: block;
}

.header__nav__logo::after {
    content: "";
    display: block;
    height: 20px;
    width: 1px;
    background-color: var(--border);
    margin-inline: 20px;

    @media (max-width: 991px) {
        display: none;
    }
}

.header__nav__logo .media__item {
    display: block;
    height: 100%;
    width: auto;
}

.header__nav__logo svg path {
    fill: var(--default);
    transition: fill 0.3s ease;
    -webkit-transition: fill 0.3s ease;
    -moz-transition: fill 0.3s ease;
    -ms-transition: fill 0.3s ease;
    -o-transition: fill 0.3s ease;
}

.header__nav__logo svg.if-b2b path.b2b-path {
    fill: var(--accent-primary);
}

.header__nav__menu {
    height: 100%;
    /* Flex added by if-b2b and if-guest */
    align-items: center;
    justify-content: center;
    gap: 4px;

    @media (max-width: 991px) {
        display: none !important;
    }
}

.header__nav.nav--left .header__nav__item {
    display: flex;
    border: 1px solid transparent;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.header__nav__item {
    height: 100%;
    width: auto;
    align-items: center;
    justify-content: center;
    color: var(--default);
    background-color: transparent;
    padding: 0 12px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    transition: background-color 0.3s ease;
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    -ms-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
}

.header__nav.nav--left .header__nav__item:hover {
    background-color: var(--def-16);
    border: 1px solid var(--border);
}

.header__nav.nav--left .header__nav__item.current {
    background-color: var(--def-88);
    border: 1px solid var(--border);
    color: var(--bg-base);
}

.header__link {
    height: 100%;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*   ---   RIGHT NAV   ---   */

.header__nav.nav--right {
    position: fixed;
    top: 24px;
    right: 32px;
    height: 48px;
    width: max-content;
    display: flex;
    align-items: center;
    gap: 8px;

    @media (max-width: 991px) {
        position: relative;
        right: unset;
        top: unset;
        height: 100%;
        background: transparent !important;
        padding: 0;
        border: none;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
}

.header__nav.nav--right::before {
    @media (max-width: 991px) {
        display: none !important;
    }
}

.header__nav.nav--right .header__nav__item {
    position: relative;
    width: auto;
    min-width: 48px;
    height: 100%;
    /* Flex added by if-b2b and if-guest */
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    background-color: var(--bg-lift-88);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;

    @media (max-width: 991px) {
        min-width: 36px;
        height: 28px !important;
    }
}

.header__nav.nav--right .header__nav__item:hover {
    background-color: var(--white) !important;
    color: var(--black) !important;
}

.header__nav.nav--right .header__nav__item svg path {
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}

.header__nav.nav--right .header__nav__item:hover svg path {
    stroke: var(--black) !important;
}

.header__nav.nav--right .header__nav__item.item--login {
    height: 32px;
    background-color: var(--accent-primary);
    border: 1px solid var(--border);
    color: var(--black);
}

.header__nav.nav--right .header__nav__item.item--login .mobile {
    display: none;

    @media (max-width: 991px) {
        display: block;
    }
}
.header__nav.nav--right .header__nav__item.item--login .desktop {
    display: block;

    @media (max-width: 991px) {
        display: none;
    }
}

.header__nav.nav--right .header__nav__item.if-b2b,
.header__nav.nav--right .header__nav__item.if-b2b-flex {
    color: var(--accent-primary);
}

.header__nav.nav--right .header__nav__item.item--jcm-link {
    gap: 8px;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;

    @media (max-width: 991px) {
        display: none !important;
    }
}

.header__nav.nav--right .header__nav__item.item--jcm-link svg,
.header__nav.nav--right .header__nav__item.item--jcm-link img {
    display: block;
    width: 10px;
    height: auto;
}

.header__nav.nav--right .header__nav__item.item--cart svg,
.header__nav.nav--right .header__nav__item.item--cart img {
    display: block;
    width: 15px;
    height: auto;
}

.header__nav.nav--right .header__nav__item.item--search {
    display: none;
    cursor: pointer;
}

body.is-b2b .header__nav.nav--right .header__nav__item.item--search {
    @media (max-width: 991px) {
        display: flex;
    }
}

.header__nav.nav--right .header__nav__item.item--search svg,
.header__nav.nav--right .header__nav__item.item--search img {
    display: block;
    width: 12px;
    height: auto;
}

.header__nav.nav--right .header__nav__item.item--usr {
    background-color: var(--accent-primary);
}

.header__nav.nav--right .header__nav__item.item--usr svg,
.header__nav.nav--right .header__nav__item.item--usr img {
    display: block;
    width: 12px;
    height: auto;
}

.cart-notification-item__quantity {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-primary);
    color: var(--black);
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    transform: translate(20%, 40%);
    -webkit-transform: translate(20%, 40%);
    -moz-transform: translate(20%, 40%);
    -ms-transform: translate(20%, 40%);
    -o-transform: translate(20%, 40%);

    @media (max-width: 991px) {
        width: 16px;
        height: 16px;
        transform: translate(30%, 30%);
        -webkit-transform: translate(30%, 30%);
        -moz-transform: translate(30%, 30%);
        -ms-transform: translate(30%, 30%);
        -o-transform: translate(30%, 30%);
    }
}

/*   ---   SEARCH BAR   ---   */

.header__search {
    position: fixed;
    top: 24px;
    left: 100%;
    height: 48px;
    width: 300px;
    background-color: var(--bg-lift-88);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: background-color 0.3s ease;
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    -ms-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;

    @media (max-width: 991px) {
        display: none;
    }
}

.header__search--inner {
    height: 100%;

    @media (max-width: 991px) {
        height: 46px;
    }
}

.header__search form {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__search input[type="text"],
.header__search input[type="search"] {
    width: 100%;
    height: 100%;
    border: none;
    padding-left: 18px;
    padding-right: 18px;
    background-color: transparent;
    color: var(--default);
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.header__search input[type="search"]::-webkit-search-cancel-button {
    display: none;
}

.header__search input[type="text"]:-webkit-autofill,
.header__search input[type="search"]:-webkit-autofill,
.header__search input[type="text"]:-webkit-autofill:hover,
.header__search input[type="search"]:-webkit-autofill:hover,
.header__search input[type="text"]:-webkit-autofill:focus,
.header__search input[type="search"]:-webkit-autofill:focus,
.header__search input[type="text"]:-webkit-autofill:active,
.header__search input[type="search"]:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px var(--bg-lift-88) inset !important;
    -webkit-text-fill-color: var(--default);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.header__search input[type="text"]:-webkit-autofill::selection,
.header__search input[type="search"]:-webkit-autofill::selection,
.header__search input[type="text"]:-webkit-autofill:hover::selection,
.header__search input[type="search"]:-webkit-autofill:hover::selection,
.header__search input[type="text"]:-webkit-autofill:focus::selection,
.header__search input[type="search"]:-webkit-autofill:focus::selection,
.header__search input[type="text"]:-webkit-autofill:active::selection,
.header__search input[type="search"]:-webkit-autofill:active::selection {
    -webkit-text-fill-color: var(--bg-lift-88);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

input::-webkit-input-placeholder {
    color: var(--def-48);
}

input:-ms-input-placeholder {
    color: var(--def-48);
}

input::placeholder {
    color: var(--def-48);
}

.header__search form > button {
    position: absolute;
    right: 6px;
    top: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    background-color: transparent;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}

.header__search form > button:hover {
    background-color: var(--white);
}

.header__search form > button svg,
.header__search form > button img {
    display: block;
    width: 12px;
    height: auto;
}

.header__search form > button svg path {
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}

.header__search form > button:hover svg path {
    stroke: var(--black);
}

/* ========================== */
/*          B2B HEADER        */
/* ========================== */

body.is-b2b .header--content {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 24px;
    height: 48px;

    @media (max-width: 370px) {
        gap: 16px;
    }
}

body.is-b2b .header__nav.nav--left,
body.is-b2b .header__search,
body.is-b2b .header__nav.nav--right {
    position: relative;
    left: unset;
    right: unset;
    top: unset;
    z-index: unset;
    height: 100%;
}

body.is-b2b .header__nav.nav--left,
body.is-b2b .header__nav.nav--right {
    width: max-content;
}

body.is-b2b .header__search {
    width: 100%;

    @media (max-width: 991px) {
        position: fixed;
        top: calc(56px + 8px);
        left: 0;
        width: 100%;
        height: 0;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease;
        -webkit-transition: 0.3s ease;
        -moz-transition: 0.3s ease;
        -ms-transition: 0.3s ease;
        -o-transition: 0.3s ease;
    }
}

body.is-b2b.open--mobile-search-popup .header__search {
    opacity: 1;
    visibility: visible;
}

/* ========================== */
/*         USER POPUP         */
/* ========================== */
.section-user-popup {
    position: fixed;
    top: calc(24px + 48px + 10px);
    right: 32px;
    width: 275px;
    height: 0;
    opacity: 0;
    visibility: hidden;
    max-height: calc(100vh - (24px + 48px + 10px) - 24px);
    overflow: hidden;
    z-index: 95;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
    -o-transition: 0.5s ease;

    @media (max-width: 991px) {
        width: 200px;
        top: calc(24px + 56px + 8px);
        right: 16px;
    }

    @media (max-width: 393px) {
        right: calc(100vw * 16 / 393);
    }
}

body.open--user-popup .section-user-popup {
    opacity: 1;
    visibility: visible;
}

.user-popup--inner {
    width: 100%;
    height: max-content;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: var(--bg-lift-88);
    padding: 12px;
    overflow: hidden;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;

    @media (max-width: 991px) {
        padding: 8px;
        gap: 8px;
    }
}

.user-popup-btn {
    width: 100%;
    height: 48px;
    display: flex;
    gap: 12px;
    align-items: center;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0 12px;
    color: var(--def-64);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;

    @media (max-width: 991px) {
        height: 36px;
        padding: 0 8px;
        gap: 8px;
    }
}

.user-popup-btn.btn--logout {
    text-align: center;
    justify-content: center;
    background-color: var(--accent-primary);
    border: 1px solid var(--def-16);
    color: var(--bg-base);
}

.user-popup-btn svg {
    display: block;
    height: 27px;
    width: 27px;

    @media (max-width: 991px) {
        height: 20px;
        width: 20px;
    }
}

.user-popup-btn svg path {
    stroke: var(--def-64);
    stroke-opacity: 1;
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}

.user-popup-btn:hover {
    background-color: var(--accent-primary);
    border: 1px solid var(--def-16);
    color: var(--bg-base);
}

.user-popup-btn.btn--logout:hover {
    background-color: var(--accent-primary-hover);
}

.user-popup-btn:hover svg path {
    stroke: var(--bg-base);
}

/* ========================== */
/*        LOGIN POPUP         */
/* ========================== */

.section-login-popup  {
    position: fixed;
    top: calc(24px + 48px + 10px);
    right: 32px;
    width: 275px;
    height: 0;
    opacity: 0;
    visibility: hidden;
    max-height: calc(100vh - (24px + 48px + 10px) - 24px);
    overflow: hidden;
    z-index: 95;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
    -o-transition: 0.5s ease;

    @media (max-width: 991px) {
        width: 200px;
        top: calc(24px + 56px + 8px);
        right: 16px;
    }

    @media (max-width: 393px) {
        right: calc(100vw * 16 / 393);
    }
}


body.open--login-popup .section-login-popup {
    opacity: 1;
    visibility: visible;
}

.login-popup--inner {
    width: 100%;
    height: max-content;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: var(--bg-lift-88);
    padding: 12px;
    overflow: hidden;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;

    @media (max-width: 991px) {
        padding: 8px;
        gap: 8px;
    }
}

.login-popup-btn {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: transparent;
    border: 1px solid transparent;
    cursor: pointer;
    line-height: 1em;
    padding: 0;
    color: var(--def-64);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;

    @media (max-width: 991px) {
        height: 36px;
        padding: 0 8px;
    }
}

.login-popup-btn.btn--login {
    text-align: center;
    justify-content: center;
    background-color: var(--def-8);
    border: 1px solid var(--def-16);
    color: var(--default);
}

.login-popup-btn.btn--register {
    text-align: center;
    justify-content: center;
    background-color: var(--accent-primary);
    border: 1px solid var(--def-16);
    color: var(--bg-base);
}

.login-popup-btn svg {
    display: block;
    height: 27px;
    width: 27px;

    @media (max-width: 991px) {
        height: 20px;
        width: 20px;
    }
}

.login-popup-btn svg path {
    stroke: var(--def-64);
    stroke-opacity: 1;
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}

.login-popup-btn:hover {
    background-color: var(--accent-primary);
    border: 1px solid var(--def-16);
    color: var(--bg-base);
}

.login-popup-btn.btn--logout:hover {
    background-color: var(--accent-primary-hover);
}

.login-popup-btn:hover svg path {
    stroke: var(--bg-base);
}

/* ========================== */
/*        MOBILE MENU         */
/* ========================== */

.section-mobile-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: calc(24px + 56px + 8px);
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    z-index: 95;
    transition: 0.6s ease;
    -webkit-transition: 0.6s ease;
    -moz-transition: 0.6s ease;
    -ms-transition: 0.6s ease;
    -o-transition: 0.6s ease;

    @media (max-width: 991px) {
        display: block;
    }
}

body.open--mobile-menu {
    @media (max-width: 991px) {
        overflow: hidden;
    }
}

body.open--mobile-menu .section-mobile-menu {
    height: 100%;
    opacity: 1;
    visibility: visible;
}

.section-mobile-menu .container {
    height: 100%;
}

.mobile-menu--content {
    width: 100%;
    height: calc((var(--vh, 1vh) * 100) - (24px + 56px + 8px + 20px));
    display: flex;
    flex-direction: column;
    overflow: auto;
    background-color: var(--bg-lift-88);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    transition: background-color 0.3s ease;
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    -ms-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    overflow-x: scroll;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.mobile-menu__body {
    padding: 32px 30px;
}

.mobile-menu__body__item {
    padding-bottom: 30px;
}

.mobile-menu__body__item:last-child {
    padding-bottom: 0;
}

.mobile-menu__body__item.first {
    display: none !important;
}

.mobile-menu__body__item__link {
    width: 100%;
    padding: 10px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.mobile-menu__body__item__link .icon {
    position: relative;
    width: 8px;
    height: 8px;
}

.mobile-menu__body__item__link .icon span {
    position: absolute;
    left: 50%;
    top: 50%;
    background-color: var(--accent-primary);
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}

.mobile-menu__body__item__link .icon span.line-1 {
    width: 100%;
    height: 1.5px;
}

.mobile-menu__body__item__link .icon span.line-2 {
    width: 1.5px;
    height: 100%;
}

.mobile-menu__body__item.parent.open .mobile-menu__body__item__link .icon span.line-2 {
    opacity: 0;
    visibility: hidden;
}

.submenu {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    -webkit-transition: height 0.3s ease;
    -moz-transition: height 0.3s ease;
    -ms-transition: height 0.3s ease;
    -o-transition: height 0.3s ease;
}

.submenu--inner {
    height: max-content;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 22px;
}

.submenu__item__link {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    background-color: var(--def-8);
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}

.submenu__item__link:hover {
    color: var(--bg-base);
}

.submenu__item__link svg {
    display: block;
    width: 9px;
    height: auto;
}

.submenu__item__link svg path {
    stroke: var(--default);
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}

.submenu__item__link:hover svg path {
    stroke: var(--bg-base);
}

.mobile-menu__foot {
    margin-top: auto;
    padding: 24px;
}

.mobile-menu__foot__title {
    padding-bottom: 24px;
}

.mobile-menu__foot__menu {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
}

.mobile-menu__foot__item.item--login .mobile-menu__foot__item__link {
    height: 32px;
    padding: 0 50px;
    background-color: var(--default);
    color: var(--bg-base);
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;

    @media (max-width: 330px) {
        padding: 0 20px;
    }
}

.mobile-menu__foot__item.item--theme-color {
    margin-left: auto;
}

/* ========================== */
/*        HEADER SPACER       */
/* ========================== */
.section-header-spacer {
    height: 100px;
}

body.page-hero .section-header-spacer {
    display: none;
}

/* ========================== */
/*          OVERLAY           */
/* ========================== */

.section-overlay {
    opacity: 0;
    visibility: hidden;
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(#0f0e12, 0.01);
    backdrop-filter: blur(4px);
    z-index: 94;
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}

body.open--solutions-submenu .section-overlay {
    opacity: 1;
    visibility: visible;

    @media (max-width: 991px) {
        opacity: 0;
        visibility: hidden;
    }
}

/* ========================== */
/*         HEADER BG          */
/* ========================== */

.section-header-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 128px;
    z-index: 90;
    pointer-events: none;    
    mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
    background-color: transparent;
    backdrop-filter: blur(20px);
    transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    pointe
}

body.is-b2b .section-header-bg {
    backdrop-filter: none;
    mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 90%);
    background-color: var(--accent-primary);
}

body.open--mobile-menu .section-header-bg {
    height: 100%;
}

body.open--solutions-submenu .section-header-bg {
    height: 70%;

    @media (max-width: 991px) {
        height: 128px;
    }
}

body.is-b2b.open--mobile-search-popup .section-header-bg {
    height: 80%;
}

body.open--user-popup .section-header-bg {
    height: 30%;
}
