.timeline-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.timeline-steps .timeline-step {
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 1.5rem 1rem 0.8rem
}

@media (min-width:768px) {
    .timeline-steps .timeline-step:not(:last-child):after {
        content: "";
        display: block;
        border-top: .25rem dotted #c0c0c0;
        width: 3.46rem;
        position: absolute;
        left: 6.5rem;
        top: .3125rem
    }
    .timeline-steps .timeline-step:not(:first-child):before {
        content: "";
        display: block;
        border-top: .25rem dotted #c0c0c0;
        width: 3.8125rem;
        position: absolute;
        right: 6.5rem;
        top: .3125rem
    }
}

.timeline-steps .timeline-content {
    width: 9rem;
    text-align: center
}

.timeline-steps .timeline-content .inner-circle {
    border-radius: 1.5rem;
    height: .5rem;
    width: .5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #c0c0c0
}

.timeline-steps .timeline-content .inner-circle:before {
    content: "";
    background-color: #c0c0c0;
    display: inline-block;
    height: 1.5rem;
    width: 1.5rem;
    min-width: 1.5rem;
    border-radius: 3.125rem;
    opacity: .5
}

.timeline-content p {
    color: var(--secondary);
}

.step-success .p-status {
    color: var(--teal) !important;
}

.step-success .p-desc {
    color: var(--dark) !important;
}

.step-success .inner-circle, .step-success .inner-circle:before {
    background-color: var(--teal) !important;
}