/*!
 * 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: 100px;
    width: 100%;
    background: none;
	border-bottom: 1px solid #fff;
    padding-top: 10px; 
	
	}
    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: 1px;
        width: 1px;
        border-radius: 10px;
        margin-bottom: 0px;
        margin-left: 0px; }
        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 {
          border: 3px solid rgba(255, 255, 255, 0.5);
          margin-bottom: -8px;
          margin-left: -8px; }
          html body .blueberryChart > .blueberryLine > .blueberryPoints > .blueberryPoint:hover > .blueberryTooltip {
            visibility: visible;
            opacity: 1;
            transform: translate3d(-50%, -2px, 0); }

			.one-square {
				position: relative;
				padding-left: 22px;
				margin-top: 5px;
				font-weight: bold;
			}
			.one-square:before {
				background: #fff;
				width: 14px;
				height: 14px;
				content: ' ';
				position: absolute;
				left: 0px;
				margin-top: 5px;
			}
			
			.one-square.red {
				color: #e65c73
			}
			.one-square.red:before {
				background: #e65c73
			}

			.one-square.blue {
				color: #53bab7
			}
			.one-square.blue:before {
				background: #53bab7
			}
			
			.page-template-charts h1{
				font-size: 28px;
				margin-top: 40px;
			}

			.page-template-charts h3{
				font-size: 20px;
			}

			/*# sourceMappingURL=blueberryCharts.css.map */
