/*LOAN APP*/
#LoanApplication fieldset {
	background: white;
	box-sizing: border-box;
	width: 100%;
	/*stacking fieldsets above each other*/
}
	.loan-form{
		padding:15px;
	}
	.loan-form .form-title{
		margin:0;
	}
/*Hide all except first fieldset*/
#LoanApplication fieldset:not(:first-of-type) {
	display: none;
}

#LoanApplication .row{
	margin-bottom:30px;
}

#LoanApplication input.invalid{
	background-color:#ffdddd;
}

#LoanApplication input.invalid:before{
	content:"Please double check your answer";
	color:red;
}

#LoanApplication input.valid{
	background-color:#ddffe0;
}

.step{
	height:15px;
	width:15px;
	margin:0 2px;
	background-color: #777;
	border: none;  
  	border-radius: 50%;
  	display: inline-block;
	opacity: 0.5;
}

.step.active{
	opacity:1;
	background-color:#008976;
}
.step.finish{
	background-color: green;
}

label{
	display:block;
}