| /* Plugin - Parsley */
.parsley-error {
	background: #fff !important;
	border-color: @red !important;
	
	&:focus {
		border-color: @red_darker !important;
		outline: 0;
		box-shadow: 0 0 0 0.125rem rgba(255, 59, 48, 0.3) !important;
	}
}
.parsley-success {
	background: #fff !important;
	border-color: @green !important;
	
	&:focus {
		border-color: @green_darker !important;
		outline: 0;
		box-shadow: 0 0 0 0.125rem rgba(76, 217, 100, 0.3) !important;
	}
}
.parsley-error,
.parsley-success {
	color: @black !important;
	box-shadow: none !important;
}
.parsley-error:focus,
.parsley-success:focus {
	color: @black !important;
}
.parsley-errors-list {
	padding: 0 !important;
	list-style-type: none !important;
	margin: 0 !important;
	color: @red_darker;
	font-size: 12px !important;
	line-height: inherit !important;
	
	&.filled {
		margin-top: 5px !important;
	}
}
 |