/*
JQuery Simple MobileMenu
https://github.com/Position2/jQuery-Simple-MobileMenu
*/
/*Main style*/
body.mmactive {
    overflow: hidden;
}
.mobile_menu {
    display: none;
    position: relative;
}
.sm_menu_outer.active .mobile_menu {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    height: 100%;
}
.sm_menu_outer {
    overflow-y: scroll;
    overflow-x: hidden;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: -9;
    width: 100%;
    top: 56px;
    /*height: calc(100vh - 56px);*/
    opacity: 0;
    background-color: #FFF;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
    box-shadow: inset 1px 5px 8px -5px rgba(0,0,0,.5);
}
.sm_menu_outer.active {
    opacity: 1;
    z-index: 999;
}
.sm_menu_outer .mobile_menu a {
    font-size: 14px;
    color: #000;
    display: block;
    padding: 20px 50px;
    text-transform: uppercase;
    text-decoration: none;
}
.sm_menu_outer .mobile_menu .back a {
    font-weight: 900;
    background: url(/App_Themes/images/bgArrowLeft.png) no-repeat;
    background-position-y: center;
    background-position-x: 15px;
}
.sm_menu_outer .mobile_menu span {
    width: 28px;
    height: 64px;
    display: block;
    float: right;
    background: url(/App_Themes/images/bgArrowRight.png) no-repeat left center;
}
/*Sub Menu Animation */
.sm_menu_outer .mobile_menu .submenu {
    background: #FFF;
    height: 100%;
    position: absolute;
    padding: 0;
    margin: 0;
    right: -100%;
    top: 0;
    transition: all 0.5s ease 0s;
    width: 100%;
    z-index: 999;
    box-shadow: inset 1px 5px 8px -5px rgba(0,0,0,.5);
}
.sm_menu_outer .mobile_menu li.active>.submenu {
    right: 0;
}
.sm_menu_outer .mobile_menu li {
    list-style-type: none;
    color: #000;
    clear: both;
}
.sm_menu_outer .mobile_menu li:last-of-type {
    margin-top: auto;
}
.sm_menu_outer .mobile_menu > li:last-of-type a {
    color: #FFF;
    background-color: #f678dc;
}
.sm_menu_outer .mobile_menu > li:last-of-type li a {
    color: #000;
    background-color: transparent;
}
/*Hamburger Animation */
#sm_menu_ham {
    cursor: pointer;
    height: 25px;
    position: fixed;
    right: 5px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    width: 30px;
    top: 15px;
    right: 15px;
    z-index: 999;
}
#sm_menu_ham span {
    background-color: #000;
    border-radius: 5px;
    display: block;
    height: 2px;
    left: 0;
    opacity: 1;
    position: absolute;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.25s ease-in-out 0s;
    -moz-transition: all 0.25s ease-in-out 0s;
    -o-transition: all 0.25s ease-in-out 0s;
    transition: all 0.25s ease-in-out 0s;
    width: 30px;
}
#sm_menu_ham span:nth-child(1) {
    top: 0;
}
#sm_menu_ham span:nth-child(2),
#sm_menu_ham span:nth-child(3) {
    top: 10px;
}
#sm_menu_ham span:nth-child(4) {
    top: 20px;
}
.mmactive #sm_menu_ham span:nth-child(1) {
    left: 50%;
    top: 18px;
    width: 0;
}
.mmactive #sm_menu_ham span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}
.mmactive #sm_menu_ham span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.mmactive #sm_menu_ham span:nth-child(4) {
    left: 50%;
    top: 18px;
    width: 0;
}
/* MENU BOTTOM */
.menuBot {
    padding: 20px 50px 20px;
    margin-top: -3px;
    background: #000;
}
.sm_menu_outer .mobile_menu .mobileBot a {
    color: #FFF;
    padding: 20px 0;
}
.mobileSearch input[type="search"] {
    width: 86%;
    display: inline-block;
}
.mobileSearch .btn {
    padding: 0;
    background: none;
    border: none;
    font-size: 0;
}
.mobileSearch .btn {
    display: inline-block;
}
.mobileSearch .btn:before {
    content: '\f002';
    font-family: "Font Awesome 5 Free";
    font-size: 21px;
    font-weight: 900;
}
.sm_menu_outer .mobile_menu .mobileBot a.login, .sm_menu_outer .mobile_menu .mobileBot a.login:hover {
    text-align: center;
    padding: 20px;
}
.sm_menu_outer .mobile_menu .mobileBot .headWelcome a.login, .sm_menu_outer .mobile_menu .mobileBot .headWelcome a.login:hover {
    text-align: left;
    padding: 20px 0;
    background: none;
}
.sm_menu_outer .mobile_menu .mobileLogin span {
    text-transform: uppercase;
    width: auto;
    height: auto;
    float: none;
    padding: 20px 0;
    background: none;
}
.sm_menu_outer .mobile_menu .mobileBot a.login, .sm_menu_outer .mobile_menu .mobileBot a.login:hover {
    text-align: center;
    padding: 20px;
}
.sm_menu_outer .mobile_menu .mobileBot .headWelcome a.login, .sm_menu_outer .mobile_menu .mobileBot .headWelcome a.login:hover {
    text-align: left;
    padding: 20px 0;
    background: none;
}
.login-text {
    text-transform: uppercase;
    display: inline-block;
    margin-right: 1rem;
}
.mobileLogin .login-text {
    display: none;
}
@media (min-width: 992px) {
    #sm_menu_ham,
    .sm_menu_outer {
        display: none;
    }
}