html {
	margin: 0;
	padding: 0;
	height: 100%;
}

body {
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	overflow: hidden;
	background-size: cover;
	font-family: "Myriad Pro", Myriad, "Helvetica Neue", Helvetica, Arial, sans-serif;
	background-color: #ffffff;
}

.webgl-content, #loadingBlock {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
}

#unity-container, #gameCanvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background-color: #f0f0f1;
}

#loadingBlock {
	display: flex;
	justify-content: center;
	align-items: center;
	background-size: cover;
}

.loading-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 90%;
	max-width: 800px;
	gap: 2vh;
}

.logo {
	display: block;
	width: 80vw;
	max-width: 640px;
	height: auto;
	margin: 1vh 1vh 3vh 1vh;
}

#progressBar {
	width: 100%;
	text-align: center;
	color: #666666;
	font-size: 2.5vh;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.bar-container {
	width: 80vw;
	max-width: 400px;
	height: 8px;
	margin: 0 auto;
	position: relative;
	background-color: transparent;
	overflow: hidden;
	border-radius: 4px;
}

#emptyBar {
	float: right;
	width: 60%;
	height: 100%;
	background: url("../img/progress_emp.png") no-repeat right;
	background-size: 100% 100%;
}

#fullBar {
	float: left;
	width: 40%;
	height: 100%;
	background: url("../img/progress_full.png") no-repeat left;
	background-size: 100% 100%;
}

.loading-text {
	margin-top: 1vh;
}
