body {
  padding: 0;
  margin: 0;
}

#unity-container { display: block; }

#unity-container.unity-mobile {
  width: 100%;
  height: 100%
}

#unity-canvas {
  display: block;
  background: #FFFFFF url('splash.png') center / cover
}

.unity-mobile #unity-canvas {
  width: 100%;
  height: 100%
}

#unity-loading-bar {
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%);
  display: none
}

#unity-progress-bar-empty {
  width: 141px;
  height: 18px;
  margin-top: 10px;
  margin-left: 6.5px;
  background: #f3f3f3 no-repeat center
}

#unity-progress-bar-full {
  width: 0%;
  height: 18px;
  margin-top: 10px;
  background: red
}

#unity-footer {
  position: relative
}

.unity-mobile #unity-footer {
  display: none
}

#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
}

.loader {
  margin-top: 300px;
  border: 4px solid #00000000;
  border-top: 4px solid red;
  border-left: 4px solid red;
  border-right: 4px solid red;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

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

  100% {
    transform: rotate(360deg);
  }
}

#unity-webgl-logo {
  float: left;
  width: 155px;
  height: 38px;
  margin-right: 20px;
  background: url('spectrum.png') no-repeat center
}

.link-footer {
  float: left;
  display: flex;
  align-items: center;
  height: 38px;
  font-family: arial;
  font-size: 18px;
  color: black;
  margin-right: 30px;
  text-decoration: none;
}
