/* _content/bettERFramework/Components/Layout/HeaderMenu.razor.rz.scp.css */
/*::deep .e-btn, .e-btn:hover, .e-btn:focus, .e-btn:active {
    background-color: rgb(230,255,3) !important;
    border-color: transparent !important;
}

    ::deep .e-btn.e-primary:focus {
        border-color: transparent !important;
    }*/


/* Navigationsleiste ausklappen Icon - Icon hinzufügen*/
[b-rr6ac3mpup] .CustomSidebarDockOn::before {
    content: url("/Icons/Line-Arrow-Right-1--Streamline-Sharp-Remix.svg");
}

/* Navigationsleiste einklappen Icon - Icon hinzufügen */
[b-rr6ac3mpup] .CustomSidebarDockOff {
    content: url("/Icons/Delete-2--Streamline-Sharp-Remix.svg");
}

[b-rr6ac3mpup] .CustomGoPackInPage.e-btn-icon {
    content: url("/Icons/Line-Arrow-Move-Left-1--Streamline-Sharp-Remix.png");
    display: inline-block;
    width: 1em;
    height: 1em;
}




/* Settings Icon */
[b-rr6ac3mpup] .CustomSettingsIcon.e-btn-icon {
    content: url("/Icons/Cog--Streamline-Sharp-Remix.svg");
    display: inline-block;
    width: 1em;
    height: 1em;
}

/* Notifications Icon */
[b-rr6ac3mpup] .CustomNotificationsIcon.e-btn-icon {
    content: url("/Icons/Bell-Notification--Streamline-Sharp-Remix.svg");
    display: inline-block;
    width: 1em;
    height: 1em;
}


[b-rr6ac3mpup] .CustomToggleThemeIcon::before {
    content: url("/Icons/Megaphone-2--Streamline-Sharp-Remix.svg");
    display: inline-block;
    width: 1em;
    height: 1em;
}


/* Header oben in main-column (fixe Höhe) */
.header-row[b-rr6ac3mpup] {
    height: 5vh;
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 1rem !important;
    transition: box-shadow 200ms cubic-bezier(0.33, 1, 0.68, 1);
}
/* _content/bettERFramework/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-z035scfa9z] {
    display: flex;
    min-height: 100vh;
    height: 100vh; /* damit die Seite voll hoch geht */
    overflow: hidden; /* verhindert, dass rechts der Inhalt unter die Sidebar l�uft */
}

/* Hauptbereich rechts von der Sidebar */
.main-column[b-z035scfa9z] {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0; /* sehr wichtig: erlaubt, dass child overflow/scroll funktioniert */
    overflow: hidden;
}

/* Der eigentliche scrollbare Content-Bereich unter dem Header */
.main-area[b-z035scfa9z] {
    flex: 1 1 auto;
    min-height: 0; /* zwingend, sonst bricht flex-Scroll */
    overflow: auto; /* Inhalt scrollbar � bleibt rechts neben Sidebar */
    transition: background-color 0.3s, color 0.3s;
}

/* Artikel / Inhalt */
.content[b-z035scfa9z] {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

main[b-z035scfa9z] {
    flex: 1;
}


[b-z035scfa9z] .top-row {
    width: 100%;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    [b-z035scfa9z] .top-row ::deep a, .top-row[b-z035scfa9z]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

        [b-z035scfa9z] .top-row ::deep a:hover, .top-row[b-z035scfa9z]  .btn-link:hover {
            text-decoration: underline;
        }

        [b-z035scfa9z] .top-row ::deep a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }

@media (max-width: 640.98px) {
    .top-row[b-z035scfa9z] {
        justify-content: space-between;
    }

        .top-row[b-z035scfa9z]  a, .top-row[b-z035scfa9z]  .btn-link {
            margin-left: 0;
        }
}


@media (min-width: 641px) {
    .page[b-z035scfa9z] {
        flex-direction: row;
    }

    .top-row[b-z035scfa9z] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

        .top-row.auth[b-z035scfa9z]  a:first-child {
            flex: 1;
            text-align: right;
            width: 0;
        }

    .top-row[b-z035scfa9z], article[b-z035scfa9z] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-z035scfa9z] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-z035scfa9z] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/bettERFramework/Components/Layout/NavigationMenu.razor.rz.scp.css */

/*   Sidebar   */
/* Sidebar-Wrapper: nimmt genau so viel Platz ein wie die Sidebar-Komponente */


aside.sidebar-container[b-bk4f6iguti] {
    background-color: rgb(230, 255, 3) !important;
    min-height: 100vh;
    display: block !important;
}


[b-bk4f6iguti] .sidebar-container {
    flex: 0 0 auto; /* keine Flex-Vergrößerung, Breite wird von der Sidebar selbst bestimmt */
    box-sizing: border-box;
    z-index: 20; /* sicherstellen, dass Sidebar über dem Inhalt liegt, falls nötig */
    background-color: rgb(230,255,3) !important;
}


/* CUSTOM */
[b-bk4f6iguti] .e-sidebar {
    background: rgb(230,255,3) !important;
    overflow: hidden;
    box-sizing: border-box !important; /* sicherstellen, dass Padding mit width kooperiert */
    position: relative !important;
    z-index: 20 !important;
    background-color: rgb(230,255,3) !important;
}

    [b-bk4f6iguti] .e-sidebar.e-dock.e-close li.e-menu-item.e-menu-caret-icon span.e-icons.e-caret {
        visibility: hidden !important;
        display: none !important;
    }

    [b-bk4f6iguti] .e-sidebar.e-dock.e-close li.e-menu-item.e-menu-caret-icon {
        color: transparent !important;
    }

        [b-bk4f6iguti] .e-sidebar.e-dock.e-close li.e-menu-item.e-menu-caret-icon span.e-menu-icon {
            color: rgb(18,18,18) !important;
        }




/* Sidebar styles */
.e-sidebar .e-icons[b-bk4f6iguti]::before {
    font-size: 25px;
}

.e-sidebar.e-dock.e-close span.e-icons img[b-bk4f6iguti] {
    height: 30px;
    width: 30px;
    object-fit: contain;
    display: inline-block;
}

.e-sidebar .e-icons[b-bk4f6iguti] {
    margin-right: 5%;
}

.e-open .e-text[b-bk4f6iguti] {
    overflow: hidden;
    font-size: 15px;
}
/* end of sidebar styles */


/* NavMenu Seperator */
.CtmSidebarSeperator[b-bk4f6iguti] {
    background-color: rgb(20,52,74,0.75);
}




[b-bk4f6iguti] .e-menu-item e-menu-caret-icon span.e-menu-icon {
    height: 30px;
    width: 30px;
}


[b-bk4f6iguti] .CustomSettingsIcon::before {
    content: "";
    display: inline-flex;
    align-items: normal;
    justify-content: center;
    background-image: url("/Icons/User-Collaborate-Group--Streamline-Sharp-Remix.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 25px;
    width: 25px;

    vertical-align: top;
}


[b-bk4f6iguti] .CustomHomeIcon::before {
    content: "";
    display: inline-flex;
    align-items: normal;
    justify-content: center;
    background-image: url("/Icons/View-Document-Files--Streamline-Sharp-Remix.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 25px; /* ← Größe hier steuern */
    height: 25px;

    vertical-align: top;
}





/* ================================
   Sidebar + Docked Menu
================================ */

/* Docked Sidebar: MenuContainer passt sich DockSize an */
.e-sidebar.e-dock.e-close .e-menu-container[b-bk4f6iguti] {
    width: 100% !important; /* 100% der Sidebar */
}

    .e-sidebar.e-dock.e-close .e-menu-container > ul.e-menu[b-bk4f6iguti] {
        width: 100% !important;
    }

    /* LI-Elemente im Menu anpassen */
    .e-sidebar.e-dock.e-close .e-menu-container ul.e-menu li.e-menu-item[b-bk4f6iguti] {
        width: 100% !important;
        box-sizing: border-box; /* Padding berücksichtigt */
        padding-left: 5px; /* kleine Innenabstände */
    }

/* ================================
   General Menu Container
================================ */
/* Abstand zwischen einzelnen MenuItems*/
[b-bk4f6iguti] .e-menu.e-vertical > li.e-menu-item {
    margin-bottom: 10px;
}

[b-bk4f6iguti] .e-menu-container {
    background-color: rgb(230,255,3) !important;
}

.e-menu-container ul.e-vertical[b-bk4f6iguti] {
    min-width: 0px;
}

/* Entfernt die Scrollbar bei Hamburger-Menu */
[b-bk4f6iguti] .e-menu-container.e-hamburger ul.e-menu {
    overflow-y: hidden !important;
}

/* ================================
   Context Menu
================================ */

/* TODO: PopUp Border Farbe anpassen und Selektor finden */
[b-bk4f6iguti] .e-menu-container .e-contextmenu-container ul {
    border: rgba(10, 43, 255) !important;
}

/* ================================
   Menu Items
================================ */

/* Base Menu Items */
[b-bk4f6iguti] .e-menu-container .e-menu {
    color: rgb(18,18,18) !important;
}

    /* Focused (but not clicked) */
    [b-bk4f6iguti] .e-menu-container .e-menu .e-focused {
        color: rgba(18,18,18, 0.6) !important;
    }

    /* Selected Item (clicked) */
    [b-bk4f6iguti] .e-menu-container .e-menu .e-menu-item.e-selected {
        color: rgb(18,18,18) !important;
        background-color: transparent !important;
    }

    /* Focused Item */
    [b-bk4f6iguti] .e-menu-container .e-menu .e-menu-item.e-focused {
        background-color: transparent !important;
    }

/* Hovered SubItem */
[b-bk4f6iguti] .e-menu-container .e-ul .e-menu-item.e-focused {
    color: rgb(253,252,252) !important;
    background-color: rgba(10, 43, 255, 0.7) !important;
}

/* Background of SubItems */
[b-bk4f6iguti] .e-menu-container .e-ul .e-menu-item {
    color: rgb(18,18,18) !important;
    background-color: rgb(230,255,3) !important;
}




/* ================================
   Navigatable Menu Items
================================ */


/* Normal (not hovered/selected) Menu Item (Also Sub items) */
[b-bk4f6iguti] .e-menu-container .e-menu .e-menu-item.e-navigable .e-menu-text.e-menu-url {
    color: rgb(18,18,18) !important;
}


/* Hovered SubItems */
[b-bk4f6iguti] .e-menu-container .e-ul .e-menu-item.e-navigable.e-focused .e-menu-text.e-menu-url {
    color: rgb(253,252,252) !important;
}

[b-bk4f6iguti] .e-menu-container .e-menu-item.e-navigable.e-focused .e-menu-text.e-menu-url {
    color: rgb(18,18,18, 0.6) !important;
}



[b-bk4f6iguti] .e-list-text {
    color: rgb(18,18,18);
}

[b-bk4f6iguti] .e-treeview .e-ul {
    overflow: hidden !important;
}
/* _content/bettERFramework/Rechnungsverarbeitung/Components/Pages/Credentials.razor.rz.scp.css */
body[b-o03zs6dp6x] {

}

.config-grid[b-o03zs6dp6x] {
    display: grid;
    grid-template-columns: 1fr 1fr; /* IMAP | SFTP */
    gap: 16px;
    align-items: start;
}

/* Optional: wenn Bildschirm schmal -> untereinander */
@media (max-width: 1100px) {
    .config-grid[b-o03zs6dp6x] {
        grid-template-columns: 1fr;
    }
}

/* Zeile: Label | Input in EINER Zeile */
.cfg-row[b-o03zs6dp6x] {
    display: grid;
    grid-template-columns: 160px 1fr; /* Label | Input */
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

/* Label links */
.cfg-label[b-o03zs6dp6x] {
    font-weight: 600;
    white-space: nowrap;
}

/* Input rechts */
.cfg-input[b-o03zs6dp6x] {
    width: 100%;
    min-width: 0;
}

/* Checkbox */
.cfg-check[b-o03zs6dp6x] {
    margin: 0;
    transform: scale(1.05);
}

.form-check-input:checked[b-o03zs6dp6x] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e") !important;
}

.form-check-input:checked[b-o03zs6dp6x] {
    background-color: #e6ff03;
    border-color: #e6ff03;
    color: black;
}

.cfg-input--check[b-o03zs6dp6x] {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 38px; /* gleiche Zeilenhöhe wie Textboxen */
}

/* Ganz wichtig: Checkbox muss Klicks bekommen */
.cfg-check[b-o03zs6dp6x] {
    position: relative;
    z-index: 2;
    pointer-events: auto;
    margin: 0;
}

/* Label soll auch klickbar sein */
.cfg-label[b-o03zs6dp6x] {
    cursor: pointer;
}
/* _content/bettERFramework/Rechnungsverarbeitung/Components/Pages/Email.razor.rz.scp.css */
body[b-nhnn1tzwf7] {
    /* optional: globale Styles */
}

.log-box .e-textbox[b-nhnn1tzwf7] {
    font-family: Consolas, monospace;
    font-size: 0.9rem;
    max-height: 400px;
    overflow-y: auto;
    background-color: #f8f9fa;
}

.log-item[b-nhnn1tzwf7] {
    font-family: Consolas, monospace;
    font-size: 0.9rem;
    white-space: pre-wrap;
}
/* _content/bettERFramework/Rechnungsverarbeitung/Components/Pages/ImportPage.razor.rz.scp.css */


:root[b-81qv2qhzg7] {
    --label-w: 9rem; /* etwas schmaler */
    --sublabel-w: 4rem; /* kompakter für PLZ/Nr. */
    --gap-x: 1rem; /* Abstand Label <-> Input kleiner */
    --gap-y: 0.5rem;
    --check-gap: 0.5rem;
}



/* Eine Zeile = ein Grid */
.row-grid[b-81qv2qhzg7] {
    display: grid;
    align-items: center;
    column-gap: var(--gap-x);
    row-gap: var(--gap-y);
    margin-bottom: 0.4rem;
    max-width: 100%; /* schützt vorm Überlaufen */
}

    /* Single: Label | Input | Check */
    .row-grid.single[b-81qv2qhzg7] {
        grid-template-columns: var(--label-w) 1fr auto;
    }

    /* Dual: Label | Input | Check | (Spacer) | SubLabel | SubInput | SubCheck */
    .row-grid.dual[b-81qv2qhzg7] {
        grid-template-columns: var(--label-w) minmax(15ch, 1fr) auto var(--gap-x) var(--sublabel-w) minmax(6ch, 12ch) auto;
    }

/* Spaltenpositionen */
.col-label[b-81qv2qhzg7] {
    grid-column: 1;
    justify-self: start;
    font-weight: 500;
}

.col-input[b-81qv2qhzg7] {
    grid-column: 2;
}

.col-check[b-81qv2qhzg7] {
    grid-column: 3;
    margin-left: var(--check-gap);
}

.col-sublabel[b-81qv2qhzg7] {
    grid-column: 5;
    color: #6c757d;
    justify-self: start;
}

.col-subinput[b-81qv2qhzg7] {
    grid-column: 6;
}

.col-subcheck[b-81qv2qhzg7] {
    grid-column: 7;
    margin-left: var(--check-gap);
}

/* Inputs im Grid */
.row-grid .form-control.input[b-81qv2qhzg7] {
    display: inline-block !important;
    width: 100% !important;
    max-width: none !important;
    height: 1.8rem;
    padding: .25rem .5rem;
    font-size: .95rem;
}

/* Checkboxen leicht nach unten korrigieren, damit sie mittig stehen */
.form-check-input[b-81qv2qhzg7] {
    position: relative;
    top: -1px;
}

[b-81qv2qhzg7] .CustomStandardText {
    width: 100%;
}

[b-81qv2qhzg7] .CustomWeiter {
    content: url("/Icons/Line-Arrow-Right-1--Streamline-Sharp-Remix.png");
    display: inline-block;
    width: 1em;
    height: 1em;
}

[b-81qv2qhzg7] .CustomZurueck {
    content: url("/Icons/Line-Arrow-Left-1--Streamline-Sharp-Remix.png");
    display: inline-block;
    width: 1em;
    height: 1em;
}

[b-81qv2qhzg7] .CustomLineLoeschen {
    content: url("/Icons/Recycle-Bin-Yellow.png");
    background-color: transparent;
    border: none;
}

[b-81qv2qhzg7] .CustomLoeschen {
    /*background-color: red;
    color: white;*/
    /*border-color: red;*/
    content: url("/Icons/Recycle-Bin-2--Streamline-Sharp-Remix.png");
    /*border-radius: 999px;*/
    display: inline-block;
    width: 1em;
    height: 1em;
}

[b-81qv2qhzg7] .CustomAdd {
    width: 100%;
    background-color: transparent;
    color: #E6FF03;
    border-color: #E6FF03;
}

[b-81qv2qhzg7] .CustomAktualisieren {
    content: url("/Icons/Line-Arrow-Move-Right-1--Streamline-Sharp-Remix.png");
}

[b-81qv2qhzg7] .CustomExportieren {
    content: url("/Icons/Floppy-Disk--Streamline-Sharp-Remix.png");
    display: inline-block;
    width: 1em;
    height: 1em;
}

.min-col[b-81qv2qhzg7] {
    min-width: 220px; /* gewünschte Mindestbreite */
    flex-shrink: 0; /* verhindert Zusammenschieben im Flex-Layout */
}

.align-left[b-81qv2qhzg7] {
    justify-content: flex-start;
}

.align-right[b-81qv2qhzg7] {
    justify-content: flex-end;
}

.form-check-input:checked[b-81qv2qhzg7] {
    background-color: #e6ff03;
    border-color: #e6ff03;
    color: black; 
}

/*    .form-check-input:checked[type=checkbox] {
        background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e);
    }*/

.form-check-input:checked[b-81qv2qhzg7] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e") !important;
}

.e-accordion .e-acrdn-item .e-acrdn-header[b-81qv2qhzg7] {
    border-width: 3px;
    border-style: solid;
    border-color: rgb(231, 236, 239);
    border-image: initial;
}
/* _content/bettERFramework/Rechnungsverarbeitung/Components/Pages/InvoiceDetails.razor.rz.scp.css */


:root[b-e30j5ij1ju] {
    --label-w: 9rem; /* etwas schmaler */
    --sublabel-w: 4rem; /* kompakter für PLZ/Nr. */
    --gap-x: 1rem; /* Abstand Label <-> Input kleiner */
    --gap-y: 0.5rem;
    --check-gap: 0.5rem;
}



/* Eine Zeile = ein Grid */
.row-grid[b-e30j5ij1ju] {
    display: grid;
    align-items: center;
    column-gap: var(--gap-x);
    row-gap: var(--gap-y);
    margin-bottom: 0.4rem;
    max-width: 100%; /* schützt vorm Überlaufen */
}

    /* Single: Label | Input | Check */
    .row-grid.single[b-e30j5ij1ju] {
        grid-template-columns: var(--label-w) 1fr auto;
    }

    /* Dual: Label | Input | Check | (Spacer) | SubLabel | SubInput | SubCheck */
    .row-grid.dual[b-e30j5ij1ju] {
        grid-template-columns: var(--label-w) minmax(15ch, 1fr) auto var(--gap-x) var(--sublabel-w) minmax(6ch, 12ch) auto;
    }

/* Spaltenpositionen */
.col-label[b-e30j5ij1ju] {
    grid-column: 1;
    justify-self: start;
    font-weight: 500;
}

.col-input[b-e30j5ij1ju] {
    grid-column: 2;
}

.col-check[b-e30j5ij1ju] {
    grid-column: 3;
    margin-left: var(--check-gap);
}

.col-sublabel[b-e30j5ij1ju] {
    grid-column: 5;
    color: #6c757d;
    justify-self: start;
}

.col-subinput[b-e30j5ij1ju] {
    grid-column: 6;
}

.col-subcheck[b-e30j5ij1ju] {
    grid-column: 7;
    margin-left: var(--check-gap);
}

/* Inputs im Grid */
.row-grid .form-control.input[b-e30j5ij1ju] {
    display: inline-block !important;
    width: 100% !important;
    max-width: none !important;
    height: 1.8rem;
    padding: .25rem .5rem;
    font-size: .95rem;
}

/* Checkboxen leicht nach unten korrigieren, damit sie mittig stehen */
.form-check-input[b-e30j5ij1ju] {
    position: relative;
    top: -1px;
}

[b-e30j5ij1ju] .CustomStandardText {
    width: 100%;
}

[b-e30j5ij1ju] .CustomWeiter {
    content: url("/Icons/Line-Arrow-Right-1--Streamline-Sharp-Remix.png");
    display: inline-block;
    width: 1em;
    height: 1em;
}

[b-e30j5ij1ju] .CustomZurueck {
    content: url("/Icons/Line-Arrow-Left-1--Streamline-Sharp-Remix.png");
    display: inline-block;
    width: 1em;
    height: 1em;
}

[b-e30j5ij1ju] .CustomLineLoeschen {
    content: url("/Icons/Recycle-Bin-Yellow.png");
    background-color: transparent;
    border: none;
}

[b-e30j5ij1ju] .CustomLoeschen {
    /*background-color: red;
    color: white;*/
    /*border-color: red;*/
    content: url("/Icons/Recycle-Bin-2--Streamline-Sharp-Remix.png");
    /*border-radius: 999px;*/
    display: inline-block;
    width: 1em;
    height: 1em;
}

[b-e30j5ij1ju] .CustomAdd {
    width: 100%;
    background-color: transparent;
    color: #E6FF03;
    border-color: #E6FF03;
}

[b-e30j5ij1ju] .CustomAktualisieren {
    content: url("/Icons/Line-Arrow-Move-Right-1--Streamline-Sharp-Remix.png");
}

[b-e30j5ij1ju] .CustomSave {
    content: url("/Icons/Floppy-Disk--Streamline-Sharp-Remix.png");
    display: inline-block;
    width: 1em;
    height: 1em;
}

.min-col[b-e30j5ij1ju] {
    min-width: 220px; /* gewünschte Mindestbreite */
    flex-shrink: 0; /* verhindert Zusammenschieben im Flex-Layout */
}

.align-left[b-e30j5ij1ju] {
    justify-content: flex-start;
}

.align-right[b-e30j5ij1ju] {
    justify-content: flex-end;
}

.form-check-input:checked[b-e30j5ij1ju] {
    background-color: #e6ff03;
    border-color: #e6ff03;
    color: black;
}

/*    .form-check-input:checked[type=checkbox] {
        background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e);
    }*/

.form-check-input:checked[b-e30j5ij1ju] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e") !important;
}

.e-accordion .e-acrdn-item .e-acrdn-header[b-e30j5ij1ju] {
    border-width: 3px;
    border-style: solid;
    border-color: rgb(231, 236, 239);
    border-image: initial;
}


[b-e30j5ij1ju] .e-checkbox-wrapper {
    margin-left: 8px !important;
}
/* _content/bettERFramework/Rechnungsverarbeitung/Components/Pages/InvoiceUpload.razor.rz.scp.css */
