/* @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: #9fb1c6;
}
#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;
}

@media (min-width: 600px) {
  .splash-content {
    background: url('./logo.png') no-repeat center center;
    background-size: 400px auto;
  }
}

.progress-container-container
{
  position: absolute;
  bottom:60px;
  width: 100%;
}

.progress-container
{
  box-sizing: border-box;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  min-height: 100%; 
  width: 700px;
  max-width: 70vh;
  height: 40px;
}

.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
{
  width: 0%;
  background-image: url("progress_bar.png"); 
  background-size: cover;
  border: black 10px solid;
  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: -90px;
  color: white;
  font-weight: 900;
  font-family: 'ornitons', sans-serif;
  font-size: 50px;
}

.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: #9fb1c6;
  background: radial-gradient(circle at top center, rgba(205,207,200,1) 0%, rgba(159,177,198,1) 60%);
}
.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%; 
}