

.mnav-trigger {
  position: relative;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.mnav-trigger span,
.mnav-trigger span::before,
.mnav-trigger span::after {
  display: block;
  position: absolute;

  left: 50%;
  margin-left: -15px;
  width: 30px;
  height: 3px;

  background: #FF0066;
  border-radius: 2px;
  transition: all .2s ease;
}
.mnav-trigger span {
  top: 50%;
  transform: translateY(-50%);
}
.mnav-trigger span::before {
  content: '';
  top: -10px;
}
.mnav-trigger span::after {
  content: '';
  top: 10px;
}
.mnav-trigger.is-open span {
  background: transparent;
}
.mnav-trigger.is-open span::before {
  top: 0;
  transform: rotate(45deg);
  background: #FF0066;
}
.mnav-trigger.is-open span::after {
  top: 0;
  transform: rotate(-45deg);
  background: #FF0066;
}

.mnav-panel {
  position: fixed;
  inset: 0;

  z-index: 10500;
  visibility: hidden;
  pointer-events: none;
}
.mnav-panel.is-open {
  visibility: visible;
  pointer-events: auto;
}
.mnav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  transition: opacity .3s ease;
}
.mnav-panel.is-open .mnav-backdrop {
  opacity: 1;
}

.mnav-drawer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  max-width: 85vw;
  background: #1c1e22;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform .3s ease;
}

.mnav-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}
.mnav-panel.is-open .mnav-drawer {
  transform: translateX(0);
}
.mnav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  flex-shrink: 0;
}
.mnav-logo img {
  height: 32px;
  display: block;
}
.mnav-close {
  background: none;
  border: none;
  color: #fff;
  padding: .25rem;
  line-height: 1;
  cursor: pointer;
}
.mnav-close .material-symbols-outlined {
  font-size: 24px;
}

.mnav-list {
  list-style: none;
  margin: 0;
  padding: .5rem 0;
}
.mnav-row {
  display: flex;
  align-items: stretch;
  position: relative;
}

.mnav-row::after {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, .08);
}
.mnav-link {
  flex: 1;
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 1rem;
  color: #fff;
  text-decoration: none;
  font: 500 1.05rem "Barlow Condensed";
  letter-spacing: .02em;
}
.mnav-link:hover,
.mnav-link:active {
  background: rgba(255, 255, 255, .06);
  color: #fff;
}
.mnav-icon {
  font-variation-settings: 'FILL' 0, 'wght' 350, 'GRAD' 0, 'opsz' 20;
  font-size: 22px;
  color: #999;
  flex-shrink: 0;
}

.mnav-link-disabled,
.mnav-link-disabled:hover,
.mnav-link-disabled:active {
  color: rgba(255, 255, 255, .3);
  background: transparent;
  pointer-events: none;
}
.mnav-link-disabled .mnav-icon {
  color: rgba(255, 255, 255, .2);
}

.mnav-check {
  margin-left: auto;
  flex-shrink: 0;
  color: #cddc39;
}
.mnav-link .mnav-check {
  font-size: 20px;

  margin-right: 8px;
}
.mnav-toggle {
  background: none;
  border: none;
  color: rgba(255, 255, 255, .7);
  width: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  margin-right: 8px;
}
.mnav-toggle .material-symbols-outlined {
  font-size: 22px;
  transition: transform .25s ease;

  margin-right: 4px;
}
.mnav-item.is-expanded .mnav-toggle .material-symbols-outlined {
  transform: rotate(180deg);
}

.mnav-sub {
  list-style: none;
  margin: 0 0 0 1rem;

  padding: 0 1rem 0 .75rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  background: rgba(0, 0, 0, .15);
  position: relative;
}

.mnav-sub::after {
  content: '';
  position: absolute;
  left: 0;
  right: 1rem;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, .08);
}
.mnav-sub li a {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin: .2rem 0;
  padding: .5rem .65rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  font: 400 .92rem "Barlow Semi Condensed";
}
.mnav-sub li a:hover {
  background: rgba(255, 255, 255, .1);
  color: #fff;
}
.mnav-sub li:first-child a {
  margin-top: .5rem;
}
.mnav-sub li:last-child a {
  margin-bottom: .5rem;
}
.mnav-sub li a .material-symbols-outlined {
  font-size: 18px;

  color: #BDF;
  flex-shrink: 0;
}
.mnav-sub li a .mnav-check {
  color: #cddc39;

  margin-right: -2px;
}
.mnav-sub li.mnav-disabled a {
  color: rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .02);
  pointer-events: none;
}
.mnav-sub li.mnav-disabled a .material-symbols-outlined {
  color: rgba(255, 255, 255, .2);
}

.mnav-sub li.mnav-highlight a {
  color: #ffb870;
  font-weight: 400;
  background: rgba(255, 45, 45, .12);
}
.mnav-sub li.mnav-highlight a:hover {
  color: #ff9640;
  background: rgba(255, 45, 45, .2);
}
.mnav-sub li.mnav-highlight a .material-symbols-outlined {

  color: #BDF;
}
.mnav-sub li.mnav-highlight a .mnav-check {
  color: #cddc39;
}

.mnav-bottom {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-shrink: 0;

  background: #e1e1e1;
}
.mnav-bottom li {
  flex: 1;
}
.mnav-bottom a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .15rem;
  padding: .6rem 0 .5rem 0;
  color: #000;
  text-decoration: none;
  transition: background-color .15s ease-in-out;
}
.mnav-bottom a:hover {
  background: rgba(0, 0, 0, .1);
}
.mnav-bottom a .material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 450, 'GRAD' 0, 'opsz' 20;
  font-size: 22px;
}
.mnav-bottom-label {
  font: 400 .7rem "Barlow Semi Condensed";
  line-height: 1;
}

.mnav-bottom li.mnav-disabled a {
  color: rgba(0, 0, 0, .3);
  pointer-events: none;
}
.mnav-bottom li.mnav-disabled a:hover {
  background: transparent;
}
