@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
	/*#24318c*/
	--color-primary: #024166;
	--color-danger: #ff7782;
	--color-success: #41f1b6;
	--color-warning: #ffbb55;
	--color-white: #fff;
	--color-info-dark: #7d8da1;
	--color-info-light: #dce1eb;
	--color-dark: #363949;
	--color-light: rgba(132, 139, 200, 0.18);
	--color-primary-variant: #111e88;
	--color-dark-variant: #677483;
	--color-background: #f6f6f9;
	--bs-body-color: #212529;
	--card-border-radius: 0.5rem;
	--border-radius-1: 0.4rem;
	--border-radius-2: 0.8rem;
	--border-radius-3: 1.2rem;
	--card-padding: 1.8rem;
	--padding-1: 1.2rem;
	--box-shadow: 0 0.5rem 1rem var(--color-light);
}

.dark-theme-variables{
	--color-background:#181a1e;
	--color-white:#5e5e5e;
	--color-dark:#edeffd;
	--color-dark-variant:#a3bdcc;
	--color-light:rgba(0,0,0,0.4);
	--box-shadow:0 2rem 3rem var(--color-light);
	--color-primary:#000000;
	
	--bs-body-color:#c1c1c1;
	
}
*{
	margin: 0;
	padding:0;
	outline:0;
	/*appearance:none;*/
	border:0;
	text-decoration: none !important;
	list-style: none;
	box-sizing:border-box;
}
/* START SCROLL */ 
::-webkit-scrollbar {
  width: 5px;
	height:5px;
}
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #ECECEC;
}
::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
	background-color: #F0F0F0;
}
::-webkit-scrollbar-button {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
	background-color: #DBDBDB;
}
::-webkit-scrollbar-button:vertical:increment {
  background-position: -64px -16px;
}
::-webkit-scrollbar-button:vertical:decrement {
  background-position: 0 -16px;
}
::-webkit-scrollbar-button:horizontal:increment {
  background-position: -32px -16px;
}
::-webkit-scrollbar-button:horizontal:decrement {
  background-position: -96px -16px;
}
::-webkit-scrollbar-corner {
  background-color: #000000;
}
/* END SCROLL */
html{
	font-size: 14px;
}
body{
	width:100vw;
	height:100vh;
	font-family:poppins, sans-serif;
	font-size:0.88rem;
	background: var(--color-background);
	/*user-select:none;*/
	overflow-x: hidden;
	color:var(--color-dark);
}
a{
	color:var(--color-dark);
}
img{
	display:block;
	width:100%;
}
h1{
	font-weight: 800;
	font-size:1.8rem;
}
h2{
	font-size:1.4rem;
}
h3{
	font-size:0.87rem;
}
h4{
	font-size:0.8rem;
}
h5{
	font-size:0.77rem;
}
small{
	font-size:0.75rem;
}

::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

p{
	color:var(--color-dark-variant);
}
b{
	color:var(--color-dark);
}

.primary{
	color:var(--color-primary);
}
.danger{
	color:var(--color-danger);
}
.success{
	color:var(--color-success);
}
.warning{
	color:var(--color-warning);
}
.white{
	background: var(--color-white);
}




.wrapper {
    display: flex;
}

.main {
    min-height: 100vh;
    width: calc(100% - 50px);
    overflow: hidden;
    transition: all 0.35s ease-in-out;
    background: var(--color-background);
}
.sidebar-link .material-symbols-outlined{vertical-align: middle !important;}

#sidebar {
    width: 50px;
    min-width: 50px;
    z-index: 1000;
    transition: all .25s ease-in-out;
    background: var(--color-primary);
    display: flex;
    flex-direction: column;
	
}

#sidebar.expand {
    width: 300px;
    min-width: 300px;
}

.toggle-btn {
    background-color: transparent;
    cursor: pointer;
    border: 0;
    padding: 1rem 0.625rem;

}

.toggle-btn span {
    font-size: 1.5rem;
    color: var(--color-white);
}

.sidebar-logo {
    margin: auto 0;
}

.sidebar-logo a {
    color: var(--color-white);
    font-size: 1.15rem;
    font-weight: 600;
}
.sidebar-logo img{width:250px;}
#sidebar:not(.expand) .sidebar-logo,
#sidebar:not(.expand) a.sidebar-link .text {
    display: none;
}

.sidebar-nav {
    padding: 2rem 0;
    flex: 1 1 auto;
}

a.sidebar-link {
    padding: .625rem 0.625rem;
    color: var(--color-white);
    display: block;
    font-size: 0.9rem;
    white-space: nowrap;
    border-left: 3px solid transparent;
}

.sidebar-link i {
    font-size: 1.1rem;
    margin-right: .75rem;
}

a.sidebar-link:hover, a.active {
    background-color: rgba(255, 255, 255, .075);
    border-left: 3px solid var(--color-warning);
}

.sidebar-item {
    position: relative;
}

#sidebar:not(.expand) .sidebar-item .sidebar-dropdown {
    position: absolute;
    top: 0;
    left: 50px;
    background-color: var(--color-primary);
    padding: 0;
    min-width: 15rem;
    display: none;
}

#sidebar:not(.expand) .sidebar-item:hover .has-dropdown+.sidebar-dropdown {
    display: block;
    max-height: 15em;
    width: 100%;
    opacity: 1;
}

#sidebar.expand .sidebar-link[data-bs-toggle="collapse"]::after {
    border: solid;
    border-width: 0 .075rem .075rem 0;
    content: "";
    display: inline-block;
    padding: 2px;
    position: absolute;
    right: 1.5rem;
    top: 1.4rem;
    transform: rotate(-135deg);
    transition: all .2s ease-out;
}

#sidebar.expand .sidebar-link[data-bs-toggle="collapse"].collapsed::after {
    transform: rotate(45deg);
    transition: all .2s ease-out;
}

.theme-btn{
	display: flex;
	background: var(--color-light);
	width: 5rem;
	height:2rem;
	border-radius: var(--border-radius-2);
	cursor: pointer;
}
.theme-btn span{
	width: 50%;
	height:100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
}
.theme-btn .active{
	background: var(--color-dark);
	border-radius: var(--border-radius-2);
	color:var(--color-white);
}

.cards{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap:1.6rem;
	margin-right: 1rem;
}
.cards > div{
	background: var(--color-white);
	padding:var(--card-padding);
	border-radius: var(--card-border-radius);
	margin-top:1rem;
	box-shadow: var(--box-shadow);
	transition: all 300ms ease;
	
}
.cards > div:hover{
	box-shadow: none;
}
.card .canvas{
	height:300px !important;
	width:300px !important;
	margin: auto;
}
.box{
	background: var(--color-white);
	padding:var(--card-padding);
	border-radius: var(--card-border-radius);
	margin-top:1rem;
	box-shadow: var(--box-shadow);
	transition: all 300ms ease;
}
.box:hover{
	box-shadow: none;
}
.select .dropdown-toggle::after{float:right; margin-top: 1%;}
.dropdown .dropdown-toggle::after{float:right; margin-top: 1%;}
@media screen and (max-width: 1300px){
.cards{
	grid-template-columns: repeat(2, 1fr);
}	
}
@media screen and (max-width: 1024px){
.cards{
	grid-template-columns: repeat(1, 1fr);
}	
}
.simple-pagination li {
	display: inline;
	list-style-type: none;
	float: left;
	border: none;
}

.pagination {
	display: flex;
	padding-left: 0;
	list-style: none;
	border-radius: 0.25rem;
}

.page-link {
	position: relative;
	display: block;
	padding: 0.5rem 0.75rem;
	margin-left: -1px;
	line-height: 1.25;
	color: #007bff;
	background-color: #fff;
	border: 1px solid #dee2e6;
}

.page-link:hover {
	z-index: 2;
	color: #0056b3;
	text-decoration: none;
	background-color: #e9ecef;
	border-color: #dee2e6;
}

.page-link:focus {
	z-index: 2;
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.page-item:first-child .page-link {
	margin-left: 0;
	border-top-left-radius: 0.25rem;
	border-bottom-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
	border-top-right-radius: 0.25rem;
	border-bottom-right-radius: 0.25rem;
}

.page-item.active .page-link {
	z-index: 1;
	color: #fff;
	background-color: #007bff;
	border-color: #007bff;
}

.page-item.disabled .page-link {
	color: #6c757d;
	pointer-events: none;
	cursor: auto;
	background-color: #fff;
	border-color: #dee2e6;
}

.pagination-lg .page-link {
	padding: 0.75rem 1.5rem;
	font-size: 1.25rem;
	line-height: 1.5;
}

.pagination-lg .page-item:first-child .page-link {
	border-top-left-radius: 0.3rem;
	border-bottom-left-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link {
	border-top-right-radius: 0.3rem;
	border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
	padding: 0.25rem 0.5rem;
	font-size: 0.875rem;
	line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
	border-top-left-radius: 0.2rem;
	border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
	border-top-right-radius: 0.2rem;
	border-bottom-right-radius: 0.2rem;
}

.dropdown-toggle {
	white-space: nowrap;
}

.dropdown-toggle::after {
	display: inline-block;
	margin-left: 0.255em;
	vertical-align: 0.255em;
	content: "";
	border-top: 0.3em solid;
	border-right: 0.3em solid transparent;
	border-bottom: 0;
	border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
	margin-left: 0;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1000;
	display: none;
	float: left;
	min-width: 10rem;
	padding: 0.5rem 0;
	margin: 0.125rem 0 0;
	font-size: 1rem;
	color: #001737;
	text-align: left;
	list-style: none;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #e8eff9;
	border-radius: 0.25rem;
}


@media (max-width: 991.98px) {
	.cascading-right {
		margin-right: 0;
	}
}


/*table.dataTable thead > tr > th.sorting:before,
table.dataTable thead > tr > th.sorting:after,
table.dataTable thead > tr > th.sorting_asc:before,
table.dataTable thead > tr > th.sorting_asc:after,
table.dataTable thead > tr > th.sorting_desc:before,
table.dataTable thead > tr > th.sorting_desc:after,
table.dataTable thead > tr > th.sorting_asc_disabled:before,
table.dataTable thead > tr > th.sorting_asc_disabled:after,
table.dataTable thead > tr > th.sorting_desc_disabled:before,
table.dataTable thead > tr > th.sorting_desc_disabled:after,
table.dataTable thead > tr > td.sorting:before,
table.dataTable thead > tr > td.sorting:after,
table.dataTable thead > tr > td.sorting_asc:before,
table.dataTable thead > tr > td.sorting_asc:after,
table.dataTable thead > tr > td.sorting_desc:before,
table.dataTable thead > tr > td.sorting_desc:after,
table.dataTable thead > tr > td.sorting_asc_disabled:before,
table.dataTable thead > tr > td.sorting_asc_disabled:after,
table.dataTable thead > tr > td.sorting_desc_disabled:before,
table.dataTable thead > tr > td.sorting_desc_disabled:after {
	font-size: 1.5em !important;
	opacity: 0.7 !important;
}

table.dataTable thead > tr > th.sorting_asc:before,
table.dataTable thead > tr > th.sorting_desc:after,
table.dataTable thead > tr > td.sorting_asc:before,
table.dataTable thead > tr > td.sorting_desc:after {
	opacity: 1 !important;
	color: orange !important;
}*/

@media only screen and (max-width: 768px) {
	.loginbox {
		width: 90%;
	}
}

/*table.dataTable tbody th, table.dataTable tbody td, table.dataTable thead th {
	border: 1px solid #cccccc !important;	
}*/
.theadstyle {
	background-color: lightblue !important;	
	color:darkslategray!important;
}

.custom-modal {
	max-width: 95vw; /* Adjust width as needed */
	width: 95%;	
}

.custom-modal1 {
	max-width: 100vw; /* Adjust width as needed */
	width: 100%;
}

[data-hide="true"] {
	display: none;
}
.disabled-icon {
	pointer-events: none;
	opacity: 0.5;
}