﻿@font-face {
	font-family: Roboto;
	src: url(fonts/Roboto-Regular.ttf) format("opentype")
}

body {
	background: radial-gradient(rgb(151, 151, 175), rgb(55, 55, 95));
	font-family: Roboto, Arial;
}
/* The container for the bar */
.top-row-loading-bar {
	/*
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	width: 100vw !important; 
	height: 5px !important;
	background-color: #ff0000 !important; 
	z-index: 9999999 !important; 
	display: block !important;
	animation: sdm-glow 1.5s infinite;*/
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 15px !important; /* Thick bar */
	background: #d7d7d7 !important; /* High contrast */
	z-index: 100000 !important;
	display: block !important;
}
.loading-hidden {
	opacity: 0;
	pointer-events: none;
}
	/* The moving indicator */
.top-row-loading-bar::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 40%;
	height: 100%;
	background-color: #002242; /* Use your brand color here */
	box-shadow: 0 0 10px #002242;
	animation: loading-bar-move 1.5s infinite ease-in-out;
}
@keyframes sdm-glow {
	0% {
		opacity: 0.6;
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 0.6;
	}
}
@keyframes loading-bar-move {
	0% {
		left: -40%;
	}

	100% {
		left: 110%;
	}
}

.text-white{color:#d7d7d7 !important;}
.bi::before{
	vertical-align:.65rem !important;
}
.navlogo{max-height:100px;}
.navbar-green {
	background-color:#89ba44 !important;
}
.nav-scrollable {
	background: linear-gradient(to bottom, #999999, #37375f);
}
@media (max-width: 768px) {
	.nav-scrollable,
	.top-row {
		display: none;
	}

	.navbar-toggler:checked ~ .nav-scrollable,
	.navbar-toggler:checked ~ .top-row {
		display: block;
	}
}

.subnav, footer {
	background: linear-gradient(to right, #37375f, #1e1e2f);
}
.top-row.subnav{height:unset;display:block;z-index:10;}
.subnav h2{color:#d7d7d7;padding-top:8px;}
.btn {
	font-family: Roboto, Arial
}
	.btn.btn-primary, .btn.btn-primary:active {
		background-color: #002242;
		color: #ddddee;
		border-color: #ddddee;
	}
		.btn.btn-primary:focus, .btn.btn-primary:focus-visible {
			box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #002242;
		}
		.btn.btn-primary:hover {
			background-color: #C0C0C0;
			color: #002242;
			border-color:#002242;
		}
fieldset{
	border: 1px solid lightgray;
	border-radius: 5px;
	padding: 5px 10px;
}
/* LOGIN PAGE */
.loginlogo {
	max-width: 415px !important;
	width:80%;
}
.loginContainer {
	width: 500px;
}

	.loginContainer p {
		color: #ddddee;
		font-size: 1.0rem;
		font-family: Roboto, Arial;
		font-weight: 500;
	}

.loginLogo {
	-webkit-justify-content: inherit;
	justify-content: inherit;
}

.loginHeader, .loginHeader h1 {
	color: #ddddee;
	font-size: clamp(1rem, 2rem, 2rem);
	font-family: Roboto, Arial;
	font-weight: 700;
}
.autocomplete-container {
	position: relative; /* anchor for the absolute child */
}

.autocomplete-list {
	position: absolute;
	top: 100%; /* place right below the input */
	left: 0;
	right: 0;
	z-index: 1000; /* make sure it stays above other elements */
	background: white;
	border: 1px solid #ccc;
	border-top: none;
	max-height: 200px;
	overflow-y: auto;
	list-style: none;
	padding: 0;
	margin: 0;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

	.autocomplete-list li {
		padding: 8px 12px;
		cursor: pointer;
	}

		.autocomplete-list li:hover {
			background-color: #f5f5f5;
		}

.scroll-to-top {
	position: fixed;
	bottom: 40px;
	right: 40px;
	z-index: 1000;
	background-color: #002242;
	color: #ddddee;
	border: 1px solid #ddddee;
	border-radius: 50%;
	width: 48px;
	height: 48px;
	font-size: 1.4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 3px 8px rgba(0,0,0,0.3);
	cursor: pointer;
	transition: opacity 0.4s ease, transform 0.3s ease;
	opacity: 0;
	transform: scale(0.8);
	pointer-events: none;
}

	.scroll-to-top.show {
		opacity: 1;
		transform: scale(1);
		pointer-events: auto;
	}

	.scroll-to-top.hide {
		opacity: 0;
		transform: scale(0.8);
		pointer-events: none;
	}

	.scroll-to-top:hover {
		background-color: #C0C0C0;
		color:#002242;
		transform: scale(1.1);
		border: 1px solid #002242;
	}
@media(max-width:1060px){
	/*/.mobilebreaknav{margin-left:0px !important;clear:both;}*/
	.top-row a{margin-left:1rem !important;}
}


.confirm-modal {
	position: fixed;
	inset: 0;
	z-index: 2000;
}

	.confirm-modal .modal-backdrop {
		position: absolute;
		inset: 0;
		background-color: rgba(0,0,0,0.5);
		z-index: 1;
	}

	.confirm-modal .modal-panel {
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		min-width: 320px;
		max-width: 90%;
		background: #fff;
		border-radius: 0.5rem;
		box-shadow: 0 8px 24px rgba(0,0,0,.2);
		padding: 1rem;
		z-index: 2;
	}
	.modal-header.bg-dark {
		background-color: #002242 !important;
	}
	.confirm-modal .modal-header h5 {
		margin: 0;
	}

	.confirm-modal .modal-body {
		margin-top: .5rem;
		margin-bottom: .75rem;
	}

	.confirm-modal .modal-footer {
		display: flex;
		justify-content: flex-end;
		gap: .5rem;
	}
