/*------------------------------------------------------------------------
	Loader
-------------------------------------------------------------------------*/
p a {
    color: #004785;
}

p a:hover{
    color: #00a9a9;
    text-decoration: none;
}

.loader {
	height: 4px;
	width: 100%;
	position: relative;
	overflow: hidden;
	background-color: #ddd;
}

.loader:before {
	display: block;
	position: absolute;
	content: "";
	left: -200px;
	width: 200px;
	height: 4px;
	background-color: #004379;
	animation: loading 2s linear infinite;
}

@keyframes loading {
	from {
		left: -200px;
		width: 30%;
	}
	50% {
		width: 30%;
	}
	70% {
		width: 70%;
	}
	80% {
		left: 50%;
	}
	95% {
		left: 120%;
	}
	to {
		left: 100%;
	}
}

/*------------------------------------------------------------------------
	Top container
-------------------------------------------------------------------------*/

.top-container {
	text-align: center;
}

.top-container img{
	margin-bottom: 10px;
}

@media only screen and (max-width: 768px) {
	.top-container img {
		width: 250px;
	}
}

/*------------------------------------------------------------------------
	Admin Notice
-------------------------------------------------------------------------*/

.alert-box {
	color: #555;
	border-radius: 10px;
	font-family: Tahoma, Geneva, Arial, sans-serif;
	font-size: 11px;
	padding: 25px 10px 25px 10px;
	margin: 10px 30px;
	text-align: center;
	text-transform: uppercase;
	text-decoration: underline;
}

.alert-box span {
	font-weight: bold;
}

.warning {
	background: #fff8c4;
	border: 1px solid #f2c779;
}

@media only screen and (max-width: 768px) {
	.alert-box {
		display: none;
	}
}

/*------------------------------------------------------------------------
Header
-------------------------------------------------------------------------*/

.header {
	padding: 10px 0;
	color: #004785;
	background: #fff;
	text-align: center;
	z-index: 999;
}

.header h2 {
	font: bold 34px 'Open Sans', sans-serif;
	margin: 10px 0 10px 0;
}

@media (max-width: 768px) {
	.header h2 {
		font: 22px 'Open Sans', sans-serif;
	}
}

/*------------------------------------------------------------------------
Intro Section
-------------------------------------------------------------------------*/

.intro {
	position: relative;
	justify-content: center;
	color: #414a4f;
	text-align: center;
	margin: 10px;
}

.intro img {
	margin: 5px 0 10px 0;
}

@media (max-width: 768px) {
	.intro h1 {
		font: 32px 'Open Sans', sans-serif;
		margin: 40px 40px 40px 40px;
	}
	.intro img {
		width: 300px;
		margin: 40px 0 40px 0;
	}
	.intro p {
		margin: 30px 35px 30px 35px;
	}
}

/*------------------------------------------------------------------------
	Content
-------------------------------------------------------------------------*/

.content {
	padding: 0;
}

.sticky {
	position: fixed;
	top: 0;
	width: 100%;
}

.sticky+.content {
	padding-top: 95px;
}

/*------------------------------------------------------------------------
 	Search
-------------------------------------------------------------------------*/

.searchForm {
	max-width: 100%;
	background-color: #f2f2f2;
	font-size: 12px;
	padding: 10px 20px;
	margin: 30px;
}

.searchForm a {
	font-weight: bold;
}

.searchForm .inputField {
	-webkit-appearance: none;
	width: 100%;
	padding: 8px 20px;
	margin: 5px 0;
	display: inline-block;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}

.searchForm .submitButton {
	-webkit-appearance: none;
	width: 100%;
	background-color: #004379;
	color: white;
	font-size: 16px;
	font-weight: bold;
	padding: 14px 20px;
	margin: 6px 0;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

.searchForm .submitButton:hover {
	background-color: #446b8e;
	color: white;
}

.searchForm .newSearch {
	text-align: right;
}

@media (max-width: 768px) {
	.searchForm {
		margin: 10px;
		padding: 5px 5px;
	}
}

/*------------------------------------------------------------------------
 	Table
-------------------------------------------------------------------------*/

.dataResult {
	margin: 30px;
}

#tblData {
	font-size: 12px;
	border-collapse: collapse;
}

/*header*/

#tblData th {
	border: 1px solid #ddd;
	padding: 12px 5px 12px 5px;
	text-align: left;
	background-color: #4d4d4d;
	color: #fff;
}

@media (max-width: 768px) {
	#tblData th {
		border: none;
	}
}

#tblData td {
	border: 1px solid #ddd;
	padding: 5px;
}

@media (max-width: 768px) {
	#tblData td {
		border: none;
		padding: 5px;
	}
}

#tblData tr.odd {
	background-color: #f2f2f2;
}

#tblData tr.even {
	background-color: #ffffff;
}

#tblData tr.odd td.sorting_1 {
	background-color: #eae7e7;
}

#tblData tr.even td.sorting_1 {
	background-color: #eae7e7;
}

/* #tblData td:nth-child(10) {
	background-color: #ffffff;
} */

@media (max-width: 768px) {
	.dataResult {
		margin: 5px 0;
	}
}

/*------------------------------------------------------------------------
 	Detail view
-------------------------------------------------------------------------*/

@media (min-width: 769px) {
	.child {
		display: none;
	}
}

.rTable {
	display: table;
	width: 100%;
}

.rTableRow {
	display: table-row;
}

.rTableRowHeader {
	color: #000;
	font-weight: bold;
}

.rTableCell, .rTableHead {
	display: table-cell;
	padding: 3px 10px;
	border: 0;
}

.rField {
	width: 30%;
}

.rValue {
	width: 70%;
}

/*------------------------------------------------------------------------
 	Footer text section
-------------------------------------------------------------------------*/

.footerText {
	text-align: center;
	margin-top: 25px;
}

.footerText hr {
	width: 150px;
	height: 2px;
	background-color: #d41b27;
	border: 0;
	margin-bottom: 25px;
}

.footerText a {
	color: #000;
}

.footerText a:hover {
    color: #000;
    text-decoration: none;
}

@media (max-width: 768px) {
	footer {
		padding: 0 0 15px 0;
	}
	.footerText p {
		margin: 30px 35px 30px 35px;
	}
}

/*------------------------------------------------------------------------
 	Footer
-------------------------------------------------------------------------*/

footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
    color: #fff;
    background-color: #273b4c;
	padding: 20px 0 60px 0;
}

footer p {
	text-transform: uppercase;
	font-size: 14px;
	color: #000;
	margin-bottom: 10px;
}

footer a {
	color: #fff;
}

footer a:hover {
    color: #fff;
    text-decoration: none;
}

.clicktocall {
	padding-bottom: 25px;
}


@media (max-width: 768px) {
	footer {
		padding: 20px 0 15px 0;
	}
}

/*------------------------------------------------------------------------
 	Accordion button 
-------------------------------------------------------------------------*/

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  border-radius: 4px;
  background-color: #CBCBCB;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  font-weight: bold;
  border: none;
  outline: none;
  transition: 0.4s;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
  background-color: #ccc;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  background-color: white;
  display: none;
  overflow: hidden;
}

.searchForm .accordion:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}

.searchForm .active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}

/*------------------------------------------------------------------------
 	Back top button
-------------------------------------------------------------------------*/

#btnBackTop {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 99;
	font-size: 18px;
	border: none;
	outline: none;
	background-color: red;
	color: white;
	cursor: pointer;
	padding: 15px;
	border-radius: 4px;
}

#btnBackTop:hover {
	background-color: #555;
}

/*------------------------------------------------------------------------
	Vertical menu options
-------------------------------------------------------------------------*/

.mainContent
{
	padding: 10px 0;
	text-align: center;
}

.mainContent .linkVerticalMenu {
  list-style-type: none;
  margin: auto;
  padding: 0;
  width: 350px;
}

.linkVerticalMenu li a {
  display: block;
  color: #004785;
  padding: 20px 10px;
  margin: 10px 0 10px 0;
  text-decoration: none;
  border: 2px solid #004785;
}

/* Change the link color on hover */
.linkVerticalMenu li a:hover {
    color: #00a9a9;
    font-weight: bold;
    border: 2px solid #00a9a9;
}

/*------------------------------------------------------------------------
	Public search - Submit button
-------------------------------------------------------------------------*/

.submitButton {
	-webkit-appearance: none;
	width: 300px;
	background-color: #e50f26;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	padding: 14px 20px;
	margin: 6px 0;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

.submitButton:hover {
	background-color: #30aaaa;
	color: #fff;
}

.inputField {
	-webkit-appearance: none;
	width: 80px;
	padding: 8px 2px;
	margin: 5px 0;
	display: inline-block;
    outline: 0;
    color: #b59605;
    font-weight: bold;
    font-size: 22px;
    text-align: center;
    border-width: 0 0 2px;
    border-color: #000;
}
