.bnwg-graph-wrap {
    width: 100%;
    margin: 32px 0;
    box-sizing: border-box;
}

.bnwg-chart {
    width: 100%;
    background: #050505;
    color: #f5f5f5;
    border-radius: 10px;
    padding: 22px 22px 12px;
    box-sizing: border-box;
    overflow: hidden;
    font-family: inherit;
}

.bnwg-header h3 {
    margin: 0;
    color: #f5f5f5;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 700;
}

.bnwg-header p {
    margin: 6px 0 12px;
    color: #b8b8b8;
    font-size: 15px;
    line-height: 1.5;
}

.bnwg-canvas {
    position: relative;
    width: 100%;
    min-height: 260px;
}

.bnwg-svg {
    display: block;
    width: 100%;
    height: auto;
    min-height: 260px;
    overflow: visible;
}

.bnwg-grid {
    stroke: rgba(255,255,255,.12);
    stroke-width: 1;
    stroke-dasharray: 4 5;
}

.bnwg-ylabel,
.bnwg-xlabel {
    fill: #c7c7c7;
    font-size: 13px;
    font-family: inherit;
}

.bnwg-line {
    fill: none;
    stroke: #2f75d6;
    stroke-width: 3;
    vector-effect: non-scaling-stroke;
}

.bnwg-area {
    fill: rgba(47,117,214,.08);
}

.bnwg-point {
    cursor: pointer;
}

.bnwg-point circle {
    fill: #0b0b0b;
    stroke: #2f75d6;
    stroke-width: 3;
    vector-effect: non-scaling-stroke;
    transition: r .15s ease, fill .15s ease;
}

.bnwg-point:hover circle {
    r: 7;
    fill: #2f75d6;
}

.bnwg-tooltip {
    position: absolute;
    z-index: 5;
    pointer-events: none;
    white-space: nowrap;
    background: #171717;
    color: #fff;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 6px;
    padding: 7px 9px;
    font-size: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,.35);
}

@media (max-width: 600px) {
    .bnwg-chart {
        padding: 18px 10px 8px;
    }

    .bnwg-header h3 {
        font-size: 19px;
    }

    .bnwg-header p {
        font-size: 13px;
    }

    .bnwg-ylabel,
    .bnwg-xlabel {
        font-size: 11px;
    }

    .bnwg-canvas,
    .bnwg-svg {
        min-height: 220px;
    }
}
