@font-face {
    font-family: "Rubik";
    font-style: normal;
    font-weight: 300;
    src: url("../fonts/rubik-v14-latin/rubik-v14-latin-300.aa1b035cff7c.eot");
    src: local(""), url("../fonts/rubik-v14-latin/rubik-v14-latin-300.aa1b035cff7c.eot?#iefix") format("embedded-opentype"), url("../fonts/rubik-v14-latin/rubik-v14-latin-300.528a497d62ed.woff2") format("woff2"), url("../fonts/rubik-v14-latin/rubik-v14-latin-300.a72320a5b709.woff") format("woff"), url("../fonts/rubik-v14-latin/rubik-v14-latin-300.0f2b545691a8.ttf") format("truetype"), url("../fonts/rubik-v14-latin/rubik-v14-latin-300.485d9480b3ce.svg#Rubik") format("svg")
}

:root {
    --primary: #4f46e5;
    --primary-light: #818cf8;
    --primary-dark: #3730a3;
    --secondary: #10b981;
    --accent: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    --bg-main: #f8fafc;
    --bg-secondary: #f1f5f9;
    --bg-card: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --border-color: #e2e8f0;
    --shadow: rgba(15, 23, 42, 0.08);
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1)
}

*,
body {
    font-family: "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: var(--radius-md)
}

::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: var(--radius-md);
    transition: background var(--transition-fast)
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary)
}

::selection {
    background-color: var(--primary-light);
    color: #fff
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all var(--transition-fast)
}

a:hover {
    color: var(--primary-dark)
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: 0 1px 3px var(--shadow);
    transition: all var(--transition-base)
}

.card:hover {
    box-shadow: 0 4px 12px var(--shadow);
    transform: translateY(-2px)
}

.btn {
    border-radius: var(--radius-md);
    padding: .625rem 1.25rem;
    font-weight: 500;
    transition: all var(--transition-base);
    border: none
}

.btn.btn-primary {
    background: var(--primary);
    color: #fff
}

.btn.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, .3)
}

.btn.btn-secondary {
    background: var(--text-secondary);
    color: #fff
}

.btn.btn-secondary:hover {
    background: var(--text-primary)
}

.btn.btn-success {
    background: var(--secondary);
    color: #fff
}

.btn.btn-success:hover {
    background: #059669
}

.badge {
    padding: .375rem .75rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: .875rem
}

.form-control {
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: .625rem 1rem;
    transition: all var(--transition-fast)
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, .1);
    outline: none
}

table .info {
    margin-left: -240px
}

video {
    max-width: 100%;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, .16), 0px 2px 10px 0px rgba(0, 0, 0, .12)
}

.dim {
    box-shadow: 0 0 0 10000px rgba(0, 0, 0, .5) !important;
    box-shadow: 0 0 0 100vmax rgba(0, 0, 0, .5) !important
}

.table {
    width: 100%;
    border-collapse: collapse
}

.table th {
    background-color: #f2f2f2
}

.table td,
.table th {
    vertical-align: middle;
    padding: 8px;
    border: 1px solid #ddd;
    text-align: left
}

.table tbody>tr>td>a {
    display: flex;
    color: #2196f3;
    padding: .5rem 1rem;
    transition: .2s
}

.table tbody>tr>td>a:hover {
    background-color: rgba(157, 220, 223, .3);
    border-radius: .2em
}

.table tbody>tr>td>a:focus {
    box-shadow: 0 0 0 .3rem rgba(127, 190, 193, .5)
}

.table input {
    padding: 10px;
    max-width: 130px;
    border-style: none;
    border: 1px solid #bbb;
    border-radius: .25rem;
    transition: .3s
}

.table input:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25)
}

.table .dropdown #dropdownMenuButton {
    color: #999
}

.table-title {
    text-transform: uppercase;
    font-size: 16px;
    padding: 10px;
    margin: 10px 0;
    color: #2196f3
}

#main {
    padding-bottom: 3rem;
    padding-left: 300px;
    transition: .5s
}

#main-content {
    padding-top: 80px
}

@media(max-width: 800px) {
    #main-content {
        padding-top: 130px
    }
}

#top-navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 300px;
    z-index: 90;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 1px 3px var(--shadow);
    backdrop-filter: blur(8px);
    transition: all var(--transition-base)
}

#top-navbar .nav-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: .75rem 0
}

#top-navbar .nav-wrapper .form-header {
    display: flex;
    flex: .8;
    gap: 0
}

#top-navbar .nav-wrapper .form-header .form-control {
    flex: 1;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    border-right: none
}

#top-navbar .nav-wrapper .form-header .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, .1);
    z-index: 1
}

#top-navbar .nav-wrapper .form-header button {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: .625rem 1.25rem;
    background: var(--primary);
    color: #fff;
    border: none
}

#top-navbar .nav-wrapper .form-header button:hover {
    background: var(--primary-dark)
}

#top-navbar .nav-wrapper .toggle-btn {
    cursor: pointer;
    padding: .5rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    color: var(--text-secondary)
}

#top-navbar .nav-wrapper .toggle-btn:hover {
    background-color: var(--bg-secondary);
    color: var(--primary)
}

#top-navbar.toggle-active {
    left: 0
}

@media(max-width: 800px) {
    #top-navbar .nav-wrapper .form-header {
        order: 2
    }

    #top-navbar .nav-wrapper .toggle-btn {
        order: 1
    }

    #top-navbar .nav-wrapper .dropdown {
        order: 3
    }
}

.manage-wrap {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 300px;
    padding: .5rem;
    z-index: 10;
    background-color: hsla(0, 0%, 100%, .8);
    border-top: 1px solid #6c757d;
    transition: .3s
}

.manage-wrap.toggle-active {
    left: 0
}

.au-input {
    display: flex;
    width: auto;
    line-height: 40px;
    border: 1px solid #e5e5e5;
    font-family: inherit;
    font-size: 13px;
    color: #666;
    padding: 0 17px;
    border-radius: 3px;
    transition: all .2s ease
}

.au-input:focus {
    border: 1px solid #343a40
}

.au-input--xl {
    min-width: 935px
}

@media(max-width: 1600px) {
    .au-input--xl {
        min-width: 500px
    }
}

@media(max-width: 1000px) {
    .au-input--xl {
        min-width: 150px
    }
}

@media(max-width: 767px) {
    .au-input--xl {
        min-width: 150px;
        max-height: 45px
    }
}

@media(max-width: 800px) {
    .nav-wrapper .form-header {
        -ms-flex-order: 1;
        order: 1;
        width: 100%
    }

    .nav-wrapper .form-header .au-input--xl {
        width: 100%
    }

    .nav-wrapper .toggle-btn {
        -ms-flex-order: 2;
        order: 2
    }

    .nav-wrapper .dropdown {
        -ms-flex-order: 3;
        order: 3
    }
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: all var(--transition-fast)
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base)
}

.avatar:hover {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 4px 12px var(--shadow)
}

.avatar:hover img {
    transform: scale(1.1)
}

.avatar.avatar-md {
    width: 60px;
    height: 60px
}

.avatar.avatar-lg {
    width: 80px;
    height: 80px
}

.dropdown-menu {
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 24px var(--shadow);
    border-radius: var(--radius-lg);
    padding: var(--spacing-sm);
    margin-top: var(--spacing-sm);
    transform-origin: top;
    animation: dropdownSlideIn .2s ease-out forwards
}

.dropdown-menu .dropdown-item {
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    transition: all var(--transition-fast)
}

.dropdown-menu .dropdown-item:hover {
    background: var(--bg-secondary);
    color: var(--primary);
    transform: translateX(4px)
}

.dropdown-menu .dropdown-item i {
    color: var(--text-muted);
    transition: color var(--transition-fast)
}

.dropdown-menu .dropdown-item:hover i {
    color: var(--primary)
}

.dropdown-menu hr {
    margin: var(--spacing-sm) 0;
    border-color: var(--border-color)
}

@keyframes dropdownSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-8px) scale(0.95)
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

#side-nav {
    width: 300px;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 100;
    overflow-y: auto;
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border-right: 1px solid var(--border-color);
    box-shadow: 2px 0 8px var(--shadow);
    transition: all var(--transition-base)
}

#side-nav i {
    margin-right: 10px;
    width: 20px;
    display: inline-flex;
    justify-content: center
}

#side-nav footer {
    margin-top: 2rem;
    padding: var(--spacing-lg);
    background: var(--bg-card);
    border-top: 1px solid var(--border-color)
}

#side-nav .top-side {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: var(--spacing-xl) var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    box-shadow: 0 2px 8px var(--shadow)
}

#side-nav .top-side .desktop-hide {
    display: none
}

#side-nav .top-side .desktop-hide .toggle-btn {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    background-color: #fff;
    color: #f2f2f2;
    padding: 0 1rem;
    border-radius: 2px;
    cursor: pointer;
    margin-left: auto;
    transition: .5s
}

#side-nav .top-side .desktop-hide .toggle-btn i {
    color: #999;
    margin: 0 auto
}

#side-nav .top-side .desktop-hide .toggle-btn i:hover {
    color: #666;
    transition: .2s
}

#side-nav .top-side .logo img {
    width: 90%
}

#side-nav ul {
    padding: var(--spacing-sm) 0;
    margin: 0
}

#side-nav ul li {
    list-style: none;
    margin: var(--spacing-xs) var(--spacing-md)
}

#side-nav ul li a {
    display: flex;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
    color: var(--text-secondary);
    border-radius: var(--radius-lg);
    font-weight: 500;
    transition: all var(--transition-fast);
    position: relative
}

#side-nav ul li a:hover {
    color: var(--primary);
    background: rgba(79, 70, 229, .08);
    transform: translateX(4px)
}

#side-nav ul li a i {
    color: var(--text-muted);
    transition: color var(--transition-fast)
}

#side-nav ul li a:hover i {
    color: var(--primary)
}

#side-nav ul li.active a {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(79, 70, 229, .3)
}

#side-nav ul li.active a i {
    color: #fff
}

#side-nav.toggle-active {
    box-shadow: 0px 0px 0px 0px #dbdbdb;
    left: -300px
}

@media screen and (max-width: 1150px) {
    #side-nav .top-side {
        padding-top: 3rem
    }

    #side-nav .top-side .desktop-hide {
        display: block
    }
}

#main.toggle-active {
    box-shadow: 0px 0px 0px 0px #dbdbdb;
    padding-left: 0px
}

@media screen and (max-width: 1150px) {
    #side-nav {
        left: -300px
    }

    #side-nav.toggle-active {
        left: 0;
        -webkit-box-shadow: 0 0 0 10000px rgba(0, 0, 0, .5);
        box-shadow: 0 0 0 10000px rgba(0, 0, 0, .5)
    }

    #main {
        padding-left: 0
    }

    #top-navbar {
        left: 0
    }

    .manage-wrap {
        left: 0
    }
}

#input-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: .3rem .9rem;
    margin-bottom: 1rem;
    color: #fd7e14;
    border-radius: 3px;
    background-color: #fff !important;
    box-shadow: inset 0 0 2.5rem rgba(0, 0, 0, .2)
}

#input-nav a {
    color: #007bff
}

#input-nav a:hover {
    text-decoration: underline
}

#input-nav a::after {
    content: ">";
    color: #666;
    margin: 0 5px;
    vertical-align: middle
}

.footer {
    top: 100%;
    bottom: 0;
    display: block;
    text-align: center;
    justify-content: center;
    padding: .75rem 1.25rem;
    margin-top: 4rem;
    background-color: rgba(0, 0, 0, .03);
    border-top: 1px solid rgba(0, 0, 0, .1)
}

.footer:last-child {
    border-radius: 0 0 calc(.25rem - 1px) calc(.25rem - 1px)
}

.title-1 {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-family: inherit;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
    letter-spacing: -0.5px
}

.title-1::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-sm);
    animation: titleLineAnim .6s ease-out forwards
}

.title-1 i {
    margin-right: var(--spacing-md);
    color: var(--primary)
}

@keyframes titleLineAnim {
    0% {
        width: 0;
        opacity: 0
    }

    100% {
        width: 60px;
        opacity: 1
    }
}

.form-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 17px;
    padding: 10px;
    background: -o-linear-gradient(50deg, #45cafc, #303f9f);
    background: linear-gradient(40deg, #45cafc, #303f9f);
    color: #fff;
    text-align: center;
    margin-bottom: 10px
}

.form-title i {
    margin-right: 8px
}

.news {
    background: -o-linear-gradient(50deg, #45cafc, #303f9f) !important;
    background: linear-gradient(40deg, #45cafc, #303f9f) !important;
    color: #fff
}

.events {
    background: -o-linear-gradient(50deg, #ad86f6, #572ca7) !important;
    background: linear-gradient(40deg, #ad86f6, #572ca7) !important;
    color: #fff
}

.allocate-btn {
    text-align: center;
    width: auto;
    padding: 10px 20px;
    cursor: pointer;
    color: #5c6ac4;
    border: 1px solid #ddd;
    border-radius: 2rem;
    transition: .2s
}

.allocate-btn:hover {
    background: #ddd
}

.link {
    color: #2196f3;
    margin-top: 40px;
    transition: .2s
}

.link:hover {
    color: #0b21ad
}

.score-wrapper {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    width: 7rem;
    height: 7rem;
    overflow: hidden;
    font-size: .75rem;
    background-color: #d5dce4;
    border-radius: 50%;
    box-shadow: 0px 0px 3px 10px #f0f0f0
}

.score-wrapper>.score-wrapper-bar {
    position: absolute;
    bottom: 0;
    width: 100%;
    transition: width 6s ease
}

.score-wrapper>.score-wrapper-text {
    position: absolute;
    font-size: 20px;
    height: 100%;
    width: 100%;
    z-index: 1;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center
}

.score-wrapper .bg-success {
    background-color: #6cbd45 !important
}

.score-wrapper .bg-warning {
    background-color: #ffc107 !important
}

.score-wrapper .bg-danger {
    background-color: #f53d3d !important
}

.bg-sub-info {
    background-color: #35b6cc !important;
    color: #fff
}

.main-progress {
    animation: main-progress1 7s ease-in-out forwards
}

@keyframes main-progress1 {
    0% {
        transform: scale(0)
    }

    95% {
        transform: scale(0)
    }

    100% {
        transform: scale(1)
    }
}

#progress-card {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff
}

.loader {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 5.6;
    animation: loader-in-out 7s ease-in-out forwards
}

@keyframes loader-in-out {
    0% {
        transform: scale(0)
    }

    10% {
        transform: scale(1)
    }

    95% {
        transform: scale(1)
    }

    100% {
        transform: scale(0)
    }
}

.progress-bar {
    animation: loader-bar ease-in-out 3s forwards
}

@keyframes loader-bar {

    0%,
    10% {
        width: 0%
    }

    50%,
    70% {
        width: 50%
    }

    80%,
    95% {
        width: 97%
    }

    100% {
        width: 100%
    }
}

@media screen and (max-width: 500px) {
    .content-center {
        display: block
    }

    .mobile-hide-500 {
        display: none
    }

    .save-btn {
        font-size: 14px
    }

    .title-1 {
        font-size: 20px
    }
}

@media screen and (max-width: 450px) {
    .mobile-hide-450 {
        display: none
    }
}

.edit-btn i {
    margin-right: 10px
}

@media screen and (max-width: 450px) {
    .edit-btn i {
        margin-right: 0
    }
}

.switch.switch-text {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 48px;
    height: 24px;
    background-color: rgba(0, 0, 0, 0);
    cursor: pointer
}

.switch.switch-text .switch-input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0
}

.switch.switch-text .switch-label {
    position: relative;
    display: block;
    height: inherit;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    background-color: #dc3545;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    transition: opacity background-color .15s ease-out
}

.switch.switch-text .switch-label::before,
.switch.switch-text .switch-label::after {
    position: absolute;
    top: 50%;
    width: 50%;
    margin-top: -0.5em;
    line-height: 1;
    text-align: center;
    -webkit-transition: inherit;
    -o-transition: inherit;
    -moz-transition: inherit;
    transition: inherit
}

.switch.switch-text .switch-label::before {
    right: 1px;
    color: #e9ecef;
    content: attr(data-off)
}

.switch.switch-text .switch-label::after {
    left: 1px;
    color: #fff;
    content: attr(data-on);
    opacity: 0
}

.switch.switch-text .switch-input:checked~.switch-label::before {
    opacity: 0
}

.switch.switch-text .switch-input:checked~.switch-label::after {
    opacity: 1
}

.switch.switch-text .switch-handle {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-color: #fff;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    -webkit-transition: left .15s ease-out;
    -o-transition: left .15s ease-out;
    -moz-transition: left .15s ease-out;
    transition: left .15s ease-out
}

.switch.switch-text .switch-input:checked~.switch-handle {
    left: 26px
}

.switch.switch-text.switch-lg {
    width: 56px;
    height: 28px
}

.switch.switch-text.switch-lg .switch-label {
    font-size: 12px
}

.switch.switch-text.switch-lg .switch-handle {
    width: 24px;
    height: 24px
}

.switch.switch-text.switch-lg .switch-input:checked~.switch-handle {
    left: 30px
}

.switch.switch-text.switch-sm {
    width: 40px;
    height: 20px
}

.switch.switch-text.switch-sm .switch-label {
    font-size: 8px
}

.switch.switch-text.switch-sm .switch-handle {
    width: 16px;
    height: 16px
}

.switch.switch-text.switch-sm .switch-input:checked~.switch-handle {
    left: 22px
}

.switch.switch-text.switch-xs {
    width: 32px;
    height: 16px
}

.switch.switch-text.switch-xs .switch-label {
    font-size: 7px
}

.switch.switch-text.switch-xs .switch-handle {
    width: 12px;
    height: 12px
}

.switch.switch-text.switch-xs .switch-input:checked~.switch-handle {
    left: 18px
}

.switch-pill .switch-label,
.switch.switch-3d .switch-label,
.switch-pill .switch-handle,
.switch.switch-3d .switch-handle {
    -webkit-border-radius: 50em !important;
    -moz-border-radius: 50em !important;
    border-radius: 50em !important
}

.switch-pill .switch-label::before,
.switch.switch-3d .switch-label::before {
    right: 2px !important
}

.switch-pill .switch-label::after,
.switch.switch-3d .switch-label::after {
    left: 2px !important
}

.switch-success>.switch-input:checked~.switch-label {
    background: #28a745 !important;
    border-color: #1e7e34
}

.switch-success>.switch-input:checked~.switch-handle {
    border-color: #1e7e34
}

.switch-success-outline>.switch-input:checked~.switch-label {
    background: #fff !important;
    border-color: #28a745
}

.switch-success-outline>.switch-input:checked~.switch-label::after {
    color: #28a745
}

.switch-success-outline>.switch-input:checked~.switch-handle {
    border-color: #28a745
}

.switch-success-outline-alt>.switch-input:checked~.switch-label {
    background: #fff !important;
    border-color: #28a745
}

.switch-success-outline-alt>.switch-input:checked~.switch-label::after {
    color: #28a745
}

.switch-success-outline-alt>.switch-input:checked~.switch-handle {
    background: #28a745 !important;
    border-color: #28a745
}

.fas,
.fa {
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background-color: rgba(0, 0, 0, .093);
    border-radius: 50%
}

.fas.unstyled,
.fa.unstyled {
    background-color: unset;
    border-radius: unset
}

.card-count .fas,
.card-count .fa {
    font-size: 24px;
    display: initial;
    align-items: initial;
    justify-content: initial;
    width: initial;
    height: initial;
    background-color: initial;
    border-radius: initial
}

.card-count {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.card-count .text-right {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    gap: 5px
}

.card-count .text-right h2 {
    margin: 0
}

@media(min-width: 800px) {
    .card-count {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between
    }

    .card-count .text-right {
        display: block;
        text-align: end
    }

    .card-count .text-right h2 {
        margin: 0
    }

    .card-count .fas,
    .card-count .fa {
        border-right: 1px solid #ddd
    }

    .users-count .card-count h3 {
        border-right: 1px solid #e6e6e6
    }
}

.chart-wrap {
    position: relative;
    padding: 1rem;
    transition: .5s;
    background-color: #fff;
    border-radius: 10px
}

.fa-expand-alt {
    display: none;
    position: absolute;
    top: .5rem;
    right: .5rem;
    padding: .5rem;
    cursor: pointer;
    transition: .3s
}

.fa-expand-alt:hover {
    background-color: #f1f1f1
}

.chart-wrap:hover {
    box-shadow: 0 0 0 1px inset #666
}

.chart-wrap:hover .fa-expand-alt {
    display: block
}

.expand {
    transform: translateY(100%);
    position: fixed;
    bottom: 0;
    top: 3rem;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    background-color: #fff;
    box-shadow: 0 0 0 10000px rgba(0, 0, 0, .5) !important;
    box-shadow: 0 0 0 100vmax rgba(0, 0, 0, .5) !important;
    transform-origin: bottom left;
    animation: popupAnim forwards alternate .5s ease-in-out;
    overflow: auto
}

.expand .fa-expand-alt {
    display: block
}

@keyframes popupAnim {
    from {
        transform: translateY(100%)
    }

    to {
        transform: translateY(0)
    }
}

.users-count .card-count {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all var(--transition-base)
}

.users-count .card-count:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow)
}

.users-count .card-count h2 {
    font-weight: 700;
    font-size: 2rem;
    margin: 0;
    color: var(--text-primary)
}

.users-count .card-count h3 {
    flex: 0 0 40%;
    margin: 0
}

.users-count .card-count h3 i {
    display: inline-flex;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xl);
    font-size: 1.5rem
}

.bg-light-aqua {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%) !important;
    box-shadow: 0 0 0 12px rgba(6, 182, 212, .15) !important;
    color: #fff !important
}

.bg-light-orange {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
    box-shadow: 0 0 0 12px rgba(245, 158, 11, .15) !important;
    color: #fff !important
}

.bg-light-purple {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%) !important;
    box-shadow: 0 0 0 12px rgba(168, 85, 247, .15) !important;
    color: #fff !important
}

.bg-light-red {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%) !important;
    box-shadow: 0 0 0 12px rgba(236, 72, 153, .15) !important;
    color: #fff !important
}

.activities ul {
    padding-left: .5rem
}

.activities ul li {
    list-style-type: disc
}

.top-side {
    background-size: cover;
    background-position: top center
}

.color-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 2px
}

.bg-purple {
    background-color: #6f42c1
}

.card-header-ne {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.card-header-ne .title {
    vertical-align: middle
}

.text-danger {
    color: red
}

.user-picture {
    width: 100px;
    height: 100px;
    border: 3px solid #fff;
    margin-top: -50px;
    object-fit: cover
}

.dashboard-description strong {
    font-weight: 600
}

.card .h5 {
    font-size: 1.25rem;
    color: #333;
    margin-top: 15px;
    margin-bottom: 15px
}

.text-danger {
    color: red
}

.bg-light-warning {
    background-color: #fcd96f !important
}

#progress-main {
    display: none
}

.class-item {
    display: block;
    border-left: 4px solid var(--secondary);
    padding: var(--spacing-lg) !important;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px var(--shadow);
    transition: all var(--transition-base);
    margin-bottom: var(--spacing-md)
}

.class-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 16px var(--shadow);
    border-left-color: var(--primary)
}

.class-item p {
    padding: var(--spacing-xs) 0;
    margin: 0;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    font-size: .875rem
}

.class-item a {
    padding: var(--spacing-xs) 0;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast)
}

.class-item a:hover {
    color: var(--primary)
}

.breadcrumb {
    background: rgba(0, 0, 0, 0);
    padding: var(--spacing-md) 0;
    margin-bottom: var(--spacing-lg)
}

.breadcrumb .breadcrumb-item {
    color: var(--text-secondary);
    font-size: .875rem
}

.breadcrumb .breadcrumb-item a {
    color: var(--text-secondary)
}

.breadcrumb .breadcrumb-item a:hover {
    color: var(--primary)
}

.breadcrumb .breadcrumb-item.active {
    color: var(--text-primary);
    font-weight: 500
}

.breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: var(--text-muted)
}

.table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0
}

.table thead th {
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: .75rem;
    letter-spacing: .5px;
    padding: var(--spacing-md) var(--spacing-lg);
    border-bottom: 2px solid var(--border-color)
}

.table tbody tr {
    transition: background var(--transition-fast)
}

.table tbody tr:hover {
    background: var(--bg-secondary)
}

.table tbody tr td {
    padding: var(--spacing-md) var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary)
}

.table tbody tr td a {
    color: var(--primary);
    font-weight: 500
}

.table tbody tr td a:hover {
    color: var(--primary-dark);
    text-decoration: underline
}