/**
 * 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.
 */
.bfd-slider {
  height: 33px;
  position: relative;
  border: 0px solid #eee;
}
.bfd-slider__bar {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  height: 6px;
  margin-left: 9px;
  margin-right: 9px;
  margin-top: 5px;
  background-color: #eee;
  border-radius: 8px;
}
.bfd-slider__bar--selected {
  position: absolute;
  width: 0px;
  height: 100%;
  background-color: #41A1F5;
  border-radius: 8px 0px 0px 8px;
}
.bfd-slider__slider {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 8px;
  height: 20px;
  background-color: #41A1F5;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: 999;
  cursor: pointer;
}
.bfd-slider__tooltips {
  top: -25px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: absolute;
  float: left;
  z-index: 9999;
  color: #fff;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.bfd-slider__tooltips-text {
  padding: 2px 5px;
  background-color: #41A1F5;
  border-radius: 4px;
  color: #fff;
}
.bfd-slider__tooltips-arrow-down {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #41A1F5;
  margin: 0 auto;
}
.bfd-scale {
  position: absolute;
  top: 12px;
  height: 30px;
  margin-top: 0px;
  border: 0px solid #eee;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.bfd-scale__tick {
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  margin: 0 auto;
  text-align: center;
  position: absolute;
  left: 0px;
  color: #666;
  float: left;
}
.bfd-scale__tick div {
  margin: 0 auto;
  width: 2px;
  height: 8px;
  background-color: #eee;
}
