.floating{
  top: 0;
  left: 0;
  position: fixed;
}
.__wrapper{
  background: #fff;
  color: #000;
  font: normal 9px monospace;
  padding: 1px;
}
.__wrapper .__control{
  position: relative;
  padding-bottom: 10px;
}

.__wrapper .__header{
  display: flex;
  cursor: default;
  width: 100%;
  justify-content: space-between;
}

.__wrapper .__value{
  max-width: 30px;
  display: block;
  font: inherit;
  border: none;
  text-align: right;
  outline: none;
}

.__wrapper input[type="range"] {
  appearance: none;
  cursor: default;
  background: #000;
  height: 9px;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  bottom: 0;
}

.__wrapper input[type="range"]::-webkit-slider-thumb{
  appearance: none;
  background: #fff;
  border: 2px solid #000;
  height: 7px;
  width: 7px;
}

.__wrapper input[type="range"]::-moz-range-thumb{
  border-radius: 0;
  border: none;
  background: #fff;
  height: 2px;
  width: 6px;
}