/*--------------------------------------------------------------------------*\
    Filling a circle containing a percentage
\*--------------------------------------------------------------------------*/

@keyframes circle-progress {
    0% {
        /*border*/
        stroke-dasharray: 0 100;
    }
}

.anim-name-circle-progress {
    /*animation*/
    animation-name: circle-progress;
    -webkit-animation-name: circle-progress;
}