#StatusAlertContainer {
	position: fixed;
	bottom: 0;
	left: 40px;
	right: 40px;
	z-index: 100;
	display: flex;
	flex-direction: column-reverse;
	justify-content: space-around;
	align-items: center;
}

#StatusAlertContainer .StatusAlert {
	width: 100%;
	margin-bottom: 10px;
	padding: 15px 30px;
	display: block;
	font-weight: bold;
	font-size: 1.1em;
	transition: color 0.1s ease-in-out, background 0.1s ease-in-out;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	opacity: 0.9;
}

#StatusAlertContainer .StatusAlert i {
	padding-right: 10px;
}

#StatusAlertContainer .StatusAlertWarning {
	background: #c2b800;
	color: #fffdcf;
}

#StatusAlertContainer .StatusAlertWarning:hover {
	color: #c2b800;
	background: #fffdcf;
}

#StatusAlertContainer .StatusAlertInfo {
	background: #00589c;
	color: #b5dfff;
}

#StatusAlertContainer .StatusAlertInfo:hover {
	color: #00589c;
	background: #b5dfff;
}

#StatusAlertContainer .StatusAlertError {
	background: #ab1f00;
	color: #ffb2a1;
}

#StatusAlertContainer .StatusAlertError:hover {
	color: #ab1f00;
	background: #ffb2a1;
}

#StatusAlertContainer .StatusAlertCorrect {
	background: #009118;
	color: #9effae;
}

#StatusAlertContainer .StatusAlertCorrect:hover {
	color: #009118;
	background: #9effae;
}

