/* Mobile menu */
#menuwrap {
    overflow: hidden;
    position: absolute;
    width: 80px;
    height: 80px;
    z-index: 99;
    top: 0;
    right: 0;
    font-family: "john-doe", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 2em;
}
#mobmenu {
    width: 50px;
    height: 50px;
    background-color: #000;
    border-radius: 100%;
    position: absolute;
    right: 15px;
    top: 15px;
    opacity: 0.9;
}
#mobmenu img {
    cursor: pointer;
}
#menuClose {
    border-radius: 100%;
    width: 50px;
    height: 50px;
    background-color: #000;
    display: none;
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
}
ul#menuItems {
    width: 90%;
    position: absolute;
    right: 0;
    top: 50px;
    display: none;
}
#menuItems li {
    display: none;
    list-style: none;
    text-align: right;
    width: 90%;
    padding-right: 20px;
    font-size: 1.5em;
}
#menuItems li a {
    display: block;
    text-decoration: none;
    color: #fff;
}
#menuItems li a:hover {
    color: #128DCE;
}
/* Mobile (Small Portrait) */
@media only screen and (max-width: 480px) {
    #menuItems li {
        font-size: 1.25em;
        line-height: 1em;
        border-bottom: dotted #fff 2px;
        margin-bottom: 10px;
    }
    #menuItems li a:hover {
        border-bottom-color: #128DCE;
    }
}