@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Ramaraja&display=swap');
@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');

@font-face {
    font-family: "san-marino";
    src: url("../webfonts/SanMarinoBeach-2OOLW.ttf");
}
@font-face {
    font-family: "uchrony";
    src: url("../webfonts/UchronyCubeRegular-2O5Po.ttf");
}
:root{
    --custom-primary : #4DC2E0;
    --custom-secondary : #bbe8f3;
}
* {
	margin: 0;
	padding: 0;
}

.no-resize {
	resize: none !important;
}


body{
    background: var(--custom-secondary);
    font-family: "Poppins", sans-serif;
	/* -webkit-user-select: none;
	user-select: none; */
}
.row {
	margin: 0;
}
.compulsory{
	color: red;
}
.loading-overlay {
    display: none; /* Hidden initially */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 18px;
}
.loader {
    width: 50px;
    aspect-ratio: 1;
    display: grid;
    border: 4px solid #0000;
    border-radius: 50%;
    border-color: #ccc #0000;
    animation: l16 1s infinite linear;
  }
  .loader::before,
  .loader::after {    
    content: "";
    grid-area: 1/1;
    margin: 2px;
    border: inherit;
    border-radius: 50%;
  }
  .loader::before {
    border-color: #f03355 #0000;
    animation: inherit; 
    animation-duration: .5s;
    animation-direction: reverse;
  }
  .loader::after {
    margin: 8px;
  }
  @keyframes l16 { 
    100%{transform: rotate(1turn)}
  }
.hidden{
	display: none !important;
}
.show{
	display: block !important;
}
.show-flex{
	display: flex !important;
}
.logo-header{
    background-color: var(--custom-primary);
    width: 100%;
    height: 15dvh;
    display: flex;
}
.header-large {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	align-items: center;
	justify-content: center;
	-webkit-user-select: none;
	user-select: none;
}

.header-section {
	color: #000000;
	flex-grow: 1;
	padding: 10px;
}

.header-section>h3 {
	font-family: "Poppins", sans-serif;
	color: #75002b;
	font-size: 1.5rem;
	margin: 0;
	letter-spacing: 5px;
	font-weight: 1000;
	/* letter-spacing: 10px; */
	/* text-shadow: 3px 3px 3px rgb(10, 10, 10); */
}

.header-section>h6 {
	font-family: "Poppins", sans-serif;
	margin: 0;
	font-size: 1rem;
	
	color: #75002b;
}

.logo-box {
	width: 100px;
	height: 100px;
}

.logo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	cursor: pointer;
	/* filter: drop-shadow(2px 10px 10px rgba(0, 0, 0, 0.5)); */
}



i {
	margin-right: 10px;
}
/*----------bootstrap-navbar-css------------*/
.navbar-logo{
	padding: 15px;
	color: #fff;
}
.navbar-mainbg{
	background-color: var(--custom-primary);
	padding: 0px;
}
#navbarSupportedContent{
	overflow: hidden;
	position: relative;
}
#navbarSupportedContent ul{
	padding: 0px;
	margin: 0px;
}
#navbarSupportedContent ul li a i{
	margin-right: 10px;
}
#navbarSupportedContent li {
	list-style-type: none;
	float: left;
}
#navbarSupportedContent ul li a{
	color: #000;
    text-decoration: none;
    font-size: 15px;
    display: block;
    padding: 20px 20px;
    transition-duration:0.6s;
	transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}
#navbarSupportedContent>ul>li.active>a{
	color: var(--custom-primary);
	background-color: transparent;
	transition: all 0.7s;
}
#navbarSupportedContent a:not(:only-child):after {
	content: "\f105";
	position: absolute;
	right: 20px;
	top: 10px;
	font-size: 14px;
	font-family: "Font Awesome 5 Free";
	display: inline-block;
	padding-right: 3px;
	vertical-align: middle;
	font-weight: 900;
	transition: 0.5s;
}
#navbarSupportedContent .active>a:not(:only-child):after {
	transform: rotate(90deg);
}
.hori-selector{
	display:inline-block;
	position:absolute;
	height: 100%;
	top: 0px;
	left: 0px;
	transition-duration:0.6s;
	transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
	background-color: #fff;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	margin-top: 10px;
}
.hori-selector .right,
.hori-selector .left{
	position: absolute;
	width: 25px;
	height: 25px;
	background-color: #fff;
	bottom: 10px;
}
.hori-selector .right{
	right: -25px;
}
.hori-selector .left{
	left: -25px;
}
.hori-selector .right:before,
.hori-selector .left:before{
	content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--custom-primary);
}
.hori-selector .right:before{
	bottom: 0;
    right: -25px;
}
.hori-selector .left:before{
	bottom: 0;
    left: -25px;
}


@media(min-width: 992px){
	.navbar-expand-custom {
	    -ms-flex-flow: row nowrap;
	    flex-flow: row nowrap;
	    -ms-flex-pack: start;
	    justify-content: flex-start;
	}
	.navbar-expand-custom .navbar-nav {
	    -ms-flex-direction: row;
	    flex-direction: row;
	}
	.navbar-expand-custom .navbar-toggler {
	    display: none;
	}
	.navbar-expand-custom .navbar-collapse {
	    display: -ms-flexbox!important;
	    display: flex!important;
	    -ms-flex-preferred-size: auto;
	    flex-basis: auto;
	}
}


@media (max-width: 991px){
	#navbarSupportedContent ul li a{
		padding: 12px 30px;
	}
	.hori-selector{
		margin-top: 0px;
		margin-left: 10px;
		border-radius: 0;
		border-top-left-radius: 25px;
		border-bottom-left-radius: 25px;
	}
	.hori-selector .left,
	.hori-selector .right{
		right: 10px;
	}
	.hori-selector .left{
		top: -25px;
		left: auto;
	}
	.hori-selector .right{
		bottom: -25px;
	}
	.hori-selector .left:before{
		left: -25px;
		top: -25px;
	}
	.hori-selector .right:before{
		bottom: -25px;
		left: -25px;
	}
}
.form-group
{
    position: relative;
    width: 330px;
    margin: 5px 0;
    border-bottom: 3px solid var(--custom-secondary);
}
.form-group input
{
    width: 100%;
    height: 35px;
    padding: 0 35px 0 10px;
    font-size: 1rem;
    background-color: white;
    border: none;
    outline: none;
    color: black;
}
.form-group textarea
{
    
    background-color: white;
    border: none;
    outline: none;
	resize: none;
    color: black;
}

.form-group label
{
    font-size: 1rem;
    color: #000;
    transition: 0.5s;
}
.textarea-custom {
	width: 650px;
}
.custom-select
{
    width: 100%;
    height: 35px;
    padding: 0 35px 0 10px;
    font-size: 1rem;
    background-color: white;
    border: none;
    outline: none;
    color: black;
}

.login-wrapper{
    width: 100dvw;
    height: 85dvh;
    background: url(../../assets/images/station.jpg)no-repeat;
    background-position: center;
    background-size: cover;
	
h2
{
    color: var(--custom-secondary);
    text-transform: uppercase;
    padding: 20px 0;
}

.form-group
{
    position: relative;
    width: 330px;
    margin: 30px 0;
    border-bottom: 3px solid var(--custom-secondary);
}

.form-group input
{
    width: 100%;
    height: 35px;
    padding: 0 35px 0 10px;
    font-size: 1rem;
    background-color: transparent;
    border: none;
    outline: none;
    color: var(--custom-secondary);
}


.form-group label
{
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    font-size: 1rem;
    color: var(--custom-secondary);
    transition: 0.5s;
}

input:focus ~ label,
input:valid ~ label
{
    top: -5px;
}

.form-group i
{
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    color: var(--custom-secondary);
    font-size: 1.2em;
}

p
{
    text-align: center;
    color: var(--custom-secondary);
    margin: 10px 0;
}

p>a
{
    text-decoration: none;
    color: var(--custom-secondary);
    font-weight: 600;
}

p>a:hover
{
    text-decoration: underline;
    font-style: italic;
}

#btn
{
    width: 100%;
    height: 50px;
    border-radius: 40px;
    border: none;
    font-size: 1.5em;
    background-color: var(--custom-primary);
    text-transform: uppercase;
    font-weight: 600;
    margin: 10px 0;
    cursor: pointer;
    transition: all 0.5s;
}

#btn:hover
{
    background: rgba(0, 0, 0, 0.3);
    color: var(--custom-secondary);
}
}
.custom-login-bg{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.container-login
{
    width: 400px;
    background: rgba(0, 0, 0, 0.3);
	-webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 20px;

    border-radius: 20px;
    border: 3px solid var(--custom-primary);
}



.ag-format-container {
	width: auto;
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.ag-courses_box {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	padding: 50px 0;
	
}

.ag-courses_item {
	margin: 0 15px 30px;
	overflow: hidden;
	border:  2px solid var(--custom-primary);
	border-radius: 28px;
}

.ag-courses-item_link {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 350px;
	height: 250px;
	padding: 30px 20px;
	background: transparent;
	text-decoration: none;
	overflow: hidden;
	position: relative;
	-webkit-user-select: none;
	user-select: none;
}

.ag-courses-item_link:hover,
.ag-courses-item_link:hover .ag-courses-item_title,
.ag-courses-item_link:hover .ag-courses-item_body,
.ag-courses-item_link:hover .ag-courses-item_date {
	text-decoration: none;
	color: #ffffff;
}

.ag-courses-item_link:hover .ag-courses-item_bg {
	transform: scale(20);
}

.ag-courses-item_title {
	margin: 0 0 25px;
	overflow: hidden;
	font-weight: bold;
	font-size: 25px;
	color: #000000;
	z-index: 2;
	position: relative;
	text-align: center;
}
.ag-courses-item_body {
	margin: 0 0 25px;
	overflow: hidden;
	font-weight: bold;
	font-size: 35px;
	color: #000000;
	z-index: 2;
	position: relative;
}

.ag-courses-item_date-box {
	font-size: 18px;
	color: #000000;
	z-index: 2;
	position: relative;
}

.ag-courses-item_date {
	font-weight: bold;
	color: #f9b234;
	transition: color .5s ease
}

.ag-courses-item_bg {
	height: 128px;
	width: 128px;
	background-color: var(--custom-primary);
	z-index: 1;
	position: absolute;
	top: -75px;
	right: -75px;
	border-radius: 50%;
	transition: all .5s ease;
}




@media only screen and (max-width: 979px) {
	.ag-courses_item {
		-ms-flex-preferred-size: calc(50% - 30px);
		flex-basis: calc(50% - 30px);
	}

	.ag-courses-item_title {
		font-size: 24px;
	}
}

@media only screen and (max-width: 767px) {
	.ag-format-container {
		width: 96%;
	}

}

@media only screen and (max-width: 639px) {
	.ag-courses_item {
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
	}

	.ag-courses-item_title {
		min-height: 72px;
		line-height: 1;

		font-size: 24px;
	}

	.ag-courses-item_link {
		padding: 22px 40px;
	}

	.ag-courses-item_date-box {
		font-size: 16px;
	}
}


.footer{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 30px;
	color: #000;
	background-color: var(--custom-primary);
    
}
.login-footer{
    color: #000;
	background-color: var(--custom-primary);
	position: fixed;
    bottom: 0;
}
.remarks-by-rmcell{
	width: 100%;
}
.viewCompDetails{
	.form-group{
		margin: 5px;
	}
}
.viewCompDetailsSection{
	.form-group{
		margin: 5px;
	}
}
.select-remark-section{
	border: 2px solid var(--custom-primary);
	.form-group{
		margin: 5px;
	}
}
.saveNext{
	display: flex;
	justify-content: center;
}
.saveNext .btn{
	
	margin: 10px;

}
.saveNext .form-group{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 150px ;
}
.rm-fetched-details{
	width: 100%;
	max-width: 100%;
}

.remarks-div{
	display: flex;
	justify-content: center;
}

.view-link{
	text-decoration: none;
	color: #000;
	cursor: pointer;
}

.btnGenerateReport{
	display: flex;
	justify-content: center;
	align-items: center;
	button {
		--c:  var(--custom-primary); /* the color*/
		width: 60%;
		height: 50px;
		
		box-shadow: 0 0 0 .1em inset var(--c); 
		--_g: linear-gradient(var(--c) 0 0) no-repeat;
		background: 
		  var(--_g) calc(var(--_p,0%) - 100%) 0%,
		  var(--_g) calc(200% - var(--_p,0%)) 0%,
		  var(--_g) calc(var(--_p,0%) - 100%) 100%,
		  var(--_g) calc(200% - var(--_p,0%)) 100%;
		background-size: 50.5% calc(var(--_p,0%)/2 + .5%);
		outline-offset: .1em;
		transition: background-size .4s, background-position 0s .4s;
	  }
	  button:hover {
		--_p: 100%;
		transition: background-position .4s, background-size 0s;
	  }
	  button:active {
		box-shadow: 0 0 9e9q inset #0009; 
		background-color: var(--c);
		color: #fff;
	  }
	  button {
		font-family: system-ui, sans-serif;
		font-size: 1rem;
		cursor: pointer;
		padding: .1em .6em;
		font-weight: bold;  
		border: none;
	  }
}

/*reports CSS*/

table.dataTable {
	border-collapse: collapse; /* Ensures borders don’t double up */
	width: 100%; /* Makes the table take up the full width (optional) */
}
table, th, td {
	border: 1px solid #000; /* Defines the border style, color, and width */
}
table.dataTable thead th {
	background-color: #b5fafd !important;
	text-align: center !important;
	vertical-align: middle;
	padding: 8px;
}
table.dataTable thead td {
	text-align: center !important;
	padding: 8px;
}
.high-value{
	color: green !important;
}
.low-value{
	color: red !important;
}
.neutral-value{
	color: black !important;
}
.highlight{
	background-color: red !important;
}
.CMLreport h5{
	font-weight: bolder;
	border: 1px solid #000;
	background-color: #b5fafd;
	text-align: center;
}
.CMLreport h6{
	font-weight: bolder;
	border: 1px solid #000;
	background-color: #b5fafd;
	text-align: center;
}
.CMLreport #output{
	border: 2px solid #000;
	width: 100%;
	max-height: 500px;
	overflow: auto;
}
.CMLreport #output2{
	border: 2px solid #000;
	width: 100%;
	max-height: 500px;
	overflow: auto;
}

.pvtTotal {
    background-color: unset !important; /* Reset background for total rows */
}

.dash-reports-1{
	max-width: 100%;
	max-height: 600px;
	overflow: auto;
}


.CHG{
	margin:10px;
	padding: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	border: 2px solid var(--custom-primary);
	border-radius: 25px;
}
.CML{
	margin:10px;
	padding: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	border: 2px solid var(--custom-primary);
	border-radius: 25px;
}
.CNW{
	margin:10px;
	padding: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	border: 2px solid var(--custom-primary);
	border-radius: 25px;
}
.ELE{
	margin:10px;
	padding: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	border: 2px solid var(--custom-primary);
	border-radius: 25px;
}
.RPF{
	margin:10px;
	padding: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	border: 2px solid var(--custom-primary);
	border-radius: 25px;
}