
/* Start Default Page CSS coding */
.heading{
	font-family: 'Caudex', serif;
	font-size: 2rem;
	font-weight: bold;
	letter-spacing: 2px;
    color: blue;
}
.center-pic-con{
	width: 120px;
	height: 120px;
	border: 1px solid red;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto;
}
.center-content p{
	font-family: 'Poppins', sans-serif !important;
	font-size: 0.9rem;
	font-weight: bold;
	color:#252525;
	margin: 0.3rem 0rem;
}
 /* Start Side menu Bar Coding */
 *{
	margin: 0;
	padding: 0;
	font-family: poppins;
	box-sizing: border-box;
}
.sidebar{
	position: relative;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100%;
	/* background: #11101d; */
	transition: all 0.5s ease;
	padding: 0 16px;
}
.sidebar .nav-links{
	height: 100%;		
}
.sidebar .nav-links li{
	position: relative;
	list-style: none;
	transition: all 0.6s ease;
	/* background-color: wheat; */
	margin: 16px 0;
}
.sidebar .nav-links li .icon-links{
	border-radius: 4px;
}	
.sidebar .nav-links li .icon-links:hover{
	background-color: wheat;	
}
.sidebar .nav-links li .icon-links.active{
	background-color: wheat;
}
.sidebar .nav-links li .icon-links{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.sidebar .nav-links li i{
	height: 50px;
	min-width: 78px;
	text-align: center;
	line-height: 50px;
	color: #323232;
	font-size: 26px;
	transition: all 0.8s ease;
}
.sidebar .nav-links li .arrow{
	height: 50px;
	/* min-width: 26px; */
	text-align: center;
	line-height: 50px;
	color: #323232;
	font-size: 20px;
	transition: all 0.8s ease;
}
.sidebar .nav-links li a{
	text-decoration: none;
	display: flex;
	align-items: center;        
}
.sidebar .nav-links li.showMenu i.arrow{
	transform: rotate(-180deg);
}
.sidebar .nav-links li a .link_name{
	font-size: 16px;
	font-weight: 500;
	color: #0313a1;        
}
.sidebar .nav-links li .sub-menu{
	display: none;
	padding-left: 70px;
}
.sidebar .nav-links li .sub-menu li{
	margin: 8px auto;
}
.sidebar .nav-links li .sub-menu li:hover{
	background-color: rgb(255, 237, 203);
	border-radius: 4px;
}
.sidebar .nav-links li.showMenu .sub-menu{
	display: block;
}
.sidebar .nav-links li .sub-menu a{
	color: #000000;
	font-size: 14px;
	padding: 5px 8px;
	white-space: nowrap;
	opacity: 0.9;
	transition: all 0.3s ease;
	letter-spacing: 0.8px;
	font-weight: normal;
}
.sidebar .nav-links li .sub-menu a:hover{
	opacity: 1;
	
}
.sidebar.close .nav-links li .sub-menu{
	position: absolute;
	left: 100%;
	top: -10px;
	margin-top: 0;
	padding: 10px 20px;
	border-radius: 0 6px 6px 0;
	transition: all 0.4s ease; 
	opacity: 0;
	pointer-events: none;       
}
.sidebar.close .nav-links li:hover .sub-menu{
	top: 0;
	opacity: 1;
	pointer-events: auto;
}
.sidebar .nav-links li .sub-menu .link_name{
	display: none;
}
.sidebar.close .nav-links li .sub-menu .link_name{
	font-size: 18px;
	opacity: 1;
	display: block;
}

/* End Side menu Bar Coding */

.left-con, .right-con{
    height:100vh;
    overflow-y:scroll;
	background-color: ghostwhite;
    }
.left-con{
	width: 50%;
	background-color: ghostwhite;
}
/* End Default Page CSS coding */

/* start student registration */
.inner-heading{
    font-family: sans-serif;
    font-size: 18px;
    background-color: #8d9092;
    color: aliceblue;
    padding: 10px;
    box-sizing: border-box;
    box-shadow: 0px 2px 2px 0px #0005;
   letter-spacing: 0.8px;
}
.strick{
	font-size: 14px;
	color: red;
	font-weight: bold;
}
.select-option, .input-box{background-color: #E9ECEF;}
.next-btn:hover,.back-btn:hover{
    color: green !important;
    font-weight: bold;
}
.step-one,.step-two,.step-three,.step-four,.step-five,.step-six{
    background:white;
}
/* end student registration */

/* data table css coding */

th{
    padding: 4px 8px;
    background: lightgray;
    font-family: poppins;
    font-size: 14px;
    color: #252525;
}  
td{
    padding: 4px 8px;
    font-family: verdana;
    font-size: 14px;
    color: #323232;
} 
tr:hover{
    background-color: lightgray;
}

/* ajax before send loader */
/*.preloader{
    position: fixed;    
    width: 100%;    
    height: 100vh;
    background: #eee;
    z-index: 1001;
    padding-top: 180px;
}
.loader{
    width: 80px;
    height: 80px;
    margin: 50px auto 0;
    perspective: 800px;
    position: relative;
}
.loader div{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
}
.loader div:nth-child(1){
    border-bottom: 4px solid red;
    left: 0;
    top: 0;
    animation: rotate-one 1s linear infinite;
}
.loader div:nth-child(2){
    border-right: 4px solid green;
    right: 0;
    top: 0;
    animation: rotate-two 1s linear infinite;
}
.loader div:nth-child(3){
    border-top: 4px solid blue;
    right: 0;
    bottom: 0;
    animation: rotate-three 1s linear infinite;
}
@keyframes rotate-one{
    0%{ transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg); }
    100%{ transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg); }
}
@keyframes rotate-two{
    0%{ transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg); }
    100%{ transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg); }
}
@keyframes rotate-three{
    0%{ transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg); }
    100%{ transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg); }
}*/
