.menuContainer{
    max-width: 100% !important;
}
.menuOpenButtonImage{
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}
.menuOpenButton.active{
left:min(400px, calc(100% - 65px)) !important;
}
.menuTop{
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}
.menuTopText > div{
    font-family: var(--fontSerif) !important;
    font-weight: 700 !important;
    color: #fff !important;
    font-size: 1.25rem !important;
    padding: 2rem !important;
    overflow: hidden;
    /* padding: 5vw 2rem 2rem 1rem !important; */
}
.menuTopText > div span {
    display: block;
    font-weight: 400;
}
.menuBottom{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    background-color: #00000010 !important;
}
.menuBottom > div{
    position: relative !important;
    top:0 !important;
    left: 0 !important;
    margin: 0 5px;
}

.menuItem{
    cursor: pointer !important;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    padding: 0 27px;
    box-sizing: border-box;
}
.menuItem > div{
    position: relative !important;
}
.menuItem *{
    pointer-events: none !important;
    user-select: none !important;
}


.menuItemText{
    flex:1;
    padding: 0 10px;
    box-sizing: border-box;
}
.menuItemText > div{
    white-space: normal !important;
}
.menuItemText > div i{
    display: none;
}

.menuItem.active .menuItemText > div{
    font-weight: 600 !important;
}


.menuItemImage{
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 0 2px #ffffffa0;
    transition: all 0.3s ease-in-out;
    filter: grayscale(90%) brightness(1.5) contrast(0.6);
}
.menuItemImage.colored{
    filter: none;
}
body.hasHover .menuItemImage.hover{
    box-shadow: 0 0 0 5px #ffffff80;
}

.menuItemImage > img{
    transition: all 0.3s ease-in-out;
}

body.hasHover .menuItemImage.hover > img{
    transform: scale(110%);
}