body.mmactive {
    overflow: hidden;
}

.mobile_menu {
    display: none;
    position: relative;
}

.sm_menu_outer.active .mobile_menu {
    display: block;
    margin: 0 0 100px 0px;
    padding:0px 0px 0px;
    min-height: 100%;
}


.sm_menu_outer {
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    position: fixed;
    right: 0;
    bottom: 0;
    top: 0;
    padding-top: 0px;
    z-index: -9;
    width: 100%;
    opacity: 0;
    background-color: #ffffff;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

    .sm_menu_outer.active {
        opacity: 1;
        z-index: 9992;
    }

    .sm_menu_outer .mobile_menu li.back a {
        padding: 8px 5px 8px 25px;
        background: url(../images/icon_left.svg) no-repeat scroll 0px center / 10px auto;
        color: black;
        font-size: 19px;
        line-height: 19px;
    }

    .sm_menu_outer .mobile_menu a {
        color: #002575;
        display: block;
        font-size: 18px;
        font-weight: normal;
        padding: 8px 0px;
        text-decoration: none;
    }

    /*Sub Menu anim */
    .sm_menu_outer.slide .mobile_menu .submenu {
        background-color: #ffffff;
        height: 100%;
        position: absolute;
        right: -100%;
        top: 0;
        transition: all 0.5s ease 0s;
        width: 100%;
        z-index: 99999;
        padding: 80px 30px 0;
    }

    .sm_menu_outer.slide .mobile_menu li.active > .submenu {
        right: 0;
    }

    .sm_menu_outer .mobile_menu li {
        list-style-type: none;
        border-bottom: 1px solid rgb(212 212 212);
        padding: 0px 30px;
        /*border-image: linear-gradient(to right, rgb(240 239 244 / 0%) 0%, #ffffff 20%, #ffffff 50%, #ffffff 80%, rgb(240 239 244 / 0%) 100%) 0 0 1 0;
        background: transparent;*/
    }
    
    .sm_menu_outer .mobile_menu .submenu li {
        padding: 0px 0px;
    }

    .sm_menu_outer.slide .mobile_menu li.hasChild > a {
        background: url(../images/icon_right.svg) no-repeat scroll 100% center / 12px auto;
    }

    .sm_menu_outer.slide .mobile_menu .top-nav-set {
        border-top: 2px solid #F08219;
        margin-top: 15px;
        padding-top: 15px;
    }
    .sm_menu_outer.slide .mobile_menu .b-0 {
        border: none!important;
    }

/*Hamburger Animation */
#sm_menu_ham {
    cursor: pointer;
    float: right;
    height: 28px;
    position: fixed;
    -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: 28px;
    top: 18px;
    right: 20px;
    z-index: 999;
    color: #ffffff;
}


    #sm_menu_ham span {
        background-color: #ffffff;
        border-radius: 20px;
        display: block;
        height: 3px;
        left: 0;
        opacity: 1;
        position: absolute;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
/*        -webkit-transition: all 0.15s ease-in-out 0s;
        -moz-transition: all 0.15s ease-in-out 0s;
        -o-transition: all 0.15s ease-in-out 0s;
        transition: all 0.15s ease-in-out 0s;*/
        width: 28px;
    }

    #sm_menu_ham em {
        font-style: normal;
        font-size: 12px;
        position: absolute;
        bottom: -11px;
        font-weight: normal;
        left: -2px;
        text-transform: uppercase;
        font-family: 'GillSans', sans-serif;
    }

    #sm_menu_ham span:nth-child(1) {
        top: 0;
    }

    #sm_menu_ham span:nth-child(2),
    #sm_menu_ham span:nth-child(3) {
        top: 8px;
    }

    #sm_menu_ham span:nth-child(4) {
        top: 16px;
    }

    #sm_menu_ham.open span:nth-child(1) {
        left: 50%;
        top: 18px;
        width: 0;
    }

    #sm_menu_ham.open span:nth-child(2) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    #sm_menu_ham.open span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    #sm_menu_ham.open span:nth-child(4) {
        left: 50%;
        top: 18px;
        width: 0;
    }

    #sm_menu_ham.open {
        width: 28px;
        top: 38px;
        right: 30px;
        z-index: 9999;
        color: #002575
    }

.mob-menu-logo {
    width: 160px;
    margin: 20px 0px;
}

#sm_menu_ham.open span {
    background-color: #002575;
    border-radius: 20px;
}

    @media (min-width: 992px) {
        #sm_menu_ham, .sm_menu_outer {
            display: none;
        }
    }
