@charset "utf-8";

/*Validación Formulario*/

div#note{
width:100%;
height:auto;
left:0;
top:0;
position:absolute;
z-index:9;
}

.notification_error, .notification_ok{
background-color:#FEEFDA;
background-repeat:no-repeat;
background-position:left 50%;
position:absolute;
width:40%;
left:20%;
margin-top:50px;
padding:30px 30px 30px 60px;
font-size:14px;
border-width:3px;
border-style:solid;
-moz-box-shadow:0 20px 10px -15px #443c36;
-webkit-box-shadow:0 20px 10px -15px #443c36;
box-shadow:0 20px 10px -15px #443c36;
}

.notification_error{
border-color:#F7941D;
}

.notification_ok{
border-color:#31ad27;
}

.notification_error:before,
.notification_ok:before{
	position:absolute;
	font:24px 'FontAwesome';
	left:20px;
	top:30px;	
}

.notification_error:before{
	content:'\f071';
	color:#f7941d;
}

.notification_ok:before{
	content:'\f00c';
	color:#31ad27;
}


