.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);
}
@media (max-width: 992px) {
    #waytech-mobile-menu {
        display: none;
    }
}
.waytech-mobile-menu-container #waytech-mobile-menu {
    display: block;
    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.menu > li.menu-item > a {
    display: block;
    color: #303030;
    padding: 0 15px;
    line-height: 50px;
    text-transform: uppercase;
    border-bottom: 1px solid #eaeaea;
}
.waytech-mobile-menu-container ul.sub-menu {
    display: none;
}
.waytech-mobile-menu-container .sub-menu > li.menu-item > a {
    color: #FFF;
    padding: 15px 15px 15px 30px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    display: block;
    background-color: rgba(0, 0, 0, 0.35);
}
.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);
}
.waytech-mobile-menu-container .menu-item-has-children {
    position: relative;
}
.waytech-mobile-menu-container .sub-menu-toggle-button {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    z-index: 1;
    cursor: pointer;
}
.waytech-mobile-menu-container .sub-menu-toggle-button:after {
    content: "\f0d7";
    color: rgba(0, 0, 0, 0.45);
    display: inline-block;
    font-family: "Font Awesome 5 Pro";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-weight: 900;
    line-height: 1;
}

/** == 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);
    }
}
@media (min-width: 992px) {
    #waytech-mobile-menu ul.menu {
        font-size: 0;
    }
    #waytech-mobile-menu ul.menu > li {
        font-size: 1.4rem;
        display: inline-block;
        position: relative;
    }
    #waytech-mobile-menu ul.menu > li > a {
        display: inline-block;
    }
    #waytech-mobile-menu ul.menu > li.menu-item-has-children:before {
        content: "\f0d7";
        color: rgba(0, 0, 0, 0.45);
        display: inline-block;
        font-family: "Font Awesome 5 Pro";
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        display: inline-block;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        font-weight: 900;
        line-height: 1;
        position: absolute;
        right: 5px;
        top: 50%;
        -webkit-transform: translateY(-6px);
        -moz-transform: translateY(-6px);
        -ms-transform: translateY(-6px);
        -o-transform: translateY(-6px);
        transform: translateY(-6px);
    }
    #waytech-mobile-menu ul.menu > li > ul.sub-menu {
        position: absolute;
        top: 99%;
        left: 0;
        z-index: 1;
        min-width: 320px;
        pointer-events: none;
        opacity: 0;
        -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-transform: translateY(15px);
        -moz-transform: translateY(15px);
        -ms-transform: translateY(15px);
        -o-transform: translateY(15px);
        transform: translateY(15px);
    }
    #waytech-mobile-menu ul.menu > li:hover > ul.sub-menu {
        pointer-events: auto;
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}