/*

Theme Name: tequos

*/

.menuButton {
    display: block;
    height: 40px;
    width: 40px;
    background: #005FA8;
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 10;
}

.menuButton div {
    height: 2px;
    width: 60%;
    background: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.menuButton div:nth-of-type(1) {
    transform: translate(-50%, -8px);
}

.menuButton div:nth-of-type(3) {
    transform: translate(-50%, 8px);
}

.menuButton.active div:nth-of-type(1) {
    transform: rotate(45deg) translate(-50%, 0);
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
}

.menuButton.active div:nth-of-type(2) {
    display: none;
}

.menuButton.active div:nth-of-type(3) {
    transform: rotate(-45deg) translate(-50%, 0);
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
}

#sp_nav {
    position: relative;
    transition: all .25s;
    top: 66px;
}

#sp_nav.active {
    opacity: 1;
}

.sp_menu {
    position: absolute;
    top: 63px;
    right: 0;
    /* background: #f8f8f8; */
    width: 100vw;
    height: 100vh;
    z-index: 9;
    transform: translateX(100vw);
    transition: all .25s;
    padding: 0 0;
    overflow-y: scroll;
}

.sp_menu.open {
    transform: translateX(0);
    transition: all .25s;
}

.sp_menu li a:nth-last-child() {
    border-top: none;
    display: block;
}

.sp_menu li a {
    background: #C02020;
    padding: 20px 10px;
    border-top: 1px solid #f5f5f5;
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    display: block;
}

#close.hide {
    transform: translateX(-75vw);
    transition: all .25s;
}
.sp_logo_area {
    display: inline-block;
    width: 10.2vw;
    min-width: 60px;
}
.sp_logo_area img {
    width: 100%;
    max-width: 100%;
}
.sp_logo img {
    width: 100%;
    max-width: 100%;
}
