/*
Validator Plugin Sears Theme
Author: Juan Camilo Estela - juan.estela@zemoga.com
Version: 1.0
*/

form > div{
	/*position:relative; */
}

.error,
textarea.error,
input.error{
	/* Highlight error field with a red border */
	border:1px solid #dc0b00;	
}

.error-label{
	color:#fff;
	z-index:200;
	position: relative;
	top: -15px;
}

	.error-label .point{
		width:0;
		height:0;
		margin-left:20px;
		border-left:10px solid transparent;
		border-right:10px solid transparent;
		border-bottom:10px solid #dc0b00;
	}

	.error-label ul{
		padding:3px 5px;
		background-color:#dc0b00;
		list-style-type:none;
		-webkit-border-raduis:5px;
		-moz-border-raduis:5px;
		-o-border-raduis:5px;
		border-radius:5px;
		float:none;
		clear:both;
	}

		.error-label ul li{
			font-size:12px;
			font-weight: bold;
			float:none;
			clear:both;
			width:100%;
			color:#fff;
		}
		.error-label ul li:hover{
			background: none;
		}

