/**
 * tempo control range styles
 */

.tempo-control {
  display: none !important;
  position: absolute;
  right: 20px;
  bottom: 25px;
  color: #999;
  cursor: default;
  user-select: none;
}

.tempo-control:hover {
  color: #fff;
}

.tempo-control input {
  background-color: transparent;
}

.tempo-control input[type="range"] {
  -webkit-appearance:none;
  height: 40px;
  margin: 0;
  overflow: hidden;
  outline: none;
}

/** Chrome styles */
.tempo-control input[type="range"]::-webkit-slider-runnable-track {
  background: linear-gradient(to right, blue 0%, blue 100%);
  background-size: 100% 2px;
  background-position: center;
  background-repeat: no-repeat;
}

.tempo-control:hover input[type="range"]::-webkit-slider-runnable-track {
  background: linear-gradient(to right, blue 0%, blue 100%);
  background-size: 100% 2px;
  background-position: center;
  background-repeat: no-repeat;
}

.tempo-control input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance:none;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1000;
  background: blue;
  border: solid 2px blue;
}

.tempo-control:hover input[type="range"]::-webkit-slider-thumb {
  border-color: blue;
}

.tempo-control {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.tempo-control .range {
  width: 200px;
}

.tempo-control .value {
  width: 50px;
  text-align: right;
}

/** Firefox styles */
.tempo-control input[type="range"]::-moz-range-track {
  background: #999;
}

.tempo-control:hover input[type="range"]::-moz-range-track {
  background: #fff;
}

.tempo-control input[type="range"]::-moz-range-thumb {
  border-radius: 100%;
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1000;
}

.tempo-control input[type="range"]::-moz-range-thumb {
  background: #000;
  border: solid 2px #999;
}

.tempo-control:hover input[type="range"]::-moz-range-thumb {
  border: solid 2px #fff;
}