.burgerbutton {
  display: flex;
}
.phone-button {
  padding: 14px 12px 5px 12px;
}
.phone-button svg {
  width: 26px;
  height: auto;
}
.burgerbutton-button {
  cursor: pointer;
  padding: 20px 5vw 19px 10px;
  width: 40px;
  box-sizing: content-box;
  height: 17px;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}
.burgerbutton-linie {
  background: var(--wp--preset--color--rot);
  height: 2px;
  transition: .4s cubic-bezier(0.68, 0, 0.32, 1.6);
  width: 100%;
  transform-origin: center;
  left: 0;
  position: relative;
  top: 0;
}
.burgerbutton-linie:nth-child(1) {
  width: 75%;
}
.burgerbutton-linie:nth-child(3) {
  width: 50%;
}
.burgerbutton-button.active .burgerbutton-linie:nth-child(1) {
  transform: rotatez(45deg);
  width: 80%;
  top: 8px;
  left: 9px;
}
.burgerbutton-button.active .burgerbutton-linie:nth-child(2) {
    transform: rotatez(-45deg) translateX(-50%);
    width: 0px;
    left: 50%;
}
.burgerbutton-button.active .burgerbutton-linie:nth-child(3) {
  transform: rotatez(-45deg);
  width: 80%;
  top: -7px;
  left: 9px;
}
.burgerbutton-menu {
  display: none;
  flex-shrink: 0;
  width: 100%;
  max-height: calc(100vh - 70px);
  overflow: scroll;
}

@media only screen and (min-width: 990px) {
    .burgerbutton {
        display: none;
    }
    .burgerbutton-menu {
        display: block;
        width: auto;
        overflow: visible;
        margin-right: 30px !important;
    }
}