/*!
 * jQuery blueberryCharts Plugin
 * https://github.com/iseries/blueberryCharts.js
 *
 * Copyright 2017, iseries
 * https://github.com/iseries
 *
 * Licensed under the MIT license:
 * http://www.opensource.org/licenses/MIT
*/
html body .blueberryChart {
    position: relative;
    height: 200px;
    width: calc(100% - 100px);
    padding-top: 10px;
    border-bottom: 1px solid #9a9a9a;
}
    html body .blueberryChart > .blueberryLine {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%; }
      html body .blueberryChart > .blueberryLine svg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0; }
        html body .blueberryChart > .blueberryLine svg polyline {
          fill: none;
          stroke-width: 2;
          stroke-linecap: round;
          stroke: red; }
      html body .blueberryChart > .blueberryLine > .blueberryPoints > .blueberryPoint {
        position: absolute;
        z-index: 1;
        height: 10px;
        width: 10px;
        border-radius: 10px;
        margin-bottom: -5px;
        margin-left: -5px; }
        html body .blueberryChart > .blueberryLine > .blueberryPoints > .blueberryPoint > .blueberryTooltip {
          position: absolute;
          background: blue;
          bottom: 13px;
          left: 50%;
          transform: translate3d(-50%, 10px, 0);
          font-weight: 600;
          font-size: 11px;
          line-height: 11px;
          color: white;
          padding: 8px 6px;
          border-radius: 3px;
          visibility: hidden;
          opacity: 0;
          z-index: 2;
          transition: transform 0.4s ease-out 0s, opacity 0.4s ease-out 0s; }
        html body .blueberryChart > .blueberryLine > .blueberryPoints > .blueberryPoint:hover {
              background: #fcb813 !important;
    cursor: pointer; }
          html body .blueberryChart > .blueberryLine > .blueberryPoints > .blueberryPoint:hover > .blueberryTooltip {
            visibility: visible;
            opacity: 1;
            transform: translate3d(-50%, -2px, 0); }

.blueberryChart.demo:before, .blueberryChart.demo:after {
    width: 100%;
    height: 25%;
    content: "";
    position: absolute;
    top: 50%;
    border-top: 1px dashed #9a9a9a;
    border-bottom: 1px dashed #9a9a9a;
    z-index: 2;
}
.blueberryChart.demo:after {
    top: 0;
}

/*# sourceMappingURL=blueberryCharts.css.map */
