
/* Flex update */
.flex-even {
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

/* General Updates */
.btn-primary { background-color: #579940; border-color: #579940; }
.btn-primary:hover { background-color: #4b8637; border-color: #4b8637; }
.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle { background-color: #579940; border-color: #579940; }
.btn-primary.focus, .btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-primary.dropdown-toggle:focus { -webkit-box-shadow: 0 0 0 .2rem rgba(87,153,64,.5); box-shadow: 0 0 0 .2rem rgba(87,153,64,.5); }

.form-control:focus { -webkit-box-shadow: 0 0 0 .2rem rgba(0,174,230,.25); box-shadow: 0 0 0 .2rem rgba(0,174,230,.25); }

.boldtext { color: #00AEE6; }

/* Form */

.multi_step_form {
	background: #ffffff;
	overflow: hidden;
}
.multi_step_form #msform {
	position: relative;
	padding-top: 30px;
	/*min-height: 820px;*/
	z-index: 1;
	transition:min-height 0.5s ease;
	-webkit-transition:min-height 0.5s ease;
	-moz-transition:min-height 0.5s ease;
	-o-transition:min-height 0.5s ease;
}
.multi_step_form #msform fieldset {
	border: 0;
	padding: 20px 15px;
	position: relative;
	width: 100%;
	left: 0;
	right: 0;
}
.multi_step_form #msform fieldset:not(:first-of-type) {
	display: none;
}

.multi_step_form #msform fieldset .form-group {
	padding: 0 10px;
}
.multi_step_form #msform #progressbar {
	overflow: hidden;
	text-align: center;
}
.multi_step_form #msform #progressbar li {
	list-style-type: none;
	color: #99a2a8;
	position: relative;
}

.multi_step_form #msform #progressbar {
	counter-reset: section;
}

.multi_step_form #msform #progressbar li:before {
	counter-increment: section;
	content: counter(section);
}

.multi_step_form #msform #progressbar li:before {
	width: 40px;
	height: 40px;
	line-height: 40px;
	display: block;
	background: #eaf0f4;
	border-radius: 50%;
	margin: 0 auto;
}
.multi_step_form #msform #progressbar li:after {
	content: '';
	width: 100%;
	height: 10px;
	background: #eaf0f4;
	position: absolute;
	left: -50%;
	top: 15px;
	z-index: -1;
	font-weight: bold;
}
.multi_step_form #msform #progressbar li:last-child:after {
	width: 150%;
}
.multi_step_form #msform #progressbar li.active {
	color: #00AEE6;
}
.multi_step_form #msform #progressbar li.active:before, .multi_step_form #msform #progressbar li.active:after {
	background: #00AEE6;
	color: white;
}

.input-label-box input[type="radio"],
.input-label-box input[type="checkbox"] {
	display: none;
}
.input-label-box label {
	border: 1px solid #dee2e6;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.input-label-box label:hover { 
	color: #00AEE6;
}
.input-label-box input[type="radio"]:checked+label,
.input-label-box input[type="checkbox"]:checked+label {
	border-color: #00AEE6;
	color: #00AEE6;
}

@media (min-width: 576px) {
	.multi_step_form #msform fieldset {
		padding: 20px 30px;
	}
	.multi_step_form #msform #progressbar li:before {
		width: 50px;
		height: 50px;
		line-height: 50px;
		margin-bottom: 10px;
	}
	.multi_step_form #msform #progressbar li:after {
		top: 21px;
	}
}
