/**
 * 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-line-chart .tick {
  fill: #93979a;
  font-size: 12px;
}
.bfd-line-chart .tick line {
  fill: none;
  stroke: #e6e6e6;
  stroke-dasharray: 5 2;
  shape-rendering: crispEdges;
}
.bfd-line-chart .axis-x path.domain {
  shape-rendering: crispEdges;
  fill: none;
  stroke: #607d8b;
}
.bfd-line-chart .axis-y path.domain {
  fill: none;
  stroke: none;
}
.bfd-line-chart .active-line {
  stroke: #607d8b;
}
.bfd-line-chart .active-circle {
  fill: #607d8b;
}
.bfd-line-chart__legend {
  position: absolute;
  right: 0;
  top: 5px;
  color: #555;
  font-size: 12px;
}
.bfd-line-chart__legend > div {
  display: inline-block;
  margin-right: 10px;
  position: relative;
}
.bfd-line-chart__legend > div.disabled {
  color: #ccc;
}
.bfd-line-chart__legend > div.disabled .line {
  background-color: #ccc!important;
}
.bfd-line-chart__legend > div.disabled .circle {
  border-color: #ccc!important;
}
.bfd-line-chart__legend > div .line {
  margin-right: 3px;
  display: inline-block;
  width: 30px;
  height: 2px;
  vertical-align: middle;
}
.bfd-line-chart__legend > div .circle {
  position: absolute;
  left: 12px;
  top: 50%;
  margin-top: -4px;
  background-color: #fff;
  width: 8px;
  height: 8px;
  border: 2px solid transparent;
  border-radius: 50%;
}
.bfd-line-chart__legend > div .text {
  vertical-align: middle;
}
.bfd-line-chart__tooltip {
  white-space: nowrap;
  min-width: 80px;
  background-color: #607d8b;
  color: #fff;
  border-radius: 2px;
  padding: 6px 10px;
  font-size: 12px;
  z-index: 9999;
}
.bfd-line-chart__tooltip h2 {
  margin: 5px 0;
  font-size: 12px;
}
