/* =============== ADMINLTE FIX — FINAL =============== */

:root {
    --sidebar-width: 230px;
}

.main-sidebar {
    width: var(--sidebar-width) !important;
}

.content-wrapper,
.main-footer {
    margin-left: var(--sidebar-width) !important;
    transition: margin-left .25s ease;
}

/* MINI MODE */
.sidebar-collapse .main-sidebar {
    width: 60px !important;
}

.sidebar-collapse .content-wrapper,
.sidebar-collapse .main-footer {
    margin-left: 60px !important;
}

/* MOBILE */
@media(max-width: 991px) {

    .content-wrapper,
    .main-footer {
        margin-left: 0 !important;
    }

    .main-sidebar {
        left: -230px !important;
        position: fixed;
        top: 0; bottom: 0;
        width: 230px !important;
        z-index: 9999;
    }

    body.sidebar-open .main-sidebar {
        left: 0 !important;
    }

    body.sidebar-open .content-wrapper {
        transform: translateX(230px);
        transition: transform .25s ease;
    }
}

/* LOGO */
.main-header .logo img {
    width: 70%;
    display: block;
    margin: 6px auto;
}

/* BREADCRUMB */
.content-header .breadcrumb a,
.content-header .breadcrumb li {
    color: #0B3D91 !important;
}
