/*--------------------------------------------------------------
# My General Stuff
--------------------------------------------------------------*/
/* Style the label for the radio button */
/* Style the label for the radio button */
/* Style the label for the radio button */

@media (max-width: 576px) {
    .modal-dialog.help-modal {
        /* max-width: var(--bs-modal-width); */
        margin-right: auto;
        width: 95%;
        margin-left: auto;
    }
}

@media (min-width: 576px) {
    .modal-dialog.help-modal {
        width: 650px;
        max-width: 650px;
        transition: transform 0.3s ease-out;
        transform: scale(1);
    }

    .modal-content.help-content {
        border-radius: 15px;
        background: linear-gradient(to bottom right, #ffffff, #f0f0f0);
        border: none;
        box-shadow: 0 4px 20px rgba(0,0,0,0.25);
        padding: 20px;
        font-family: Helvetica, Arial, sans-serif;
        color: #333;
    }
}

.pass-mark {
	color: #0ab921; /* Darker text color for better contrast */
	font-weight: bold;
}

.header-export-container {
	background: #fff;
	border-radius: 30px;
	font-size: 26px;
	padding: 5px 20px 5px 20px;
	line-height: 0.5;
	font-weight: 500;
	font-family: "Nunito", sans-serif;
	letter-spacing: 0.5px;
  }

.fail-mark {
	color: tomato; /* Change this color as desired */
	font-weight: bold;
}

.table {
	border-color: rgba(82, 5, 103, 0.225);
	border-radius: 20px;
}
.table-striped > tbody > tr:nth-of-type(odd) > * {
	--bs-table-color-type: #000000;
	--bs-table-bg-type: rgba(82, 6, 97, 0.05);
}

.button-container {
    display: flex;          /* Uses flexbox to align children */
    align-items: left;    /* Aligns items vertically in the center */
    gap: 8px;              /* Adds space between the buttons */
}

.home_select_class {
	animation: pulse 7s infinite;
	font-weight: 500;
	font-size: 17px;
	color: #012970;
}

@keyframes pulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(0.85);
		color: #007268;
		
	}
	50% {
		opacity: 0.9;
		transform: scale(1);
		color: #012970;
		
	}
}

.homework-radio-label {
	cursor: pointer;
}

/* Hide the default radio button input */
.homework-radio-label input {
	opacity: 0;
	cursor: pointer;
}

/* Style the custom radio button */
.homework-radio-label .homework-radio-button {
	height: 20px;
	width: 20px;
	border: 2px solid #3498db; /* Blue color for border */
	border-radius: 50%;
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
}

/* Style the custom radio button when checked */
.homework-radio-label input:checked ~ .homework-radio-button {
	border: 2px solid #1abc9c; /* Green color when checked */
}

/* Style the custom radio button dot */
.homework-radio-label .homework-radio-button:after {
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

/* Show the custom radio button dot when checked */
.homework-radio-label input:checked ~ .homework-radio-button:after {
	background: #1abc9c; /* Green color for dot */
}

/* Style the table rows and cells */
.homework-table tr:hover {
	background-color: #f2f2f2; /* Light gray on hover */
}

.homework-table th {
	background-color: #f2f2f2; /* Light gray for header */
}

.homework-table th,
.homework-table td {
	padding: 8px 12px;
	text-align: center;
	border-bottom: 1px solid #ddd; /* Gray border bottom */
}

/* Remove border bottom from the last cell in each row */
.homework-table td:last-child,
.homework-table th:last-child {
	border-bottom: none;
}
.center-mycard {
	display: flex;
	justify-content: center;
	align-items: center;
}

th,
td {
	max-width: 350px;
	font-size: 13px;
	padding: 8px;
}

label {
    font-size: 12px !important;
}

.spinner-grow {
	--bs-spinner-width: 2rem;
	--bs-spinner-height: 2rem;
	--bs-spinner-vertical-align: -0.125em;
	--bs-spinner-animation-speed: 2s;
	--bs-spinner-animation-name: spinner-grow;
	background-color: currentcolor;
	opacity: 0;
}

.register_background-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('{% static "assets/img/register_class.jpg" %}');
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0.5;
	z-index: -1;
}
.login-height {
	overflow: hidden; /* Adjust the height value as needed */
}
.messages {
	background-color: #747c7a;
	color: rgb(255, 255, 255);
	width: 650px;
	padding: 10px;
	margin-top: 10px;
	border: 0 !important;
	border-radius: 0.25rem !important;
}

.message-box {
	background-color: #e3e018; /* Light yellow background color */
	border-radius: 10px; /* Rounded corners */
	padding: 10px; /* Padding around the content */
	border: 1px solid rgb(165, 162, 0); /* Light green border */
	width: 50%;
}

.message-text {
	color: rgb(0, 0, 0); /* Green text color */

	.card-container {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 100vh;
	}
}
.card-container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.card {
	width: 100%;
	overflow-y: auto;
	overflow: hidden;
}

.session-modal-container {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	justify-content: center;
	align-items: center;
  }
  
  .sessionmodal {
	background-color: white;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
	text-align: center;
  }

  
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@media print {
	/* Define styles for print media */
	.no-print {
		display: none;
	}
}


.account_type {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	color: #0d1019;
}
.account_type:hover {
	background-color: #a5a6a8;
	font-weight: 600;
	color: #012970 !important ;
	border-radius: 6px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow gives depth */
	  transform: translateY(-2px); /* Slight lift effect */
	  transition: transform 0.2s ease, box-shadow 0.2s ease; 
}

.sign_up_button {
	text-align: center;
}
.sign_up_button:hover {
	background-color: #dbdde1;
	border-radius: 6px;
	padding: 12px 16px 12px 16px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow gives depth */
	  transform: translateY(-2px); /* Slight lift effect */
	  transition: transform 0.2s ease, box-shadow 0.2s ease; 
}

.home-button-location {
	position: absolute;
	top: 8px;
	left: 12px; 
	z-index: 1; 
	font-family: "Open Sans", Helvetica, sans-serif;
	text-transform: uppercase;
	font-weight: 500;
	font-size: 20px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 6px 18px;
  }

  .register-button-location {
    position: absolute;
    top: 16px;
    right: 12px; /* Changed from left to right */
    z-index: 1; 
    font-family: "Open Sans", Helvetica, sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 6px 18px;
}
  

.form-control {
	display: block;
	padding: 0.375rem 0.75rem;
	font-size: 13px;
	font-weight: 400;
	border-radius: 5px;
	line-height: 1.5;
	color: var(--bs-body-color);
	background-color: var(--bs-body-bg);
	background-clip: padding-box;
	border: var(--bs-border-width) solid var(--bs-border-color);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: var(--bs-border-radius);
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control:disabled {
	background-color: var(--bs-secondary-bg);
	opacity: 1;
}

.expand-on-hover {
    font-size: 11px; /* Default font size */
    transition: font-size 0.1s; /* Add a smooth transition effect */
}

.expand-on-hover:hover {
    font-size: 13px; /* Font size to be applied when hovering */
	font-weight: 600;
}

.subject_tab {
	border: 1px solid #000966; /* Border width, style, and color */
	padding: 5.5px; /* Optional padding to create some space between content and border */
	width: 400px; /* Optional width for the card */
	border-radius: 20px;
	text-align: center; /* Optional text alignment inside the card */
	margin-left: 20px;
	margin-right: 10px;
	font-weight: 400;
	font-size: 14px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	cursor: pointer;
	display: inline-block; /* Ensure buttons behave as block-level elements */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1),
		inset 0 2px 0 rgba(255, 255, 255, 0.1);
}
@media (max-width: 767px) {
	.subject_tab {
		border: 0px solid #ddddde;
		font-weight: 500;
		padding: 5.5px;
		width: 100px;
		font-size: 13px;
		text-align: center;
		margin-left: 20px;
		margin-right: 10px;
		visibility: hidden;
	}
}

.btn-stylish {
	padding: 5px 10px;
	border: none;
	border-radius: 10px;
	margin: 5px 5px 10px 0;
	color: #ffffff;
	text-align: center;
	font-size: 12.5px;
	font-weight: bold;
	text-decoration: none;
	display: inline-block;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	cursor: pointer;
	background: linear-gradient(to bottom, #738ca9, #51667f);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-stylish-primary {
	background: linear-gradient(to bottom, #738ca9, #51667f);
}

.btn-stylish-support {
	background: linear-gradient(to bottom, #6c7af1, #4154f1);
}

/* Success Button */
.btn-stylish-success {
	background: linear-gradient(to bottom, #6c9575, #4e7256);
}

/* Warning Button */
.btn-stylish-warning {
	background: linear-gradient(to bottom, #ebebec, #e6e9ec);
	color: #000;
	border: 1px solid rgb(207, 207, 207);
	border-color: rgba(rgb(207, 207, 207));
	font-weight: bold;
	box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
	
}

.btn-stylish-warning:hover {
	border: 1px solid rgb(144, 144, 144);
	border: 0px solid rgba(139, 34, 34, 0.679);
	background: linear-gradient(to bottom, #ebebec, #abacae);
	font-size: 13px;
	padding: 6px 14px;
	/* border-color: rgba(rgb(144, 144, 144)); */
}

/* Danger Button */
.btn-stylish-danger {
	background: linear-gradient(to bottom, #a97676, #815356);
}

/* .btn-stylish-delete {
	background: linear-gradient(to bottom, #fedddd, #ffb6bb);
	color: rgb(119, 15, 15);
	border-radius: 20px;
}

.btn-stylish-delete:hover {
	border: 1px solid rgb(0, 0, 0);
	border-color: rgba(139, 34, 34, 0.679);
} */

.pop-out-image {
	display: block;
	height: auto; /* Maintains the image's aspect ratio */
	margin: 20px auto; /* Centers the image and adds some space around it */
	box-shadow: 0 0px 0px rgba(0, 0, 0, 0.2); /* Applies shadow only at the bottom */

  }
  
  .pop-out-image:hover {
	border-radius: 8px;
	transform: scale(1.05); /* Slightly enlarges the image on hover for a pop-out effect */
	box-shadow: 0 0px 12px rgba(0, 0, 0, 0.2); /* Enhances the shadow for more depth on hover */
  }

.login-title {
    font-size: 26px; /* Slightly larger to command attention */
    font-weight: 600; /* Bold for prominence */
    color: #000721; /* A deep blue color, solid rather than semi-transparent */
    margin: 15px 0px 30px 0px; /* Consistent vertical spacing */
    text-shadow: 1px 1px 2px #0005; /* Subtle text shadow for depth, with reduced opacity for sophistication */
    letter-spacing: 0.5px; /* Adding some letter spacing for a touch of elegance */
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; /* A clean, professional font-stack */
	padding: 10px 0px 0px 0px;
}

.btn-stylish-delete {
	background: linear-gradient(to bottom, #f3e9e9, #ffdfe1);
	color: rgb(119, 15, 15);
	font-size: 12px;
	border-radius: 20px;
	border: 1px solid rgba(139, 34, 34, 0.679);
	border-color: rgba(139, 34, 34, 0.679);
}

.btn-stylish-delete:hover {
	background: linear-gradient(to bottom, #fedddd, #ffb6bb);
	border: 0px solid rgba(139, 34, 34, 0.679);
	border-color: #ffb6bb;
	
}


.btn-stylish-contact {
	background: linear-gradient(to bottom, #a4e8ff, #5cc5ef);
	color: rgb(0, 76, 80);
	border-radius: 20px;
}

.btn-stylish-contact:hover {
	border: 1px solid rgb(0, 0, 0);
	border-color: rgba(0, 81, 93, 0.679);
}

.btn-stylish-dark {
	background: linear-gradient(to bottom, #757575, #383235);
}

/* Hover and Active Effects - Applies to all buttons */
.btn-stylish:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15),
		inset 0 2px 0 rgba(255, 255, 255, 0.1);
}

.btn-stylish:active {
	transform: translateY(1px);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Disable button pointer-events and opacity */
.btn-stylish[disabled] {
	pointer-events: none;
	opacity: 0.7;
}

.subject_btn-font {
	color: #000966;
}

.modal-body-subject {
	display: flex;
	flex-wrap: wrap;
	padding: 15px;
}

.subject_btn {
	background-color: #000966; /* Green background */
	border: none; /* Remove borders */
	color: white; /* White text */
	padding: 10px; /* Some padding */
	font-size: 13px; /* Set a font-size */
	cursor: pointer; /* Mouse pointer on hover */
	border-radius: 5px;
	margin-bottom: 15px;
	margin-left: 10px;
	box-shadow: 0 0 10px 0 rgba(1, 41, 112, 0.15);
	border: 1px solid rgba(1, 41, 112, 0.3);
	transition: background-color 0.3s ease;
}

.subject_btn:hover {
	background-color: #f5f5f5; /* Darker background on mouse-over */
	color: #000966;
}

.highlight-link {
	text-decoration: none;
	color: #ffffff;
	background-color: #000966;
	transition: background-color 0.3s ease; /* Transition effect for smooth animation */
}

.highlight-link:hover,
.highlight-link:active {
	background-color: #ffffff;
	color: #000966;
	border-color: #000966;
}
:root {
	scroll-behavior: smooth;
}

body {
	font-family: "Open Sans", Helvetica, sans-serif;
	letter-spacing: 0.5px;
	background: #f6f9ff;
	color: #444444;
	font-size: 14px;
}

a {
	color: #4154f1;
	text-decoration: none;
}

a:hover {
	color: #717ff5;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Open Sans", Helvetica, sans-serif;
	letter-spacing: 0.5px;
}



.attendance-table {
	margin-top: 20px;
}
.attendance-table .row {
	margin-bottom: 10px;
}
.attendance-table .row > div {
	padding: 0 15px;
}
.attendance-table .header {
	font-weight: bold;
	text-align: center;
	padding: 10px 0;
}
.attendance-table .checkbox {
	text-align: center;
}
.submit-btn {
	margin-top: 20px;
}
/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
	margin-top: 60px;
	padding: 20px 30px;
	transition: all 0.3s;
	z-index: 1 !important;
}

@media (max-width: 1199px) {
	#main {
		padding: 20px;
	}
}

#main_home {
	margin-left: 0px;
	padding: 20px 30px;
	transition: all 0.3s;
}

@media (max-width: 1199px) {
	#main_home {
		margin-left: -250px;
		padding: 20px;
	}
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.pagetitle {
	margin-bottom: 10px;
}

.pagetitle h1 {
	font-size: 18px;
	margin-bottom: 5px;
	font-weight: 500;
	color: #012970;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 26px;
	z-index: 99999;
	background: #8da2bc;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	transition: all 0.4s;
}

.back-to-top i {
	font-size: 24px;
	color: #fff;
	line-height: 0;
}

.back-to-top:hover {
	background: #798ca2;
	color: #fff;
}

.back-to-top.active {
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
/* Preloader container */
/* Preloader container */
.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: #fff;
	overflow: hidden;
	font-family: Arial, sans-serif;
  }
  
  /* Ripple container styling */
  .lds-ripple {
	position: relative;
	width: 80px;
	height: 80px;
	margin-bottom: 20px; /* Spacing above the Liquital text */
  }
  
  .lds-ripple div {
	position: absolute;
	border: 4px solid #3bbcb1;
	border-radius: 50%;
	opacity: 1;
	animation: ripple-animation 1.2s ease-out infinite;
	box-shadow: 0 0 8px rgba(59, 188, 177, 0.6);
  }
  
  /* First ripple circle */
  .lds-ripple div:nth-child(1) {
	animation-delay: 0s;
	border-color: #012970;
  }
  
  /* Second ripple circle */
  .lds-ripple div:nth-child(2) {
	animation-delay: 0.6s;
	border-color: #3bbcb1;
  }
  
  /* Ripple animation */
  @keyframes ripple-animation {
	0% {
	  width: 0px;
	  height: 0px;
	  opacity: 1;
	}
	100% {
	  width: 80px;
	  height: 80px;
	  opacity: 0;
	}
  }
  
  /* Liquital text styling */
  .preloader .preloader-text {
	font-size: 1.5em;
	color: #012970;
	opacity: 0;
	animation: text-fade 1.5s ease-in-out infinite;
  }
  
  /* Text fade animation */
  @keyframes text-fade {
	0%, 100% {
	  opacity: 0;
	}
	50% {
	  opacity: 1;
	}
  }

/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/
/* Dropdown menus */
.dropdown-menu {
	border-radius: 4px;
	padding: 10px 0;
	animation-name: dropdown-animate;
	animation-duration: 0.2s;
	animation-fill-mode: both;
	border: 0;
	box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}

.dropdown-menu .dropdown-header,
.dropdown-menu .dropdown-footer {
	text-align: center;
	font-size: 13px;
	padding: 10px 25px;
}

.dropdown-menu .dropdown-footer a {
	color: #444444;
	text-decoration: underline;
}

.dropdown-menu .dropdown-footer a:hover {
	text-decoration: none;
}

.dropdown-menu .dropdown-divider {
	color: #a5c5fe;
	margin: 0;
}

.dropdown-menu .dropdown-item {
	font-size: 13px;
	padding: 10px 15px;
	transition: 0.3s;
}

.dropdown-menu .dropdown-item i {
	margin-right: 10px;
	font-size: 16px;
	line-height: 0;
}

.dropdown-menu .dropdown-item:hover {
	background-color: #f6f9ff;
}

@media (min-width: 768px) {
	.dropdown-menu-arrow::before {
		content: "";
		width: 13px;
		height: 13px;
		background: #fff;
		position: absolute;
		top: -7px;
		right: 20px;
		transform: rotate(45deg);
		border-top: 1px solid #eaedf1;
		border-left: 1px solid #eaedf1;
	}
}

@keyframes dropdown-animate {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}

	0% {
		opacity: 0;
	}
}

/* Light Backgrounds */
.bg-primary-light {
	background-color: #cfe2ff;
	border-color: #cfe2ff;
}

.bg-secondary-light {
	background-color: #e2e3e5;
	border-color: #e2e3e5;
}

.bg-success-light {
	background-color: #d1e7dd;
	border-color: #d1e7dd;
}

.bg-danger-light {
	background-color: #f8d7da;
	border-color: #f8d7da;
}

.bg-warning-light {
	background-color: #fff3cd;
	border-color: #fff3cd;
}

.bg-info-light {
	background-color: #cff4fc;
	border-color: #cff4fc;
}

.bg-dark-light {
	background-color: #d3d3d4;
	border-color: #d3d3d4;
}

/* Card */
.card {
	margin-bottom: 30px;
	border: none;
	border-radius: 12px;
	background-color: rgba(
		255,
		255,
		255,
		0.7
	); /* Adjusted background color with transparency */
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1); /* Initial shadow */
	transition: box-shadow 0.3s; /* Transition for shadow change */
}

.card:hover {
	box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15); /* Adjusted shadow on hover */
}
.card-header,
.card-footer {
	border-color: #ebeef4;
	background-color: #fff;
	color: #798eb3;
	padding: 15px;
}

.card-title {
	padding: 10px 0 25px 0;
	font-size: 15px;
	font-weight: 500;
	color: #012970;
	font-family: "Open Sans", Helvetica, sans-serif;
	letter-spacing: 0.5px;
}

.card-title span {
	color: #899bbd;
	font-size: 14px;
	font-weight: 400;
}

.card-body {
	padding: 0 20px 20px 20px;
	font-size: 13px;
	overflow-x: auto;
}

.no-padding {
	padding: 0px 0px 0px 0px;
}

.card-img-overlay {
	background-color: rgba(255, 255, 255, 0.6);
}

/* Alerts */
.alert-heading {
	font-weight: 500;
	font-family: "Open Sans", Helvetica, sans-serif;
	letter-spacing: 0.5px;
	font-size: 18px;
}

/* Close Button */
.btn-close {
	background-size: 25%;
}

.btn-close:focus {
	outline: 0;
	box-shadow: none;
}

/* Accordion */
.accordion-item {
	border: 1px solid #ebeef4;
}

.accordion-button{
	font-size: 14px;
}
.accordion-button:focus {
	outline: 0;
	box-shadow: none;
}

.accordion-button:not(.collapsed) {
	color: #012970;
	background-color: #f6f9ff;
}

.accordion-flush .accordion-button {
	padding: 15px 0;
	background: none;
	border: 0;
}

.accordion-flush .accordion-button:not(.collapsed) {
	box-shadow: none;
	color: #4154f1;
}

.accordion-flush .accordion-body {
	padding: 0 0 15px 0;
	color: #3e4f6f;
	font-size: 13px;
}

/* Breadcrumbs */
.breadcrumb {
	font-size: 14px;
	font-family: "Open Sans", Helvetica, sans-serif;
	letter-spacing: 0.5px;
	color: #899bbd;
	font-weight: 500;
}

.breadcrumb a {
	color: #899bbd;
	transition: 0.3s;
}

.breadcrumb a:hover {
	color: #51678f;
}

.breadcrumb .breadcrumb-item::before {
	color: #899bbd;
}

.breadcrumb .active {
	color: #51678f;
	font-weight: 500;
}

/* Bordered Tabs */
.nav-tabs-bordered {
	border-bottom: 2px solid #ebeef4;
}

.nav-tabs-bordered .nav-link {
	margin-bottom: -2px;
	border: none;
	color: #2c384e;
}

.nav-tabs-bordered .nav-link:hover,
.nav-tabs-bordered .nav-link:focus {
	color: #4154f1;
}

.nav-tabs-bordered .nav-link.active {
	background-color: #fff;
	color: #4154f1;
	border-bottom: 2px solid #4154f1;
}
/*--------------------------------------------------------------
# Header_login
--------------------------------------------------------------*/
#header_login {
	transition: all 0.5s;
	z-index: -997;
	transition: all 0.5s;
	top: 10px;
  }
  
  #header_login .header-container {
	background: #fff;
	border-radius: 30px;
	font-size: 26px;
	padding: 25px 20px 25px 20px;
	line-height: 0.5;
	font-weight: 500;
	font-family: "Nunito", sans-serif;
	letter-spacing: 0.5px;
  }

  #header_export {
	transition: all 0.5s;
	z-index: -997;
	transition: all 0.5s;
	top: 10px;
  }

  
  #header_login.header-scrolled {
	background: #fff;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	top: 0;
  }

  #header_export.header-scrolled {
	background: #fff;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	top: 0;
  }

  #header_export.header-scrolled {
	background: #fff;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	top: 0px;
	padding: 7px 0px 7px 0px;
	color: #26377A;
    font-family: 'Helvetica';    
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  }

.help_export_button {
	text-align: center;
}
.help_export_button:hover {
	background-color: #dbdde1;
	border-radius: 6px;
	padding: 8px 12px 8px 12px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow gives depth */
	  transform: translateY(-2px); /* Slight lift effect */
	  transition: transform 0.2s ease, box-shadow 0.2s ease; 
}

 
  @media (max-width: 800px) {
	.help_export_button {
		display: none;

	}
  }
  
  @media (max-width: 992px) {
  .no-mobile {
	display: none;
  }
}

  @media (max-width: 992px) {
	#header {
	  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	  top: 0;
	  /* background: #012970; */
	  
	}
  
   .top-layer{
		z-index: 1000;
	  }
   }
  
	#header_login .logo {
	  padding-left: 0;
	}
  
	#header_login .logo h1 {
	  font-size: 24px;
	}
  
  
  .no-scroll {
	overflow: hidden !important;
  }
  .back-layer{
	z-index: 1;
	padding: 35px 0px 0px 0px !important;
  }
  .background-container {
	position: relative;
	background-size: cover; /* or use 'cover' depending on the desired effect */
 	background-repeat: no-repeat;
  	background-position: center;
  }
  
  .background-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	
	z-index: 1;
  }
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.logo {
	line-height: 1;
}

@media (min-width: 1200px) {
	.logo {
		width: 250px;
	}
}

.logo img {
	max-height: 26px;
	margin-right: 6px;
}

.logo span {
	font-size: 22px;
	font-weight: 600;
	color: #012970;
	font-family: "Open Sans", Helvetica, sans-serif;
	letter-spacing: 0.5px;
}

.header {
	transition: all 0.5s;
	z-index: 997;
	height: 60px;
	box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
	background: linear-gradient(to right, #f0f5ff, #ffffff);
	padding-left: 20px;
	letter-spacing: 0.5px;
	/* Toggle Sidebar Button */
	/* Search Bar */
}

body, html { overflow: visible; /* Ensure no clipping occurs */ }

/* Button before it is clicked */
.toggle-sidebar-btn {
    position: fixed;
    cursor: pointer;
    font-size: 24px;
    transition: left 0.8s ease, transform 0.3s ease; /* Slow down the left transition */
    bottom: 15%; /* Bottom quarter of the sidebar */
    left: 245px; /* Start from the edge of the sidebar */ 
    transform: translateX(-50%); /* Center the button horizontally */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    background: #8699ae;
    border-radius: 40px;
    width: 36px;
    height: 36px;
    z-index: 1000;
    font-weight: 700;
}

.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 26px;
	z-index: 99999;
	background: #8da2bc;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	transition: all 0.4s;
}



.header .search-bar {
	min-width: 360px;
	padding: 0 20px;
}

@media (max-width: 1199px) {
	.header .search-bar {
		position: fixed;
		top: 50px;
		left: 0;
		right: 0;
		padding: 20px;
		box-shadow: 0px 0px 15px 0px rgba(1, 41, 112, 0.1);
		background: white;
		z-index: 9999;
		transition: 0.3s;
		visibility: hidden;
		opacity: 0;
	}

	.header .search-bar-show {
		top: 60px;
		visibility: visible;
		opacity: 1;
	}

	
}

.header .search-form {
	width: 100%;
}

.header .search-form input {
	border: 0;
	font-size: 13px;
	color: #012970;
	border: 1px solid rgba(1, 41, 112, 0.2);
	padding: 7px 38px 7px 8px;
	border-radius: 3px;
	transition: 0.3s;
	width: 100%;
}

.header .search-form input:focus,
.header .search-form input:hover {
	outline: none;
	box-shadow: 0 0 10px 0 rgba(1, 41, 112, 0.15);
	border: 1px solid rgba(1, 41, 112, 0.3);
}

.header .search-form button {
	border: 0;
	padding: 0;
	margin-left: -30px;
	background: none;
}

.header .search-form button i {
	color: #012970;
}

/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/
.header-nav ul {
	list-style: none;
}

.header-nav > ul {
	margin: 0;
	padding: 0;
}

.header-nav .nav-icon {
	font-size: 22px;
	color: #012970;
	margin-right: 25px;
	position: relative;
}

.header-nav .nav-profile {
	color: #012970;
}

.nav-profile:hover {
	background-color: #eff0f4; /* Light gray on hover */
	border-radius: 6px;
	padding: 5px;	
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow gives depth */
  	transform: translateY(-2px); /* Slight lift effect */
  	transition: transform 0.2s ease, box-shadow 0.2s ease; 
}

.header-nav .nav-profile img {
	max-height: 36px;
}

.header-nav .nav-profile span {
	font-size: 14px;
	font-weight: 500;
}

.header-nav .badge-number {
	position: absolute;
	inset: -2px -5px auto auto;
	font-weight: normal;
	font-size: 12px;
	padding: 3px 6px;
}

.header-nav .notifications {
	inset: 8px -15px auto auto !important;
}

.header-nav .notifications .notification-item {
	display: flex;
	align-items: center;
	padding: 15px 10px;
	transition: 0.3s;
}

.header-nav .notifications .notification-item i {
	margin: 0 20px 0 10px;
	font-size: 24px;
}

.header-nav .notifications .notification-item h4 {
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 5px;
}

.header-nav .notifications .notification-item p {
	font-size: 13px;
	margin-bottom: 3px;
	color: #919191;
}

.header-nav .notifications .notification-item:hover {
	background-color: #f6f9ff;
}

.header-nav .messages {
	inset: 8px -15px auto auto !important;
}

.header-nav .messages .message-item {
	padding: 15px 10px;
	transition: 0.3s;
}

.header-nav .messages .message-item a {
	display: flex;
}

.header-nav .messages .message-item img {
	margin: 0 20px 0 10px;
	max-height: 40px;
}

.header-nav .messages .message-item h4 {
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 5px;
	color: #444444;
}

.header-nav .messages .message-item p {
	font-size: 13px;
	margin-bottom: 3px;
	color: #919191;
}

.header-nav .messages .message-item:hover {
	background-color: #f6f9ff;
}

.header-nav .profile {
	min-width: 240px;
	padding-bottom: 0;
	font-size: 13px;
	top: 8px !important;
}

.header-nav .profile .dropdown-header h6 {
	font-size: 16px;
	margin-bottom: 0;
	font-weight: 500;
	color: #444444;
}

.header-nav .profile .dropdown-header span {
	font-size: 13px;
}

.header-nav .profile .dropdown-item {
	font-size: 13px;
	padding: 10px 15px;
	transition: 0.3s;
}

.header-nav .profile .dropdown-item i {
	margin-right: 10px;
	font-size: 16px;
	line-height: 0;
}

.header-nav .profile .dropdown-item:hover {
	background-color: #f6f9ff;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
	position: fixed;
	top: 60px;
	left: 0;
	bottom: 0;
	width: 250px;
	z-index: 996;
	transition: all 0.3s;
	padding: 20px;
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: #aab7cf transparent;
	box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
	background-color: #2b3041;
	background: linear-gradient(to bottom, #333846, #0d1019);
}

@media (max-width: 1199px) {
	.sidebar {
		left: -250px;
	}
}

.sidebar::-webkit-scrollbar {
	width: 5px;
	height: 8px;
	background-color: #fff;
}

.sidebar::-webkit-scrollbar-thumb {
	background-color: #aab7cf;
}

@media (min-width: 1200px) {
	#main,
	#footer {
		margin-left: 250px;
	}
}

@media (max-width: 1199px) {
	.toggle-sidebar .sidebar {
		left: 0;
	}
}

@media (min-width: 1200px) {
	.toggle-sidebar #main,
	.toggle-sidebar #footer {
		margin-left: 66px;
	}

	.toggle-sidebar .sidebar {
		/* left: -250px; */
		width: 66px;
    	padding: 20px 10px 20px 10px;
	}
}

.toggle-sidebar .sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
    padding: 12px 15px;
    border: none;
}

.toggle-sidebar .sidebar-nav .nav-link span {
	opacity: 0;
	white-space: nowrap;
	transition: opacity 0.3s, margin-left 0.3s;
  }

  @media (max-width: 1199px) {
	.toggle-sidebar .sidebar-nav .nav-link span {
		opacity: 1;
	  
	}
  }

  @media (max-width: 1199px) {
	.toggle-sidebar .sidebar:hover {
	  left: 0;
	  z-index: 10000;
	  
	}
  }
  
  .toggle-sidebar .sidebar:hover {
	z-index: 10000;
  }
  
  .toggle-sidebar .sidebar-nav .nav-link:hover span {
	color: #012970;
  }
  
  .toggle-sidebar .sidebar-nav .nav-link span {
	color: #fafbfc;
  }
  
  
  
  
  @media (max-width: 1199px) {
	.toggle-sidebar .sidebar:hover {
	  left: 0;
	  
	}
  }
  
  @media (min-width: 1200px) {
  
	.toggle-sidebar .sidebar:hover + #main,
	.toggle-sidebar .sidebar:hover + #footer {
	  margin-left: 250px;
	}
  
  
  
  
	.toggle-sidebar .sidebar:hover {
	  /* left: 50px; */
	  width: 250px;
	  padding: 20px 10px 20px 10px;
	}
  }
  
  .toggle-sidebar .sidebar:hover .nav-link span {
	opacity: 1;
	transition: opacity 0.3s, margin-left 0.3s;
  }
  
  
  
  /* Button after it is clicked */
.toggle-sidebar .toggle-sidebar-btn {
    transform: rotate(180deg);
    color: #ffffff;
    background-color: #fe6363;
    left: 45px;
    transition: left 0.8s ease, transform 0.8s ease; /* Apply the same duration here */
}

  

  .sidebar:hover .toggle-sidebar-btn { left: 245px; } 
  .toggle-sidebar .schoolname {
	display: none;
  }
  

.sidebar-nav {
	padding: 0;
	margin: 0;
	list-style: none;
}

.sidebar-nav li {
	padding: 0;
	margin: 0;
	list-style: none;
}

.sidebar-nav .nav-item {
	margin-bottom: 5px;
}

.sidebar-nav .nav-heading {
	font-size: 11px;
	text-transform: uppercase;
	color: #899bbd;
	font-weight: 500;
	margin: 10px 0 5px 15px;
}

body.toggle-sidebar .sidebar-nav .nav-heading {
  display: none;
}
/* main nav bar */
.sidebar-nav .nav-link {
	display: flex;
	align-items: center;
	font-size: 13px;
	font-weight: 400;
	color: #e7e7e7;
	transition: 0.3;
	/* background: #2b3041; */
	padding: 10px 15px;
	margin-bottom: 15px;
	border-radius: 4px;
}

.sidebar-nav .nav-link i {
	font-size: 15px;
	margin-right: 10px;

	color: #e7e7e7;
}

/* buttom background of the words */
.sidebar-nav .nav-link.collapsed {
	color: #e7e7e7;
	/* background: #3c4156;  */
	border:2px solid #595e72
}

.sidebar-nav .nav-link.collapsed i {
	color: #e7e7e7;
}

.sidebar-nav .nav-link:hover {
	color: #002349;
	background: #9ca4b5;
}

.sidebar-nav .nav-link:hover i {
	color: #002349;
}

.sidebar-nav .nav-link .bi-chevron-down {
	margin-right: 0;
	transition: transform 0.2s ease-in-out;
}

.sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
	transform: rotate(180deg);
}

.sidebar-nav .nav-content {
	padding: 5px 0 0 0;
	margin: 0;
	list-style: none;
}

.sidebar-nav .nav-content a {
	display: flex;
	align-items: center;
	font-size: 13px;
	font-weight: 500;
	color: #ffffff;
	transition: 0.3;
	padding: 10px 0 10px 40px;
	transition: 0.3s;
}

.sidebar-nav .nav-content a i {
	font-size: 6px;
	margin-right: 8px;
	line-height: 0;
	border-radius: 50%;
}

.sidebar-nav .nav-content a:hover,
.sidebar-nav .nav-content a.active {
	color: #4154f1;
}

.sidebar-nav .nav-content a.active i {
	background-color: #4154f1;
}

/*--------------------------------------------------------------
# Dashboard
--------------------------------------------------------------*/
/* Filter dropdown */
.dashboard .filter {
	position: absolute;
	right: 0px;
	top: 15px;
}

.dashboard .filter .icon {
	color: #aab7cf;
	padding-right: 20px;
	padding-bottom: 5px;
	transition: 0.3s;
	font-size: 15px;
}

.dashboard .filter .icon:hover,
.dashboard .filter .icon:focus {
	color: #4154f1;
}

.dashboard .filter .dropdown-header {
	padding: 8px 15px;
}

.dashboard .filter .dropdown-header h6 {
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 1px;
	color: #aab7cf;
	margin-bottom: 0;
	padding: 0;
}

.dashboard .filter .dropdown-item {
	padding: 8px 15px;
}

/* Info Cards */
.dashboard .info-card {
	padding-bottom: 10px;
}

.dashboard .info-card h6 {
	font-size: 24px;
	color: #012970;
	font-weight: 500;
	margin: 0;
	padding: 0;
}

.dashboard .card-icon {
	font-size: 32px;
	line-height: 0;
	width: 64px;
	height: 64px;
	flex-shrink: 0;
	flex-grow: 0;
}

.card-icon-title {
	font-size: 15px;
	line-height: 0;
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	flex-grow: 0;
	color: #27384b;
	background: #89cae1;
}

.dashboard .sales-card .card-icon {
	color: #4154f1;
	background: #f6f6fe;
}

.dashboard .revenue-card .card-icon {
	color: #2eca6a;
	background: #e0f8e9;
}

.dashboard .customers-card .card-icon {
	color: #ff771d;
	background: #ffecdf;
}

/* Activity */
.dashboard .activity {
	font-size: 13px;
}

.dashboard .activity .activity-item .activite-label {
	color: #888;
	position: relative;
	flex-shrink: 0;
	flex-grow: 0;
	min-width: 64px;
}

.dashboard .activity .activity-item .activite-label::before {
	content: "";
	position: absolute;
	right: -11px;
	width: 4px;
	top: 0;
	bottom: 0;
	background-color: #eceefe;
}

.dashboard .activity .activity-item .activity-badge {
	margin-top: 3px;
	z-index: 1;
	font-size: 11px;
	line-height: 0;
	border-radius: 50%;
	flex-shrink: 0;
	border: 3px solid #fff;
	flex-grow: 0;
}

.dashboard .activity .activity-item .activity-content {
	padding-left: 10px;
	padding-bottom: 20px;
}

.dashboard .activity .activity-item:first-child .activite-label::before {
	top: 5px;
}

.dashboard .activity .activity-item:last-child .activity-content {
	padding-bottom: 0;
}

/* News & Updates */
.dashboard .news .post-item + .post-item {
	margin-top: 15px;
}

.dashboard .news img {
	width: 80px;
	float: left;
	border-radius: 5px;
}

.dashboard .news h4 {
	font-size: 14px;
	margin-left: 95px;
	font-weight: bold;
	margin-bottom: 5px;
}

.dashboard .news h4 a {
	color: #012970;
	transition: 0.3s;
}

.dashboard .news h4 a:hover {
	color: #4154f1;
}

.dashboard .news p {
	font-size: 13px;
	color: #777777;
	margin-left: 95px;
}

/* Recent Sales */
.dashboard .recent-sales {
	font-size: 13px;
}

.dashboard .recent-sales .table thead {
	background: #f6f6fe;
}

.dashboard .recent-sales .table thead th {
	border: 0;
}

.dashboard .recent-sales .dataTable-top {
	padding: 0 0 10px 0;
}

.dashboard .recent-sales .dataTable-bottom {
	padding: 10px 0 0 0;
}

/* Top Selling */
.dashboard .top-selling {
	font-size: 13px;
}

.dashboard .top-selling .table thead {
	background: #f6f6fe;
}

.dashboard .top-selling .table thead th {
	border: 0;
}

.dashboard .top-selling .table tbody td {
	vertical-align: middle;
}

.dashboard .top-selling img {
	border-radius: 5px;
	max-width: 60px;
}

/*--------------------------------------------------------------
# Icons list page
--------------------------------------------------------------*/
.iconslist {
	display: grid;
	max-width: 100%;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1.25rem;
	padding-top: 15px;
}

.iconslist .icon {
	background-color: #fff;
	border-radius: 0.25rem;
	text-align: center;
	color: #012970;
	padding: 15px 0;
}

.iconslist i {
	margin: 0.25rem;
	font-size: 2.5rem;
}

.iconslist .label {
	font-family: var(--bs-font-monospace);
	display: inline-block;
	width: 100%;
	overflow: hidden;
	padding: 0.25rem;
	font-size: 13px;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #666;
}

.profile .profile-card img {
	max-width: 120px;
}

.profile .profile-card h2 {
	font-size: 22px;
	font-weight: 500;
	color: #2c384e;
	margin: 10px 0 0 0;
}

.profile .profile-card h3 {
	font-size: 14px;
}

.profile .profile-card .social-links a {
	font-size: 16px;
	display: inline-block;
	color: rgba(1, 41, 112, 0.5);
	line-height: 0;
	margin-right: 10px;
	transition: 0.3s;
}

.profile .profile-card .social-links a:hover {
	color: #012970;
}

.profile .profile-overview .row {
	margin-bottom: 20px;
	font-size: 13px;
}

.profile .profile-overview .card-title {
	color: #012970;
}

.profile .profile-overview .label {
	font-weight: 500;
	color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit label {
	font-weight: 500;
	color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit img {
	max-width: 120px;
}

.faq .basic h6 {
	font-size: 16px;
	font-weight: 500;
	color: #4154f1;
}

.faq .basic p {
	color: #6980aa;
}

.contact .info-box {
	padding: 28px 30px;
}

.contact .info-box i {
	font-size: 38px;
	line-height: 0;
	color: #4154f1;
}

.contact .info-box h3 {
	font-size: 18px;
	color: #012970;
	font-weight: 500;
	margin: 20px 0 10px 0;
}

.contact .info-box p {
	padding: 0;
	line-height: 24px;
	font-size: 13px;
	margin-bottom: 0;
}

.contact .php-email-form .error-message {
	display: none;
	color: #fff;
	background: #ed3c0d;
	text-align: left;
	padding: 15px;
	margin-bottom: 24px;
	font-weight: 500;
}

.contact .php-email-form .sent-message {
	display: none;
	color: #fff;
	background: #18d26e;
	text-align: center;
	padding: 15px;
	margin-bottom: 24px;
	font-weight: 500;
}

.contact .php-email-form .loading {
	display: none;
	background: #fff;
	text-align: center;
	padding: 15px;
	margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid #18d26e;
	border-top-color: #eee;
	animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
	border-radius: 0;
	box-shadow: none;
	font-size: 13px;
	border-radius: 0;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
	border-color: #4154f1;
}

.contact .php-email-form input {
	padding: 10px 15px;
	border-radius: 5px;
}

.contact .php-email-form textarea {
	padding: 12px 15px;
	border-radius: 5px;
}

.contact .php-email-form button[type="submit"] {
	background: #4154f1;
	border: 0;
	padding: 10px 30px;
	color: #fff;
	transition: 0.4s;
	border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
	background: #5969f3;
}

@keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Error 404
--------------------------------------------------------------*/
.error-404 {
	padding: 30px;
}

.error-404 h1 {
	font-size: 180px;
	font-weight: 500;
	color: #4154f1;
	margin-bottom: 0;
	line-height: 150px;
}

.error-404 h2 {
	font-size: 22px;
	font-weight: 500;
	color: #012970;
	margin-bottom: 30px;
}

.error-404 .btn {
	background: #51678f;
	color: #fff;
	padding: 8px 30px;
}

.error-404 .btn:hover {
	background: #3e4f6f;
}

@media (min-width: 992px) {
	.error-404 img {
		max-width: 50%;
	}
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
	padding: 20px 0;
	font-size: 13px;
	transition: all 0.3s;
	border-top: 1px solid #cddfff;
	display: flex;
	align-items: center; /* Centers content vertically */
	justify-content: center; /* Centers content horizontally */
	text-align: center; /* Ensures text within the div is centered as well */
}

.footer_login {
	padding: 20px 0;
	padding: 0px !important;
	font-size: 13px;
	transition: all 0.3s;
	display: flex;
	align-items: center; /* Centers content vertically */
	justify-content: center; /* Centers content horizontally */
	text-align: center; /* Ensures text within the div is centered as well */
	color: #012970;
}
  
  
  /* Optional: Ensure the copyright text is centered if it wraps to a new line */
  .footer .copyright {
	display: block;
  }

.footer .copyright {
	text-align: center;
	color: #012970;
}

.footer .credits {
	padding-top: 5px;
	text-align: center;
	font-size: 13px;
	color: #012970;
}
