/************************************ MENU LATERAL */
#menu-lateral.open-sidebar{
transform: translate(0px,0);
-webkit-transform: translate(0px,0);
-moz-transform: translate(0px,0);
-ms-transform: translate(0px,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);
-ms-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: #749B33;
position: fixed;
width: 240px;
height: 100%;
top: 0;

box-sizing: border-box;
-moz-box-sizing: border-box;

transform: translate(-240px,0);
-webkit-transform: translate(-240px,0);
-moz-transform: translate(-240px,0);
-ms-transform: translate(-240px,0);

transition-duration: 350ms;
-webkit-transition-duration: 350ms;
-moz-transition-duration: 350ms;
-ms-transition-duration: 350ms;

overflow-y: scroll;
-webkit-overflow-scrolling: touch;
-moz-overflow-scrolling: touch;
-ms-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: 700;
color: #333;
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:nth-child(even) a{background: #5D821F;}
#menu-lateral ul li:hover a {background: #2b2b2b;}
#menu-lateral ul li.current a{color: #00cdff;}
#menu-lateral ul li.color a{background: #00cdff; font-weight: 600;}
#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%;}
