﻿#menuButton {
    position: fixed;
    z-index: 999;
    left: 6px;
    top: 8px;
    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: #fca502;
    position: fixed;
    height: 2px;
    width: 24px;
    border-radius: 3px;
    
}

#menuTop {
    top: 14px;
}

#menuMiddle {
    top: 22px;
}

#menuBottom {
    top: 30px;
}

#menuButtonCheck {
    display: none;
}

#menuButtonCheck:checked+#menuButtonContainer #menuTop {
    /* TOP, BEGIN TRANSITION */
    top: 22px;
    -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: 22px;
    -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: 850;
    display: block;
    top: -1000px;
    left: 0px;
    background-color: #fff;
    width: 60%;
    margin-left: 20%;
    height: 520px;
    border-style: solid;
    border-color: #ffa500;
    border-style: solid 2px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

#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: #000000FF;
    text-decoration: none;
    transition: .3s;
    padding: 16px 16px;
    margin-left: 0px;
}

#navMenu li a:hover {
    background-color: #60B2F5FF;
    font-size: 28px;
    transition: .3s ease-in-out;
}

#navMenu li .menuTitle {
    font-weight: bold;
    font-style: italic;
    color: #FFFFFFFF;
    letter-spacing: 2px;
    cursor: default;
}

#navMenu .menuTitle {
    color: #48BBF9FF !important;
}

#navMenuContent {
    position: relative;
    top: 75px;
}
