.sf-campaign-progress-wrapper {
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.80);
    padding: 24px 40px;
    font-family: sans-serif;
    box-sizing: border-box;
    position: relative;
}

.sf-campaign-donations {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 18px;
    margin-top: 0;
}

.sf-progress-bar-container {
    height: 14px;
    background: #FFC1C1;
    overflow: hidden;
}

.sf-progress-bar-inner {
    height: 100%;
    background: #DA291C;
    transition: width 0.5s ease;
}

.sf-progress-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
}

.sf-progress-label {
    color: #272727;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.sf-progress-notification {
    display: flex;
    max-width: 450px;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: var(--Red, #DA291C);
    margin: 21px auto 0;
    position: relative;
}

.sf-progress-notification-text {
    color: var(--White, #FFF);
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

.sf-progress-notification::after {
    content: '';
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-bottom: 9px solid var(--Red, #DA291C);
}

.dark-filter .sf-campaign-progress-wrapper {
    background: rgba(73, 73, 73, 0.80);
}

.dark-filter .sf-campaign-donations,
.dark-filter .sf-progress-label {
    color: #FFF;
}
