/**
 * rangestepper.css 0.1
 *
 *
 * (c) 2014+ Radu-Sebastian Amarie
 * http://skidding.mit-license.org
 */



.rangestepper {
  width: 100%;
  height: 15px;
  position: relative;

  text-align: justify;
  -ms-text-justify: distribute-all-lines;
  text-justify: distribute-all-lines;

  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

}

.dragger {
  margin-top: -23px;
  text-align: center;
  display: block;
  position:relative;
}

.dragger .arrow {
  width: 14px;
  height: 16px;
  position: relative;
  background: #41c00e;
  display: inline-block;
  border-radius: 2px 2px 0 0;
  color:#2e2e2e;
  cursor: ew-resize;
}

.dragger .arrow:before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.dragger .arrow:before {
  border-top-color: #41c00e;
  border-width: 7px;
  margin-left: -7px;
}

.rangestepper .step {
  width: 14px;
  height: 14px;
  background-color: #2e2e2e;
  border-radius: 50%;
  cursor:pointer;
  vertical-align: top;
  display: inline-block;
  *display: inline;
  zoom: 1;
}

.rangestepper.subscript .step:nth-child(odd):after{
  content:attr(data-val);
  color:#595959;
  font-size: 80%;
  position: absolute;
  bottom: -20px;
  text-align: center;
  width: 14px;
}

.rangestepper .rangeline{
  position: absolute;
  top: 5px;
  bottom: 0;
  right: 0;
  left: 0;

  height: 5px;
  background-color: #2e2e2e;
  z-index: -1;
}

.rangestepper .step .active{
  width: 10px;
  height: 10px;
  background-color:#41c00e;
  border-radius: 50%;
  display: inline-block;
  margin-top: 7px;
}

.rangestepper .stretch {
  width: 100%;
  display: inline-block;
  font-size: 0;
  line-height: 0
}