body {
    min-height: 100vh;
    background: #f4f6f9;
}

.vs-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100vh;
    /*background: #1f252b !important;*/
    z-index: 1000;
    border-right: 1px solid rgba(0,0,0,.08);
}

.vs-sidebar-logo {
    height: 64px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    /*border-bottom: 1px solid rgba(0,0,0,.08);*/
}

.vs-sidebar-logo img {
    max-height: 36px;
}

.vs-sidebar .list-group-item {
    border: 0;
    border-radius: 0;
    padding: 13px 18px;
    font-size: .95rem;
    background: transparent;
    /*color: #d7dde3;*/
}

.vs-sidebar .list-group-item i {
    width: 22px;
    text-align: center;
}

.vs-sidebar .list-group-item:hover {
    background: rgba(0,0,0,.06);
    /*color: #fff;*/
}

.vs-sidebar .list-group-item.active {
    background: #0d6efd;
    /*color: #fff;*/
}

.vs-main {
    margin-left: 250px;
    min-height: 100vh;
}

.vs-topbar {
    height: 64px;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.vs-content {
    padding: 24px;
}

.vs-card {
    border: 0;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, .08);
}

.vs-stat-label {
    color: #6c757d;
    font-size: .85rem;
}

.vs-stat-value {
    font-size: 2rem;
    font-weight: 600;
}

.vs-mobile-menu-btn {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1050;
}

@media (min-width: 992px) {
    .vs-sidebar.offcanvas-lg {
        position: fixed;
        top: 0;
        left: 0;
        width: 250px;
        height: 100vh;
        visibility: visible !important;
        transform: none !important;
        background: #1f252b;
        color: #d7dde3;
        /*border-right: 0;*/
    }
}

@media (max-width: 991.98px) {
    .vs-sidebar.offcanvas-lg {
        width: 250px;
        /*background: #1f252b;*/
        z-index: 1045;
    }

    .vs-main {
        margin-left: 0 !important;
    }

    .vs-topbar {
        padding-left: 64px;
    }
}
