.progress-tracker {
    display: flex;
    padding: 0;
    list-style: none;
}

.progress-step {
    flex: 1 1 0%;
    margin: 0;
    padding: 0;
    min-width: 24px;
}

.progress-step:last-child {
    flex-grow: 0;
}

.progress-step:last-child .progress-marker::after {
    display: none;
}

.progress-marker {
    display: block;
    position: relative;
}

.progress-marker_spot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
    background-color: #ffc631;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}

.progress-marker_spot--underlay {
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: rgba(255, 198, 49, 0.3);
    top: -10px;
    left: -10px;
    z-index: 2;
    transition: ease-in-out;
}

.progress-step.is-complete .progress-marker_spot--underlay {
    animation: 4.5s infinite pulse;
    width: 40px;
    height: 40px;
}

.progress-marker::after {
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    top: 10px;
    right: -10px;
    width: 100%;
    height: 1px;
    transition: background-color 0.6s, background-position 0.6s;
}

.progress-step .progress-marker {
    color: #a9a9a9;
}

.progress-step .progress-marker::after,
.progress-step .progress-marker::before {
    background-color: #b6b6b6;
}

.progress-step.is-active .progress-marker::before,
.progress-step.is-complete .progress-marker::after,
.progress-step.is-complete .progress-marker::before,
.progress-step.is-progress .progress-marker::after,
.progress-step.is-progress .progress-marker::before {
    background-color: #ffc631;
}

.progress-step:hover .progress-marker::before {
    background-color: #56adf5;
}

.progress-tracker--vertical {
    flex-direction: column;
}

.progress-tracker--vertical .progress-step {
    display: flex;
    flex: 1 1 auto;
}

.progress-tracker--vertical .progress-marker::after {
    right: auto;
    top: 0;
    left: 10px;
    width: 1px;
    height: 100%;
}

.process_header {
    max-width: 376px;
}

.process_text {
    max-width: 520px;
    margin: 30px 0 40px;
    color: #e9e6e6;
}

.process_steps {
    padding-right: 15px;
}

.process_steps-step {
    position: relative;
}

.process_steps-step_wrapper {
    margin-left: 20px;
    padding-left: 20px;
}

.process_steps-step:last-of-type .description {
    padding-bottom: 0;
}

.process_steps-step .title {
    margin-bottom: 10px;
}

.process_steps-step .description {
    padding-bottom: 30px;
}

html[dir='rtl'] .process_steps {
    padding-left: 15px;
    padding-right: 0;
}

html[dir='rtl'] .process_steps-step .progress-marker_spot {
    left: auto;
    right: 0;
}

html[dir='rtl'] .process_steps-step .progress-marker_spot--underlay {
    left: auto;
    right: -10px;
}

html[dir='rtl'] .process_steps-step_wrapper {
    margin-right: 20px;
    padding-right: 20px;
}

@media screen and (min-width: 1023.98px) {
    .process_header,
    .process_text {
        margin: 0;
    }

    .process_container {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
    }

    .process_fluid {
        position: relative;
    }

    .process_fluid::before {
        content: '';
        width: 100%;
        height: 1px;
        position: absolute;
        left: 0;
        top: 10px;
        background: #a9a9a9;
    }

    .process_steps {
        padding-right: 0;
        margin-top: 60px;
    }

    .process_steps-step {
        flex: unset;
    }

    .process_steps-step_wrapper {
        margin-left: 0;
        padding-left: 10px;
        margin-top: 60px;
        max-width: 298px;
        margin-right: 32px;
    }

    .process_steps-step:last-of-type {
        margin-bottom: 0;
    }

    .process_steps-step .description {
        padding-bottom: 0;
    }

    html[dir='rtl'] .process_steps {
        padding-left: 0;
    }

    html[dir='rtl'] .process_steps-step_wrapper {
        margin-right: 0;
        padding-right: 10px;
        margin-left: 32px;
    }
}
