﻿#menuButton {
    position: fixed;
    z-index: 999;
    left: 10px;
    top: 10px;
    width: 36px;
    height: 32px;
    background: transparent;
    border-radius: 4px;
    border-style: solid;
    border-color: black;
    border-width: 0px;
}

#menuButtonContainer {
    position: absolute;
    top: -24px;
    left: -25px;
    width: 24px;
    height: 24px;
    background-color: transparent; 
    display: inline-block;
    cursor: pointer;
    margin: 1.7em;
    -webkit-transition: all .5s;
    transition: all .5s;
    text-align: left;
}

#menuTop,
#menuMiddle,
#menuBottom {
    background-color: #48b3fb;
    position: absolute;
    height: 2px;
    width: 24px;
    border-radius: 3px;
    -webkit-transition: all .5s;
    transition: all .5s;
}

#menuTop {
    top: 0px;
}

#menuMiddle {
    top: 8px;
}

#menuBottom {
    top: 16px;
}

#menuButtonCheck {
    display: none;
}

#menuButtonCheck:checked+#menuButtonContainer #menuTop {
    /* TOP, BEGIN TRANSITION */
    top: 8px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: top .2s, -webkit-transform .2s .2s;
    transition: top .2s, -webkit-transform .2s .2s;
    transition: top .2s, transform .2s .2s;
    transition: top .2s, transform .2s .2s, -webkit-transform .2s .2s;
}

#menuButtonCheck+#menuButtonContainer #menuTop {
    /* TOP LINE RESTORE */
    -webkit-transition: top .2s .2s, -webkit-transform .2s;
    transition: top .2s .2s, -webkit-transform .2s;
    transition: top .2s .2s, transform .2s;
    transition: top .2s .2s, transform .2s, -webkit-transform .2s;
}


#menuButtonCheck:checked+#menuButtonContainer #menuMiddle,
#menuButtonCheck:checked+#menuButtonContainer #menuBottom {
    /* MIDDLE, BOTTOM, BEGIN TRANSITION */
    top: 8px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: top .2s, -webkit-transform .2s .2s;
    transition: top .2s, -webkit-transform .2s .2s;
    transition: top .2s, transform .2s .2s;
    transition: top .2s, transform .2s .2s, -webkit-transform .2s .2s;
}

#menuButtonCheck+#menuButtonContainer #menuMiddle,
#menuButtonCheck+#menuButtonContainer #menuBottom {
    /* MIDDLE, BOTTOM LINE RESTORE */
    -webkit-transition: top .2s .2s, -webkit-transform .2s;
    transition: top .2s .2s, -webkit-transform .2s;
    transition: top .2s .2s, transform .2s;
    transition: top .2s .2s, transform .2s, -webkit-transform .2s;
}

#navMenu {
    position: absolute;
    z-index: 799;
    display: block;
    top: 0px;
    left: 0px;
    background-color: transparent;
    width: 100%;
}

#navMenu li {
    float: none;
    display: inline;
}

#navMenu ul {
    position: relative;
    top: 34px;
    left: 0px;
    margin: 0px;
    padding: 0px;
    border: 0px;
}

#navMenu li a {
    display: block;
    text-align: center;
    color: #FFFFFFFF;
    text-decoration: none;
    transition: .3s;
    padding: 16px 16px;
    margin-left: 0px;
}

#navMenu li a:hover {
    background-color: #48b3fb;
    font-size: 28px;
    transition: .3s ease-in-out;
}

#navMenu li .menuSelected {
    font-weight: bold;
    font-style: italic;
    color: #FFFFFFFF;
    letter-spacing: 2px;
    cursor: default;
}

#navMenu .menuSelected {
    color: #48b3fb !important;
}

