.mobileHeader { height:50px; padding-right:0; overflow:hidden}
.mobileHeader {
    display: none;
    max-height: 100%;
    background-color: #000 !important;
}
.mobileHeader {
    position: fixed;
    top: 0;
    z-index: 10;
    height: 55px;
    width: 100%;
    transition: all .3s;
    /*transform: translateY(12px);*/
    background-color: hsla(0,0%,100%,0);
    padding: 9px 14px 9px 28px;
    overflow: visible;
}
.mobileHeaderContainer { display:flex; height:40px}
.mobileLogo {width:100%; margin-right:20px}
    .mobileLogo:focus {
        outline-color: yellowgreen !important;
    }

.mobileMenu {width: 30px; margin-left:0px; margin-top:4px}

.mobileMenu:focus {
    outline-color: white !important;
    outline-offset: 4px;
}

#mobileMenuItems {
    position: fixed;
    z-index: 50;
    top: 60px;
    max-height: calc(100vh - 60px);
    right: 0px;
    background: black;
    padding: 10px;
    overflow-y: auto;
}
.mobileMenuItem {
    display: block;
    padding: 6px;
    font-size: larger;
    text-transform: uppercase;
    font-weight: bold;
    color: #999;
}
@media screen and (min-width: 800px) {
    #mobileMenuItems { visibility: hidden; }
}

@media (max-width: 799px) {
    #header {
        display: none;
    }

    .mobileHeader {
        display: block;
    }
}
