:root {
    --scrollbarBg: rgba(0, 0, 0, 0.05);
    --scrollbarThumb: rgba(0, 0, 0, 0.3);
    --scrollbarWidth: 8px;
    --scrollbarBorder: 0px;
    --scrollbarBorderRadius: calc(var(--scrollbarWidth) / 2);
}

body {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    line-height: 32px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow-x: hidden;
    background: #eff2f7;
}

a {
    text-decoration: none;
}

p {
    font-weight: 500;
}

.btn {
    border-radius: 0.75rem;
}

.btn-none {
    text-decoration: none;
}

.dropdown-item {
    font-size: 14px;
}

.dropdown-menu li a {
    position: relative;
    font-size: 14px;
    line-height: 20px;
}

h4 {
    font-size: 1.15rem;
}

.wrapper {
    align-items: stretch;
    display: flex;
    width: 100%;
}

.sidebar {
    max-width: 264px;
    min-width: 264px;
    transition: margin-left .35s ease-in-out, left .35s ease-in-out, margin-right .35s ease-in-out, right .35s ease-in-out;
}

.sidebar-wrapper {
    height: 100vh;
    overflow: auto;
}

.sidebar .nav > .nav-item {
    margin: 0.125rem 0;
}

.sidebar .nav > .nav-item > .nav-link {
    color: #6f6b7d;
    font-size: 0.9375rem;
    border-radius: 0.375rem;
    margin: 0 0.875rem;
    position: relative;
    display: flex;
    align-items: center;
}

.sidebar .nav > .nav-item > .nav-link:hover {
    color: #5d596c;
    background: #f8f8f8;
}

.sidebar .nav > .nav-item.active > .nav-link {
    /* background: linear-gradient(72.47deg, #7367f0 22.16%, rgba(115, 103, 240, 0.7) 76.47%); */
    background: linear-gradient(72.47deg, #a5a5a5 22.16%, rgb(149 146 185) 76.47%);
    /* box-shadow: 0px 2px 6px 0px rgba(115, 103, 240, 0.48); */
    color: #fff !important;
}

.sidebar .nav .nav-item .nav-item.active > .nav-link {
    /* background: linear-gradient(72.47deg, #7367f0 22.16%, rgba(115, 103, 240, 0.7) 76.47%); */
    background: none;
    box-shadow: 0px 0px 0px 0px;
    color: #000 !important;
}

.sidebar ul.nav > li > ul {
    display: none;
}

.sidebar ul.nav > li.active > ul {
    display: block;
}

.sidebar .nav > .nav-item > .nav-link i {
    flex-grow: 0;
    flex-shrink: 0;
    margin-right: 0.5rem;
}

.sidebar ul.nav > li > ul {
    list-style: none;
    background-color: #efefef;
    margin: 5px 15px 0;
    padding: 4px 12px;
    border-radius: 0.375rem;
}

.sidebar ul.nav > li > ul > li.nav-item {
    font-size: 14px;
}

.sidebar ul.nav > li > ul > li.nav-item a.nav-link {
    color: #6f6b7d;
    font-size: 14px;
    padding: 6px 8px;
}

.sidebar ul.nav > li > ul > li.nav-item.active a.nav-link {
    background: none;
}

/* sidebar scrollbar START */

.sidebar-wrapper {
    scrollbar-width: var(--scrollbarWidth);
    scrollbar-color: var(--scrollbarThumb) var(--scrollbarBg);
}
.sidebar-wrapper::-webkit-scrollbar {
    width: var(--scrollbarWidth);
}
.sidebar-wrapper::-webkit-scrollbar-track {
    background: var(--scrollbarBg);
    border-radius: var(--scrollbarBorderRadius);
}
.sidebar-wrapper::-webkit-scrollbar-thumb {
    background-color: var(--scrollbarThumb);
    border-radius: var(--scrollbarBorderRadius);
    border: var(--scrollbarBorder);
}

.main {
    width: 100%;
}

.main-wrapper {
    height: 100vh;
    overflow: auto;
    width: 100%;
    flex-grow: 1;
}

.sidebar-toggle {
    color: #000;
    font-size: 24px;
    line-height: 1;
    padding: 5px 15px;
    cursor: pointer;
    transition: color .25s ease-in-out;
}
.sidebar-toggle:hover {
    color: #555;
}

.sidebar .nav .fa-solid,
.sidebar .nav .fa-regular {
    width: 20px;
}

.card {
    border-radius: 12px;
    border: none;
}
.card-body {
    flex: 1 1 auto;
    padding: 1.25rem 1.25rem;
    color: var(--bs-card-color);
}

.card-header {
    padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
    margin-bottom: 0;
    color: var(--bs-card-cap-color);
    background-color: var(--bs-card-cap-bg);
    border-bottom: 1px solid #dee2e6;
}
.card-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;
}
.justify-content-between {
    justify-content: space-between !important;
}

.avatar {
  height: 32px;
  width: 32px;
}
.rounded {
  border-radius: var(--bs-border-radius) !important;
}
.me-1 {
  margin-right: .25rem !important;
}
.img-fluid, .img-thumbnail {
  height: auto;
  max-width: 100%;
}
.img-logo {
    max-width: 100%;
    margin-left: 10%;
    vertical-align: middle;
}

.mobile-panel {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    box-shadow: 0.125rem 0 0.25rem rgba(165, 163, 174, 0.3);
}

.mobile-panel-nav {
    margin: 0;
    padding: 8px 4px;
    list-style: none;
    display: flex;
}

.mobile-panel-nav-item {
    width: 25%;
    text-align: center;
    font-size: 10px;
}

.mobile-panel-nav-item.active a {
    color: #7367f0;
}

.mobile-panel-nav-item i {
    display: block;
    font-size: 20px;
}

.footer {
    padding: 30px 2.45rem;
    transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    font-size: calc(0.875rem - 0.05rem);
    font-weight: 400;
    margin-top: auto;
}

.title {
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
}

.form-control-input {
    display: inline-block;
    width: auto;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.dropdown-menu-scrollable {
    max-height: 400px;
    overflow-y: auto;
    padding: 0.5rem 1rem;
}
.modified {
    background-color: #fff3cd !important;
    border-color: #ffeaa7 !important;
    transition: all 0.3s ease;
}
.modified .form-control,
.modified .form-check-input {
    background-color: #fff3cd !important;
    border-color: #ffeaa7 !important;
}
.modified .form-check-input:checked {
    background-color: #ffc107 !important;
    border-color: #ffc107 !important;
}