/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-vbfxpe88uy] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-vbfxpe88uy] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-nufc9ydozd],
.components-reconnect-repeated-attempt-visible[b-nufc9ydozd],
.components-reconnect-failed-visible[b-nufc9ydozd],
.components-pause-visible[b-nufc9ydozd],
.components-resume-failed-visible[b-nufc9ydozd],
.components-rejoining-animation[b-nufc9ydozd] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-nufc9ydozd],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-nufc9ydozd],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-nufc9ydozd],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-nufc9ydozd],
#components-reconnect-modal.components-reconnect-retrying[b-nufc9ydozd],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-nufc9ydozd],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-nufc9ydozd],
#components-reconnect-modal.components-reconnect-failed[b-nufc9ydozd],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-nufc9ydozd] {
    display: block;
}


#components-reconnect-modal[b-nufc9ydozd] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-nufc9ydozd 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-nufc9ydozd 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-nufc9ydozd 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-nufc9ydozd]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-nufc9ydozd 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-nufc9ydozd {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-nufc9ydozd {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-nufc9ydozd {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-nufc9ydozd] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-nufc9ydozd] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-nufc9ydozd] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-nufc9ydozd] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-nufc9ydozd] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-nufc9ydozd] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-nufc9ydozd] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-nufc9ydozd 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-nufc9ydozd] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-nufc9ydozd {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/LoanApplication/FinancialsStep.razor.rz.scp.css */
/* Port of PEP financials-form.component.scss: two-column label/input grid, gold-rule
   separators under each label, and larger "header" rows for the home-ownership and
   mortgage questions. Bootstrap utility classes are referenced via :is below; the rest
   is reproduced explicitly for the scoped component. */

.financials-intro[b-0e6i5wubba] {
    margin-bottom: 1rem;
}

/* PEP .form-row = Bootstrap .row mx-1 with no extra padding. */
.form-row[b-0e6i5wubba] {
    display: flex;
    flex-wrap: wrap;
    margin-left: 0.25rem;
    margin-right: 0.25rem;
    padding: 0;
}

/* PEP .label-col: left column, muted color, 1rem. */
.label-col[b-0e6i5wubba] {
    flex: 1 0 0%;
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
    color: #505050;
    font-size: 1rem;
    align-self: center;
}

/* PEP .input-col: right column (col-md-5), right-aligned on md+, full-width input. */
.input-col[b-0e6i5wubba],
.header-input-col[b-0e6i5wubba] {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
    align-self: center;
}

/* PEP .header-label-col / .header-input-col: larger emphasized rows for the
   "Do you own your home?" and "Mortgage/Rent Monthly Payment" questions. */
.header-label-col[b-0e6i5wubba] {
    flex: 1 0 0%;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    color: #505050;
    font-size: 1.2rem;
    font-weight: 500;
    align-self: center;
}

/* PEP mat-form-field { width: 100% } */
.input-col[b-0e6i5wubba]  .form-control,
.header-input-col[b-0e6i5wubba]  .form-control {
    width: 100%;
}

.amount-label[b-0e6i5wubba] {
    color: #6c757d;
    font-size: 0.85rem;
    margin-bottom: 0.15rem;
}

/* PEP .section-description: 1.2rem, 500-weight, mb-3. */
.section-description[b-0e6i5wubba] {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
}

/* PEP hr { margin-left: 0 } — full-width gold-rule under each label. */
hr[b-0e6i5wubba] {
    margin-left: 0;
    width: 100%;
}

/* PEP financials-form.component.scss: mat-radio-button { @extend .m-2; font-size: 1.1rem }.
   The home-owner radios are now the reusable MatRadioButton; apply the page spacing/size here. */
.input-col[b-0e6i5wubba]  .mat-radio-button {
    font-size: 1.1rem;
    margin: 0.5rem;
}

@media (max-width: 767.98px) {
    .input-col[b-0e6i5wubba],
    .header-input-col[b-0e6i5wubba] {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
/* /Components/LoanApplication/ParticipationAmountStep.razor.rz.scp.css */
/* PEP participation-form.component.scss: .label-col is 1.2rem on this screen (vs the global 1rem). */
.label-col[b-z6zfq09xyy] {
    font-size: 1.2rem;
}

/* PEP participation-form.component.scss: sub-section headers + totals typography. */
.section-header[b-z6zfq09xyy] {
    font-size: 1.4rem;
    font-weight: 500;
    margin-top: 80px;
    margin-bottom: 1rem;
}

.results[b-z6zfq09xyy] {
    margin-top: 50px;
}

.results .label-col[b-z6zfq09xyy] {
    color: #505050;
    font-size: 1.2rem;
    font-weight: 500;
    align-self: center;
}

.total-charges[b-z6zfq09xyy] {
    font-size: 1.2rem;
    font-weight: 425;
}

.emp-card[b-z6zfq09xyy] {
    background-color: #f5f5f5;
    border-left: 4px solid #ba0c2f;
    border-radius: 4px;
    padding: 1rem 1.25rem;
}

.emp-card .emp-label[b-z6zfq09xyy] {
    color: #505050;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.emp-card .emp-amount[b-z6zfq09xyy] {
    color: #212121;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.emp-card .emp-description[b-z6zfq09xyy] {
    color: #6c757d;
    font-size: 0.875rem;
}

.emp-card .emp-empty[b-z6zfq09xyy] {
    color: #6c757d;
    font-size: 0.95rem;
    font-style: italic;
}
/* /Components/LoanApplication/ReviewSubmitStep.razor.rz.scp.css */
/* PEP submission.component.html: the email-confirmation radios are inline with the "Yes" option
   carrying Bootstrap 4 .mr-4 (1.5rem). Reproduce that horizontal gap on the MatRadioButtons. */
.email-confirm-radios[b-4s3id6y1ww]  .mat-radio-button {
    margin-right: 1.5rem;
}
/* /Components/Material/MatCheckbox.razor.rz.scp.css */
/* Ported from Angular Material 12 legacy checkbox structural CSS
   (@angular/material/esm2015/checkbox/checkbox.js) + checkbox theme:
   inner container 16px; frame border 2px radius 2px; unchecked frame rgba(0,0,0,.54);
   checked background = accent (A200); checkmark = theme background (#fafafa); label gap 8px. */

.mat-checkbox[b-qqcwimq3u9] {
    display: inline-flex;
    align-items: baseline;
    cursor: pointer;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
    margin: 0;
}

.mat-checkbox-inner-container[b-qqcwimq3u9] {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    flex-shrink: 0;
    align-self: center;
    line-height: 0;
}

/* Native input is the transparent, full-size click target. */
.mat-checkbox-input[b-qqcwimq3u9] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
}

.mat-checkbox-frame[b-qqcwimq3u9] {
    position: absolute;
    inset: 0;
    box-sizing: border-box;
    border: 2px solid rgba(0, 0, 0, 0.54);
    border-radius: 2px;
    background-color: transparent;
    transition: border-color 90ms cubic-bezier(0, 0, 0.2, 0.1);
}

.mat-checkbox-background[b-qqcwimq3u9] {
    position: absolute;
    inset: 0;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-a200);
    opacity: 0;
    transition: opacity 90ms cubic-bezier(0, 0, 0.2, 0.1), background-color 90ms cubic-bezier(0, 0, 0.2, 0.1);
}

.mat-checkbox-checked .mat-checkbox-background[b-qqcwimq3u9] {
    opacity: 1;
}

.mat-checkbox-checked .mat-checkbox-frame[b-qqcwimq3u9] {
    border-color: var(--accent-a200);
}

/* CSS checkmark (Material draws an SVG tick in the theme background color). */
.mat-checkbox-checkmark[b-qqcwimq3u9] {
    width: 6px;
    height: 11px;
    margin-bottom: 2px;
    border: solid #fafafa;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    box-sizing: border-box;
    opacity: 0;
}

.mat-checkbox-checked .mat-checkbox-checkmark[b-qqcwimq3u9] {
    opacity: 1;
}

.mat-checkbox-label[b-qqcwimq3u9] {
    user-select: auto;
}

.mat-checkbox-input:focus-visible ~ .mat-checkbox-frame[b-qqcwimq3u9] {
    box-shadow: 0 0 0 0.2rem rgba(255, 172, 172, 0.3);
}
/* /Components/Material/MatRadioButton.razor.rz.scp.css */
/* Ported verbatim from Angular Material 12 legacy radio structural styles
   (@angular/material/esm2015/radio/radio.js) + the radio theme mixin:
   unchecked ring = foreground secondary-text (rgba(0,0,0,.54)); checked ring + dot = accent A200. */

.mat-radio-button[b-xvqtbjjegk] {
    display: inline-block;
    -webkit-tap-highlight-color: transparent;
    outline: 0;
}

.mat-radio-label[b-xvqtbjjegk] {
    user-select: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    vertical-align: middle;
    width: 100%;
    /* PEP loads Bootstrap 4, whose Reboot gives every <label> margin-bottom: 0.5rem; Material
       doesn't override it, so the mat-radio-label carried that 0.5rem. The new app's Bootstrap
       drops it, so reproduce it explicitly here. */
    margin: 0 0 0.5rem;
}

.mat-radio-container[b-xvqtbjjegk] {
    box-sizing: border-box;
    display: inline-block;
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Native input is the transparent, full-size click target (keeps #id CheckAsync working). */
.mat-radio-input[b-xvqtbjjegk] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
}

.mat-radio-outer-circle[b-xvqtbjjegk] {
    box-sizing: border-box;
    display: block;
    height: 20px;
    width: 20px;
    left: 0;
    top: 0;
    position: absolute;
    border: 2px solid rgba(0, 0, 0, 0.54);
    border-radius: 50%;
    transition: border-color ease 280ms;
}

.mat-radio-inner-circle[b-xvqtbjjegk] {
    box-sizing: border-box;
    display: block;
    height: 20px;
    width: 20px;
    left: 0;
    top: 0;
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.001);
    background-color: var(--accent-a200);
    transition: transform ease 280ms, background-color ease 280ms, opacity linear 1ms 280ms;
}

.mat-radio-checked .mat-radio-outer-circle[b-xvqtbjjegk] {
    border-color: var(--accent-a200);
}

.mat-radio-checked .mat-radio-inner-circle[b-xvqtbjjegk] {
    opacity: 1;
    transform: scale(0.5);
    transition: transform ease 280ms, background-color ease 280ms;
}

.mat-radio-label-content[b-xvqtbjjegk] {
    display: inline-block;
    order: 0;
    line-height: inherit;
    padding-left: 8px;
    padding-right: 0;
}

.mat-radio-input:focus-visible ~ .mat-radio-outer-circle[b-xvqtbjjegk] {
    box-shadow: 0 0 0 0.2rem rgba(255, 172, 172, 0.3);
}
/* /Components/Pages/FinancialPlanningWorksheet.razor.rz.scp.css */
/* Port of PEP financial-planning-worksheet-form.component.scss.
   PEP styled every radio on this page with `mat-radio-button { @extend .m-2; font-size: 1.1rem; }`
   — i.e. 0.5rem margin all around (vertical spacing between stacked options) and a 1.1rem label.
   The reusable MatRadioButton stays neutral (pure Material geometry); this page applies the
   worksheet-specific spacing/sizing, exactly as PEP did. */
.col-lg-8[b-lhz2z6qj69]  .mat-radio-button {
    margin: 0.5rem;
    font-size: 1.1rem;
}
/* /Components/Pages/PepLoanHomepage.razor.rz.scp.css */
/* PEP plan-form.component.scss `label { font-size:1.25rem; font-weight:500 }` is view-encapsulated
   to plan-form's OWN labels — i.e. the prompt label only (rendered in ILMS as .plan-prompt-label).
   It does NOT pierce the mat-radio-button's internal label, so the plan-OPTION radio labels stay at
   the default Material body weight/size. Do not re-add a .mat-radio-label-content override here —
   it would (wrongly) bold the option text to match the title. */
