/* Regular */
@font-face {
	font-family: 'Roboto Condensed';
	src: url('../fonts/RobotoCondensed-Regular.woff2') format('woff2'),
         url('../fonts/RobotoCondensed-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
}

/* Bold */
@font-face {
	font-family: 'Roboto Condensed';
	src: url('../fonts/RobotoCondensed-Bold.woff2') format('woff2'),
		 url('../fonts/RobotoCondensed-Bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
}

/* Italic */
@font-face {
	font-family: 'Roboto Condensed';
	src: url('../fonts/RobotoCondensed-Italic.woff2') format('woff2'),
         url('../fonts/RobotoCondensed-Italic.woff') format('woff');
	font-weight: 400;
	font-style: italic;
}

body {
	font-family: 'Roboto Condensed', Arial;
	color: #000;
	font-size:16px;
	
	padding-top: 70px;
	padding-bottom: 170px;
	
	background-size: cover;
	background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    height: 100% 100vh; /* Full height of the viewport */
}

body a {
	color:#4274af;
	text-decoration: none;
}
body a:hover {
	text-decoration: underline;
	color:#31b0e6;
}

.container {
  padding-bottom: 3rem; /* adjust as needed */
}

/* Full screen loading wrapper */
#loading {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999; /* Makes sure it's on top of other elements */
}

.lbl {
	font-weight: bold;
}
.textbox {
	border: 1px solid #4274af;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.reversed-header {
    background-color: #4274af; /* dark gray */
    color: #ffffff;            /* white text */
    font-weight: bold;
    letter-spacing: 0.5px;
}

/* Image styling (optional) */
#loading img {
	width: 100px; /* You can adjust this based on your image */
	height: 100px;
}
/* Page content starts hidden */
#content {
	display: none;
}

.btn {
	border-radius:5px;
	padding:5px 15px;
}
.btn-default {
	background-color:#4274af;
	color:#fff;
}
.btn-default:hover {
	color:#000;
	background-color:#eee;
	border:1px solid #4274af;
}
.btn-secondary {
	background-color:#999;
	color:#fff;
}
.btn-secondary:hover {
	color:#000;
	background-color:#eee;
	border:1px solid #999;
}

.switch-field {
    display: flex;
    align-items: center;
    padding: 5px;
    width: fit-content;
}
.switch-field input {
    display: none;
}
.switch-field label {
    padding:5px 15px;
	border:1px solid #394084;
    cursor: hand;
    transition: all 0.3s ease-in-out;
}
.switch-field input:checked + label {
    background-color: #394084;
    color: white;
}

form {
	width: 100%;
}

/* Transparent fixed navbar */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.7); /* semi-transparent */
	z-index: 1030;
}

.navbar-nav .nav-item {
	color: #4274af;
	margin-right: 10px;
	font-weight: bold;
}

/*
.navbar-nav .dropdown-menu {
	background-color: #eee;
	border: 1px soled #ccc;
}
*/
.navbar-nav .dropdown-menu .dropdown-item {
	color: #000;
}

.navbar-nav .dropdown-menu .dropdown-item:hover {
	color: #000;
	background-color: #eee;
}

.navbar-nav .divider {
  display: none; /* hide HR on desktop */
}

.navbar-nav .space {
  display: list-item; /* show spacing li */
}
/* Mobile only */
@media (max-width: 768px) {
  .navbar-nav .divider {
	display: list-item; /* show HR */
  }
  .navbar-nav .space {
    display: none; /* hide space */
  }
}

.pagination {
	display: inline-block;
	padding-left: 0;
	margin: 10px 0;
	border-radius: 3px;
}
.pagination > li {
	display: inline;
}
.pagination > li > a,
.pagination > li > span {
	position: relative;
	float: left;
	padding: 6px 12px;
	line-height: 1.42857143;
	text-decoration: none;
	color: #373e4a;
	background-color: #fff;
	border: 1px solid #ddd;
	margin-left: -1px;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
	margin-left: 0;
	border-bottom-left-radius: 3px;
	border-top-left-radius: 3px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
	border-bottom-right-radius: 3px;
	border-top-right-radius: 3px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
	z-index: 2;
	color: #818da2;
	background-color: #eeeeee;
	border-color: #ddd;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
	z-index: 3;
	color: #fff;
	background-color: #373e4a;
	border-color: #949494;
	cursor: default;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
	color: #999999;
	background-color: #fff;
	border-color: #ddd;
	cursor: not-allowed;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
	padding: 10px 16px;
	font-size: 15px;
	line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
	border-bottom-left-radius: 3px;
	border-top-left-radius: 3px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
	border-bottom-right-radius: 3px;
	border-top-right-radius: 3px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
	padding: 5px 10px;
	font-size: 11px;
	line-height: 1.5;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
	border-bottom-left-radius: 2px;
	border-top-left-radius: 2px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
	border-bottom-right-radius: 2px;
	border-top-right-radius: 2px;
}

/* Footer Styles */
footer {
	position:relative;
    margin:0;
	padding:7px;
	background-color:#4274af;
	color:#fff;
	text-align:center;
	font-weight:normal;
}
footer a {
	color:#fff;
	text-decoration:none;
}
footer a:hover {
	color:#ed1c24;
	text-decoration:underline;
}


@media (max-width: 600px) {
	.wd50{	
		
		width: 6rem!important;
	}
}