.ProgressBar {
    align-items: center;
    display: flex;

    &-container {
        background-color: var(--gray-200);
        border-radius: 3px;
        flex: 1;
        height: .75rem;
    }

    &-percentage {
        margin-right: 5px;
        width: 3rem;

        &-only {
            flex: 1;
            margin-right: 0;
        }
    }

    &-bar {
        border-radius: 3px;
        height: 100%;
    }
}
