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: #16171c }
.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: 410px; height: 140px;  margin-left: auto; margin-right:auto; background: url('unity-logo-dark.png') no-repeat center }
#unity-progress-bar-empty { width: 141px; height: 0px; margin-top: 0px; margin-left: auto; margin-right:auto; background: url('progress-bar-empty-dark.png') no-repeat center }
#unity-progress-bar-full { width: 0%; height: 0px; margin-top: 0px; margin-left: 0; background: url('progress-bar-full-dark.png') no-repeat center }

#unity-progress-bar-empty-new { width: 141px; height: 18px; margin-top: 10px; margin-left: auto; margin-right:auto; background: url('progress-bar-empty-dark.png') no-repeat center }

#unity-progress-bar-full-new { width: 0%; height: 18px; margin-top: 10px; margin-left: 0; background: url('progress-bar-full-dark.png') no-repeat center }

#unity-progress-bar-empty-loading { width: 350px; height: 18px; margin-top: 10px; margin-left: auto; margin-right:auto; text-align:center}

#store-link-parent{
	height: 30px;
	position: fixed;
	bottom: 0px;
	right: 10px;
	display: flex;
	flex-direction:row;
	align-items:center;
	gap: 10px;
}
.store-link{
	/*background-color: black;*/
	height: 25px;
}


#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 }
.unity-link { position: absolute; width: 100%; bottom: 0%;  background: white; padding: 10px 0; display: none; background-color:#222933;  text-align:center; }

.circle-loader {
    border: 4px solid rgba(255, 255, 255, 0.2); /* Light grey border */
    border-top: 4px solid #fff; /* Black border on top */
    border-radius: 50%;
    width: 36px;
    height: 36px;
    animation: spin 2s linear infinite;
    margin: 10px auto; /* Center align */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


