/* CSS Rules for the D3 vector graphics modules */

/** Add css rules here for your application. */

.linechart-line {
    stroke-width: 2px;
    fill: none;
}

.linechart-line0 {
    stroke: steelblue;
    fill: steelblue;
}

.linechart-line1 {
    stroke: #dd695b;
    fill: #dd695b;
}

.linechart-line2 {
    stroke: #70b97c;
    fill: #70b97c;
}

.linechart-line3 {
    stroke: #b9550f;
    fill: #b9550f;
}

.linechart-line4 {
    stroke: #3566b9;
    fill: #3566b9;
}

.linechart-line5 {
    stroke: #4db979;
    fill: #4db979;
}

.linechart-line6 {
    stroke: #3566b9;
    fill: #3566b9;
}

.axis text {
    font-size: 10px;
}

.axis {
    background-color: bisque;
}

.axis path,
.axis line {
    fill: none;
    stroke: black;
    /*stroke-width: 4px;*/
    shape-rendering: crispEdges;
}

.grid path,
.grid line {
    fill: none;
    stroke: #BFBFBF;
    shape-rendering: crispEdges;
}

.circle {
    fill: white;
    stroke: steelblue;
    stroke-width: 2px;
}

.overlay {
    fill: none;
    stroke: none;
    pointer-events: all;
}

.overlay-debug {
    fill: none;
    stroke: green;
    pointer-events: all;
}

.focusLine {
    fill: none;
    stroke: steelblue;
    stroke-width: 0.5px;
    stroke-dasharray: 5 5;
}

.focusCircle {
    fill: red;
}

.focusPanel {
    fill: white;
    stroke: steelblue;
}

.focusPanel text {
    font-size: 12px;
}

.d3-tip {
    line-height: 1;
    font-weight: bold;
    padding: 12px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    border-radius: 2px;
}

/* Creates a small triangle extender for the tooltip */
.d3-tip:after {
    box-sizing: border-box;
    display: inline;
    font-size: 10px;
    width: 100%;
    line-height: 1;
    color: rgba(0, 0, 0, 0.8);
    content: "\25BC";
    position: absolute;
    text-align: center;
}

/* Style northward tooltips differently */
.d3-tip.n:after {
    margin: -1px 0 0 0;
    top: 100%;
    left: 0;
}

.axi-svg-time-marker {
    stroke: #88eeff;
    stroke-width: 3;
    stroke-dasharray: 2 2;
}

.axi-svg-scroll-button {
    fill: #f03c48;
}

.axi-svg-scroll-arrow {
    stroke: white;
    fill: white;
    stroke-width: 2;
}

