.status-bar {
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    position: relative;
   /* padding-left: 8%;*/ 
    margin-top:4%;
    /* margin: 10% 1% 10% 3%; */
    
}

.status-bar::before {
    content: '';
    position: absolute;
    top: 50%; 
    left: 16px; 
    transform: translateY(-50%); 
    height: 100%; 
    width: 2px;
    background: lightgrey;
    z-index: 0;
}

.status {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.status span {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 36px;
    width: 36px;
    padding: 6px;
    border-radius: 50%;
    border: 1px solid lightgrey;
    margin-right: 15px;
    border: 1px solid lightgrey;
    background-color: white;
    font-size: 14px;
    color: var(--imendBlue); /*#3b50df;*/
    position: relative;
    font-size: 32px;
    z-index: 2; /* Set circle above line */
}

.status.completed span {
    border: 1px solid lightgrey;
}

.status.current span {
    background: #fff;
    border: 1px solid black;
    color: black;
    
}

.status.current  {
    font-weight: bold;
}
