.waytech-mobile-menu-container {
    position: fixed;
    pointer-events: none;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    background-color: rgba(0,0,0,0);
    z-index: 10000;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -o-transition: all 0.6s;
    -ms-transition: all 0.6s;
    transition: all 0.6s;
}
.waytech-mobile-menu-container.active {
    pointer-events: auto;
    background-color: rgba(0,0,0,0.75);
}
.waytech-mobile-menu-container > .wrap {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    -webkit-transition: all 0.6s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    -moz-transition: all 0.6s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    -o-transition: all 0.6s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    -ms-transition: all 0.6s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    transition: all 0.6s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -ms-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
    -ms-transform: translatex(100%);
    -moz-transform: translatex(100%);
    -o-transform: translatex(100%);
    -webkit-transform: translatex(100%);
    transform: translatex(100%);
}
.waytech-mobile-menu-container.active > .wrap {
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.5s;
    -ms-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.2s;
    -ms-transform: translatex(0);
    -moz-transform: translatex(0);
    -o-transform: translatex(0);
    -webkit-transform: translatex(0);
    transform: translatex(0);
}
.waytech-mobile-menu-container #waytech-mobile-menu {
    position: absolute;
    top: 0;
    left: 50px;
    width: calc(100% - 50px);
    height: 100%;
    background-color: #FFF;
    box-shadow: 0 -2px 15px rgba(0,0,0,1);
    overflow-y: auto;
    z-index: 0;
}
.waytech-mobile-menu-container #waytech-mobile-menu > ul > li.menu-item > a {
    display: block;
    color: #303030;
    padding: 0 15px;
    line-height: 50px;
    text-transform: uppercase;
    border-bottom: 1px solid #eaeaea;
    position: relative;
}
.waytech-mobile-menu-container #waytech-mobile-menu > ul > li.menu-item-has-children > a:after {
    content: "\f0d7";
    color: #999;
    position: absolute;
    right: 15px;
    top: 17px;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.waytech-mobile-menu-container #waytech-mobile-menu > ul > li > ul.sub-menu {
    display: none;
}
.waytech-mobile-menu-container #waytech-mobile-menu > ul > li > ul.sub-menu > li.menu-item > a {
    padding-left: 30px;
    text-transform: none;
    background-color: #ddd;
}
.waytech-mobile-menu-button {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    padding: 5px;
    z-index: 10001;
    pointer-events: none;
    -webkit-transition: all 0.6s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    -moz-transition: all 0.6s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    -o-transition: all 0.6s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    -ms-transition: all 0.6s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    transition: all 0.6s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.5s;
    -ms-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.2s;
    -ms-transform: translatex( calc(100% - 50px) );
    -moz-transform: translatex( calc(100% - 50px) );
    -o-transform: translatex( calc(100% - 50px) );
    -webkit-transform: translatex( calc(100% - 50px) );
    transform: translatex( calc(100% - 50px) );
}
.waytech-mobile-menu-button.active {
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -ms-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
    -ms-transform: translatex(0);
    -moz-transform: translatex(0);
    -o-transform: translatex(0);
    -webkit-transform: translatex(0);
    transform: translatex(0);
}
.waytech-mobile-menu-button > .wrap {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 2px;
    cursor: pointer;
    background-color: rgba(255,255,255,0);
    pointer-events: auto;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -o-transition: all 0.6s;
    -ms-transition: all 0.6s;
    transition: all 0.6s;
}
.waytech-mobile-menu-button.active > .wrap {
    background-color: rgba(255,255,255,0.5);
}
.waytech-mobile-menu-button .line {
    width: 20px;
    border-top: 2px solid #aaa;
    display: inline-block;
    position: absolute;
    top: 19px;
    left: 10px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transition-delay: 0.6s;
    -moz-transition-delay: 0.6s;
    -ms-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
}
.waytech-mobile-menu-button.active .line {
    border-top-color: #fff;
}
.waytech-mobile-menu-button > .wrap > .line:first-child {
     top: 12px;
 }
.waytech-mobile-menu-button > .wrap > .line:last-child {
    top: 26px;
}
.waytech-mobile-menu-button.active > .wrap > .line:first-child {
    top: 18px;
    -webkit-transform: rotatez(45deg);
    -moz-transform: rotatez(45deg);
    -ms-transform: rotatez(45deg);
    -o-transform: rotatez(45deg);
    transform: rotatez(45deg);
}
.waytech-mobile-menu-button.active > .wrap > .line:nth-child(2) {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}
.waytech-mobile-menu-button.active > .wrap > .line:last-child {
    top: 18px;
    -webkit-transform: rotatez(-45deg);
    -moz-transform: rotatez(-45deg);
    -ms-transform: rotatez(-45deg);
    -o-transform: rotatez(-45deg);
    transform: rotatez(-45deg);
}

/** == SMALL (SM) >= 576px == **/
@media (min-width: 576px) {
    .waytech-mobile-menu-container.active > .wrap {
        -ms-transform: translatex(30%);
        -moz-transform: translatex(30%);
        -o-transform: translatex(30%);
        -webkit-transform: translatex(30%);
        transform: translatex(30%);
    }
    .waytech-mobile-menu-button.active {
        -ms-transform: translatex(30%);
        -moz-transform: translatex(30%);
        -o-transform: translatex(30%);
        -webkit-transform: translatex(30%);
        transform: translatex(30%);
    }
    .waytech-mobile-menu-container #waytech-mobile-menu {
        width: calc(70% - 50px);
    }
}
@media (min-width: 768px) {
    .waytech-mobile-menu-container.active > .wrap {
        -ms-transform: translatex(50%);
        -moz-transform: translatex(50%);
        -o-transform: translatex(50%);
        -webkit-transform: translatex(50%);
        transform: translatex(50%);
    }
    .waytech-mobile-menu-button.active {
        -ms-transform: translatex(50%);
        -moz-transform: translatex(50%);
        -o-transform: translatex(50%);
        -webkit-transform: translatex(50%);
        transform: translatex(50%);
    }
    .waytech-mobile-menu-container #waytech-mobile-menu {
        width: calc(50% - 50px);
    }
}