.wrapper {
    position: absolute;
    overflow: hidden;
    width: 15rem;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

/* Elementos hijo directamente (que serían: nav y content) */
.wrapper > * {
    overflow: auto;
    flex: 1 1 auto;
}

.vertical-nav {
    min-width: 15rem;
    width: 15rem;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
}

.page-content {
    width: calc(100% - 15rem);
    margin-left: 15rem;
    transition: all 0.4s;
}

#sidebar.active {
    margin-left: -15rem;
}

#content.active {
    width: 100%;
    margin: 0;
}

@media (max-width: 1200px) {

    .wrapper {
        position: absolute;
        overflow: hidden;
        width: 13rem;
        height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
    }

    /* Elementos hijo directamente (que serían: nav y content) */
    .wrapper > * {
        overflow: auto;
        flex: 1 1 auto;
    }

    .vertical-nav {
        min-width: 13rem;
        width: 13rem;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.4s;
    }

    .page-content {
        width: calc(100% - 14rem);
        margin-left: 14rem;
        transition: all 0.4s;
    }

    #sidebar.active {
        margin-left: -14rem;
    }

    #content.active {
        width: 100%;
        margin: 0;
    }

    #sidebar {
        margin-left: -14rem;
    }
    #sidebar.active {
        margin-left: 0;
    }
    #content {
        width: 100%;
        margin: 0;
    }
    #content.active {
        margin-left: 14rem;
        width: calc(100% - 14rem);
    }
}


/*voy a dejar esto asì por el momento porque para celulares quiero mostrar el menu de otra manera*/
@media (max-width: 768px) {

    .wrapper {
        position: absolute;
        overflow: hidden;
        width: 13rem;
        height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
    }

    /* Elementos hijo directamente (que serían: nav y content) */
    .wrapper > * {
        overflow: auto;
        flex: 1 1 auto;
    }

    .vertical-nav {
        min-width: 13rem;
        width: 13rem;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.4s;
    }

    .page-content {
        width: calc(100% - 14rem);
        margin-left: 14rem;
        transition: all 0.4s;
    }

    #sidebar.active {
        margin-left: -14rem;
    }

    #content.active {
        width: 100%;
        margin: 0;
    }

    #sidebar {
        margin-left: -14rem;
    }
    #sidebar.active {
        margin-left: 0;
    }
    #content {
        width: 100%;
        margin: 0;
    }
    #content.active {
        margin-left: 14rem;
        width: calc(100% - 14rem);
    }
}
/*
*
* ==========================================
* FOR DEMO PURPOSE
* ==========================================
*
*/
.separator {
    margin: 3rem 0;
    border-bottom: 1px dashed #fff;
}

.text-uppercase {
    letter-spacing: 0.1em;
}

.text-gray {
    color: #aaa;
}