/* /Components/AccountSelector.razor.rz.scp.css */
ul[b-st1ddyp8w1] {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    padding: 0.5rem;
    margin: 0;
    width: fit-content;
    overflow-x: auto;
    background: var(--bg-primary);
    border-radius: var(--round-border);
    box-shadow: var(--shadow-inset);
}

    li[b-st1ddyp8w1] {
        background-color: white;
        padding: 0.5rem;
        border-radius: var(--round-border);
    }   
/* /Components/CircleProgress.razor.rz.scp.css */
.circle-progress[b-v3wij4t624] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
/* /Components/CollapsePanel.razor.rz.scp.css */
div[b-mtso8tsdan] {
    display: block;
}

.collapse-panel[b-mtso8tsdan] {
    position: relative;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    overflow: hidden;
    transition: height 0.5s ease-in-out;
    border-bottom: 1px solid lightgray;
}

    .collapse-panel:first-child[b-mtso8tsdan] {
        border-top-left-radius: var(--round-border);
        border-top-right-radius: var(--round-border);
    }

    .collapse-panel:last-child[b-mtso8tsdan] {
        border-bottom-left-radius: var(--round-border);
        border-bottom-right-radius: var(--round-border);
        border: none;
    }

.collapse-header[b-mtso8tsdan] {
    padding: 1rem;
}

    .collapse-header[active][b-mtso8tsdan] {

    }

.collapse-content[b-mtso8tsdan] {
    display: block;
    max-height: 0;
    transition: max-height 0.5s ease-in-out;
}

    .collapse-content[active][b-mtso8tsdan] {
        max-height: 600px;
    }
/* /Components/InfiniteScroller.razor.rz.scp.css */
.scroller[b-i1vnx80fg7] {
    height: 100%;
    overflow-y: auto;
}
/* /Components/Spinner.razor.rz.scp.css */
.loader[b-k3h2veh1l0] {
    width: 32px;
    height: 32px;
    border: 5px solid black;
    border-radius: 50%;
    display: block;
    box-sizing: border-box;
    animation: rotation-b-k3h2veh1l0 1s linear infinite;
}

@keyframes rotation-b-k3h2veh1l0 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* /Components/Toast.razor.rz.scp.css */
.toast-message[b-o7mx2yulyu] {
    position: relative;
    background-color: white;
    width: 300px;
    margin: 0 auto;
    margin-bottom: 1rem;
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    pointer-events: initial;
    overflow: hidden;
}

    .toast-message button[b-o7mx2yulyu] {
        display: flex;
        background-color: transparent;
        outline: none;
        border: none;
        margin: 0;
        padding: 0;
        color: dimgray;
    }

.toast-content[b-o7mx2yulyu] {
    display: grid;
    align-items: center;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    padding: 1rem 0.5rem;
}

.toast-timer[b-o7mx2yulyu] {
    background-color: darkgray;
    height: 6px;
}

.toast-color[b-o7mx2yulyu] {
    height: 6px;
}

.toast-info .toast-color[b-o7mx2yulyu] {
    background-color: dodgerblue;
}

.toast-info .toast-icon[b-o7mx2yulyu] {
    color: dodgerblue;
}

    .toast-info .toast-icon[b-o7mx2yulyu]:before {
        content: "info"
    }

.toast-success .toast-color[b-o7mx2yulyu] {
    background-color: green;
}

.toast-success .toast-icon[b-o7mx2yulyu] {
    color: green;
}

    .toast-success .toast-icon[b-o7mx2yulyu]:before {
        content: "check_circle"
    }

.toast-warning .toast-color[b-o7mx2yulyu] {
    background-color: #FDDA0D;
}

.toast-warning .toast-icon[b-o7mx2yulyu] {
    color: #FDDA0D;
}

    .toast-warning .toast-icon[b-o7mx2yulyu]:before {
        content: "warning"
    }

.toast-error .toast-color[b-o7mx2yulyu] {
    background-color: red;
}

.toast-error .toast-icon[b-o7mx2yulyu] {
    color: red;
}

    .toast-error .toast-icon[b-o7mx2yulyu]:before {
        content: "dangerous"
    }
/* /Components/ToastManager.razor.rz.scp.css */
.toast-manager[b-2i9ym51626] {
    position: absolute;
    height: 100vh;
    width: 100vw;
    background-color: transparent;
    pointer-events: none;
    z-index: 99;
    padding-top: 1rem;
}
/* /Dialogs/ActionDialog.razor.rz.scp.css */
dialog[b-ih20d6csd5] {
    position: relative;
}

h1[b-ih20d6csd5] {
    margin: 0.5rem 0.5rem 0 0.5rem;
    font-size: 2rem;
    font-weight: bold;
}

.close-button[b-ih20d6csd5] {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    border: none;
    background: none;
    border-radius: 6px;
    height: 1.5rem;
    width: 1.5rem;
    padding: 0;
    transition: background-color ease-in-out 0.2s;
}

    .close-button:hover[b-ih20d6csd5] {
        background-color: lightgray;
    }
/* /Dialogs/DeliveryHistoryDialog.razor.rz.scp.css */
.layout[b-ikiq1fjf60] {
    min-width: 265px;
    position: relative;
    overflow: hidden;
}

.scroll-wrapper[b-ikiq1fjf60] {
    display: block;
    max-height: 400px;
    overflow-y: auto;
}

table[b-ikiq1fjf60] {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

table[b-ikiq1fjf60], thead[b-ikiq1fjf60], tr[b-ikiq1fjf60], th[b-ikiq1fjf60] {
    margin-top: 0;
    padding-top: 0;
}

th[b-ikiq1fjf60], thead[b-ikiq1fjf60] {
    border-block-end: 2px solid;
    background: whitesmoke;
}

th[b-ikiq1fjf60],
td[b-ikiq1fjf60] {
    border: 1px solid lightgrey;
    padding: 0.25rem 0.75rem;
}

thead th[b-ikiq1fjf60] {
    position: sticky;
    top: 0;
    z-index: 10;
}

th[align=right][b-ikiq1fjf60] {
    text-align: right;
}

.footer[b-ikiq1fjf60] {
    display: block;
    margin-top: 0.5rem;
}
    
    .footer p[b-ikiq1fjf60] {
        display: inline-block;
        font-weight: bold;
        font-size: 0.9rem;
    }

    .footer .btn[b-ikiq1fjf60] {
        float: right;
        padding: 0.25rem 0.5rem;
    }
/* /Dialogs/OrderGasDialog.razor.rz.scp.css */
.layout[b-89nj3rimgz] {
    display: flex;
    flex-direction: column;
    min-width: 380px;
}

label[b-89nj3rimgz] {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.5rem;
}

fieldset[b-89nj3rimgz], textarea[b-89nj3rimgz] {
    margin-bottom: 0.5rem;
}

fieldset label[b-89nj3rimgz] {
    display: block;
    margin: 0;
}

input[type=number][b-89nj3rimgz] {
    width: 100px;
}

p[b-89nj3rimgz] {
    margin: 0;
}

.btn[b-89nj3rimgz] {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0 0.5rem;
    font-size: 0.9rem;
}

.btn:not(.btn-cancel)[b-89nj3rimgz] {
    margin-left: auto;
}

.btn-cancel[b-89nj3rimgz] {
    background-color: red;
}

.footer[b-89nj3rimgz] {
    display: flex;
    flex-direction: row;
}
/* /Dialogs/PaymentDialog.razor.rz.scp.css */
.panels[b-w8nfp9qa03] {
    margin-bottom: 1rem;
}

.header-label[b-w8nfp9qa03] {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.item[b-w8nfp9qa03] {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.5rem;
}

.item-group[b-w8nfp9qa03] {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    overflow: hidden;
}
    
    .item-group:not(:last-of-type)[b-w8nfp9qa03] {
        margin-bottom: 0.5rem;
    }

    .item-group label[b-w8nfp9qa03] {
        margin-bottom: 0;
    }

.group[b-w8nfp9qa03] {
    display: flex;
    flex-direction: row;
}

.error[b-w8nfp9qa03] {
    color: red;
    margin: 0;
}

#cardnumber[b-w8nfp9qa03] {
    max-width: 192px;
}

#cardcvv[b-w8nfp9qa03] {
    max-width: 96px;
}

#cardmonth[b-w8nfp9qa03], #cardyear[b-w8nfp9qa03] {
    max-width: 128px;
}

#cardname[b-w8nfp9qa03], #achaccount[b-w8nfp9qa03], #achrouting[b-w8nfp9qa03] {
    max-width: 304px;
}

.ccfee[b-w8nfp9qa03] {
    text-align: center;
    font-size: 0.9rem;
}

.paylayout1[b-w8nfp9qa03] {
    margin-top: 0.25rem;
}

.paylayout2[b-w8nfp9qa03] {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
}

    .paylayout2 button[b-w8nfp9qa03] {
        padding: 0.5rem;
    }

    .paylayout2 p[b-w8nfp9qa03] {
        margin: 0;
    }

    .paylayout2 > :first-child[b-w8nfp9qa03] {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

        .paylayout2 > :first-child > *[b-w8nfp9qa03] {
            flex: 1;
        }

    .paylayout2 label[b-w8nfp9qa03] {
        display: flex;
        flex-direction: column;
    }

        .paylayout2 label.total[b-w8nfp9qa03] {
            font-size: 1rem;
        }

        .paylayout2 label.total > :last-child[b-w8nfp9qa03] {
            font-size: 1.5rem;
        }
/* /Layout/LoginLayout.razor.rz.scp.css */
main[b-bszwuzmokz] {
    height: 100vh;
    width: 100vw;
    padding-top: 1rem;
    overflow: hidden;
}

img[b-bszwuzmokz] {
    max-height: 200px;
    margin: 0 auto;
    margin-bottom: 1rem;
}

.panel[b-bszwuzmokz] {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    text-align: center;
    padding: 1rem 2rem;
    margin: 0 auto;
    background-color: white;
    overflow: hidden;
    max-height: 100%;
    transition: all linear 0.2s;
}

@media (min-width: 641px) {
    main[b-bszwuzmokz] {
        padding-top: 4rem;
        background-color: var(--bg-primary);
    }

    .panel[b-bszwuzmokz] {
        max-height: 80%;
        border-radius: var(--round-border);
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
main[b-8l4rqgo2dk] {
    overflow: hidden;
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    margin: 0;
    padding: 0;
    position: relative;
}

.wrapper[b-8l4rqgo2dk] {
    height: 100%;
    overflow: hidden;
}

@media (min-width: 641px) {
    .wrapper[b-8l4rqgo2dk] {
        margin-left: 200px;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
nav[b-qijbv6pm2p] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: absolute;
    transition: all linear 0.2s;
    background-color: var(--bg-primary);
    border-right: 1px solid white;
    box-shadow: var(--list-item-shadow);
    height: 100vh;
    width: 200px;
    z-index: 3;
}

header[b-qijbv6pm2p] {
    height: 100px;
    width: 100%;
    display: flex;
    justify-content: center;
}

    header img[b-qijbv6pm2p] {
        margin-top: 1rem;
        max-width: 100%;
        max-height: 100%;
        vertical-align: middle;
    }

footer[b-qijbv6pm2p] {
    font-size: 0.9rem;
}

    footer a[b-qijbv6pm2p], footer[b-qijbv6pm2p]  a {
        padding: 0.5rem 1rem !important;
        cursor: pointer;
    }

    footer a[b-qijbv6pm2p], footer[b-qijbv6pm2p]  a {
        margin-bottom: 0.25rem !important;
    }

ul[b-qijbv6pm2p] {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 0.25rem;
    list-style-type: none;
    overflow-y: auto;
    height: 100%;
    width: 100%;
    margin: 0;
    margin-top: 1rem;
    overflow: auto;
}

li[b-qijbv6pm2p], footer a[b-qijbv6pm2p], footer[b-qijbv6pm2p]  a {
    margin: 0 1rem;
}

    li[b-qijbv6pm2p]  a, footer a[b-qijbv6pm2p], footer[b-qijbv6pm2p]  a {
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
        padding: 1rem;
        align-items: center;
        text-decoration: none;
        color: black;
        border-radius: var(--round-border);
        transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
    }

        li[b-qijbv6pm2p]  a.active, footer[b-qijbv6pm2p]  a.active {
            color: #0081FF;
            background-color: lightgray;
        }

.collapsed[b-qijbv6pm2p] {
    translate: -100%;
}

.copyright[b-qijbv6pm2p], .version[b-qijbv6pm2p] {
    text-align: center;
    font-size: 0.7rem;
    margin-bottom: 0.25rem;
}

.navbar-toggler[b-qijbv6pm2p] {
    display: block;
    position: fixed;
    left: 200px;
    z-index: 4;
    transition: all linear 0.2s;
    background-color: var(--bg-primary);
    margin-left: -1px;
    border-radius: 0 6px 6px 0;
}

    .navbar-toggler.collapsed[b-qijbv6pm2p] {
        translate: -200px;
        background-color: white;
    }

    .navbar-toggler span[b-qijbv6pm2p] {
        font-size: 48px;
    }

.open-shade[b-qijbv6pm2p] {
    display: block;
    position: fixed;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.25);
}

    .open-shade.collapsed[b-qijbv6pm2p] {
        display: none;
    }

@media (min-width: 641px) {
/*    nav {
        position: static;
    }
*/
    .collapsed[b-qijbv6pm2p] {
        translate: none;
    }

    .navbar-toggler[b-qijbv6pm2p] {
        display: none;
    }

    .open-shade[b-qijbv6pm2p] {
        display: none;
    }
}

@media (hover: hover) {
    li[b-qijbv6pm2p]  a:hover, footer a:hover[b-qijbv6pm2p], footer[b-qijbv6pm2p]  a:hover {
        background-color: lightgray;
    }
}
/* /Pages/Account.razor.rz.scp.css */
.content[b-pyvimixuww] {
    height: 100%;
    padding: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

ul[b-pyvimixuww] {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

h2[b-pyvimixuww] {
    margin: 0;
    margin-bottom: 0.5rem;
}

p[b-pyvimixuww] {
    margin: 0;
}

#section-tanks[b-pyvimixuww] {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

#section-info[b-pyvimixuww] {
    text-align: center;
}

.panel[b-pyvimixuww] {
    background: var(--bg-primary);
    border-radius: var(--round-border);
    box-shadow: var(--shadow-inset);
    padding: 16px;
    overflow-y: auto;
}

.tank[b-pyvimixuww] {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
}

.tank-item[b-pyvimixuww] {
    display: block;
    width: 350px;
    background-color: white;
    overflow: hidden;
    border-radius: var(--round-border);
    padding-bottom: 0;
    box-shadow: var(--list-item-shadow);
    height: 100%;
}

.tank-item p[b-pyvimixuww] {
    margin: 0;
}

    .tank-item > div:first-child[b-pyvimixuww] {
        display: flex;
        flex-direction: row;
        padding: 0.5rem;
        padding-bottom: 0;
    }

    .tank-item > div:first-child > :first-child[b-pyvimixuww] {
        flex: 1;
    }

.button-group[b-pyvimixuww] {
    display: flex;
    flex-direction: row;
    text-align: center;
    border-top: 1px solid lightgray;
}

    .button-group a[b-pyvimixuww] {
        display: inline-block;
        flex: 1;
        padding: 0.5rem;
        text-decoration: none;
        transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
    }

        .button-group a:not(:first-child)[b-pyvimixuww] {
            border-left: 1px solid lightgray;
        }

.monitor-display[b-pyvimixuww] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
    font-size: 0.9rem;
}

@media (hover: hover) {
    .button-group a:hover[b-pyvimixuww] {
        background-color: lightgray;
    }
}

@media (min-width: 641px) {
    .panel[b-pyvimixuww] {
        max-width: fit-content;
    }

    #section-info[b-pyvimixuww] {
        text-align: left;
    }
}

@media (min-width: 764px) {
    .panel[b-pyvimixuww] {
        max-width: 764px;
    }
}

@media (min-width: 1114px) {
    .panel[b-pyvimixuww] {
        max-width: 1114px;
    }
}

@media (min-width: 1480px) {
    .panel[b-pyvimixuww] {
        max-width: 1480px;
    }
}
/* /Pages/Forgot.razor.rz.scp.css */
label[b-o6win13vpr] {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding-bottom: 1rem;
}

button[b-o6win13vpr] {
    width: 100%;
    min-height: 48px;
}

.recaptcha[b-o6win13vpr] {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.error[b-o6win13vpr] {
    color: red;
    text-align: center;
}
/* /Pages/History.razor.rz.scp.css */
section[b-v51g1x450c] {
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
}

label[b-v51g1x450c] {
    display: flex;
    flex-direction: column;
}

.control-group[b-v51g1x450c] {
    display: flex;
    flex-direction: row;
    width: 100%;
}

    .control-group .btn[b-v51g1x450c] {
        margin-left: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
    }

.panel[b-v51g1x450c] {
    overflow: hidden;
    border: 2px solid gray;
    border-radius: 6px;
    width: 100%;
    height: auto;
}

.content[b-v51g1x450c] {
    padding: 0.5rem;
}

.tran[b-v51g1x450c] {
    padding: .75rem 0;
}

    .tran:not(:last-child)[b-v51g1x450c] {
        border-bottom: 1px solid lightgray;
    }

.tran-info[b-v51g1x450c] {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 0.5rem;
}

.tran-lines[b-v51g1x450c] {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
    align-items: center;
    background-color: var(--bg-primary);
    border-radius: 6px;
    padding: 6px;
}

    .tran-lines .btn[b-v51g1x450c] {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

.tran-line[b-v51g1x450c] {
    display: grid;
    grid-template-columns: auto 1fr;
}

    .tran-line:not(:last-of-type)[b-v51g1x450c] {
        border-bottom: 1px solid lightgray;
    }

    .tran-line p[b-v51g1x450c] {
        margin: 0;
    }

        .tran-line p span[b-v51g1x450c] {
            font-size: 0.9rem;
        }

    .tran-line p:last-of-type[b-v51g1x450c] {
        margin-left: auto;
    }

.expand-arrow:not([data-expanded])[b-v51g1x450c]::after {
    content: '▶';
}

.expand-arrow[data-expanded][b-v51g1x450c]::after {
    content: '▼';
}

.date[b-v51g1x450c] {
    background-color: lightgray;
    font-size: 0.9rem;
    padding: 0 6px;
    border-radius: 6px;
}

.right[b-v51g1x450c] {
    text-align: right;
}

@media (min-width: 641px) {
    .panel[b-v51g1x450c] {
        max-width: 380px;
        max-height: 70vh;
    }

    section[b-v51g1x450c] {
        max-width: 380px;
        margin: 0 auto;
    }
}
/* /Pages/Login.razor.rz.scp.css */
.error[b-p2kb47ksou] {
    color: red;
    text-align: center;
}

.other-options[b-p2kb47ksou] {
    display: flex;
    flex-direction: row;
    margin-top: 1rem;
}

    .other-options a[b-p2kb47ksou] {
        flex: 1;
        text-align: center;
    }

form[b-p2kb47ksou] {
    display: flex;
    flex-direction: column;
}

label[b-p2kb47ksou] {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-bottom: 6px;
}

    label.remember-me[b-p2kb47ksou] {
        flex-direction: row;
        align-items: center;
        gap: 4px;
        margin-top: 0.5rem;
        margin-bottom: 0;
    }

button[b-p2kb47ksou] {
    min-height: 48px;
}
/* /Pages/Payments.razor.rz.scp.css */
.content[b-i9afgrro4u] {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
}

h2[b-i9afgrro4u] {
    text-align: center;
}

section[b-i9afgrro4u] {
    display: block;
}

.section-invoice[b-i9afgrro4u] {
    flex-grow: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.control-group button[b-i9afgrro4u] {
    outline: none;
    border: none;
    background-color: transparent;
    color: #0081FF;
    transition: all ease-in-out 0.2s;
}

    .control-group button[disabled][b-i9afgrro4u] {
        color: dimgray;
    }

ul[b-i9afgrro4u] {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    list-style-type: none;
    margin: 0;
    padding: 0;
    padding-bottom: 0.5rem;
    position: relative;
    gap: 0.5rem;
    border: 1px solid gray;
}

li[b-i9afgrro4u] {
    padding: 0 0.5rem;
    display: grid;
    grid-template-columns: 50px 1fr auto;
    align-items: center;
}

    li:not(:last-of-type)[b-i9afgrro4u] {
        border-bottom: 1px dashed black;
    }

    li input[inputmode=decimal][b-i9afgrro4u] {
        text-align: right;
        max-width: 100px;
        margin-right: 0;
    }

.invoice-list-header[b-i9afgrro4u] {
    padding: 0 1rem 0 0.5rem;
    display: grid;
    grid-template-columns: 50px 1fr auto;
    align-items: center;
    font-weight: bold;
    background-color: white;
    border: 1px solid gray;
    border-bottom: none;
}

p[b-i9afgrro4u] {
    margin: 0;
}

h2[b-i9afgrro4u] {
    display: block;
}

.indent[b-i9afgrro4u] {
    text-indent: 2rem;
}

.invoice-layout[b-i9afgrro4u] {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.invoice-list[b-i9afgrro4u] {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pay-total[b-i9afgrro4u] {
    display: flex;
    flex-direction: row;
    margin: 1rem 0;
    font-weight: bold;
}

    .pay-total > :first-child[b-i9afgrro4u] {
        flex-grow: 1;
    }

        .pay-total > :first-child :last-child[b-i9afgrro4u] {
            font-size: 1.5rem;
        }

button[b-i9afgrro4u] {
    margin: 0;
}

@media (min-width: 641px) {
    h2[b-i9afgrro4u] {
        text-align: left;
    }

    .invoice-layout[b-i9afgrro4u] {
        flex-direction: row;
    }

    .pay-total[b-i9afgrro4u] {
        margin: 0 2rem;
        flex-direction: column;
    }

        .pay-total > :first-child[b-i9afgrro4u] {
            flex-grow: 0;
        }
}
/* /Pages/Receipt.razor.rz.scp.css */
main[b-k1qklkyqjo] {
    background: var(--bg-primary);
    height: 100%;
}

img[b-k1qklkyqjo] {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 200px;
}

.pageheader[b-k1qklkyqjo] {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid lightgray;
}

    .pageheader a[b-k1qklkyqjo] {
        display: flex;
        flex-direction: row;
        text-decoration: none;
    }

    .pageheader > span[b-k1qklkyqjo] {
        display: block;
        font-size: 2rem;
        margin-left: 1rem;
    }

    .pageheader button[b-k1qklkyqjo] {
        display: flex;
        flex-direction: column;
        padding: 0.5rem;
        border-radius: var(--round-border);
        border: none;
        background: none;
        margin-left: auto;
    }

.content[b-k1qklkyqjo] {
    width: 400px;
    margin: 0 auto;
    margin-top: 32px;
    border-radius: var(--round-border);
    background: white;
    padding: 0.5rem;
}

    .content header[b-k1qklkyqjo] {
        margin-bottom: 1rem;
    }

    .content section[b-k1qklkyqjo] {

    }

        .content section hr[b-k1qklkyqjo] {
            margin: 0.5rem 0;
        }

        .content section p[b-k1qklkyqjo] {
            margin: 0;
        }

        .content section label[b-k1qklkyqjo] {
            display: flex;
            flex-direction: row;
        }

            .content section label :last-child[b-k1qklkyqjo] {
                flex: 1;
                text-align: right;
                font-weight: bold;
            }

    .content footer[b-k1qklkyqjo] {
        margin-top: 1rem;
        font-weight: bold;
        text-align: center;
    }

.paytotal[b-k1qklkyqjo] {
    font-size: 1.5rem;
    font-weight: bold;
    text-indent: 0.5rem;
}

@media print {
    main[b-k1qklkyqjo] {
        background: white;
    }
}
/* /Pages/Reset.razor.rz.scp.css */
label[b-85at9elrk4] {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding-bottom: 1rem;
}

.btn[b-85at9elrk4] {
    width: 100%;
    min-height: 48px;
}

.error[b-85at9elrk4] {
    color: red;
    text-align: left;
    font-size: 0.85rem;
}
/* /Pages/SelectAccount.razor.rz.scp.css */
main[b-szojsvkip2] {
    height: 100%;
    width: 100%;
    background-color: var(--bg-primary);
    overflow: hidden;
}

nav[b-szojsvkip2] {
    max-width: 400px;
    padding: 1rem 2rem;
    margin: 4rem auto;
    border-radius: var(--round-border);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: white;
    overflow: auto;
}

h1[b-szojsvkip2] {
    text-align: center;
}

a[b-szojsvkip2] {
    display: block;
    margin: 1rem;
    padding: 1rem;
    text-decoration: none;
    color: black;
    box-shadow: var(--list-item-shadow);
    border-radius: var(--round-border);
    transition: background-color ease-in-out 0.3s;
}

    a:hover[b-szojsvkip2] {
        background-color: lightgray;
    }

p[b-szojsvkip2] {
    margin: 0;
}

.scroller[b-szojsvkip2] {
    overflow-y: auto;
    min-height: 200px;
}
/* /Pages/Settings.razor.rz.scp.css */
label[b-h3p8w17tkl] {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding-bottom: 1rem;
}

button[b-h3p8w17tkl] {
    width: 100%;
    min-height: 48px;
}

h1[b-h3p8w17tkl] {
    text-align: center;
}

section:not(:last-of-type)[b-h3p8w17tkl] {
    border-bottom: 1px solid lightgray;
    margin-bottom: 1rem;
}

.page[b-h3p8w17tkl] {
    padding: 1rem;
}

.error[b-h3p8w17tkl] {
    color: red;
    text-align: center;
}

@media (min-width: 641px) {
    h1[b-h3p8w17tkl] {
        text-align: left;
    }

    form[b-h3p8w17tkl] {
        max-width: 300px;
    }
}
/* /Pages/Setup.razor.rz.scp.css */
label[b-zbq65xukyn] {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding-bottom: 1rem;
}

button[b-zbq65xukyn] {
    width: 100%;
    min-height: 48px;
}

.recaptcha[b-zbq65xukyn] {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.error[b-zbq65xukyn] {
    color: red;
    text-align: center;
}
