/* ===================================
                SCROLLBAR
   =================================== */

* {
    scrollbar-width: thin;
    scrollbar-color: #2a5788 #343a40;
}

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

*::-webkit-scrollbar-track {
    background: #2a5788;
}

*::-webkit-scrollbar-thumb {
    background: #343a40;
}


/* ===================================
                DARKMODE
   =================================== */

.dark-mode .btn-header {
    color: white;
    background: #343a40;
}

.dark-mode .btn-header {
    color: white;
    background: #343a40;
}


/* ===================================
                SIDEBAR
   =================================== */

.main-sidebar .brand-link {
    height: 57px;
}

.main-sidebar .brand-link .brand-image {
    margin-top: 0;
    max-height: 35px;
}

.main-sidebar .brand-link .brand-text {
    height: 25px;
}


/* ===================================
                NAVBAR
   =================================== */

.navbar {
    padding: 0.8rem 0.5rem 0.25rem 0.5rem;
}

.navbar-nav>.user-menu .user-image {
    margin-top: 0;
}

.navbar-nav .nav-item .nav-link .navbar-badge {
    top: 0px;
    height: 20px;
    color: white;
    min-width: 20px;
    font-size: 12px;
    line-height: 14px;
    font-weight: bold;
    position: absolute;
    text-align: center;
    border-radius: 100%;
    background: #E94B3B;
    display: inline-block;
    box-shadow: 0.5px 0.2px 1px rgb(0 0 0 / 50%);
    z-index: 1;
}

.switch-dark-mode {
    margin: 5px;
    transform: scale(1.5);
}


/* ===================================
                HEADER
   =================================== */

.wrapper .content-wrapper {
    position: relative;
    background-color: rgb(230, 230, 230);
}

.wrapper .content-header .breadcrumb {
    margin: 5px 10px;
    font-size: 18px;
}

.content-header .breadcrumb .breadcrumb-item a {
    color: #FFF;
}

.content-header .breadcrumb .breadcrumb-item:last-child a {
    color: #adb5bd;
}

.wrapper .content-wrapper .content-gradient {
    position: absolute;
    width: 100%;
    height: 250px;
    background: linear-gradient(90deg, #0c2646 0, #204065 60%, #2a5788);
}

.btn-header {
    margin-right: 10px;
    padding: 10px 20px;
    margin-bottom: 1rem;
    color: #212529;
    background-color: white;
}

.btn-header span i {
    margin-right: 5px;
}

.badge {
    padding: 0.4em 0.5em;
}


/* ===================================
                TABLE
   =================================== */

.table th,
.table td {
    vertical-align: middle;
}

.table .empty-table {
    font-size: 18px;
    text-align: center;
}

.table .empty-table p {
    margin: 50px 0;
    opacity: 0.5;
}

.note-editable {
    color: #212529;
    background-color: white;
}


/* ===================================
                CARD
   =================================== */
.card-title{
    color: #3f6791;
    font-weight: bold;
}
.dark-mode .card-title{
    color: #3498db;
}
.card-body {
    overflow: hidden;
}
.card-tools .fa-sync-alt{
    color: #ADB5BD;
}
.card-tools .fa-sync-alt:hover{
    color: #495057;
}
.card .card-body label{
    font-weight: normal;
}
#profile .img-profile {
    height: 10rem;
    width: 10rem;
}

label.required::after {
    content: " *";
    color: red;
}


.color {
    float: left;
    width: 25px;
    height: 25px;
    display: block;
    margin-right: 10px;
    border-radius: 50%;
    background-color: white;
}
/* ===================================
                DASHBOARD
   =================================== */
#dashboard{
    position: relative;
}
#dashboard .categories{
    width: 100%;
    display: block;
    padding: 5px 0;
    margin-bottom: 25px;
}

#dashboard .categories .category{
    float: left;
    background-color: #FFF;
    border-radius: 5px;
    padding: 0;
    margin: 5px 10px 5px 0;
    min-width: 300px;
    overflow: hidden;
}
#dashboard .categories .category .info{
    padding: 15px 20px 17px 20px;
}
#dashboard .categories .category .progress{
    height: 5px;
    background-color: #dc3545;
}
#dashboard .categories .category .progress .bg-success{
    background-color: #28a745;
}
.text-lightblue {
    color: #3c8dbc !important;
}

.text-navy {
    color: #001f3f !important;
}

.text-olive {
    color: #3d9970 !important;
}

.text-lime {
    color: #01ff70 !important;
}

.text-fuchsia {
    color: #f012be !important;
}

.text-maroon {
    color: #d81b60 !important;
}

.text-blue {
    color: #007bff !important;
}

.text-indigo {
    color: #6610f2 !important;
}

.text-purple {
    color: #6f42c1 !important;
}

.text-pink {
    color: #e83e8c !important;
}

.text-red {
    color: #dc3545 !important;
}

.text-orange {
    color: #fd7e14 !important;
}

.text-yellow {
    color: #ffc107 !important;
}

.text-green {
    color: #28a745 !important;
}

.text-teal {
    color: #20c997 !important;
}

.text-cyan {
    color: #17a2b8 !important;
}

.text-white {
    color: #fff !important;
}

.text-gray {
    color: #6c757d !important;
}

.text-gray-dark {
    color: #343a40 !important;
}

.red,
.red:hover,
.red-hover:hover {
    color: #FFF;
    background: #f44236;
}

.green,
.green:hover,
.green-hover:hover {
    color: #FFF;
    background: #4baf4f;
}

.blue,
.blue:hover,
.blue-hover:hover {
    color: #FFF;
    background: #3f6791;
}

.indigo,
.indigo:hover,
.indigo-hover:hover {
    color: #FFF;
    background: #3e50b4;
}

.orange,
.orange:hover,
.orange-hover:hover {
    color: #FFF;
    background: #ff9700;
}

.gray,
.gray:hover,
.gray-hover:hover {
    color: #FFF;
    background: #9d9d9d;
}

.light-gray,
.light-gray:hover {
    color: #212529;
    background: #e9ecef;
}

.dark-mode .light-gray-hover {
    color: #FFF;
}

.blue-gray,
.blue-gray:hover,
.blue-gray-hover:hover {
    color: #FFF;
    background: #607c8a;
}

.purple,
.purple:hover,
.purple-hover:hover {
    color: #FFF;
    background: #800080;
}

.white,
.white:hover,
.white-hover:hover {
    color: #212529;
    background: #ffffff;
}

.white-border,
.white-border:hover,
.white-border-hover:hover {
    color: #212529;
    background: #ffffff;
    border: 1px solid rgb(206, 212, 218);
}

.bg-warning,
.bg-warning>a,
.btn-warning {
    color: #ffffff !important;
}

.dark-mode a {
    color: #3498db;
}

.dark-mode .btn {
    color: #FFF;
}

.btn-outline-warning:hover {
    color: #FFF;
}