@charset "UTF-8";
/* CSS Document */

* {
    margin: 3;
    padding: 3;
    color: white;
    font-family: 'Roboto', sans-serif;

}


.barra {
    font-family: 'Lato', sans-serif;
    /**Alto y ancho de donde se va a activar cuando pase el mouse**/
    width: 10%;
    height: 9%;
    /*Para que este siempre en la misma parte de la pantalla aunque se haga scroll*/
    position: fixed;
    /*Tiempo en el que va a transitar la animacion*/
    transition: .4s all;
    /*este arriba de todo en la pantalla*/
    z-index: 100;
}

.hover {
    width: 90%;
    height: 100vh;
    overflow-y: scroll;
    overflow-x:auto;
    background: rgba(012, 012, 012, 0.75);
}
.menu{
    width: 0px;
}
.cerrar{
    width:0px;
}

.hover .menu{
    width: auto;
}
.hover .cerrar{
    width: 28px;
    margin: 10px auto 0px 80%;
	padding: 40px 20px;
}
.icono {
    height: 40%;
    padding-top: 15%;
    padding-left: 15%;
}
.hover .icono{
    width: 0px;
    padding: 0px;
}
.barra .expandir{
    width: 0px;
}
.hover .expandir{
    width: 55px;
    height: 55px;
    margin-left: 40%;
    margin-top: 35px;
}

.barra .expandir{
    margin-left: 40%;
    margin-top: 35px;
    transition: all 1s;
}
.hover .producto:hover .expandir{
    transform: rotate(90deg);
    transition: all 1s;
}

.hover .icono {
    /*Desaparecer la imagen*/
    height: 0px;
}
.hover ul h2 a{
    font-size: 12px;
    
}
.hover ul h2 {
    margin-bottom: 20px;
}
.barra a {
    text-decoration: none;
    font-size: 0px;
    padding: 0px;
}

.hover a {
    font-size: 12px;
    font-weight: 600;
    padding-left: 30px;
}

.barra ul {
    /*solucionar espacios no deseados*/
    padding: 0px 0px 0px 0px;
    text-align: left;
}

.barra li {
    list-style: none;
}


.barra>ul>li {
    margin-top: 25px;   
}

.producto {
    height: 100%;
    width: auto;
    font-size: 12px;
}
.menu:hover .producto {
    background: rgba(012, 012, 012, 0.75);
    padding: 6px 0px 3px 0px;
}
.hover .producto li,
.hover .producto ul {
    height: 0px;
    margin-left: 5px;
    transition: all 1s;
}

.hover .menu:hover .producto ul {
    height: 15%; /*CAMBIAR SI SE VAN A PONER MAS ITEMS DENTRO DEL SUBMENU*/
    transition: all 1s;
}
 
.hover .menu:hover .producto ul li {
    height: auto;
    margin: 5px auto 5px auto;
    display: flex;
    transition: all 1s;
    align-items: center;
}
.hover .menu:hover .producto:hover ul li:hover{
    background-color: #ff6600;
    padding: 1px 0px 1px 0px;
} 

.hover .producto li a {
    font-size: 0px;
    font-weight: 400;
    transition: font-size 0s;
}

.hover .menu:hover .producto li a {
    font-size: 12px;
    font-weight: 400;
    transition: font-size 1s .3s;
}
.hover .ultimo{
    margin-bottom: 15px;
}

/*MEDIA QUERIES*/
@media (min-width: 796px) {
    .hover{
        width: 55%;
        overflow: scroll;
    }
    .hover a {
        font-size: 12px;
        font-weight: 600;
        padding-left: 30px;
    }
    .hover ul h2 a{
        font-size: 12px;   
    }
    .hover ul h2 {
        margin-bottom: 1px;
    }
    .barra>ul>li {
        margin-top: 3px;   
    }
    .hover .producto:hover ul li {
        height: auto;
        margin: 6px auto 6px auto;
    }
    .hover .menu:hover .producto:hover li a {
        font-size: 12px;
        font-weight: 400;
        transition: font-size 1s .3s;
    
    }
    .hover .menu:hover .producto li a {
        font-size: 12px;

    }
    .producto:hover{
        background: rgba(012, 012, 012, 0.5);
        padding-bottom: 5px;
        padding-top: 0px;
    }
    .hover .menu:hover .expandir{
        margin-left: 40%;
        margin-top: 12px;
        transition: all 1s;
    }
  }