/* PROGRESS.CSS */
.progress{
width:100%;
height:10px;
background:rgba(255,255,255,.08);
border-radius:999px;
overflow:hidden;
}
.progress-bar{
height:100%;
width:0;
background:linear-gradient(90deg,var(--gold-600),var(--gold-400));
transition:width .4s ease;
}
.progress-label{
display:flex;
justify-content:space-between;
margin-bottom:8px;
font-size:14px;
color:var(--text-muted);
}
