.donut {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
    .donut-chart {
        width: 50%;
        justify-content: center;
        align-items: center;
        margin-bottom: 2rem;
    }
    .donut-legend {
        margin-bottom: 2rem;
        width: 50%;
    }
    @media(max-width: 700px) {
        .donut-chart, .donut-legend {
            width: 100%;
        }
    }

.donutChart {
    display: flex;
}
    .donutChart-chart {
        position: relative;
        color: #FFF;
        width: 17rem;
        min-width: 17rem;
        height: 17rem;
    }
    .donutChart-sizeWrapper {
        position: absolute;
        z-index: 10;
        top:0; right:0; bottom:0; left:0;
    }
        .donutChart-sizeWrapper canvas {
            top: -.25rem;
            position: relative;
        }
    .donutChart-circle {
        position: absolute;
        top:0; right:0; bottom:0; left:0;
        background-color: #302B4D;
        border-radius: 50%;
        z-index: 0;
        box-shadow: 0px 2px 23px rgba(0,0,0,.15);
    }
    .donutChart-inside {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
    }
    .donutChart-main {
        line-height: 1;
    }
    .donutChart-number {
        font-weight: 700;
        font-size: 4.25em;
        margin-right: .25rem;
        line-height: 1;
    }
    .donutChart-type {
        font-weight: 700;
        font-size: 3em;
    }
    .donutChart-title, .donutChart-subtitle {
        font-weight: 100;
        font-size: .95rem;
        color: #FFFFFF;
        letter-spacing: .0871rem; /* 1.83px */
        text-align: center;
        text-transform: uppercase;
    }
    .donutChart-title {}
    .donutChart-subtitle {}

.donutLegend {}
    .donutLegend-categories {}
    .donutLegend-category {
        margin-bottom: .75rem;
    }
    .donutLegend-toggle {
        grid-column: 1 / 3;
        display: grid;
        grid-template-columns: 1.25rem 1fr;
        cursor: pointer;
    }
    .donutLegend-heading {
        display: flex;
        align-items: center;
    }
    .donutLegend-title {
        font-size: 1.098rem;
        color: #47435D;
        text-transform: uppercase;
        line-height: 1.3;
        margin-left: .75rem;
    }
    .donutLegend-icon {
        font-family: futura-pt, arial, sans-serif;
        font-size: 1.25rem;
        font-weight: 500;
        line-height: 100%;
    }
    .donutLegend-minus {
        line-height: 1rem;
        padding-left: .1rem;
    }
    .donutLegend-count {
        display: inline-block;
        font-family: futura-pt, arial, sans-serif;
        font-weight: 600;
        font-size: .5752rem;
        color: #FFFFFF;
        text-align: center;
        line-height: 1.2857rem;
        width: 1.2857rem;
        height: 1.2857rem;
    }
    .donutLegend-items {
        display: none;
        overflow: hidden;
    }
    .donutLegend-items > ul {
        list-style: square;
        margin-top: .65rem;
        margin-left: 2.3rem;
        margin-bottom: 0;
    }
    .donutLegend-item span {
        font-weight: 500;
        font-size: .85rem;
        color: #636363;
        line-height: 1;
        -webkit-column-break-inside: avoid;
        page-break-inside: avoid;
        break-inside: avoid;
    }

/* Temporary hack to reduce space between 2 light-colored sections that follow one another. We should eventually come up with a more robust way to do this globally. */
.ui_BlockContent + .ui_BlockDonutChart,
.ui_BlockDonutChart + .ui_BlockContent {
    margin-top: -2.25rem;
}