@charset "utf-8";
/* CSS Document */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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 {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*End of Myers Reset*/


* {
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
  font-weight:400;
}
strong {
	font-weight:bold;
}
body {
  	background-color: #f1f1f1;	
	font-size:1em;
	line-height:1.5;
	  font-family: 'Open Sans', sans-serif;
  font-weight:400;
}
#header {
	width:70%;
	min-width:300px;
	margin:1.5em auto;
}
#header:after {
  content: "";
  display: table;
  clear: both;
}
.logo {
	display:block;
	float:left;
	width:30%;
}
#regForm {
	position:relative;
  background-color: #ffffff;
  border:.5px solid #ccc;
  margin: 0 auto;
  padding: 40px;
  width: 70%;
  min-width: 300px;
	transition:max-height 1s;
	height:auto;
	max-height:2000px;
}

h1 {
  text-align: center;
	font-size:2.5em;
	font-weight:bold;
}
h2 {
	clear:both;
	font-family: 'Lora', serif;
	font-size:1.35em;
	color:#40798c;
}
h2.successful {
	font-size:2em;
	margin-bottom:1.5em;
}
p.success_text {
	font-weight:bold;
	font-size:1.15em;
}
p.success_text2 {
	font-size:1.15em;
}
input, select, option {
  padding: 10px;
  font-size: 1em;
  border: 1px solid #aaaaaa;
  transition:1s;
}
form p {
  margin-bottom:1em;
}
.divider_line {
	display:block;
	width:100%;
	height:0;
	border-bottom:dotted 5px #DCDCDC;
	margin:2em 0 1.5em 0 !important;
}
.divider_line_thin {
	display:block;
	width:100%;
	height:0;
	border-bottom:solid 1px #DCDCDC;
	margin:2em 0 1.5em 0 !important;
}
/*Checkbox Stuff*/
.focus_block {
	width:100%;
	padding:.5em 2%;
	margin-bottom:1em;
	background-color:#DAFFFA;
	border:1px solid #ccc;
}
 .felony {
	display:block;
	 padding-top:10px;
}
.doc, .consult, .felony {
	font-size:1.1em;
	
}
.doc {
	display:block;
	width:100%;
	margin-bottom:1em;
}
.doc_upload {
	margin-top:13px;
	font-weight:bold;
	width:18%;
	float:left;
}
.floatbox {
	float:left;
	margin-right:10px;
}
.checkbox {
    display: block;
    min-height: 20px;
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.icon-form-control + .icon { 
    border: 1px solid #ccc;
} 

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    border: 0;
}
.rad .icon-form-checkbox {
	border-radius:50%;
}
.checkbox .icon-form-checkbox {
    display: inline-block;
    width: 24px; 
    height: 24px; 
	radius:50%;
    font-size: 1.1em; 
    background: #eee; 
    border: 1px solid #999; 
    color: #eee; 
    margin-right: 5px; 
    margin-left: -20px;
    position: relative;
}
.checkbox .icon-form-control:checked + .icon-form-checkbox:before { border-color: #999; }
.checkbox .icon-form-control + .icon-form-checkbox:before { 
    content: "";
    display: inline-block;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    height: 8px;
    width: 4px;
    background: transparent;
    border: 3px solid #eee;
    border-top: 0px;
    border-left: 0px;
    top: 4px;
    left: 8px;
    position: absolute;
}
.checkbox .icon-form-control + .icon-form-checkbox:after { 
    content: "";
    display: inline-block;
    height: 8px;
    width: 4px;
    background: transparent;
    border: 3px solid #eee;
    border-top: 0px;
    border-left: 0px;
}
/*End Checkbox Stuff*/
select {
	background-color:#F0F0F0;
}
select:focus, input:focus {
	background-color:rgba(226,192,68,.15);
	transition:1s;
}

select, option, input[type=text] {
	margin-bottom:0em;
	width:100%;
}

input[type=file] {
	border:0;
	background-color:transparent;
}
input[type=submit] {
	padding:0;
	border:0;
	background-color:transparent;
	margin:0;
	color:#fff;
	font-weight:bold;
	font-size:1em;
}
p.label {
	clear:both;
	margin-top:.5em;
	margin-bottom:0em;
	font-weight:bold;
}
/* Mark input boxes that gets an error on validation: */
input.invalid, select.invalid, input[type=file].invalid, input[type=checkbox].invalid {
  background-color: #ffdddd !important;
border:1px red solid;
}

/* Hide all steps by default: */
.tab {
  display: none;
}

button {
  background-color:#40798c;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 17px;
  font-weight:bold;
  cursor: pointer;
}

button:hover {
  opacity: 0.8;
}

#prevBtn {
  background-color: #bbbbbb;
}
.remove_field {
	display:block;
	margin-bottom:.5em;
	font-family: 'Lato', sans-serif;
	color:#C10E11;
}
/* Make circles that indicate the steps of the form: */
.step_nest {
	position:absolute;
	left:0;
	bottom:0;
	width:100%;
	margin:0;
	padding:0;
}
.step {
  height: 5px;
  width: 10%;
  margin:0 !important;
	border:0;
  background-color: #bbbbbb;
  box-sizing:border-box;
  display: block;
	float:left;
  opacity: 0.5;
}

.step.active {
  opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
  background-color:#40798c;
	opacity: 1;
}
.privacy {
	margin:.25em auto;
	width:70%;
	font-family: 'Lato', sans-serif;
}
.privacy a {
	color:#40798c;
}
/*Footer*/
footer {
	width:100%;
	margin-top:5em;
	padding:1em 0em 15em 0em;
	background-color:#2b2b2b;
	border-top:5px solid #ccc;
	font-family: 'Lato', sans-serif;
	color:#fff;
	font-size:.85em;
}
footer a {
	color:#fff;
	font-weight:bold;
	text-decoration:none;
}
footer a:hover {
	text-decoration:underline;
}
.footer_band {
	width:70%;
	min-width:300px;
	margin:0 auto;
	padding:0;
}
.one, .two, .three {
	float:left;
	margin-bottom:1em;
}
.one {
	width:25%;
	padding-bottom:1em;
}
.two {
	padding:1.5em 2.5% 2.5em 2.5%;
	width:45%;
	text-transform:uppercase;
}
.three {
	width:25%;
	padding:1.5em 0 2.5em 0;
}
.dots {
	width:100%;
	border-top:.25px dotted #fff;
	padding-top:1em;
}