#menu-lateral.open-sidebar{transform: translate3d(0px,0,0);
    -webkit-transform: translate3d(0px,0,0);
    -moz-transform: translate3d(0px,0,0);

    -webkit-box-shadow: 4px 0px 10px 0px rgba(50, 50, 50, 0.7);
    -moz-box-shadow:    4px 0px 10px 0px rgba(50, 50, 50, 0.7);
    box-shadow:         4px 0px 10px 0px rgba(50, 50, 50, 0.7);
}



#menu-lateral {
    background: #333;
    position: fixed;
    width: 240px;
    height: 100%;
    
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    
    transform: translate3d(-240px,0,0);
    -webkit-transform: translate3d(-240px,0,0);
    -moz-transform: translate3d(-240px,0,0);

    transition-duration: 350ms;
    -webkit-transition-duration: 350ms;
    -moz-transition-duration: 350ms;
    
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    -moz-overflow-scrolling: touch;
    overflow-scrolling: touch;
    z-index: 9999999999;
}




#menu-lateral ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
#menu-lateral ul li {
    margin: 0;
}
#menu-lateral ul li a {
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 100;
    color: white;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid rgba(26, 26, 26, 0.3);
    /*border-top: 1px solid #4d4d4d;*/
    -webkit-transition:  background 0.2s ease-in-out;
    -moz-transition:  background 0.2s ease-in-out;
    -ms-transition:  background 0.2s ease-in-out;
    -o-transition:  background 0.2s ease-in-out;
    transition:  background 0.2s ease-in-out;
}
#menu-lateral ul li:hover a {
    background: #2b2b2b;
}

#menu-lateral ul li.color a{}

#menu-lateral ul li a.user{background: #72D54A url(../img/menu-lateral/user.svg) no-repeat 10% 50%; padding-left: 50px;}
#menu-lateral ul li:hover a.user {background: #69BC45 url(../img/menu-lateral/user.svg) no-repeat 10% 50%;}