body {
  overflow: hidden;
}

.app {
  background: #212121;
  color: #fff;
  letter-spacing: 0.08rem;
  width: 100vw;
  height: 100vh;
  position: relative;
}

.panes,
.controls,
.pane,
.sliders,
.scale-labels {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

h2 {
  font-size: 1.2rem;
  margin: 0 0 1.5rem;
  color: #80CBC4;
}

.panes {
  height: calc(100% - 180px);
}
.controls {
  background: #00897b;
  height: 180px;
  top: auto;
  bottom: 0;
}

.sliders {
  width: calc(100% - 200px);
  height: 140px;
  left: 100px;
  top: 50%;
  margin-top: -70px;
}
.slider-horz {
  width: 100%;
  height: 10px;
  position: relative;
}

.ui-slider {
  background: #004D40;
  margin: 20px 0 40px;
}
.ui-slider .ui-slider-handle {
  background: #80CBC4;
  position: absolute;
  outline-color: #009688;
  cursor: move;
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}
.ui-slider .ui-slider-handle:active {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}
.ui-slider-horizontal .ui-slider-handle {
  top: 50%;
  height: 30px;
  width: 20px;
  margin-top: -15px;
}
.ui-slider-range-max {
  position: absolute;
  top: 0;
  right: 0;
  height: 10px;
  background: #f7941d;
}

.scale-labels {
  width: 100%;
  height: 30px;
  top: auto;
  bottom: 15px;
}
.scale-labels span {
  display: block;
  font-size: 0.9rem;
  position: absolute;
  top: 0;
  width: 60px;
  margin-right: -30px;
  overflow: visible;
  text-align: center;
}
.scale-labels span:first-child {
  margin-right: 0;
  margin-left: -30px;
}
.scale-labels span:before {
  content: " ";
  display: block;
  position: absolute;
  top: -25px;
  width: 2px;
  height: 20px;
  left: calc(50% - 1px);
  background: #004D40;
}
