:root {
	--main-color: #095255;
	--second-color: #4b8997;
	--third-color: #edf6e0;
	--hover-color: rgb(204, 202, 21);
	--text-color: #333333;
	--bg-color: #f4f4f4;
}

body {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	font-weight: 300;
	font-size: 1.1vw;
	background-color: rgb(237, 237, 237);
}

table thead {
  background-color: var(--second-color);
  color: white;
}

table tbody {
  background-color: white;
  color: black;
}

a {
	text-decoration: none;
	color: var(--main-color);
}

a:hover {
	text-decoration: none;
	color: darkblue;
}

.app-btn {
	background-color: var(--second-color);
	color: white;
}

.app-btn2 {
	background-color: var(--third-color);
	color: black;
}

.app-nav {
	background-color: var(--main-color);
	color: white;
}

h1 {
	font-size: 1.8vw;
	font-weight: 300;
}

h2 {
	font-size: 1.7vw;
	font-weight: 300;
}

h3 {
	font-size: 1.6vw;
}

h4 {
	font-size: 1.4vw;
	font-weight: 300;
}

h5 {
	font-size: 1.3vw;
	font-weight: 300;
}

h6 {
	font-size: 1.2vw;
	font-weight: 300;
}

.list-group-item {
	font-size: 1.1vw;
}

.list-group-item:hover {
	background-color: var(--hover-color);
}

.logotu {
	width: 70px;
	height: 75px;
}

.colorFrame {
	background-color: var(--main-color);
	/* 35,86,156  #23569C */
	color: rgb(255, 255, 255);
}

#logout_text {
	padding: 20px;
	color: white;
	text-align: center;
	background-color: rgb(60, 60, 60);
	/* height:100%; */
	font-size: 16pt;
	font-weight: 300;
}

.base_container {
	margin-top: 100px;
}

#footer2 {
	color: white;
	font-size: 11pt;
	font-weight: 200;
	padding-left: 30px;
	padding-right: 0px;
	padding-top: 20px;
	padding-bottom: 10px;
	background-color: var(--main-color);
}

#footer2 a {
	text-decoration: none;
	color: white;
}

.header_btn {
	font-size: 1em;
	font-weight: 200;
	color: white;
	padding-left: 1em;
	padding-right: 1em;
}

.header_btn:hover {
	text-decoration: none;
	color: white;
	background-color: rgb(67, 120, 190);
}

.thin-row {
	padding-top: 0px !important;
	padding-bottom: 0px !important;
	font-weight: 200;
}

/* Sidebar overlay to dim the page when sidebar is open */
#sidebarOverlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5); /* 50% opacity */
	z-index: 1040; /* below the sidebar */
	opacity: 0;
	transition: opacity 0.25s ease;
	pointer-events: none;
}
#sidebarOverlay.active {
	display: block;
	opacity: 1;
	pointer-events: auto;
}

/* Fixed sidebar that overlays the main content */
.sidebar {
	position: fixed !important;
	top: 92px; /* leave space for the fixed-top navbar */
	left: -350px; /* hidden by default (off-canvas) */
	width: 350px;
	height: calc(100% - 92px);
	background: var(--third-color);
	opacity: 0.9;
	border-top-right-radius: 12px;
	border-bottom-right-radius: 12px;
	overflow: hidden; /* contain rounded corners */
	z-index: 1050; /* above the overlay */
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	transition: left 0.25s ease;
	overflow-y: auto;
}
.sidebar.open {
	left: 0; /* slide in */
}

.hp_required {
	position: absolute;
	left: -9999px; /* Pushes it way off-screen */
	opacity: 0;
	visibility: hidden;
}

.app-menu-color {
  background-color: var(--third-color);
  box-shadow: #333333 0px 2px 8px 0px;
}

.dropdown-item:hover {
  background-color: var(--hover-color);
}
/* responsive tweak: smaller width on very small screens */
@media (max-width: 480px) {
	.sidebar {
		width: 260px;
	}
}

@media screen and (max-width: 1200px) {
	body {
		font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
		font-size: 14px;
	}
	h1 {
		font-size: 18px;
	}
	h2 {
		font-size: 17px;
	}
	h3 {
		font-size: 16px;
	}
	h4 {
		font-size: 15px;
		font-weight: 300;
	}
	h5 {
		font-size: 14px;
	}
	h6 {
		font-size: 12px;
	}
	.list-group-item {
		font-size: 1.7vw;
	}
	.list-group-item:hover {
		background-color: rgb(191, 232, 255);
	}
	.logotu {
		width: 100%;
		height: auto;
	}
	#logout_text {
		padding: 20px;
		color: white;
		background-color: rgb(60, 60, 60);
		height: 100%;
		font-size: 10pt;
		font-weight: 300;
		margin-bottom: 0;
	}
	#sbar {
		display: none;
	}
	.mymodal h1 {
		font-size: 1.6rem;
	}
	.base_container {
		margin-top: 65px;
	}
	#footer2 {
		color: white;
		font-size: 0.8rem;
		font-weight: 200;
		padding: 10px;
		background-color: var(--main-color);
	}

	.container-app {
		margin-top: 80px;
		padding-left: 15px;
		padding-right: 15px;
	}
}
