/* Mobile Nav */
.mobile-nav {
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    display: table;
    width: 100%;
    height: 100%;
    text-align: center;
    opacity: 0;
    background: rgba(255, 255, 255, 0.98);
    -webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.mobile-nav.active {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.mobile-nav ul {
    /*display: table-cell;*/
    padding: 0;
    list-style: none;
    vertical-align: middle;
}

.mobile-nav ul li {
    margin: 25px 0;
    background: rgb(170, 52, 170);
    border-radius: 5px;
    padding: 5px 0;
    font-size: 14px !important;
    cursor:pointer;
}

.mobile-nav ul li a:not(.btn) {
    font-size: 0.9em !important;
    color: #fff !important;
    cursor:pointer;
}

.mobile-nav ul li a:hover {
    color: #fff !important;
    background:  transparent;  
}

.mobile-nav a.close-link {
    font-size: 1.5em;/*24px*/
    position: absolute;
    bottom: 0px;
    left: calc(50% - 10px);
    left: 0;
    width: 100%;
    padding: 15px 0;
    color: #fff !important;
    background: #aa34aa;
}

.user-nav {
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    display: table;
    width: 100%;
    height: 100%;
    text-align: center;
    opacity: 0;
    background: rgba(255, 255, 255, 0.98);
    -webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.user-nav.active {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.user-nav ul {
    /*display: table-cell;*/
    padding: 0;
    list-style: none;
    vertical-align: middle;
}

.user-nav ul li {
    margin: 25px 0;
    background: rgb(170, 52, 170);
    border-radius: 5px;
    padding: 5px 0;
    font-size: 14px !important;
    cursor:pointer;
}

.user-nav ul li a:not(.btn) {
    font-size: 0.9em !important;
    /*color: #aa34aa !important;*/
    color: #fff;
    cursor:pointer;
}

.user-nav ul li a:hover {    
    color: #aa34aa;
    background:  transparent; 
    cursor:pointer; 
}

.user-nav a.close-link {
    font-size: 1.5em;/*24px*/
    position: absolute;
    bottom: 0px;
    left: calc(50% - 10px);
    left: 0;
    width: 100%;
    padding: 15px 0;
    color: #fff !important;
    background: #aa34aa;
}



@media (max-width: 320px){
    .user-nav ul li a:not(.btn) {
        font-size: 0.7em !important;       
    }  
    .mobile-nav ul li a:not(.btn) {
        font-size: 0.7em !important;        
    } 

    .mobile-nav ul li, .user-nav ul li {
        margin: 16px 0;
    } 
}