body {
	background-color: black;
	padding: 0;
	margin: 0;
}
#unity-container {
	position: absolute;
}
#unity-container.unity-desktop {
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
#unity-container.unity-mobile {
	width: 100%;
	height: 100%;
}
#unity-canvas {
	background-color: black;
}
.unity-mobile #unity-canvas {
	background-color: black;
	width: 100%;
	height: 100%;
}
.unity-mobile #unity-loading-bar {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -75%);
	display: none;
	z-index: 10;
}
#unity-loading-bar {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -73%);
	display: none;
	z-index: 10;
}
.unity-mobile #unity-logo {
	top: 0;
	transform: translate(0px, 50%);
}
#unity-logo {
	top: 0;
	transform: translate(0, 72%);
}
.unity-mobile #unity-progress-bar-empty {
	width: 400px;
	height: 18px;
	margin-top: 210px;
	margin-left: 0px;
	background: url("progress-bar-empty-dark_mobile.png") no-repeat center;
}
#unity-progress-bar-empty {
	width: 1080px;
	height: 18px;
	margin-top: 650px;
	margin-left: 6.5px;
	background: url("progress-bar-empty-dark.png") no-repeat center;
}
.unity-mobile #unity-progress-bar-full {
	width: 0%;
	height: 18px;
	margin-top: 10px;
	background: url("progress-bar-full-dark_mobile.png") no-repeat center;
}
#unity-progress-bar-full {
	width: 0%;
	height: 18px;
	margin-top: 10px;
	background: url("progress-bar-full-dark.png") no-repeat center;
}
#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 center;
}
#unity-build-title {
	float: right;
	margin-right: 10px;
	line-height: 38px;
	font-family: arial;
	font-size: 18px;
}
#unity-fullscreen-button {
	float: right;
	width: 38px;
	height: 38px;
	background: url("fullscreen-button.png") no-repeat center;
}
#unity-warning {
	position: absolute;
	left: 50%;
	top: 5%;
	transform: translate(-50%);
	background: white;
	padding: 10px;
	display: none;
	z-index: 25;
}

#unity-logo img {
	width: 100%;
	height: auto;
	object-fit: cover;
	z-index: -1;
	margin-top: 150px;
}
.close {
	background-color: #4caf50;
	border: none;
	color: white;
	padding: 0px 22px;
	text-align: center;
	text-decoration: none;
	font-size: 52px;
	cursor: pointer;
	position: absolute;
	right: 0px;
	border-radius: 0 12px 0 0;
}

.modal {
	display: flex;
	width: 100%;
	height: 100vh;
	z-index: 10;
	overflow: hidden;
	position: fixed;
	left: 0;
	top: 0;
	justify-content: flex-start;
	align-items: center;
}
.hidden {
	display: none !important;
}
.modal-content {
	display: flex;
	align-self: flex-end;
	width: 100%;
	height: 330px;
	border-radius: 15px;
}

@media (max-height: 700px) {
	.modal-content {
		display: flex;
		align-self: flex-end;
		width: 100%;
		height: 180px;
		border-radius: 15px;
	}
}

.modal-content span {
	display: inline-block;
	float: right;
	margin-right: 15px;
	font-size: x-large;
	text-decoration: bold;
}
.modal-content span:hover {
	cursor: pointer;
}
iframe {
	width: 100%;
	height: 330px;
	border-radius: 15px;
}

@media (max-height: 700px) {
	iframe {
		width: 100%;
		height: 180px;
		border-radius: 15px 15px 0 0;
	}
}
