.mobile_menu_trigger {
  position: relative;
  cursor: pointer;
  cursor: none;
}

.mobile_menu_trigger * {
  cursor: pointer;
  cursor: none;
}

.nav-icon {
  background-color: transparent;
  width: 30px;
  height: 24px;
  position: relative;
  margin: 0 auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  z-index: 99;
}

.nav-icon span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background-color: var(--logo-color);
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
  cursor: pointer;
}

.active .nav-icon span {
  background: #fff;
}

.nav-icon span:nth-child(1) {
  top: 0px;
}

.nav-icon span:nth-child(2), .nav-icon span:nth-child(3) {
  top: 50%;
  margin-top: -2px;
  width: 80%;
  right:0;
  left:auto;
}

.nav-icon span:nth-child(4) {
  bottom: 0;
  width: 100%;
  right: 0;
  left: auto;
}

.active .nav-icon span:nth-child(1) {
  bottom: 0;
  width: 0%;
  left: 50%;
}

.active .nav-icon span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.active .nav-icon span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.active .nav-icon span:nth-child(4) {
  bottom: 0;
  width: 0%;
  left: 50%;
}