.d9fsp-wrapper{
background:#fff;
padding:15px;
border-radius:10px;
margin:15px 0;
border:1px solid #eee;
box-shadow:0 2px 6px rgba(0,0,0,0.05);
}

.d9fsp-text{
font-size:15px;
margin-bottom:10px;
text-align:center;
}

.d9fsp-bar{
width:100%;
height:14px;
background:#e5e7eb;
border-radius:40px;
overflow:hidden;
}

.d9fsp-fill{
height:100%;
background:linear-gradient(90deg,#22c55e,#4ade80);
position:relative;
transition:width .6s ease;
}

/* moving highlight */

.d9fsp-shine{
position:absolute;
top:0;
left:-60px;
width:60px;
height:100%;
background:rgba(255,255,255,0.6);
transform:skewX(-20deg);
animation:shine 2s infinite;
}

@keyframes shine{
0%{left:-60px;}
100%{left:100%;}
}

.d9fsp-success{
background:#dcfce7;
padding:15px;
text-align:center;
border-radius:10px;
font-weight:600;
}