#navtoggle{
    top: 0;
    position: fixed;
    width: 100%;
    z-index: 5;
    border-bottom: 2px dashed white;
}

.dropdown {
    padding:1em 1em 0 1em;
    background: #ffd495;
    display:block;
    color:#222;
}

.nav-toggle {
    -webkit-appearance: none;
    background: #d3af7b;
    text-transform:uppercase;
    font-size:1em;
    padding:.5em;
    border:none;
    outline:none;
    transition: all 0.2s;
    cursor:pointer;
}

.nav-toggle:hover {
    background:#222;
    color: #969eff;
}

.nav-toggle:focus, .menu a:focus {
    outline:1px double #bb001b;
}


#toggleMenu{
    background-color: #ffd495;
    width: 100%;
    height: 100%;
}
.menu {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    list-style:none;
    padding:0;
    margin:1em 0 0 0;
    transition: all 0.8s cubic-bezier(.15,.7,0,1);
}

.menu a {
    text-align: center;
    display:block;
    background:#222;
    padding:.5em .5em;
    outline:none;
    margin-bottom:.2em;
    color:turquoise;!important;
    text-decoration:none;
    transition: all 0.2s;
}
.menu span{
    color:turquoise;!important;
    text-decoration: Highlight;
    transition: all 0.2s;
}
.toggleButton{
    position: fixed;
    right: 15px;
    top: 5px;
    width: 80px;
    height: 50px;
    border: 1px solid #1a7bba;
    cursor: pointer;
    -webkit-transition: all 0.1s ease-in-out, color 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out, color 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out, color 0.1s ease-in-out;
    transition: all 0.1s ease-in-out, color 0.1s ease-in-out;
    -webkit-font-smoothing: antialiased;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    border-radius: 4px;
    font-size: 8px;
    font-weight: 500;
}

.menu a:hover {
    background:#fff;
    color:#222;
}

.js .menu {
    overflow: hidden;
    max-height: 0;
}

.js .menu-active {
    max-height:12em;
    padding-bottom:13em;
}
.hidden {
    display: none;
}