.Overlay_Menu{  
    display: block;
    position: fixed;
    width: 100%; 
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.692);
    border-radius: 0;
    z-index: 3;
    transition: 0.2s ease-in-out;
    opacity: 0;
    visibility: hidden;
}
.Overlay_Menu.activado{  
    visibility: visible;
    opacity: 1;
}
a{
    text-decoration: none;
    color: #111111;
}
.Titulo_Categoria_Producto{
    font-family: 'Poppins';
    font-size: 18px;
    padding: 10px 20px;
    font-weight: 550;
    text-transform: uppercase;
    background-color: #f1f1f1;
    margin-bottom: 7px;
    display: flex;
    align-items: center;
}
.Titulo_Categoria_Producto ion-icon{
    font-size: 20px;
    margin-right: 1px;
}
.btn-menu{
    display: none;
    padding: 20px;
    background: #0d2c44;
    color: #fff;
}
.contenedor-menu{
    width: 20%;
    height: 100%;
    min-width: 300px;
    margin: 50px;
    margin-left: 0px;
    display: block;
    font-family: 'Poppins';
    line-height: 18px;
    position: fixed;
    left: -100%;
    top: 24px;
    z-index: 4;
    transition: 0.2s ease-in-out;
    
}
.contenedor-menu.activado{
    left: 0%;
}
.contenedor-menu .menu{
    width: 0%;
    height: 100%;
    background-color: #ffffff;
    display: block;   
    transition: 0.2s ease-in-out;
    overflow-y: auto;
    padding-bottom: 100px;
}
.contenedor-menu .menu.activado{
    width: 100%; 
}
.contenedor-menu ul{
    list-style: none;
}
.contenedor-menu .menu li .contenedor_li{
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.contenedor-menu .menu li a{
    color: #535353;
    padding: 8px 10px;
    transition: .2s ease-in;
    text-transform: capitalize;
    line-height: 25px;
    width: 50%;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
}
.contenedor-menu .menu li a:hover{
    opacity: 80%;
}
.contenedor-menu .menu li ul{
    display: none;
}
.contenedor-menu .menu ul li a{
    background-color: #ffffff;
    color: #535353;
    font-size: 13px;
    padding-left: 27px;
    font-weight: 400;
    display: flex;
    align-items: center;
}
.contenedor-menu .menu .activado > a{
    background: #eaeded;
    color: #111;
    font-weight: 550;
    /* padding-left: 25px; */
}
.contenedor-menu .menu .activado .icono.derecha{
    transform: rotate(-180deg); 
}
.contenedor-menu .menu .icono{
    font-size: 12px;
    height: 34px;
    width: 25px;
    padding: 3px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contenedor-menu .menu .icono.derecha{
    float: right;
    transition: .5s;
    color: #535353;
}
@media screen and (max-width: 768px) {
    .contenedor-menu{
        /* top: 50px; */
        /* width: 100%; */
        left: -100%;
    }
} 
@media screen and (max-width: 450px) {
    .Titulo_Categoria_Producto{
        font-size: 16px;
        padding: 10px 20px;
        margin-bottom: 7px;
    }
    .contenedor-menu .menu li a{      
        font-size: 12px;
    }
    .contenedor-menu{
        margin: 0;   
        top: 75px;       
        z-index: -1;
    }
    .btn-menu{
        display: block;
    }
    .contenedor-menu.activado{
        width: 80%;
        z-index: 4;
    }
}