.form_control.has-error, .select2-selection--single.has-error {
	border-color:red !important;
	animation: errore 1s linear !important;
}

@keyframes errore {
	from {
		box-shadow:0 0 0px 0px red;
	}

	to{
		box-shadow:0 0 3px 0px red;
	}
}

.error {
	color: #fff;
	text-align: left;
	font-size: 12px;
	display: block;
	margin-top: 3px;
	display: none;
	color: #fff;
}

.error.has-error {
	display:block;
}

