/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap'); */
@font-face{
    font-family: ornitons;
    src: url('ornitons-serial-heavy-regular.ttf');
}

html {
	box-sizing: border-box;
}
*, *:before, *:after {
	box-sizing: inherit;
}
body, html {
	padding: 0;
	margin: 0;
	background: #a9bdbd;
}
#unity-container.unity-desktop {
	width: 100%;
	height: 100%;
}
canvas {
  width: 100vw;
  height: 100vh;
  display: block;
}
/* try to handle mobile dialog */
canvas + * {
	z-index: 2;
}

.aspect-ratio-16-9 {
  aspect-ratio: 16/9;
  width: min(calc(100vh * (16/9)));
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.full-screen {
  width: 100vw;
  height: 100vh;
  display: block;
}

.webgl-content * {
	border: 0;
	margin: 0;
	padding: 0;
}
.webgl-content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.splash-content 
{
	position: absolute;
	min-height: 100%; 
	left: 10vh;
	right: 10vh;
	z-index: 2;
}

.progress-container-container
{
	position: absolute;
	top:2vw;
	width: 100%;
}

.progress-container
{
	position: relative;
	margin-left: auto;
	margin-right: auto;
	min-height: 100%; 
	width: 40vh;
	min-height: 10vh;

}

.progress-bar 
{ 
	position: absolute;
	width: 100%;
	height: 100%;
	background-repeat:no-repeat;
}

.progress-art 
{
	background-image: url("progress_back.png"); 
	  background-size: 100% 100%;
  background-repeat: no-repeat-y;
}

.progress-fill
{
	background-image: url("progress_bar.png"); 
	   background-size: 40vh 10vh;
  background-repeat: no-repeat-y;
}

.progress-number-container
{
	position: absolute;
	right: 50%;
	top: 25%;
	color: white;
	font-weight: 900;
	font-family: 'ornitons', sans-serif;
	font-size: 3vh;
}

.progress-number 
{
	position: relative;
	left: 50%;
	top: -40%;
	color: black;
	font-weight: 900;
	font-family: 'ornitons', sans-serif;
	font-size: 3vh;
}

.progress {
	width: 1%;
	height: 100%;
	border-radius: 4px;
	background: #a9bdbd;
	transition: width ease .5s;
}

.bl-splash {
	position: absolute;
	top: 0;left: 0;right: 0;bottom: 0;
	z-index: 999;
	/* background: #044CA0; */
	/* background: #027BC4; */
	/* background: #54B9DE; */
	background: #a9bdbd;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00b2f2",endColorstr="#054398",GradientType=1);
}
.bg-illustration {
	position: absolute;
	top: 0;left: 0;right: 0;bottom: 0;
	background-image: url("ninja_bg.jpg"); /* The image used */
	background-position: center; /* Center the image */
	background-repeat: no-repeat; /* Do not repeat the image */
	background-size: cover; /* Resize the background image to cover the entire container */
}

.fade-in {
  animation: fadeIn ease-in-out 1s;
  -webkit-animation: fadeIn ease-in-out 1s;
  -moz-animation: fadeIn ease-in-out 1s;
  -o-animation: fadeIn ease-in-out 1s;
  -ms-animation: fadeIn ease-in-out 1s;
}
@keyframes fadeIn { 0% { opacity:0; } 100% { opacity:1; } }
@-moz-keyframes fadeIn { 0% { opacity:0; } 100% { opacity:1; } }
@-webkit-keyframes fadeIn { 0% { opacity:0; } 100% { opacity:1; } }
@-o-keyframes fadeIn { 0% { opacity:0; } 100% { opacity:1; } }
@-ms-keyframes fadeIn { 0% { opacity:0; } 100% { opacity:1; } }

.fade-out {
	animation: fadeOut ease-in-out 1s;
	-webkit-animation: fadeOut ease-in-out 1s;
	-moz-animation: fadeOut ease-in-out 1s;
	-o-animation: fadeOut ease-in-out 1s;
	-ms-animation: fadeOut ease-in-out 1s;
}
@keyframes fadeOut { 0% { opacity:1; } 100% { opacity:0; } }
@-moz-keyframes fadeOut { 0% { opacity:1; } 100% { opacity:0; } }
@-webkit-keyframes fadeOut { 0% { opacity:1; } 100% { opacity:0; } }
@-o-keyframes fadeOut { 0% { opacity:1; } 100% { opacity:0; } }
@-ms-keyframes fadeOut { 0% { opacity:1; } 100% { opacity:0; } }

.blue-energy {
	background-size: 200% 200%;
	-webkit-animation: BlueEnergy 1.5s ease infinite;
	-moz-animation: BlueEnergy 1.5s ease infinite;
	-o-animation: BlueEnergy 1.5s ease infinite;
	animation: BlueEnergy 1.5s ease infinite;
}
@-webkit-keyframes BlueEnergy {
    0%{background-position:0% 51%}
    50%{background-position:100% 50%}
    100%{background-position:0% 51%}
}
@-moz-keyframes BlueEnergy {
    0%{background-position:0% 51%}
    50%{background-position:100% 50%}
    100%{background-position:0% 51%}
}
@-o-keyframes BlueEnergy {
    0%{background-position:0% 51%}
    50%{background-position:100% 50%}
    100%{background-position:0% 51%}
}
@keyframes BlueEnergy {
    0%{background-position:0% 51%}
    50%{background-position:100% 50%}
    100%{background-position:0% 51%}
}
html, body {
	height: 100%; 
}
