
#messagePanel {
	position: absolute;
	top: calc(50vh - 82px);
	width: 100%;
	text-align: center;
	height: auto;
	z-index: 99999;
 	display: none;
}

.messageBox{
	font-family: "robotoCondensed";
	display: inline-block;
	width: 20em;
	height: auto;
	border: 1px solid gray;
	background-color: var(--white);
}

.messageBoxHeader {
	font-size: 110%;
	font-weight: 800;
	height: 40px;
	background-color: var(--panelHdBck);
}

.messageBoxTitle {
	display: inline-block;
	font-size: inherit;
	float: left;
	font-family: "robotoCondensed";
	color: var(--white);
	padding-left: 1em;
	line-height: 2.2em;
}

.closeMessageBox{
	float: right;
	position: relative;
	width: 40px;
	height: 40px;
}

.closeMessageBox img {
	position: absolute;
	right: 0;
	width: inherit;
	height: inherit;
}

.messageBoxContent {
	font-family: "robotoCondensed";
	height: auto;
	line-height: 22px;
	text-align: center;
	font-size: 1.1em;
	padding: 2.5em 1em;
}

.fatalIcn, .warningIcn, .infoIcn {
	display: none;
}
