:root {
    --fund-raiser-accent: #017826;
    --funt-raiser-font: #3b4249;
}

.act-fr-widget-container {
    background: #f9f9f9;
    padding: 20px 25px;
    font-family: inherit;
    color: #444;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0px 0px 25px 0px rgb(0 0 0 / 20%);
}

.act-fr-amount-goal-num {
    font-weight: 700;
    color: var(--funt-raiser-font);
}

.act-fr-widget-header {
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-content .act-fr-amount-raised,
.page-content .act-fr-dollar
{
    font-size: 2.8rem !important;
    font-weight: 700;
    color: var(--fund-raiser-accent);
    margin-right: 5px;
    line-height: inherit;
}

.page-content .act-fr-dollar {
    margin: 0;
    font-weight: normal;
    letter-spacing: -9px;
    font-size: 2.9rem !important;
}

.act-fr-amount-goal {
    font-size: 1.3rem;
    color: var(--funt-raiser-font);
}

.act-fr-progress-bar-bg {
    width: 100%;
    height: 12px;
    background-color: #e5e3db;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 20px;
}

.act-fr-progress-bar-fill {
    height: 100%;
    background-color: var(--fund-raiser-accent);
    width: 0%;
    transition: width 1s ease-in-out;
}

.act-fr-widget-footer {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    color: var(--funt-raiser-font);
    margin-top: 15px;
}

.act-fr-footer-bold {
    font-weight: 700;
    color: var(--funt-raiser-font);
}

@media screen and (max-width: 500px) {
    .act-fr-widget-footer[data-days="1"] {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        gap: 8px;
    }
    .act-fr-footer-right,
    .act-fr-widget-header {
        text-align: center;
    }
    .act-fr-goal-off {
        display: block;
        margin-top: 2px;
    }
}

