﻿#menuButton {
    position: fixed;
    z-index: 9000;
    left: 4px;
    top: 4px;
    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: #000;
    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: fixed;
    top: 0px;
    left: 0px;
    z-index: 900;
    background-color: #333333FF;
    height: 100%;
    width: 100%;
    transition: height 3s;
    display: none;
}


#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;
    font-size: 24px;
    padding: 16px 16px;
    line-height: 2px;
    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: 0px;
    width: 100%;
    height: 100%;
    background-color: #00ff0000;
}

#navMenuFooter {
    position: relative;
    top: 14px;
    height: 40px;
    width: 100%;
    text-align: center;
    background-color: #ffff0000;
}

#navMenuFooter a {
    padding-left: 5px;
    padding-right: 5px;
}

#navMenuFooter img {
    height: 28px;
}

#navMenuFooter img:hover {
    background-color: #60B2F5FF;
    height: 32px;
    transition: .3s ease-in-out;
}

/*  
    Slider Switch 
*/
.colorswitcher {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 9000;
    display: block;
    width: 40px;
    height: 28px;
}

.colorswitcher input {
    opacity: 0;
    width: 0;
    height: 0;
}

.colorslider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*  INSIDE SWITCH WHEN OFF OR DEFAULT   */
    background-color: #000000FF;
    -webkit-transition: .4s;
    transition: .4s;
}

.colorslider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 6px;
    /*  SWITCH BALL    */
    background-color: #FFFFFFFF;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.colorslider {
    /*    INSIDE WHEN SELECTED    */
    background-color: #2196F3BF;
}

input:focus+.colorslider {
    box-shadow: 0 0 1px #2196F3FF;
}

input:checked+.colorslider:before {
    /*    ADJUST WHEN SIZE ABOVE IS CHANGED   */
    left: -6px;
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.colorslider.round {
    border-radius: 34px;
}

.colorslider.round:before {
    border-radius: 50%;
}

.dayMode {
    position: fixed;
    top: 8px;
    right: 8px;
    z-index: 9000;
    display: inline-block;
    cursor: pointer;
}