#fullMenu {
    display: none;
    opacity: 0;
    position: absolute;
    left: 50px;
    top: 50px;
    z-index: 110;
    background-color: white;
    overflow: hidden;
    background-color: #80808F;
    font: 400 13px/20px 'Roboto','Helvetica Neue',Helvetica,sans-serif;
}

.menuColumn {
    float: left;
    margin-left: 30px;
    margin-top: -30px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.menuItemGroup {
    margin-top: -6px;
}

.submenuHeader {
    width: 260px;
    height: 90px;
    line-height: 2em;
    font-size: 1.5em;
    background-color: #80808F;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-left: 10px;
    margin-top: 6px;
    margin-bottom: 6px;
}

.submenuItem1 {
    width: 270px;
    height: 90px;
    padding: 0px;
    vertical-align: middle;
    position: relative;
    margin: 6px 3px;
}

#fullMenuDisplay {
    display: flex;
    justify-content: space-between;
}

#menuIcon {
    background-image: url("../images/icons/menu.png");
    background-repeat: no-repeat;
    display: block;
    height: 50px;
    width: 50px;
    background-position: -75px 1px;
}

body:not(.isMobile) #fullMenuDisplay:hover > #menuIcon {
    background-position: -18px 1px;
}

#currentMenu {
    color: grey;
    line-height: 50px;
    font-size: 20px;
    margin-top: 2px;
    padding: 0 10px;
    white-space: nowrap;
}

body:not(.isMobile) #fullMenuDisplay:hover > #currentMenu {
    color: #4A4A4A;
}
