$this = merge({
  trackColor: $UI.colors.darkLightest,
  selectedColor: $UI.colors.primary,
  stepMarker: $UI.colors.whiteLight
}, $UI.RangeInput, true)

.container
 height 10u

.track
  height 1u
  background-color $this.trackColor
  border-radius 4px

.selected
  background-color $this.selectedColor

.marker
  top 4px
  width 16px
  height @width
  border-radius 10px
  shadow(1)

.stepLabel
  font-style normal
  font(caption)

.stepMarker
  border-radius 0
  width 2px
  background-color $this.stepMarker

