.ProgressArc-svg {
    margin: auto;
    display: block;
    width: 100%;
    height: auto;
}

.ProgressArc-bar-background {
    stroke: var(--data-blue-100);
}

.ProgressArc-bar-progress {
    stroke: var(--data-blue-500);

    /* Stroke-dasharray is set by (Math.PI x Radius) to get the length of the arc */
    stroke-dashoffset: 440px;
    stroke-dasharray: 440px;
    transition: stroke-dashoffset 1s linear;
}

.ProgressArc-bar {
    fill: none;
    stroke-width: 16;
}

.ProgressBar-text--percentage {
    text-anchor: middle;
    font-size: 3.375rem;
    font-weight: var(--font-weight-semibold);
    fill: var(--text-accent);
}

.ProgressBar-text--title {
    font-size: 1rem;
    fill: var(--text-accent);
}

.ProgressBar-text--progress {
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    fill: var(--text-accent);
}
