.hamburger-menu {
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 22px;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    margin: 4px 0;
    background-color: inherit;
    transition: 0.4s;
}

.hamburger-menu.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-menu.open span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.menu-list {
    display: none;
    list-style-type: none;
    padding: 1em;
    margin: 0;
    
}

.menu-list a {
    text-decoration: none;
    color: #333;
    padding: .6em 0;
    display: block;
}

ul.menu-list.menu-active {
    position: absolute;
    width: 100%;
	max-height:80svh;
    z-index: 10000;
    left: 0;
    text-align: center;
    display: block;
	overflow-y: scroll;
}

.hamburger-container[style*="text-align: left"] ul.menu-list.menu-active{
    text-align: left;
}

.hamburger-container[style*="text-align: right"] ul.menu-list.menu-active{
    text-align: right;
}

.hamburger-container[style*="text-align: center"] ul.menu-list.menu-active{
    text-align: center;
}