.nestmenu-burger {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background-color: transparent;
}
.nestmenu-burger__button {
  width: 50px;
  height: 50px;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  background: transparent;
}
.nestmenu-burger__button:hover {
  outline: none;
}
.nestmenu-burger__button span {
  width: 50px;
  height: 4px;
  border-radius: 8px;
  display: inline-block;
  background-color: black;
  pointer-events: none;
}