.teamMeter {
    padding: 8px 0;
}

.teamMeter__progress {
    overflow: hidden;
    height: 0.6rem;
    margin: 6px 0 0;
    border-radius: 0.3rem;
    background: #e7e9ed;
}

.teamMeter__progressBar {
    height: 100%;
    width: 0%;
    overflow: hidden;
    display: block;
    border-radius: 0.3rem;
    background: #f39200;
    animation: 1s progressing;
}

.teamMeter__label {
    display: block;
    text-align: right;
    line-height: 1;
}

.teamMeter__amounts {
    margin-bottom: 1em;
}

.teamMeter__amount {
    flex: 1 50%;
    padding: 16px 0;
}

.teamMeter__amount + .teamMeter__amount {
    padding: 16px;
    border-left: 1px solid #ddd;
}

.teamMeter__amount__amount {
    white-space: nowrap;
    font-size: 2.4rem;
    line-height: 1;
    font-weight: 500;
}

@keyframes progressing {
    0% {
        transform: translate(-100%, 0)
    }
    100% {
        transform: translate(0, 0)
    }
}