:root {
	--primary-color: #0f5757;
	--white-color: #ffffff;
	--light-color: #d9f2f2;
}

body {
	background: #f7f7f7;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 100vh;
	 margin: 0;
  padding: 0;
}
.mainContent{
	flex-grow: 1;
}
.bg-light-blue {
	background: var(--light-color);
}

.header {
	background: var(--primary-color);
	padding: 0rem 1rem;
	position: sticky;
	top: 0;
	z-index: 999;
	flex-shrink: 0;
}
footer{
	 flex-shrink: 0;
}
.navbar-brand .logo {
	max-height: 70px;
}

.navbar-nav li:hover a div {
	color: var(--white-color);
	font-weight: bold;
	transition: all 0.35s ease-in-out;
	-webkit-transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	-ms-transition: all 0.35s ease-in-out;
	-o-transition: all 0.35s ease-in-out;
}

.mainWrap {
	display: flex;
}

.sidebar {
	width: 280px;
	height: calc(100vh - 140px);
	background: var(--white-color);
	position: sticky;
	top: 104px;
	z-index: 998;
}

.vh85 {
	/* min-height: calc(100vh - 144px); */
}

.mainText {
	width: calc(100% - 280px);
	padding: 1rem;
	background: #f7f7f7;
}

.sidenav li:hover {
	background: rgba(128, 128, 128, 0.089);
}

.sidenav li.active a {
	background: var(--light-color);
	border-left: 4px solid var(--primary-color);

}

.sidenav li a {
	border-bottom: 1px solid var(--light-color);
}

.sidenav li .btn-toggle {
	color: var(--primary-color);
	font-weight: 500;
	padding: 0.5rem 0.5rem;
	position: relative;
	border-bottom: 1px solid var(--light-color) !important;
	width: 100%;
	border-radius: 0 !important;
	-webkit-border-radius: 0 !important;
	-moz-border-radius: 0 !important;
	-ms-border-radius: 0 !important;
	-o-border-radius: 0 !important;
}

.sidenav li .btn-toggle::before {
	content: '\F282';
	position: absolute;
	top: 11px;
	right: 12px;
	font-family: bootstrap-icons !important;
}

.sidenav li .btn-toggle.collapsed::before {
	content: '\F286';
}

.sidenav li a {
	display: flex;
	color: var(--primary-color);
	font-weight: 500;
	padding: 0.5rem 0.5rem;
	align-items: center;
	gap: 0.25rem;
	text-decoration: none;
}

.icon {
	background: var(--light-color);
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--primary-color);
	width: 3rem;
	height: 3rem;
	border-radius: 1.5rem;
	-webkit-border-radius: 1.5rem;
	-moz-border-radius: 1.5rem;
	-ms-border-radius: 1.5rem;
	-o-border-radius: 1.5rem;
}

.icon i {
	font-size: 1.2rem;
}

.sidenav li .btn-toggle i {
	font-size: 1.2rem;
}

.mainTitle {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--primary-color);
}

.sidenav .btn-toggle-nav li a {
	color: var(--primary-color) !important;
	font-weight: 500;
	padding: 0.5rem 0.5rem 0.5rem 1.5rem;
	width: 100%;
}

.sidenav .btn-toggle-nav li {
	/* border-bottom: 1px solid #ccc; */
	position: relative;
}

.sidenav .btn-toggle-nav li::before {
	content: '';
	position: absolute;
	background: var(--primary-color);
	left: 12px;
	top: 18px;
	width: 6px;
	height: 6px;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
}

.calendar-table {
	table-layout: fixed;
	width: 100%;
}

.calendar-table th,
.calendar-table td {
	width: 14.28%;
}

.calendar-event {
	font-size: 10px;
	margin-top: 2px;
	padding: 1px 4px;
	border-radius: 3px;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.calendar-cell:hover {
	background-color: #f8f9fa !important;
	cursor: pointer;
}

#prevBtn:hover,
#nextBtn:hover {
	background: rgba(255, 255, 255, 0.3) !important;
}

.main-heading {
	font-size: 20px;
	margin: 0;
	text-align: left;
	padding-bottom: 22px;
}

/* The switch - the box around the slider */
.switch {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 20px;
}

/* Hide default HTML checkbox */
.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

/* The slider */
.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	transition: 0.4s;
	border-radius: 24px;
}

/* The circle inside */
.slider:before {
	position: absolute;
	content: "";
	height: 15px;
	width: 15px;
	left: 3px;
	bottom: 3px;
	background-color: white;
	transition: 0.4s;
	border-radius: 50%;
}

input:checked+.slider:before {
	position: absolute;
	content: "";
	height: 15px;
	width: 15px;
	left: -3px;
	bottom: 3px;
	background-color: white;
	transition: 0.4s;
	border-radius: 50%;
}

/* Checked state */
input:checked+.slider {
	background-color: #0f5757;
	/* green */
}

input:checked+.slider:before {
	transform: translateX(26px);
}

.passwordNewUser:focus,
.passwordNewUser:focus-visible {
	box-shadow: none;
	outline: none;
	border: none;
}

.pass-mand {
	font-size: 14px;
	color: gray;
	font-weight: 400;
}

.badge {
	font-size: 0.85rem;
	padding: 0.35em 0.65em;
}

.table-responsive {
	overflow-x: auto;
}

.btn-link {
	padding: 0.25rem 0.5rem;
}

.form-check-input.status-toggle {
	cursor: pointer;
}

.card .icon {
	font-size: 2rem;
	margin-bottom: 0.5rem;
	color: var(--bs-primary);
}

.save_button {
	background-color: #0d9488;
	color: #fff;
	padding: 10px 16px;
	border-radius: 4px;
	font-weight: 600;
	font-size: 14px;
	border: none;
	cursor: pointer;
	width: 100%;
	height: 40px;
	max-width: 100px;
}

.status_button {
	background-color: #0d9489a2;
	color: var(--bs-primary);
	padding: 10px;
	border-radius: 5px;
	font-weight: 600;
	font-size: 14px;
	border: none;
	cursor: pointer;
	width: 100%;
	height: 40px;
	max-width: 70px;
}

.edit-button {
	border: unset;
	outline: unset;
	padding: 5px;
	border-radius: 5px;
	font-weight: 600;
	font-size: 14px;
	border: none;
	cursor: pointer;
	width: 100%;
	height: 30px;
	max-width: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;

}
.station-id{
	font-weight: 500;
}
.station-name{
	min-width: 96px;
}
.station-row{
	background-color: #dbdbdb49;
	border: unset;
}
.training-label{
	display: none;
}
.filterWrap select,.filterWrap input{
	min-height: 45px;
}
.btnWrap button:hover a{
	color: #fff;
}

#loginBtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.custom-calender-btn{
	gap: 1rem;
}
.custom-calender-btn button,.custom-calender-btn a{
	border-radius: 5px !important;
	display: flex;
	align-items: center;
}
.mainText .card{
min-height: 166px;
}
.custom-input-filed{
	background-color: transparent !important;
	border: unset !important;
	outline:unset !important;
	box-shadow: unset !important;
	padding: 0;
}
.password-control{
	/* background-color: rgb(232, 240, 254); */
	
}
.password-control:focus{
	    box-shadow: 0 0 0 0.25rem rgba(15, 87, 87, 0.25);
		border-color: #87abab !important;
}
.custom-id-field{
	outline:unset !important;
	box-shadow: unset !important;
}
#sendOtpBtn:hover, #verifyOtpBtn:hover{
	background-color: #fff;
	border-color:  #0f5757;
	color: #0f5757;
}
.passwordToogle:focus{
border: unset;
box-shadow: unset;
}
.editing-file{
	word-wrap: break-word;
}
.authname{
	color: #fff !important;
	cursor: auto;
}
button svg{
	color: #000 !important;
}


.edit-button{
	color: #fff !important;
}
.btn-warning{
	background-color: #e5ad07;
}
.address-field{
	word-wrap: break-word;
	width: 100%;
}
.custom-btn{
	color: #fff;
}
#applicationId label{
font-size: ;
}