.f-menu {
    --main-link-px: 16px;
    --main-link-py: 20px;
    font-size: calc(var(--font-base-size, 16) * 1px);
    font-weight: 500;
    white-space: nowrap;
    list-style: none;
    display: flex;
    flex-wrap: wrap
}

.f-menu__arrow, .f-menu__sub-arrow {
    margin-left: 8px
}

.f-menu__arrow svg, .f-menu__sub-arrow svg {
    width: 8px;
    height: 8px
}

.f-menu__arrow {
    transition: var(--f-duration-default, 0.25s) transform
}

.f-menu__sub-arrow svg {
    transform: rotate(-90deg)
}

.f-menu__link--main {
    display: flex;
    align-items: center;
    position: relative;
    padding: var(--main-link-py) var(--main-link-px)
}

.f-menu__link--main:after {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    background-color: currentColor;
    left: var(--main-link-px);
    bottom: calc(var(--main-link-py) - 5px);
    transition: width var(--f-duration-default, 0.25s) ease-in-out
}

.f-menu::-webkit-scrollbar {
    display: none
}

.f-menu__item--dropdown {
    position: relative
}

.f-menu__item--dropdown .f-mega-menu {
    right: auto;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .07);
    transition: all var(--f-duration-default, 0.25s);
    transform: translate3d(0, 20px, 0);
    transform-origin: center
}

.f-menu__item--dropdown .f-mega-menu__inner {
    padding: 16px
}

.f-menu__item--dropdown .f-mega-menu__column {
    position: absolute;
    top: -16px;
    left: calc(100% + 16px);
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .07);
    transition: all var(--f-duration-default, 0.25s);
    transform: translate3d(20px, 0, 0);
    transform-origin: center;
    min-width: 250px;
    pointer-events: none;
    padding: 16px;
    background-color: rgb(var(--color-background))
}

.f-menu__item--dropdown .f-mega-menu__column::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -35px;
    z-index: -1
}

.f-menu__item--dropdown .f-sub-menu__item--level-1 {
    position: relative;
    width: 100%
}

.f-menu__item--dropdown .f-sub-menu__item--level-1:hover .f-mega-menu__column {
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
    opacity: 1;
    visibility: visible
}

.f-menu__item--dropdown:hover .f-mega-menu {
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
    opacity: 1;
    visibility: visible
}

.f-menu__item--mega .f-mega-menu {
    left: 0;
    right: 0;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: calc(100vh - var(--f-header-height, 0px));
    border-top: 1px solid rgba(0, 0, 0, 0);
    transition: all var(--f-duration-default, 0.25s) ease-in
}

.f-menu__item--mega .f-mega-menu__inner {
    padding-top: 40px;
    padding-bottom: 40px
}

.f-menu__item--mega .f-mega-menu::-webkit-scrollbar {
    display: none
}

.f-menu__item--mega .f-sub-menu__item--level-1 > .f-menu__link {
    font-weight: 500;
    padding-left: 12px;
    padding-right: 12px
}

.f-menu__item--mega .f-sub-menu__item--level-1 > .f-menu__link:hover {
    background: rgba(0, 0, 0, 0)
}

.f-menu__item--mega .f-mega-menu__column {
    margin-top: 16px
}

.f-menu__item--has-submenu .f-mega-menu__inner {
    display: flex
}

.f-menu__item--active .f-mega-menu {
    visibility: visible;
    opacity: 1;
    transition: none;
    pointer-events: auto
}

.f-menu__item--active .f-mega-menu.f-show-menu-column-divider {
    border-top-color: rgb(var(--color-border))
}

.f-menu__item--active .f-mega-menu__container {
    animation: menu_slide_in var(--f-slide-trans-duration) both
}

.f-menu__item:hover > a:after {
    width: calc(100% - var(--main-link-px) * 2)
}

.f-menu__item:hover .f-menu__arrow {
    transform: rotateX(-180deg)
}

.f-mega-menu {
    position: absolute;
    z-index: 50;
    width: 100%;
    min-width: 250px;
    white-space: normal;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transition-property: transform, opacity, visibility;
    transition-duration: var(--f-duration-default, 0.25s)
}

.f-mega-menu__container {
    margin-left: auto;
    margin-right: auto
}

.f-mega-menu__container.w-full {
    padding-left: 20px;
    padding-right: 20px
}

.f-mega-menu__inner {
    --column-width: 200px;
    --items-width: calc(var(--total-columns) * var(--column-width, 200px))
}

@media (min-width: 1680px) {
    .f-mega-menu__inner {
        --column-width: 250px
    }
}

@media (min-width: 1920px) {
    .f-mega-menu__inner {
        --column-width: 270px
    }
}

.f-mega-menu__inner--stretch-width .f-mega-menu__content {
    width: calc(100% - var(--items-width));
    flex: 1
}

.f-mega-menu__content {
    width: 33.333%;
    padding-left: 20px;
    flex: auto
}

.f-mega-menu .f-header:hover {
    transition: none
}

.f-sub-menu {
    list-style: none
}

.f-sub-menu--level-1 {
    display: flex
}

.f-menu__item--mega .f-sub-menu--level-1 {
    width: 66.667%;
    margin-left: -12px;
    margin-right: -12px
}

.f-menu__item--mega .f-sub-menu--level-1.m\:w-full {
    width: 100%
}

.f-menu__item--dropdown .f-sub-menu--level-1 {
    flex-direction: column;
    width: 100%
}

.f-menu__item--mega .f-mega-menu__inner--stretch-width .f-sub-menu--level-1 {
    width: var(--items-width)
}

.f-sub-menu__item > a {
    color: rgba(var(--color-foreground), 0.6);
    font-weight: 400;
    display: block;
    overflow: hidden;
    white-space: normal;
    padding: .5rem .75rem;
    transition: all var(--f-duration-default, 0.25s)
}

.f-sub-menu__item > a:hover {
    color: rgb(var(--color-foreground));
    background: rgba(var(--color-foreground), 0.07)
}

.f-sub-menu__item--level-1 > a {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.f-mega-menu__inner--stretch-width .f-sub-menu__item--level-1 {
    min-width: 200px;
    padding-right: 8px
}

.f-menu__item--mega .f-sub-menu__item--level-1 {
    width: 50%;
    margin-bottom: 16px
}

.f-menu__item--mega .f-sub-menu__item--level-1 > a {
    color: rgb(var(--color-foreground))
}

@media screen and (min-width: 1536px) {
    .f-menu__item--mega .f-sub-menu__item--level-1 {
        width: 25%
    }
}

@media screen and (min-width: 1280px) {
    .f-menu__item--mega .f-sub-menu__item--level-1 {
        width: 33.333%
    }
}

.f-show-menu-column-divider .f-sub-menu__item--level-1 {
    padding: 0 18px;
    border-left: 1px solid rgb(var(--color-border))
}

.f-show-menu-column-divider .f-sub-menu__item--level-1:first-child {
    padding-left: 0;
    border-left: none
}

.logo-left__2l .f-menu {
    --main-link-px: 32px;
    --main-link-py: 16px;
    margin-left: calc(-1 * var(--main-link-px));
    margin-right: calc(-1 * var(--main-link-px))
}

.both-center .f-header__menu:first-child .f-menu {
    justify-content: flex-end
}

.logo-center__2l .f-menu {
    --main-link-px: 32px;
    justify-content: center
}

@media (max-width: 1440px) {
    .f-menu {
        --main-link-px: 12px
    }
}

.f-mega-banner {
    height: 100%;
    position: relative
}

.f-mega-banner__image {
    overflow: hidden
}

.f-mega-banner .f-image {
    transition: all var(--f-duration-image, 0.65s)
}

.f-mega-banner__title {
    font-size: 24px;
    font-weight: 400;
    color: currentColor
}

.f-mega-banner__description {
    color: rgba(var(--color-foreground), 0.6);
    font-size: calc(var(--font-base-size, 16) * 1px);
    margin-top: 8px
}

.f-mega-banner__button {
    margin-top: 8px
}

.f-mega-banner--outside .f-mega-banner__inner {
    margin-top: 16px
}

.f-mega-banner--inside .f-mega-banner__inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 24px
}

.f-mega-banner--inside .f-mega-banner__button {
    position: absolute !important;
    bottom: 24px;
    left: 24px
}

.f-mega-banner--no-content .f-mega-banner__inner {
    display: none;
    padding: 0;
    margin: 0
}

.f-mega-banner:hover .f-image {
    transform: scale(1.06)
}

@media screen and (min-width: 768px) {
    .f-menu__item--has-submenu .f-mega-collection-list {
        padding-left: 1rem
    }
}

@media screen and (min-width: 1280px) {
    .f-menu__item--has-submenu .f-mega-collection-list {
        padding-left: 3rem
    }
}

.f-mega-collection-list .f-collection-card__link, .f-mega-collection-list .f-collection-card__title {
    color: currentColor
}

.f-mega-product-list__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -10px;
    margin-bottom: 16px;
    padding: 0 8px
}

.f-mega-product-list__heading {
    font-size: 24px;
    font-weight: 500;
    white-space: normal;
    color: currentColor
}

.f-mega-product-list .f-product-card__name, .f-mega-product-list .f-product-card__title, .f-mega-product-list .f-price__sale .f-price-item--regular, .f-mega-product-list .f-price {
    color: currentColor
}

.f-mega-product-list .f-price__sale .f-price-item--regular {
    opacity: .6
}

.f-mega-product-list .f-slider-controls {
    margin-top: 0;
    margin-left: -16px
}

.f-mega-product-list .f-slider-controls button {
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    cursor: pointer
}

.f-mega-product-list .f-slider-controls button.f-slider-controls__button-next {
    margin-right: 0
}

.f-mega-product-list .f-product-card__price {
    font-size: 14px
}

@media screen and (min-width: 768px) {
    .f-menu__item--has-submenu .f-mega-product-list {
        padding-left: 15px
    }
}

@media screen and (min-width: 1280px) {
    .f-menu__item--has-submenu .f-mega-product-list {
        padding-left: 50px
    }
}

.f-menu__item--has-submenu .f-mega-blog-list {
    border-left: 1px solid rgb(var(--color-border))
}

@media screen and (min-width: 768px) {
    .f-menu__item--has-submenu .f-mega-blog-list {
        padding-left: 15px
    }
}

@media screen and (min-width: 1280px) {
    .f-menu__item--has-submenu .f-mega-blog-list {
        padding-left: 60px
    }
}

.f-mega-blog-list__item + .f-mega-blog-list__item {
    margin-top: 32px
}

.f-mega-article-card__content {
    padding-left: 20px;
    white-space: normal
}

.f-mega-article-card__title {
    font-weight: 500
}

.f-mega-article-card__tag {
    font-size: .75rem;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block
}

.f-menu-drawer {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    touch-action: none;
    visibility: hidden;
    pointer-events: none;
    z-index: 59;
    height: var(--menu-drawer-height)
}

.f-menu-drawer.open {
    pointer-events: auto;
    cursor: pointer;
    visibility: visible
}

.f-menu-drawer__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 19;
    transition: all var(--f-duration-default, 0.25s)
}

.f-menu-drawer.open .f-menu-drawer__backdrop {
    background-color: rgba(0, 0, 0, .3);
    transition-delay: .15s
}

.f-menu-drawer__wrapper {
    color: rgb(var(--color-foreground));
    background-color: rgb(var(--color-background));
    width: 450px;
    max-width: 100%;
    height: 100%;
    transition: all var(--f-duration-default, 0.25s);
    transform: translateX(-100%);
    overflow: hidden;
    cursor: auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 29
}

.f-menu-drawer.open .f-menu-drawer__wrapper {
    transform: translateX(0)
}

@media (max-width: 767px) {
    .f-menu-drawer__wrapper {
        width: calc(100% - 40px)
    }
}

.f-menu-drawer__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    padding-top: 5px;
    height: 100%;
    transition: padding var(--f-duration-default, 0.25s);
    overflow-y: scroll
}

.f-menu-drawer__content::-webkit-scrollbar {
    width: 3px
}

.f-menu-drawer__content::-webkit-scrollbar-thumb {
    background: #ebebeb
}

.f-menu-drawer__content::-webkit-scrollbar-thumb:hover {
    background: #555
}

.f-header.stuck .f-menu-drawer {
    height: calc(100vh - var(--f-header-height))
}

.f-menu-mobile {
    list-style: none;
    padding: 0;
    margin: 0
}

.f-menu-mobile__item {
    display: flex;
    align-items: center
}

.f-menu-mobile__item > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    padding: 12px 16px;
    position: relative
}

.f-menu-mobile__item--no-submenu .f-menu-mobile__back-button {
    margin-bottom: 30px
}

.f-menu-mobile__toggle-button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    height: 100%;
    min-height: 48px;
    cursor: pointer
}

.f-menu-mobile__toggle-button svg {
    width: 16px;
    height: 16px
}

.f-menu-mobile__back-button {
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 16px 0;
    margin: 0 16px 10px;
    text-align: left;
    border-bottom: 1px solid rgb(var(--color-border))
}

.f-menu-mobile__back-button * {
    pointer-events: none
}

.f-menu-mobile__back-button svg {
    width: 16px;
    height: 16px
}

.f-menu-mobile__back-button span {
    margin-left: 12px
}

.f-menu-mobile .f-mega-banner--inside .f-mega-banner__inner {
    padding: 20px
}

.f-menu-mobile .f-mega-banner--inside .f-mega-banner__button {
    bottom: 20px;
    left: 20px
}

.f-menu-mobile .f-mega-article-card__content {
    padding-left: 0;
    padding-top: 12px
}

.f-megamenu-mobile {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: rgb(var(--color-background));
    transform: translateX(100%);
    z-index: 9;
    visibility: hidden
}

.f-megamenu-mobile.open {
    transform: translateX(0)
}

.f-menu-drawer.open .f-megamenu-mobile {
    visibility: visible;
    transition: all var(--f-duration-default, 0.25s)
}

.f-megamenu-mobile__wrapper {
    overflow-y: scroll;
    overflow-x: hidden;
    display: flex;
    flex-direction: column
}

.f-megamenu-mobile__wrapper.open-submenu {
    overflow: hidden
}

.f-submenu-open--level-2 .f-megamenu-mobile--level-1 {
    overflow: hidden
}

.f-submenu-mobile {
    margin-bottom: 16px
}

.f-megamenu-mobile__block {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 20px
}

.f-menu-customer {
    margin-top: 40px
}

.f-menu-customer__wrapper {
    margin-bottom: 15px;
    padding: 16px;
    display: block
}

@media (min-width: 1280px) {
    .f-menu-customer__wrapper {
        display: none
    }
}

.f-menu-customer__label {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 24px
}

.f-menu-customer__name {
    width: 100%;
    display: flex;
    align-items: center;
    padding-top: 12px;
    padding-bottom: 12px;
    margin-bottom: 12px
}

.f-menu-customer__name svg {
    width: 24px;
    height: 24px
}

.f-menu-customer__name span {
    margin-left: 8px
}

.f-menu-customer .f-signin-button {
    margin-bottom: 12px
}

.f-menu-customer a.f-button {
    width: 100%
}

.f-menu-customer__language-currency {
    display: flex;
    flex-wrap: wrap
}

.f-menu-customer__language-currency .f-switcher-dropdown {
    padding-top: 10px;
    padding-bottom: 10px;
    display: block
}

@media (min-width: 1280px) {
    .f-menu-customer__language-currency .f-switcher-dropdown {
        display: none
    }
}

.f-logo {
    font-size: 1rem;
    line-height: unset;
    padding-left: 16px;
    padding-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: inherit
}

.f-logo-mobile:before {
    padding-top: calc(100% / (.0001 + var(--aspect-ratio-mobile, --aspect-ratio))) !important
}

.f-logo__image {
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px
}

.f-logo__image-transparent {
    display: none
}

.f-logo a {
    width: var(--logo-width-desktop, 150px)
}

.f-logo .f-image {
    transition: all var(--f-duration-default, 0.25s);
    line-height: 1
}

.f-logo img {
    margin: auto
}

.f-menu-bar {
    position: relative;
    z-index: 1
}

.f-header {
    --f-slide-trans-duration: 0.3s;
    --f-slide-from-val: -65px;
    --f-slide-to-val: 65px;
    min-height: calc(var(--f-topbar-height, 0px) + var(--f-header-height, 40px));
    position: relative
}

.f-header.slide-from-right {
    --f-slide-from-val: 65px;
    --f-slide-to-val: -65px
}

.f-header.slide-reveal {
    --f-slide-from-val: 0;
    --f-slide-to-val: 0
}

.f-header header {
    transition: all var(--f-duration-default, 0.25s)
}

.f-header__wrapper {
    width: 100%;
    transition: transform var(--f-duration-long, 0.5s);
    will-change: transform;
    z-index: 82;
    position: relative
}

.header-sticky-always .f-header__wrapper {
    position: fixed;
    top: 0
}

.f-header__desktop {
    position: relative;
    display: none
}

@media screen and (min-width: 1024px) {
    .f-header__desktop {
        display: block
    }
}

.f-header__mobile .f-logo a {
    text-align: center;
    width: var(--logo-width-mobile, 100px);
    white-space: nowrap
}

.f-header__mobile m-search-popup {
    padding: 10px
}

@media screen and (min-width: 1024px) {
    .f-header__mobile {
        display: none
    }
}

@media (max-width: 480px) {
    .f-header__mobile > *:last-child {
        padding-right: 0
    }
}

.f-header__bg {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: all var(--f-duration-default, 0.25s)
}

.f-mega-active .f-header__bg {
    opacity: 1
}

.f-header__dropdown-bg {
    width: 100vw;
    height: calc(var(--sf-dropdown-height, 0px) * 1px);
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    opacity: 0;
    pointer-events: none;
    transform-origin: top left;
    transition: all var(--f-duration-default, 0.25s)
}

.f-mega-active .f-header__dropdown-bg {
    opacity: 1
}

.f-header__overlay {
    background-color: rgba(0, 0, 0, .6);
    position: fixed;
    top: calc(var(--f-topbar-height, 0px) + var(--f-announcement-height, 0px));
    right: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: -1;
    display: none;
    transition: all var(--f-duration-default, 0.25s)
}

.f-mega-active .f-header__overlay {
    z-index: 29;
    opacity: 1;
    visibility: visible
}

@media screen and (min-width: 768px) {
    .f-header__overlay {
        display: block
    }
}

.f-header__container {
    z-index: 1
}

.f-header__inner {
    display: flex;
    align-items: center;
    margin-left: -16px;
    margin-right: -16px
}

.f-header__left, .f-header__center, .f-header__right {
    display: flex;
    align-items: center
}

.f-header__left {
    justify-content: flex-start
}

.f-header__center {
    justify-content: center
}

.f-header__right {
    justify-content: flex-end
}

.f-header:not(.f-mega-active,.stuck,.header-sticky-always).transparent-on-top header:not(.header-drawer-open) {
    color: rgb(var(--header-transparent-text-color, #fff))
}

.f-header:not(.f-mega-active,.stuck,.header-sticky-always).transparent-on-top header:not(.header-drawer-open) .f-hamburger-box {
    --color-foreground: var(--header-transparent-text-color, #fff)
}

.transparent-on-top {
    position: absolute;
    left: 0px;
    right: 0px;
    z-index: 70
}

.transparent-on-top header:not(.header-drawer-open) {
    background-color: rgba(0, 0, 0, 0);
    border-bottom: none;
    box-shadow: none
}

.transparent-on-top .f-menu-bar {
    background-color: rgba(0, 0, 0, 0);
    transition: all var(--f-duration-default, 0.25s)
}

.transparent-on-top .f-logo__image-default {
    display: none
}

.transparent-on-top .f-logo__image-transparent {
    display: flex
}

.transparent-on-top .header-drawer-open .f-logo__image-default {
    display: flex
}

.transparent-on-top .header-drawer-open .f-logo__image-transparent {
    display: none
}

.f-header.stuck .f-header__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    transform: none;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, .04)
}

.f-header.stuck .f-header__wrapper.f-unset-shadow {
    box-shadow: none
}

.f-header.stuck .f-logo a {
    width: var(--logo-width-sticky, 100px)
}

.f-header.stuck .f-header__mobile .f-logo a {
    width: var(--logo-width-mobile, 100px)
}

.f-header.stuck.transparent-on-top .f-header__mobile, .f-header.stuck.transparent-on-top .f-header__desktop, .f-header.stuck.transparent-on-top .f-menu-bar {
    background-color: rgb(var(--color-background))
}

.f-header.stuck.transparent-on-top .f-logo__image-default {
    display: flex
}

.f-header.stuck.transparent-on-top .f-logo__image-transparent {
    display: none
}

.f-header.scroll-up .f-header__wrapper {
    transform: none
}

.f-header.scroll-down.stuck .f-header__wrapper {
    transform: translate3d(0, -100%, 0)
}

.f-header.header-sticky-always.transparent-on-top .f-header__mobile, .f-header.header-sticky-always.transparent-on-top .f-header__desktop, .f-header.header-sticky-always.transparent-on-top .f-menu-bar {
    background-color: rgb(var(--color-background))
}

.f-header.header-sticky-always.transparent-on-top .f-logo__image-default {
    display: flex
}

.f-header.header-sticky-always.transparent-on-top .f-logo__image-transparent {
    display: none
}

.f-header.header-sticky-always .f-header__wrapper:not(.f-unset-shadow) {
    box-shadow: 0px 4px 20px rgba(0, 0, 0, .04)
}

.f-mega-active header {
    box-shadow: none
}

.f-mega-active.transparent-on-top .f-logo__image-default {
    display: flex
}

.f-mega-active.transparent-on-top .f-logo__image-transparent {
    display: none
}

.both-center .f-header__menu {
    width: 37.5%
}

.both-center .f-header__logo {
    width: 25%
}

.logo-left-menu-center .f-header__left, .logo-left-menu-center .f-header__right {
    flex: 1 1 0%
}

.logo-left-menu-center .f-header__center {
    flex-shrink: 1;
    flex-grow: 2
}

.logo-left__2l .f-header__inner {
    padding-bottom: 8px;
    padding-top: 8px
}

.logo-center__2l .f-header__inner {
    margin-left: 0;
    margin-right: 0
}

.f-hamburger-box {
    display: inline-block;
    vertical-align: -1px;
    position: relative;
    width: 20px;
    height: 12px;
    padding: 14px 0;
    border: 0;
    cursor: pointer;
    pointer-events: auto
}

.f-hamburger-box__inner {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -1px;
    width: 100%;
    height: 2px;
    background: rgb(var(--color-foreground));
    transition: transform .2s ease
}

.f-hamburger-box__inner:before, .f-hamburger-box__inner:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: inherit;
    background: rgb(var(--color-foreground))
}

.f-hamburger-box__inner:before {
    top: -7px;
    transition: top .2s ease .22s, opacity .2s ease, width .2s ease
}

.f-hamburger-box__inner:after {
    bottom: -7px;
    transition: bottom .2s ease .22s, transform .2s ease, width .2s ease
}

.f-hamburger-box.active .f-hamburger-box__inner {
    transform: rotate(45deg);
    transition-delay: .22s
}

.f-hamburger-box.active .f-hamburger-box__inner:before {
    top: 0;
    opacity: 0;
    width: 100%;
    transition: top .2s ease, opacity .2s ease .22s, width .1s ease
}

.f-hamburger-box.active .f-hamburger-box__inner:after {
    bottom: 0;
    transform: rotate(-90deg);
    width: 100%;
    transition: bottom .2s ease, transform .2s ease .22s, width .1s ease
}

.f-menu-button {
    pointer-events: none
}

.f-header .ssw-link-fave-menu, .f-header__compare, .f-header__account, .f-header__wishlist {
    position: relative;
    padding: 14px 8px
}

.f-search-wrapper .f-header .ssw-link-fave-menu, .f-search-wrapper .f-header__compare, .f-search-wrapper .f-header__account, .f-search-wrapper .f-header__wishlist {
    padding: 0;
    margin-left: 8px;
    margin-right: 8px
}

.f-header__account-text {
    padding: 20px 16px
}

@media screen and (min-width: 1024px) {
    .f-header .f-cart-icon-bubble {
        margin-right: 22px
    }
}

.f-search-form--icon-left {
    margin-right: 16px
}

.f-search-form--full {
    border: 1px solid rgb(var(--color-border));
    border-radius: .375rem;
    transition: border .3s;
    height: 42px
}

.f-search-form--full:hover {
    border-color: rgb(var(--color-foreground))
}

.f-search-form__label {
    color: rgba(var(--color-foreground), 0.6);
    padding-left: 12px;
    white-space: nowrap
}

.f-search-form__button {
    padding: 8px 12px
}

@media (min-width: 1280px) {
    .f-search-form--full {
        min-width: 250px
    }

    .f-search-form--full > span {
        flex: 1
    }
}
