body.merchant-registration-page {
    min-height: 100vh;
    margin: 0;
}

/* Remove the click/focus “square” outline on header nav items (desktop + mobile) */
body.merchant-registration-page .header-wrap .navbar .nav-link:focus,
body.merchant-registration-page .header-wrap .navbar .nav-link:active,
body.merchant-registration-page .header-wrap .navbar .nav-link:focus-visible,
body.merchant-registration-page .header-wrap .navbar .nav-item:focus,
body.merchant-registration-page .header-wrap .navbar .nav-item:focus-within {
    outline: none !important;
    box-shadow: none !important;
}
body.merchant-registration-page .header-wrap .navbar .nav-link::-moz-focus-inner {
    border: 0;
}
body.merchant-registration-page .header-wrap .navbar .nav-link {
    -webkit-tap-highlight-color: transparent;
}

/* —— Merchant registration header: mobile nav (three bars + × fixed top-right) —— */
@media (max-width: 767px) {
    body.merchant-registration-page .header-wrap.style1 .header-bottom {
        position: sticky;
        top: 0;
        z-index: 1030;
        background: #fff;
        box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
    }
    body.merchant-registration-page .header-wrap.style1 .header-bottom .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    body.merchant-registration-page .header-wrap.style1 .header-bottom .navbar {
        position: relative;
        padding: 10px 52px 10px 0; /* reserve space so logo does not sit under fixed toggler */
        min-height: 52px;
        align-items: center;
    }
    body.merchant-registration-page .header-wrap.style1 .header-bottom .navbar-brand {
        margin-right: 0;
        z-index: 1;
    }
    /* Viewport-fixed control (icon stays top-right while scrolling) */
    body.merchant-registration-page .mo-merchant-nav-toggle {
        position: fixed;
        top: max(10px, env(safe-area-inset-top, 0px));
        right: max(10px, env(safe-area-inset-right, 0px));
        left: auto;
        bottom: auto;
        transform: none;
        margin: 0;
        width: 44px;
        height: 44px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        border-radius: 8px;
        background: #f3f4f6;
        box-shadow: none;
        z-index: 1040; /* above sticky header + open panel */
    }
    body.merchant-registration-page .mo-merchant-nav-toggle:focus {
        outline: 2px solid rgba(49, 53, 139, 0.35);
        outline-offset: 2px;
    }
    /* Three-bar menu (markup: <span class="bar d-inline-block"></span> × 3) */
    body.merchant-registration-page .mo-merchant-nav-toggle .mo-nav-bars {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 5px;
        width: 22px;
        height: 16px;
    }
    body.merchant-registration-page .mo-merchant-nav-toggle .mo-nav-bars .bar {
        width: 100%;
        height: 2px;
        margin: 0;
        vertical-align: middle;
        background-color: #111827;
        border-radius: 1px;
    }
    body.merchant-registration-page .mo-merchant-nav-toggle .mo-nav-close-icon {
        display: none;
        font-size: 32px;
        line-height: 1;
        font-weight: 300;
        color: #111827;
        margin-top: -2px;
    }
    body.merchant-registration-page .mo-merchant-nav-toggle[aria-expanded="true"] {
        background: #e5e7eb;
    }
    body.merchant-registration-page .mo-merchant-nav-toggle[aria-expanded="true"] .mo-nav-bars {
        display: none;
    }
    body.merchant-registration-page .mo-merchant-nav-toggle[aria-expanded="true"] .mo-nav-close-icon {
        display: block;
        color: #31358b;
    }
    /*
      Menu panel: make the OPEN state fixed and full-viewport width so the scrollbar
      sits on the far right edge of the screen (not inside the padded .container).
    */
    body.merchant-registration-page .header-wrap.style1 #merchantRegNavbar {
        flex-basis: 100%;
        width: 100%;
        margin-top: 8px;
        padding-top: 4px;
        border-top: 1px solid rgba(17, 24, 39, 0.08);
    }
    /* Apply fixed positioning during BOTH the transition (.collapsing) and open (.show) states
       to avoid the “appears centered then jumps left” behavior. */
    body.merchant-registration-page .header-wrap.style1 #merchantRegNavbar.collapsing,
    body.merchant-registration-page .header-wrap.style1 #merchantRegNavbar.collapse.show {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        /* start below the sticky header row */
        top: 56px;
        width: 100vw;
        max-width: none;
        margin: 0;
        padding: 8px 0 12px 0;
        background: #fff;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        z-index: 1035;
    }
    body.merchant-registration-page .header-wrap.style1 #merchantRegNavbar .navbar-nav {
        padding-bottom: 8px;
        /* Left aligned list with 20px gap from the screen edge */
        margin: 0;
        width: 100%;
        justify-content: flex-start;
        align-items: flex-start;
        padding-left: 20px;
        padding-right: 12px;
    }
    body.merchant-registration-page .header-wrap.style1 #merchantRegNavbar .nav-link {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    /* Remove square focus outline/border on tap/click for header menu items */
    body.merchant-registration-page .header-wrap.style1 #merchantRegNavbar .nav-link:focus,
    body.merchant-registration-page .header-wrap.style1 #merchantRegNavbar .nav-link:active,
    body.merchant-registration-page .header-wrap.style1 #merchantRegNavbar .nav-link:focus-visible {
        outline: none !important;
        box-shadow: none !important;
    }
    body.merchant-registration-page .header-wrap.style1 #merchantRegNavbar .nav-link::-moz-focus-inner {
        border: 0;
    }
    body.merchant-registration-page .header-wrap.style1 #merchantRegNavbar .nav-link {
        -webkit-tap-highlight-color: transparent;
    }
    body.merchant-registration-page .merchant-registration-main {
        padding: 1rem 0.75rem 2rem;
    }

    /* Menu open: show only the nav bar + expanded menu; hide the rest of the page */
    html.mo-nav-menu-open,
    body.merchant-registration-page.mo-nav-menu-open {
        overflow: hidden !important;
        height: 100%;
    }
    body.merchant-registration-page.mo-nav-menu-open .header-top,
    body.merchant-registration-page.mo-nav-menu-open .header-wrap.style1 .search-area,
    body.merchant-registration-page.mo-nav-menu-open .header-wrap.style1 > .container-fluid.p-0,
    body.merchant-registration-page.mo-nav-menu-open .merchant-registration-main,
    body.merchant-registration-page.mo-nav-menu-open footer.merchant-registration-footer {
        display: none !important;
    }
}

.merchant-registration-main {
    width: 100%;
    padding: 2rem 1rem 3rem;
    box-sizing: border-box;
    background-color: #f0f2f5;
}
::-webkit-scrollbar {
width: 8px;
}
/* Track */
::-webkit-scrollbar-track {
background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #888;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #555;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
.merchant-onboard-shell {
min-height: auto;
display: flex;
justify-content: center;
align-items: flex-start;
padding-top: 110px;
}

hr.full-width-line {
    border: 0;
    height: 1px;
    background: rgba(0, 146, 71, 0.25);
}
.merchant-onboard-shell .card {
height: auto;
min-height: 920px;
width: 100%;
max-width: 1120px;
background-color: #fff;
position: relative;
box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08), 0 2px 8px rgba(15, 23, 42, 0.04);
font-family: 'Poppins', sans-serif;
border-radius: 16px;
overflow: hidden;
}
.merchant-onboard-shell .card .form {
width: 100%;
min-height: 920px;
display: flex;
align-items: stretch;
}
.merchant-onboard-shell .card .left-side {
width: 24%;
min-width: 210px;
max-width: 270px;
flex-shrink: 0;
align-self: stretch;
background: #31358b;
/* Always span the full wizard column height (even when the right side grows taller) */
min-height: 920px;
height: auto;
border-top-left-radius: 16px;
border-bottom-left-radius: 16px;
padding: 32px 18px 36px;
box-sizing: border-box;
box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.08);
--mo-sidebar: #31358b;
--mo-connector: #4f6581;
}
.merchant-onboard-shell .left-heading {
    color: #fff;
}
.merchant-onboard-shell .left-heading h3 {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin: 0;
    color: #fff !important;
}
.merchant-onboard-shell .steps-content {
    margin-top: 20px;
    color: #fff;
}
.merchant-onboard-shell .steps-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.2;
    color: #fff !important;
}
.merchant-onboard-shell .steps-content h3 .step-number {
    color: #fff !important;
}
.merchant-onboard-shell .steps-content p {
    font-size: 0.8125rem;
    line-height: 1.5;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 400;
}
/* Classic vertical stepper (legacy layout): connector segments between numbered circles */
/* Reset Bootstrap’s .progress-bar rules (flex + overflow:hidden) — our step list is a <ul>, not a fill bar */
.merchant-onboard-shell ul.progress-bar.mo-stepper-classic {
    display: block;
    overflow: visible;
    white-space: normal;
    flex-direction: unset;
    justify-content: unset;
    align-items: unset;
    list-style: none;
    margin: 30px 0 0 0;
    padding: 0;
    counter-reset: mo-step 0;
    font-size: 13px;
    font-weight: 700;
}
.merchant-onboard-shell ul.progress-bar.mo-stepper-classic li {
    position: relative;
    margin: 34px 0 0 36px;
    padding: 0;
    counter-increment: mo-step 1;
    color: var(--mo-connector, #4f6581);
    display: flex;
    align-items: flex-start;
    min-height: 0;
}
.merchant-onboard-shell ul.progress-bar.mo-stepper-classic li:first-child {
    margin-top: 0;
}
.merchant-onboard-shell ul.progress-bar.mo-stepper-classic li::before {
    content: counter(mo-step);
    line-height: 25px;
    text-align: center;
    position: absolute;
    height: 25px;
    width: 25px;
    border: 1px solid var(--mo-connector, #4f6581);
    border-radius: 50%;
    left: -36px;
    top: -2px;
    z-index: 10;
    background-color: var(--mo-sidebar, #31358b);
    font-size: 12px;
    font-weight: 700;
    box-sizing: border-box;
}
.merchant-onboard-shell ul.progress-bar.mo-stepper-classic li::after {
    content: '';
    position: absolute;
    height: 90px;
    width: 2px;
    background-color: var(--mo-connector, #4f6581);
    z-index: 1;
    left: -24px;
    top: -70px;
}
.merchant-onboard-shell ul.progress-bar.mo-stepper-classic li:first-child::after {
    display: none;
}
.merchant-onboard-shell ul.progress-bar.mo-stepper-classic .mo-step-label {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    line-height: 1.35;
    padding-top: 1px;
}
.merchant-onboard-shell ul.progress-bar.mo-stepper-classic li.active,
.merchant-onboard-shell ul.progress-bar.mo-stepper-classic li.is-active {
    color: #fff;
}
.merchant-onboard-shell ul.progress-bar.mo-stepper-classic li.active::before,
.merchant-onboard-shell ul.progress-bar.mo-stepper-classic li.is-active::before {
    color: #fff;
    border-color: #fff;
    background-color: var(--mo-sidebar, #31358b);
}
.merchant-onboard-shell ul.progress-bar.mo-stepper-classic li.active::after,
.merchant-onboard-shell ul.progress-bar.mo-stepper-classic li.is-active::after {
    background-color: #fff;
}
.merchant-onboard-shell ul.progress-bar.mo-stepper-classic li.is-complete {
    color: rgba(255, 255, 255, 0.78);
}
.merchant-onboard-shell ul.progress-bar.mo-stepper-classic li.is-complete::before {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
    background-color: var(--mo-sidebar, #31358b);
}
.merchant-onboard-shell ul.progress-bar.mo-stepper-classic li.is-complete::after {
    background-color: #fff;
}
.merchant-onboard-shell ul.progress-bar.mo-stepper-classic li.is-upcoming {
    color: var(--mo-connector, #4f6581);
}
.merchant-onboard-shell ul.progress-bar.mo-stepper-classic li.is-upcoming::before {
    color: var(--mo-connector, #4f6581);
    border-color: var(--mo-connector, #4f6581);
    background-color: var(--mo-sidebar, #31358b);
}
.merchant-onboard-shell ul.progress-bar.mo-stepper-classic li.is-upcoming::after {
    background-color: var(--mo-connector, #4f6581);
}
.merchant-onboard-shell .card .right-side {
    flex: 1;
    min-width: 0;
    width: auto;
    background-color: #fff;
    height: 100%;
    border-radius: 0 16px 16px 0;
    overflow: hidden;
}
/* Step header: logo row + title (matches reference layout) */
.merchant-onboard-shell .mo-step-brand-row {
    margin: 0 0 8px 0;
}
.merchant-onboard-shell .mo-step-logo {
    display: block;
    max-width: 148px;
    height: auto;
}
.merchant-onboard-shell .main > img:first-child {
    display: block;
    max-width: 148px;
    height: auto;
    margin: 0 0 12px 0;
}
.merchant-onboard-shell .text.mo-step-intro {
    margin-top: 12px;
}
.merchant-onboard-shell .text.mo-step-intro h2 {
    font-size: 1.625rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 6px 0;
    letter-spacing: -0.02em;
}
.merchant-onboard-shell .text.mo-step-intro .mo-step-subtitle,
.merchant-onboard-shell .mo-step-subtitle {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}
/*right-side-start — scoped so Bootstrap .active / layout are not broken */
.merchant-onboard-shell .main {
    display: none;
    padding: 28px 32px 36px;
    box-sizing: border-box;
    height: auto;
    overflow: visible;
}
.merchant-onboard-shell .main.active {
display: block;
}
.merchant-onboard-shell .main small {
display: flex;
justify-content: center;
align-items: center;
margin-top: 2px;
height: 30px;
width: 30px;
background-color: #ccc;
border-radius: 50%;
color: yellow;
font-size: 19px;
}
.merchant-onboard-shell .text {
    margin-top: 20px;
}
.merchant-onboard-shell .main .text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 6px 0;
}
.merchant-onboard-shell .congrats {
text-align: center;
}
.merchant-onboard-shell .text p {
    margin-top: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}
.merchant-onboard-shell .input-text {
margin: 14px 0;
display: flex;
gap: 20px;
flex-wrap: wrap;
}
.merchant-onboard-shell .input-text .input-div {
flex: 1 1 260px;
min-width: min(260px, 100%);
max-width: 100%;
position: relative;
/* Reserve space for the floating label so it never looks clipped */
padding-top: 10px;
}
.merchant-onboard-shell input[type="text"],
.merchant-onboard-shell input[type="tel"],
.merchant-onboard-shell input[type="email"],
.merchant-onboard-shell input[type="number"] {
    width: 100%;
    height: 44px;
    outline: 0;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    box-sizing: border-box;
    padding: 0 12px;
    font-size: 0.875rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.merchant-onboard-shell input[type="text"]:focus,
.merchant-onboard-shell input[type="tel"]:focus,
.merchant-onboard-shell input[type="email"]:focus,
.merchant-onboard-shell input[type="number"]:focus {
    border-color: #31358b;
    box-shadow: 0 0 0 3px rgba(49, 53, 139, 0.12);
}
.merchant-onboard-shell select {
    width: 100%;
    height: 44px;
    outline: 0;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    box-sizing: border-box;
    padding: 0 12px;
    font-size: 0.875rem;
    background-color: #fff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.merchant-onboard-shell select:focus {
    border-color: #31358b;
    box-shadow: 0 0 0 3px rgba(49, 53, 139, 0.12);
}
.merchant-onboard-shell .input-text .input-div span {
position: absolute;
top: -8px;
left: 10px;
font-size: 0.6875rem; /* 11px-ish */
font-weight: 600;
line-height: 1;
color: #374151;
background: #fff;
padding: 0 6px;
pointer-events: none;
transition: transform 0.15s ease, opacity 0.15s ease;
}
.merchant-onboard-shell .input-div input:focus ~ span, .merchant-onboard-shell .input-div input:valid ~ span {
opacity: 1;
}
/* (Removed conflicting duplicate rule that forced negative top on all labels) */

/* Ensure fields never overflow due to long text or zoom */
.merchant-onboard-shell .input-text .input-div input,
.merchant-onboard-shell .input-text .input-div select {
    min-width: 0;
}
.merchant-onboard-shell .buttons button {
    height: 44px;
    min-width: 132px;
    padding: 0 22px;
    border: none;
    border-radius: 8px;
    background-color: #31358b;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.15s ease, transform 0.1s ease;
}
.merchant-onboard-shell .buttons button:hover {
    background-color: #262a70;
}
.merchant-onboard-shell .buttons button:active {
    transform: translateY(1px);
}
.merchant-onboard-shell .buttons {
    margin-top: 8px;
    padding-bottom: 8px;
}
/* Next-only rows: align primary action to the right */
.merchant-onboard-shell .buttons:not(.button_space) {
    display: flex;
    justify-content: flex-end;
}
.merchant-onboard-shell .button_space {
display: flex;
gap: 20px;
justify-content: space-between;
}
.merchant-onboard-shell .button_space .next_button {
    margin-left: auto;
}
.merchant-onboard-shell .button_space button:nth-child(1) {
    background-color: #fff;
    color: #374151;
    border: 1px solid #dee2e6;
}
.merchant-onboard-shell .button_space button:nth-child(1):hover {
    background-color: #f8f9fa;
    border-color: #cbd5e1;
}
.user_card {
margin-top: 20px;
margin-bottom: 40px;
height: 200px;
width: 100%;
border: 1px solid #c7d3d9;
border-radius: 10px;
display: flex;
overflow: hidden;
position: relative;
box-sizing: border-box;
}
.user_card span {
height: 80px;
width: 100%;
background-color: #dfeeff;
}
.circle {
position: absolute;
top: 40px;
left: 60px;
}
.circle span {
height: 70px;
width: 70px;
background-color: #fff;
display: flex;
justify-content: center;
align-items: center;
border: 2px solid #fff;
border-radius: 50%;
}
.circle span img {
width: 100%;
height: 100%;
border-radius: 50%;
object-fit: cover;
}
.social {
display: flex;
position: absolute;
top: 100px;
right: 10px;
}
.social span {
height: 30px;
width: 30px;
border-radius: 7px;
background-color: #fff;
border: 1px solid #cbd6dc;
display: flex;
justify-content: center;
align-items: center;
margin-left: 10px;
color: #cbd6dc;
}
.social span i {
cursor: pointer;
}
.heart {
color: red !important;
}
.share {
color: red !important;
}
.user_name {
position: absolute;
top: 110px;
margin: 10px;
padding: 0 30px;
display: flex;
flex-direction: column;
width: 100%;
}
.user_name h3 {
color: #4c5b68;
}
.detail {
/*margin-top:10px;*/
display: flex;
justify-content: space-between;
margin-right: 50px;
}
.detail p {
font-size: 12px;
font-weight: 700;
}
.detail p a {
text-decoration: none;
color: blue;
}
.checkmark__circle {
stroke-dasharray: 166;
stroke-dashoffset: 166;
stroke-width: 2;
stroke-miterlimit: 10;
stroke: #7ac142;
fill: none;
animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.checkmark {
width: 56px;
height: 56px;
border-radius: 50%;
display: block;
stroke-width: 2;
stroke: #fff;
stroke-miterlimit: 10;
margin: 10% auto;
box-shadow: inset 0px 0px 0px #7ac142;
animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}
.checkmark__check {
transform-origin: 50% 50%;
stroke-dasharray: 48;
stroke-dashoffset: 48;
animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}
@keyframes stroke {
100% {
stroke-dashoffset: 0;
}
}
@keyframes scale {
0%, 100% {
transform: none;
}
50% {
transform: scale3d(1.1, 1.1, 1);
}
}
@keyframes fill {
100% {
box-shadow: inset 0px 0px 0px 30px #7ac142;
}
}
.merchant-onboard-shell .warning {
border: 1px solid red !important;
}
/*right-side-end*/
@media (max-width: 750px) {
    .merchant-onboard-shell {
        min-height: auto;
        align-items: flex-start;
        padding-top: 24px;
    }
    .merchant-onboard-shell .card .form {
        display: flex;
        flex-direction: column;
        min-height: 0 !important; /* with card min-height reset, avoids flex/clipping hiding the stepper */
    }
    .merchant-onboard-shell .card {
        max-width: 100%;
        height: auto !important;
        min-height: 0 !important; /* drop desktop min-height on small screens */
        margin: 16px 0;
        border-radius: 12px;
    }
    .merchant-onboard-shell .card .right-side {
        width: 100%;
        border-radius: 0 0 12px 12px;
    }
    .merchant-onboard-shell .input-text {
        display: flex;
        flex-direction: column;
        gap: 2px;
        margin: 4px 0;
    }
    .merchant-onboard-shell .input-text .input-div {
        margin-top: 0;
        padding-top: 0; /* mobile uses normal labels (no floating) */
        display: flex;
        flex-direction: column;
        /* Column flex + flex:1 1 260px from desktop gives ~260px min height per field — reset */
        flex: 0 0 auto;
        min-height: 0;
        width: 100%;
        max-width: 100%;
    }

    /* Mobile: use normal labels (fix overlap/clipping on zoom/small screens) */
    .merchant-onboard-shell .input-text .input-div span {
        position: static;
        display: block;
        margin: 0 0 2px 2px;
        padding: 0;
        background: transparent;
        font-size: 0.8125rem;
        font-weight: 600;
        line-height: 1.2;
        color: #111827;
        opacity: 1;
        transform: none;
        order: -1; /* span comes after input in HTML; force above */
    }

    .merchant-onboard-shell .input-text .input-div input,
    .merchant-onboard-shell .input-text .input-div select {
        height: 46px;
        font-size: 0.9375rem;
    }

    .merchant-onboard-shell .example {
        font-size: 0.75rem;
        padding-left: 2px;
        margin: 2px 0 0 0;
        line-height: 1.35;
        order: 2;
    }

    /* Mobile: remove manual <br> spacing that creates huge gaps */
    .merchant-onboard-shell .main br,
    .merchant-onboard-shell .input-div br {
        display: none;
    }

    /* Mobile: buttons should never overflow and should be easy to tap */
    .merchant-onboard-shell .buttons,
    .merchant-onboard-shell .buttons:not(.button_space),
    .merchant-onboard-shell .button_space {
        display: flex;
        flex-direction: column;
        gap: 12px;
        justify-content: stretch;
        align-items: stretch;
    }

    .merchant-onboard-shell .buttons button {
        width: 100%;
        min-width: 0;
        height: 46px;
        font-size: 0.9375rem;
    }
    /* Mobile: show the sidebar stacked (always visible) */
    .merchant-onboard-shell .card .left-side {
        display: block;
        position: relative;
        top: auto;
        left: auto;
        height: auto;
        min-height: auto;
        width: 100%;
        min-width: 0;
        max-width: none;
        z-index: auto;
        transform: none;
        transition: none;
        border-radius: 12px 12px 0 0;
        padding: 24px 18px 22px;
        overflow: visible;
        box-shadow: none;

        /*
          Mobile glass effect (match web): keep the TOP part solid (no blur),
          and apply blur only to the lower portion where the step list sits.
        */
        background: #31358b;
        --mo-blur-start: 168px; /* tune where blur begins (below Step title/desc) */
    }
    /* Blur layer (only below --mo-blur-start) */
    .merchant-onboard-shell .card .left-side::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: var(--mo-blur-start, 168px);
        border-radius: inherit;
        background: rgba(49, 53, 139, 0.78);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        pointer-events: none;
    }
    /* Subtle highlight layer for nicer depth */
    .merchant-onboard-shell .card .left-side::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.10) 0%,
            rgba(255, 255, 255, 0.04) 22%,
            rgba(0, 0, 0, 0.10) 100%
        );
        pointer-events: none;
    }
    /* Ensure sidebar content renders above the blur overlay */
    .merchant-onboard-shell .card .left-side > * {
        position: relative;
        z-index: 1;
    }

    /* Mobile: compact the stepper so all 1–8 are visible */
    .merchant-onboard-shell ul.progress-bar.mo-stepper-classic {
        margin-top: 18px;
        font-size: 12px;
    }
    /* Mobile: match web-like emphasis (active bright, others dimmed) */
    .merchant-onboard-shell ul.progress-bar.mo-stepper-classic li,
    .merchant-onboard-shell ul.progress-bar.mo-stepper-classic li .mo-step-label {
        color: rgba(255, 255, 255, 0.35);
    }
    .merchant-onboard-shell ul.progress-bar.mo-stepper-classic li::before {
        border-color: rgba(255, 255, 255, 0.28);
        color: rgba(255, 255, 255, 0.45);
    }
    .merchant-onboard-shell ul.progress-bar.mo-stepper-classic li::after {
        background-color: rgba(255, 255, 255, 0.22);
    }
    .merchant-onboard-shell ul.progress-bar.mo-stepper-classic li.active,
    .merchant-onboard-shell ul.progress-bar.mo-stepper-classic li.is-active {
        color: #fff;
    }
    .merchant-onboard-shell ul.progress-bar.mo-stepper-classic li.active .mo-step-label,
    .merchant-onboard-shell ul.progress-bar.mo-stepper-classic li.is-active .mo-step-label {
        color: #fff;
    }
    .merchant-onboard-shell ul.progress-bar.mo-stepper-classic li.active::before,
    .merchant-onboard-shell ul.progress-bar.mo-stepper-classic li.is-active::before {
        border-color: rgba(255, 255, 255, 0.95);
        color: #fff;
    }
    .merchant-onboard-shell ul.progress-bar.mo-stepper-classic li.active::after,
    .merchant-onboard-shell ul.progress-bar.mo-stepper-classic li.is-active::after {
        background-color: rgba(255, 255, 255, 0.8);
    }
    .merchant-onboard-shell ul.progress-bar.mo-stepper-classic li.is-complete,
    .merchant-onboard-shell ul.progress-bar.mo-stepper-classic li.is-complete .mo-step-label {
        color: rgba(255, 255, 255, 0.55);
    }
    .merchant-onboard-shell ul.progress-bar.mo-stepper-classic li.is-complete::before {
        border-color: rgba(255, 255, 255, 0.5);
        color: rgba(255, 255, 255, 0.75);
    }
    .merchant-onboard-shell ul.progress-bar.mo-stepper-classic li.is-complete::after {
        background-color: rgba(255, 255, 255, 0.45);
    }
    .merchant-onboard-shell ul.progress-bar.mo-stepper-classic li.is-upcoming,
    .merchant-onboard-shell ul.progress-bar.mo-stepper-classic li.is-upcoming .mo-step-label {
        color: rgba(255, 255, 255, 0.28);
    }
    .merchant-onboard-shell ul.progress-bar.mo-stepper-classic li.is-upcoming::before {
        border-color: rgba(255, 255, 255, 0.25);
        color: rgba(255, 255, 255, 0.4);
    }
    .merchant-onboard-shell ul.progress-bar.mo-stepper-classic li.is-upcoming::after {
        background-color: rgba(255, 255, 255, 0.2);
    }
    .merchant-onboard-shell ul.progress-bar.mo-stepper-classic li {
        margin: 18px 0 0 34px;
    }
    .merchant-onboard-shell ul.progress-bar.mo-stepper-classic li::before {
        left: -34px;
    }
    .merchant-onboard-shell ul.progress-bar.mo-stepper-classic li::after {
        left: -22px;
        height: 54px;
        top: -44px;
    }
    .merchant-onboard-shell ul.progress-bar.mo-stepper-classic .mo-step-label {
        padding-top: 0;
        line-height: 1.25;
    }

    /* Overlay + toggle are not needed in stacked mode */
    .mo-sidebar-overlay {
        display: none !important;
    }
    .mo-mobile-steps-toggle {
        display: none !important;
    }
    .merchant-onboard-shell .main {
        padding: 20px 18px 28px;
    }
}

@media (max-width: 360px) {
    .merchant-onboard-shell .main {
        padding: 18px 14px 24px;
    }
    .merchant-onboard-shell .input-text {
        gap: 2px;
        margin: 4px 0;
    }
    .merchant-onboard-shell ul.progress-bar.mo-stepper-classic li {
        margin-top: 16px;
    }
    .merchant-onboard-shell ul.progress-bar.mo-stepper-classic li::after {
        height: 48px;
        top: -40px;
    }
}

/* Desktop: no toggle/overlay */
@media (min-width: 751px) {
    .mo-sidebar-overlay,
    .mo-mobile-steps-toggle {
        display: none !important;
    }
}
.subscription-table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
.subscription-table th, .subscription-table td {
padding: 10px;
border: 1px solid #ddd;
}
.subscription-table th {
background-color: #f2f2f2;
color: #333;
}
.subscription-table td {
text-align: center;
}
.subscription-container {
text-align: center;
}
.btnPlan {
text-align: center;
box-sizing: border-box;
color: white;
padding: 10px;
border-radius: 10px;
border-color: white;
background-color: #0075ff;
}
.merchant-onboard-shell .example {
    color: #6c757d;
    font-size: 0.75rem;
    padding: 2px 0 0 2px;
    line-height: 1.4;
    font-weight: 400;
    margin: 0; /* avoid stacking with Bootstrap reboot `p { margin-bottom: 1rem }` */
}
/*.documents_upload {*/
/*    max-width: 600px;*/
/*    margin: 0 auto;*/
/*}*/
#defaultFiles,
#sole_proprietor,
#partnership,
#limited {
margin-bottom: 20px;
}
/* Optional: Add some styling for better visibility */
/*.documents_upload {*/
/*    background-color: #f9f9f9;*/
/*    padding: 20px;*/
/*    border-radius: 8px;*/
/*    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
/*}*/
.merchant-onboard-shell input[type="file"] {
margin-top: 5px;
padding: 8px 12px;
border: 1px solid #ddd;
border-radius: 5px;
box-sizing: border-box;
width: 100%;
max-width: 100%;
}
/* Hide default file input text */
.merchant-onboard-shell input[type="file"]::-webkit-file-upload-button {
visibility: hidden;
}
.merchant-onboard-shell input[type="file"]::before {
content: 'Select File';
background: #3498db;
color: #fff;
padding: 5px 10px;
border-radius: 5px;
cursor: pointer;
display: inline-block;
margin-right: 10px;
}
.merchant-onboard-shell input[type="file"]:hover::before {
background: #2980b9;
}
.merchant-onboard-shell .error-message {
color: red;
font-size: 14px;
margin-top: 5px;
}
#amountInput {
display: none;
}
#bankInvoiceUpload {
display: none;
}
/* Styles for the overlay background */
.overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
justify-content: center;
align-items: center;
z-index: 2000;
}
/* Styles for the modal */
.modalterms {
background: #fff;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
max-width: 80%; /* Adjusted to a percentage for responsiveness */
width: 100%;
max-height: 70vh;
overflow-y: auto;
font-family: Arial, sans-serif; /* Updated font-family */
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 20px;
text-align: justify;
text-align: center;
transition: transform 0.3s ease-in-out; /* Added transition effect for smoother appearance */
}

/* Hide scrollbars but keep scrolling (modal + wizard if any) */
.modalterms,
.merchant-onboard-shell .right-side,
.merchant-onboard-shell .main {
    scrollbar-width: none; /* Firefox */
}
.modalterms::-webkit-scrollbar,
.merchant-onboard-shell .right-side::-webkit-scrollbar,
.merchant-onboard-shell .main::-webkit-scrollbar {
    width: 0;
    height: 0;
}
/* Style for the close button */
.close-btn {
cursor: pointer;
color: #333;
font-size: 20px;
position: absolute;
top: 10px;
right: 10px;
}
.alignText {
text-align: justify;
}
.merchant-onboard-shell input[type="checkbox"]:required:invalid + label {
color: red;
}
.merchant-onboard-shell input[type="checkbox"]:required:valid + label {
color: green;
}
