﻿
.alert-box {
	Position:Relative;
	
	color:#404B52;
	
	
	Font-size: 16px ;
	font-family: 'Raleway', sans-serif;
	
	box-shadow:3px 3px 3px grey;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.5);
	
	padding:5px 20px;
	margin-top:0px;

	text-align:center;
	animation: stickAnim .3s;
	
}
.alert-box span {
	#font-weight:bold;
	
	animation: stickAnim .3s;
}
.error {

	background:#ffecec url('/images/error.png') no-repeat 10px 50%;
	border:1px solid #f5aca6;
	animation: stickAnim .3s;
}
.success {
	
	background:#e9ffd9 url('/images/success.png') no-repeat 10px 50%;
	border:1px solid #a6ca8a;
	animation: stickAnim .3s;
	
}
.warning {
	background:#fff8c4 url('/images/warning.png') no-repeat 10px 50%;
	border:1px solid #f2c779;
}
.notice {
	background:#BEE0F4 url('/images/notice.png') no-repeat 10px 50%;
	border:1px solid #8ed9f6;
}

