

#menuBar {
    position: fixed;
    width: 100%;
    height: 50px; /* nav-bar height */
    top: 0;
    left: 0;
}

nav {
    position: fixed;
    width: 100%;
    height: 50px; /* nav-bar height */
    top: 0;
    left: 0;
    background-color: #888;
    border-bottom-color: black;
    opacity: 1;
}

#avatar {
    position: fixed;
    right: 65px;
    top: 5px; /* nav-bar height 50 - 40, half */
    padding: 0px;
    width: 40px;
    height: 40px;
    vertical-align: middle;
    horizontal-align: middle;
    display: block
    color: rgba(0, 0, 0, 0);
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(0, 0, 0, 0);
    border-radius: 50%;
  /*
    color: rgb(226, 226, 226);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 14px;*/
}

.burger {
    position: fixed;
    top: 5px;
    right: 5px;
    padding: 5px; /* nav-bar height 50 */
    vertical-align: middle;
    horizontal-align: middle;
    display: block;
    cursor: pointer;
}

.burger div {
    background-color: rgb(226, 226, 226);
    width: 25px;
    height: 3px;
    margin: 5px;
    transition: all 0.2s ease;
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

.list-group .list-group-flush {
    top: 400px;
}


@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slidingMenu {
    background-color: rgba(127, 127, 127, 0.5);
    position: fixed;
    right: 0px;
    top: 50px; /* nav-bar height 50 */
    width: 200px;
    height: 100vh;
    display: flex;
    z-index: 1; /* Sit on top */
    flex-direction: column;
    align-items: bottom;
    text-align: right;
    justify-content: stretch;
    transform: translateX(100%);
}

.slidingMenu-top-space {
    margin-top: 50px; /* to breathing room */
}

.slidingMenu-top-space2 {
    margin-top: 200px; /* separation between apps and legals */
}

.slidingMenu li {
    list-style: none;
    opacity: 0; /* for smooth animation */
    padding: 10px;
    margin: 5px;
    line-height: 20px;/*Add this*/
}

.slidingMenu a {
    text-decoration: none;
/*
    letter-spacing: 4px;
*/
    font-weight: bold;
}

.slidingMenu-active {
    transform: translateX(0%);
}

.slidingMenu-general {
    color:#eee;
    font-size:22px;
}

.slidingMenu-legals {
    color:#ccc;
    font-size:16px;
}
