/**
 * Copyright 2016-present, Baifendian, Inc.
 * All rights reserved.
 *
 * This source code is licensed under the BSD-style license found in the
 * LICENSE file in the root directory of this source tree. An additional grant
 * of patent rights can be found in the PATENTS file in the same directory.
 */
/**
 * Colors
 */
.bfd-slider2 {
  padding: 6px 7px;
  cursor: pointer;
}
.bfd-slider2--disabled {
  cursor: not-allowed;
}
.bfd-slider2--disabled .bfd-slider2__range {
  background-color: #cdcdcd;
}
.bfd-slider2--disabled .bfd-slider2__slider {
  border-color: #cdcdcd;
}
.bfd-slider2--disabled .bfd-slider2__slider:hover {
  border-color: #cdcdcd;
}
.bfd-slider2__layer {
  height: 2px;
  border-radius: 2px;
  background-color: #eaeaea;
  position: relative;
}
.bfd-slider2__range {
  border-radius: 2px;
  width: 0%;
  height: 100%;
  background-color: #27b3fe;
}
.bfd-slider2__slider {
  -webkit-user-drag: none;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 50%;
  font-size: 14px;
  width: 1em;
  height: 1em;
  margin-left: -0.5em;
  margin-top: -0.5em;
  border: 1px solid #27b3fe;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: border-color 0.1s, -webkit-transform 0.1s;
  transition: border-color 0.1s, -webkit-transform 0.1s;
  transition: transform 0.1s, border-color 0.1s;
  transition: transform 0.1s, border-color 0.1s, -webkit-transform 0.1s;
}
.bfd-slider2__slider:hover {
  border-color: #19afff;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
}
