body {
  overflow: hidden;
}

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

.panes,
.controls,
.pane,
.tt-sliders,
.tt-disc,
.tt-disc button,
.tt-spinner,
.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% - 240px);
}
.controls {
  background: #00897b;
  height: 240px;
  top: auto;
  bottom: 0;
}

.tt-disc {
  width: 220px;
  height: 220px;
  left: 50%;
  top: 50%;
  margin-left: -110px;
  margin-top: -110px;
}
.tt-disc button {
  display: block;
  width: 90%;
  height: 90%;
  left: 50%;
  top: 50%;
  margin-left: -45%;
  margin-top: -45%;
  border-radius: 50%;
  border: none;
  background: #00695C;
  color: #fff;
  outline-color: #009688;
  letter-spacing: 1px;
  cursor: pointer;
}

.tt-sliders {
  width: calc(100% - 200px);
  height: 160px;
  left: 100px;
  top: 50%;
  margin-top: -80px;
}
.tt-sliders label {

}
.tt-slider-horz {
  width: 200px;
  height: 10px;
  position: relative;
}
.tt-slider-vert {
  width: 10px;
  height: 140px;
  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-vertical .ui-slider-handle {
  left: 50%;
  height: 20px;
  width: 30px;
  margin-left: -15px;
}
.ui-slider-range-max {
  position: absolute;
  top: 0;
  right: 0;
  height: 10px;
  background: #f7941d;
}

.scale-labels {
  width: 100%;
  height: 40px;
  top: auto;
  bottom: 0;
}
.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: -55px;
  width: 2px;
  height: 40px;
  left: calc(50% - 1px);
  background: #004D40;
}

.tt-labels {
  font-size: 0.8rem;
  color: #80CBC4;
}
.tt-labels span {
  display: block;
  position: absolute;
  width: 40px;
  height: 20px;
  line-height: 20px;
  text-align: center;
}
.tt-labels span:first-child {
  left: 50%;
  margin-left: -20px;
  top: -5px;
}
.tt-labels span:nth-child(2) {
  top: 50%;
  margin-top: -10px;
  right: -20px;
}
.tt-labels span:nth-child(3) {
  left: 50%;
  margin-left: -20px;
  bottom: -5px;
}
.tt-labels span:nth-child(4) {
  top: 50%;
  margin-top: -10px;
  left: -20px;
}
