#layers {
  position: relative;
}
#axesCanvas {
  background-color: #000000;
}
#dataCanvas {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 1;
  touch-action: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}
input[type="range"] {
  vertical-align: middle;
}
input[type="checkbox"] {
  position: relative;
  top: 1px;
}
.legend {
  list-style-type: none;
  padding-left: 0px;
  display: inline-block;
}
.legend>li {
  margin-left: 1em;
  display: inline-block;
}
.legend>li::before {
  content: "\2022";
  display: inline-block;
  width: 1em;
  font-weight: bold;
}
.red-dot::before {
  color: #ff0000;
}
.green-dot::before {
  color: #00ff00;
}
.white-dot::before {
  color: #ffffff;
}
@media (color-gamut: p3) {
  @supports (color: color(display-p3 0 0 0)) {
    .red-dot::before {
      color: color(display-p3 1 0 0);
    }
    .green-dot::before {
      color: color(display-p3 0 1 0);
    }
  }
}
#spacer {
  height: 1000vh;
  display: none;
}
.listening-scroll body {
  overscroll-behavior: contain;
}
.listening-scroll #dataCanvas {
  touch-action: pan-x pan-y;
}
.listening-scroll #spacer {
  display: block;
}
.listening-scroll #layers {
  position: sticky;
  top: 128px;
  left: 6px;
  z-index: 1;
}
