.progressindicator {
	position: fixed;
	width: 40px;
	height: 40px;
	top: 50%;
	left: 50%;
	margin-top: -20px;
	margin-left: -20px;
	z-index: 5000;

	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	opacity: 0;
	display: none;
}

.progressindicator.text {
	width: 240px;
	padding: 5px;
	background: #f9c623;
	text-align: center;
	color: black;
	margin-left: -120px;
	height: auto;
	font-weight: bold;
}

.progressindicatorlayer {
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(255,255,255,0.8);
	opacity: 0;
	width: 100%;
	height: 100vh;
	z-index: 4999;

	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	opacity: 0;
	display: none;
}

.progressindicatorlayer.text {
	background: rgba(249,198,35,0.8);
}