/* /Components/Layout/MainLayout.razor.rz.scp.css */

.scrollable-content[b-xrn2l5ebz8] {
    -webkit-overflow-scrolling: touch;
}
/* /Components/Layout/PinnedAdminSearch.razor.rz.scp.css */
/* Persistent context strip: genuinely sticky at the top of the page's scroll container
   (#mw-main-scroll), so the admin always sees which account they're viewing and can search from
   one place. The results dropdown is anchored to it and the page content scrolls beneath; the
   shadow + z-index make that read clearly. */
.pinned-admin-search-strip[b-sjynabrps5] {
    position: sticky;
    top: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 1rem;
    background: #fff;
    border-bottom: 1px solid #f1f0f1;
    box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.12);
}

/* On desktop the info stays a single line; if the fields overflow, scroll them horizontally rather
   than wrapping. (Mobile lets it wrap to two lines — see the media query.) */
.pinned-admin-search-info[b-sjynabrps5] {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0 1.25rem;
    font-size: 0.875rem;
    min-width: 0;
    flex: 1 1 auto;
    overflow-x: auto;
    line-height: 1.3;
    scrollbar-width: none;
}

.pinned-admin-search-info[b-sjynabrps5]::-webkit-scrollbar {
    display: none;
}

.pas-customer[b-sjynabrps5] {
    font-weight: 600;
    white-space: nowrap;
}

.pas-field[b-sjynabrps5] {
    white-space: nowrap;
}

.pas-label[b-sjynabrps5] {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.03em;
    color: #6b7280;
    margin-right: 0.35rem;
}

/* Search box wrapper — owns the sizing and the @onfocusin hook. The DxSearchBox inside is a child
   component, so reaching its root needs ::deep; it just fills the wrapper. */
.pinned-admin-search-boxwrap[b-sjynabrps5] {
    margin-left: auto;
    flex: 0 0 auto;
    width: 320px;
}

.pinned-admin-search-boxwrap[b-sjynabrps5]  .pinned-admin-search-bar-box {
    width: 100%;
}

.pinned-admin-search-selection[b-sjynabrps5] {
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1 1 auto;
    min-width: 0;
}

/* The magnifier toggle and the close button only exist on mobile (see the media query below). */
.pinned-admin-search-icon[b-sjynabrps5],
.pinned-admin-search-close[b-sjynabrps5] {
    display: none;
}

/* ---- Mobile (below lg = 992px) ---- */
@media (max-width: 991px) {
    /* Let the info wrap to two lines so the customer name AND address show, instead of a single
       horizontally-scrolling line that only revealed the name. Clipped past two lines. */
    .pinned-admin-search-info[b-sjynabrps5] {
        flex-wrap: wrap;
        overflow: hidden;
        max-height: 2.8em;
        row-gap: 0.1rem;
        column-gap: 0.9rem;
        font-size: 0.8rem;
    }

    /* Collapse the search box to a magnifier tap-target; the info keeps the full width. */
    .pinned-admin-search-icon[b-sjynabrps5] {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        margin-left: auto;
        width: 2.25rem;
        height: 2.25rem;
        padding: 0;
        border: 1px solid #d1d5db;
        border-radius: 0.375rem;
        background: #fff;
        color: #4b5563;
    }

    .pinned-admin-search-boxwrap[b-sjynabrps5] {
        display: none;
        width: auto;
        margin-left: 0;
    }

    /* Expanded: the search box takes the whole strip row; info + magnifier step aside, close shows. */
    .pas-search-open .pinned-admin-search-info[b-sjynabrps5],
    .pas-search-open .pinned-admin-search-selection[b-sjynabrps5],
    .pas-search-open .pinned-admin-search-icon[b-sjynabrps5] {
        display: none;
    }

    .pas-search-open .pinned-admin-search-boxwrap[b-sjynabrps5] {
        display: flex;
        align-items: center;
        flex: 1 1 auto;
        width: 100%;
    }

    .pas-search-open .pinned-admin-search-close[b-sjynabrps5] {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        width: 2rem;
        height: 2rem;
        padding: 0;
        border: none;
        background: transparent;
        color: #4b5563;
    }
}

/* Results dropdown: absolutely anchored to the sticky strip (top:100%), so it drops down right under
   the search box and rides with the strip as the page scrolls — never rendering off-screen at the top
   of the content. Kept in the DOM while a search is active; .is-open rolls it in/out. */
.pinned-admin-search-dropdown[b-sjynabrps5] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-top: none;
    border-radius: 0 0 0.375rem 0.375rem;
    box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.3);
    max-height: 60vh;
    overflow-y: auto;
    padding: 0.25rem 0.5rem 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transform-origin: top;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.pinned-admin-search-dropdown.is-open[b-sjynabrps5] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .pinned-admin-search-dropdown[b-sjynabrps5] {
        transition: none;
    }
}
/* /Components/Pages/Account/Pages/LoginPage.razor.rz.scp.css */
.hr-with-text[b-8rrt7pc712] {
    display: flex;
    align-items: center;
    text-align: center;
}

.hr-with-text hr[b-8rrt7pc712] {
    flex: 1;
    border: none;
    height: 1px;
    background-color: #000; /* Set the color of the horizontal line */
}

.hr-with-text span[b-8rrt7pc712] {
    padding: 0 10px;
    color: #000; /* Set the color of the text */
}
/* /Components/Pages/Account/Pages/RegisterPage.razor.rz.scp.css */
.hr-with-text[b-vibattifr6] {
    display: flex;
    align-items: center;
    text-align: center;
}

.hr-with-text hr[b-vibattifr6] {
    flex: 1;
    border: none;
    height: 1px;
    background-color: #000; /* Set the color of the horizontal line */
}

.hr-with-text span[b-vibattifr6] {
    padding: 0 10px;
    color: #000; /* Set the color of the text */
}
/* /Components/Pages/Account/Shared/ExternalSignInButton.razor.rz.scp.css */

.custom-sign-in-button[b-q4hvze1ip8] {
    height: 41px;
    width: 100%;
    border: 1px solid #747775;
}

.custom-sign-in-button:hover[b-q4hvze1ip8] {
    background-color: #efefef;
    border-color: #efefef;
}

.custom-sign-in-button-logo[b-q4hvze1ip8] {
    display: inline;
}

.custom-sign-in-button-text[b-q4hvze1ip8] {
    display: inline;
    font-family: 'Roboto', arial, sans-serif;
    font-weight: 500;
}
/* /Components/Pages/Admin/Shared/ParcelAdminView.razor.rz.scp.css */

.tax-id-number[b-jsefu4lcjs] {
    font-family: 'Open Sans', sans-serif;
    font-weight: 200; /* Light weight */
    font-size: 2rem;
}

.address[b-jsefu4lcjs] {
    font-family: 'Open Sans', sans-serif;
    font-weight: 200; /* Light weight */
    font-size: 1rem;
}
/* /Components/Pages/Home/Home.razor.rz.scp.css */

.vertical-center[b-wv6wt0pdqw] {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}


.homepageContent[b-wv6wt0pdqw]{
    background: linear-gradient(rgba(255, 255, 255, 0.70), rgba(255, 255, 255, 0.70));
    border-radius: 10px;
    margin: 5px;
} 
/* /Components/Pages/Incentives/Applications.razor.rz.scp.css */
.custom-card[b-ftkqjo9mf3] {
    background-color: #fff;
    border-radius: var(--card-border-radius);
    padding: var(--space-200);
}

.welcome-title[b-ftkqjo9mf3] {
    font-size: var(--font-size-500);
}

.applications-grid[b-ftkqjo9mf3] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .applications-grid[b-ftkqjo9mf3] {
        flex-direction: row;
    }

        .applications-grid .col-12:first-child[b-ftkqjo9mf3] {
            margin-left: auto;
        }

        .applications-grid .col-12:last-child[b-ftkqjo9mf3] {
            margin-right: auto;
        }
}
/* /Components/Pages/Incentives/FlipYourStrip/FlipYourStrip.razor.rz.scp.css */
@media (min-width: 768px) {
    .info-item ul[b-qf1688nkdh] {
        list-style: initial;
        padding-left: revert;
        padding-right: revert;
    }
}
/* /Components/Pages/Incentives/FlipYourStrip/FlipYourStripApplication.razor.rz.scp.css */
.review-grid .col-12:not(:first-child)[b-dwd71ctkv0] {
    margin-top: var(--space-200);
}

.review-label[b-dwd71ctkv0] {
    font-size: var(--font-size-50);
    margin-bottom: var(--space-25);
    color: var(--color-secondary);
}

.review-value[b-dwd71ctkv0] {
    font-size: var(--font-size-100);
}
/* /Components/Pages/Incentives/FlipYourStrip/FlipYourStripOverview.razor.rz.scp.css */
.col-12[b-h1ub6wumb3] {
    border-bottom: 1px solid #e0e0e0;
}

.application-title-container[b-h1ub6wumb3] {
    display: flex;
    align-items: center;
    gap: var(--space-200);
}

    .application-title-container h1[b-h1ub6wumb3] {
        font-family: 'Roboto', sans-serif;
        font-size: var(--font-size-500);
        font-weight: 700;
    }

.application-status-badge-container[b-h1ub6wumb3] {
    margin-top: var(--space-300);
    margin-bottom: var(--space-300);
}

[b-h1ub6wumb3] .dxbl-upload {
    padding-top: 0;
}

.appointment-title[b-h1ub6wumb3] {
    font-family: 'Roboto', sans-serif;
    font-size: var(--font-size-200);
    font-weight: 300;
}

.appointment-date[b-h1ub6wumb3] {
    font-size: var(--font-size-300);
    font-weight: 500;
}

.appointment-time[b-h1ub6wumb3] {
    font-size: var(--font-size-200);
    font-weight: 300;
}

.application-buttons[b-h1ub6wumb3] {
    display: flex;
    justify-content: space-between;
    font-size: var(--space-100);
}

    .application-buttons .application-button[b-h1ub6wumb3] {
        all: unset;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-50);
        padding: var(--space-50);
        text-decoration: none;
    }

        .application-buttons .application-button .button-icon-box[b-h1ub6wumb3] {
            width: var(--space-400);
            height: var(--space-400);
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: var(--card-border-radius);
            background-color: rgba(123, 91, 158, 0.15);
        }

        .application-buttons .application-button span[b-h1ub6wumb3] {
            text-align: center;
        }

[b-h1ub6wumb3] .dxbl-upload-select-btn {
    border-radius: var(--border-radius-pill);
}

    [b-h1ub6wumb3] .dxbl-upload-select-btn:only-child {
        width: 100%;
    }

    [b-h1ub6wumb3] .dxbl-upload-select-btn svg {
        display: none;
    }


@media (min-width: 576px) {
    .col-12[b-h1ub6wumb3] {
        padding-left: 15%;
        padding-right: 15%;
    }
}

@media (min-width: 768px) {
    .col-12[b-h1ub6wumb3] {
        padding-left: 22%;
        padding-right: 22%;
    }

    [b-h1ub6wumb3] .dxbl-carousel {
        height: var(--space-800) !important;
    }
}

@media (min-width: 992px) {
    .col-12[b-h1ub6wumb3] {
        padding-left: 12%;
        padding-right: 12%;
        border-bottom: none;
    }

    .container-fluid .row:nth-child(even)[b-h1ub6wumb3] {
        background-color: #f9f9f9;
    }

    .application-buttons[b-h1ub6wumb3] {
        flex-direction: column;
        justify-content: space-around;
        gap: var(--space-100);
    }

        .application-buttons .application-button[b-h1ub6wumb3] {
            flex-direction: row;
            gap: var(--space-100);
        }

    [b-h1ub6wumb3] .dxbl-carousel {
        height: var(--space-900) !important;
    }

    .application-section-divider[b-h1ub6wumb3] {
        border: solid 1px #e0e0e0;
    }

    .appointment-title[b-h1ub6wumb3] {
        font-size: var(--font-size-300);
    }

    .appointment-date[b-h1ub6wumb3] {
        font-size: var(--font-size-400);
    }

    .appointment-time[b-h1ub6wumb3] {
        font-size: var(--font-size-300);
    }
}

@media (min-width: 1200px) {
    .col-12[b-h1ub6wumb3] {
        padding-left: revert;
        padding-right: revert;
    }
}
/* /Components/Pages/Incentives/Incentives.razor.rz.scp.css */
.page-content[b-1m8b7x9oon] {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: var(--space-100);
}

.conservation-programs-list[b-1m8b7x9oon] {
    margin-top: var(--space-100);
    margin-bottom: var(--space-100);
}

.conservation-program[b-1m8b7x9oon] {
    margin-top: var(--space-100);
    margin-bottom: var(--space-100);
}

    .conservation-program a[b-1m8b7x9oon] {
        color: inherit;
    }

.landscape-lawn-exchange-logo[b-1m8b7x9oon] {
    max-width: 75%;
}

.smart-controller-logo[b-1m8b7x9oon] {
    max-width: 80%;
}

.low-flow-toilet-logo[b-1m8b7x9oon] {
    max-width: 60%;
}

.flip-your-strip-logo[b-1m8b7x9oon] {
    max-width: 75%;
}

.warm-season-lawn-logo[b-1m8b7x9oon] {
    max-width: 100%;
}

@media (min-width: 576px) {
    .landscape-lawn-exchange-logo[b-1m8b7x9oon] {
        max-width: 58%;
    }

    .smart-controller-logo[b-1m8b7x9oon] {
        max-width: 65%;
    }

    .low-flow-toilet-logo[b-1m8b7x9oon] {
        max-width: 45%;
    }

    .flip-your-strip-logo[b-1m8b7x9oon] {
        max-width: 60%;
    }

    .warm-season-lawn-logo[b-1m8b7x9oon] {
        max-width: 100%;
    }

    .conservation-program a[b-1m8b7x9oon] {
        gap: var(--space-200);
    }
}

@media (min-width: 768px) {
    .landscape-lawn-exchange-logo[b-1m8b7x9oon] {
        max-width: 80%;
    }

    .smart-controller-logo[b-1m8b7x9oon] {
        max-width: 100%;
    }

    .low-flow-toilet-logo[b-1m8b7x9oon] {
        max-width: 60%;
    }

    .flip-your-strip-logo[b-1m8b7x9oon] {
        max-width: 90%;
    }

    .warm-season-lawn-logo[b-1m8b7x9oon] {
        max-width: 100%;
    }

    .conservation-programs-list[b-1m8b7x9oon] {
        height: 100%;
    }
}

@media (min-width: 992px) {
    .landscape-lawn-exchange-logo[b-1m8b7x9oon] {
        max-width: 70%;
    }

    .smart-controller-logo[b-1m8b7x9oon] {
        max-width: 85%;
    }

    .low-flow-toilet-logo[b-1m8b7x9oon] {
        max-width: 55%;
    }

    .flip-your-strip-logo[b-1m8b7x9oon] {
        max-width: 75%;
    }

    .warm-season-lawn-logo[b-1m8b7x9oon] {
        max-width: 100%;
    }

    .conservation-program[b-1m8b7x9oon] {
        margin-top: 0;
        margin-bottom: 0;
    }

        .conservation-program a[b-1m8b7x9oon] {
            gap: var(--space-200);
        }
}

@media (min-width: 1200px) {
    .landscape-lawn-exchange-logo[b-1m8b7x9oon] {
        max-width: 85%;
    }

    .smart-controller-logo[b-1m8b7x9oon] {
        max-width: 100%;
    }

    .low-flow-toilet-logo[b-1m8b7x9oon] {
        max-width: 70%;
    }

    .flip-your-strip-logo[b-1m8b7x9oon] {
        max-width: 100%;
    }

    .warm-season-lawn-logo[b-1m8b7x9oon] {
        max-width: 100%;
    }

    .conservation-programs-list[b-1m8b7x9oon] {
        height: 100%;
        margin-top: var(--space-300);
        margin-bottom: 0;
    }

    .conservation-program[b-1m8b7x9oon] {
        justify-content: center;
        margin-top: var(--space-200);
        margin-bottom: var(--space-200);
    }

        .conservation-program a[b-1m8b7x9oon] {
            height: auto;
            gap: 0;
        }

        .conservation-program img[b-1m8b7x9oon] {
            height: var(--space-800);
        }
}

@media (min-width: 1400px) {
    .landscape-lawn-exchange-logo[b-1m8b7x9oon] {
        max-width: 75%;
    }

    .smart-controller-logo[b-1m8b7x9oon] {
        max-width: 100%;
    }

    .low-flow-toilet-logo[b-1m8b7x9oon] {
        max-width: 70%;
    }

    .flip-your-strip-logo[b-1m8b7x9oon] {
        max-width: 85%;
    }

    .warm-season-lawn-logo[b-1m8b7x9oon] {
        max-width: 50%;
    }
}
/* /Components/Pages/Incentives/LandscapeLawnExchange/LandscapeLawnExchange.razor.rz.scp.css */
.container-fluid[b-2qpvejb75l] {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

    .container-fluid .row:first-child[b-2qpvejb75l] {
        justify-content: center;
    }

h1[b-2qpvejb75l] {
    font-size: var(--font-size-500);
    font-weight: 700;
}

h2[b-2qpvejb75l] {
    font-size: var(--font-size-300);
    font-weight: 700;
}

.col-12[b-2qpvejb75l] {
    margin-top: var(--space-300);
    margin-bottom: var(--space-300);
}

.info-item[b-2qpvejb75l] {
    display: flex;
    justify-content: center;
}

    .info-item div[b-2qpvejb75l] {
        text-align: center;
    }

p[b-2qpvejb75l] {
    font-size: var(--font-size-100);
    margin-top: var(--space-100);
}

.program-logo[b-2qpvejb75l] {
    display: flex;
    justify-content: center;
}

    .program-logo img[b-2qpvejb75l] {
        max-width: 75%;
        max-height: 100%;
        height: auto;
        object-fit: contain;
    }

.title-content[b-2qpvejb75l] {
    display: flex;
    align-items: center;
}

    .title-content div[b-2qpvejb75l] {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

.program-title[b-2qpvejb75l] {
    display: none;
    color: #097c01;
}

.summary[b-2qpvejb75l] {
    font-size: var(--font-size-400);
    text-align: center;
    margin-top: var(--space-100);
}

.action-buttons a[b-2qpvejb75l] {
    color: var(--bs-primary);
}

@media (min-width: 576px) {
    .program-logo img[b-2qpvejb75l] {
        max-width: 55%;
    }
}

@media (min-width: 768px) {
    h1[b-2qpvejb75l] {
        font-size: var(--font-size-600);
    }

    h2[b-2qpvejb75l] {
        font-size: var(--font-size-400);
    }

    .program-title[b-2qpvejb75l] {
        display: initial;
        text-align: center;
    }

    .summary[b-2qpvejb75l] {
        text-align: start;
    }

    .program-logo img[b-2qpvejb75l] {
        max-width: 40%;
    }

    .title-content p[b-2qpvejb75l] {
        text-align: center;
    }

    .info-item[b-2qpvejb75l] {
        justify-content: start;
    }

        .info-item div[b-2qpvejb75l] {
            text-align: start;
        }
}

@media (min-width: 992px) {
    h1[b-2qpvejb75l] {
        font-size: var(--font-size-700);
    }

    h2[b-2qpvejb75l] {
        font-size: var(--font-size-500);
    }

    .info-items-list[b-2qpvejb75l] {
        margin-left: var(--space-300);
        margin-right: var(--space-300);
    }

    .program-logo img[b-2qpvejb75l] {
        max-width: 30%;
    }
}

@media (min-width: 1200px) {
    .info-items-list[b-2qpvejb75l] {
        margin-left: 0;
        margin-right: 0;
    }

    .program-logo img[b-2qpvejb75l] {
        max-width: 30%;
    }
}

@media (min-width: 1400px) {
    h1[b-2qpvejb75l] {
        font-size: var(--font-size-800);
    }

    h2[b-2qpvejb75l] {
        font-size: var(--font-size-600);
    }

    .container-fluid .row:first-child[b-2qpvejb75l] {
        justify-content: revert;
    }

    .info-items-list .info-item div[b-2qpvejb75l] {
        max-width: 90%;
    }

    .info-item[b-2qpvejb75l] {
        justify-content: center;
    }

    .program-logo img[b-2qpvejb75l] {
        max-width: 60%;
    }

    .title-content[b-2qpvejb75l] {
        max-width: 63.333%;
        margin-left: 1.666%;
    }

        .title-content div[b-2qpvejb75l] {
            display: inline-block;
            text-align: start;
        }

        .title-content p[b-2qpvejb75l] {
            text-align: start;
        }
}
/* /Components/Pages/Incentives/LandscapeLawnExchange/LandscapeLawnExchangeApplication.razor.rz.scp.css */
.review-grid .col-12:not(:first-child)[b-d5ghtlwn51] {
    margin-top: var(--space-200);
}

.review-label[b-d5ghtlwn51] {
    font-size: var(--font-size-50);
    margin-bottom: var(--space-25);
    color: var(--color-secondary);
}

.review-value[b-d5ghtlwn51] {
    font-size: var(--font-size-100);
}
/* /Components/Pages/Incentives/LandscapeLawnExchange/LandscapeLawnExchangeOverview.razor.rz.scp.css */
.col-12[b-g8z57a01tr] {
    border-bottom: 1px solid #e0e0e0;
}

.application-title-container[b-g8z57a01tr] {
    display: flex;
    align-items: center;
    gap: var(--space-200);
}

    .application-title-container h1[b-g8z57a01tr] {
        font-family: 'Roboto', sans-serif;
        font-size: var(--font-size-500);
        font-weight: 700;
    }

.application-status-badge-container[b-g8z57a01tr] {
    margin-top: var(--space-300);
    margin-bottom: var(--space-300);
}

[b-g8z57a01tr] .dxbl-upload {
    padding-top: 0;
}

.appointment-title[b-g8z57a01tr] {
    font-family: 'Roboto', sans-serif;
    font-size: var(--font-size-200);
    font-weight: 300;
}

.appointment-date[b-g8z57a01tr] {
    font-size: var(--font-size-300);
    font-weight: 500;
}

.appointment-time[b-g8z57a01tr] {
    font-size: var(--font-size-200);
    font-weight: 300;
}

.application-buttons[b-g8z57a01tr] {
    display: flex;
    justify-content: space-between;
    font-size: var(--space-100);
}

    .application-buttons .application-button[b-g8z57a01tr] {
        all: unset;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-50);
        padding: var(--space-50);
        text-decoration: none;
    }

        .application-buttons .application-button .button-icon-box[b-g8z57a01tr] {
            width: var(--space-400);
            height: var(--space-400);
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: var(--card-border-radius);
            background-color: rgba(123, 91, 158, 0.15);
        }

        .application-buttons .application-button span[b-g8z57a01tr] {
            text-align: center;
        }

[b-g8z57a01tr] .dxbl-upload-select-btn {
    border-radius: var(--border-radius-pill);
}

    [b-g8z57a01tr] .dxbl-upload-select-btn:only-child {
        width: 100%;
    }

    [b-g8z57a01tr] .dxbl-upload-select-btn svg {
        display: none;
    }


@media (min-width: 576px) {
    .col-12[b-g8z57a01tr] {
        padding-left: 15%;
        padding-right: 15%;
    }
}

@media (min-width: 768px) {
    .col-12[b-g8z57a01tr] {
        padding-left: 22%;
        padding-right: 22%;
    }

    [b-g8z57a01tr] .dxbl-carousel {
        height: var(--space-800) !important;
    }
}

@media (min-width: 992px) {
    .col-12[b-g8z57a01tr] {
        padding-left: 12%;
        padding-right: 12%;
        border-bottom: none;
    }

    .container-fluid .row:nth-child(even)[b-g8z57a01tr] {
        background-color: #f9f9f9;
    }

    .application-buttons[b-g8z57a01tr] {
        flex-direction: column;
        justify-content: space-around;
        gap: var(--space-100);
    }

        .application-buttons .application-button[b-g8z57a01tr] {
            flex-direction: row;
            gap: var(--space-100);
        }

    [b-g8z57a01tr] .dxbl-carousel {
        height: var(--space-900) !important;
    }

    .application-section-divider[b-g8z57a01tr] {
        border: solid 1px #e0e0e0;
    }

    .appointment-title[b-g8z57a01tr] {
        font-size: var(--font-size-300);
    }

    .appointment-date[b-g8z57a01tr] {
        font-size: var(--font-size-400);
    }

    .appointment-time[b-g8z57a01tr] {
        font-size: var(--font-size-300);
    }
}

@media (min-width: 1200px) {
    .col-12[b-g8z57a01tr] {
        padding-left: revert;
        padding-right: revert;
    }
}
/* /Components/Pages/Incentives/LowFlowToilets.razor.rz.scp.css */
.container-fluid[b-kpzybare8h] {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

    .container-fluid .row:first-child[b-kpzybare8h] {
        justify-content: center;
    }

h1[b-kpzybare8h] {
    font-size: var(--font-size-500);
    font-weight: 700;
}

h2[b-kpzybare8h] {
    font-size: var(--font-size-300);
    font-weight: 700;
}

.col-12[b-kpzybare8h] {
    margin-top: var(--space-300);
    margin-bottom: var(--space-300);
}

.info-item[b-kpzybare8h] {
    display: flex;
    justify-content: center;
}

    .info-item div[b-kpzybare8h] {
        text-align: center;
    }

p[b-kpzybare8h] {
    font-size: var(--font-size-100);
    margin-top: var(--space-100);
}

.program-logo[b-kpzybare8h] {
    display: flex;
    justify-content: center;
}

    .program-logo img[b-kpzybare8h] {
        max-width: 60%;
        max-height: 100%;
        height: auto;
        object-fit: contain;
    }

.title-content[b-kpzybare8h] {
    display: flex;
    align-items: center;
}

    .title-content div[b-kpzybare8h] {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

.program-title[b-kpzybare8h] {
    display: none;
    color: #097c01;
}

.summary[b-kpzybare8h] {
    font-size: var(--font-size-400);
    text-align: center;
    margin-top: var(--space-100);
}

[b-kpzybare8h] .btn-apply {
    width: var(--space-800);
    height: var(--space-400);
    border-radius: var(--border-radius-pill);
    margin-top: var(--space-100);
}

@media (min-width: 576px) {
    .program-logo img[b-kpzybare8h] {
        max-width: 40%;
    }
}

@media (min-width: 768px) {
    h1[b-kpzybare8h] {
        font-size: var(--font-size-600);
    }

    h2[b-kpzybare8h] {
        font-size: var(--font-size-400);
    }

    .program-title[b-kpzybare8h] {
        display: initial;
        text-align: center;
    }

    .summary[b-kpzybare8h] {
        text-align: start;
    }

    .program-logo img[b-kpzybare8h] {
        max-width: 75%;
    }

    .title-content div[b-kpzybare8h] {
        display: inline-block;
        text-align: start;
    }

    .info-items-list[b-kpzybare8h] {
        margin-left: var(--space-300);
        margin-right: var(--space-300);
    }

    .info-item[b-kpzybare8h] {
        justify-content: start;
    }

        .info-item div[b-kpzybare8h] {
            text-align: start;
        }

    .info-items-list .info-item:first-of-type div[b-kpzybare8h] {
        max-width: 70%;
    }
}

@media (min-width: 992px) {
    h1[b-kpzybare8h] {
        font-size: var(--font-size-700);
    }

    h2[b-kpzybare8h] {
        font-size: var(--font-size-500);
    }

    .program-logo img[b-kpzybare8h] {
        max-width: 80%;
    }
}

@media (min-width: 1200px) {
    .info-item[b-kpzybare8h] {
        justify-content: center;
    }

    .program-logo img[b-kpzybare8h] {
        max-width: 70%;
    }
}

@media (min-width: 1400px) {
    h1[b-kpzybare8h] {
        font-size: var(--font-size-800);
    }

    h2[b-kpzybare8h] {
        font-size: var(--font-size-600);
    }

    .program-logo img[b-kpzybare8h] {
        max-width: 60%;
    }
}
/* /Components/Pages/Incentives/Shared/ActionCard.razor.rz.scp.css */
.action-card[b-imrhrhi8tj] {
    min-height: 164px;
    width: auto;
    display: flex;
    flex-direction: column;
    padding-top: var(--space-100);
    padding-bottom: var(--space-100);
    padding-left: var(--space-50);
    padding-right: var(--space-50);
}

    .action-card .top-row[b-imrhrhi8tj] {
        display: flex;
        gap: var(--space-300);
    }

        .action-card .top-row h2[b-imrhrhi8tj] {
            font-family: 'Roboto', sans-serif;
            font-size: var(--font-size-300);
            font-weight: 700;
        }

        .action-card .top-row .title-section-subtitle[b-imrhrhi8tj] {
            font-family: 'Roboto', sans-serif;
            font-size: var(--font-size-100);
            margin-top: var(--space-75);
            font-weight: 300;
        }

        .action-card .top-row .icon-box[b-imrhrhi8tj] {
            min-width: var(--space-400);
            max-width: var(--space-400);
            min-height: var(--space-400);
            max-height: var(--space-400);
            border-radius: var(--card-border-radius);
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: rgba(123, 91, 158, 0.15);
        }

            .action-card .top-row .icon-box .action-card-icon[b-imrhrhi8tj] {
                width: var(--space-200);
                height: var(--space-200);
            }

    .action-card .bottom-row[b-imrhrhi8tj] {
        margin-top: var(--space-300);
        margin-bottom: 0;
        background-color: #fff;
    }

        .action-card .bottom-row .no-action-message[b-imrhrhi8tj] {
            margin-left: var(--space-500);
            padding-left: var(--space-100);
            font-size: var(--font-size-100);
            font-weight: 600;
        }

    .action-card .action-content[b-imrhrhi8tj] {
        border: solid 1px rgba(114, 114, 114, 0.2);
        border-radius: 12px;
        padding: var(--space-100);
    }

[b-imrhrhi8tj] .action-card-primary-btn {
    border-radius: var(--border-radius-pill);
}

/* If there is only one button, make it full width */
[b-imrhrhi8tj] .action-card-buttons button:only-child {
    width: 100%;
}


@media (min-width: 768px) {
    .action-card .top-row h2[b-imrhrhi8tj] {
        font-size: var(--font-size-400);
    }

    .action-card .top-row .title-section-subtitle[b-imrhrhi8tj] {
        font-size: var(--font-size-200);
    }
}

@media (min-width: 992px) {
    .action-card[b-imrhrhi8tj] {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

        .action-card .top-row[b-imrhrhi8tj] {
            width: 40%;
        }

            .action-card .top-row h2[b-imrhrhi8tj] {
                font-size: var(--font-size-500);
            }

            .action-card .top-row .title-section-subtitle[b-imrhrhi8tj] {
                font-size: var(--font-size-300);
                margin-top: var(--space-100);
            }

        .action-card .bottom-row[b-imrhrhi8tj] {
            min-width: 50%;
            max-width: 50%;
            margin-top: 0;
        }

        .action-card .action-content[b-imrhrhi8tj] {
            padding: var(--space-200);
        }
}

@media (min-width: 1200px) {
    .action-card[b-imrhrhi8tj] {
        justify-content: space-around;
    }

        .action-card .top-row[b-imrhrhi8tj] {
            width: 35%;
        }

        .action-card .bottom-row[b-imrhrhi8tj] {
            min-width: 40%;
            max-width: 40%;
        }
}
/* /Components/Pages/Incentives/Shared/ApplicationCard.razor.rz.scp.css */
.custom-card[b-th7cbmp8qu] {
    background-color: #fff;
    border-radius: var(--card-border-radius);
    padding: var(--space-200);
    height: 312px;
}

    .custom-card .address-title[b-th7cbmp8qu] {
        font-size: var(--font-size-300);
        font-weight: bold;
        margin-bottom: var(--space-50);
    }

.flip-your-strip-logo[b-th7cbmp8qu] {
    width: 220px;
}

@media (min-width: 340px) {
    .flip-your-strip-logo[b-th7cbmp8qu] {
        width: 280px;
    }
}
/* /Components/Pages/Incentives/Shared/AppointmentSelector.razor.rz.scp.css */
[b-g1upwdlwo4] .icon-arrow-left-circle-fill,
[b-g1upwdlwo4] .icon-arrow-right-circle-fill {
    background-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    background-position: center center;
    background-color: currentColor;
    height: 24px;
    width: 24px;
    opacity: 0.7;
}

[b-g1upwdlwo4] .icon-arrow-left-circle-fill {
    -webkit-mask-image: url("/icons/bootstrap/arrow-left-circle-fill.svg");
    mask-image: url("/icons/bootstrap/arrow-left-circle-fill.svg");
}

[b-g1upwdlwo4] .icon-arrow-right-circle-fill {
    -webkit-mask-image: url("/icons/bootstrap/arrow-right-circle-fill.svg");
    mask-image: url("/icons/bootstrap/arrow-right-circle-fill.svg");
}

.appointment-selector[b-g1upwdlwo4] {
    display: flex;
    flex-direction: column;
    padding: var(--space-100);
}

.appointment-times[b-g1upwdlwo4] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-100);
    row-gap: var(--space-100);
    margin-top: var(--space-200);
}

.current-month-label[b-g1upwdlwo4] {
    font-size: var(--font-size-200);
    font-weight: 700;
}

.date-item[b-g1upwdlwo4] {
    display: flex;
    flex-direction: column;
    gap: var(--space-75);
}

    .date-item .day-of-week-label[b-g1upwdlwo4] {
        text-align: center;
        font-size: var(--font-size-50);
    }

.date-btn[b-g1upwdlwo4] {
    width: var(--space-400);
    height: var(--space-400);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

    .date-btn.selected[b-g1upwdlwo4] {
        color: var(--color-primary);
        background-color: rgba(95, 54, 141, 0.15);
    }

    .date-btn.disabled[b-g1upwdlwo4] {
        color: rgba(61, 59, 64, 0.5);
        cursor: not-allowed;
    }

    .date-btn:hover:not(.selected):not(.disabled)[b-g1upwdlwo4] {
        color: var(--color-secondary);
        background-color: rgba(61, 59, 64, 0.1);
    }

@media (min-width: 1200px) {
    .appointment-selector[b-g1upwdlwo4] {
        font-size: var(--font-size-100);
    }

    .current-month-label[b-g1upwdlwo4] {
        font-size: var(--font-size-300);
    }
}
/* /Components/Pages/Incentives/Shared/ContactInfoWizardSection.razor.rz.scp.css */
.review-grid .col-12:not(:first-child)[b-07id2p9ffo] {
    margin-top: var(--space-200);
}

.review-label[b-07id2p9ffo] {
    font-size: var(--font-size-50);
    margin-bottom: var(--space-25);
    color: var(--color-secondary);
}

.review-value[b-07id2p9ffo] {
    font-size: var(--font-size-100);
}
/* /Components/Pages/Incentives/Shared/VerticalProgressTracker/VerticalProgressTracker.razor.rz.scp.css */

.bi[b-ve4fxl7if0] {
    background-size: cover;
}

.bi-check-circle-fill[b-ve4fxl7if0] {
    background-image: url("/icons/bootstrap/check-circle-fill.svg?v=1");
}
/* /Components/Pages/Incentives/Shared/Wizard/PropertySection/PropertyWizardSection.razor.rz.scp.css */
.review-grid .col-12:not(:first-child)[b-9g3qr3u7tj] {
    margin-top: var(--space-200);
}

.review-label[b-9g3qr3u7tj] {
    font-size: var(--font-size-50);
    margin-bottom: var(--space-25);
    color: var(--color-secondary);
}

.review-value[b-9g3qr3u7tj] {
    font-size: var(--font-size-100);
}
/* /Components/Pages/Incentives/Shared/Wizard/Wizard.razor.rz.scp.css */
.wizard[b-dwjewq2xwn] {
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-left: var(--space-100);
    margin-right: var(--space-100);
    padding-left: var(--space-50);
    padding-right: var(--space-50);
    font-size: var(--font-size-100);
}

.wizard-title[b-dwjewq2xwn] {
    text-align: start;
    padding-top: var(--space-100);
    margin-top: var(--space-300);
    margin-bottom: var(--space-100);
}

.wizard-subtitle[b-dwjewq2xwn] {
    text-align: start;
    margin-bottom: var(--space-100);
}

.wizard-action-buttons[b-dwjewq2xwn] {
    margin-top: auto;
    padding-top: var(--space-400);
}

[b-dwjewq2xwn] .wizard-action-btn {
    width: 100%;
    border-radius: var(--border-radius-pill);
    margin-bottom: var(--space-100);
}

.wizard-stepper[b-dwjewq2xwn] {
    display: flex;
    justify-content: center;
}

    .wizard-stepper .wizard-stepper-circle[b-dwjewq2xwn] {
        width: 32px;
        height: 32px;
        border-radius: var(--border-radius-pill);
        background-color: #d9d9d9;
        font-size: 14px;
        color: #727272;
        font-weight: 700;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .wizard-stepper .wizard-stepper-circle.active[b-dwjewq2xwn] {
            background-color: #66a745;
            color: #fff;
        }

    .wizard-stepper .wizard-stepper-line[b-dwjewq2xwn] {
        flex-grow: 1;
        border: solid;
        color: #d9d9d9;
        border-width: 2px;
        margin-top: 15px;
        margin-bottom: 15px;
    }

        .wizard-stepper .wizard-stepper-line.active[b-dwjewq2xwn] {
            color: #66a745;
        }

    .wizard-stepper .wizard-step .wizard-stepper-label[b-dwjewq2xwn] {
        display: none;
    }

@media (min-width: 768px) {
    .wizard-content[b-dwjewq2xwn] {
        margin-left: 20%;
        margin-right: 20%;
    }
}

@media (min-width: 992px) {
    .wizard[b-dwjewq2xwn] {
        margin-left: 5%;
        margin-right: 5%;
        padding-top: var(--space-100);
        padding-bottom: var(--space-300);
    }

    .wizard-content[b-dwjewq2xwn] {
        display: flex;
        flex-direction: column;
        background-color: #fff;
        border-radius: var(--card-border-radius);
        padding-top: 3rem;
        padding-bottom: 2rem;
        padding-left: 3.5rem;
        padding-right: 3.5rem;
        margin-bottom: auto;
        margin-left: 30%;
        margin-right: 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        min-height: 80%;
        width: 70%;
        overflow-y: auto;
    }

    .wizard-stepper[b-dwjewq2xwn] {
        position: fixed;
        flex-direction: column;
        height: 50%;
        margin-top: var(--space-400);
        padding-top: var(--space-100);
    }

        .wizard-stepper .wizard-stepper-line[b-dwjewq2xwn] {
            margin-top: 0;
            margin-bottom: 0;
            margin-left: 14px;
            margin-right: 14px;
            max-width: 4px;
        }

        .wizard-stepper .wizard-step[b-dwjewq2xwn] {
            display: flex;
            align-items: center;
            gap: var(--space-100);
        }

            .wizard-stepper .wizard-step .wizard-stepper-label[b-dwjewq2xwn] {
                display: revert;
            }

    .wizard-title[b-dwjewq2xwn] {
        padding-top: 0;
        margin-top: 0;
    }
}

@media (min-width: 1200px) {
    .wizard-content[b-dwjewq2xwn] {
        margin-left: 28%;
        margin-right: 17%;
        width: 55%;
    }
}

@media (min-width: 1400px) {
    .wizard-content[b-dwjewq2xwn] {
        margin-left: 25%;
        margin-right: 25%;
        width: 50%;
    }
}
/* /Components/Pages/Incentives/SmartControllers.razor.rz.scp.css */
.container-fluid[b-nlzj1fmd13] {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

    .container-fluid .row:first-child[b-nlzj1fmd13] {
        justify-content: center;
    }

h1[b-nlzj1fmd13] {
    font-size: var(--font-size-500);
    font-weight: 700;
}

h2[b-nlzj1fmd13] {
    font-size: var(--font-size-300);
    font-weight: 700;
}

.col-12[b-nlzj1fmd13] {
    margin-top: var(--space-300);
    margin-bottom: var(--space-300);
}

.program-logo[b-nlzj1fmd13] {
    display: flex;
    justify-content: center;
}

    .program-logo img[b-nlzj1fmd13] {
        max-width: 80%;
        max-height: 100%;
        height: auto;
        object-fit: contain;
    }

.title-content[b-nlzj1fmd13] {
    display: flex;
    align-items: center;
}

    .title-content div[b-nlzj1fmd13] {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

.program-title[b-nlzj1fmd13] {
    display: none;
    color: #097c01;
}

.summary[b-nlzj1fmd13] {
    font-size: var(--font-size-400);
    text-align: center;
    margin-top: var(--space-100);
}

[b-nlzj1fmd13] .btn-apply {
    width: var(--space-800);
    height: var(--space-400);
    border-radius: var(--border-radius-pill);
    margin-top: var(--space-100);
}

.applying-is-easy[b-nlzj1fmd13] {
    font-size: var(--font-size-100);
}

    .applying-is-easy div[b-nlzj1fmd13] {
        text-align: center;
    }

    .applying-is-easy p[b-nlzj1fmd13] {
        margin-top: var(--space-100);
    }

.application-steps[b-nlzj1fmd13] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .application-steps h4[b-nlzj1fmd13] {
        text-align: center;
    }

    .application-steps ol[b-nlzj1fmd13] {
        display: inline-block;
        font-size: var(--font-size-100);
        margin-top: var(--space-100);
    }

    .application-steps li[b-nlzj1fmd13] {
        margin-top: var(--space-50);
        margin-bottom: var(--space-50);
    }

@media (min-width: 768px) {
    h1[b-nlzj1fmd13] {
        font-size: var(--font-size-600);
    }

    h2[b-nlzj1fmd13] {
        font-size: var(--font-size-400);
    }

    .program-title[b-nlzj1fmd13] {
        display: initial;
        text-align: center;
    }

    .summary[b-nlzj1fmd13] {
        text-align: start;
    }

    .program-logo img[b-nlzj1fmd13] {
        max-width: 70%;
    }

    .title-content div[b-nlzj1fmd13] {
        display: inline-block;
        text-align: start;
    }

    .applying-is-easy[b-nlzj1fmd13] {
        display: flex;
        justify-content: center;
    }

        .applying-is-easy div[b-nlzj1fmd13] {
            text-align: start;
            padding-right: var(--space-100);
        }

    .application-steps[b-nlzj1fmd13] {
        align-items: start;
    }

        .application-steps h4[b-nlzj1fmd13] {
            text-align: start;
        }
}

@media (min-width: 992px) {
    h1[b-nlzj1fmd13] {
        font-size: var(--font-size-700);
    }

    h2[b-nlzj1fmd13] {
        font-size: var(--font-size-500);
    }

    .program-logo img[b-nlzj1fmd13] {
        max-width: 80%;
    }

    .applying-is-easy div[b-nlzj1fmd13] {
        max-width: 80%;
    }
}

@media (min-width: 1200px) {
    .program-logo img[b-nlzj1fmd13] {
        max-width: 70%;
    }

    .applying-is-easy div[b-nlzj1fmd13] {
        max-width: 70%;
    }
}

@media (min-width: 1400px) {
    h1[b-nlzj1fmd13] {
        font-size: var(--font-size-800);
    }

    h2[b-nlzj1fmd13] {
        font-size: var(--font-size-600);
    }

    .program-logo img[b-nlzj1fmd13] {
        max-width: 60%;
    }

    .applying-is-easy div[b-nlzj1fmd13] {
        max-width: 60%;
    }
}
/* /Components/Pages/Incentives/WarmSeasonLawn/WarmSeasonLawn.razor.rz.scp.css */
.container-fluid[b-oqj712om3m] {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

    .container-fluid .row:first-child[b-oqj712om3m] {
        justify-content: center;
    }

h1[b-oqj712om3m] {
    font-size: var(--font-size-500);
    font-weight: 700;
}

h2[b-oqj712om3m] {
    font-size: var(--font-size-300);
    font-weight: 700;
}

.col-12[b-oqj712om3m] {
    margin-top: var(--space-300);
    margin-bottom: var(--space-300);
}

.info-item[b-oqj712om3m] {
    display: flex;
    justify-content: center;
}

    .info-item div[b-oqj712om3m] {
        text-align: center;
    }

p[b-oqj712om3m] {
    font-size: var(--font-size-100);
    margin-top: var(--space-100);
}

.program-logo[b-oqj712om3m] {
    display: flex;
    justify-content: center;
}

    .program-logo img[b-oqj712om3m] {
        max-width: 75%;
        max-height: 100%;
        height: auto;
        object-fit: contain;
    }

.title-content[b-oqj712om3m] {
    display: flex;
    align-items: center;
}

    .title-content div[b-oqj712om3m] {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

.program-title[b-oqj712om3m] {
    display: none;
    color: #097c01;
}

.summary[b-oqj712om3m] {
    font-size: var(--font-size-400);
    text-align: center;
    margin-top: var(--space-100);
}

.action-buttons a[b-oqj712om3m] {
    color: var(--bs-primary);
}

@media (min-width: 576px) {
    .program-logo img[b-oqj712om3m] {
        max-width: 55%;
    }
}

@media (min-width: 768px) {
    h1[b-oqj712om3m] {
        font-size: var(--font-size-600);
    }

    h2[b-oqj712om3m] {
        font-size: var(--font-size-400);
    }

    .program-title[b-oqj712om3m] {
        display: initial;
        text-align: center;
    }

    .summary[b-oqj712om3m] {
        text-align: start;
    }

    .program-logo img[b-oqj712om3m] {
        max-width: 40%;
    }

    .title-content p[b-oqj712om3m] {
        text-align: center;
    }

    .info-item[b-oqj712om3m] {
        justify-content: start;
    }

        .info-item div[b-oqj712om3m] {
            text-align: start;
        }
}

@media (min-width: 992px) {
    h1[b-oqj712om3m] {
        font-size: var(--font-size-700);
    }

    h2[b-oqj712om3m] {
        font-size: var(--font-size-500);
    }

    .info-items-list[b-oqj712om3m] {
        margin-left: var(--space-300);
        margin-right: var(--space-300);
    }

    .program-logo img[b-oqj712om3m] {
        max-width: 30%;
    }
}

@media (min-width: 1200px) {
    .info-items-list[b-oqj712om3m] {
        margin-left: 0;
        margin-right: 0;
    }

    .program-logo img[b-oqj712om3m] {
        max-width: 30%;
    }
}

@media (min-width: 1400px) {
    h1[b-oqj712om3m] {
        font-size: var(--font-size-800);
    }

    h2[b-oqj712om3m] {
        font-size: var(--font-size-600);
    }

    .container-fluid .row:first-child[b-oqj712om3m] {
        justify-content: revert;
    }

    .info-items-list .info-item div[b-oqj712om3m] {
        max-width: 90%;
    }

    .info-item[b-oqj712om3m] {
        justify-content: center;
    }

    .program-logo img[b-oqj712om3m] {
        max-width: 60%;
    }

    .title-content[b-oqj712om3m] {
        max-width: 63.333%;
        margin-left: 1.666%;
    }

        .title-content div[b-oqj712om3m] {
            display: inline-block;
            text-align: start;
        }

        .title-content p[b-oqj712om3m] {
            text-align: start;
        }
}
/* /Components/Pages/Meters/MetersPage.razor.rz.scp.css */

.tax-id-number[b-7xh03q9uck] {
    font-family: 'Open Sans', sans-serif;
    font-weight: 200; /* Light weight */
    font-size: 2rem;
}

.address[b-7xh03q9uck] {
    font-family: 'Open Sans', sans-serif;
    font-weight: 200; /* Light weight */
    font-size: 1rem;
}

.meters-layout[b-7xh03q9uck] {
    margin-bottom: var(--space-100);
}

@media (min-width: 768px) {
    .meters-layout[b-7xh03q9uck] {
        max-width: 90%;
    }
}

@media (min-width: 992px) {
    .meters-layout[b-7xh03q9uck] {
        max-width: 80%;
    }
}

@media (min-width: 1200px) {
    .meters-layout[b-7xh03q9uck] {
        max-width: 75%;
    }
}

@media (min-width: 1400px) {
    .meters-layout[b-7xh03q9uck] {
        max-width: 70%;
    }
}
/* /Components/Shared/Timeline.razor.rz.scp.css */

.bi[b-u5q4w65uvx] {
    background-size: cover;
}

.bi-check-circle-fill[b-u5q4w65uvx] {
    background-image: url("/icons/check-circle-fill.svg?v=1");
}
