body {
    overflow-x: hidden;
}

/* SIDEBAR */
.sidebar {
    width: 250px;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background: #f8f9fa;
    transition: all 0.3s;
    z-index: 1040;
}

/* COLAPSADO DESKTOP */
.sidebar.collapsed {
    width: 70px;
}

.sidebar.collapsed .text {
    display: none;
}

/* CONTENIDO */
.content {
    margin-left: 250px;
    transition: all 0.3s;
}

.content.collapsed {
    margin-left: 70px;
}

/* NAV */
.nav-link.active {
    background: #0d6efd;
    color: #fff !important;
}

.nav-link:hover {
    background: #e9ecef;
}

/* OVERLAY */
#overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: none;
    z-index: 1030;
}

/* MOBILE */
@media (max-width: 992px) {

    .sidebar {
        left: -250px;
    }

    .sidebar.show {
        left: 0;
    }

    .content {
        margin-left: 0 !important;
    }

}