.funding {
    padding-top: 32px;
}

.funding__progress {
    overflow: hidden;
    height: 0.6rem;
    border-radius: 0.3rem;
    background: #e7e9ed;
}

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

.funding__amounts {
    margin-bottom: 1em;
}

.funding__amount {
    flex: 1 50%;
    padding: 16px 0;
    line-height: 1;
}

.funding__amount + .funding__amount {
    padding: 16px;
    border-left: 1px solid #f2f2f2;
}

.funding__amount__amount {
    display: block;
    margin-top: 1rem;
    white-space: nowrap;
    font-size: 2.4rem;
    font-weight: 500;
}

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