/**
 * 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-scatter-plot > svg {
  display: block;
}
.bfd-scatter-plot .tick {
  fill: #93979a;
  font-size: 12px;
}
.bfd-scatter-plot .tick line,
.bfd-scatter-plot path.domain {
  fill: none;
  stroke: #e6e6e6;
  stroke-dasharray: 5 2;
  shape-rendering: crispEdges;
}
.bfd-scatter-plot .axis-y path.domain {
  stroke: none;
}
.bfd-scatter-plot circle.hover {
  stroke-width: 3;
}
.bfd-scatter-plot .tooltip {
  white-space: nowrap;
  min-width: 80px;
  background-color: #65a6ff;
  color: #fff;
  border-radius: 2px;
  padding: 8px 10px;
  font-size: 12px;
  z-index: 9999;
}
