/* ERROR */
.error {
	display: none;
	position: relative;
	width: 100%; height: auto;
/* 	padding: 10px 15px; */
	margin: 6px 2px 2px 2px;
	
	color: #f54c36;
	line-height: 20px;
	
	/* background-color: #f54c36; */
	
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-o-border-radius: 2px;
	border-radius: 2px;
	
	box-sizing: border-box;
	
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;

	z-index: 200;
}
.error.active {
	display: block;
}
.error .arrow { 
	position: absolute; top: -15px; left: 50%;
	width: 16px; height: 16px;
	margin-left: -8px;
	
	color: #f54c36;
	font-size: 2em;
	line-height: 24px;
}
/* ERROR */


/* PAGE WITH ERROR */
.error-holder {
	position: absolute; top: 0; left: 0; right: 0; bottom: 0;
	display: table;
	width: 100%; height: 100%;
	
	color: #5e7598;
	text-align: center;
	vertical-align: middle;
}
.error-content {
	display: table-cell;
	width: 100%; height: 100%;
	
	vertical-align: middle;
}
.error-title {
	max-width: 600px;
	margin: 20px auto;
	
	font-size: 1.375em;
	font-family: 'helveticaneuecyrmedium';
}
/* PAGE WITH ERROR */