/* push menu */

.pushmenu {
    /*this is the nav*/
    background: #ffc90a;
    font-family: 'ralewaybold', Arial, Helvetics, sans-serif;
    width: 50vw;
    height: 100%;
    top: 0;
    z-index: 999999;
    position: fixed;
}
.pushmenu ul {
    padding: 0;
    margin: 0;
}
.pushmenu ul.sub-menu li a {
    margin: 0;
    padding-left: 60px;
}
.pushmenu li {
    list-style: none;
}
.pushmenu h3 {
    display: block;
    color: #000;
    font-size: 32px;
    line-height: 32px;
    font-weight: 100;
    padding: 16px 0 16px 20px;
    margin: 0;
    background: #ffc90a;
    font-family: 'ralewaybold', Arial, Helvetica, sans-serif;
    border-bottom: 1px solid #000;
}
.pushmenu li a {
    display: block;
    /* drops the nav vertically*/
    color: #000;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    padding: 15px 20px;
    border-bottom: 1px solid #000;
}
.sub-menu li a {
    display: block;
    /* drops the nav vertically*/
    color: #000;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    padding: 15px 20px;
    border-bottom: 1px dotted #000;
}
#menu-main-menu a:hover {
    background: #fff;
    color: #000;
}
#menu-main-menu a:active {
    background: #fff;
    color: #000;
}
.pushmenu-left {
    right: -50vw;
}
.pushmenu-left.pushmenu-open {
    right: 0;
    overflow: scroll;
}
.pushmenu-push {
    overflow-x: hidden;
    position: relative;
    right: 0;
}
.pushmenu-push-toright {
    right: 50vw;
}

/*Transition*/

.pushmenu,
.pushmenu-push {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#nav_list {
    background: #ffc90a;
    color: #000;
    cursor: pointer;
    padding: 10px;
}
nav-list.active {
    background-position: -33px top;
}
.buttonset {
    position: fixed;
    z-index: 999999;
    top: 14px;
    right: 14px;
    height: 44px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.buttonset.active {
    right: -55px;
}
.close {
    position: absolute;
    top: 18px;
    right: 16px;
    font-size: 48px;
    color: #000;
}

/* Transition Response */

@media (max-width: 567px) {
    .pushmenu-left {
        right: -85vw;
    }
    .pushmenu {
        width: 85vw;
    }
    .pushmenu-push-toright {
        right: 85vw;
    }
}