/* Ion.RangeSlider
// css version 2.0.3
// © 2013-2014 Denis Ineshin | IonDen.com
// ================================================================================================================== */

/* =====================================================================================================================
// RangeSlider */

.irs {
  position: relative;
  display: block;
  height: 55px;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
.irs-line {
  position: relative;
  top: 33px;
  display: block;
  height: var(--slider-height, 10px);
  overflow: hidden;
  background: var(--slider-bg, #eee);
  border-radius: calc(var(--slider-height, 10px) * .5);
  outline: none !important;
}
.irs-line-left,
.irs-line-mid,
.irs-line-right {
  position: absolute;
  top: 0;
  display: block;
  height: 8px;
}
.irs-line-left {
  left: 0;
  width: 11%;
}
.irs-line-mid {
  left: 9%;
  width: 82%;
}
.irs-line-right {
  right: 0;
  width: 11%;
}

.irs-bar {
  position: absolute;
  top: 33px;
  left: 0;
  display: block;
  width: 0;
  height: var(--slider-height, 10px);
  background: var(--slider-progress-bg, #428bca);
  border-top: 1px solid var(--slider-progress-bg, #428bca);
  border-bottom: 1px solid var(--slider-progress-bg, #428bca);
}
.irs-bar-edge {
  position: absolute;
  top: 33px;
  left: 0;
  display: block;
  width: 14px;
  height: var(--slider-height, 10px);
  background: var(--slider-progress-bg, #428bca);
  border-right: 0;
  border-radius: 16px 0 0 16px;
}

.irs-shadow {
  position: absolute;
  left: 0;
  display: none;
  width: 0;
}

.irs-slider {
  position: absolute;
  top: var(--slider-handle-offset, 25px);
  z-index: 1;
  display: block;
  width: var(--slider-handle-height, 27px);
  height: var(--slider-handle-height, 27px);
  cursor: pointer;
  background: var(--slider-handle-bg, #fff);
  border: 1px solid var(--slider-handle-border-color, #aaa);
  border-radius: var(--slider-handle-height, 27px);
}

.irs-slider.type_last {
  z-index: 2;
}

.irs-slider:hover {
  background: var(--slider-handle-bg--hover, #fff);
  border: 1px solid var(--slider-handle-border-color--hover, #aaa);
}

.irs-slider.state_hover {
  border: var(--focus-state-border, 1px solid #ee7725);
  box-shadow: var(--focus-state-shadow);
}

.irs-min,
.irs-max {
  position: absolute;
  top: 0;
  display: block;
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.333;
  color: #333;
  text-shadow: none;
  cursor: default;
  background: rgba(0,0,0,.1);
  border-radius: var(--border-radius-base, 3px);
}

.irs-min {
  left: 0;
}

.irs-max {
  right: 0;
}

.irs-from,
.irs-to,
.irs-single {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  padding: 1px 5px;
  font-size: 14px;
  line-height: 1.333;
  color: #fff;
  text-shadow: none;
  white-space: nowrap;
  cursor: default;
  background: var(--slider-progress-bg, #428bca);
  border-radius: 3px;
}

.lt-ie9 .irs-from,
.lt-ie9 .irs-to,
.lt-ie9 .irs-single {
  background: #999;
}

.irs-grid {
  position: absolute;
  bottom: 0;
  left: 0;
  display: none;
  width: 100%;
  height: var(--slider-handle-height, 20px);
}

.irs-with-grid .irs-grid {
  display: block;
}
.irs-grid-pol {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 8px;
  background: #428bca;
  opacity: .5;
}

.irs-grid-pol.small {
  height: 4px;
  background: #999;
}
.irs-grid-text {
  position: absolute;
  bottom: 5px;
  left: 0;
  padding: 0 3px;
  font-size: 9px;
  line-height: 9px;
  color: #99a4ac;
  text-align: center;
  white-space: nowrap;
}

.irs-disable-mask {
  position: absolute;
  top: 0;
  left: -1%;
  z-index: 2;
  display: block;
  width: 102%;
  height: 100%;
  cursor: default;
  background: rgba(0,0,0,);
}
.lt-ie9 .irs-disable-mask {
  cursor: not-allowed;
  background: #000;
  filter: alpha(opacity=0);
}

.irs-disabled {
  opacity: .4;
}

.irs-hidden-input {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  z-index: -9999 !important;
  display: block !important;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  font-size: 0 !important;
  line-height: 0 !important;
  background: none !important;
  border-color: transparent !important;
  border-style: solid !important;
  outline: none !important;
}

.irs-with-grid {
  height: 75px;
}

.lt-ie9 .irs-min,
.lt-ie9 .irs-max {
  background: #ccc;
}
