:root {
    --pft-line-color: #e0e0e0;
    --pft-line-width: 2px;
    --pft-line-style: solid;
}

.pft-container-956fbc87 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    width: 100%;
}

.pft-step {
    display: flex;
    position: relative;
    flex: 1;
    min-width: 200px;
    align-items: center;
}

.pft-visual-area {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.pft-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #fff;
    border: 2px solid #ccc;
    z-index: 2;
    position: relative;
}

.pft-icon-shape-circle .pft-icon-wrapper { border-radius: 50%; }
.pft-icon-shape-rounded .pft-icon-wrapper { border-radius: 15px; }
.pft-icon-shape-square .pft-icon-wrapper { border-radius: 0; }

.pft-number {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--pft-line-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    z-index: 3;
}

.pft-show-number-yes .pft-number { display: flex; }
.pft-show-number-no .pft-number { display: none; }

.pft-content-area {
    padding: 15px;
    flex: 1;
}

.pft-title {
    margin: 0 0 10px 0;
}

.pft-desc {
    margin: 0;
}

/* Connecting Line */
.pft-step::after {
    content: "";
    position: absolute;
    background: transparent;
    z-index: 1;
}

/* Layouts */
.pft-desktop-layout-horizontal .pft-container-956fbc87 {
    flex-direction: row;
}
.pft-desktop-layout-horizontal .pft-step {
    flex-direction: column;
    text-align: center;
}
.pft-desktop-layout-horizontal .pft-step::after {
    top: 40px;
    left: 50%;
    width: 100%;
    border-top: var(--pft-line-width) var(--pft-line-style) var(--pft-line-color);
}
.pft-desktop-layout-horizontal .pft-step:last-child::after {
    display: none;
}
.pft-desktop-layout-horizontal .pft-number {
    top: -10px;
    right: -10px;
}

/* Vertical / Mobile Layout Overrides */
@media (max-width: 767px) {
    .pft-mobile-layout-vertical .pft-container-956fbc87 {
        flex-direction: column !important;
    }
    .pft-mobile-layout-vertical .pft-step {
        flex-direction: row !important;
        text-align: left !important;
    }
    .pft-mobile-layout-vertical .pft-step::after {
        left: 40px !important;
        top: 50% !important;
        height: 100% !important;
        width: 0 !important;
        border-top: none !important;
        border-left: var(--pft-line-width) var(--pft-line-style) var(--pft-line-color) !important;
    }
    .pft-mobile-layout-vertical .pft-number {
        top: auto !important;
        bottom: -15px !important;
        left: 25px !important;
    }
}
