/*** ALERT PANEL ***/
div.modalBg {
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: hsla(0, 0%, 0%, 0.85);
}

div.alertPanel {
	position: relative;
	width: 90%;
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
	top: 125px;
	border-radius: 12px;
	border: solid 1px hsla(0, 0%, 0%, 0.50);
 	background-color: hsla(190, 100%, 35%, 0.85);
 	padding: 24px;
 	padding-bottom: 12px;
 	box-shadow: 0px 3px 12px 2px hsla(0, 0%, 0%, 0.75);
}

p.alertMessage {
	color: hsl(0, 0%, 100%);
	font-size: 18px;
	line-height: 150%;
	letter-spacing: 1px;
	text-align: center;
	padding: 12px;
	border-radius: 5px;
	background-color: hsla(0, 0%, 0%, 0.35);
}

div.alertPanelButtonArea {
	margin-top: 12px;
	text-align: center;
}
