#menu_wrapper_portrait {
    display: none;

    position: absolute;
    top: var(--height-top-bar);
    bottom: var(--height-bottom-bar);
    left: 0;
    right: 0px;

    z-index: 20;
    background: white;

    flex-direction: column;
    justify-content: end;

    background: white;

    overflow: auto;
}





#menu_wrapper_landscape {
    position: absolute;
    top: var(--height-top-bar);
    height: var(--height-menu-landscape-bar);
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    /* background: #7bac7f; */
    padding: 0px;
}
.portrait div#menu_wrapper_landscape {
    display: none;
}





.menu_item {
    width: fit-content;
    display: flex !important;
    justify-content: center;
    align-items: center;
    height: 80%;
    border-radius: 2px;
    padding: 2px 5px;
    background: #f9c671 !important;
    min-height: 32px;
    max-height: 40px;
    padding: 10px !important;
    min-width: 75px;
}
.menu_item_landscape.menu_item {
    border: 0px solid darkgrey;
    margin: auto 2px;
}
.menu_item_portrait.menu_item {
    /* width: fit-content; */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    border: 0px solid grey;
    width: 75%;
    min-width: 200px;
}





.landscape #menu_wrapper_portrait {
	display: none !important;
}





#menu-trigger {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 40px;
    width: 40px;
    z-index: 20;
    background: #ff6500;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
	border: none;
}
.landscape #menu-trigger {
	display: none;
}





#menu-trigger.menu_open .line1 {
	transform: rotate(90deg) translate(37%, 300%);
}

#menu-trigger.menu_open .line2 {
	transform: rotate(90deg);
}

#menu-trigger.menu_open .line3 {
	transform: rotate(90deg) translate(-37%, -300%);
}





.burger-line {
	width: 75%;
	height: 4px;
	background-color: black;
	/* position: absolute; */
	transition: transform 0.3s ease, top 0.3s ease;
}
.burger-line.clickable {
    border: none;
    background: black;
}









