.Megamenu {
  position: relative;
  border-top: 1px solid var(--colorOutlines);
  border-bottom: 1px solid var(--colorOutlines);
}

@media (max-width: 75rem) {
  .Megamenu {
    display: none;
  }
}

.Megamenu-list {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: start;
  white-space: nowrap;
}

@media (max-width: 63.99rem) {
  .Megamenu-list {
    overflow-x: auto;
    overflow-y: hidden;
  }
}

@media (min-width: 64rem) {
  .Megamenu-list {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.Megamenu-category:not(:last-of-type) .Megamenu-categoryLink:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1.75rem;
  background: var(--colorBrand);
}

.Megamenu-category .Megamenu-categoryLink:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  left: -1px;
  top: 0;
  background: #fff;
  opacity: 0;
  visibility: hidden;
}

.Megamenu-category:hover .Megamenu-categoryLink, .Megamenu-category:active .Megamenu-categoryLink, .Megamenu-category:focus .Megamenu-categoryLink {
  color: hsl(0, 0%, calc((var(--colorBrand-l) - 60) * -100%));
  background: var(--colorBrand);
  text-decoration: none;
}

.Megamenu-category:hover .Megamenu-categoryLink:before, .Megamenu-category:active .Megamenu-categoryLink:before, .Megamenu-category:focus .Megamenu-categoryLink:before {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 64rem) {
  .Megamenu-category:hover .Megamenu-categoryLink + .MegamenuSubcategory, .Megamenu-category:active .Megamenu-categoryLink + .MegamenuSubcategory, .Megamenu-category:focus .Megamenu-categoryLink + .MegamenuSubcategory {
    opacity: 1;
    visibility: visible;
  }
}

.Megamenu-categoryWrapper {
  display: flex;
  justify-content: space-between;
  gap: 0 var(--spaceSm);
  width: 100%;
}

.Megamenu-categoryArrow {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: var(--spaceSm);
}

.Megamenu-categoryArrow:hover, .Megamenu-categoryArrow:active, .Megamenu-categoryArrow:focus {
  color: var(--colorText);
}

.Megamenu-categoryArrow svg {
  width: auto;
  height: 0.75rem;
  transition: var(--animationBase);
}

.Megamenu-categoryArrow.is-active svg {
  transform: rotate(90deg);
}

.Megamenu-categoryLink {
  position: relative;
  color: inherit;
  text-decoration: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  transition: var(--animationBase);
  padding: clamp(0.5rem, 1vw, 1.5rem) 2rem;
}

/*# sourceMappingURL=megamenu.min.css.map */
