.sub_nav {
  display: flex;
  flex-direction: row;
  justify-content: safe center;
  align-items: center;
  background-color: #ffffff;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  white-space: nowrap;
  border-bottom: 1px solid var(--border-color);
  overflow: auto;
}
.sub_nav > .sub_nav_item {
  line-height: 16px;
  padding: 12px 16px;
  color: var(--variable-collection-NFC-rich-black-900);
  text-decoration: none;
  cursor: pointer;
}
.sub_nav > .sub_nav_item.sub_nav_link {
  align-self: stretch;
  display: flex;
  align-items: center;
}
.sub_nav > .sub_nav_item > span {
  color: var(--variable-collection-NFC-rich-black-900);
  cursor: pointer;
}
.sub_nav > .sub_nav_item > ul {
  display: none;
  position: absolute;
  z-index: 151;
  margin-top: 12px;
  width: 270px;
  min-height: 40px;
  max-height: 650px;
  list-style-type: none;
  background: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.2) 4px 4px 8px 0px;
  font-size: 14px;
  line-height: 21px;
  overflow: hidden auto;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: opacity 0.2s ease-in-out;
}
.sub_nav > .sub_nav_item > ul > li {
  width: 100%;
  border-bottom: 1px solid #e2e2e2;
  cursor: pointer;
  color: var(--variable-collection-NFC-rich-black-900);
  font-weight: bold;
}
.sub_nav > .sub_nav_item > ul > li:hover {
  background-color: var(--Foundation-NFC-Gray-nfc-gray-100, #E9E9EC);
}
.sub_nav > .sub_nav_item > ul > li > a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.sub_nav > .sub_nav_item > ul > li > a > span {
  display: block;
  padding: 1em;
}
/*# sourceMappingURL=subnav.module.css.map */