<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.burgerbutton {
  position: relative;
}
.burgerbutton-button {
  cursor: pointer;
  padding: 16px 0 16px;
  width: 30px;
  box-sizing: content-box;
  z-index: 1000;
  height: 20px;
  position: relative;
}
.burgerbutton-linie-wrapper {
    position: relative;
    height: 100%;
}
.burgerbutton-linie {
  background: #328978;
  height: 3px;
  transition: .4s cubic-bezier(0.68, 0, 0.32, 1.6);
  width: 30px;
  position: absolute;
  transform-origin: center;
  left: 0;
}
.burgerbutton-linie:nth-child(1) {
    top:0;
}
.burgerbutton-linie:nth-child(2) {
    top:calc(50% - 2px);
}
.burgerbutton-linie:nth-child(3) {
    top:calc(100% - 4px);
}
.burgerbutton-button.active .burgerbutton-linie:nth-child(1) {
    top:calc(50% - 2px);
    transform: rotatez(45deg);
}
.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) {
    top:calc(50% - 2px);
    transform: rotatez(-45deg);
}
.burgerbutton-menu {
  display: none;
  position: absolute;
  width: 100vw;
  height: auto;
  background-color: white;
  top: 67px;
  right: -5vw;
  z-index: 9;
  padding: 0 0 30px;
}
.burgerbutton .wp-block-navigation ul:not(.wp-block-navigation__submenu-container) {
    flex-direction: column !important;
    align-items: start;
}

@media only screen and (min-width: 1100px) {
    .burgerbutton {
        position: relative;
    }
    .burgerbutton-button {
      display: none;
    }
    .burgerbutton-menu {
        display: flex;
        width:100%;
        position: relative;
        background-color: transparent;
        height: auto;
        top:auto;
        left:0;
        padding:0;
    }
    .burgerbutton .wp-block-navigation ul:not(.wp-block-navigation__submenu-container) {
        flex-direction: row !important;
        justify-content: flex-end !important;
    }

    /* editor styles */
    .wp-block .burgerbutton {
        width:100%;
    }
}</pre></body></html>