﻿/**
 * rangestepper.css 0.1
 *
 *
 * (c) 2014+ Radu-Sebastian Amarie
 * http://skidding.mit-license.org
 */



.rangestepper {
  width: 100%;
  height: 15px;
  position: relative;
  display:block;  

  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 {
  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: 15px;
  height: 15px;
  background-color: #ffffff;
  border-radius: 50%;
  cursor:pointer;
  vertical-align: top;
  display: inline-block;
  *display: inline;
  position:relative;
  z-index:2;
  zoom: 1;
  border: 4px solid #f1785a;
  top: -1px;
  position: relative;
}

.rangestepper.subscript .step:after {
  width:100px;
  /*content:attr(data-val);*/
  color:#333333;
  font-size: 15px;
  position: absolute;
  top: 25px;
  text-align: left;
}

.toggle .rangestepper.subscript .step:after, .rangestepper.subscript.multi .step:after {
/*.rangestepper.subscript.multi .step:after {*/
  display:none;
}

.rangestepper .rangeline{
  width: calc(100% - 4px);
  position: absolute;
  top: 8px;
  bottom: 0;
  right: 1px;
  left: 0;
  height: 5px;
  background-color: #f1785a;
  z-index: 1;
}

.rangestepper .step .active{
  width: 17px;
  height: 18px;
  background-color:#f1785a;
  border-radius: 50%;
  display: inline-block;

  position: absolute;
  right: -1px;
  top: -1px;
}

.rangestepper .stretch {
  width: 100%;
  display: inline-block;
  font-size: 0;
  line-height: 0
}