body { padding: 0; margin: 0 }
#unity-container { position: absolute }
#unity-container.unity-desktop { width: 100%; height: 100% }
#unity-container.unity-mobile { width: 100%; height: 100% }
#unity-canvas { 
	background: white; 
	width: 100%; 
	height: 100% 
}
.unity-mobile #unity-canvas { width: 100%; height: 100% }
#unity-loading-bar { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: none }
#unity-logo { 
	width: 215px; 
	height: 215px; 
	background: url('logo_edebe.jpg') no-repeat center;
	background-size: contain;
}
#unity-progress-bar-empty { 
	width: 215px; 
	height: 18px; 
	margin-top: 10px; 
	background: url('progress-bar-empty-light.png') no-repeat center; 
	background-size: 215px 18px;
	display: none;
}
#unity-progress-bar-full { 
	width: 0%; 
	height: 18px; 
	margin-top: 10px; 
	background: url('progress-bar-full-light.png') no-repeat center; 
	background-size: 215px 18px;
	display: none;
}
#containerLabelProgress{

	margin-top: 10px;
	width: 215px;
	text-align: center;
	font-size: 25px;
	font-family: sans-serif;
	font-weight: bold;
	display: none;
}

#containerLabelProgress p
{
	margin:  0;
	padding: 0;
	display: none;
}

.containerSpinner
{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.spinner
{
	margin-top: -10px;
    border: 9px solid #f3f3f3; /* Light grey */
    border-top: 9px solid #e62807;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1.5s linear infinite;
}
  
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#unity-footer { 
	position: relative;
	display: none;
}
.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-mobile-warning { position: absolute; left: 50%; top: 5%; transform: translate(-50%); background: white; padding: 10px; display: none }
