 .timeline-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}

.timeline-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
    text-align: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.label-top {
    font-size: 13px;
    margin-bottom: 5px;
    white-space: nowrap;
}

.label-bottom {
    font-size: 13px;
    margin-top: 5px;
    color: #333;
    min-height: 1.5em;
}

.circle {
    width: 20px;
    height: 20px;
    background-color: white;
    border: 2px solid gray;
    border-radius: 50%;
    z-index: 2;
}

.bar {
    flex: 1;
    height: 4px;
    background-color: lightgray;
    border-radius: 2px;
    /*position: relative;*/
    /*top: 2px;*/
    z-index: 1;
    overflow: hidden;
    margin: 0 -60px;
}

.progress-fill {
    background-color: #198754;
    height: 100%;
    width: 0%;
    transition: width 0.3s ease;
    position: relative;
    z-index: 2;
}

.bar.progress.in-progress::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  pointer-events: none;

  background: linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.3) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0.3) 75%,
    transparent 75%,
    transparent
  );
  background-size: 40px 40px;
  animation: stripesMove 1s linear infinite;

  mask-image: linear-gradient(to right, transparent 0%, black 0%);
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  mask-position: var(--progress-width, 0%) 0%;
}

.bar.static.validated {
    background-color: #198754;
}

.step[data-status="done"] .circle,
.step[data-status="in progress"] .circle{
    background-color: #198754;
    border-color: #198754;
}

.bar.progress[data-progress="100"] .progress-fill {
    background-color: #198754;
}

.bar.progress[data-progress="100"] .progress-fill::after {
    display: none;
}

.bar.progress {
    flex: 1;
    height: 4px;
    background-color: lightgray;
    border-radius: 2px;
    z-index: 1;
    overflow: hidden;
    margin: 0 -60px;
    position: relative;
}

.timeline-wrapper.disabled > *:not(.timeline-spinner-overlay) {
    opacity: 0.5;
    pointer-events: none;
}

.timeline-spinner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.timeline-spinner-overlay .spinner-border {
    width: 1.5rem;
    height: 1.5rem;
}

@keyframes stripesMove {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 40px 0;
    }
}