/** Shopify CDN: Minification failed

Line 183:56 Unexpected "{"

**/
.mega-menu {
  position: static;
}

.mega-menu__content {
  background-color: rgb(var(--color-background));
  border-left: 0;
  border-radius: 0;
  border-right: 0;
  left: 0;
  overflow-y: auto;
  padding-bottom: 5rem;
  padding-top: 5rem;
  position: absolute;
  right: 0;
  top: 100%;
}

/* .shopify-section-header-sticky .mega-menu__content {
  max-height: calc(100vh - var(--header-bottom-position-desktop, 20rem) - 4rem);
} */

.header-wrapper--border-bottom .mega-menu__content {
  border-top: 0;
}

.js .mega-menu__content {
  opacity: 0;
  transform: translateY(-1.5rem);
}

.mega-menu[open] .mega-menu__content {
  opacity: 1;
  transform: translateY(0);
}

.mega-menu__list {
  display: grid;
  gap: 1.8rem 4rem;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  list-style: none;
}

.mega-menu__link {
  color: rgba(var(--color-foreground));
  display: block;
  line-height: calc(1 + 0.3 / var(--font-body-scale));
  padding-bottom: 0.6rem;
  padding-top: 0.6rem;
  text-decoration: none;
  transition: text-decoration var(--duration-short) ease;
  word-wrap: break-word;
}

.mega-menu__link--level-2 {
  font-weight: bold;
}

.header--top-center .mega-menu__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 0;
}

.header--top-center .mega-menu__list > li {
  width: 16%;
  padding-right: 2.4rem;
}

.mega-menu__link:hover,
.mega-menu__link--active {
  color: rgb(var(--color-foreground));
  text-decoration: underline;
}

.mega-menu__link--active:hover {
  text-decoration-thickness: 0.2rem;
}

.mega-menu .mega-menu__list--condensed {
  display: block;
}

.mega-menu__list--condensed .mega-menu__link {
  font-weight: normal;
}

/* */


.mega-menu__content {
  display: flex;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    visibility 220ms;
  pointer-events: none;
}

/* Visible state */
.mega-menu[open] .mega-menu__content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-menu__content::-webkit-scrollbar {
    width: 2px;
    background-color: #f2f2f2;
}

.mega-menu__content::-webkit-scrollbar-thumb {
    background: #d5d5d5;
}

.mega-menu--list {
  list-style: none;
}

.mega-menu-list--left {
  display: flex;
  gap: 8rem;
  flex-basis: 100%;
}

.mega-menu-list--left.has-childLinks {
    flex-direction: column;
    flex-basis: calc(30% - 1rem);
    justify-content: space-between;
}

.mega-menu-list--right {
    flex-basis: calc(70% - 1rem);
}

.mega-menu-list--right-full {
    flex-basis: 100%;
}

.mega-menu-list--main {
    padding: 0;
    flex: 1;
}

.mega-menu-list--child {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    list-style: none;
    padding: 0;
    gap: 25px;
    width: 100%;
}

.mega-menu-list--child > li {
    flex: 1 1 150px;
    min-width: 150px;
}

.mega-menu-list--main .mega-menu__link {
    font-size: 32px;
    line-height: 40px;
}

.mega-menu-list--child .mega-menu__link--level-2 {
    font-size: 12px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.8px !important;
}

.mega-menu-list--child .mega-menu__link--level-2:hover, {
    text-decoration: none;
}

.childlink-list .mega-menu__link {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
}

.mega-menu__image-link {
    position: relative;
    text-decoration: none;
}

h3.block-heading {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.8;
    margin: 0 0 12px;
    text-transform: uppercase;
}

.mega-menu__image-container {
    flex: 1;
    width: 100%;
    max-width: 320px;
}

.mega-menu__image-container img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 5px;
}

.mega-menu__image-container p {
    width: 100%;
    margin: 5px 0 0;
    font-weight: 600;
}

.mega-menu[open] .mega-menu__content {
    position: fixed;
    top: 120px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: fit-content;
    min-height: 400px;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    background: transparent;
    border: 0;
    box-shadow: none;
    flex-wrap: wrap;
    row-gap: 4rem;
    z-index: 99999;
}

button.mega-menu--close {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    height: 2.25rem;
    gap: 0;
    background: transparent;
    border: 0;
    align-items: center;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
}

button.mega-menu--close svg {
    width: 20px;
    height: 20px;
}

.childlink-list .mega-menu__link.grandchildlink {
    display: flex;
    align-items: center;
    gap: 10px;
}

span.mega-menu-thumb {
    display: block;
    width: 60px;
    height: 60px;
}

span.mega-menu-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
}