.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: 1rem
    }

@media (min-width:768px) {
    .timeline-steps .timeline-step:not(:last-child):after {
        content: "";
        display: block;
        border-top: .25rem dotted lightgray;
        width: 3.46rem;
        position: absolute;
        left: 7.5rem;
        top: .3125rem
    }

    .timeline-steps .timeline-step:not(:first-child):before {
        content: "";
        display: block;
        border-top: .25rem dotted lightgray;
        width: 3.8125rem;
        position: absolute;
        right: 7.5rem;
        top: .3125rem
    }
}

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

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

        .timeline-steps .timeline-content .inner-circle:before {
            content: "";
            background-color: lightgray;
            display: inline-block;
            height: 3rem;
            width: 3rem;
            min-width: 3rem;
            border-radius: 6.25rem;
            opacity: .5
        }

.timeline-steps .timeline-step.past .timeline-content .inner-circle {
    background-color: gray;
}

    .timeline-steps .timeline-step.past .timeline-content .inner-circle:before {
        background-color: gray;
    }

.timeline-steps .timeline-step.past:after {
    border-color: gray;
}

.timeline-steps .timeline-step.past:before {
    border-color: gray;
}

.timeline-steps .timeline-step.active .timeline-content .inner-circle {
    background-color: var(--primary);
}

    .timeline-steps .timeline-step.active .timeline-content .inner-circle:before {
        background-color: var(--primary);
    }

.timeline-steps .timeline-step.active:after {
    border-color: lightgray;
}

.timeline-steps .timeline-step.active:before {
    border-color: gray;
}