.has-float-label {
	position: relative;
}
.has-float-label > label {
	position: absolute;
	/*left: 0;*/
	top: 0;
	cursor: text;
	font-size: 75%;
	opacity: 1;
	-webkit-transition: all .2s;
	transition: all .2s;
	top: -.5em;
	left: 12px;
	z-index: 3;
	line-height: 1;
	text-transform: uppercase;
	padding: 0 1px;
	color: #616161;
}
.has-float-label.has-float-label-right > label {
	left: inherit !important;
	right: 12px !important;
}
.has-float-label > label::after {
	content: " ";
	display: block;
	position: absolute;
	background: white;
	height: 2px;
	top: 50%;
	left: -.2em;
	right: -.2em;
	z-index: -1;
}

.input-group .has-float-label {
	display: table-cell;
}
.input-group .has-float-label .form-control {
	border-radius: 4px;
}
.input-group .has-float-label:not(:last-child) .form-control {
	border-bottom-right-radius: 0;
	border-top-right-radius: 0;
}
.input-group .has-float-label:not(:first-child) .form-control {
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
	margin-left: -1px;
}
