/*-- Chart --*/

.c3 svg {
}
.c3 path, .c3 line {
    fill: none;
    stroke: #666;
    stroke-width: 1px;
}
.c3-shapes path {
    stroke-width: 0px;
    }

.c3 text {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.c3-legend-item-tile,
.c3-xgrid-focus,
.c3-ygrid,
.c3-event-rect,
.c3-bars path {
  shape-rendering: crispEdges;
}

.c3-chart-arc path {
  stroke: #fff;

}
.c3-chart-arc text {
  fill: #fff;
}

/*-- Axis --*/

.c3-axis {
    fill: #666;
    }
.c3-axis-x-label {
}

.c3-axis-y .tick {
}
.c3-axis-y-label {
}

.c3-axis-y2 .tick {
}
.c3-axis-y2-label {
}

/*-- Grid --*/

.c3-grid line {
    stroke: #aaa;
    }

.c3-grid text {
    fill: #aaa;
    }

.c3-xgrid, .c3-ygrid {
  stroke-dasharray: 3 3;
}
.c3-xgrid-focus {
}

/*-- Text on Chart --*/

.c3-text {
    
    }

.c3-text.c3-empty {
    fill: #808080;
    }

/*-- Line --*/

.c3-line {
  stroke-width: 1px;
}
/*-- Point --*/

.c3-circle._expanded_ {
  stroke-width: 1px;
  stroke: white;
}
.c3-selected-circle {
  fill: white;
  stroke-width: 2px;
}

/*-- Bar --*/

.c3-bar {
  stroke-width: 0;
}
.c3-bar._expanded_ {
  fill-opacity: 0.75;
}

/*-- Arc --*/

.c3-chart-arcs-title {
  font-size: 1.3em;
}

/*-- Focus --*/

.c3-target.c3-focused path.c3-line, .c3-target.c3-focused path.c3-step {
  stroke-width: 2px;
}

/*-- Region --*/

.c3-region {
  fill: steelblue;
  fill-opacity: .1;
}

/*-- Brush --*/

.c3-brush .extent {
  fill-opacity: .1;
}

/*-- Select - Drag --*/

.c3-dragarea {
}

/*-- Tooltip --*/

.c3-tooltip {
    border-collapse:collapse;
    border-spacing:0;
    background-color: #fff;
    empty-cells:show;
    opacity: 1;
    webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    background: rgba(0,0,0,.7);
    color: #fff;
    font-size: 13px;
    }

.c3-tooltip th {
    font-family: MuseoSans-500,sans-serif;
    padding: 7px 6px 0 6px;
    text-align: left;    
    font-weight: normal;
    }

.c3-tooltip td {
    padding: 0 6px 4px 6px;
    }

.c3-tooltip td > span {
    display: inline-block;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    margin-right: 6px;
    }

.c3-tooltip td.value{
    text-align: left;
    }

.c3-area {
    stroke-width: 0;
    opacity: 0.2;
    opacity: 0.6;
    }

.c3-chart-arcs .c3-chart-arcs-background {
    fill: #e0e0e0;
    stroke: none;
    }

.c3-chart-arcs .c3-chart-arcs-gauge-unit {
  fill: #000;
  font-size: 16px;
}
.c3-chart-arcs .c3-chart-arcs-gauge-max {
  fill: #777;
}
.c3-chart-arcs .c3-chart-arcs-gauge-min {
  fill: #777;
}

.c3-chart-arc .c3-gauge-value {
  fill: #000;
  font-size: 28px;
}