/*
=======================================
========== DONATION PROGRESS ==========
=======================================
*/
.donation-progress-bar {
    width: 100%;
    padding: 0.75em 1em;
    box-sizing: border-box;
}

.donation-progress-bar__track {
    position: relative;
    width: 100%;
    height: 48px;
    background-color: rgba(30, 30, 30, 0.6);
    border: 3px solid rgba(60, 60, 180, 0.8);
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.donation-progress-bar__fill {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-width: 0;
    background: linear-gradient(
        180deg,
        rgba(80, 80, 220, 0.9) 0%,
        rgba(50, 50, 180, 0.85) 40%,
        rgba(40, 40, 160, 0.9) 100%
    );
    border-radius: 22px;
    transition: width 1s ease-in-out;
}

.donation-progress-bar__text {
    font-family: 'madeEvolveSans', 'Arial', 'sans-serif';
    font-size: 1.4em;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    letter-spacing: 0.05em;
}

.donation-progress-bar__text--empty {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(200, 200, 200, 0.7);
    font-size: 1.4em;
}

/*
=======================================
========= DONATION OVERRIDES ==========
=======================================
*/

/* Force full width on the donation progress card container */
#lesdons .imgcontainer {
    width: 100%;
    padding: 1%;
    box-sizing: border-box;
}

#lesdons .imgcontain {
    display: block;
    width: 100%;
}

#lesdons .cardcontain button {
    margin: 1em auto;
    display: block;
}
