.timeline_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.timeline_steps {
    max-width: 300px;
    margin: 0 auto;
}

.timeline_step {
    display: flex;
    position: relative;
    margin-top: 4px;
}

    .timeline_step:not(:last-child) {
        border-bottom: dashed 2px #007ea7;
        border-bottom: dashed 2px rgba(0, 126, 167, .2);
    }

    .timeline_step:after {
        content: "";
        position: absolute;
        left: 144px;
        top: 40px;
        height: 0;
        width: 2px;
        background-color: #007EA7;
    }

    .timeline_step .timeline_info {
        padding: 0 0 15px;
        width: 100%;
    }

    .timeline_step .timeline_info_left {
        padding-right: 10px;
        width: 125px;
        max-width: 125px;
        min-width: 125px;
    }


.timeline_info_left .timeline_title {
    font-size: 20px;
    font-weight: 600;
    margin: 10px 0 0 0;
    color: #007EA7;
    white-space: pre-line;
    text-align: right;
}

.timeline_info_left .timeline_subtitle {
    font-size: 18px;
    margin: 0;
    color: #007EA7;
    white-space: pre-line;
    text-align: right;
    font-style: italic;
}

.timeline_info .timeline_title {
    font-size: 20px;
    /*font-weight: 600;*/
    margin: 10px 0 0;
    color: #007EA7;
    white-space: pre-line;
}

.timeline_info .timeline_subtitle {
    font-size: 16px;
    margin: 0;
    color: #007EA7;
    white-space: pre-line;
}

.timeline_step .timeline_text {
    font-size: 12px;
    color: #007ea7;
    color: rgba(0, 126, 167, .7);
    padding-bottom: 0;
    margin: 0;
    white-space: pre-line;
    font-style: italic;
    text-decoration: underline wavy;
    text-underline-offset: 4px;
    line-height: 1.8;
}

.timeline_step:not(:last-child):after {
    height: calc(100% - 32px);
}

.timeline_number {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border-radius: 50%;
    border: 2px solid #007EA7;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #007EA7;
    font-size: 15px;
    font-weight: 600;
    margin-right: 14px;
    box-shadow: 0px 4px #007ea7;
    box-shadow: 0px 4px rgb(0 126 167 / 40%);
    margin-top: 2px;
}

    .timeline_number.completed {
        background-color: #007EA7;
    }

    .timeline_number svg {
        width: 16px;
        height: 16px;
        object-fit: contain;
    }

        .timeline_number svg path {
            fill: #007EA7;
        }

    .timeline_number .fa-play {
        padding-left: 5px;
    }
