@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Poppins:200,300,400,600,700,800");

* {
    margin: 0;
    padding: 0;
}
body {
    background-color: #1e1e2f;
    font-family: "Poppins", sans-serif;
    scrollbar-width: thin;
    scrollbar-color: #15356f #1d8cf8;
}

.top-bar {
    background-color: #1e1e2f;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-picture {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-left: 15px;
}

.sidebar {
    background-color: #1d8cf8;
    list-style: none;
    margin-top: 25px;
    padding-top: 20px;
    padding-right: 20px;
    border-radius: 8px;
    height: 100%;
}

.sidebar li {
    position: relative;
    cursor: pointer;
    padding-left: 10px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    padding: 20px 30px 20px 15px;
    margin-left: 20px;
    list-style-type: none;
}

.sidebar li.active::before {
    opacity: 1;
}

.sidebar li.active-menu.active span {
    opacity: 1;
}

.sidebar li:not(.active):hover::before {
    opacity: 0.7;
}

.sidebar li span {
    display: inline-block;
    margin-left: 15px;
    opacity: 0.7;
    transition: opacity 0.3s ease-in-out;
    line-height: 1.5;
}

.sidebar li span i {
    margin-right: 15px;
}

.sidebar li.active-menu:hover span {
    opacity: 1;
}

.sub-menu a {
    opacity: 0.7;
}

.sub-menu a:hover {
    opacity: 1;
}

.sidebar-title {
    font-size: 14px;
    color: white;
    margin-bottom: 10px;
    text-align: center;
}

.sidebar-title hr {
    border: none;
    border-bottom: 1px solid white;
    width: 30px;
    margin-top: 2px;
    padding: 0;
}

.main-content {
    padding: 20px;
    width: 100%;
    margin: 0 auto;
}

.dashbaord-heading {
    margin-left: 80px;
    margin-top: 8px;
}

.main-container {
    margin-top: 35px;
    margin-left: 300px;
    padding: 20px;
}

a {
    text-decoration: none;
    color: white;
}

.dropdown-trigger {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    right: -15px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
}

.dropdown-content.show {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
    border-radius: 5px;
}

.dropdown-content a:hover {
    background-color: #f0f0f0;
}

.dropdown-trigger {
    cursor: pointer;
}

.sidebar li.menu {
    padding: 0px;
    font-size: 20px;
    cursor: auto;
}

.sidebar li.active::before {
    opacity: 1;
}

.sub-menu {
    margin-left: 20px;
}

.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.fixed-left {
    position: fixed;
    top: 50px;
    bottom: 0;
    left: 10px;
    width: 280px;
    z-index: 1000;
    overflow-y: auto;
}

.sidebar::-webkit-scrollbar {
    width: 8px;
}

.sidebar::-webkit-scrollbar-thumb {
    background-color: #1d8cf8;
    border-radius: 8px;
}

td,
th {
    white-space: nowrap;
}

.not-allowed-cursor {
    cursor: not-allowed;
    color: hsl(0, 100%, 52%);
}

.not-allowed-cursor:hover {
    color: hsl(0, 100%, 52%);
}

a,
a:active,
a:focus,
a:hover,
button {
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
    display: inline-block;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
hr {
    padding: 0;
    margin: 0;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.common_style .fs40 {
    font-size: 25px;
}
.common_style .fs30 {
    font-size: 30px;
}
.common_style .fs24 {
    font-size: 24px;
}
.common_style .fs19 {
    font-size: 19px;
}
.common_style .fs16 {
    font-size: 16px;
}
.common_style .fs14 {
    font-size: 14px;
}
.common_style .fs12 {
    font-size: 12px;
}
.common_style .fs11 {
    font-size: 11px;
}

.common_style .text-900 {
    font-weight: 700;
}
.common_style .text-800 {
    font-weight: 600;
}
.common_style .text-700,
.common_style b,
.common_style strong {
    font-weight: 500;
}
.common_style .text-600 {
    font-weight: 400;
}
.common_style .text-500 {
    font-weight: 300;
}
.common_style .text-400 {
    font-weight: 200;
}
.common_style .text-300 {
    font-weight: 100;
}

.text-muted {
    color: #a4a6b3 !important;
}
.text-gray {
    color: #9fa2b4 !important;
}

.border-start {
    border-left: 1px solid #dfe0eb !important;
}
.border {
    border: 1px solid #dfe0eb !important;
}

.text-primary {
    color: #3751ff !important;
}
.text-light {
    color: #c5c7cd !important;
}

.bg-dark {
    background-color: #1f1e30 !important;
}

.btn {
    box-shadow: none !important;
}
.btn-group {
    display: flex;
    justify-content: flex-end;
}
.btn-group .btn-check:checked + .btn-outline-primary {
    background-color: #c053ee;
    border-color: #c053ee;
}
.btn-outline-primary {
    color: #c053ee;
    border-color: #c053ee;
}
.btn-outline-primary:hover {
    color: #fff;
    background-color: #c053ee;
    border-color: #c053ee;
}
.btn-check:active + .btn-outline-primary,
.btn-check:checked + .btn-outline-primary,
.btn-outline-primary.active,
.btn-outline-primary.dropdown-toggle.show,
.btn-outline-primary:active {
    color: #fff;
    background-color: #c053ee;
    border-color: #c053ee;
}

.radius50p {
    border-radius: 50%;
}
.radius8 {
    border-radius: 8px;
}

.min_h24 {
    min-height: 24px;
}
.min_h160 {
    min-height: 160px;
}
.min_h375 {
    min-height: 375px;
}
.min_h409 {
    min-height: 409px;
}
.min_h582 {
    min-height: 582px;
}

.site_logo,
.page_header {
    min-height: 128px;
    padding: 36px 32px;
}
.site_logo {
    width: 100%;
}

.site_nav {
    height: calc(100% - 160px);
    padding: 20px;
    border-radius: 10px;
    background: rgb(49, 96, 246);
    background: linear-gradient(
        344deg,
        rgba(49, 96, 246, 1) 0%,
        rgba(42, 110, 247, 1) 35%,
        rgba(29, 140, 248, 1) 100%
    );
}
.site_nav a {
    min-height: 56px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 0 25px;
}
.site_nav a.text-white {
    min-height: 56px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 0 25px;
}

.site_nav a .nav_icon {
    min-width: 30px;
}

.site_nav .active a,
.site_nav li:hover a {
    position: relative;
}
.site_nav .active a:before,
.site_nav li:hover a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    transform: translateY(-50%);
}
.site_nav li:hover a:before {
    background: rgba(255, 255, 255, 0.8);
}
.site_nav .active a:before,
.site_nav li.active:hover a:before {
    background: #fff;
}
.site_nav a {
    color: rgba(255, 255, 255, 0.8) !important;
}
.site_nav li:hover a {
    color: #fff !important;
}
.site_nav .active a,
.site_nav li.active:hover a {
    color: #fff !important;
}
.site_nav ul li:first-child {
    border-bottom: 1px solid #8fc3fc;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.nav-items:hover {
    opacity: 0.7;
}

.search_notify .text-light {
    color: #c5c7cd !important;
}

.li_me28 > :not(:last-child) {
    margin-right: 28px;
}
.li_me33 > :not(:last-child) {
    margin-right: 33px;
}
.notify_active {
    top: -7px;
    right: -6px;
}

.avater_outline {
    border: 1.5px solid #dfe0eb !important;
    padding: 2px;
}

.right_content {
    padding: 0 30px 30px;
}

.logo-vl {
    border-left: 1px solid white;
    height: 50px;
    margin-left: 5px;
}

.fixed-notification {
    position: fixed;
    left: calc(50%);
    transform: translateX(-50%);
    margin: 0 auto;
    z-index: 1000;
}
.custom-alert {
    padding: 13px 16px;
}
.hover:hover {
    opacity: 0.7;
}

.allocations-notification {
    position: relative;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.custom-alert {
    padding: 13px 16px;
}

.d-none {
    display: none;
}

.alert {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 15px;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.sort-selected {
    color: #1C8CF8;
    cursor: pointer;
}

.sort-highlight {
    color:hsl(234, 50%, 75%);
    cursor: pointer;
}

.sort-highlight:hover {
    color: hsl(235, 12%, 83%);
}
