.progress-bar-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.progress-bar-list > .progress-bar {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.progress-bar-list > .progress-bar > .top {
    display: flex;
    justify-content: space-between;
}
.progress-bar-list .top > .label {
}
.progress-bar-list .top > .value {
}
.progress-bar-list > .progress-bar > .progress {
    height: 6px;
    background-color: #ccc;
}
.progress-bar-list .progress > .bar {
    --w: 90;
    height: 100%;
    width: var(--w);
    background-color: var(--main-color);
    animation-duration: 2s;
    animation-name: loading;
}

@keyframes loading {
    0% {
        width: 0;
    }
    100% {
        width: var(--w);
    }
}