/** Shopify CDN: Minification failed

Line 193:6 Expected ":"

**/
.mega-menu {
  position: static;
  height: 100%;
  align-content: center;
}

.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: 3rem;
  padding-top: 3rem;
  position: absolute;
  right: 0;
  top: 100%;
  height: 60vh;
}

.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;
  list-style: none;
}

.mega-menu__list > li {
  display: grid; 
}

.mega-menu__list > li > a {
  padding: 7px;
  color: rgb(var(--brand-color));
}


.mega-menu__link {
  color: rgba(var(--color-foreground), 1);
  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 >  .mega-menu__link:hover,
.mega-menu >  .mega-menu__link--active {
  color: rgb(var(--color-foreground));
  text-decoration: none;

}

.mega-menu > .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: var(--font-body-weight);
}




.menu-icon {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid var(--brand-color);
  background: var(--brand-color);
}


.mega-menu__list li > ul {
  opacity: 0;
  visibility: hidden;
}

.mega-menu__list li:hover > ul {
  display: grid;
  opacity: 1;
  visibility: visible;
}

.has--grandchild .mega-menu__child-item > .mega-menu__link  {
  display: flex;
  gap: 1rem;
  align-items: center;
  text-transform: uppercase
} 

.has--grandchild .mega-menu__list > li:not(:last-child) > a {
      border-bottom: 1px solid rgb(var(--brand-color));
}
.has--grandchild .mega-menu__child-item > .mega-menu__link:hover, .has--grandchild .is-submenu-active {
  border-right: 9px solid rgb(var(--primary-color));
    background: rgba(var(--brand-color), 0.10);

}


.mega-menu__content:not(.has--grandchild) .menu-item-with-image, .has--grandchild .mega-menu__grandchild-list .menu-item-with-image{
    flex: 1;
    border: 1px solid rgb(var(--primary-color));
    padding: 1rem;
    border-radius: 1rem;
    margin-bottom: .75rem;
    line-height: 1;
}

.mega-menu__content:not(.has--grandchild) .menu-item-with-image img, 
.has--grandchild .mega-menu__grandchild-list .menu-item-with-image img{
  background: rgba(var(--primary-color), .2);
  border-radius: 1rem;
  max-width: 100%;
  height: auto;
}

.has--grandchild .mega-menu__grandchild-list .menu-item-with-image img {
  width: 100%;
}

 .mega-menu__content:not(.has--grandchild) .mega-menu__child-item .mega-menu__link, 
 .has--grandchild .mega-menu__grandchild-list .mega-menu__link {
   display: flex;
   flex-direction: column;
   transition: all var(--duration-short) linear;

 }

.mega-menu__content:not(.has--grandchild) .mega-menu__child-item .mega-menu__link:hover, 
 .has--grandchild .mega-menu__grandchild-list .mega-menu__link:hover{
   transform: scale(1.02);
  transition: all var(--duration-short) linear;

 }

 .mega-menu__child-item:first-child  span {
    min-width: 100%;
    max-width: min-content;
}


 .mega-menu__content .mega-menu__child-item .mega-menu__link span {
   align-self: center;
   color: rgb(var(--brand-color));
   flex: 1;
   max
 }

@media screen and (min-width: 749px) {
  .has--grandchild .mega-menu__list {
    position: relative;
    height: 100%;
  }
  .mega-menu__content:not(.has--grandchild) .mega-menu__list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }

  .has--grandchild .mega-menu__list  .mega-menu__child-item {
    grid-template-columns: 300px 1fr;
  }
  
  .has--grandchild .mega-menu__list li > ul {
    padding: 0 1rem;
    overflow: auto;
  }

  .mega-menu__list li:first-child > ul {
    display: grid;
    visibility: visible;
    opacity: 1;

  }
  .mega-menu__list li > ul {
    background: #fff;
    position: absolute;
    left: 370px;
    top: 0;
    height: 100%;
    width: calc(100% - (370px + 5rem));
    grid-template-columns: repeat(4,minmax(0,1fr));
    display: none;
    gap: 1.5rem

  }
  .mega-menu__content:not(.has--grandchild) .mega-menu__link span {
    max-width: 200px;
    text-align: center;
  }

}


