
.menu-toggle{
    display: none;
    cursor: pointer;
}


.sidebar-prueba{
    flex: 1 1 0;
    max-width: 300px;
    padding: 1rem 1rem;
    background-color: black;
    font-size:0.8rem;
}


.sidebar-prueba h2{
    color: #707793;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}

.sidebar-prueba .menu{
    margin: 0 -1rem;
}


.sidebar-prueba .menu .menu-item{
    display: block;
    padding: 1rem;
    color: #FFF;
    text-decoration: none;
    transition: 0.2s linear;
}

.sidebar-prueba .menu .menu-list .cat-list{
    display: block;
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    transition: 0.2s linear;
    font-size: 0.75rem;
}

.sidebar-prueba .menu .menu-list .cat-list:hover{
    border-right: 5px solid #2e8c76;
}

.sidebar-prueba .menu .menu-item:hover,
.sidebar-prueba .menu .menu-item.is-active{
    color: #3bba9c;
    border-right: 5px solid #3bba9c;
}



.contenido {
    display: block;
	flex: 1 1 0;
	padding: 2rem;
}

.move-sidebar{
    position: relative;
    top: 0;
}

@media (max-width:1024px){
    .sidebar-prueba{
        max-width: 200px;
    }
}

@media (max-width:768px){
    .menu-toggle{
        display: block;
    }
    .content{
        padding-top: 1rem;
    }

    .sidebar-prueba{
        position: relative;
        top: 0;
        left: 0;
        height: 100%;
        width: 100vw;
        max-width: 100%;
        font-size: 0.7rem;
        transition: 0.2s linear;
    }
    .sidebar-prueba.is-active{
        display: none;
    }
}