/*
	Blue: #19197b
	Light Blue: #74a3f3;
	Yellow: #f8df22
	New Yellow For Now: #ffba00
	Grey: #f4f4ed;
	Blackish: #2b2d42;
*/


html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video,input {
	margin: 0;
	padding: 0;
	border: 0;
}

body {
	background-color: #FFFFFF;
	color: #2b2d42;
	width: 100%;
}

html, body {
	height: 100%;
}

a, a:visited {
	text-decoration: none;
	color: #74a3f3;
	transition: opacity 0.2s;
}

a:hover {
	cursor: pointer;
	opacity: .7;
	transition: opacity 0.1s;
}

body > * {
	width: 100%;
}


/* Standard Elements */

h1, h2, h3, h4 {
	font-family: "Open Sans Condensed",Helvetica,Arial,Lucida,sans-serif;
	font-weight: 700;
	line-height: 1;
}

h1 { font-size: 2em;  }
h2 { font-size: 1.8em; }
h3 { font-size: 1.5em; }
h4 { font-size: 1.2em; }

a.btn {
	background-color: #ffba00;
	color: #19197b;
	display: inline-block;
	font-weight: 700;
	text-transform: uppercase;
	padding: 0.3em 0.5em;
	border-radius: 4px;
	transition: all 0.2s;
}

a.btn:hover {
	color: #FFF;
	background-color: #19197b;
	opacity: 1;
}

div#overscan {
	width: 100%;
	height: 100%;
	display: none;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 130;
	position: fixed;
	top: 0;
	left: 0;
	overflow-y: auto;
}

section#viewBlock {
    display: block;
    background-color: #FFFFFF;
    border-radius: 10px;
    margin: 3.5em auto;
    z-index: 150;
    padding: 0.8em 0.8em;
    position: relative;
    overflow: hidden;
	width: 42em;
	max-width: 80%;
	min-height: 21em;
	
}

section#viewBlock menu {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	margin-bottom: 20px;
}

section#viewBlock menu a {
	width: 24px;
	height: 24px;
	color: #000 !important;
}

section.formGroup {
	padding: 0 20px;
}

section.formGroup div {
	margin-bottom: 10px;
	position: relative;
	padding: 0 5px;
	display: block;
}

section.formGroup > div ~ div {
	margin-left: 5px;
}

section.formGroup label, section.formGroup input, section.formGroup select, section.formGroup textarea {
	display: block;
	width: 100%;
	margin-bottom: 5px;
	min-height: 20px;
}

section.formGroup input, section.formGroup select, section.formGroup textarea {
	border-radius: 4px;
	border: 1px #dbe6ec solid;
	padding: 5px;
	box-sizing: border-box;
	height: 30px;
}

section.formGroup textarea {
	height: 90px;
	resize: none;
}

section.formGroup input:hover, section.formGroup select:hover, section.formGroup textarea:hover {
	box-shadow: 0px 0px 5px #c0c0c0;
}

section.formGroup input:focus, section.formGroup select:focus, section.formGroup textarea:focus {
	box-shadow: 0px 0px 5px #19197b;
}

section.formGroup input[type='button'] {
	background-color: #ffba00;
	color: #19197b;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	border: 0 !important;
	margin-top: 20px;
}

section.formGroup input[type='button']:hover {
	cursor: pointer;
}



/* jQuery Required */

label.error {
	position: absolute;
	z-index: 100;
	top: 45px;
	font-size: 8px;
	color: #B91515;
	right: 10px;
	pointer-events: none;
	width: 85px !important;
}

input.error {
	border-color: #B91515 !important;
	box-shadow: 0px 0px 5px #B91515 !important;
}