
/*Validation*/
.parsley-errors-list li {
  padding: 0;
  list-style: none;
  color: #cc0000;
}

.form-group .btn-group.bootstrap-select {
	margin-bottom: 0;
}

.errorsWrapper {
	position: relative;
	z-index: 10;
	clear: both;
}
.errorsWrapper .msg {
	box-sizing: border-box;
	display: block;
	position: absolute;
	left:0;
	right:0;
	background: #DD0000;
	border-bottom-left-radius:6px;
	border-bottom-right-radius:6px;
	color: white;
	padding: 0px 5px;
	font-size: 11px;
	text-align: center;
	box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

input.parsley-success,
select.parsley-success,
textarea.parsley-success,
/*div.parsley-success*/ 
.parsley-success .form-control {
	color: #468847;
	background-color: #DFF0D8;
	border: 1px solid #D6E9C6;
}

input.parsley-error,
select.parsley-error,
textarea.parsley-error,
/*div.parsley-error,*/
.parsley-error .form-control {
	color: #B94A48;
	background-color: #F2DEDE;
	border: 1px solid #DD0000;
	box-shadow: 0 4px 10px rgba(0,0,0,0.3);
	border-bottom-left-radius:0;
	border-bottom-right-radius:0;
}
.parsley-error .selectpicker {
	background: none;
	border: none;
}

.parsley-errors-list {
	/*margin: 2px 0 3px;*/
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 0.9em;
	line-height: 0.9em;
	opacity: 0;
	-moz-opacity: 0;
	-webkit-opacity: 0;

	transition: all .3s ease-in;
	-o-transition: all .3s ease-in;
	-moz-transition: all .3s ease-in;
	-webkit-transition: all .3s ease-in;
}

.parsley-errors-list.filled {
	margin: 2px 0 3px;
	opacity: 1;
}