.c-mega-menu {
  padding-bottom: 44px;
  padding-top: 24px;
}
.c-mega-menu .menu__link {
  align-items: center;
  color: #4B4B4B;
  display: flex;
  font-family: var(--tme-ff-ui);
  gap: 16px;
  text-align: left;
}
.c-mega-menu .menu__link .text {
  flex: 1;
}
.c-mega-menu .menu__link[aria-expanded=true] .icon--chevron-down {
  rotate: 180deg;
}
@media (min-width: 992px) {
  .c-mega-menu .menu__link .icon--chevron-down {
    display: none;
  }
}
.c-mega-menu a.menu__link,
.c-mega-menu button.menu__link {
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: -webkit-text-decoration 300ms ease-in-out;
  transition: text-decoration 300ms ease-in-out;
  transition: text-decoration 300ms ease-in-out, -webkit-text-decoration 300ms ease-in-out;
}
.c-mega-menu a.menu__link:hover,
.c-mega-menu button.menu__link:hover {
  text-decoration-color: currentColor;
  text-decoration: underline;
}
.c-mega-menu button.menu__link {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.c-mega-menu .tab-list,
.c-mega-menu .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-mega-menu .menu[data-depth="0"] > .menu__item[aria-hidden=true] {
  display: none;
}
@media (max-width: 991.98px) {
  .c-mega-menu .menu[data-depth="0"] > .menu__item:not(:last-child) {
    border-bottom: 1px solid rgba(112, 112, 112, 0.25);
  }
  .c-mega-menu .menu[data-depth="0"] > .menu__item > .menu__link {
    padding: 12px 0;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .c-mega-menu .menu[data-depth="0"] > .menu__item > .menu__link {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .c-mega-menu .menu[data-depth="1"] > .menu__item {
    margin-bottom: 12px;
  }
}
@media (min-width: 768px) {
  .c-mega-menu .menu[data-depth="1"] {
    display: flex;
    gap: 24px;
    margin-bottom: 12px;
  }
}
.c-mega-menu .menu[data-depth="1"][aria-hidden=true] {
  display: none;
}
.c-mega-menu .menu[data-depth="1"] .menu__item {
  flex: 1;
}
.c-mega-menu .menu[data-depth="1"] .menu__link {
  font-size: var(--tme-fs-body-20);
  line-height: var(--tme-lh-body-20);
}
.c-mega-menu .menu[data-depth="1"] span.menu__link {
  font-weight: bold;
  margin-bottom: 16px;
}
.c-mega-menu .menu[data-depth="2"] {
  display: grid;
  grid-gap: 8px;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr);
}
.c-mega-menu .tab-list {
  align-items: center;
  border-bottom: 1px solid #707070;
  display: flex;
  margin-bottom: 32px;
}
.c-mega-menu .tab-list .menu__link {
  padding: 16px;
}
.c-mega-menu .tab-list .menu__link[aria-expanded=true] {
  font-weight: bold;
  position: relative;
}
.c-mega-menu .tab-list .menu__link[aria-expanded=true]:after {
  background-color: var(--tme-color-secondary-3);
  bottom: -2px;
  content: "";
  display: block;
  left: 0;
  height: 3px;
  position: absolute;
  width: 100%;
  z-index: 1;
}
@media (min-width: 1200px) {
  .c-mega-menu .tab-list .menu__link {
    padding: 28px;
  }
}
@media (max-width: 991.98px) {
  .c-mega-menu .tab-list {
    display: none;
  }
}
@media (min-width: 1200px) {
  .c-mega-menu {
    padding-bottom: 64px;
  }
}