.error
{
	position: relative;
	background: #d5514d;
	border: 3px solid #000000;
	display: inline-block;
	margin-top: 10px;
	width: 100%;
	padding: 1%;
	border-radius: 10px;
	font-style: italic;
	text-align: center;
        -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
        -moz-box-sizing: border-box;    /* Firefox, other Gecko */
        box-sizing: border-box;         /* Opera/IE 8+ */
} 


.error:after, .error:before 
{
	bottom: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
} 

.error:after 
{ 
border-color: rgba(213, 81, 77, 0); 
border-bottom-color: #d5514d; 
border-width: 10px; 
margin-left: -10px; 
} 

.error:before 
{
	border-color: rgba(0, 0, 0, 0);
	border-bottom-color: #000000;
	border-width: 14px;
	margin-left: -14px;
}
