.haqAlert {
	width: 80%;
	padding: 20px;
	text-align: center;
	display: flex;
	z-index: 1100;
	position: fixed;
	right: 0;
	left: 0;
	bottom: 0;
	margin-left: auto;
	margin-right: auto;
	justify-content: center;
    -webkit-animation: haq-notify-in .5s;
    -moz-animation: haq-notify-in .5s;
    animation: haq-notify-in .5s;
    margin-top: 15px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    overflow: hidden;
    opacity: 1;
}

.haqAlert.alert {
	margin-bottom: 0;
	border: none;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

@keyframes haq-notify-in {
	0% { bottom: -50px; opacity: 0; }
	100% { bottom: 0; opacity: 1; }
}