
.eim-portal-timeline-container{
    text-align: center;
    margin: auto;
    width: 60%;
    padding: 20px;
}

.eim-portal-timeline-progress-container{
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
    max-width: 100%;
    margin-top:30px;
    width: 850px;
}

.eim-portal-timeline-progress-container::before{
    content: "";
    background-color: var(--line-border-empty);
    position: absolute;
    top:50%;
    left:0;
    transform:translateY(-50%);
    height: 4px;
    width: 100%;
    z-index: -1;
    transition: 0.4s ease;
}

.eim-portal-timeline-progress{
    background-color: var(--line-border-fill);
    position: absolute;
    top:50%;
    left:0;
    transform:translateY(-50%);
    height: 4px;
    width: 0%; /*This is responsible for the line indicator*/ 
    z-index: -1;
    transition: 0.4s ease;
}


.eim-portal-timeline-circle{
    background-color:var(--white-base);
    color:#999;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    border:3px solid #cdcdcd;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s ease;
}

.eim-portal-timeline-circle::after{
    content: attr(data-title);
    position: absolute;
    top:calc(100% + 0.5rem);
    font-size: 13px;
    color:var(--line-border-fill);
}

.eim-portal-timeline-circle-active{
    border-color: var(--line-border-fill);

}

.eim-portal-timeline-icon{
    color:var(--line-border-fill);
}

.btn-add-goods{
    border: none;
    background: none;
    color: var(--line-border-fill);
}

.hidden{
display:none;
}
/* Small devices (tablets, 768px and up) */
@media (min-width:280px) and (max-width: 768px) { 
  
    .col-md-9{
       padding-left:0px !important;
       padding-right: 0px !important;
    }

    .eim-portal-timeline-progress-container{
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
    max-width: 60%;
 }
.eim-portal-timeline-progress{
    position: absolute;
    top:50%;
    left:0;
    transform:translateY(-50%);
    height: 4px;
    width: 0%; /*This is responsible for the line indicator*/ 
    z-index: -1;
    transition: 0.4s ease;
}

.eim-portal-timeline-progress-container::before{
    content: "";
    position: absolute;
    top:50%;
    left:0;
    transform:translateY(-50%);
    height: 4px;
    width: 100%;
    z-index: -1;
    transition: 0.4s ease;
}
}




