ul.progress-bar {
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 0;
    list-style: none;
    background-color: #fff;
    display: inline-block;
    height: 100%; 
}
li.section {
    display: inline-block;
    padding-top: 45px;
    font-size: 11px;
    font-weight: 500;
    line-height: 16px;
    color: gray;
    vertical-align: top;
    position: relative;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
}

li.section:before {
    content: 'x';
    position: absolute;
    top: 2px;
    left: calc(50% - 15px);
    z-index: 1;
    width: 30px;
    height: 30px;
    color: white;
    border: 2px solid white;
    border-radius: 17px;
    line-height: 26px;
    background: gray;
}
.status-bar {
    height: 2px;
    background: gray;
    position: absolute;
    top: 50px;
    margin: 0 auto;
    width: 100%;
}
.current-status {
    height: 2px;
    width: 0;
    border-radius: 1px;
    background: #0d6efd;
}

@keyframes changeBackground {
    from {background: gray}
    to {background: #0d6efd}
}

li.section.visited:before {
    content: '\2714';
    animation: changeBackground .5s linear;
    animation-fill-mode: forwards;
}

li.section.visited.current:before {
    box-shadow: 0 0 0 2px #01a036;
}
.fakeCurrentStage{color: #01a036;}





.progressbar-container {
    padding: 10px;
  }
  
  .progressbar-wrapper {
    display: flex;
    align-items: center;
    position: relative;
  }
  
  .status-bar1 {
    position: absolute;
    top: 30%;
    transform: translateY(-30%);
    height: 4px;
    background-color: #ccc;
    width: 100%;
  }
  
  .current-status {
    height: 4px;
    background-color: #4caf50; /* Green */
    width: 0;
    transition: width 1s linear;
  }
  
  .checkpoint {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .checkpoint::after{border-bottom: solid 3px #01a036; background: #01a036;}
  
  .circle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #ccc;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
  }
  
  .stage-label {
    font-size: 11px;
    letter-spacing: 0;

  }
  
  .bg-green {
    background-color: #4caf50 !important;
    border-color: #4caf50 !important;
    color: white !important;
  }
  .bg-gray{background: #ccc;}
  
  .text-green {
    color: #4caf50 !important;
  }
  
  .text-gray {
    color: #757575 !important;
  }