#loadingBarWidget {
	display: none;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.75);
	top: 0;
	left: 0;
	position: fixed;
	z-index: 1000000;
}
#loadingBarContainer {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 90%;
	max-width: 500px;
	border: solid 1px #CCC;
	height: 10px;
	border-radius: 50vh;
	transform: translate(-50%, -50%);
}
#loadingBar {
	width: 0;
	background: #CCC;
	height: 100%;
}
.loading #loadingBar {
	transition: width 5s;
	width: 99%;
}
.complete #loadingBar {
	width: 100%;
}
