.alert-fixed {
	position:fixed;
	-webkit-transition:top ease .5s;
	transition:top ease .5s;
	top:-18%;
	left:50%;
	line-height:33px;
	text-align:center;
	font-weight:700;
	border:10px solid RGBA(0,0,0,0.4);
	-webkit-border-radius:5px;
	border-radius:5px;
	width:300px;
	margin-left:-150px;
	z-index:9001;
	-webkit-box-shadow:0 2px 2px 0 rgba(51,51,51,.05);
	box-shadow:0 2px 2px 0 rgba(51,51,51,.05);
}

.alert-fixed .close-btn {
	display:block;
	height:24px;
	width:26px;
	text-indent:-9999px;
	position:absolute;
	top:3px;
	right:3px;
	margin-top:0;
	background:url(/Images/Icons/alert-close.png) no-repeat 50% 50%;
}

.alert-fixed .alert-header,.alert-fixed .alert-footer {
	background-color:#FFF;
	padding:10px;
}

.alert-fixed .alert-header {
	padding:10px 28px;
}

.alert-fixed .alert-header>p,.alert-fixed .alert-footer>a {
	font-size:1.5rem;
	line-height:1.5rem;
	margin-bottom:0;
}

.alert-fixed .alert-body {
	font-size:1rem;
	background:#fff;
	font-weight:400;
	padding:10px;
}

.alert-fixed .alert-body p {
	margin-bottom:0;
}

.alert-fixed.animateShow {
	top:18%;
}

.alert-overlay {
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:RGBA(0,0,0,0.4);
	z-index:9000;
}

.fl-left {
	float:left;
}

.fl-right {
	float:right;
}

.clearfix:before,.clearfix:after {
	content:" ";
	display:table;
}

.clearfix:after {
	clear:both;
}

.alert-fixed .btn {
	color:#FFF;
	background-color:#00abe8;
	padding:5px 10px;
}

@media (max-width: 767px) {
	.alert-overlay {
		height:120%;
	}
}