.menu-btn {
  width: 40px;
  height: 40px;
  position: relative;
  background: var(--white);
  background-clip: content-box;
  box-sizing: border-box;
  padding: 19px 11px;
}
.menu-btn:after {
  position: absolute;
  content: "";
  width: 18px;
  height: 2px;
  background: var(--white);
  bottom: 13px;
  left: 11px;
  transition-property: bottom, transform;
  transition-duration: 0.3s, 0.3s;
}
.menu-btn:before {
  position: absolute;
  content: "";
  width: 18px;
  height: 2px;
  background: var(--white);
  top: 13px;
  left: 11px;
  transition-property: top, transform;
  transition-duration: 0.3s, 0.3s;
}
.menu-btn.open {
  background: none;
}
.menu-btn.open:before {
  top: calc(50% - 1px);
  transform: rotate(45deg);
}
.menu-btn.open:after {
  top: calc(50% - 1px);
  transform: rotate(-45deg);
}

.menu-drop {
  position: fixed;
  right: -480px;
  top: 64px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding-bottom: 50px;
  background: var(--black);
  z-index: 10;
  overflow-x: hidden;
  overflow-y: auto;
  font-weight: normal;
  max-width: 480px;
  transition: right 0.5s ease-out;
}
.menu-drop.t2 {
  top: 0;
  padding-top: 85px;
}
.menu-drop.open {
  right: 0;
}
.menu-drop-wrap {
  overflow: auto;
  position: fixed;
  display: none;
  top: 64px;
  height: calc(100% - 64px);
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 5;
  text-align: center;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
.menu-drop-wrap:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  width: 0;
}
.menu-drop nav {
  margin-bottom: 50px;
}
.menu-drop nav .lvl1 > a {
  display: block;
  color: var(--white);
  text-decoration: none;
  padding: 10px 27px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
.menu-drop nav .lvl1 > a.has-children {
  position: relative;
}
.menu-drop nav .lvl1 > a.has-children:after {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  right: 20px;
  width: 8px;
  height: 8px;
  border-bottom: solid 2px var(--white);
  border-right: solid 2px var(--white);
  transform: rotate(45deg);
}
.menu-drop nav .lvl1 > a.has-children.open:after {
  transform: rotate(225deg);
}
.menu-drop nav .lvl1.active > a {
  color: var(--gray-bg);
}
.menu-drop nav .lvl2 {
  margin-bottom: 10px;
}
.menu-drop nav .lvl2:first-of-type {
  margin-top: 10px;
}
.menu-drop nav .lvl2.hidden {
  display: none;
}
.menu-drop nav .lvl2 > a {
  display: block;
  color: var(--white);
  text-decoration: none;
  padding: 0 27px;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
}
.menu-drop nav .lvl2.active > a {
  color: var(--gray-bg);
}
.menu-drop-logo {
  padding: 0 0 0 20px;
  line-height: 1;
  align-items: center;
  position: absolute;
  top: 20px;
  display: none;
}
.menu-drop-logo img {
  width: 131px;
  height: 40px;
}
.menu-drop-close {
  position: absolute;
  width: 40px;
  height: 40px;
  right: 24px;
  top: 20px;
  z-index: 2;
  box-sizing: border-box;
}
.menu-drop-close:after, .menu-drop-close:before {
  position: absolute;
  content: "";
  width: 2px;
  height: 16px;
  background: var(--white);
  left: calc(50% - 1px);
  top: calc(50% - 8px);
}
.menu-drop-close:after {
  transform: rotate(-45deg);
}
.menu-drop-close:before {
  transform: rotate(45deg);
}

.tablebodytext {
  display: none;
}

/*# sourceMappingURL=style.css.map */
