﻿.text-success {
    color: #057A55 !important;
}

.text-danger {
    color: #B42318 !important; /* red */
}

.alertIcon {
    margin-right: 6px;
    vertical-align: middle;
}
.onboardingAlertText h6 {
    margin: 0;
    display: flex;
    align-items: center;
}
/* ---------------------------------------------------
   Onboarding General
--------------------------------------------------- */

.onboardingTitle {
    font-weight: 700;
}

.onboardingDescription {
    margin-top: 10px;
    margin-bottom: 25px;
    color: #6b7280;
}


/* ---------------------------------------------------
   Dashboard Layout
--------------------------------------------------- */

.onboardingDashboard {
    padding: 40px;
}

.onboardingSidebarCard {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    border: 1px solid #e5e7eb;
    height: 100%;
}

.onboardingContentCard {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    border: 1px solid #e5e7eb;
    min-height: 650px;
}


/* ---------------------------------------------------
   Cards
--------------------------------------------------- */

.onboardingCard {
    border-radius: 14px;
    transition: all .25s cubic-bezier(.4,0,.2,1);
}

    .onboardingCard.primary {
        background: linear-gradient(90deg,#2e77f2,#59c7fa);
        color: #fff;
        box-shadow: none !important;
        border-radius: 100px;
    }

        .onboardingCard.primary h6,
        .onboardingCard.primary p,
        .onboardingCard:hover h6,
        .onboardingCard:hover p {
            color: #fff !important;
        }

    .onboardingCard.secondary {
        background: #ffffff;
        border: 1px solid #e6ecf5;
        box-shadow: none !important;
        border-radius: 100px;
    }

    .onboardingCard:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.08);
        background: linear-gradient(90deg,#2e77f2,#59c7fa);
        color: #fff !important;
    }


/* ---------------------------------------------------
   Divider
--------------------------------------------------- */

.dividerSandbox {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 22px 0;
    color: #8a94a6;
    font-size: 13px;
}

    .dividerSandbox::before,
    .dividerSandbox::after {
        content: "";
        flex: 1;
        border-bottom: 1px solid #d7dde5;
    }

    .dividerSandbox span {
        padding: 0 12px;
    }


/* ---------------------------------------------------
   Progress Card
--------------------------------------------------- */

.onboardingProgressCard {
    margin-top: 20px;
    padding: 25px;
    border-radius: 14px;
}

.progressText {
    font-size: 12px;
    color: #6b7280;
}


/* ---------------------------------------------------
   NDA Document Viewer
--------------------------------------------------- */

.ndaDocument {
    max-height: 500px;
    overflow-y: auto;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 20px;
    background: #fafafa;
    line-height: 1.6;
}

    .ndaDocument h5 {
        margin-top: 20px;
        font-weight: 600;
    }


/* ---------------------------------------------------
   PAGE LAYOUT
--------------------------------------------------- */

.onboardingDashboard {
    padding: 40px;
}

.sidebarCard {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    border: 1px solid #e5e7eb;
}

.contentCard {
    background: #ffffff;
    border-radius: 18px;
    padding: 25px;
    border: 1px solid #e5e7eb;
    min-height: 100vh;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}


/* ---------------------------------------------------
   FINTECH HORIZONTAL STEPPER
--------------------------------------------------- */

.topStepper {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px;
    border: 1px solid #edf2f7;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.horizontalStepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* STEP BLOCK */

.stepWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
    text-align: center;
    cursor: pointer;
    position: relative;
}

/* STEP CIRCLE */

.stepCircle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    background: #f9fafb;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 15px;
    transition: all .3s ease;
}

/* STEP LABEL */

.stepLabel {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
}

.stepWrapper.completed .stepLabel {
    color: #057a55;
}

/* CONNECTOR LINE */

.stepLine {
    flex: 1;
    height: 3px;
    background: #e5e7eb;
    margin: 0 10px;
    border-radius: 10px;
}


/* ACTIVE STEP */

.stepWrapper.active .stepCircle {
    background: radial-gradient(circle, #2e77f2, #59c7fa);
    border: none;
    color: #ffffff;
    box-shadow: 0 0 0 6px rgba(46,119,242,0.15), 0 10px 20px rgba(0,0,0,0.08);
}

.stepWrapper.active .stepLabel {
    color: #111827;
}


/* COMPLETED STEP */

.stepWrapper.completed .stepCircle {
    background: #E6F9F0 !important;
    color: #057A55 !important;
    border: 1px solid #057A55 !important;
}


/* PROGRESS LINE */

.stepWrapper.completed + .stepLine {
    background: linear-gradient(90deg,#2e77f2,#59c7fa);
}


/* HOVER */

.stepWrapper:hover .stepCircle {
    transform: scale(1.07);
}


/* ---------------------------------------------------
   Onboarding Alert Banner
--------------------------------------------------- */

.onboardingAlert {
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 20px;
}

/*  Pending (Red) */
.errorAlert {
    background: #FDECEA !important;
    color: #B42318 !important;
    border: 1px solid #F04438 !important;
}

.successAlert {
    background: #E6F9F0 !important;
    color: #057A55 !important;
    border: 1px solid #057A55 !important;
}

.onboardingAlertContent {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.onboardingAlertText {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #1f2937;
}

.alertIcon {
    font-size: 20px !important;
}

.startOnboardingBtn {
    border-radius: 8px;
}


/* ---------------------------------------------------
   Divider
--------------------------------------------------- */

.stepDivider {
    margin: 30px 0;
    border-top: 1px solid #e5e7eb;
}


/* -------------------------------------------
   Account Created Success Screen
------------------------------------------- */

.accountCreatedWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 450px;
}

.accountCreatedContent {
    text-align: center;
    max-width: 520px;
}

.accountCreatedImage {
    width: 300px;
    margin-bottom: 25px;
}

.accountCreatedTitle {
    margin-bottom: 10px;
    font-weight: 700;
}

.accountCreatedText {
    color: #6b7280;
    margin-bottom: 25px;
}

.accountCreatedBtn {
    border-radius: 10px;
    padding: 10px 24px;
}


/* -------------------------------------------
  Sign NDA Screen
------------------------------------------- */

.signatureSection {
    margin-top: 30px;
}

.signatureCanvas {
    border: 2px dashed #d1d5db;
    border-radius: 10px;
    background: #fafafa;
}

.backBtn {
    background: #fff !important;
    border: none;
    padding: 14px 30px !important;
    color: #46a3f6 !important;
    font-size: 16px !important;
    border-radius: 10px !important;
    transition: background 0.3s ease;
    border: 1px solid #46a3f6 !important;
}


/********************** KYC Upload css ***************/

.validation-text {
    color: #dc3545;
    font-size: 13px;
    margin-top: 4px;
    font-weight: 500;
}

.kycCard {
    padding: 35px;
    border-radius: 16px;
}

.kycSubText {
    color: #6b7280;
}

.kycSection {
    padding: 22px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fafafa;
}

.selectInput {
    margin-top: 4px;
}

.sectionTitle {
    margin-bottom: 10px;
}


/* Upload container */

.uploadBox {
    border: 2px dashed #d1d5db;
    border-radius: 10px;
    padding: 18px;
    background: #fafafa;
    text-align: center;
    transition: all .2s ease;
}

    /* Hover effect */

    .uploadBox:hover {
        border-color: #2e77f2;
        background: #f5f9ff;
    }

/* Upload icon */

.uploadIcon {
    font-size: 26px;
    color: #2e77f2;
    margin-bottom: 8px;
}

.fileName {
    margin-top: 6px;
    font-size: 12px;
    color: #374151;
    font-weight: 500;
}
.uploadFooter {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #6b7280;
    margin-top: 6px;
}

/* Hide default upload border */

.uploadInput .rz-fileupload-content {
    border: none !important;
    background: transparent !important;
}

.datepickerSelect input {
    height: 56px !important;
    margin-top: 4px;
    border-radius: 12px !important;
}
.validation-text {
    color: #d32f2f;
    font-size: 14px;
    margin-top: 4px;
    font-family: var(--HeadingFont);
}

/*************************KYC css *****************/

.kyc-card {
    background: #F7F8FC;
    border-radius: 20px;
    border: 1px solid #E2E6EF;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 8px 32px rgba(0,0,0,0.04);
}

.kyc-header {
    background: linear-gradient(90deg, #2063c1, #172FAB);
    padding: 18px 36px;
    color: #ffffff;
    font-family: var(--HeadingFont);
}

    .kyc-header h2 {
        font-size: 1.5rem;
        font-family: var(--HeadingFont);
        font-weight: 500;
        margin: 0 0 6px;
        color: #ffffff;
    }

    .kyc-header p {
        font-size: 0.9rem;
        color: #cbd5e0;
        margin: 0;
    }

.kyc-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.kyc-section {
    background: #ffffff;
    border: 1px solid #E2E6EF;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.kyc-section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #E2E6EF;
}

.kyc-section-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #EBF0FB;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3B82F6;
    font-size: 18px;
}

.kyc-section-title {
    font-weight: 400;
    color: #1A202C;
    margin: 0;
}

.kyc-grid {
    display: grid;
    gap: 16px;
}

.kyc-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.kyc-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.kyc-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.kyc-label {
    color: #2D3748;
    display: flex;
    align-items: center;
    gap: 5px;
}

.kyc-required {
    color: #E53E3E;
    font-weight: 700;
}

.kyc-error {
    font-size: 14px;
    color: #E53E3E;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
    font-family: var(--HeadingFont);
    font-weight: 500;
}
/*
    .kyc-error::before {
        content: "⚠";
        font-size: 0.7rem;
    }*/

/* Info tooltip */
.info-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: help;
}

    .info-icon svg {
        width: 15px;
        height: 15px;
        fill: #718096;
        transition: fill 0.15s;
    }

    .info-icon:hover svg {
        fill: #3B82F6;
    }

.info-tooltip {
    display: none;
    position: absolute;
    left: 50%;
    bottom: calc(100% + 8px);
    transform: translateX(-50%);
    background: #1A202C;
    color: #ffffff;
    font-size: 0.74rem;
    line-height: 1.6;
    padding: 10px 13px;
    border-radius: 8px;
    width: 230px;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    white-space: normal;
    pointer-events: none;
}

    .info-tooltip::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border: 6px solid transparent;
        border-top-color: #1A202C;
    }

.info-icon:hover .info-tooltip {
    display: block;
}

/* Upload */
.upload-box {
    border: 2px dashed #E2E6EF;
    border-radius: 8px;
    background: #FAFBFF;
    padding: 16px;
    transition: border-color 0.2s, background 0.2s;
}

    .upload-box:hover {
        border-color: #3B82F6;
        background: #EBF0FB;
    }

.upload-box-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.upload-box-icon {
    font-size: 24px;
    color: #3B82F6;
    opacity: 0.7;
}

.upload-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: #718096;
    margin-top: 6px;
    padding: 0 2px;
}

.file-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #EBF0FB;
    color: #3B82F6;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
    margin-top: 8px;
    max-width: 100%;
    overflow: hidden;
}

    .file-chip span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 180px;
    }

/* Owner card */
.owner-card {
    background: #FAFBFF;
    border: 1px solid #E2E6EF;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 14px;
}

.owner-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #E2E6EF;
}

.owner-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #1A202C;
}

.owner-number {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #3B82F6;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-remove-owner {
    background: #ffffff;
    border: 1px solid #FEB2B2;
    color: #E53E3E;
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: background 0.15s;
}

    .btn-remove-owner:hover {
        background: #FFF5F5;
    }

.btn-add-owner {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #EBF0FB;
    color: #3B82F6;
    border: 2px dashed #3B82F6;
    border-radius: 12px;
    padding: 14px 20px;
    cursor: pointer;
    width: 100%;
    justify-content: center;
    transition: background 0.15s;
    margin-top: 4px;
}

    .btn-add-owner:hover {
        background: #d6e0f5;
    }

/* Action buttons */
.kyc-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 4px;
}

.btn-prev {
    background: #ffffff;
    border: 1px solid #E2E6EF;
    color: #1A202C;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}

    .btn-prev:hover {
        background: #F7F8FC;
    }

.btn-save {
    background: #EBF0FB;
    border: 1px solid #3B82F6;
    color: #3B82F6;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}

    .btn-save:hover {
        background: #d6e0f5;
    }

.btn-submit {
    background: #3B82F6;
    border: none;
    color: #ffffff;
    border-radius: 8px;
    padding: 12px 28px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.15s;
}

    .btn-submit:hover {
        opacity: 0.88;
    }

.btn-download {
    background: #ffffff;
    border: 1px solid #E2E6EF;
    color: #1A202C;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.15s;
}

    .btn-download:hover {
        background: #F7F8FC;
    }

.error-banner {
    background: #FFF5F5;
    border: 1px solid #FEB2B2;
    border-radius: 8px;
    color: #E53E3E;
    padding: 12px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

@@media (max-width: 900px) {
    .kyc-grid-3, .kyc-grid-2 {
        grid-template-columns: 1fr;
    }

    .kyc-body {
        padding: 20px 16px 24px;
    }

    .kyc-header {
        padding: 24px 20px 20px;
    }
}

@@media (max-width: 600px) {
    .kyc-actions {
        flex-direction: column;
    }

        .kyc-actions button {
            width: 100%;
            justify-content: center;
        }
}



/***************** session setting ***********************/


.ss-page {
    padding: 24px;
    font-family: var(--HeadingFont);
}

.ss-sep {
    color: #bbb;
}


.ss-page-header {
    margin-bottom: 20px;
}

.ss-page-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--rz-text-color, #1a1a1a);
    margin: 0 0 4px;
}

.ss-page-sub {
    font-size: 13px;
    color: var(--rz-text-secondary-color, #666);
    margin: 0;
}


.ss-card {
    background: var(--rz-base-background-color, #fff);
    border: 1px solid var(--rz-border-color, #e0e0e0);
    border-radius: 8px;
    padding: 20px 24px;
    margin-bottom: 16px;
}

.ss-card-title {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.ss-card-desc {
    font-size: 14px;
    margin: 0 0 16px;
    line-height: 1.5;
}


.ss-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}

.ss-badge-info {
    background: #E6F1FB;
    color: #0C447C;
    font-size: 15px;
    font-family: var(--HeadingFont);
    padding: 2px 8px;
    border-radius: 20px;
}


.ss-notice {
    display: flex;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.5;
    align-items: flex-start;
    font-weight: 300;
}

.ss-notice-icon {
    flex-shrink: 0;
    margin-top: 1px;
}

.ss-notice-corp {
    background: rgb(25 118 210 / 5%);
    color: #1976D2;
    font-weight: 300;
    font-size: 13px;
}

.ss-notice-warn {
    background: #FAEEDA;
    color: #633806;
}


.ss-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--rz-border-color, #e0e0e0);
    margin-bottom: 16px;
}

.ss-toggle-label {
    font-size: 15px;
    font-weight: 500;
}

.ss-toggle-hint {
    font-size: 12px;
    margin-top: 2px;
}


.ss-section-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
    font-family: var(--HeadingFont);
}


.ss-chip-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 14px;
    font-family: var(--HeadingFont) !important;
}

.ss-chip {
    padding: 10px 8px;
    border: 1px solid var(--rz-border-color, #e0e0e0);
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    background: var(--rz-base-background-color, #fff);
    user-select: none;
    font-family: var(--HeadingFont) !important;
}

    .ss-chip:hover {
        border-color: #185FA5;
        background: #f0f6fd;
    }

.ss-chip-active {
    border: 2px solid #1976D2 !important;
    background: #E6F1FB !important;
    font-family: var(--HeadingFont) !important;
}

    .ss-chip-active .ss-chip-val {
        color: #0C447C;
    }

    .ss-chip-active .ss-chip-unit {
        color: #1976D2;
        font-family: var(--HeadingFont) !important;
    }

.ss-chip-val {
    font-size: 18px;
    line-height: 1;
    font-family: var(--HeadingFont) !important;
}

.ss-chip-unit {
    font-size: 11px;
    color: var(--rz-text-secondary-color, #888);
    margin-top: 2px;
    font-family: var(--HeadingFont) !important;
}


.ss-custom-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--HeadingFont) !important;
    margin-bottom: 14px;
}

.ss-custom-label {
    font-size: 13px;
    color: var(--rz-text-secondary-color, #666);
    white-space: nowrap;
    font-family: var(--HeadingFont) !important;
}


.ss-countdown {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #E6F1FB;
    font-family: var(--HeadingFont) !important;
    border-radius: 6px;
    margin-top: 14px;
}

.ss-bar-track {
    flex: 1;
    height: 6px;
    background: #B5D4F4;
    border-radius: 3px;
    font-family: var(--HeadingFont) !important;
    overflow: hidden;
}

.ss-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: #1976D2;
    font-family: var(--HeadingFont) !important;
    transition: width 0.4s ease;
}

.ss-countdown-label {
    font-size: 12px;
    color: #1976D2;
    font-weight: 500;
    font-family: var(--HeadingFont) !important;
    white-space: nowrap;
}


.ss-disabled-note {
    font-size: 14px;
    color: var(--rz-text-secondary-color, #666);
    padding: 12px 16px;
    background: var(--rz-secondary-background-color, #f5f5f5);
    border-radius: 6px;
    border-left: 3px solid #185FA5;
    margin: 12px 0;
    font-family: var(--HeadingFont) !important;
    line-height: 1.5;
}


.ss-action-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
    font-family: var(--HeadingFont) !important;
}

.ss-saved-msg {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #0F6E56;
    font-family: var(--HeadingFont) !important;
    font-weight: 500;
}



.kyc-before-start {
    background: #F0F7FF;
    border: 1px solid #BFDBFE;
    border-radius: 14px;
    padding: 20px 24px;
    font-family: var(--HeadingFont) !important;
    margin-bottom: 24px;
}

.kyc-before-start-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--HeadingFont) !important;
    margin-bottom: 14px;
}

.kyc-before-start-icon-wrap {
    width: 32px;
    height: 32px;
    background: #2563EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kyc-before-start-icon {
    font-size: 18px;
    color: #fff;
}

.kyc-before-start-title {
    font-size:20px;
    color: #1E3A8A;
    font-family: var(--HeadingFont) !important;
}

.kyc-before-start-subtitle {
    font-size: 15px;
    color: #3B82F6;
    margin-top: 1px;
    font-family: var(--HeadingFont) !important;
}

.kyc-before-start-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    font-family: var(--HeadingFont) !important;
}

.kyc-before-start-card {
    background: #fff;
    border: 1px solid #DBEAFE;
    border-radius: 10px;
    padding: 14px 16px;
    font-family: var(--HeadingFont) !important;
}

.kyc-before-start-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.kyc-before-start-card-icon {
    font-size: 18px;
    color: #2563EB;
}

.kyc-before-start-card-title {
    font-size: 16px;
    color: #1E40AF;
    font-family: var(--HeadingFont) !important;
}

.kyc-before-start-card-title-sub {
    font-weight: 400;
    color: #64748B;
    font-family: var(--HeadingFont) !important;
}

.kyc-before-start-list {
    margin: 0;
    padding-left: 16px;
    font-size: 14px;
    color: #475569;
    line-height: 1.8;
    font-family: var(--HeadingFont) !important;
}

.kyc-before-start-card-note {
    margin-top: 8px;
    font-size: 13px;
    font-family: var(--HeadingFont) !important;
    color: #F59E0B;
}

.kyc-before-start-tip {
    margin-top: 14px;
    padding: 10px 14px;
    background: #EFF6FF;
    border-radius: 8px;
    font-size: 14px;
    color: #1E3A8A;
    display: flex;
    font-family: var(--HeadingFont) !important;
    align-items: center;
    gap: 8px;
}

.kyc-before-start-tip-icon {
    font-size: 16px;
}