
    .timeline-container {
    position: relative;
    padding-left: 20px;
    margin-top: 2rem;
    background-image: url(../image/Progress_bar_dash1.png);
    background-repeat: repeat-y;
    background-size: 12px;
    background-position: 14px;   
    
    
}

    .timeline-line {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 18px;
      width: 4px;
      /* background: #dee2e6; */
      z-index: 0;
     
      
    }

    .timeline-progress {
    position: absolute;
    left: 18px;
    width: 4px;
    background: #77BD5E;
    z-index: 1;
    transition: height 0.3s ease;
}

    .timeline-step {
      position: relative;
      margin-bottom: 4rem;
      cursor: pointer;
    
      
    }


    .timeline-dot {
    position: absolute;
    left: -17px;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid #000000;
    z-index: 2;
    transition: background 0.3s;
    display: inline-flex
;
    align-content: center;
    justify-content: center;
    font-weight: 600;
}

    .timeline-step.active .timeline-dot {
    background-color: #fff;
    width: 32px;
    height: 32px;
    border: 2px solid #97291E;
    border-radius: 40px;
}

.progress-icon {
    position: absolute;
    left: 8px;
    font-size: 18px;
    color: #FF6600;
    z-index: 3;
    transition: top 0.3s ease, opacity 0.3s ease;
    height: 24px;
    width: 24px;
    border-radius: 50px;
    border: 1px solid #FF6600;
    background-color: #FFE7D8;
    align-items: center;
    display: inline-flex;
    justify-content: center;
}

    @media (max-width: 768px) {
      .timeline-container {
        padding-left: 20px;
      }

      .timeline-line,
      .timeline-progress {
        left: 18px;
      }

      .timeline-dot {
        left: -17px;
      }
    }
