.menu__icon {
  display: flex;
  align-items: center;
  z-index: 50;
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.menu__icon span,
.menu__icon::before,
.menu__icon::after {
  right: 0;
  position: absolute;
  height: 10%;
  width: 100%;
  transition: all 0.3s ease 0s;
  background: #fff;
  z-index: 80;
}

.menu__icon::before,
.menu__icon::after {
  content: "";
  height: 2px;
}

.menu__icon::before {
  top: 8px;
}

.menu__icon::after {
  bottom: 8px;
  height: 2px;
}

.menu__icon span {
  height: 2px;
  top: 50%;
  transform: scale(1) translate(0px, -50%);
}

.menu__icon_active span {
  transform: rotate(45deg) scale(0) translate(0px, -50%);
  background: #fff;
}

.menu__icon_active::before {
  top: 50%;
  transform: rotate(-45deg) translate(0px, -50%);
  background: #fff;
}

.menu__icon_active::after {
  bottom: 50%;
  transform: rotate(45deg) translate(0px, 50%);
  background: #fff;
}

.menu__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: fixed;
  top: 50px;
  right: -100%;
  width: 200px;
  height: 200px;
  padding: 16px;
  background: #1b1d21;
  transition: right 0.3s ease 0s;
  overflow: auto;
}

.menu__body_active {
  right: 16px;
}

.menu__body::before {
  content: "";
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 16;
}

.menu__option{
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
      font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color:#fff;
}