html,
body {
  margin: 0;
  padding: 0;
  background-color: black;
}
#media {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #444;
  transform-origin: center center;
  transition: transform 0.2s ease-out;
}
#scene_canvas {
  background: black;
}
#media-root {
  width: 100%;
  height: 100%;
}
#graphics {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#selection-canvas {
  position: absolute;
  top: 0;
  left: 0;
}
.scenario {
  width: inherit;
  height: inherit;
  perspective: 90vh;
  position: absolute;
}
.scenarioChild {
  width: inherit;
  height: inherit;
  position: relative;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.scene {
  width: inherit;
  height: inherit;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform-origin: 50% 50%;
  transform-style: preserve-3d;
}

#toolset {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.8);
  padding: 1rem 1rem;
  width: 100%;
  user-select: none;
  box-sizing: border-box;
}

#selbox {
  position: absolute;
  border: 1px solid red;
  pointer-events: none;
}

#filters {
  width: 330px;
  height: 100vh;
  position: absolute;
  box-sizing: border-box;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 10;
  padding: 16px;
  overflow: scroll;
}

p, label {
  font: 1rem sans-serif;
  display: block;
}
#filters input {
  margin-bottom: 10px;
}
#filters input[type="range"] {
  width: 95%;
  margin-bottom: 10px;
}

#filters h3 {
  font-family: sans-serif;
  font-weight: lighter;
}