@import '_content/EC.Shared/EC.Shared.t8z5iritbw.bundle.scp.css';

/* /Components/Forms/FormProgressBar.razor.rz.scp.css */
.step-progress-container[b-hq8t17wqhj] {
    margin: auto;
    max-width: var(--max-width);
}

.step-container[b-hq8t17wqhj] {
    display: flex;
    align-items: center;
}

.step-number[b-hq8t17wqhj] {
    color: var(--font-color);
    background-color: var(--bg-color);
    font-size: var(--font-size);
    font-weight: 700;
    width: var(--step-number-size);
    height: var(--step-number-size);
    border-radius: 50%;
    margin: -1px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.1s linear;
}

    .step-number.active[b-hq8t17wqhj] {
        background-color: var(--color);
        font-size: calc(var(--font-size) * 1.25);
        width: calc(var(--step-number-size) * 1.15);
        height: calc(var(--step-number-size) * 1.15);
        transition: all 0.1s linear;
        transition-delay: 0.25s;
    }

.step-line-container[b-hq8t17wqhj] {
    flex-grow: 1;
    z-index: 1;
    height: var(--step-line-height);
    position: relative;
}

.step-line[b-hq8t17wqhj] {
    display: block;
    height: var(--step-line-height);
    position: absolute;
    background-color: var(--color);
    width: 0%;
    transition: width 0.25s ease-in;
    transition-delay: 0.1s;
}

    .step-line.filled[b-hq8t17wqhj] {
        width: 100%;
        transition: width 0.25s ease-out;
    }

.step-line-bg[b-hq8t17wqhj] {
    display: block;
    height: var(--step-line-height);
    background-color: var(--bg-color);
}
/* /Components/Forms/FormWidget.razor.rz.scp.css */
.os-widget[b-ug1j6hzwbn] {
    width: 100%;
    margin: 0;
}

/* The iframe is injected by osiframe.js, so it isn't rendered by this component. */
.os-widget[b-ug1j6hzwbn]  iframe {
    width: 100%;
    height: 1500px;
    border: 0;
}
/* /Components/Layout/Footer.razor.rz.scp.css */
.images[b-pt6etmuuow] {
    margin-bottom: 2rem;
    text-align: center;
    height: 90px;
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
}

.images img[b-pt6etmuuow] {
    max-width: 100%;
    max-height: 100%;
}

p[b-pt6etmuuow] {
    font-size: 0.75rem;
}

.contact[b-pt6etmuuow] {
    text-align: center;
}

.disclaimer[b-pt6etmuuow] {
    text-align: justify;
    opacity: 80%;
}
/* /Components/Pages/CleanShowcase/CleanShowcase.razor.rz.scp.css */
main[b-0k59gfzwm0] {
    background-color: #f5f5f5;
}

.logo-container[b-0k59gfzwm0] {
    padding-top: 5px;
    text-align: center;
}

.logo[b-0k59gfzwm0] {
    max-height: 110px;
}

.hero[b-0k59gfzwm0] {
    width: 100%;
}

.main-content[b-0k59gfzwm0] {
    padding: 1rem;
}

[b-0k59gfzwm0] #offer {
    text-align: center;
}

    [b-0k59gfzwm0] #offer h1 {
        font-weight: 600;
        margin-bottom: 0;
    }

        [b-0k59gfzwm0] #offer h1 sup {
            position: relative;
            font-size: 12px;
            top: -2px;
            left: 4px;
        }

    [b-0k59gfzwm0] #offer small {
        color: gray;
        font-size: 12px;
        margin-bottom: 12px;
    }

.main-content h1[b-0k59gfzwm0] {
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    margin-top: 20px;
}

/* Carousel */
.carousel[b-0k59gfzwm0] {
    position: relative;
    width: 100%;
    height: 300px; /* your desired height */
    overflow: visible; /* show peeking prev/next */
    margin: 0 auto;
    overflow-x: hidden;
    mask-image: linear-gradient( to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0) 100% );
    mask-repeat: no-repeat;
    /* for WebKit/Safari: */
    -webkit-mask-image: linear-gradient( to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0) 100% );
    -webkit-mask-repeat: no-repeat;
}

    .carousel .slide[b-0k59gfzwm0] {
        height: 300px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform-origin: center center;
        transition: transform 1s ease, opacity 1s ease;
    }

        .carousel .slide img[b-0k59gfzwm0] {
            display: block;
            width: auto; /* fill slide horizontally */
            height: 100%; /* fill slide vertically */
            object-fit: cover; /* crop/scale to fully cover the slide */
            pointer-events: none;
            user-select: none;
        }

    /* left peek */
    .carousel .prev[b-0k59gfzwm0] {
        transform: translate(-50%, -50%) translateX(-40%) scale(0.8);
        opacity: 0.5;
        z-index: 1;
    }

    /* center */
    .carousel .current[b-0k59gfzwm0] {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        z-index: 3;
    }

    /* right peek */
    .carousel .next[b-0k59gfzwm0] {
        transform: translate(-50%, -50%) translateX(40%) scale(0.8);
        opacity: 0.5;
        z-index: 2;
    }

    /* flies off left & fades */
    .carousel .old[b-0k59gfzwm0] {
        transform: translate(-50%, -50%) translateX(-80%) scale(0.8);
        opacity: 0;
        z-index: 0;
    }

    /* waiting off right, invisible */
    .carousel .upcoming[b-0k59gfzwm0] {
        transform: translate(-50%, -50%) translateX(80%) scale(0.8);
        opacity: 0;
        z-index: 0;
    }

/* Form Custom Styles */
[b-0k59gfzwm0] .form-container {
    margin-bottom: 3rem !important;
}

[b-0k59gfzwm0] .form-step-heading {
    color: #54585a;
}

[b-0k59gfzwm0] #information {
    max-width: 480px;
    margin: auto;
}

[b-0k59gfzwm0] .error {
    text-align: center;
    color: #b33c24;
    background-color: #f8d7da;
    margin-bottom: 6px;
    padding: 4px 0;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
}

[b-0k59gfzwm0] .form-input-text,
[b-0k59gfzwm0] .form-input-amount,
[b-0k59gfzwm0] .form-input-select {
    border: 1px solid #cfd4da;
    padding: 0.7rem;
    border-radius: 5px;
}

[b-0k59gfzwm0] .tcpa {
    font-size: 0.60rem;
    opacity: 0.5;
}

[b-0k59gfzwm0] .form-btn {
    color: white;
    font-size: 1rem;
    text-transform: uppercase;
    padding: 0.7rem;
    border-radius: 5px;
}

/* Gallery */
.gallery-container[b-0k59gfzwm0] {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
}

.gallery[b-0k59gfzwm0] {
    display: flex;
    flex-wrap: nowrap;
}

    .gallery img[b-0k59gfzwm0] {
        flex: 0 0 auto;
        height: 400px;
        object-fit: cover;
        margin-right: 5px;
        scroll-snap-align: start;
    }

        .gallery img:last-child[b-0k59gfzwm0] {
            margin-right: 0;
        }

.tagline h2[b-0k59gfzwm0] {
    text-transform: uppercase;
    text-align: center;
    padding: 5px;
    margin: 10px 0;
    font-size: 22px;
}

    .tagline h2 .green-text[b-0k59gfzwm0] {
        color: #6cc14a;
    }

/* Footer */
[b-0k59gfzwm0] footer {
    padding: 12px;
    margin-top: 50px;
}
/* /Components/Pages/COB/COB.razor.rz.scp.css */
/* Header */
header[b-6ru07z7lp0] {
    padding: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: auto;
    max-width: 50rem;
    gap: 1.25rem;
}

    header img[b-6ru07z7lp0] {
        max-height: 5rem;
    }

/* Hero */
.hero[b-6ru07z7lp0] {
    max-width: 87.5rem;
    margin: auto;
    background-image: url('/img/templates/cob/hero.webp');
    background-size: cover;
    background-position: center;
}

/* Form container */
.form-container[b-6ru07z7lp0] {
    background-color: rgba(255, 255, 255, .9);
    min-height: 31.25rem;
    max-width: 37.5rem;
    margin-left: auto;
    text-align: center;
    padding: 2.5rem 1.25rem;
}

    .form-container h1[b-6ru07z7lp0] {
        font-weight: 800;
        margin-bottom: 0; 
    }

    .form-container h2[b-6ru07z7lp0] {
        font-weight: 600;
        margin-top: 0; 
        font-size: 1.75rem;   
    }

    .form-container .form[b-6ru07z7lp0] {
        max-width: 25rem;
        margin: 1.25rem auto 0 auto;
        text-align: left;
    }

/* Offer superscripts */
sup[b-6ru07z7lp0] {
    line-height: 0;
    font-size: 0.35em;
    margin-left: 0.1875rem;
}

.bogo-super[b-6ru07z7lp0] {
    font-size: 0.4em;
    vertical-align: super;
    position: relative;
    top: -0.3em;
    line-height: 0;
    margin-left: 0.12em;
}

.bogo-off-super[b-6ru07z7lp0] {
    font-size: 0.4em;
    vertical-align: super;
    position: relative;
    top: -0.75em;
    line-height: 0;
    margin-left: 0.12em;
}

.mobile-hero-img[b-6ru07z7lp0] {
    display: none;
}

/* Section 1 */
.section-1[b-6ru07z7lp0] {
    padding: 0.75rem;
    color: white;
    background-color: #525057;
    text-align: center;
}

    .section-1 h1[b-6ru07z7lp0] {
        font-weight: 700;
    }

    .section-1 small[b-6ru07z7lp0] {
        opacity: 0.8;
    }

/* Form control overrides (child components render outside this scope, so use ::deep) */
[b-6ru07z7lp0] .form-step-heading {
    text-align: center;
    font-weight: 300;
    text-transform: none;
    color: #54585a;
}

[b-6ru07z7lp0] .form-input-text,
[b-6ru07z7lp0] .form-input-amount,
[b-6ru07z7lp0] .form-input-select {
    padding: 0.7rem;
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    border-radius: 0;
    border: 0.0625rem solid #cfcfcf;
    box-shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
}

/* Muted, uppercase placeholder text to match the reference design */
[b-6ru07z7lp0] .form-input-text::placeholder {
    text-transform: uppercase;
    color: #a8a8a8;
    letter-spacing: 0.03125rem;
}

/* Zip code field: deep inset shadow so it looks pressed into the page */
[b-6ru07z7lp0] .form-input-text[name="zipCode"] {
    border: 0.0625rem solid #c4c4c4;
    box-shadow: inset 0 0.1875rem 0.5rem rgba(0, 0, 0, 0.15);
}

/* Tighten the gap between the input and the button (overrides shared !important) */
[b-6ru07z7lp0] .form-input-container {
    margin-bottom: 0.25rem !important;
}

[b-6ru07z7lp0] .error {
    text-align: center;
    color: #b33c24;
    background-color: #f8d7da;
    margin-bottom: 0.375rem;
    padding: 0.25rem 0;
    border: 0.0625rem solid #f5c6cb;
}

[b-6ru07z7lp0] .form-btn {
    color: white;
    width: 100%;
    padding: 0.7rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 350;
    letter-spacing: 0.0625rem;
    border: 0.0625rem solid transparent;
    margin-top: 0.25rem;
    text-transform: uppercase;
}

[b-6ru07z7lp0] .tcpa {
    font-size: 0.6875rem;
    text-align: justify;
    margin-top: 1.25rem;
    opacity: 1;
}

/* Footer */
[b-6ru07z7lp0] footer {
    max-width: 87.5rem;
    margin: 1.5rem auto 3.125rem auto;
    padding: 0.75rem;
    font-size: 0.625rem;
}

    [b-6ru07z7lp0] footer .disclaimer {
        text-align: justify;
    }

/* Tablet / Mobile */
@media only screen and (max-width: 37.5rem) {
    header[b-6ru07z7lp0] {
        padding: 0;
        gap: 0;
    }

    .mobile-hero-img[b-6ru07z7lp0] {
        display: block;
        width: 100%;
    }

    .form-container[b-6ru07z7lp0] {
        padding: 0.75rem;
        min-height: 100%;
        background-color: white;
    }

        .form-container h2[b-6ru07z7lp0] {
            font-size: 1.25rem;
        }

    /* Tighten the gap between the Back and Next buttons on mobile (steps 2-4) */
    [b-6ru07z7lp0] .form-btn-container {
        gap: 0.5rem;
    }
}

@media only screen and (max-width: 20rem) {
    header[b-6ru07z7lp0] {
        flex-direction: column;
    }

        header img[b-6ru07z7lp0] {
            max-height: 3.125rem;
        }
}
/* /Components/Pages/Default/Agent.razor.rz.scp.css */
/* Internal agent console — utilitarian, themeable (light / dark). */

.agent-page[b-oswb50wk85] {
    /* Light theme (default) */
    --accent: #1d4ed8;
    --accent-hover: #1a45bd;
    --page-bg: #eaeef4;
    --panel-bg: #ffffff;
    --text: #131923;
    --muted: #515b6b;
    --border: #bcc4d0;
    --border-soft: #e0e4ec;
    --chip-bg: #eef1f6;
    --success: #227d43;
    --warning: #b9821a;
    --danger: #bb3320;
    --step-bg: #c7cfda;
    --step-text: #384252;
    --progress: #227d43;

    min-height: 100vh;
    padding: 0.8rem;
    background: var(--page-bg);
    color: var(--text);
}

/* Dark theme is toggled by the .agent-dark class on <html> (set pre-paint in App.razor). */
html.agent-dark .agent-page[b-oswb50wk85] {
    --accent: #1d4ed8;
    --accent-hover: #1a45bd;
    --page-bg: #0f141b;
    --panel-bg: #1a212b;
    --text: #e7ebf1;
    --muted: #9aa5b3;
    --border: #2c3542;
    --border-soft: #232b36;
    --chip-bg: #212a35;
    --success: #4bbd75;
    --warning: #e0b04a;
    --danger: #e26a55;
    --step-bg: #2b3441;
    --step-text: #aeb8c6;
    --progress: #2f9457;
}

/* Denied view */
.agent-denied[b-oswb50wk85] {
    max-width: 480px;
    margin: 4rem auto;
    padding: 1.5rem;
    border: 2px solid var(--danger);
    background: var(--panel-bg);
    color: var(--text);
    font-family: system-ui, sans-serif;
    text-align: center;
    border-radius: 4px;
}

.agent-denied h1[b-oswb50wk85] {
    margin: 0 0 0.5rem;
    color: var(--danger);
}

.agent[b-oswb50wk85] {
    max-width: 1040px;
    margin: 0 auto;
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
    color: var(--text);
}

/* Two-column layout: main workflow on the left, live lead readout on the right.
   Desktop-only tool, so no mobile breakpoint. */
.agent-cols[b-oswb50wk85] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    gap: 0.8rem;
    align-items: start;
}

/* Readout on the left; scrolls with the page like everything else. */
.agent-col-side[b-oswb50wk85] {
    order: -1;
}

/* Header — a dark app bar in both themes */
.agent-header[b-oswb50wk85] {
    background: #161c26;
    color: #fff;
    padding: 0.45rem 0.7rem;
    border-radius: 4px;
}

.agent-header-row[b-oswb50wk85] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.agent-header h1[b-oswb50wk85] {
    margin: 0.25rem 0 0;
    font-size: 0.98rem;
    font-weight: 700;
}

.agent-badge[b-oswb50wk85] {
    display: inline-block;
    background: #f2b01e;
    color: #161c26;
    font-family: ui-monospace, Menlo, Consolas, monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 2px 8px;
    border-radius: 3px;
}

.agent-theme-toggle[b-oswb50wk85] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #cfd6e2;
    border: 0;
    padding: 0;
    font-family: inherit;
    font-size: 0.78rem;
    cursor: pointer;
}

.agent-theme-toggle:hover[b-oswb50wk85] {
    color: #fff;
}

/* Pill track + sliding knob */
.theme-switch[b-oswb50wk85] {
    position: relative;
    box-sizing: border-box;
    width: 40px;
    height: 22px;
    border: 2px solid #6a7688;
    border-radius: 999px;
    flex: none;
}

.theme-knob[b-oswb50wk85] {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #cfd6e2;
    transition: transform 0.15s ease, background 0.15s ease;
}

html.agent-dark .theme-knob[b-oswb50wk85] {
    transform: translateX(18px);
    background: #fff;
}

.theme-switch-text[b-oswb50wk85] {
    white-space: nowrap;
}

/* Show the word matching the active theme (class set pre-paint → no flash) */
.theme-mode-dark[b-oswb50wk85] {
    display: none;
}

html.agent-dark .theme-mode-light[b-oswb50wk85] {
    display: none;
}

html.agent-dark .theme-mode-dark[b-oswb50wk85] {
    display: inline;
}

.agent-bypass-note[b-oswb50wk85] {
    margin: 0.2rem 0 0;
    font-size: 0.72rem;
    color: #f2b01e;
}

/* Progress steps */
/* Chevron progress bar (Lead Info › Scheduling › Result) — reads as a flow, not tabs. */
.agent-steps[b-oswb50wk85] {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0.8rem 0;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.agent-steps li[b-oswb50wk85] {
    flex: 1;
    text-align: center;
    padding: 0.45rem 0.5rem 0.45rem 1.4rem;
    margin-left: -14px;
    background: var(--step-bg);
    color: var(--step-text);
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%, 14px 50%);
}

.agent-steps li:first-child[b-oswb50wk85] {
    margin-left: 0;
    padding-left: 0.6rem;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
}

.agent-steps li:last-child[b-oswb50wk85] {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 14px 50%);
}

/* Reached steps (done + active) are both filled green (progress, not a button); current is bold. */
.agent-steps li.done[b-oswb50wk85],
.agent-steps li.active[b-oswb50wk85] {
    background: var(--progress);
    color: #fff;
}

.agent-steps li.active[b-oswb50wk85] {
    font-weight: 700;
}

.agent-steps li.done[b-oswb50wk85] {
    font-weight: 500;
}

/* Panels */
.agent-panel[b-oswb50wk85] {
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0.8rem;
    margin-bottom: 0.8rem;
    background: var(--panel-bg);
}

.agent-panel-title[b-oswb50wk85] {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    margin-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-soft);
    padding-bottom: 0.4rem;
}

.agent-subhead[b-oswb50wk85] {
    font-size: 1rem;
    margin: 0 0 0.75rem;
    color: var(--text);
}

.agent-hint[b-oswb50wk85] {
    font-size: 0.8rem;
    color: var(--muted);
    margin: 0.5rem 0 0;
}

/* Experience toggle */
.agent-toggle[b-oswb50wk85] {
    display: flex;
    gap: 0.5rem;
}

.agent-toggle button[b-oswb50wk85] {
    flex: 1;
    padding: 0.6rem;
    border: 1px solid var(--border);
    background: var(--chip-bg);
    color: var(--text);
    font-family: inherit;
    font-size: 0.85rem;
    cursor: pointer;
    border-radius: 3px;
}

.agent-toggle button.active[b-oswb50wk85] {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
    font-weight: 700;
}

/* Lead readout — vertical label/value list */
.agent-data[b-oswb50wk85] {
    margin: 0;
    border: 1px solid var(--border-soft);
    border-radius: 3px;
    overflow: hidden;
}

.agent-data > div[b-oswb50wk85] {
    padding: 0.45rem 0.65rem;
    border-bottom: 1px solid var(--border-soft);
}

.agent-data > div:last-child[b-oswb50wk85] {
    border-bottom: 0;
}

.agent-data dt[b-oswb50wk85] {
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted);
}

.agent-data dd[b-oswb50wk85] {
    margin: 0.15rem 0 0;
    font-family: ui-monospace, Menlo, Consolas, monospace;
    font-size: 0.88rem;
    color: var(--text);
    word-break: break-word;
}

/* Result banner */
.agent-result[b-oswb50wk85] {
    border-left: 5px solid;
    padding: 0.9rem 1rem;
    border-radius: 3px;
    color: var(--text);
}

.agent-result-title[b-oswb50wk85] {
    font-size: 1.1rem;
    font-weight: 700;
}

.agent-result-detail[b-oswb50wk85] {
    margin-top: 0.35rem;
    font-size: 0.9rem;
}

.agent-result-success[b-oswb50wk85] {
    border-color: var(--success);
    background: color-mix(in srgb, var(--success) 14%, var(--panel-bg));
}

.agent-result-warning[b-oswb50wk85] {
    border-color: var(--warning);
    background: color-mix(in srgb, var(--warning) 14%, var(--panel-bg));
}

.agent-result-reject[b-oswb50wk85],
.agent-result-error[b-oswb50wk85] {
    border-color: var(--danger);
    background: color-mix(in srgb, var(--danger) 14%, var(--panel-bg));
}

.agent-appointment[b-oswb50wk85] {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
}

.agent-btn[b-oswb50wk85] {
    padding: 0.6rem 1rem;
    border: 1px solid var(--accent);
    background: var(--accent);
    color: #fff;
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 3px;
}

.agent-btn:hover[b-oswb50wk85] {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

/* ===== Embedded form components (rendered by children → ::deep) ===== */
/* Custom properties above inherit into these descendants, so they follow the theme. */

[b-oswb50wk85] .error {
    text-align: center;
    color: var(--danger);
    background-color: color-mix(in srgb, var(--danger) 15%, var(--panel-bg));
    margin-bottom: 6px;
    padding: 4px 0;
    border: 1px solid color-mix(in srgb, var(--danger) 40%, var(--panel-bg));
    border-radius: 5px;
}

[b-oswb50wk85] .form-step {
    padding: 0;
}

/* Space around the action button. FormSurvey's button lives in a plain .form-btn-container
   (no .form-step), so it needs its own top margin. Form1Step's button is also a .form-step and
   already gets a gap from the input above it, so it drops the top margin to avoid doubling. */
[b-oswb50wk85] .form-btn-container {
    margin: var(--spacing) 0;
}

[b-oswb50wk85] .form-step.form-btn-container {
    margin-top: 0;
}

/* Section headings inside the embedded forms (survey questions, etc.).
   An accent bar makes each question read as a distinct step. */
[b-oswb50wk85] .form-step-heading {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    line-height: 1.3;
    margin: 1.4rem 0 0.65rem;
    padding-left: 0.55rem;
    border-left: 3px solid var(--accent);
}

[b-oswb50wk85] .form-input-text,
[b-oswb50wk85] .form-input-amount,
[b-oswb50wk85] .form-input-select {
    background: var(--panel-bg);
    color: var(--text);
    border: 1px solid var(--border);
    padding: 0.6rem;
    width: 100%;
}

[b-oswb50wk85] .form-input-text::placeholder {
    color: var(--muted);
}

[b-oswb50wk85] .form-btn-submit,
[b-oswb50wk85] .form-btn-next,
[b-oswb50wk85] .form-btn-initial,
[b-oswb50wk85] .form-input-amount-btn {
    background: var(--accent) !important;
    color: #fff;
    font-weight: 600;
}

[b-oswb50wk85] .tcpa {
    color: var(--muted);
    font-size: 0.8rem;
}

[b-oswb50wk85] .tcpa a {
    color: var(--accent);
}

/* Classic calendar + appointments */
[b-oswb50wk85] .appointments-header,
[b-oswb50wk85] .appointments-subheader,
[b-oswb50wk85] .selected-appointment {
    text-align: center;
    color: var(--text);
}

[b-oswb50wk85] .selected-appointment {
    font-size: 1.1rem;
    font-weight: 600;
}

[b-oswb50wk85] .calendar-header,
[b-oswb50wk85] .appointments,
[b-oswb50wk85] .appointment {
    color: var(--text);
}

[b-oswb50wk85] .calendar-header-btn {
    color: var(--text);
}

[b-oswb50wk85] .calendar-day {
    border-color: var(--border);
    color: var(--text);
}

[b-oswb50wk85] .calendar-day.current-month {
    background-color: var(--chip-bg);
}

[b-oswb50wk85] .calendar-day.has-appointments {
    background-color: var(--panel-bg);
}

[b-oswb50wk85] .calendar-day.other-month {
    background-color: var(--border-soft);
    color: var(--muted);
}

[b-oswb50wk85] .calendar-day.selected {
    background-color: var(--accent);
    color: #fff;
}
/* /Components/Pages/Default/OS-widget.razor.rz.scp.css */
main[b-5tohny4il4] {
    background-color: #f8f9ff;
    padding: 12px;
}

#contents[b-5tohny4il4] {
    background-color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
    border: 2px solid #6cc14c;
}

.logo[b-5tohny4il4] {
    height: 65px;
    width: fit-content;
    margin: auto;
    padding: 10px;
}

    .logo img[b-5tohny4il4] {
        max-height: 100%;
        max-width: 100%;
    }

.form-container[b-5tohny4il4], [b-5tohny4il4] footer {
    padding: 0 1rem;
}

[b-5tohny4il4] .disclaimer {
    margin-bottom: 0;
    padding-bottom: 12px;
}
/* /Components/Pages/Default/OS.razor.rz.scp.css */
main[b-iezwey2may] {
    background-color: #f8f9ff;
    padding: 12px;
}

#contents[b-iezwey2may] {
    background-color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
    border: 2px solid #6cc14c;
}

.logo[b-iezwey2may] {
    height: 65px;
    width: fit-content;
    margin: auto;
    padding: 10px;
}

    .logo img[b-iezwey2may] {
        max-height: 100%;
        max-width: 100%;
    }


.hero[b-iezwey2may] {
    width: 100%;
}

h1[b-iezwey2may] {
    text-align: center;
    font-size: 1.5rem;
}

p[b-iezwey2may] {
    text-align: center;
}

.form-container[b-iezwey2may], [b-iezwey2may] footer {
    padding: 0 1rem;
}

[b-iezwey2may] .error {
    text-align: center;
    color: #b33c24;
    background-color: #f8d7da;
    margin-bottom: 6px;
    padding: 4px 0;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
}

[b-iezwey2may] .form-step {
    padding: 1rem 0;
}

[b-iezwey2may] .form-step-heading {
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    color: #54585a;
}

[b-iezwey2may] .form-input-text,
[b-iezwey2may] .form-input-amount,
[b-iezwey2may] .form-input-select {
    border: 2px solid #777;
    padding: 0.7rem;
}

[b-iezwey2may] .form-btn-submit {
    color: white;
    font-weight: 600;
}

[b-iezwey2may] .appointments-header, [b-iezwey2may] .appointments-subheader {
    text-align: center;
}

[b-iezwey2may] .selected-appointment {
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
}

[b-iezwey2may] .disclaimer {
    margin-bottom: 0;
    padding-bottom: 12px;
}
/* /Components/Pages/Default/ThankYou.razor.rz.scp.css */
#messaging[b-bhdjl74qpv] {
    background-color: #f7f7f7;
    border-bottom: 3px solid #5e924c;
    padding: 1rem 0;
}

#offers[b-bhdjl74qpv] {
    max-width: 800px;
    margin: auto;
}

.logo[b-bhdjl74qpv] {
    height: 110px;
    width: fit-content;
    margin: auto;
}

    .logo img[b-bhdjl74qpv] {
        max-height: 100%;
        max-width: 100%;
    }

.message[b-bhdjl74qpv] {
    max-width: 800px;
    margin: auto;
    padding: 0 1rem;
}

h1[b-bhdjl74qpv] {
    font-size: 28px;
    text-align: center;
    text-transform: uppercase;
    color: #6cc14c;
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
}

.check[b-bhdjl74qpv] {
    max-width: 28px;
    margin-right: 4px;
    transform: translateY(4px);
}

h2[b-bhdjl74qpv] {
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    margin: 0.25rem 0;
}

.matched-client-container[b-bhdjl74qpv] {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.matched-logo[b-bhdjl74qpv] {
    text-align: center;
    max-height: 160px;
    width: 160px;
    padding: 5px;
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 2px solid #84be55;
}

.matched-logo img[b-bhdjl74qpv] {
    max-height: 100%;
    max-width: 100%;
}

.steps[b-bhdjl74qpv] {
    display: flex;
    gap: 24px;
    margin-top: 1rem;
}

.step[b-bhdjl74qpv] {
    flex: 0 0 calc(33.333% - 16px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.step-number[b-bhdjl74qpv] {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid #5b9048;
    color: #5b9048;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: 800;
    margin: 10px auto;
}

.step h3[b-bhdjl74qpv] {
    color: #5b9048;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.step p[b-bhdjl74qpv] {
    margin: 0 0 6px 0;
    line-height: 1.2;
}

@media (max-width: 600px) {
    .steps[b-bhdjl74qpv] {
        flex-direction: column;
        gap: 16px;
    }

    .step[b-bhdjl74qpv] {
        flex: 0 0 100%;
        flex-direction: row;
        align-items: flex-start;
        gap: 14px;
    }

    .step-number[b-bhdjl74qpv] {
        margin: 0;
    }

    .step-content[b-bhdjl74qpv] {
        flex: 1;
    }
}
/* /Components/Pages/HeroFormMil/HeroFormMil.razor.rz.scp.css */
main[b-ag48tezbhd] {
    max-width: 1200px;
    margin: auto;
}

p[b-ag48tezbhd], li[b-ag48tezbhd], a[b-ag48tezbhd] {
    font-size: 1.05rem;
    line-height: 1.5rem;
}

/* Header */
header[b-ag48tezbhd] {
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo[b-ag48tezbhd] {
    max-width: 100%;
    width: 150px;
}

header h2[b-ag48tezbhd] {
    padding: 0;
    margin: 0;
    color: #dc1724;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
}

/* Hero */
.hero-container[b-ag48tezbhd] {
    background: url('/img/templates/heroformmil/bg-hero.webp') center center;
    background-size: cover;
    padding: 80px 20px 60px;
}

.hero-container .hero-contents[b-ag48tezbhd] {
    max-width: 400px;
    margin-left: auto;
    margin-right: 40px;
    padding-bottom: 10px;
}

.hero-container .hero-contents .form-container[b-ag48tezbhd] {
    background: url('/img/templates/heroformmil/texture-camo-vertical.webp') center center;
    background-size: cover;
    padding: 15px;
}

.hero-container .hero-contents .form-container h3[b-ag48tezbhd] {
    margin: 0 0 12px;
    color: #2ab152;
    text-transform: uppercase;
    font-size: 16px;
    text-align: center;
    letter-spacing: 0.5px;
}

#offer[b-ag48tezbhd] {
    text-align: center;
}

/* Offer */
#offer[b-ag48tezbhd]  h1 {
    color: white;
    font-size: 26px;
    font-weight: 700;
    margin: 2px 0;
    line-height: 1.15;
}

#offer[b-ag48tezbhd]  sup {
    font-size: 0.5em;
    vertical-align: super;
}

#offer[b-ag48tezbhd]  small {
    display: block;
    color: white;
    font-size: 12px;
    margin-top: 6px;
}

/* Form */
.form-container[b-ag48tezbhd]  .form-step-heading {
    color: white;
    text-align: center;
    margin-top: 18px;
    margin-bottom: 10px;
    font-size: 20px;
}

.form-container[b-ag48tezbhd]  .form-btn {
    color: white;
    text-transform: uppercase;
    font-weight: 700;
}

.form-container[b-ag48tezbhd]  .tcpa {
    color: white;
    font-size: 10px;
    line-height: 12px;
}

.form-container[b-ag48tezbhd]  .tcpa a {
    color: white;
}

.hero-container .hero-contents h2[b-ag48tezbhd] {
    color: white;
    text-align: center;
    font-size: 18px;
    letter-spacing: 1px;
    margin: 14px 0 0;
}

/* Section 1 */
.section-1[b-ag48tezbhd] {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 50px 40px;
}

.section-1 h2[b-ag48tezbhd] {
    flex: 1;
    font-size: 44px;
    font-weight: 700;
    margin: 0;
    line-height: 1.15;
}

.section-1 img[b-ag48tezbhd] {
    max-width: 500px;
    width: 100%;
}

/* Section 2 */
.section-2[b-ag48tezbhd] {
    background: #f0f0f0;
    padding: 50px 40px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.section-2 .col[b-ag48tezbhd] {
    flex: 1;
}

.section-2 h2[b-ag48tezbhd] {
    font-size: 22px;
    margin-top: 0;
}

.section-2 img[b-ag48tezbhd] {
    width: 100%;
    display: block;
    max-height: 380px;
    object-fit: cover;
}

#cta[b-ag48tezbhd] {
    background: #2ab152;
    color: white;
    border: none;
    padding: 14px 22px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* Section 3 */
.section-3[b-ag48tezbhd] {
    padding: 50px 40px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.section-3 .col[b-ag48tezbhd] {
    flex: 1;
}

.section-3 img[b-ag48tezbhd] {
    width: 100%;
    display: block;
}

.section-3 h2[b-ag48tezbhd] {
    font-size: 22px;
    margin-top: 0;
}

.section-3 h2 sup[b-ag48tezbhd] {
    font-size: 13px;
}

.section-3 ul li[b-ag48tezbhd] {
    font-weight: bold;
}

.section-3 a.cta[b-ag48tezbhd] {
    color: #2ab152;
    text-decoration: none;
}

/* Section 4 */
.section-4[b-ag48tezbhd] {
    display: flex;
    align-items: stretch;
    margin-bottom: 50px;
}

.section-4 .col.camo[b-ag48tezbhd] {
    height: fit-content;
    margin: auto 0;
    z-index: 1;
    flex: 0 0 50%;
    padding: 50px 40px;
    margin-right: -20px;
    background: url('/img/templates/heroformmil/texture-camo-vertical.webp') center center;
    background-size: cover;
}

.section-4 .col.camo h2[b-ag48tezbhd] {
    color: white;
    font-size: 22px;
    margin-top: 0;
}

.section-4 .col.camo p[b-ag48tezbhd] {
    color: white;
}

.section-4 .col.camo p sup[b-ag48tezbhd] {
    font-size: 10px;
}

.section-4 .col.camo a.cta[b-ag48tezbhd] {
    color: #2ab152;
    text-decoration: none;
}

.section-4 .col.image[b-ag48tezbhd] {
    flex: 1;
    overflow: hidden;
}

.section-4 .col.image img[b-ag48tezbhd] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-container[b-ag48tezbhd] {
        padding: 30px 16px 10px;
    }

    .hero-container .hero-contents[b-ag48tezbhd] {
        max-width: 100%;
        margin: 0;
    }

    .section-1[b-ag48tezbhd] {
        flex-direction: column;
        padding: 30px 20px;
        gap: 24px;
    }

    .section-1 h2[b-ag48tezbhd] {
        font-size: 26px;
    }

    .section-2[b-ag48tezbhd] {
        flex-direction: column;
        padding: 30px 20px;
    }

    .section-3[b-ag48tezbhd] {
        flex-direction: column-reverse;
        padding: 30px 20px;
    }

    /* Image on top, text box below; no overlap */
    .section-4[b-ag48tezbhd] {
        flex-direction: column-reverse;
    }

    .section-4 .col.camo[b-ag48tezbhd] {
        flex: none;
        margin-right: 0;
    }

    .section-4 .col.image[b-ag48tezbhd] {
        min-height: 250px;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
#home[b-nnnfkjubax] {
    font-size: 0.9rem;
    padding: 0.5rem;
    max-width: 1400px;
    margin: auto;
}

h1[b-nnnfkjubax] {
    color: #ba2626;
    margin-top: 0;
}

[b-nnnfkjubax] h2 {
    color: #2670ba;
    margin-bottom: 6px;
}

a[b-nnnfkjubax] {
    text-decoration: none;
}

.inline-code[b-nnnfkjubax] {
    font-family: monospace;
    font-size: 0.85rem;
    color: #333;
    background-color: #ddd;
    padding: 0px 4px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
/* /Components/Pages/MS/MS.razor.rz.scp.css */
main[b-h6w5my8yxj] {
    color: #333;
}

h2[b-h6w5my8yxj] {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

/* Header */
header[b-h6w5my8yxj] {
    padding: 12px 10px;
    text-align: center;
}

    header .logo[b-h6w5my8yxj] {
        height: 60px;
    }

/* Offer Banner */
.offer-banner[b-h6w5my8yxj] {
    color: black;
    background-color: #6cc14a;
    text-align: center;
    padding: 8px 10px;
}

    .offer-banner .offer-text[b-h6w5my8yxj] {
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 3px;
        font-size: 1.2rem;
    }

    .offer-banner[b-h6w5my8yxj]  sup {
        font-size: 0.6rem;
    }

    .offer-banner small[b-h6w5my8yxj] {
        font-size: 0.7rem;
    }

/* Hero */
.hero[b-h6w5my8yxj] {
    background: url('/img/templates/ms/hero-bg.webp') center center no-repeat;
    background-size: cover;
    padding: 40px 10px;
    /* Scales down with the viewport; below tablet width the form dictates the height */
    min-height: min(calc(30vw + 190px), 500px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .hero .hero-container[b-h6w5my8yxj] {
        width: 100%;
        max-width: 1080px;
        margin: auto;
        display: flex;
        justify-content: flex-end;
    }

    .hero .form-container[b-h6w5my8yxj] {
        background-color: white;
        width: 100%;
        max-width: 400px;
        padding: 1.5rem;
        border-radius: 4px;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    }

/* Form Custom Styles */
[b-h6w5my8yxj] form {
    --spacing: 0.5rem;
}

[b-h6w5my8yxj] .form-step-heading {
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    color: #54585a;
}

[b-h6w5my8yxj] .error {
    text-align: center;
    color: #b33c24;
    background-color: #f8d7da;
    margin-bottom: 6px;
    padding: 4px 0;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
}

[b-h6w5my8yxj] .form-input-text,
[b-h6w5my8yxj] .form-input-amount,
[b-h6w5my8yxj] .form-input-select {
    background-color: #ededeb;
    border: 1px solid #ccc;
    text-align: center;
    padding: 0.7rem;
    border-radius: 4px;
    box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.1);
}

[b-h6w5my8yxj] .tcpa {
    font-size: 0.60rem;
    opacity: 0.5;
}

[b-h6w5my8yxj] .form-btn {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.7rem;
    border-radius: 4px;
}

/* Warranty */
.warranty[b-h6w5my8yxj] {
    max-width: 1080px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 10px;
}

    .warranty img[b-h6w5my8yxj] {
        width: 170px;
        margin-top: -60px;
    }

    .warranty p[b-h6w5my8yxj] {
        font-size: 1.1rem;
        margin: 0;
    }

/* Reviews */
.reviews[b-h6w5my8yxj] {
    max-width: 1080px;
    margin: auto;
    text-align: center;
    padding: 40px 10px;
}

    .reviews h2[b-h6w5my8yxj] {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }

    .reviews .review-cards[b-h6w5my8yxj] {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
        text-align: left;
    }

    .reviews .review-card[b-h6w5my8yxj] {
        background-color: #f4f4f2;
        border: 1px solid #e5e5e2;
        border-radius: 4px;
        padding: 1.25rem;
        display: flex;
        flex-direction: column;
    }

        .reviews .review-card img[b-h6w5my8yxj] {
            width: 130px;
            margin-bottom: 12px;
        }

    .reviews .review-quote[b-h6w5my8yxj] {
        font-size: 0.85rem;
        flex-grow: 1;
    }

    .reviews .review-credit[b-h6w5my8yxj] {
        font-size: 0.8rem;
        margin: 0;
    }

/* Badges */
.badges[b-h6w5my8yxj] {
    max-width: 1080px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 30px 10px;
}

    .badges img[b-h6w5my8yxj] {
        height: 80px;
        width: auto;
    }

/* Why Choose Us */
.why[b-h6w5my8yxj] {
    max-width: 1080px;
    margin: auto;
    text-align: center;
    padding: 40px 10px;
}

    .why h2[b-h6w5my8yxj] {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }

    .why .why-gallery[b-h6w5my8yxj] {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .why figure[b-h6w5my8yxj] {
        position: relative;
        margin: 0;
    }

        .why figure img[b-h6w5my8yxj] {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .why figcaption[b-h6w5my8yxj] {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        color: white;
        background-color: rgba(40, 40, 40, 0.85);
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        font-size: 1.1rem;
        padding: 8px;
    }

/* Window Styles */
.window-styles[b-h6w5my8yxj] {
    background-color: #dddddd;
    text-align: center;
    padding: 30px 10px;
}

    .window-styles p[b-h6w5my8yxj] {
        font-size: 1.3rem;
    }

    .window-styles .window-icon-container[b-h6w5my8yxj] {
        max-width: 1080px;
        margin: auto;
        display: flex;
        justify-content: space-around;
        overflow-x: auto;
        padding: 1rem;
    }

    .window-styles .window-icon[b-h6w5my8yxj] {
        position: relative;
        width: 120px;
        height: 120px;
        perspective: 1000px;
        flex-shrink: 0;
        margin: 0 0.5rem;
    }

        .window-styles .window-icon img[b-h6w5my8yxj],
        .window-styles .window-rollover[b-h6w5my8yxj] {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            transition: transform 0.5s ease;
        }

        .window-styles .window-icon img[b-h6w5my8yxj] {
            object-fit: contain;
            transform: rotateY(0deg);
        }

    .window-styles .window-rollover[b-h6w5my8yxj] {
        transform: rotateY(180deg);
        display: flex;
        align-items: center;
        justify-content: center;
        text-transform: uppercase;
        color: #333;
        font-size: 1rem;
        padding: 0.5rem;
    }

    .window-styles .window-icon:hover img[b-h6w5my8yxj] {
        transform: rotateY(180deg);
    }

    .window-styles .window-icon:hover .window-rollover[b-h6w5my8yxj] {
        transform: rotateY(0deg);
    }

/* Process */
.process[b-h6w5my8yxj] {
    max-width: 1080px;
    margin: auto;
    text-align: center;
    padding: 40px 10px;
}

    .process h2[b-h6w5my8yxj] {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }

    .process .process-steps[b-h6w5my8yxj] {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        text-align: left;
    }

    .process .process-step img[b-h6w5my8yxj] {
        display: block;
        height: 90px;
        margin: 0 auto 16px auto;
    }

    .process .process-step-title[b-h6w5my8yxj] {
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        text-transform: uppercase;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .process .process-step p[b-h6w5my8yxj] {
        font-size: 0.9rem;
    }

/* Gallery */
.gallery[b-h6w5my8yxj] {
    max-width: 1080px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 6px;
    padding: 20px 10px;
}

    .gallery img[b-h6w5my8yxj] {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .gallery .gallery-small-container[b-h6w5my8yxj] {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

        .gallery .gallery-small-container img[b-h6w5my8yxj] {
            height: 250px;
        }

/* Payment Options */
.payment[b-h6w5my8yxj] {
    color: white;
    background: linear-gradient(180deg, #4e9a3f 0%, #63bb4d 50%, #4e9a3f 100%);
    text-align: center;
    padding: 70px 10px;
}

    .payment h2[b-h6w5my8yxj] {
        font-size: 2.5rem;
        margin: 0;
    }

    .payment p[b-h6w5my8yxj] {
        font-style: italic;
        font-size: 1.4rem;
        margin: 4px 0 40px 0;
    }

    .payment .cta[b-h6w5my8yxj] {
        display: inline-block;
        color: white;
        background-color: #f5780a;
        text-decoration: none;
        text-transform: uppercase;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        font-size: 1.1rem;
        letter-spacing: 1px;
        padding: 14px 40px;
        border-radius: 4px;
        transition: background-color ease-in-out 0.25s;
    }

        .payment .cta:hover[b-h6w5my8yxj] {
            background-color: #f78c33;
        }

/* Footer */
.site-footer[b-h6w5my8yxj] {
    color: white;
    background-color: black;
    padding: 40px 10px;
}

    .site-footer .footer-links[b-h6w5my8yxj] {
        max-width: 1080px;
        margin: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }

        .site-footer .footer-links img[b-h6w5my8yxj] {
            max-width: 200px;
        }

        .site-footer .footer-links a[b-h6w5my8yxj] {
            color: white;
            text-decoration: none;
            text-transform: uppercase;
            font-weight: 700;
        }

        .site-footer .footer-links .footer-contact[b-h6w5my8yxj] {
            background-color: #6fbf4c;
            padding: 12px 24px;
        }

/* Shared footer component, restyled for the dark background; its badges already appear in the badge strip */
[b-h6w5my8yxj] footer {
    max-width: 1080px;
    margin: auto;
    padding: 30px 0 0 0;
    color: gray;
    font-size: 10px;
    text-align: justify;
}

    [b-h6w5my8yxj] footer .images {
        display: none;
    }

    [b-h6w5my8yxj] footer a {
        color: lightgray;
    }

/* Responsive */
@media (max-width: 992px) {
    .reviews .review-cards[b-h6w5my8yxj] {
        grid-template-columns: repeat(2, 1fr);
    }

    .process .process-steps[b-h6w5my8yxj] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .offer-banner .offer-text[b-h6w5my8yxj] {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .hero[b-h6w5my8yxj] {
        padding: 20px 10px;
    }

        .hero .hero-container[b-h6w5my8yxj] {
            justify-content: center;
        }

    .warranty[b-h6w5my8yxj] {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

        .warranty img[b-h6w5my8yxj] {
            width: 130px;
            margin-top: -40px;
        }

    .badges[b-h6w5my8yxj] {
        gap: 1.5rem;
    }

        .badges img[b-h6w5my8yxj] {
            height: 60px;
        }

    .why h2[b-h6w5my8yxj],
    .process h2[b-h6w5my8yxj],
    .payment h2[b-h6w5my8yxj] {
        font-size: 2rem;
    }

    .why .why-gallery[b-h6w5my8yxj] {
        grid-template-columns: 1fr;
    }

    .gallery[b-h6w5my8yxj] {
        display: flex;
        flex-direction: column;
    }

        .gallery .gallery-large[b-h6w5my8yxj] {
            height: 320px;
        }

        .gallery .gallery-small-container[b-h6w5my8yxj] {
            flex-direction: row;
        }

            .gallery .gallery-small-container img[b-h6w5my8yxj] {
                height: 200px;
                flex: 1;
                width: 50%;
            }

    .site-footer .footer-links[b-h6w5my8yxj] {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .reviews .review-cards[b-h6w5my8yxj] {
        grid-template-columns: 1fr;
    }

    .process .process-steps[b-h6w5my8yxj] {
        grid-template-columns: 1fr;
    }

    .window-styles .window-icon[b-h6w5my8yxj] {
        width: 90px;
        height: 90px;
    }

    .window-styles .window-rollover[b-h6w5my8yxj] {
        font-size: 0.9rem;
    }
}
/* /Components/Pages/RBAM/RBAM.razor.rz.scp.css */
/* Header */
header[b-mikfodnkdb] {
    padding: 10px;
    text-align: center;
    color: #555555;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

    header .logo-container[b-mikfodnkdb] {
        display: flex;
        justify-content: space-around;
        align-items: center;
        gap: 16px;
    }

@media (max-width: 768px) {
    header .logo-container[b-mikfodnkdb] {
        flex-direction: column;
        gap: 0;
    }
}

header .logo-container img[b-mikfodnkdb] {
    height: 70px;
}

header small[b-mikfodnkdb] {
    font-family: 'Franklin Gothic', Arial, sans-serif;
    font-size: 0.7rem;
}

header .red[b-mikfodnkdb] {
    color: #dd5d22;
}

header sup[b-mikfodnkdb] {
    font-size: 0.5rem;
}

@media (max-width: 768px) {
    header small[b-mikfodnkdb] {
        font-size: 0.7rem;
        display: inline-block;
        line-height: 12px;
    }
}

/* Hero */
.hero[b-mikfodnkdb] {
    background-size: cover !important;
    background-color: gray !important;
    padding: 50px 10px;
}

    .hero .hero-container #offer[b-mikfodnkdb] {
        color: white;
        padding: 0 10px;
        margin-bottom: 20px;
        text-align: center;
    }

[b-mikfodnkdb] .hero .hero-container #offer h2 {
    font-size: 2rem;
    line-height: 1;
    margin: 0;
    margin-bottom: 5px;
}

[b-mikfodnkdb] .hero .hero-container #offer h1 {
    font-size: 5rem;
    line-height: 0.9;
    margin: 0;
    margin-bottom: 5px;
    text-shadow: 2px 2px 5px red;
}

[b-mikfodnkdb] .hero .hero-container #offer h1 sup {
    display: inline-block;
    transform: translateY(-24px);
}

[b-mikfodnkdb] .hero .hero-container #offer sup {
    font-size: 12px;
    margin-left: 5px;
}

.hero .hero-container .form-container[b-mikfodnkdb] {
    background-color: white;
    padding: 1rem;
    max-width: 450px;
    margin: auto;
    border-radius: 15px;
}

.hero .hero-container .payment-options[b-mikfodnkdb] {
    color: white;
    text-align: center;
    margin-top: 25px;
    font-size: 1.5rem;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

@media (max-width: 768px) {
    [b-mikfodnkdb] .hero .hero-container #offer h2 {
        font-size: 1.5rem;
    }

    [b-mikfodnkdb] .hero .hero-container #offer h1 {
        font-size: 4.3rem;
    }
}

/* Form Custom Styles */
[b-mikfodnkdb] form {
    --spacing: 0.5rem;
}

[b-mikfodnkdb] .form-step-heading {
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    color: #54585a;
}

[b-mikfodnkdb] .error {
    text-align: center;
    color: #b33c24;
    background-color: #f8d7da;
    margin-bottom: 6px;
    padding: 4px 0;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
}

[b-mikfodnkdb] .form-input-text,
[b-mikfodnkdb] .form-input-amount,
[b-mikfodnkdb] .form-input-select {
    border: 2px solid #777;
    padding: 0.7rem;
    border-radius: 8px;
}

[b-mikfodnkdb] .tcpa {
    font-size: 0.60rem;
    opacity: 0.5;
}

[b-mikfodnkdb] .form-btn {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.7rem;
    border-radius: 8px;
}

/* Section 1 */
.section-1[b-mikfodnkdb] {
    max-width: 1080px;
    padding: 20px 10px;
    margin: auto;
    text-align: center;
}

    .section-1 p[b-mikfodnkdb] {
        color: #555;
    }

        .section-1 p.quote[b-mikfodnkdb] {
            font-style: italic;
            font-size: 1.4rem;
        }

        .section-1 p.quote-credit[b-mikfodnkdb] {
            font-size: 1.3rem;
        }

    .section-1 small[b-mikfodnkdb] {
        color: #555;
        text-transform: uppercase;
    }

@media (max-width: 768px) {
    .section-1 p.quote[b-mikfodnkdb] {
        font-size: 1.25rem;
    }

    .section-1 p.quote-credit[b-mikfodnkdb] {
        font-size: 1.1rem;
    }
}

/* Section 2 */
.section-2[b-mikfodnkdb] {
    max-width: 1080px;
    margin: auto;
    text-align: center;
    color: #555;
    padding: 20px 10px;
}

    .section-2 .circles[b-mikfodnkdb] {
        display: flex;
        gap: 1rem;
        justify-content: center;
        align-items: center;
        margin-bottom: 10px;
    }

        .section-2 .circles .circle[b-mikfodnkdb] {
            height: auto;
            width: 140px;
        }

            .section-2 .circles .circle img[b-mikfodnkdb] {
                max-width: 100%;
                max-height: 100%;
            }

    .section-2 strong[b-mikfodnkdb] {
        font-size: 1.5rem;
    }

    .section-2 sup[b-mikfodnkdb] {
        font-size: 0.7rem;
    }

@media (max-width: 768px) {
    .section-2 .circles[b-mikfodnkdb] {
        gap: 1rem;
    }

    .section-2 strong[b-mikfodnkdb] {
        font-size: 1.3rem;
    }

    .section-2 small[b-mikfodnkdb] {
        font-size: 0.7rem;
    }
}

/* Section 3 */
.section-3[b-mikfodnkdb] {
    color: #555;
    background-color: #edf3ea;
    text-align: center;
    padding: 40px 10px;
}

    .section-3 .badge-container[b-mikfodnkdb] {
        max-width: 1080px;
        margin: auto;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

        .section-3 .badge-container .badge[b-mikfodnkdb] {
            flex: 0 0 calc((100% / 3) - 1rem);
        }

            .section-3 .badge-container .badge .badge-title[b-mikfodnkdb] {
                font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
            }

            .section-3 .badge-container .badge .img-container img[b-mikfodnkdb] {
                height: 70px;
                width: auto;
                padding: 10px;
            }

@media (max-width: 768px) {
    .section-3 .badge-container .badge[b-mikfodnkdb] {
        flex: 0 0 calc((100% / 2) - 1rem);
    }
}

/* Section 4 */
.section-4[b-mikfodnkdb] {
    background: url('/img/templates/rbam/hero-upgrade.webp') left center;
    background-size: cover;
    padding: 200px 10px;
    text-align: center;
    color: white;
}

    .section-4 .title[b-mikfodnkdb] {
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        font-size: 3rem;
    }

    .section-4 .text[b-mikfodnkdb] {
        font-size: 1.5rem;
        max-width: 500px;
        margin: 20px auto;
    }

    .section-4 .cta[b-mikfodnkdb] {
        background-color: #dd5d22;
        width: fit-content;
        margin: auto;
        border-radius: 8px;
        transition: all ease-in-out 0.25s;
    }

        .section-4 .cta:hover[b-mikfodnkdb] {
            background-color: #E6723C;
            transition: all ease-in-out 0.25s;
        }

        .section-4 .cta a[b-mikfodnkdb] {
            display: inline-block;
            color: white;
            text-decoration: none;
            font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
            font-size: 1.5rem;
            padding: 10px 25px;
        }

@media (max-width: 768px) {
    .section-4[b-mikfodnkdb] {
        padding: 100px 10px;
    }

        .section-4 .title[b-mikfodnkdb] {
            font-size: 2rem;
        }

        .section-4 .text[b-mikfodnkdb] {
            font-size: 1.25rem;
        }

        .section-4 .cta a[b-mikfodnkdb] {
            font-size: 1.25rem;
        }
}

/* Footer */
[b-mikfodnkdb] footer {
    max-width: 1080px;
    margin: auto;
    padding: 30px 10px;
}

/* Call */
.call[b-mikfodnkdb] {
    text-transform: uppercase;
    font-size: 12px;
    text-align: center;
}

    .call .green[b-mikfodnkdb] {
        color: #85ab61;
        font-size: 24px;
    }

.form-container .call[b-mikfodnkdb] {
    font-size: 16px;
    margin-top: 12px;
}
/* /Components/Pages/SideBySide/SideBySide-OS.razor.rz.scp.css */
main[b-eeqfebhf0r] {
    display: flex;
    min-height: 100vh;
}

.hero-section[b-eeqfebhf0r],
.form-section[b-eeqfebhf0r] {
    flex: 1;
    padding: 10px;
}

/* Hero Section */
.hero-section[b-eeqfebhf0r] {
    background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url("/img/templates/sidebyside/bg-house.webp");
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

    .hero-section .logo-container[b-eeqfebhf0r] {
        width: 100%;
        max-width: 200px;
    }

        .hero-section .logo-container img[b-eeqfebhf0r] {
            max-height: 100%;
            max-width: 100%;
        }

[b-eeqfebhf0r] .hero-section h1 {
    font-size: 60px;
    margin: 0 auto;
    max-width: 400px;
}

    [b-eeqfebhf0r] .hero-section h1 sup {
        font-size: .2em;
        vertical-align: top;
        margin-left: 6px;
    }

[b-eeqfebhf0r] .hero-section h2 {
    margin: 0 auto;
    font-size: 30px;
    font-weight: 400;
}

    [b-eeqfebhf0r] .hero-section h2 sup {
        font-size: .4em;
        vertical-align: top;
        margin-left: 3px;
    }

[b-eeqfebhf0r] .hero-section small {
    font-size: 10px;
}

/* Form Section */
.form-section[b-eeqfebhf0r] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .form-section .logo-container[b-eeqfebhf0r] {
        text-align: center;
        width: 100%;
        max-width: 120px;
        margin: auto;
    }

        .form-section .logo-container img[b-eeqfebhf0r] {
            max-width: 100%;
            max-height: 100%;
        }

    .form-section .main-container[b-eeqfebhf0r] {
        margin-top: auto;
        width: 100%;
    }

        .form-section .main-container h2[b-eeqfebhf0r] {
            color: #a78888;
            font-weight: 400;
            font-size: 18px;
            text-align: center;
        }

/* Form */
[b-eeqfebhf0r] .step-progress-container {
    width: 100%;
    max-width: 260px;
}

[b-eeqfebhf0r] form {
    width: 100%;
    margin: auto;
}

[b-eeqfebhf0r] .form-step-question {
    padding: 10px;
}

    [b-eeqfebhf0r] .form-step-question:nth-child(odd) {
        background-color: #f0f7ed;
    }

[b-eeqfebhf0r] .form-step-heading {
    color: #453e3c;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 18px;
}

[b-eeqfebhf0r] .form-btn {
    color: white;
}

/* Footer */
[b-eeqfebhf0r] footer {
    margin-top: auto;
}

    [b-eeqfebhf0r] footer p {
        font-size: 10px;
        opacity: 50% !important;
    }

/* Utilities */
.mobile-only[b-eeqfebhf0r] {
    display: none;
}

.desktop-only[b-eeqfebhf0r] {
    display: block;
}

/* Mobile */
@media (max-width: 768px) {
    main[b-eeqfebhf0r] {
        flex-direction: column;
    }

    .hero-section .logo-container[b-eeqfebhf0r] {
        max-width: 150px;
        margin-bottom: 10px;
        padding: 10px 10px 2px 10px;
        background-color: white;
    }

    [b-eeqfebhf0r] .hero-section h1 {
        font-size: 48px;
    }

    [b-eeqfebhf0r] .hero-section h2 {
        font-size: 26px;
    }

    .form-section .main-container[b-eeqfebhf0r] {
        margin-top: 0;
        margin-bottom: 50px;
    }

    .mobile-only[b-eeqfebhf0r] {
        display: block;
    }

    .desktop-only[b-eeqfebhf0r] {
        display: none;
    }
}
/* /Components/Pages/SideBySide/SideBySide.razor.rz.scp.css */
main[b-mlxw0jd5yr] {
    display: flex;
    min-height: 100vh;
}

.hero-section[b-mlxw0jd5yr],
.form-section[b-mlxw0jd5yr] {
    flex: 1;
}

/* Hero Section */
.hero-section[b-mlxw0jd5yr] {
    background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url("/img/templates/sidebyside/bg-house.webp");
    background-size: cover;
    background-position: center;
    padding: 10px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

    .hero-section .logo-container[b-mlxw0jd5yr] {
        width: 100%;
        max-width: 200px;
    }

        .hero-section .logo-container img[b-mlxw0jd5yr] {
            max-height: 100%;
            max-width: 100%;
        }

[b-mlxw0jd5yr] .hero-section h1 {
    font-size: 60px;
    margin: 0 auto;
    max-width: 400px;
}

    [b-mlxw0jd5yr] .hero-section h1 sup {
        font-size: .2em;
        vertical-align: top;
        margin-left: 6px;
    }

[b-mlxw0jd5yr] .hero-section h2 {
    margin: 0 auto;
    font-size: 30px;
    font-weight: 400;
}

    [b-mlxw0jd5yr] .hero-section h2 sup {
        font-size: .4em;
        vertical-align: top;
        margin-left: 3px;
    }

[b-mlxw0jd5yr] .hero-section small {
    font-size: 10px;
}

/* Form Section */
.form-section[b-mlxw0jd5yr] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .form-section .header-legal[b-mlxw0jd5yr] {
        color: #cccccc;
        background-color: #464646;
        width: 100%;
        font-size: 11px;
        text-align: center;
        padding: 3px;
    }

    .form-section .logo-container[b-mlxw0jd5yr] {
        text-align: center;
        width: 100%;
        max-width: 120px;
        margin: auto;
    }

        .form-section .logo-container img[b-mlxw0jd5yr] {
            max-width: 100%;
            max-height: 100%;
        }

    .form-section .main-container[b-mlxw0jd5yr] {
        padding: 10px;
        margin-top: auto;
        width: 100%;
    }

        .form-section .main-container h2[b-mlxw0jd5yr] {
            color: #a78888;
            font-weight: 400;
            font-size: 18px;
            text-align: center;
        }

/* Form */
[b-mlxw0jd5yr] .step-progress-container {
    width: 100%;
}

[b-mlxw0jd5yr] form {
    width: 100%;
    max-width: 375px;
    margin: auto;
}

[b-mlxw0jd5yr] .form-btn {
    color: white;
}

/* Footer */
[b-mlxw0jd5yr] footer {
    margin-top: auto;
    padding: 10px;
}

    [b-mlxw0jd5yr] footer p {
        font-size: 10px;
        opacity: 50% !important;
    }

    [b-mlxw0jd5yr] footer .disclaimer {
        margin-bottom: 0;
    }

/* Utilities */
.mobile-only[b-mlxw0jd5yr] {
    display: none;
}

.desktop-only[b-mlxw0jd5yr] {
    display: block;
}

/* Mobile */
@media (max-width: 768px) {
    main[b-mlxw0jd5yr] {
        flex-direction: column;
    }

    .hero-section .logo-container[b-mlxw0jd5yr] {
        max-width: 150px;
        margin-bottom: 10px;
        padding: 10px 10px 2px 10px;
        background-color: white;
    }

    [b-mlxw0jd5yr] .hero-section h1 {
        font-size: 48px;
    }

    [b-mlxw0jd5yr] .hero-section h2 {
        font-size: 26px;
    }

    .form-section .main-container[b-mlxw0jd5yr] {
        margin-top: 0;
        margin-bottom: 50px;
    }

    .mobile-only[b-mlxw0jd5yr] {
        display: block;
    }

    .desktop-only[b-mlxw0jd5yr] {
        display: none;
    }
}
/* /Components/Pages/Simple/Simple.razor.rz.scp.css */
.header-legal[b-3p344h28n1] {
    color: #ffffff;
    background-color: #4c4c4c;
    padding: 0.2rem 0 0.4rem 0;
    font-size: 0.7rem;
    line-height: 0.7rem;
    font-weight: 400;
    text-align: center;
}

.logo-container[b-3p344h28n1] {
    padding: 1rem;
    text-align: center;
}

.logo[b-3p344h28n1] {
    max-height: 65px;
}

.main-content[b-3p344h28n1] {
    padding: 1rem;
    margin-top: 2rem;
}

h1[b-3p344h28n1] {
    margin-top: 0;
    text-align: center;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 2rem;
}

/* Form Custom Styles */
[b-3p344h28n1] .form-container {
    margin-bottom: 7.5rem !important;
    margin-top: 2rem !important;
}

[b-3p344h28n1] .form-step-heading {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-transform: uppercase;
    text-align: center;
}

[b-3p344h28n1] #information {
    max-width: 480px;
    margin: auto;
}

[b-3p344h28n1] .error {
    text-align: center;
    color: #b33c24;
    background-color: #f8d7da;
    margin-bottom: 6px;
    padding: 4px 0;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
}

[b-3p344h28n1] .form-input-text,
[b-3p344h28n1] .form-input-amount,
[b-3p344h28n1] .form-input-select {
    border: 2px solid #777;
    padding: 0.7rem;
}

[b-3p344h28n1] .tcpa {
    font-size: 0.60rem;
    opacity: 0.5;
}

[b-3p344h28n1] .form-btn {
    color: white;
    font-size: 1rem;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-transform: uppercase;
    padding: 0.7rem;
}
/* /Components/Pages/Wiz/Wiz-Clear.razor.rz.scp.css */
main[b-2gh1lv0o8u] {
    background: url("/img/templates/wiz/bg-sunroom.webp") center center;
    background-size: cover;
    background-attachment: fixed;
}

.contents[b-2gh1lv0o8u] {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(255, 255, 255, 0.85);
}

.logo-container[b-2gh1lv0o8u] {
    background-color: white;
    padding: 1rem;
    text-align: center;
}

.logo[b-2gh1lv0o8u] {
    max-height: 65px;
}

.hero[b-2gh1lv0o8u] {
    width: 100%;
}

.main-content[b-2gh1lv0o8u] {
    padding: 1rem;
}

h1[b-2gh1lv0o8u] {
    margin-top: 20px;
    text-align: center;
    font-weight: 300;
    font-size: 2rem;
    line-height: 2rem;
}

/* Form Custom Styles */
[b-2gh1lv0o8u] .form-container {
    margin-bottom: 3rem !important;
}

[b-2gh1lv0o8u] .form-step-heading {
    font-size: 1.4rem;
    color: #54585a;
}

[b-2gh1lv0o8u] #information {
    max-width: 480px;
    margin: auto;
}

[b-2gh1lv0o8u] .error {
    text-align: center;
    color: #b33c24;
    background-color: #f8d7da;
    margin-bottom: 6px;
    padding: 4px 0;
    border: 1px solid #f5c6cb;
    border-radius: 3px;
}

[b-2gh1lv0o8u] .form-input-text,
[b-2gh1lv0o8u] .form-input-amount,
[b-2gh1lv0o8u] .form-input-select {
    border: 1px solid #ccc;
    box-shadow: inset 0 2px 2px rgb(0 0 0 / 8%);
    border-radius: 4px;
    padding: 0.7rem;
}

[b-2gh1lv0o8u] .tcpa {
    font-size: 0.60rem;
    opacity: 0.5;
}

[b-2gh1lv0o8u] .form-btn {
    color: white;
    font-size: 1rem;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-transform: uppercase;
    border-radius: 3px;
    padding: 0.7rem;
}
/* /Components/Pages/Wiz/Wiz-Door.razor.rz.scp.css */
main[b-0r8qq1w8ku] {
    background: url("/img/templates/wiz/bg-patio.webp") center center;
    background-size: cover;
    background-attachment: fixed;
}

.contents[b-0r8qq1w8ku] {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    background-color: #ffffff;
}

.header-legal[b-0r8qq1w8ku] {
    color: #4c4c4c;
    padding: 0.2rem;
    font-size: 0.7rem;
    line-height: 0.7rem;
    font-weight: 400;
    text-align: center;
}

.logo-container[b-0r8qq1w8ku] {
    padding: 1rem;
    text-align: center;
}

.logo[b-0r8qq1w8ku] {
    max-height: 65px;
}

.hero[b-0r8qq1w8ku] {
    width: 100%;
}

.main-content[b-0r8qq1w8ku] {
    padding: 1rem;
}

h1[b-0r8qq1w8ku] {
    margin-top: 0;
    text-align: center;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 2rem;
}

/* Form Custom Styles */
[b-0r8qq1w8ku] .form-container {
    margin-bottom: 3rem !important;
}

[b-0r8qq1w8ku] .form-step-heading {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-transform: uppercase;
    color: #54585a;
}

[b-0r8qq1w8ku] #information {
    max-width: 480px;
    margin: auto;
}

[b-0r8qq1w8ku] .error {
    text-align: center;
    color: #b33c24;
    background-color: #f8d7da;
    margin-bottom: 6px;
    padding: 4px 0;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
}

[b-0r8qq1w8ku] .form-input-text,
[b-0r8qq1w8ku] .form-input-amount,
[b-0r8qq1w8ku] .form-input-select {
    border: 2px solid #777;
    padding: 0.7rem;
}

[b-0r8qq1w8ku] .tcpa {
    font-size: 0.60rem;
    opacity: 0.5;
}

[b-0r8qq1w8ku] .form-btn {
    color: white;
    font-size: 1rem;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-transform: uppercase;
    padding: 0.7rem;
}
/* /Components/Pages/Wiz/Wiz-OS.razor.rz.scp.css */
main[b-7btljphaga] {
    background: url("/img/templates/wiz/bg-os-dark.webp") center center;
    background-size: cover;
    background-attachment: fixed;
}

#contents[b-7btljphaga] {
    background-color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
}

.logo[b-7btljphaga] {
    height: 65px;
    width: fit-content;
    margin: auto;
    padding: 10px;
}

    .logo img[b-7btljphaga] {
        max-height: 100%;
        max-width: 100%;
    }


.hero[b-7btljphaga] {
    width: 100%;
}

h1[b-7btljphaga] {
    text-align: center;
    font-size: 1.5rem;
}

p[b-7btljphaga] {
    text-align: center;
}

.form-container[b-7btljphaga], [b-7btljphaga] footer {
    padding: 0 1rem;
}

[b-7btljphaga] .error {
    text-align: center;
    color: #b33c24;
    background-color: #f8d7da;
    margin-bottom: 6px;
    padding: 4px 0;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
}

[b-7btljphaga] .form-step {
    padding: 1rem 0;
}

[b-7btljphaga] .form-step-heading {
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    color: #54585a;
}

[b-7btljphaga] .form-input-text,
[b-7btljphaga] .form-input-amount,
[b-7btljphaga] .form-input-select {
    border: 2px solid #777;
    padding: 0.7rem;
}

[b-7btljphaga] .form-btn-submit {
    color: white;
    font-weight: 600;
}

[b-7btljphaga] .appointments-header, [b-7btljphaga] .appointments-subheader {
    text-align: center;
}

[b-7btljphaga] .selected-appointment {
    font-size: 1.25rem;
    font-weight: 600;
    color: #152f17;
    background-color: #75fc7c;
    padding: 0.25rem;
    border-radius: 10px;
    text-align: center;
}

[b-7btljphaga] .disclaimer {
    margin-bottom: 0;
    padding-bottom: 12px;
}
/* /Components/Pages/Wiz/Wiz.razor.rz.scp.css */
main[b-hamul1cv3s] {
    background: url("/img/templates/wiz/bg-modern-kitchen.webp") center center;
    background-size: cover;
    background-attachment: fixed;
}

.contents[b-hamul1cv3s] {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    background-color: #ffffff;
}

.header-legal[b-hamul1cv3s] {
    color: #ffffff;
    background-color: #4c4c4c;
    padding: 0.2rem 0 0.4rem 0;
    font-size: 0.7rem;
    line-height: 0.7rem;
    font-weight: 400;
    text-align: center;
}

.logo-container[b-hamul1cv3s] {
    padding: 1rem;
    text-align: center;
}

.logo[b-hamul1cv3s] {
    max-height: 65px;
}

.hero[b-hamul1cv3s] {
    width: 100%;
}

.main-content[b-hamul1cv3s] {
    padding: 1rem;
}

h1[b-hamul1cv3s] {
    margin-top: 0;
    text-align: center;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 2rem;
}

/* Form Custom Styles */
[b-hamul1cv3s] .form-container {
    margin-bottom: 3rem !important;
}

[b-hamul1cv3s] .form-step-heading {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-transform: uppercase;
    color: #54585a;
}

[b-hamul1cv3s] #information {
    max-width: 480px;
    margin: auto;
}

[b-hamul1cv3s] .error {
    text-align: center;
    color: #b33c24;
    background-color: #f8d7da;
    margin-bottom: 6px;
    padding: 4px 0;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
}

[b-hamul1cv3s] .form-input-text,
[b-hamul1cv3s] .form-input-amount,
[b-hamul1cv3s] .form-input-select {
    border: 2px solid #777;
    padding: 0.7rem;
}

[b-hamul1cv3s] .tcpa {
    font-size: 0.60rem;
    opacity: 0.5;
}

[b-hamul1cv3s] .form-btn {
    color: white;
    font-size: 1rem;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-transform: uppercase;
    padding: 0.7rem;
}
