.fundraising-wrapper {
    width: 100%;
}

.fundraising-wrapper * {
    font-family: "Tabac - G 1 Medium";
    font-weight: 400;
    font-size: 32px;
}

.fundraising-wrapper .fundraising-container {
    display: flex;
    margin: 20px auto;
    width: fit-content;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.fundraising-wrapper.default .fundraising-container {
    flex-direction: row;
}

.fundraising-wrapper.alternate .fundraising-container {
    flex-direction: column;
}

.fundraising-wrapper.alternate .fundraising-container .progress-title {
    margin-bottom: 15px;
}

.fundraising-wrapper.alternate .amount-counter-container {
    display: flex;
    flex-direction: column;
    width: 600px;
    margin: 0 auto;
}

.fundraising-wrapper.alternate .red-text {
    color: #006EFA;
}

.fundraising-wrapper.alternate .amount-counter-container .amount-bar {
    width: 100%;
    background-color: gray;
}

.fundraising-wrapper.alternate .amount-counter-container .amount-bar .amount-bar-progress {
    height: 16px;
    transition: 2s;
    width: 0%;
    background-color: #006EFA;
}

.fundraising-wrapper.alternate .amount-counter-container .amount-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 0px;
}

.fundraising-wrapper.alternate .amount-counter-container .amount-container.amount-center {
    justify-content: center;
}

.fundraising-wrapper.alternate .amount-container span {
    font-size: 16px;
}

.fundraising-wrapper .fundraising-container p.currency {
    margin: 0 10px;
}

.fundraising-counter span.number {
    background: #006EFA;
    color: white;
    margin: 0 1px;
    width: 30px;
    transition: 0.5s;
    transform-style: preserve-3d;
}

.fundraising-counter.animated span.number {
    color: #006EFA;
}

.fundraising-counter > span.character {
    color: #141e50;
}

.fundraising-wrapper .fundraising-container .fundraising-counter {
    color: #006EFA;
    letter-spacing: 3px;
    height: 100%;
    text-align: center;
    padding: 0 5px;
    display: flex;
    flex-direction: row;
    transition: 0.5s;
}

@media (max-width: 768px) {
    .fundraising-wrapper * {
        font-size: 22px;
    }
    .fundraising-counter span.number {
        width: 20px;
    }
    .fundraising-wrapper.alternate {
        margin: 20px 0px 60px 0px;
    }

    .fundraising-wrapper.alternate .amount-counter-container {
        width: 450px;
    }
}

@media (max-width: 567px) {
    .fundraising-wrapper * {
        font-size: 16px;
    }
    .fundraising-counter span.number {
        width: 15px;
    }
    .fundraising-wrapper .fundraising-container p.currency {
        margin: 0 0px;
    }
    .fundraising-wrapper.alternate .amount-counter-container {
        width: 300px;
    }
    .fundraising-wrapper.alternate .amount-container span {
        font-size: 12px;
    }
    .fundraising-wrapper.alternate {
        margin: 0px 0px 20px 0px;
    }
    .fundraising-wrapper.alternate .fundraising-container .progress-title {
        margin-bottom: 10px;
    }
}