/* Max width */
@media (max-width: 1399.98px) {}

@media (max-width: 1199.98px) {}

@media (max-width: 991.98px) {
    .sidebar-inner {
        left: -115%;
        top: 0;
        transition: all 0.4s ease;
    }

    .main-container {
        width: 100%;
        padding-left: 0;
    }

    .sidebar-wrap.active .sidebar-inner {
        left: 0;
        transition: all 0.4s ease;
    }

    .sidebar-wrap.active .sidebar .bg-shadow {
        visibility: visible;
        opacity: 0.4;
    }

    .dashboard-content {
        padding: 15px;
    }
}

@media (max-width: 767.98px) {}

@media (max-width: 575.98px) {
    .dashboard-header .header-elements {
        gap: 16px;
    }

    .dashboard-header .profile .body {
        display: none;
    }

    .report-row>div:not(:last-child) {
        border-bottom: 1px solid var(--border);
    }
}

/* Min width */
@media (min-width: 576px) {
    .report-row>div:nth-child(odd) {
        border-right: 1px solid var(--border);
    }
}

@media (min-width: 768px) {}

@media (min-width: 992px) {
    .sidebar-toggle {
        display: none;
    }
}

@media (min-width: 1200px) {}

@media (min-width: 1400px) {
    .report-row>div:not(:last-child) {
        border-right: 1px solid var(--border);
    }
}