.jodo-process-timeline {
    --jodo-process-progress: 0;
    --jodo-process-line: rgba(124, 105, 99, 0.55);
    --jodo-process-progress-color: #C6A172;
    --jodo-process-line-width: 1px;
    --jodo-process-dot-opacity: 30%;
    --jodo-process-indent: 30px;

    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 120px 0 120px 30px;
    gap: 60px;
    box-sizing: border-box;
}

.jodo-process-timeline__base,
.jodo-process-timeline__progress {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: var(--jodo-process-line-width);
    pointer-events: none;
}

.jodo-process-timeline__base {
    background: var(--jodo-process-line);
    z-index: 1;
}

.jodo-process-timeline__progress {
    height: 100%;
    bottom: auto;
    background: var(--jodo-process-progress-color);
    transform: scaleY(var(--jodo-process-progress));
    transform-origin: top center;
    will-change: transform;
    z-index: 2;
}

.jodo-process-step {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}

.jodo-process-step__dot-wrap {
    position: absolute;
    left: calc(-1 * var(--jodo-process-indent));
    top: var(--jodo-process-dot-top, 0px);
    transform: translate(-50%, 0) scale(0.8);
    z-index: 4;
    line-height: 0;
    opacity: var(--jodo-process-dot-opacity);
    transition: opacity 0.45s ease, transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.jodo-process-step__dot,
.jodo-process-step__dot-fallback {
    display: block;
    width: 14px;
    height: 14px;
    max-width: none;
}

.jodo-process-step__dot {
    object-fit: contain;
}

.jodo-process-step__dot-fallback {
    border-radius: 50%;
    background:
        radial-gradient(circle at center, #7C6963 0 34%, transparent 36%),
        #F6F2EC;
    border: 1px solid rgba(124, 105, 99, 0.35);
    box-sizing: border-box;
}

.jodo-process-step__content {
    width: 100%;
    max-width: 470px;
}

.jodo-process-step__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    width: fit-content;
    margin: 0 0 8px 0;
    padding: 4px 10px 4px 8px;
    border-radius: 100px;
    background: #fff;
    color: #5F5A56;
    font-family: "Switzer Variable", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.12px;
}

.jodo-process-step__eyebrow::before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    flex: 0 0 4px;
    border-radius: 50%;
    background: #CBBBA1;
}


.jodo-process-step__label-button-wrap,
.jodo-process-step__label-template {
    width: fit-content;
    max-width: 100%;
    margin: 0 0 8px 0;
}

.jodo-process-step__label-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    max-width: 100%;
    padding: 8px 14px;
    border-radius: 100px;
    background: #fff;
    color: #5F5A56;
    text-decoration: none;
    border-style: solid;
    border-width: 0;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
    font-family: "Switzer Variable", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
}

.jodo-process-step__label-button:hover,
.jodo-process-step__label-button:focus {
    text-decoration: none;
}

.jodo-process-step__label-button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    color: currentColor;
}

.jodo-process-step__label-button-icon i,
.jodo-process-step__label-button-icon svg {
    color: currentColor;
    fill: currentColor;
}

.jodo-process-step__label-button-icon svg {
    width: 1em;
    height: 1em;
}

.jodo-process-step__title {
    margin: 0 0 10px 0;
    padding: 0;
    color: #232221;
    font-family: "Switzer Variable", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.2px;
}

.jodo-process-step__text {
    width: 100%;
    margin: 0;
    padding: 0;
    color: #5F5A56;
    font-family: "Switzer Variable", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.14px;
}

.jodo-process-step__eyebrow,
.jodo-process-step__label-button-wrap,
.jodo-process-step__label-template,
.jodo-process-step__title,
.jodo-process-step__text {
    opacity: 0;
    filter: blur(3px);
    transform: translateY(18px);
    transition:
        opacity 0.55s ease,
        filter 0.55s ease,
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.jodo-process-step__title {
    transition-delay: 0.06s;
}

.jodo-process-step__text {
    transition-delay: 0.12s;
}

.jodo-process-step.is-active .jodo-process-step__dot-wrap {
    opacity: 1;
    transform: translate(-50%, 0) scale(1.05);
}

.jodo-process-step.is-active .jodo-process-step__eyebrow,
.jodo-process-step.is-active .jodo-process-step__label-button-wrap,
.jodo-process-step.is-active .jodo-process-step__label-template,
.jodo-process-step.is-active .jodo-process-step__title,
.jodo-process-step.is-active .jodo-process-step__text,
.jodo-process-timeline--no-animation .jodo-process-step__eyebrow,
.jodo-process-timeline--no-animation .jodo-process-step__label-button-wrap,
.jodo-process-timeline--no-animation .jodo-process-step__label-template,
.jodo-process-timeline--no-animation .jodo-process-step__title,
.jodo-process-timeline--no-animation .jodo-process-step__text {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.jodo-process-timeline--no-animation .jodo-process-step__dot-wrap {
    opacity: 1;
}

.jodo-process-timeline--no-animation .jodo-process-timeline__progress {
    transform: scaleY(1);
}

.elementor-editor-active .jodo-process-step__dot-wrap,
.elementor-editor-active .jodo-process-step__eyebrow,
.elementor-editor-active .jodo-process-step__label-button-wrap,
.elementor-editor-active .jodo-process-step__label-template,
.elementor-editor-active .jodo-process-step__title,
.elementor-editor-active .jodo-process-step__text {
    opacity: 1;
    filter: none;
    transform: none;
}

.elementor-editor-active .jodo-process-timeline__progress {
    transform: scaleY(1);
}

@media (max-width: 1024px) {
    .jodo-process-timeline {
        --jodo-process-indent: 30px;
        padding: 80px 0 80px 30px;
        gap: 50px;
    }
}

@media (max-width: 767px) {
    .jodo-process-timeline {
        --jodo-process-indent: 24px;
        padding: 60px 0 60px 24px;
        gap: 48px;
    }

    .jodo-process-step__content {
        max-width: none;
    }

    .jodo-process-step__title {
        font-size: 19px;
    }

    .jodo-process-step__text {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    .jodo-process-step__dot-wrap,
    .jodo-process-step__eyebrow,
    .jodo-process-step__label-button-wrap,
    .jodo-process-step__label-template,
    .jodo-process-step__title,
    .jodo-process-step__text,
    .jodo-process-timeline__progress {
        transition: none !important;
    }
}
