﻿header-drawer
{
    justify-self: start;
}
@media screen and (min-width: 1140px)
{
    header-drawer
    {
        display: none;
    }
}
.header-icon-menu
{
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
}
.header-icon-menu .icon
{
    display: block;
    position: absolute;
    opacity: 1;
    transform: scale(1);
    transition: transform 150ms ease-out,opacity 150ms ease-out;
}
details:not([open])>.header-icon-menu .icon-close, details[open]>.header-icon-menu .icon-hamburger
{
    visibility: hidden;
    opacity: 0;
    transform: scale(.8);
}
.js details[open]:not(.menu-opening)>.header-icon-menu .icon-close
{
    visibility: hidden;
}
.js details[open]:not(.menu-opening)>.header-icon-menu .icon-hamburger
{
    visibility: visible;
    opacity: 1;
    transform: scale(1.07);
}
.header-icon-menu[aria-expanded=true]::before
{
    content: "";
    z-index: -1;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    display: block;
    position: fixed;
    background: rgba(var(--color-black-rgb),.5);
}
.js menu-drawer>details>summary::before, .js menu-drawer>details[open]:not(.menu-opening)>summary::before
{
    content: "";
    position: absolute;
    cursor: default;
    width: 100%;
    height: calc(100vh - 100%);
    top: 100%;
    left: 0;
    background: rgba(var(--color-black-rgb),.5);
    opacity: 0;
    z-index: 2;
    transition: opacity 0s,visibility 0s;
}
.js .section-announcement-bar+.section-header menu-drawer>details>summary::before, .js .section-announcement-bar+.section-header menu-drawer>details[open]:not(.menu-opening)>summary::before
{
    height: calc(100vh - (109px + 32px));
}
menu-drawer>details[open]>summary::before
{
    visibility: visible;
    opacity: 1;
    transition: opacity .25s ease-out,visibility .25s ease-out;
}
.menu-drawer
{
    --header-height: 109px;
    --menu-container-height: calc(100vh - var(--header-height));
    position: absolute;
    transform: translateX(-100%);
    visibility: hidden;
    z-index: 3;
    left: 0;
    top: 100%;
    max-width: 480px;
    width: 100%;
    padding: 0;
    height: var(--menu-container-height);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.section-announcement-bar:has(.announcement-bar)+.section-header .menu-drawer
{
    --header-height: calc(109px);
}
.section-announcement-bar:has(.announcement-bar)+.section-header.shopify-section-header-sticky .menu-drawer
{
    --header-height: 109px;
}
@media(min-width: 820px)
{
    .no-js .menu-drawer
    {
        height: auto;
    }
}
.menu-drawer .accordion summary
{
    padding: 0;
}
.menu-drawer-nav-callout-container
{
    display: flex;
    padding: 2rem;
}
.menu-drawer-shop-all-row
{
    padding: 1rem 2rem;
    border-bottom: 1px solid #767676;
}
.js details[open]>.menu-drawer, .js details[open]>.menu-drawer-submenu
{
    transition: transform .25s ease-out,visibility .25s ease-out;
}
.no-js details[open]>.menu-drawer, .js details[open].menu-opening>.menu-drawer, details[open].menu-opening>.menu-drawer-submenu
{
    transform: translateX(0);
    visibility: visible;
}
.menu-drawer-wrapper, .menu-drawer-inner-container
{
    position: relative;
}
.menu-drawer-wrapper
{
    height: 100%;
}
.background-pattern
{
    position: sticky;
    top: 100%;
    display: block!important;
    height: 229px;
}
.background-pattern:before, .background-pattern:after
{
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
}
.background-pattern:before
{
    background-image: url("../image/mobile-menu-texture@2x.png");
    background-size: contain;
}
.background-pattern:after
{
    background-image: url("../image/mobile-menu-overlay@2x.png");
    background-size: cover;
}
.menu-drawer-menu
{
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.menu-drawer-menu .accordion
{
    border: none;
}
.menu-drawer-menu .accordion .accordion-content
{
    padding: 0;
}
.js .menu-drawer-submenu
{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    z-index: 400;
    transform: translateX(100%);
    visibility: hidden;
    background-color: var(--color-white);
}
.menu-drawer-utility-links
{
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
    padding: 1.5rem;
}
.menu-drawer-utility-links a
{
    display: flex;
    width: fit-content;
    align-items: center;
    column-gap: .5rem;
    margin-bottom: 0;
}
.menu-drawer-utility-links a svg
{
    width: 1.5rem;
    height: 1.5rem;
}