.toggle-button {
    position: fixed;
    top: 8px;
    left: 15px;
    padding: 9px 10px;
    margin: 2px 15px 8px 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
    z-index: 3;
}

.bar {
    background-color: #ffffff;
    display: block;
    width: 100%;
    height: 2px;
    border: 0;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
}
.bar + .bar {
    margin-top: 7px;
}
.middle {
    top: 11px;
}
.bottom {
    top: 22px;
}
.toggle-active .bar {
    background-color: #fff;
}
.toggle-active .top {
    -webkit-transform: translateY(6px) translateX(0) rotate(45deg);
}
.toggle-active .middle {
   opacity: 0;
}
.toggle-active .bottom {
    -webkit-transform: translateY(-12px) translateX(0) rotate(-45deg);
}

.overlay {
    position: fixed;
    background: #000000;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .35s, visibility .35s, height .35s;
}



.nav-active {
    opacity: 1;
    visibility: visible;
    height: 100%;
/*    max-height: 340px;*/
}
.overlay .nav-list-center .nav-list-item-center {
    display: block;
    position: relative;
    top: 60px;
    left: 0;
    font-family: "Inter", sans-serif!important;
    font-weight: 800!important;
    font-size: 48px;
    text-align: center!important;
    list-style: none;
    padding: 40px;
}
.overlay ul li {
    display: block;
}
.overlay ul li a {
    color: #fff;
    text-decoration: none;
}

.nav-list-item-center a:hover {
    text-decoration: line-through;
    text-decoration-color: #328EE3;
}




