div.progress-bar {
    height: 30px;
    width: 60vw;
    margin-left: 50%;
    transform: translateX(-50%);
    /*border: 1px solid #111111;*/
    border-radius: 5px;
    background-color: var(--bgcolor-box);
    margin-bottom: 10px;
}
p.text-bar {
    font-size: 15px;
    color: #4D4B43;
    font-family: "Roboto";
    margin-bottom: -20px;
    margin-left: 60px;
    width: 75px;
    text-align: right;
}
div.bar {
    display: inline-block;
    background: linear-gradient(to right, var(--color-element), #77CE0C);
    height: 30px;
    margin-left: -1px;
    border-radius: 4px;
}
@keyframes bar {
    from {
        width:0%;
    }
    to {
        width: --larg;
    }
}
p.pourcentage {
    text-align: center;
    transform: translateY(-50%);
    font-family: "Roboto";
    color: var(--bgcolor-general);
    font-size: 0.9em;
}
div#bar0{
    width: 98%;
    --larg: 98;
    animation-duration: 2s;
    animation-name: bar;
    animation-iteration-count: 1;
}
div#bar1 {
    width: 95%;
    --larg: 90;
    animation-duration: 2s;
    animation-name: bar;
    animation-iteration-count: 1;
}
div#bar2 {
    width: 60%;
    --larg: 60;
    animation-duration: 2s;
    animation-name: bar;
    animation-iteration-count: 1;
}
div#bar3 {
    width: 35%;
    --larg: 60;
    animation-duration: 2s;
    animation-name: bar;
    animation-iteration-count: 1;
}
div#bar4 {
    width: 73%;
    --larg: 75;
    animation-duration: 2s;
    animation-name: bar;
    animation-iteration-count: 1;
}
div#bar5 {
    width: 30%;
    --larg: 75;
    animation-duration: 2s;
    animation-name: bar;
    animation-iteration-count: 1;
}
div#bar6 {
    width: 55%;
    --larg: 75;
    animation-duration: 2s;
    animation-name: bar;
    animation-iteration-count: 1;
}
