body {
	padding: 0;
	margin: 0
}

#unity-container.unity-desktop {
	width: 100%;
	height: 100%;
	max-width: 1920px;
	max-height: 1080px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

#unity-container.unity-mobile {
	position: fixed;
	width: 100%;
	height: 100%
}

#unity-canvas {
	/* background: #231F20 */
	width: 100%;
	height: calc(100% - 38px);
	background: url('./bg.png') no-repeat center center;
	background-size: 100% 100%;
	overflow: hidden;
}

.unity-mobile #unity-canvas {
	width: 100%;
	/* height: 100% */
}

#unity-loading-bar {
	width: 64%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none
}

#unity-logo {
	z-index: 2;
	/* background: url('unity-logo-dark.png') no-repeat center center; */
	width: 100%;
	height: 400px;
	background-size: contain;
	text-align: center;
}

#unity-logo img {
	width: 40%;
}

#unity-progress-bar-empty {
	width: 100%;
	height: 18px;
	margin-top: 6%;
	background: url('progress-bar-empty-dark.png') no-repeat right / cover
}

#unity-progress-bar-full {
	width: 0%;
	height: 18px;
	margin-top: 10px;
	background: url('progress-bar-full-dark.png') no-repeat left / cover
}

#unity-footer {
	position: relative;
}

.unity-mobile #unity-footer {
	/* display: none */
}

#unity-webgl-logo {
	float: left;
	width: 204px;
	height: 38px;
	background: url('webgl-logo.png') no-repeat left
}

#unity-build-title {
	float: right;
	margin-right: 10px;
	line-height: 38px;
	font-family: arial;
	font-size: 18px
}

#unity-fullscreen-button {
	cursor: pointer;
	float: right;
	width: 38px;
	height: 38px;
	background: url('fullscreen-button.png') no-repeat center
}

#unity-cancalscreen-button {
	display: none;
	cursor: pointer;
	float: right;
	width: 38px;
	height: 38px;
	background: url('closeFull-button.png') no-repeat center
}


#unity-warning {
	position: absolute;
	left: 50%;
	top: 5%;
	transform: translate(-50%);
	background: white;
	padding: 10px;
	display: none
}

.emptyText {
	text-align: center;
	color: #ffd11b;
	margin-top: 25px;
	font-size: 20px;
	font-weight: 600;
}

.exitFullscreen {
	display: none;
	background-image: url('smallscreen.png');
	width: 38px;
	height: 38px;
	float: right;
	position: absolute;
	top: 10px;
	right: 10px;
}

@media(min-width: 300px) and (max-width:720px) {
	#unity-logo {
		height: 109px;
	}

	#unity-logo img {
		width: 32%;
	}

	#unity-loading-bar {
		width: 80%;
	}

	#unity-footer {
		width: 100%;
		position: absolute;
		bottom: 0;
		left: 0;
		display: flex;
		justify-content: space-between;
		align-items: center;
		z-index: 199;
	}

	#unity-progress-bar-full {
		height: 10px;
	}

	#unity-progress-bar-empty {
		height: 10px;
	}

	.emptyText {
		margin-top: 10px;
	}

	#unity-loading-bar {
		top: 44%;
	}
}

@media(min-width: 721px) and (max-width:1200px) {
	.webgl-content .logo.Dark {
		width: 500px;
	}

	#unity-logo {
		height: 220px;
	}

	#unity-logo img {
		width: 30%;
	}
}
@media(min-width: 1201px) {
	#unity-progress-bar-empty {
		margin-top: 6%;
	}
}