/*CONTENEDOR*/


/*FIN CONTENEDOR*/

/*BURGUER*/
.burger-menu{
    height:2px;
}
.burguer{
    width:40px;
    height:auto;
    cursor:pointer;
}
.cruz{
    display:none;
    width:40px;
    height:auto;
    cursor:pointer;
	position: absolute;
    right: 20px;
	top: 2px;
}
.poner{
    display:block !important;
}
.quitar{
    display:none !important;
}
/*FIN BURGUER*/

/*CONTENIDO*/
.contenido-menu{
    display:none;
	/*max-height: none;*/
    max-height:500px;
    overflow-y:scroll;
    /* Internet Explorer 10+ */
    -ms-overflow-style: none; 
    /* Firefox */
    scrollbar-width: none;  
}
.contenido-menu::-webkit-scrollbar { 
    /* Safari and Chrome */
    display: none;  
}
.fondo-gris{
    background-color:#bdbdbd !important;
}
/*FIN CONTENIDO*/

@media only screen and (min-width: 768px) {
    .contenido-menu{max-height:none;}
}

@media only screen and (min-width: 1024px) {
    .contenido-menu{max-height:none;}
}

