.order__timeline__status{
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    position: relative;
    justify-content: space-between;
    overflow-x: auto;

}

.order__timeline__status-li{
    padding: 8px;
    box-sizing: border-box;
    text-align: center;
    position: relative;
    padding-top: 20px;
}
.order__timeline__status--icon{
    font-size: 32px;

}
.order__timeline__status--label{
    font-size:  14px;
    font-family: var(--app-default-font-2);
    max-width: 100px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}

.order__timeline__line{
    height: 2px;
    width: 100%;
    background-color: gray;
    position: absolute;
}
.order__timeline__status--dot{
    width: 15px;
    height: 15px;
    background-color: gray;
    border-radius: 150px;
    left: calc( 50% - 7px);
    position: absolute;
    top: 0px
}

.order__preview__img{
    width: 60px;
    height: 60px;
    background-position: center;
    background-size: cover;
    margin-left: auto;
    margin-right: auto;
}
.order__preview__price{
    font-size: 14px;
    font-family: var(--app-default-font-2);
    font-weight: 700;
    margin-top: 10px;
}
.order__preview__action{
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
}

.order__timeline__active .order__timeline__status--dot{
    background-color: rgb(3, 133, 94) !important;
}



.order__timeline__active  .order__timeline__status--icon{
 color: rgb(51, 153, 119);
}
.order__timeline__active  .order__timeline__status--label{
    color: rgb(0, 143, 124);
}