@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{
	--color-primary:#2e2f8b;
	--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:#000000;
	--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;
	--menu-text:#ffffff;
	
	
	--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:#000000;
	--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;
	--menu-text:#f1f1f1;
}
*{
	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 */


/* icons */
/* fallback */
@font-face {
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/MaterialIcons.woff2) format('woff2');
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;

}
/* End Icons */



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) !important;
}
.success{
	color:var(--color-success) !important;
}
.warning{
	color:var(--color-warning);
}
.white{
	background: var(--color-white);
}



.close{font-size:18px; padding:5px; border:1px solid #ffb2b2; color:#ff0000;
	  }

.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-dark);
}

.sidebar-logo {
    margin: auto 0;
}

.sidebar-logo a {
    color: var(--color-white);
    font-size: 1.15rem;
    font-weight: 600;
}
.sidebar-logo img{margin-top: 2px;}
#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(--menu-text);
    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-danger);
}

.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(1, 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(1, 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;
	}
}

.dt-length, .dt-buttons {float: left; margin-right:5px;}
		.dt-search{float:right;}
		.dt-buttons  .btn{border:1px solid #C7C7C7; margin-bottom: 5px;}


.font {
  font-family: "Times New Roman", Times, serif !important;
  color: #000000 !important;
  font-size: 12px !important;
}
table tr td p{color: #000000 !important;}

/* START SCROLL */
::-webkit-scrollbar {
  width: 10px;
      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.8);
  background-color: #8f90fe;
}
::-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 */

/* ===== BOOTSTRAP MODAL FIX ===== */

/*.modal {

    z-index: 3000 !important;

}

.modal-backdrop {

    z-index: 2990 !important;

}



#sidebar {

    z-index: 900 !important;

}



body.modal-open {

    overflow: hidden !important;

} */

