.burgerbutton-button {
    cursor: pointer;
    padding: 1rem 0 0.7rem 1rem;
    box-sizing: content-box;
    z-index: 1000;
    height: 22px;
    justify-content: space-between;
    z-index: 10;
    position: relative;
    display: flex;
    align-items: center;
    gap:0.7rem;
}
.burgerbutton-title {
    color:#059E42;
    font-size: 1.4rem;
}
.burgerbutton-title.bt-close,
.burgerbutton-button.active .burgerbutton-title.bt-open {
    display: none;
}
.burgerbutton-button.active .burgerbutton-title.bt-close {
    display: block;
}
.burgerbutton-linie-wrapper {
    position: relative;
    height: 100%;
    width:22px;
}
.burgerbutton-linie {
    background: #059E42;
    height: 3px;
    transition: .4s  cubic-bezier(0.68, 0, 0.32, 1.6);
    width: 25px;
    border-radius: 9999px;
    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: fixed;
    width:100%;
    height:100%;
    background-color: white;
    top:0;
    left:0;
    z-index: 9;
    padding:7rem 0 3rem;
    overflow: auto;
}
.burgerbutton .wp-block-navigation ul:not(.wp-block-navigation__submenu-container) {
    flex-direction: column !important;
}

@media only screen and (min-width: 1200px) {
    .burgerbutton {

    }
    .burgerbutton-button {
      display: none;
    }
    .burgerbutton-menu {
        display: block;
        width:100%;
        position: relative;
        height: auto;
        top:auto;
        left:0;
        padding:0;
        overflow: unset;
    }
    .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%;
    }
}