/**** FORM VALIDATION ****/
/*jquery validator plugin*/
form .error {
	outline: 2px solid #f00;
	outline-offset:-2px;
	color: #f00;
}

label.error {
	background: #861111;
	color: #fff;
	margin: 10px;
	padding: 0 11px;
	line-height: 2.1;
	font-weight: normal;
	background: #861111;
	display: inline-block;
	outline: none;
}

label.error:before {
	content: " ";
	height: 10px;
	width: 10px;
	position: absolute;
	pointer-events: none;
	background: inherit;
	transform: translateX(5px) translateY(-50%) rotate(45deg);
	clip-path: polygon(0 0, 100% 0, 0% 100%);
}