/* Extend Bootstrap Form */
.form .form-group {
	margin-bottom: 0;
	padding: 10px 0;
}
.form-group:first-child {
	border-color: transparent;
}

.form label.error {
	color: #f32006;
	font-weight: normal;
	letter-spacing: 0.5px;
	word-spacing: 0.5px;
	margin: 3px 0 0 2px;
}

.form .form-control {
	-webkit-box-shadow: none;
	box-shadow: none;
	border-width: 2px;
	min-height: 40px;
	letter-spacing: 0.5px;
	height: auto;
}
.form-control:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.form-vertical {
	counter-reset: fieldset;
}
.form-vertical fieldset {
	padding-top: 10px;
	margin: 50px 0;
}
.form-vertical fieldset > legend:before {
	content: counter(fieldset);
	counter-increment: fieldset;
	position: absolute;
	left: -25px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	border-radius: 15px;
	text-align: center;
	background: #428bca;
	color: white;
	font-size: 75%;
	font-weight: bold;
}

label.checkbox {
	margin-bottom: 15px;
	position: relative;
}
label.checkbox .icheckbox_square-blue {
	position: absolute;
	top: 0;
	left: 0;
}
label.checkbox input {
	position: absolute;
	left: 0;
	top: 0;
}
label.checkbox span {
	padding-left: 35px;
	display: block;
}

.radio label {
	padding-left: 0;
}
.radio span {
	vertical-align: middle;
	margin-left: 5px;
}

.form .btn {
	padding: 10px 16px;
	border-radius: 3px;
}

.form .btn-group .btn, .form .input-group .btn {
	/* height: 40px; */
	/* min-width: 80px; */
}

.btn-group.radio-group .btn {
	height: 50px;
	line-height: 22px;
	padding: 12px 20px;
}
.btn-group.radio-group .btn span {
	line-height: 22px;
	vertical-align: middle;
	margin-left: 5px;
}


.control-label {
	font-size: 16px;
	font-weight: normal;
	padding-right: 0;
}

@media (min-width: 768px) {
	.form-horizontal .control-label {
		padding-top: 9px;
	}
}

.form fieldset > legend {
	padding: 10px 0 5px 10px;
	margin-bottom: 15px;
}

.well.form fieldset > legend {
	padding-top: 0
}

.form label sup, .form sup.required {
	color: red;
	font-size: 16px;
	font-weight: bold;
	top: auto;
}