/** Shopify CDN: Minification failed

Line 152:0 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: hidden;
  position: absolute;
  right: 0;
top: 100px;
   transition: all .3s ease;
  height:0;
  opacity: 0;
}
.more-links-right .mega-menu__list {
    gap: 1.8rem 3.5rem;
}
.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;
}


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

.mega-menu__list {
  display: grid;
  gap: 1.8rem 1.5rem;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  list-style: none;
}
.list-menu__item {
  text-transform: uppercase;
}
.mega-menu__link {
  color: rgba(var(--color-foreground), 0.75);
  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: flex;
}

.mega-menu__list--condensed .mega-menu__link {
  font-weight: normal;
}
.mega-item-image-box-container {
 height: 170px;
  width: 170px;
  overflow: hidden;
  margin-bottom: 10px;
}
.menu-item-image-box {
  height:170px;
  width:170px;
  background-size: cover !important;
    background-position: center !important;
    display: block !important;
  transition: all .5s ease;
}
.mega-menu:hover .mega-menu__content {
  height: 350px;
  opacity: 1;
  transform: translateX(0);
  top: 100px;
  left:0;
}

.mega-menu-image-link:hover .menu-item-image-box {
  transform: scale(1.08);
}
.mega-menu img:hover {
  transform: scale(1.5);
}
.underline {
  display: inline;
  position: relative;
  overflow: hidden;
}
.underline:after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  width: 0;
  bottom: -5px;
  background: #000;
  height: 2px;
  transition-property: width;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  background: white;
  color:white;
}
.underline:hover:after,
.underline:focus:after,
.underline:active:after {
  left: 0;
  right: auto;
  width: 100%;
}
.mega-menu__link:hover {
  text-decoration: none;
}
}