@import 'https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet';

:root {
    --dk-gray-100: #f3f4f6;
    --dk-gray-200: #e5e7eb;
    --dk-gray-300: #d1d5db;
    --dk-gray-400: #9ca3af;
    --dk-gray-500: #6b7280;
    --dk-gray-600: #4b5563;
    --dk-gray-700: #374151;
    --dk-gray-800: #1f2937;
    --dk-gray-900: #111827;
    --dk-dark-bg: #313348;
    --dk-darker-bg: #2a2b3d;
    --navbar-bg-color: #6f6486;
    --sidebar-bg-color: #252636;
    --sidebar-width: 250px;
}


#wrapper {
    margin-left: var(--sidebar-width);
    transition: all 0.3s ease-in-out;
}

#wrapper.fullwidth {
    margin-left: 0;
}

/** --------------------------------
 -- Sidebar
-------------------------------- */
.sidebar {
    background-color: var(--pallet-blue);
    width: var(--sidebar-width);
    transition: all 0.3s ease-in-out;
    transform: translateX(0);
    z-index: 9999999;
}

.sidebar .close-aside {
    position: absolute;
    top: 7px;
    right: 7px;
    cursor: pointer;
    color: #eee;
}


.sidebar .sidebar-header h5 a {
    color: var(--dk-gray-300);
}

.sidebar .sidebar-header p {
    color: var(--dk-gray-400);
    font-size: 0.825rem;
}

.sidebar .search .form-control~i {
    color: #2b2f3a;
    right: 40px;
    top: 22px;
}

.sidebar>ul>li {
    color: var(--pallet-white);
    padding: 0.7rem 1.75rem;
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    cursor: pointer;
}

.sidebar ul>li>p {
    color: var(--dk-gray-400);
    text-decoration: none;
}

.categories {
    height: 86%;
}

/* Start numbers */
.sidebar ul>li>a>.num {
    line-height: 0;
    border-radius: 3px;
    font-size: 14px;
    padding: 0px 5px;
}

.sidebar ul>li>i,
.sidebar ul>li>svg {
    font-size: 18px;
    margin-right: 0.7rem;
    color: var(--dk-gray-500);
}

.sidebar ul>li.has-dropdown>a:after {
    content: "\eb3a";
    font-family: unicons-line;
    font-size: 1rem;
    line-height: 1.8;
    float: right;
    color: var(--dk-gray-500);
    transition: all 0.3s ease-in-out;
}

.sidebar ul .opened>a:after {
    transform: rotate(-90deg);
}

/* Start dropdown menu */
.sidebar ul .sidebar-dropdown {
    padding-top: 10px;
    padding-left: 30px;
    display: none;
}

.sidebar ul .sidebar-dropdown.active {
    display: block;
}

.sidebar ul .sidebar-dropdown>li>a {
    font-size: 0.85rem;
    padding: 0.5rem 0;
    display: block;
}

/* End dropdown menu */

.show-sidebar {
    transform: translateX(-270px);
}

@media (max-width: 767px) {
    .sidebar ul>li {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .sidebar .search {
        padding: 10px 0 10px 30px;
    }
}




/** --------------------------------
 -- welcome
-------------------------------- */
.welcome {
    padding-top: 50px;
    color: var(--pallet-blue);
}

.welcome .content {
    background-color: var(--pallet-white);
}

.welcome p {
    color: var(--pallet-blue);
}

/** --------------------------------
 -- Statistics
-------------------------------- */
.statistics {
    color: var(--dk-gray-200);
}

.statistics .box {
    background-color: var(--pallet-blue);
}

.statistics .box i {
    width: 60px;
    height: 60px;
    line-height: 60px;
}

.statistics .box p {
    color: var(--dk-gray-400);
}

/** --------------------------------
 -- Charts
-------------------------------- */
.charts {
    height: 100%;
}

.charts .chart-container {
    background-color: var(--pallet-blue);
}

.charts .chart-container h3 {
    color: var(--dk-gray-400);
}

/** --------------------------------
 -- users
-------------------------------- */
.admins .box .admin {
    background-color: var(--dk-dark-bg);
}

.admins .box h3 {
    color: var(--dk-gray-300);
}

.admins .box p {
    color: var(--dk-gray-400);
}

/** --------------------------------
 -- statis
-------------------------------- */
.statis {
    color: var(--dk-gray-100);
}

.statis .box {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
}

.statis .box h3:after {
    content: "";
    height: 2px;
    width: 70%;
    margin: auto;
    background-color: rgba(255, 255, 255, 0.12);
    display: block;
    margin-top: 10px;
}

.statis .box i {
    position: absolute;
    height: 70px;
    width: 70px;
    font-size: 22px;
    padding: 15px;
    top: -25px;
    left: -25px;
    background-color: rgba(255, 255, 255, 0.15);
    line-height: 60px;
    text-align: right;
    border-radius: 50%;
}

.main-color {
    color: #ffc107;
}

/* Start media query */

@media (max-width: 767px) {
    #wrapper {
        margin: 0 !important
    }

    .statistics .box {
        margin-bottom: 25px !important;
    }

    .navbar .navbar-nav .open .dropdown-menu>li>a {
        color: #CCC !important
    }

    .navbar .navbar-nav .open .dropdown-menu>li>a:hover {
        color: #FFF !important
    }

    .navbar .navbar-toggle {
        border: none !important;
        color: #EEE !important;
        font-size: 18px !important;
    }

    .navbar .navbar-toggle:focus,
    .navbar .navbar-toggle:hover {
        background-color: transparent !important
    }
}


::-webkit-scrollbar {
    background: transparent;
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-thumb {
    background-color: #3c3f58;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.3);
}