.bars {
    width: 100%;
    display: flex;
    align-items: center;
}

.bars .bar {
    border-radius: 4px;
    border: 1px solid rgba(214, 214, 214, 1);
    background: rgba(255, 255, 255, 1);
    padding: 6px 12px;
    line-height: 1;
    color: rgba(29, 29, 27, 1);
    white-space: nowrap;
}

.bars .bar.bar-primary {
    border-color: rgba(0, 0, 0, 1);
    background: rgba(0, 0, 0, 1);
    color: rgba(255, 255, 255, 1);
}

.bars .bar.bar-secondary {
    background: rgba(150, 150, 150, 1);
}

.bar-legends {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.bar-legends .bar-legend {
    border: 1px solid rgba(214, 224, 255, 1);
    border-radius: 4px;
    background: rgba(255, 255, 255, 1);
    width: 1.5rem;
}

.bar-legends .bar-legend.bar-primary {
    border-color: rgba(0, 0, 0, 1);
    background: rgba(0, 0, 0, 1);
}

.bar-legends .bar-legend.bar-secondary {
    background: rgba(150, 150, 150, 1);
}

.bar-legends .bar-value {
    margin-right: 1rem;
    color: rgba(29, 29, 27, 1);
}

.bar-legends .bar-value.bar-mute {
    color: rgba(184, 184, 184, 1);
}

.bars-divider {
    border-top-color: rgba(214, 214, 214, 1);
}

.card {
    border-radius: 40px 12px 12px 12px;
    background: rgba(248, 248, 248, 1);
    padding: 24px;
}

.number-hero {
    font-size: 36px;
    font-weight: bolder;
    line-height: normal;
    padding: 1rem 0;
}

.number-hero-sub {
    font-size: 30px;
    font-weight: bolder;
    line-height: normal;
    padding: 1rem 0;
}

.rounded-pill {
    display: inline-block;
    border-radius: 50%;
    border: 1px solid rgba(214, 214, 214, 1);
    padding: 3px 12px 4px 12px;
}

/* --favt-resolution-tablet-wide */
@media (min-width: 991.98px) {
    .card {
        padding: 32px 40px 40px 40px;
    }

    .number-hero {
        font-size: 80px;
    }
}

.text-center {
    text-align: center;
}