<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Angular JS slider directive
 *
 * (c) Rafal Zajac &lt;rzajac@gmail.com&gt;
 * http://github.com/rzajac/angularjs-slider
 *
 * Licensed under the MIT license
 */

rzslider {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 2px;
  margin: 30px 0 15px 0;
  vertical-align: middle;
}

rzslider span {
  position: absolute;
  display: inline-block;
  white-space: nowrap;
}

rzslider span.base {
  width: 100%;
  height: 100%;
  padding: 0;
}

rzslider span.bar {
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #ccc;
}

rzslider span.bar.selection {
  z-index: 1;
  width: 0;
  background: #67b700;
}

rzslider span.pointer {
  top: -15px;
  z-index: 2;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background-color: #5c9df2;
  -webkit-border-radius: 16px;
     -moz-border-radius: 16px;
          border-radius: 16px;
}

rzslider span.pointer:after {
  position: absolute;
  top: 9px;
  left: 9px;
  width: 14px;
  height: 14px;
  background: #195cb2;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
  content: '';
}

rzslider span.pointer:hover:after {
  background-color: #195cb2;
}

rzslider span.pointer.active:after {
  background-color: #195cb2;
}

rzslider span.bubble {
  top: -32px;
  padding: 1px 3px 1px 3px;
  color: rgb(51, 102, 153);
  cursor: default;
}

rzslider span.bubble.selection {
  top: 15px;
}

rzslider span.bubble.limit {
  color: #000000;
}
</pre></body></html>