/* ==============================
   SIDEBAR
============================== */

.layout-fixed .main-sidebar {
    background: #000 !important;
}

/* Menu spacing */
.nav-sidebar {
    padding: 10px 8px;
}

.nav-sidebar .nav-item {
    margin-bottom: 4px;
}

/* Main menu */
.nav-sidebar > .nav-item > .nav-link {
    color: #fff !important;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all .25s ease;
}

/* Hover */
.nav-sidebar > .nav-item > .nav-link:hover {
    background: rgba(255,255,255,.15);
    transform: translateX(4px);
}

/* Active */
.nav-sidebar > .nav-item > .nav-link.active {
    background: #fff !important;
    color: #000 !important;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

.nav-sidebar > .nav-item > .nav-link.active .nav-icon,
.nav-sidebar > .nav-item > .nav-link.active .right {
    color: #000 !important;
}

/* Icons */
.nav-sidebar .nav-icon {
    width: 22px;
    text-align: center;
    margin-right: 10px;
}

/* ==============================
   SUBMENU
============================== */

.nav-treeview {
    border-left: 2px solid rgba(255,255,255,.25);
}

.nav-treeview .nav-link {
    color: rgba(255,255,255,.9) !important;
    border-radius: 8px;
    padding: 9px 15px 9px 25px !important;
    transition: all .25s ease;
}

/* Hover */
.nav-treeview .nav-link:hover {
    background: rgba(255,255,255,.12);
    transform: translateX(4px);
}

/* Active */
.nav-treeview .nav-link.active {
    background: #fff !important;
    color: #000 !important;
    font-weight: 600;
}

.nav-treeview .nav-link.active .nav-icon {
    color: #000 !important;
}