/* OVERRIDE THE DEFAULT GRID  */

.chart-container {
    grid-template-areas:
    'c2-1 c2-2';

    grid-template-rows: repeat(2, auto) !important;
    grid-template-columns: 50% 50% !important;
    background-color: transparent;
    
    grid-gap: .8em;
    border: 1em solid transparent;
}

.chart {
    background-color: white ;
}

.c3 svg, .c3-legend-item {
    font: .7vw Graphik !important;
}

.c3-legend-item {
    margin: .1em;
}