.title-timeline {
    position: relative;
    margin-top: 30px
}
.title-timeline::before {
    content: "";
    width: calc(100% - 34px);
    height: 1px;
    border-top: 1px solid rgb(230, 235, 241);
    position: absolute;
    top: -15px;
    left: 17px;
}
.timeline-delivery {
    position: relative;
    margin: 16px 0;
    overflow: hidden;
    --dateTime: 180px;
    padding: 0 10px
}

.timeline-delivery::after {
    content: "";
    width: 1px;
    height: calc(100% - 36px);
    display: block;
    position: absolute;
    bottom: 26px;
    left: calc(var(--dateTime) + 38px);
    background-color: #ccc;
}

.step-timeline {
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: 0 8px;
    grid-gap: 12px;
    gap: 12px;
    padding-bottom: 16px
}

.date-time {
    color: rgba(0,0,0,.8);
    font-size: 14px;
    width: var(--dateTime);
    display: flex;
    justify-content: space-between;
    align-items: center
}

.date-time .date {
    min-width: 80px
}

.date-time .time {
    font-size: 14px
}

.item-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: calc(100% - var(--dateTime));
    font-size: 14px;
    position: relative
}

.icon-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 20px;
    border: 2px solid #32b53b;
    padding: 2px;
    background: #fff;
    border-radius: 100%;
    z-index: 2;
    flex-shrink: 0
}

.icon-timeline .img-timeline {
    position: relative;
    width: 100%;
    z-index: 2
}

.content-timeline {
    min-width: 0;
    padding-left: 24px
}

.content-timeline p {
    word-wrap: break-word;
    line-height: 20px;
    margin: 1px 0 8px
}

.content-timeline p.title {
    font-weight: 400;
    margin-bottom: -2px
}

.name-company {
    padding: 0 0 4px;
}

.shipping-code {
    padding: 0 0 10px;
}

.name-company span {
    font-weight: 500;
    color: var(--pr-color-secondary);
    font-size: 16px;
}

.shipping-code a {
    font-weight: 500;
    color: var(--pr-color-secondary);
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    grid-gap: 6px;
}

.step-timeline:not(:first-child) .icon-timeline img {
    filter: grayscale(1);
}
.step-timeline:not(:first-child) .icon-timeline {
    border-color: #ccc;
}

@media(max-width: 767px) {
    .timeline-delivery {
        --dateTime: 85px;
        padding: 0 20px
    }

    .date-time {
        display: block
    }

    .date-time .date {
        display: block
    }

    .icon-timeline {
        flex-shrink: 0
    }

    .timeline-delivery::after {
        left: calc(var(--dateTime) + 38px)
    }

    .step-timeline {
        padding: 4px 0
    }
}
