/**
 * rangestepper.css 0.1
 *
 *
 * (c) 2014+ Radu-Sebastian Amarie
 * http://skidding.mit-license.org
 */

.scaleContainer{
    height: 74px;
    margin-top: 42px;
}

.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: #8da6b1;
  display: inline-block;
  border-radius: 2px 2px 0 0;
  color:#2e2e2e;
  cursor: ew-resize;
    display:none;
}

.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: #8da6b1;
  border-width: 7px;
  margin-left: -7px;
}

.rangestepper .step {
    width: 20px;
    height: 20px;
    background-color: #FFFFFF;
    border-radius: 25%;
    cursor: pointer;
    vertical-align: top;
    display: inline-block;
    zoom: 1;
    border-color: #c6c6c6;
    border-style: solid;
    border-width: 1px;
    -moz-box-shadow: 0 0 12px -5px #000000;
    -webkit-box-shadow: 0 0 12px -5px #000000;
    box-shadow: 0 0 12px -5px #000000;
}

.rangestepper.subscript .step:nth-child(odd):after, .rangestepper.subscript .step:nth-child(even):after {
    content: attr(data-val);
    content: attr(data-val);
    color: #727272;
    /* font-size: 80%; */
    position: absolute;
    bottom: -30px;
    text-align: center;
    width: 18px;
}

.rangestepper .rangeline{
    margin-top: -30px;
    bottom: 0;
    right: 0;
    left: 0;
    height: 2px;
    background-color: #bcbec0;
    z-index: -1;
    margin-right: 5px;
}

.rangestepper .step .active{
    width: 14px;
    height: 14px;
    background-image: url("../assets/images/dragger.png");
    border-radius: 25%;
    display: inline-block;
    margin-top: 25px;
}

.rangestepper .stretch {
  width: 100%;
  display: inline-block;
  font-size: 0;
  line-height: 0
}