.givewp-campaign-goal__progress-bar-container{
    position:relative;
    height:16px;
    background:#ececec;
    border-radius:999px;
    overflow:visible !important;
}

.givewp-campaign-goal__progress-bar-progress{
    position:relative;
    height:100%;
    border-radius:999px;
    background:linear-gradient(90deg,#fdc513,#ffd84d);
    box-shadow:
        0 0 12px rgba(253,197,19,.45),
        inset 0 1px 0 rgba(255,255,255,.35);
    overflow:visible !important;
}

.givewp-progress-label{
    position:absolute;
    top:50%;
    transform:translate(50%,-50%);
    right:0;
    background:#fdc513;
    color:#000;
    font-size:11px;
    font-weight:700;
    line-height:1;
    padding:4px 8px;
    border-radius:6px;
    z-index:999;
    white-space:nowrap;
    box-shadow:
        0 0 8px rgba(253,197,19,.8),
        0 0 18px rgba(253,197,19,.45);
}

/* Golden Shine */

.givewp-progress-label::after{
    content:"";
    position:absolute;
    top:50%;
    left:100%;
    width:34px;
    height:12px;
    transform:translateY(-50%);
    background:linear-gradient(
        90deg,
        rgba(253,197,19,.9),
        rgba(253,197,19,.45),
        rgba(253,197,19,0)
    );
    filter:blur(5px);
    animation:m2sGlow 1.4s linear infinite;
}

@keyframes m2sGlow{

0%{
opacity:.4;
transform:translateY(-50%) scaleX(.7);
}

50%{
opacity:1;
transform:translateY(-50%) scaleX(1.3);
}

100%{
opacity:.4;
transform:translateY(-50%) scaleX(.7);
}

}
