body {
  padding: 0;
  margin: 0;
  touch-action: none;
  overscroll-behavior: none;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#unity-container {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  touch-action: none;
  -ms-touch-action: none;
  overscroll-behavior: none;
}

#unity-container.unity-desktop {
  display: block;
}

#unity-container.unity-mobile {
  display: block;
}

#unity-canvas {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  background: #231F20;
  touch-action: none;
  -ms-touch-action: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

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

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

#unity-logo {
  width: 100px;
  height: 100px;
  transform: translate(50px);
  background: url('Logo.png') no-repeat center;
}

#unity-progress-bar-empty {
  width: 200px;
  height: 18px;
  margin-top: 10px;
  background: url('Empty.png') no-repeat center;
}

#unity-progress-bar-full {
  width: 0%;
  height: 18px;
  margin-top: 10px;
  background: url('Full.png') no-repeat center;
}

#unity-footer {
  position: relative;
}

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

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

#unity-build-title {
  float: right;
  margin-right: 10px;
  line-height: 38px;
  font-family: arial;
  font-size: 18px;
}

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