.mm-overlay {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 65px;
  right: 0;
  bottom: 0;
  z-index: 999;
  left: 0;
  background: #000;
  opacity: 0;
  transition: opacity .2s ease-in-out;
}

.mm-overlay.show {
  display: block;
  opacity: .6;
}

.mega-menu {
  opacity: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 65px;
  left: 0;
  right: 0;
  z-index: 1000;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .2s ease-in-out;
}

.mega-menu__links-container {
  margin-top: 0;
  margin-bottom: auto;
}

.mega-menu__row {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}

.mega-menu.open {
  transform: scaleY(1);
  opacity: 1;
}

.mega-menu__character {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  height: 52vh;
  margin-bottom: -30px;
}

.mm-col__header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  position: relative;
  padding-bottom: 10px;
}

.mm-col__header:after {
  content: '';
  display: block;
  border-bottom: 1px solid #9e9e9e;
  width: calc(100% + 1.5rem);
  margin-left: -0.75rem;
  position: absolute;
  bottom: 0;
}

.mm-col__header-icon {
  height: 25px;
  width: auto;
}

.mm-col__header-title {
  color: #ffc83d;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Exo 2', sans-serif;
}

.mm-links {
  padding: 32px 32px 0px 32px;
}

.mm-links__item {
  margin-bottom: 15px;
}

.mm-links__link {
  color: #fff;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  transition: opacity .2s ease-in-out;
}

.mm-links__link:hover {
  opacity: .8;
}
