.ProgressBarBlock {
    margin-bottom: 15px;
    max-width: 240px;
    width: 100%;
}

.ProgressBarBlock .titulo {
    color: var(--ydevs-10);
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 14px;
}

.ProgressBarBlock .valores {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 12px;
    color: var(--ydevs-4);
    font-weight: 500;
    margin-top: 1px;
}

.ProgressBarBlock .progress {
    background: none;
    border: 1px solid var(--ydevs-4);
    justify-content: flex-start;
    border-radius: 100px;
    align-items: center;
    position: relative;
    display: flex;
    height: 15px;
    width: 100%;
}

.ProgressBarBlock div[class^="progress-value-"] {
    border-radius: 100px;
    background: var(--ydevs-12);
    height: 100%;
    width: 0;
    position: relative;
    z-index: 1;
    transition: width 3s ease-in-out;
}

.ProgressBarBlock.start div[class^="progress-value-"] {
    transition: width 3s ease-in-out;
}

.ProgressBarBlock div[class^="progress-value-"]:nth-child(2) {
    position: absolute;
    left: 0;
    z-index: 0;
    background: var(--ydevs-11);
}

.ProgressBarBlock.start .progress-value-1 {
  width: 10%;
}

.ProgressBarBlock.start .progress-value-2 {
  width: 20%;
}

.ProgressBarBlock.start .progress-value-3 {
  width: 30%;
}

.ProgressBarBlock.start .progress-value-4 {
  width: 40%;
}

.ProgressBarBlock.start .progress-value-5 {
  width: 50%;
}

.ProgressBarBlock.start .progress-value-6 {
  width: 60%;
}

.ProgressBarBlock.start .progress-value-7 {
  width: 70%;
}

.ProgressBarBlock.start .progress-value-8 {
  width: 80%;
}

.ProgressBarBlock.start .progress-value-9 {
  width: 90%;
}

.ProgressBarBlock.start .progress-value-10 {
  width: 100%;
}