.mixer {
  margin: 0;
}
.mixer-container {
  width: 866px;
  height: 539px;
  margin: 0 auto;
  position: relative;
  background-image: url('bg.png');
  background-size: cover;
  background-repeat: no-repeat;
}

.play-button {
  position: absolute;
  height: 162px;
  width: 162px;
  top: 105px;
  left: 75px;
  background-image: url('play.png');
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
}
.reset-button {
  position: absolute;
  height: 111px;
  width: 111px;
  top: 227px;
  left: 100px;
  background-image: url('reset.png');
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
}
.time-container {
  position: absolute;
  top: 390px;
  left: 90px;
  width: 135px;
  height: 112px;
  background-image: url('bg-time.png');
  background-size: cover;
  background-repeat: no-repeat;
}
.time-elapsed {
  width: 100%;
  margin: 0 auto;
  padding-top: 30%;
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  color: white;
  letter-spacing: 3px;
}
#tracks {
  position: absolute;
  top: 50px;
  left: 250px;
  width: 570px;
  height: 318px;
  background-image: url('bg-tracks.png');
  background-size: cover;
  background-repeat: no-repeat;
  padding-left: 42px;
}
.track-container {
  width: 60px;
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
  transform: translateY(250px);
}
.track-container p {
  font-size: 10px;
  text-align: center;
  color: #ffffff;
  transform: translateY(-50px);
}
input[type="range"] {
  background: transparent;
  cursor: pointer;
  width: 200px;
}
/***** Chrome, Safari, Opera, and Edge Chromium *****/
input[type="range"]::-webkit-slider-runnable-track {
  background: #99aeff;
  height: 10px;
  border-radius: 10px;
  border: 3px solid #8080e8;
}
/******** Firefox ********/
input[type="range"]::-moz-range-track {
  background: #99aeff;
  height: 0.5rem;
}
 input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  height: 32px;
  width: 32px;
  background: goldenrod;
  background: url('slider-thumb.png') no-repeat;
  margin-top: -6px;
  border-radius: 0 !important;
} 
.volume-slider {
  transform-origin: 0 0;
  transform: rotate(270deg);
  -moz-transform: rotate(270deg); /*do same for other browsers if required*/
  /* writing-mode: bt-lr; 
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl; */
  height: 60px;
}
.sample-container {
  width: 520px;
  position: relative;
  top: 400px;
  left: 278px;
}
.sample-button {
  display: inline-block;
  width: 150px;
  margin: 5px 10px;
  padding: 5px 15px;
  background-color: transparent;
  border-radius: 10px;
  border: 5px solid #251855;
  text-align: center;
  color: white;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
}
.select-song-container {
  position: absolute;
  top: 462px;
  left: 315px;
  width: 420px;
  height: 30px;
}
.custom-select {
  position: relative;
}
.custom-select select {
  display: none; /*hide original SELECT element: */
}
.select-selected {
  background-color: #251855;
  border-radius: 10px;
  text-align: center;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
}
/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}
.select-arrow-active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/* style the items (options), including the selected item: */
.select-items div,.select-selected {
  color: #ffffff;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
}

/* Style items (options): */
.select-items {
  position: absolute;
  background-color: #452392;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  text-align: center;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
}
.select-items:last-child {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

#custom-handle {
  width: 40px;
  height: 32px;
  background-image: url('slider-thumb.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-color: transparent;
  border: none;
  position: absolute;
  left: -15px;
}
.ui-widget.ui-widget-content {
  background: #99aeff;
  height: 200px;
  border-radius: 10px;
  border: 3px solid #8080e8;
}
.ui-state-focus {
  background-color: transparent !important;
  border: none !important;
}

@media (max-width: 430px) and (orientation: portrait) {
  .mobile-instructions {
    display: block;
  }
  .instructions, .mixer {
    display: none;
  }
}

@media (max-height: 430px) and (orientation: landscape) {
  .mobile-instructions {
    display: block;
  }
  .instructions, .mixer {
    display: none;
  }
}