﻿.error-block {
	left: 0;
	top: 0;
	text-align: center;
	font-weight: bold;
	font-size: 16px;
	font-family: Arial,Helvetica,sans-serif;
	color: #fff;
	background-color: #db4437;
	padding: 12px;
}

	/*animations*/
	.error-block.pre-animation {
		position: fixed;
		display: none;
		width: 100%;
		z-index: 721;
		box-sizing: border-box;
		animation: moveBottom .7s ease-in;
		transition: transform .7s ease-in;
	}

	.error-block.transform {
		transform: translateY(-100%);
	}
