body {
  padding: 0;
  margin: 0;
  font-family: "Roboto", serif;
}
#unity-container {
  position: fixed;
  width: 100%;
  height: 100%;
}
#unity-canvas {
  width: 100%;
  height: 100%;
  background: #18bf1d;
  background: rgb(7, 44, 6);
  background: -moz-linear-gradient(
    top,
    rgb(0, 151, 45) 0%,
    rgb(0, 79, 34) 100%
  );
  background: -webkit-gradient(
    left top,
    left bottom,
    color-stop(0%, rgb(24, 165, 50)),
    color-stop(100%, rgb(0, 67, 9))
  );
  background: -webkit-linear-gradient(
    top,
    rgb(33, 142, 11) 0%,
    rgb(10, 51, 0) 100%
  );
  background: -o-linear-gradient(top, rgb(33, 142, 11) 0%, rgb(10, 51, 0) 100%);
  background: -ms-linear-gradient(
    top,
    rgb(33, 142, 11) 0%,
    rgb(10, 51, 0) 100%
  );
  background: linear-gradient(
    to bottom,
    rgb(33, 142, 11) 0%,
    rgb(10, 51, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#207ce5', endColorstr='#003380', GradientType=0 );
}
#unity-loading-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
#unity-logo {
  width: 308px;
  height: 260px;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background: url("unity-logo-dark.png");
}
#unity-progress-bar-empty {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: 4px;
  margin-top: -30px;
  border-radius: 50px;
  background: #ffffff33;
}
#unity-progress-bar-full {
  width: 0%;
  height: 4px;
  margin-top: -30px;
  border-radius: 50px;
  -webkit-box-shadow: 0px 0px 25px 4px rgba(255, 255, 255, 0.5);
  -moz-box-shadow: 0px 0px 25px 4px rgba(255, 255, 255, 0.5);
  box-shadow: 0px 0px 25px 4px rgba(255, 255, 255, 0.5);
  background: #fff;
}
#unity-warning {
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translate(-50%);
  background: white;
  padding: 10px;
  display: none;
}
#download-size {
  color: rgb(0, 0, 0) !important;
  display: none;
}
