/* Timeline Custom Properties */
.process-timeline-d50fc833-container {
    --ptl-line-color: #cbd5e1;
    --ptl-line-size: 2px;
    --ptl-marker-size: 60px;
    --ptl-spacing: 15px; /* applied dynamically as padding or margin */
    position: relative;
    width: 100%;
}

.process-timeline-d50fc833-marker {
    width: var(--ptl-marker-size);
    height: var(--ptl-marker-size);
    border-radius: 50%;
    background-color: #3b9db9;
    color: #fff;
    font-weight: bold;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin: 0;
    z-index: 2;
    position: relative;
    flex-shrink: 0;
}

.process-timeline-d50fc833-marker svg {
    width: 24px;
    height: auto;
    fill: currentColor;
}

.process-timeline-d50fc833-item {
    position: relative;
    z-index: 1;
}

.process-timeline-d50fc833-content {
    background: transparent;
}
.process-timeline-d50fc833-title {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a2b3c;
}
.process-timeline-d50fc833-desc {
    color: #7a8b9c;
    font-size: 15px;
    line-height: 1.6;
}

/* ------------------- CSS LAYOUT MIXINS ------------------- */
/* These classes are applied independently by Elementor Breakpoints */

/* Horizontal Layout CSS Rules */
.layout-horizontal {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: calc(var(--ptl-marker-size) + 20px);
}
.layout-horizontal::before {
    content: '';
    position: absolute;
    top: calc(var(--ptl-marker-size) / 2);
    left: 10%;
    right: 10%;
    height: var(--ptl-line-size);
    background-color: var(--ptl-line-color);
    z-index: 0;
}
.layout-horizontal .process-timeline-d50fc833-item {
    flex: 1;
    padding: 0 var(--ptl-spacing);
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.layout-horizontal .process-timeline-d50fc833-marker-wrapper {
    position: absolute;
    top: calc( (var(--ptl-marker-size) * -1) - 20px );
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff; /* cuts line */
    padding: 0 10px;
    z-index: 1;
}


/* Vertical Layout CSS Rules */
.layout-vertical {
    display: flex;
    flex-direction: column;
    padding-left: calc(var(--ptl-marker-size) / 2);
    padding-top: 0;
}
.layout-vertical::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: var(--ptl-line-size);
    background-color: var(--ptl-line-color);
    transform: translateX(-50%);
    z-index: 0;
    height: 100%;
}
.layout-vertical .process-timeline-d50fc833-item {
    padding: 0 0 0 calc( (var(--ptl-marker-size) / 2) + 20px );
    margin-bottom: var(--ptl-spacing);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
}
.layout-vertical .process-timeline-d50fc833-item:last-child {
    margin-bottom: 0;
}
.layout-vertical .process-timeline-d50fc833-marker-wrapper {
    position: absolute;
    left: calc( (var(--ptl-marker-size) / 2) * -1 );
    top: 0;
    transform: none;
    background-color: #fff;
    padding: 10px 0;
    z-index: 1;
}

/* ------------------- DESKTOP (Default: min-width 1025px) ------------------- */
.ptl-layout-desktop-horizontal {
    @extend .layout-horizontal;
    display: flex; flex-direction: row; justify-content: space-between; align-items: flex-start; padding-top: calc(var(--ptl-marker-size) + 20px);
}
.ptl-layout-desktop-horizontal::before { content: ''; position: absolute; top: calc(var(--ptl-marker-size) / 2); left: 10%; right: 10%; height: var(--ptl-line-size); width: auto; background-color: var(--ptl-line-color); z-index: 0; }
.ptl-layout-desktop-horizontal .process-timeline-d50fc833-item { flex: 1; padding: 0 var(--ptl-spacing); margin-bottom: 0; display: flex; flex-direction: column; align-items: center; text-align: center; }
.ptl-layout-desktop-horizontal .process-timeline-d50fc833-marker-wrapper { position: absolute; top: calc( (var(--ptl-marker-size) * -1) - 20px ); left: 50%; transform: translateX(-50%); background-color: #fff; padding: 0 10px; z-index: 1; }

.ptl-layout-desktop-vertical {
    @extend .layout-vertical;
    display: flex; flex-direction: column; padding-left: calc(var(--ptl-marker-size) / 2); padding-top: 0;
}
.ptl-layout-desktop-vertical::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: var(--ptl-line-size); background-color: var(--ptl-line-color); transform: translateX(-50%); z-index: 0; height: 100%; }
.ptl-layout-desktop-vertical .process-timeline-d50fc833-item { padding: 0 0 0 calc( (var(--ptl-marker-size) / 2) + 20px ); margin-bottom: var(--ptl-spacing); display: flex; flex-direction: column; align-items: flex-start; text-align: left; width: 100%; }
.ptl-layout-desktop-vertical .process-timeline-d50fc833-item:last-child { margin-bottom: 0; }
.ptl-layout-desktop-vertical .process-timeline-d50fc833-marker-wrapper { position: absolute; left: calc( (var(--ptl-marker-size) / 2) * -1 ); top: 0; transform: none; background-color: #fff; padding: 10px 0; z-index: 1; }


/* ------------------- TABLET (max-width: 1024px) ------------------- */
@media (max-width: 1024px) {
    .ptl-layout-tablet-horizontal {
        display: flex; flex-direction: row; justify-content: space-between; align-items: flex-start; padding-top: calc(var(--ptl-marker-size) + 20px); padding-left: 0;
    }
    .ptl-layout-tablet-horizontal::before { content: ''; position: absolute; top: calc(var(--ptl-marker-size) / 2); left: 10%; right: 10%; bottom: auto; height: var(--ptl-line-size); width: auto; background-color: var(--ptl-line-color); z-index: 0; transform: none; }
    .ptl-layout-tablet-horizontal .process-timeline-d50fc833-item { flex: 1; padding: 0 var(--ptl-spacing); margin-bottom: 0; display: flex; flex-direction: column; align-items: center; text-align: center; }
    .ptl-layout-tablet-horizontal .process-timeline-d50fc833-marker-wrapper { position: absolute; top: calc( (var(--ptl-marker-size) * -1) - 20px ); left: 50%; transform: translateX(-50%); background-color: #fff; padding: 0 10px; z-index: 1; }

    .ptl-layout-tablet-vertical {
        display: flex; flex-direction: column; padding-left: calc(var(--ptl-marker-size) / 2); padding-top: 0;
    }
    .ptl-layout-tablet-vertical::before { content: ''; position: absolute; left: 0; right: auto; top: 0; bottom: 0; width: var(--ptl-line-size); height: auto; background-color: var(--ptl-line-color); transform: translateX(-50%); z-index: 0; }
    .ptl-layout-tablet-vertical .process-timeline-d50fc833-item { padding: 0 0 0 calc( (var(--ptl-marker-size) / 2) + 20px ); margin-bottom: var(--ptl-spacing); display: flex; flex-direction: column; align-items: flex-start; text-align: left; width: 100%; }
    .ptl-layout-tablet-vertical .process-timeline-d50fc833-item:last-child { margin-bottom: 0; }
    .ptl-layout-tablet-vertical .process-timeline-d50fc833-marker-wrapper { position: absolute; left: calc( (var(--ptl-marker-size) / 2) * -1 ); top: 0; transform: none; background-color: transparent; padding: 10px 0; z-index: 1; }
}


/* ------------------- MOBILE (max-width: 767px) ------------------- */
@media (max-width: 767px) {
    .ptl-layout-mobile-horizontal {
        display: flex; flex-direction: row; justify-content: space-between; align-items: flex-start; padding-top: calc(var(--ptl-marker-size) + 20px); padding-left: 0;
    }
    .ptl-layout-mobile-horizontal::before { content: ''; position: absolute; top: calc(var(--ptl-marker-size) / 2); left: 10%; right: 10%; bottom: auto; height: var(--ptl-line-size); width: auto; background-color: var(--ptl-line-color); z-index: 0; transform: none; }
    .ptl-layout-mobile-horizontal .process-timeline-d50fc833-item { flex: 1; padding: 0 var(--ptl-spacing); margin-bottom: 0; display: flex; flex-direction: column; align-items: center; text-align: center; }
    .ptl-layout-mobile-horizontal .process-timeline-d50fc833-marker-wrapper { position: absolute; top: calc( (var(--ptl-marker-size) * -1) - 20px ); left: 50%; transform: translateX(-50%); background-color: #fff; padding: 0 10px; z-index: 1; }

    .ptl-layout-mobile-vertical {
        display: flex; flex-direction: column; padding-left: calc(var(--ptl-marker-size) / 2); padding-top: 0;
    }
    .ptl-layout-mobile-vertical::before { content: ''; position: absolute; left: 0; right: auto; top: 0; bottom: 0; width: var(--ptl-line-size); height: auto; background-color: var(--ptl-line-color); transform: translateX(-50%); z-index: 0; }
    .ptl-layout-mobile-vertical .process-timeline-d50fc833-item { padding: 0 0 0 calc( (var(--ptl-marker-size) / 2) + 20px ); margin-bottom: var(--ptl-spacing); display: flex; flex-direction: column; align-items: flex-start; text-align: left; width: 100%; }
    .ptl-layout-mobile-vertical .process-timeline-d50fc833-item:last-child { margin-bottom: 0; }
    .ptl-layout-mobile-vertical .process-timeline-d50fc833-marker-wrapper { position: absolute; left: calc( (var(--ptl-marker-size) / 2) * -1 ); top: 0; transform: none; background-color: transparent; padding: 10px 0; z-index: 1; }
}