:root {
	--bgColor: #09101a;
	--bg-succes: #55e6a5;
	/* sizes */
	--size-xxs: 0.5rem;
	--size-xs: 0.75rem;
	--size-sm: 0.875rem;
	--size-base: 1rem;
	--size-lg: 1.125rem;
	--size-xl: 1.25rem;
	--size-2xl: 1.5rem;
	--size-2xl-plus: 1.65rem;
	--size-3xl: 1.875rem;
	--size-4xl: 2.25rem;
	--size-5xl: 3rem;
	--size-6xl: 3.75rem;
	--size-7xl: 4.5rem;
	--size-8xl: 6rem;
	--size-9xl: 8rem;
	--size-10xl: 10rem;
}
*,
*::after,
*::before {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
}
button {
	display: inline-block;
	padding: 0;
	border: none;
	background: none;
	cursor: pointer;
	color: inherit;
}
a {
	text-decoration: none;
	color: black;
		//font-size: 10px;
}
ul {
	list-style: none;
}
/* Scrollbar */
body::-webkit-scrollbar {
	width: 8px;

}

body::-webkit-scrollbar-track {
	box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
}

body::-webkit-scrollbar-thumb {
	background-color: var(--color-yellow);
	outline: 1px solid var(--color-yellow);
}
body {
	scroll-behavior: smooth;
	font-family: 'Poppins', sans-serif;
		font-size: 13px;
}

/* .backgraoundColor {
  background-image: linear-gradient(
    to top,
    #1e3c72 0%,
    #1e3c72 1%,
    #2a5298 100%
  ) !important;
} */

/* navbar search bar start  */
.navbar-collapse {
	z-index: 1000;
}
.search-box {
	width: 0;
	height: 0;
	align-self: center;
	border: none;
	background: transparent !important;
	transition: all 0.4s;
}
.active .search-box {
	height: 100%;
	width: 250px !important;
	border: 1px solid gray;
	transition: all 0.4s;
}
.active .search-btn {
	position: absolute;
	right: 47px;
	background-color: transparent !important;
}
.active .close-btn {
	display: block !important;
}

@media only screen and (max-width: 992px) {
	.navbar-collapse {
		opacity: 0;
		transform: translatex(200px);
	}
	.navbar-collapse.show {
		opacity: 1;
		transform: translatex(0px);
		transition: all 0.3s;
	}
}
.transition {
	transition: width 1s !important;
}
/* navbar animation  */
@keyframes rotate-animation {
	0% {
		transform: rotate(0);
	}
	100% {
		transform: rotate(360deg);
	}
}
.rotate-animation {
	animation: rotate-animation 5s linear 2s infinite;
}
/* dashboard navbar end  */

/* dashboard fixed-sidebar start */

.dash-item li {
	padding: 0.5rem;
	border-radius: 8px;
	//color: red;
}

.active1,
.dash-item li:hover {
	background-color: #f1e9e9;
}

/* .list-dropdown::before {
  content: '';
  border: 1px solid #0d6efd;
  position: absolute;
  left: -3px;
  top: 0;
  height: 40px;
} */
.list-dropdown1 {
	position: relative;
}
.list-dropdown1::after {
	position: absolute;
	right: 0;
	top: 0;
	content: '\25be';
	font-size: 30px;
}
.list-dropdown1:hover::after {
	transform: rotate(300deg);
	transition: all 0.5s;
}
.list-dropdown1 ol {
	transition: all 0.5s;
	height: 0;
	overflow: hidden;
	
}
.list-dropdown1:hover ol {
	margin-top: 10px;
	height: 0px;
	transition: all 0.5s;
	height: 78px;
	color: blue;
}
//=========== dropdown2 =================
.list-dropdown2 {
	position: relative;
}
.list-dropdown2::after {
	position: absolute;
	right: 0;
	top: 0;
	content: '\25be';
	font-size: 30px;
}
.list-dropdown2:hover::after {
	transform: rotate(300deg);
	transition: all 0.5s;
}
.list-dropdown2 ol {
	transition: all 0.5s;
	height: 0;
	overflow: hidden;
	
}

.list-dropdown2:hover ol {
	margin-top: 10px;
	height: 0px;
	transition: all 0.5s;
	height: 110px;
	color: blue;
}
//=========== ./ dropdown2 =================


/* dashboard fixed-sidebar end */

.sidebar {
/* 	 position: fixed;
	z-index: 1000; */
}

.sidebar {
    position: fixed; /* Keeps it above other elements */
    left: 0;
    top: 0;
    //height: 100vh;
   // width: 250px;
    z-index: 1000;
   // background-color: white;
}




.content,footer {
	margin-left: 70px;
	margin-top: 70px;
	z-index: 80;
	transition: all 0.5s;
}

.side2 {
	width: 0 !important;
	padding: 0;
	opacity: 0;
	overflow: hidden;
	transition: all 0.4s;
}
.sidebar:hover .side2 {
	width: 270px !important;
	opacity: 1;
	overflow: hidden;
	transition: all 0.4s;
}

@media only screen and (max-width: 991px) {
	.sidebar-section {
		position: absolute;
		left: -500px;
	}
	.content {
		margin-left: 0px;
		transition: all 0.5s;
	}

	.expaned .sidebar-section {
		position: absolute !important;
		left: 0px !important;
		top: 0;
	}
	.expaned .side2 {
		opacity: 1;
		width: 270px !important;
		overflow: hidden;
		transition: opacity 0.3s;
	}
	.content {
		margin-left: 40px !important;
		margin-top: 60px;
	}
}

.expaned .side2 {
	width: 270px !important;
	opacity: 1;
	overflow: hidden;
	transition: all 0.4s;
}
.expaned .content {
	margin-left: 290px;
	transition: 0.5s;
}
.expaned .alert-dismissible {
	display: none;
	opacity: 0;
}

/* three_card_section :start  */

.three_card1 {
	background-image: linear-gradient(-20deg, #2b5876 0%, #4e4376 100%);
}
.three_card2 {
	background-image: radial-gradient(
		circle 248px at center,
		#16d9e3 0%,
		#30c7ec 47%,
		#46aef7 100%
	);
}
.three_card3 {
	background-image: linear-gradient(to top, #0ba360 0%, #3cba92 100%);
}
.three_card4 {
	background-image: linear-gradient(to right, #434343 0%, black 100%);
}
