.section-checkout-progress {
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    padding-top: 45px;
}

.timeline {
    list-style-type: none;
    padding: 0;
    width: 100%;
    text-align: center;
}

.timeline-list-item {
    display: inline-block;
    position: relative;
    margin: 0 -5px;
    vertical-align: top;
    transition: all 200ms ease-in;
    max-width: 30%;
    width: 100%;
}

.timeline::before {
    border-radius: 0.25rem;
    background-color: #ffffff;
    bottom: 0;
    content: "";
    left: 31px;
    margin: 0;
    position: absolute;
    top: 0;
    width: 4px;
}

.timeline-list-item:after,
.timeline-list-item:before {
    content: "";
    width: 50%;
    position: absolute;
    top: 0;
    right: auto;
    height: 5px;
    background-color: #d6dce0;
    border-radius: 50px;
}

.timeline-list-item:before {
    width: 100%;
    position: absolute;
}

.timeline-list-item:first-child::after,
.timeline-list-item:last-child::before,
.timeline-list-item:last-child::after {
    display: none;
}

.status {
    padding: 0;
    margin-top: 30px;
    color: #999;
}

.timeline-list-item .status:before {
    content: attr(data-content);
    width: 40px;
    height: 40px;
    display: inline-block;
    background-color: #ddd;
    border-radius: 25px;
    border: 0;
    position: absolute;
    top: -20px;
    z-index: 1;
    left: 0;
    right: 0;
    margin: auto;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
    transition: all 200ms ease-in;
    font-size: 18px;
    line-height: 40px;
    font-weight: bold;
    box-shadow: 0 0 0px 2px #ddd;
}
.timeline-list-item .status .card {
    position: relative;
}

.timeline-list-item .status .card:before {
    top: -7px;
    border-bottom: 7px solid #e3e6f0;
}
.timeline-list-item.complete:after,
.timeline-list-item.complete:before {
    background-color: #00a9dd;
}
.timeline-list-item.active-status .status:before {
    box-shadow: 0 0 0px 2px #00a9dd;
    background-color: #ddd;
}
.timeline-list-item.complete .status:before {
    background-color: #00a9dd;
    box-shadow: 0 0 0px 2px #00a9dd;
    transition: all 200ms ease-in;
}
.timeline-list-item.complete .status {
    color: #00a9dd;
}
.timeline-list-item.active-status .status {
    color: #00a9dd;
    font-weight: bold;
}

.timeline-list-item.complete .status:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f00c";
    color: #fff;
    font-size: 14px;
}
