h2, h3 {
  	font-family:Arial, Helvetica, sans-serif;
	text-align: center;
	color:#FFFFFF;
	font-weight:normal;
}

/* Pages */
.page-title {
  	font-family: 'Roboto', sans-serif;
	font-size: 22px;
	text-align: center;
	color:#555555;
	font-weight:bold;
}

.sub-title {
  	font-family: 'Roboto', sans-serif;
	font-size:16px;
	font-weight:bold;
	color:#555555;
}

.label-text {
  	font-family: 'Roboto', sans-serif;
	font-size:15px;
	text-align:left;
	color:#555555;
}

.body-text {
  	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	color: #000;
}

.print-text {
  	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
	color: #000;
}
/*-----------------------------------------------------------*/


/*Forms*/
input, select {
	padding: 5px;
	margin-bottom: 10px;
	border: none;
	outline: none;
  	font-family: 'Roboto', sans-serif;
	font-size: 15px;
	color: #000;
 	border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

textarea {
	padding: 5px;
	margin-bottom: 10px;
	border: none;
	outline: none;
  	font-family: 'Roboto', sans-serif;
	font-size: 15px;
	color: #000;
	height:180px;
 	border: 2px solid rgba(0, 0, 0, 0.2);
}

option {
	padding:8px;
}

input:focus, select:focus, textarea:focus {
	border-bottom: 2px solid #E37F00;
}

.info-text {
  	font-family: 'Roboto', sans-serif;
	font-size:15px;
	text-align:left;
	color:#378C31;
}

.err-text {
  	font-family: 'Roboto', sans-serif;
	font-size:15px;
	text-align:left;
	color:#F21004;
}

button {
	background: #5d8295;
	border: 1px solid DodgerBlue;
	border-radius: 6px;
	box-shadow: rgba(0, 0, 0, 0.1) 1px 2px 4px;
	box-sizing: border-box;
	color: #FFFFFF;
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	line-height: 16px;
	min-height: 40px;
	outline: 0;
	padding: 12px 14px;
	text-align: center;
	text-rendering: geometricprecision;
	text-transform: none;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
	vertical-align: middle;
	-webkit-transition: background-color 0.5s ease-out;
	-moz-transition: background-color 0.5s ease-out;
	-o-transition: background-color 0.5s ease-out;
	transition: background-color 0.5s ease-out;
}

button:hover,
button:active {
  background-color: #24656C;
  background-position: 0 0;
}

button:active {
  opacity: .5;
}

.icon-button {
    font-family:"Trebuchet MS", "Myriad Pro", Arial, sans-serif;
	background: #ffffff;
	border: none;
	border-radius: 6px;
	box-sizing: border-box;
	color: #FFFFFF;
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	line-height: 16px;
	min-height: 30px;
	outline: 0;
	padding: 5px 10px 5px 10px;
	text-align: center;
	vertical-align:middle;
	text-rendering: geometricprecision;
	text-transform: none;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
	vertical-align: middle;
	-webkit-transition: background-color 0.5s ease-out;
	-moz-transition: background-color 0.5s ease-out;
	-o-transition: background-color 0.5s ease-out;
	transition: background-color 0.5s ease-out;
}

.icon-button:hover,
.icon-button:active {
  /*background-color: #EBEBEB;*/
  background-position: 0 0;
  color:#555555;
  border: 1px solid #C8C8C8;
}

.icon-button:active {
  opacity: .5;
}


/*File upload*/
.custom-file-input {
	cursor:pointer;
}

.custom-file-input::-webkit-file-upload-button {
  visibility: hidden;
}

.custom-file-input::before {
  content: 'Attach ERC Certificate';
  color: black;
  display: inline-block;
  background: -webkit-linear-gradient(top, #f9f9f9, #e3e3e3);
  border: 1px solid #999;
  border-radius: 3px;
  padding: 5px 8px;
  outline: none;
  white-space: nowrap;
  -webkit-user-select: none;
  cursor: pointer;
  text-shadow: 1px 1px #fff;
  font-weight: 700;
  font-size: 10pt;
}

.custom-file-input:hover::before {
  border-color: black;
}

.custom-file-input:active {
  outline: 0;
}

.custom-file-input:active::before {
  background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9); 
}

/*-----------------------------------------------------------*/

/*Page Busy */
#loading-div-background  
{
	display:none;
	position:fixed;
	top:0;
	left:0;
	background:black;
	width:100%;
	height:100%;
}

#loading-div 
{
	 width: 300px;
	 height: 200px;
	 background-color: #0c0b0b;
	 text-align:center;
	 position:absolute;
	 left: 50%;
	 top: 50%;
	 margin-left:-150px;
	 margin-top: -100px;
}
