/*! jQuery-ui-Slider-Pips - v1.11.4 - 2016-09-04
* Copyright (c) 2016 Simon Goellner <simey.me@gmail.com>; Licensed MIT */

/* HORIZONTAL */
/* increase bottom margin to fit the pips */
.ui-slider-horizontal.ui-slider-pips {
  margin-bottom: 1.4em;
}

/* default hide the labels and pips that arnt visible */
/* we just use css to hide incase we want to show certain */
/* labels/pips individually later */
.ui-slider-pips .ui-slider-label,
.ui-slider-pips .ui-slider-pip-hide {
  display: none;
}

/* now we show any labels that we've set to show in the options */
.ui-slider-pips .ui-slider-pip-label .ui-slider-label {
  display: block;
}

/* PIP/LABEL WRAPPER */
/* position each pip absolutely just below the default slider */
/* and also prevent accidental selection */
.ui-slider-pips .ui-slider-pip {
  position: absolute;
  left: 20px;
  width: 2em;
  height: 1em;
  margin-top: 15px;
  overflow: visible;
  font-size: .8em;
  line-height: 1em;
  color: #1a5dae;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;

  -webkit-touch-callout: none;
}

.ui-state-disabled.ui-slider-pips .ui-slider-pip {
  cursor: default;
}

/* little pip/line position & size */
.ui-slider-pips .ui-slider-line {
  position: absolute;
  left: 50%;
  width: 3px;
  height: 10px;
  background: #e9e9e9;
}
.ui-slider-pips .ui-slider-line-long {
  position: absolute;
  left: 50%;
  width: 3px;
  height: 18px;
  background: #e9e9e9;
}



/* the text label postion & size */
/* it overflows so no need for width to be accurate */
.ui-slider-pips .ui-slider-label {
  position: absolute;
  top: 25px;
  left: 50%;
  margin-left: -1.5em;
  font-weight: bold;
  white-space: nowrap;
}

.ui-slider-pips .ui-slider-wordwrap-label {
  left: 30%;
  width: 60px;
  white-space: normal;
}

/* SELECTED STATES */
/* Comment out this chuck of code if you don't want to have
        the new label colours shown */
.ui-slider-pips [class*=ui-slider-pip-initial]
.ui-slider-pips .ui-slider-pip-initial-2
.ui-slider-pips [class*=ui-slider-pip-selected]
.ui-slider-pips .ui-slider-pip-inrange
.ui-slider-pips .ui-slider-pip-selected-2 {
  font: bold;
  color: #1a5dae;
}

.ui-slider-pips [class*=ui-slider-pip-selected] .ui-slider-line,
.ui-slider-pips .ui-slider-pip-inrange .ui-slider-line,
.ui-slider-pips [class*=ui-slider-pip-selected] .ui-slider-line-long,
.ui-slider-pips .ui-slider-pip-inrange .ui-slider-line-long {
  background: #e7000e;
}
/*# sourceMappingURL=jquery-ui-slider-pips.css.map */