html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}
html, body {
    height: 100%;
    font-family: 'Poppins', sans-serif;
  }
canvas {
    display: block;
}
body {
    margin: 0;
}
#unity-container {
    width: 100%;
    height: 100%;
    background: #000000;
}
#unity-canvas {
    width: 100%;
    height: 100%;
    background: #0299ff;
}
#loading-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(__FEATURED_IMAGE__);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#loading-cover-inner {
  width: 100%;
  height: 100%;
  background : radial-gradient(circle at center, #fff0, #fff0 40%, #000 100%);
  position: relative;
}

#top-bar {
  height: 80px;
  padding : 24px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#top-bar-logo img{
  height: 29px;
}

#unity-loading-bar {
    position: relative;
}


#progress-bar-wrapper {
  width : 294px;
  height : 60px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 16px;
  display: flex;
  align-items: center;
  padding : 16px;
  box-sizing: border-box;
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
}

#progress-bar-inner-wrapper {
  width : 100%;
}

#progress-bar-top {
  width : 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
}

#progress-bar-top #loading-text{
  color : #fff;
  font-weight: 500;
}

#progress-bar-top #loading-progress{
  color : #00FFFF;
  font-weight: 500;
}


#progress-bar-empty { 
  width: 100%;
  height: 8px;
  background: #fff;
  border-radius: 8px;
}

#progress-bar-full { 
  width: 20%; 
  /* margin:0px -10px 0 0; */
  /* padding-left:20px; */
  height: 8px;

  background: #00FFFF;
  border-radius: 8px;
 }

.light #progress-bar-empty {
    border-color: black;
}
.light #progress-bar-full {
    background: black;
}

#unity-fullscreen-button {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 38px;
    height: 38px;
    background: url('fullscreen-button.png') no-repeat center;
    background-size: contain;
}

.spinner,
.spinner:after {
  border-radius: 50%;
  width: 5em;
  height: 5em;
}
.spinner {
  margin: 10px;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0.2);
  border-right: 1.1em solid rgba(255, 255, 255, 0.2);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
  border-left: 1.1em solid #ffffff;
  transform: translateZ(0);
  animation: spinner-spin 1.1s infinite linear;
}
@keyframes spinner-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
