#ProgressBarContainer {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	z-index: 100;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	background: rgba(0, 0, 0, 0.6);
}
#ProgressBarWrapper {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
}

#ProgressBarWrapper h1 {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-family: 'Manjari', sans-serif;
	font-weight: bold;
	font-size: 4em;
	color: #FFFFFF;
	text-shadow: 0px 0px 12px rgba(255,255,255,0.86);
	padding-bottom: 30px;
}

#ProgressBarBackground {
	width: 80%;
	background: #D2D2D2;
}

#ProgressBarProgress {
	padding: 50px 0;
	background: #00FF00;
	-webkit-box-shadow: 0px 0px 27px 0px rgba(142,255,21,0.95); 
	box-shadow: 0px 0px 27px 0px rgba(142,255,21,0.95);
}


