.stohe-mobile-menu-toggle {
  width: 69px;
  height: 40px;
  cursor: pointer;
  position: relative;
  background-color: #cbc8c5;
  border-radius: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0px;
  transition: 0.3s;
  transition-timing-function: ease-out;
  -webkit-transition: 0.3s;
  -webkit-transition-timing-function: ease-out;
}
.stohe-mobile-menu-toggle.active {
  background-color: #ffffff;
}
.stohe-mobile-menu-toggle .line {
  width: 30px;
  height: 2px;
  background-color: #ffffff;
  position: relative;
  border-radius: 1000px;
  transition: 0.3s;
  transition-timing-function: ease-out;
  -webkit-transition: 0.3s;
  -webkit-transition-timing-function: ease-out;
}
.stohe-mobile-menu-toggle.active .line {
  background-color: #ebe8e5;
}
/* .stohe-mobile-menu-toggle .line:nth-child(2) {
  width: 30px;
} */
.lines-container {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-gap: 5px;
  gap: 5px;
}

.stohe-mobile-menu-toggle.active .line:nth-child(1) {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  top: 7px;
}

.stohe-mobile-menu-toggle.active .line:nth-child(2) {
  opacity: 0;
}

.stohe-mobile-menu-toggle.active .line:nth-child(3) {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  top: -7px;
}

.mobile-menu-con {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  height: 100%;
  transform: translateX(200%);
}
.mobile-menu-con.active {
  transform: translateX(0%);
}
