#jplot-sandbox  div{
    background-color: red;
    margin-top: 2px;
}

.jplot{
    margin-left: auto;
    margin-right: auto;
    display: block;
    /* border: solid #eee 1px; */
    width: 100%;
}

.jplot-axis path, .jplot-axis line{
    shape-rendering: crispEdges; /* render fine lines */
    fill: none;                  /* remove thick filling */
    stroke: black;               /* line color of axes lines */
}

.jplot-lineplot{
    fill: none;
    stroke: #2b5ce7;
    z-index: 100;
    stroke-width: 1;
}

.jplot-gridlines{
    fill: none;
    shape-rendering: crispEdges;
    stroke: lightgrey;
    z-index: 0;
}

.jplot-legend-border{
    fill: none;
    stroke-width: 1;
    stroke: green;
}

.jplot-legend-line{
    stroke-width: 2;
}

.jplot-legend-item{
    cursor: pointer;
}

.jplot-legend-item-inactive > text{
    font-style: italic;
    opacity: 0.5;
}

.jplot-plotline-inactive{
    visibility: hidden;
}


