#track {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background-color: grey;
  border: solid 2px black;
  border-radius: 6px;
  width: 60dvw;
  height: 2em;

  &[hidden] {
    display: none;
  }
}

#trackWindow {
  position: absolute;
  background-color: yellow;
  top: 20%;
  height: 60%;
  cursor: pointer;
}

.trackGrab {
  position: absolute;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  background-color: goldenrod;
  border: 2px solid black;
  width: 2em;
  height: 120%;
  top: calc(-10% - 2px);
}

#trackGrabLeft {
  left: calc(-2em - 2px);
  cursor: w-resize;
}

#trackGrabRight {
  right: -2em;
  transform: scaleX(-1);
  cursor: e-resize;
}

#trackCurrent {
  position: absolute;
  width: 2px;
  top: -10%;
  height: 120%;
  background-color: white;
  border: 1px solid black;
  transition: linear;
  z-index: 20;
}

#replayControlButtons {
  justify-content: space-between;
}

#replaySpeed {
  width: 1in;
}

