:root {
  --color1: #F9C74F;
  --color2: #577590;
}

body {
  background-color: #000000;
  font-family: Andale mono, monospace;
  font-size: 100%;
  user-select: none;
  touch-action: none;
  overflow: hidden;
}

svg {
  display: block;
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  touch-action: none;
  background-color: #000000;
}

#ToneHive {
  height: 120%;
}

#FunctionKeysCompact {
  display: block;
}

#FunctionKeys {
  display: none;
}

#Modulators {
  display: none;
}

.slider {
  -webkit-appearance: none;
  /* Override default CSS styles */
  appearance: none;
  width: 96%;
  /* Full-width */
  padding-left: 2%;
  padding-right: 2%;
  height: 1vh;
  /* Specified height */
  outline: none;
  margin-left: 0%;
  margin-right: 0%;
  margin-top: 0%;
  vertical-align: top;
  border-radius: 0px;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  /* Override default look */
  appearance: none;
  width: 3.5%;
  /* Set a specific slider handle width */
  height: 30px;
  /* Slider handle height */
  background: #000000;
  /* black background */
  cursor: pointer;
  /* Cursor on hover */
}

.slider::-moz-range-thumb {
  width: 4%;
  /* Set a specific slider handle width */
  height: 0.5vh;
  /* Slider handle height */
  background: #000000;
  /* black background */
  cursor: pointer;
  /* Cursor on hover */
}

#Sliders {
  display: none;
}

.SliderContainer {
  z-index: 5;
  display: block;
  position: absolute;
  width: 57%;
  height: 1vh;
  left: 21.5%;
}

.SliderText {
  z-index: 5;
  display: block;
  position: absolute;
  width: 17%;
  height: 3vh;
  left: 2%;
  color: #ffffff;
  font-size: 2vw;
  text-align: right;
}

#PitchD {
  display: block;
}

#BendContainer {
  top: 91.5%;
}

#PitchSlider {
  background: #f94144;
}

#Transpose {
  top: 89.5%;
  color: #f94144;
}

#Octave {
  top: 89.5%;
  color: #f94144;
}

#ModContainer {
  top: 77.5%;
}

#ModSlider {
  background: #F3722C;
}

#Release {
  top: 75.5%;
  color: #F3722C;
}

#M2Container {
  top: 63.5%;
}

#M2Slider {
  background: #f8961e;
}

#Attack {
  top: 61.5%;
  color: #f8961e;
}

#M3Container {
  top: 49.5%;
}

#M3Slider {
  background: #f9c74f;
}

#Vibrato {
  top: 47.5%;
  color: #f9c74f;
}

#M4Container {
  top: 35.5%;
}

#M4Slider {
  background: #43AA8B;
}

#Dtime {
  top: 33.5%;
  color: #43AA8B;
}

#M5Container {
  top: 21.5%;
}

#M5Slider {
  background: #4D908E;
}

#Dfeedback {
  top: 19.5%;
  color: #4D908E;
}

#M6Container {
  top: 7.5%;
}

#M6Slider {
  background: #577590;
}

#Dmix {
  top: 5.5%;
  color: #577590;
}

/* Portrait orientation */
@media screen and (orientation: portrait) {
  button {
    display: block;
    position: absolute;
    background-color: #000000;
    font-family: Andale mono, monospace;
    border-radius: 2px;
    border-width: 2px;
    user-select: none;
    height: 7%;
    width: 17%;
    right: 2%;
    z-index: 3;
    font-size: 2vw;
  }
}
/* Landscape orientation */
@media screen and (orientation: landscape) {
  button {
    display: block;
    position: absolute;
    background-color: #000000;
    font-family: Andale mono, monospace;
    border-radius: 2px;
    border-width: 2px;
    user-select: none;
    height: 7%;
    width: 17%;
    right: 2%;
    z-index: 3;
    font-size: 2vw;
  }
}
.ActiveButton {
  color: var(--color1);
  border-color: var(--color1);
}

.OtherButton {
  color: var(--color2);
  border-color: var(--color2);
}

#OptionsButton {
  display: none;
  bottom: 4%;
}

#ModeButton {
  top: 19.25%;
}

#TitleButton {
  top: 4%;
  z-index: 9;
}

#SynthAButton {
  top: 36.5%;
}

#SynthBButton {
  top: 46.5%;
}

#SynthCButton {
  top: 56.5%;
}

#MonoButton {
  bottom: 19.25%;
}

#FullScreenButton {
  display: none;
  bottom: 4%;
  width: 8.5%;
}

#Credits {
  display: none;
  position: absolute;
  top: 0%;
  left: 0%;
  width: 58vw;
  padding-left: 21vw;
  padding-right: 21vw;
  height: 85vh;
  padding-top: 15vh;
  z-index: 8;
  background-color: #000000;
  color: var(--color2);
  opacity: 92%;
  font-family: monospace;
  font-size: 150%;
}

a {
  color: var(--color1);
}