@font-face {
  font-family: "HDI-GerlingSans-Regular";
  font-display: swap;
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/HDI-GerlingSans-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "HDI-GerlingSans-Bold";
  font-display: swap;
  font-style: normal;
  font-weight: 700;
  src: url("/assets/font/HDI-GerlingSans-Bold.woff2") format("woff2");
}
.product-nav {
  background-color: #ffffff;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 3;
  transition-property: box-shadow;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.product-nav.-elevated {
  border-bottom-color: transparent;
  box-shadow: 0 4px 20px rgba(0, 103, 41, 0.08);
}
.product-nav__list {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 20px;
  gap: 10px;
}
.product-nav__list::-webkit-scrollbar {
  display: none;
}
.product-nav__item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  word-break: keep-all;
  padding: 8px 5px;
  color: #7c7c7c;
  text-decoration: none;
  font-family: "HDI-GerlingSans-Regular";
  --font-size: 14px;
  --font-size-rem: 0.875rem;
  --line-height: 20px;
  --line-height-rem: 1.25rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  position: relative;
  transition-property: color;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.product-nav__item::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #006729;
  transform: scaleX(0);
  transform-origin: left center;
  transition-property: transform;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.product-nav__item:hover {
  color: #006729;
}
.product-nav__item.-active {
  color: #006729;
  text-shadow: 0 0 0.5px #006729, 0 0 0.5px #006729;
}
.product-nav__item.-active::after {
  transform: scaleX(1);
}
@media screen and (min-width: 1024px) {
  .product-nav__list {
    justify-content: space-between;
    overflow-x: visible;
    max-width: 1240px;
    margin: 0 auto;
  }
  .product-nav__item {
    padding: 14px 5px;
  }
}