/* _content/SystemNext.Client.UI/Fluent/Components/AnchoredRegion/FluentAnchoredRegion.razor.rz.scp.css */
fluent-anchored-region[b-4wo3wlrlxz] {
    pointer-events: none;
}

    fluent-anchored-region > *[b-4wo3wlrlxz] {
        pointer-events: all;
    }
/* _content/SystemNext.Client.UI/Fluent/Components/Button/FluentButton.razor.rz.scp.css */
.loading-button[b-rsig4hz20m] {
    position: relative;
}

    .loading-button[b-rsig4hz20m]  fluent-progress-ring {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 16px;
        height: 16px;
        cursor: not-allowed;
    }
/* _content/SystemNext.Client.UI/Fluent/Components/DataGrid/Columns/ColumnBase.razor.rz.scp.css */
/* Contains the title text and sort indicator, and expands to fill as much of the col width as it can */
.col-title[b-i7eh88ni01] {
    display: flex; /* So that we can make col-title-text expand as much as possible, and still hide overflow with ellipsis */
    min-width: 0px;
    flex-grow: 1;
    padding: 0;
}

/* If the column is sortable, its title is rendered as a button element for accessibility and to support navigation by tab */
button.col-title[b-i7eh88ni01] {
    border: none;
    background: none;
    position: relative;
    cursor: pointer;
}

.col-justify-center .col-title[b-i7eh88ni01] {
    justify-content: center;
}

.col-justify-end .col-title[b-i7eh88ni01], .col-justify-right .col-title[b-i7eh88ni01] {
    flex-direction: row-reverse; /* For end-justified cols, the sort indicator should appear before the title text */
}

/* We put the column title text in its own element primarily so that it can use text-overflow: ellipsis */
.col-title-text[b-i7eh88ni01] {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
/* _content/SystemNext.Client.UI/Fluent/Components/DataGrid/FluentDataGrid.razor.rz.scp.css */
fluent-data-grid[b-dayas221jp] {
    --col-gap: 1rem;
}

[b-dayas221jp] .empty-content-row,
[b-dayas221jp] .loading-content-row {
    width: 100%;
    height: 100% !important ;
    display: flex;
    justify-content: center;
    align-items: center;
}

[b-dayas221jp] .empty-content-cell, 
[b-dayas221jp] .loading-content-cell {

    font-weight: 600;
}

.col-options[b-dayas221jp] {
    position: absolute;
    top: 2.2rem;
    background: var(--neutral-layer-2);
    border: 1px solid var(--neutral-layer-3);
    border-radius: 0.3rem;
    box-shadow: 0 3px 8px 1px var(--neutral-layer-4);
    padding: 1rem;
    z-index: 1;
}

[dir=rtl] .col-options[b-dayas221jp] {
    left: unset;
}

.col-justify-end .col-options[b-dayas221jp], .col-justify-right .col-options[b-dayas221jp] {
    left: unset;
    right: 0.2rem;
}

[dir=rtl] .col-justify-end .col-options[b-dayas221jp], [dir=rtl] .col-justify-right .col-options[b-dayas221jp] {
    right: unset;
    left: 0.2rem;
}

[b-dayas221jp] > fluent-data-grid-row > fluent-data-grid-cell.grid-cell-placeholder:after {
    content: '\2026'; /*horizontal ellipsis*/
    opacity: 0.75;
}



[b-dayas221jp] .col-width-draghandle {
    height: auto;
    width: calc(var(--design-unit) * 1px + 2px);
    right: calc(var(--col-gap)/2 - 0.5rem);
    border-top: none;
    border-left: calc(var(--stroke-width) * 1px) solid var(--neutral-stroke-divider-rest);
    cursor: col-resize;
}

.col-width-draghandle:hover[b-dayas221jp], .col-width-draghandle:active[b-dayas221jp] {
    background: var(--neutral-stroke-divider-rest);
}
/* _content/SystemNext.Client.UI/Fluent/Components/DataGrid/FluentDataGridCell.razor.rz.scp.css */
fluent-data-grid-cell[b-2jhkmbwrfx] {
    text-overflow: ellipsis;
    font-size: 14px; /*ch*/
}

.multiline-text[b-2jhkmbwrfx] {
    white-space: inherit;
    overflow: auto;
    word-break: break-word;
}

.column-header[b-2jhkmbwrfx] {
    display: flex;
    align-self: center;
    padding-inline: 0;
}

    .column-header.col-justify-end[b-2jhkmbwrfx], .column-header.col-justify-right[b-2jhkmbwrfx] {
        width: 100%;
        padding: 0;
        justify-content: end;
    }

    .column-header.col-justify-center[b-2jhkmbwrfx] {
        width: 100%;
        padding: 0;
        justify-content: center;
    }

    .column-header[b-2jhkmbwrfx] >  .col-sort-button {
        flex-grow: 1;
        padding-inline-end: 5px;
    }

        .column-header[b-2jhkmbwrfx] >  .col-sort-button::part(content) {
            overflow: hidden;
            text-overflow: ellipsis;
        }

    .column-header.col-justify-end[b-2jhkmbwrfx]  .col-title-text, .column-header.col-justify-right[b-2jhkmbwrfx]  .col-title-text {
        text-align: end;
    }

    .column-header.col-justify-end[b-2jhkmbwrfx]  .col-sort-button, .column-header.col-justify-right[b-2jhkmbwrfx]  .col-sort-button {
        justify-content: end;
    }

    .column-header.col-justify-center[b-2jhkmbwrfx]  .col-title-text {
        text-align: center;
    }

    .column-header.col-justify-end[b-2jhkmbwrfx]  .col-sort-button, .column-header.col-justify-right[b-2jhkmbwrfx]  .col-sort-button {
        justify-content: end;
        text-align: end;
    }

[b-2jhkmbwrfx] .col-sort-button::part(control) {
    align-items: center;
    justify-content: start;
    overflow: hidden;
    text-overflow: ellipsis;
}

.col-justify-center[b-2jhkmbwrfx]  .col-sort-button::part(control) {
    justify-content: center;
}

.col-justify-end[b-2jhkmbwrfx]  .col-sort-button::part(control), .col-justify-right[b-2jhkmbwrfx]  .col-sort-button::part(control) {
    justify-content: end;
}

.col-justify-center[b-2jhkmbwrfx] {
    justify-self: center;
}

.col-justify-end[b-2jhkmbwrfx], .col-justify-right[b-2jhkmbwrfx] {
    justify-self: end;
    padding-inline-end: 20px;
}

    .col-justify-end .col-title[b-2jhkmbwrfx], .col-justify-right .col-title[b-2jhkmbwrfx] {
        justify-content: end;
    }

[b-2jhkmbwrfx] .col-title {
    padding: 0 calc((12 + (var(--design-unit) * 2 * var(--density))) * 1px);
    display: flex;
    align-items: center;
}

[b-2jhkmbwrfx] .col-title-text {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 600;
    font-size: 12px; /*ch*/
}



/* _content/SystemNext.Client.UI/Fluent/Components/DataGrid/FluentDataGridRow.razor.rz.scp.css */
fluent-data-grid-row[row-type="header"][b-4j853lxrfo] {
    background-color: var(--nx-color-primary-light) !important;
}


fluent-data-grid-row[row-type="default"]:hover[b-4j853lxrfo] {
    background-color: var(--nx-color-primary-light-lighter) !important;
}

.header[b-4j853lxrfo] {
    padding: 0;
    z-index: 3;
}

.sticky-header[b-4j853lxrfo] {
    z-index: 3;
}
/* _content/SystemNext.Client.UI/Fluent/Components/DateTime/FluentCalendar.razor.rz.scp.css */
/*
    "Days" View
*/
.fluent-calendar[b-i51wstp01p] {
    --calendar-cell-size: 28px;
    --calendar-gap: 2px;
    font-family: var(--body-font);
    font-size: var(--type-ramp-base-font-size);
    line-height: var(--type-ramp-base-line-height);
    color: var(--neutral-foreground-rest);
    width: calc((var(--calendar-cell-size) + 2 * var(--calendar-gap)) * 7);
    height: calc((var(--calendar-cell-size) + 3 * var(--calendar-gap)) * 8);
    user-select: none;
}

    /* Header: month name and month navigation */
    .fluent-calendar[b-i51wstp01p]  .title {
        display: flex;
        padding: calc(var(--design-unit) * 2px);
        font-weight: 600;
        width: 100%;
        height: calc(var(--calendar-cell-size) + 4 * var(--calendar-gap));
        flex-direction: row;
        justify-content: space-between;
    }

        .fluent-calendar[b-i51wstp01p]  .title > .label {
            vertical-align: middle;
            cursor: pointer;
            width: 100%;
        }

            .fluent-calendar[b-i51wstp01p]  .title > .label[readonly] {
                cursor: default;
            }

    .fluent-calendar[b-i51wstp01p]  .change-period {
        float: right;
        display: flex;
        margin-right: -6px;
    }

        .fluent-calendar[b-i51wstp01p]  .change-period > .previous,
        .fluent-calendar[b-i51wstp01p]  .change-period > .next {
            width: var(--calendar-cell-size);
            height: var(--calendar-cell-size);
            margin-left: calc(2 * var(--calendar-gap));
            text-align: center;
            cursor: pointer;
        }

            .fluent-calendar[b-i51wstp01p]  .change-period > .previous:not([disabled]):hover,
            .fluent-calendar[b-i51wstp01p]  .change-period > .next:not([disabled]):hover {
                background: var(--neutral-fill-stealth-hover);
            }

            .fluent-calendar[b-i51wstp01p]  .change-period > .previous svg,
            .fluent-calendar[b-i51wstp01p]  .change-period > .next svg {
                width: 16px;
                fill: var(--neutral-fill-strong-focus);
            }

    /* List of days */
    .fluent-calendar[b-i51wstp01p]  .days {
        text-align: center;
    }

    .fluent-calendar[b-i51wstp01p]  .week-days,
    .fluent-calendar[b-i51wstp01p]  .week {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        grid-gap: var(--calendar-gap);
        border: 0px;
        padding: 0px;
    }

    .fluent-calendar[b-i51wstp01p]  .day,
    .fluent-calendar[b-i51wstp01p]  .week-day {
        border: 1px solid transparent;
        width: var(--calendar-cell-size);
        height: var(--calendar-cell-size);
        line-height: var(--calendar-cell-size);
        padding: 0px;
        box-sizing: initial;
    }

    /* Week names */
    .fluent-calendar[b-i51wstp01p]  .week-day {
        font-weight: 600;
    }

    /* Days */
    .fluent-calendar[b-i51wstp01p]  .day {
        border: calc(var(--stroke-width) * 1px) solid transparent;
        border-radius: calc(var(--control-corner-radius) * 1px);
        cursor: pointer;
    }

    .fluent-calendar[readonly][b-i51wstp01p]  .day {
        cursor: default;
    }

    .fluent-calendar:not([readonly])[b-i51wstp01p]  .day:not([disabled]):not([inactive]):not([today]):hover {
        background: var(--neutral-fill-stealth-hover);
    }

    /* Inactive and Disabled */
    .fluent-calendar[b-i51wstp01p]  .day[inactive] {
        color: var(--neutral-stroke-focus);
        cursor: default;
    }

    .fluent-calendar[b-i51wstp01p]  .day[disabled] {
        color: var(--neutral-stroke-focus);
        cursor: default;
    }

        .fluent-calendar[b-i51wstp01p]  .day[disabled]::before { /* strikethrough */
            transform: translate(-4px, 0px) rotate(45deg);
            content: "";
            display: inline-block;
            width: calc(var(--calendar-cell-size) * .8);
            height: calc(var(--stroke-width) * 1px);
            background: currentcolor;
            position: absolute;
            margin-top: calc(var(--calendar-cell-size) / 2);
            transform-origin: center center;
            z-index: 1;
        }

    /* Today */
    .fluent-calendar[b-i51wstp01p]  .day:not([selected])[today] {
        color: var(--foreground-on-accent-rest);
        background: var(--accent-fill-rest);
        border-radius: 50%;
        position: relative;
    }

    /* Selected */
    .fluent-calendar[b-i51wstp01p]  .day[selected] {
        color: var(--accent-fill-rest);
        border: 1px solid var(--accent-fill-rest);
        background: var(--fill-color);
    }

    /* Animations */
    .fluent-calendar[b-i51wstp01p]  .animation-running-down {
        animation: 0.2s fluent-text-animation-down-b-i51wstp01p ease-out;
    }

    .fluent-calendar[b-i51wstp01p]  .animation-running-up {
        animation: 0.2s fluent-text-animation-up-b-i51wstp01p ease-out;
    }

    .fluent-calendar[b-i51wstp01p]  .animation-none {
        animation: none;
    }

/*
    "Months" View
*/
.fluent-month[b-i51wstp01p] {
    --month-cell-size: 28px;
    --month-cell-height: 48px;
    --month-gap: 2px;
    font-family: var(--body-font);
    font-size: var(--type-ramp-base-font-size);
    line-height: var(--type-ramp-base-line-height);
    color: var(--neutral-foreground-rest);
    min-width: 220px;
    max-width: calc((var(--month-cell-size) + 2 * var(--month-gap)) * 7);
    user-select: none;
}

    /* Header: Year name and navigation arrows */
    .fluent-month[b-i51wstp01p]  .title {
        display: flex;
        padding: calc(var(--design-unit) * 2px);
        font-weight: 600;
        width: 100%;
        height: calc(var(--month-cell-size) + 4 * var(--month-gap));
        flex-direction: row;
        justify-content: space-between;
    }

        .fluent-month[b-i51wstp01p]  .title > .label {
            vertical-align: middle;
            cursor: pointer;
            width: 100%;
        }

            .fluent-month[b-i51wstp01p]  .title > .label[readonly] {
                cursor: default;
            }

    .fluent-month[b-i51wstp01p]  .change-period {
        float: right;
        display: flex;
        margin-right: -6px;
    }

        .fluent-month[b-i51wstp01p]  .change-period > .previous,
        .fluent-month[b-i51wstp01p]  .change-period > .next {
            width: var(--month-cell-size);
            height: var(--month-cell-size);
            margin-left: calc(2 * var(--month-gap));
            text-align: center;
            cursor: pointer;
        }

            .fluent-month[b-i51wstp01p]  .change-period > .previous:not([disabled]):hover,
            .fluent-month[b-i51wstp01p]  .change-period > .next:not([disabled]):hover {
                background: var(--neutral-fill-stealth-hover);
            }

            .fluent-month[b-i51wstp01p]  .change-period > .previous svg,
            .fluent-month[b-i51wstp01p]  .change-period > .next svg {
                width: 16px;
                fill: var(--neutral-fill-strong-focus);
            }

    /* List of months */
    .fluent-month[b-i51wstp01p]  .months {
        text-align: center;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-gap: var(--month-gap);
        width: 100%;
    }

    .fluent-month[b-i51wstp01p]  .month {
        display: flex;
        height: var(--month-cell-height);
        border: calc(var(--stroke-width) * 1px) solid transparent;
        border-radius: calc(var(--control-corner-radius) * 1px);
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .fluent-month[readonly][b-i51wstp01p]  .month {
        cursor: default;
    }

    .fluent-month:not([readonly])[b-i51wstp01p]  .month:not([disabled]):hover {
        background: var(--neutral-fill-stealth-hover);
    }

    .fluent-month[b-i51wstp01p]  .month[selected] {
        color: var(--accent-fill-rest);
        border: 1px solid var(--accent-fill-rest);
        background: var(--fill-color);
    }

    .fluent-month[b-i51wstp01p]  .month[disabled] {
        color: var(--neutral-stroke-focus);
        cursor: default;
    }

    /* Animations */
    .fluent-month[b-i51wstp01p]  .animation-running-down {
        animation: 0.2s fluent-text-animation-down-b-i51wstp01p ease-out;
    }

    .fluent-month[b-i51wstp01p]  .animation-running-up {
        animation: 0.2s fluent-text-animation-up-b-i51wstp01p ease-out;
    }

    .fluent-month[b-i51wstp01p]  .animation-none {
        animation: none;
    }

/*
    "Years" View
*/
.fluent-year[b-i51wstp01p] {
    --year-cell-size: 28px;
    --year-cell-height: 48px;
    --year-gap: 2px;
    font-family: var(--body-font);
    font-size: var(--type-ramp-base-font-size);
    line-height: var(--type-ramp-base-line-height);
    color: var(--neutral-foreground-rest);
    min-width: 220px;
    max-width: calc((var(--year-cell-size) + 2 * var(--year-gap)) * 7);
    user-select: none;
}

    /* Header: Multiple years and navigation arrows */
    .fluent-year[b-i51wstp01p]  .title {
        display: flex;
        padding: calc(var(--design-unit) * 2px);
        font-weight: 600;
        width: 100%;
        height: calc(var(--year-cell-size) + 4 * var(--year-gap));
        flex-direction: row;
        justify-content: space-between;
    }

        .fluent-year[b-i51wstp01p]  .title > .label {
            vertical-align: middle;
        }

            .fluent-year[b-i51wstp01p]  .title > .label[readonly] {
                cursor: default;
            }

    .fluent-year[b-i51wstp01p]  .change-period {
        float: right;
        display: flex;
        margin-right: -6px;
    }

        .fluent-year[b-i51wstp01p]  .change-period > .previous,
        .fluent-year[b-i51wstp01p]  .change-period > .next {
            width: var(--year-cell-size);
            height: var(--year-cell-size);
            margin-left: calc(2 * var(--year-gap));
            text-align: center;
            cursor: pointer;
        }

            .fluent-year[b-i51wstp01p]  .change-period > .previous:not([disabled]):hover,
            .fluent-year[b-i51wstp01p]  .change-period > .next:not([disabled]):hover {
                background: var(--neutral-fill-stealth-hover);
            }

            .fluent-year[b-i51wstp01p]  .change-period > .previous svg,
            .fluent-year[b-i51wstp01p]  .change-period > .next svg {
                width: 16px;
                fill: var(--neutral-fill-strong-focus);
            }

    /* List of years */
    .fluent-year[b-i51wstp01p]  .years {
        text-align: center;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-gap: var(--year-gap);
        width: 100%;
    }

    .fluent-year[b-i51wstp01p]  .year {
        display: flex;
        height: var(--year-cell-height);
        border: calc(var(--stroke-width) * 1px) solid transparent;
        border-radius: calc(var(--control-corner-radius) * 1px);
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .fluent-year[readonly][b-i51wstp01p]  .year {
        cursor: default;
    }

    .fluent-year:not([readonly])[b-i51wstp01p]  .year:not([disabled]):hover {
        background: var(--neutral-fill-stealth-hover);
    }

    .fluent-year[b-i51wstp01p]  .year[selected] {
        color: var(--accent-fill-rest);
        border: 1px solid var(--accent-fill-rest);
        background: var(--fill-color);
    }

    .fluent-year[b-i51wstp01p]  .year[disabled] {
        color: var(--neutral-stroke-focus);
        cursor: default;
    }

    /* Animations */
    .fluent-year[b-i51wstp01p]  .animation-running-down {
        animation: 0.2s fluent-text-animation-down-b-i51wstp01p ease-out;
    }

    .fluent-year[b-i51wstp01p]  .animation-running-up {
        animation: 0.2s fluent-text-animation-up-b-i51wstp01p ease-out;
    }

    .fluent-year[b-i51wstp01p]  .animation-none {
        animation: none;
    }

@keyframes fluent-text-animation-up-b-i51wstp01p {
    0% {
        opacity: 0;
        transform: translateY(80%);
    }

    20% {
        opacity: 0;
    }

    80% {
        opacity: 1;
        transform: translateY(0%);
    }

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

@keyframes fluent-text-animation-down-b-i51wstp01p {
    0% {
        opacity: 0;
        transform: translateY(-80%);
    }

    20% {
        opacity: 0;
    }

    80% {
        opacity: 1;
        transform: translateY(0%);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}
/* _content/SystemNext.Client.UI/Fluent/Components/DateTime/FluentDatePicker.razor.rz.scp.css */
.fluent-datepicker-popup[b-dnxzbpshqx] {
 
}
/* _content/SystemNext.Client.UI/Fluent/Components/DateTime/FluentTimePicker.razor.rz.scp.css */
.fluent-timepicker[b-zw347ni9ky] {
    min-width: 110px;
}
/* _content/SystemNext.Client.UI/Fluent/Components/Dialog/ContentComponents/FluentSplashScreen.razor.rz.scp.css */
.fluent-launch[b-szf40zjyon] {
    font-family: var(--body-font);
    -webkit-font-smoothing: antialiased;
    background-color: white;
    color: rgb(73, 72, 71);
    --accent-fill-rest: #d3d3d3;
    user-select: none;
}

    .fluent-launch h1[b-szf40zjyon] {
        font-size: 32px;
        font-weight: 600;
        margin-top: 40px;
        line-height: 40px;
        margin: 40px 0px 0px 0px;
        user-select: none;
    }

    .fluent-launch h2[b-szf40zjyon] {
        font-size: 24px;
        font-weight: 400;
        line-height: 32px;
        margin: 24px 0px 50px 0px;
        user-select: none;
    }

    .fluent-launch h3[b-szf40zjyon] {
        font-size: 12px;
        font-weight: 300;
        margin: 0px;
        user-select: none;
    }
    
    .fluent-launch p[b-szf40zjyon] {
        user-select: none;
    }

    .fluent-launch .icon[b-szf40zjyon] {
        width: 150px;
        margin: 20px 0px 0px 0px;
    }
/* _content/SystemNext.Client.UI/Fluent/Components/Dialog/ContentComponents/MessageBox.razor.rz.scp.css */
.fluent-messagebox[b-cii58eu2dv] {
    font-family: var(--body-font);
    -webkit-font-smoothing: antialiased;
    color: var( --neutral-foreground-rest);
    word-break: break-word;
    padding: 1rem 1.5rem 1rem 1rem;
}

.fluent-messagebox[b-cii58eu2dv]  .icon {
    min-width: 30px;
    margin: 4px;
}
/* _content/SystemNext.Client.UI/Fluent/Components/Dialog/FluentDialog.razor.rz.scp.css */
fluent-dialog[b-0j0r1mn32u]::part(control) {
    --dialog-padding: calc(var(--design-unit) * 6 * 1px);
    position: relative;
    /*padding: var(--dialog-padding);*/
    width: calc(var(--dialog-width) - 2 * var(--dialog-padding));
    height: calc(var(--dialog-height) - 2 * var(--dialog-padding));
}

fluent-dialog:has(div[class~="fluent-dialog-body"]):not(:is(fluent-dialog[class~="right"], fluent-dialog[class~="left"]) )[b-0j0r1mn32u]::part(control) {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    grid-template-areas:
        'dialog-header'
        'dialog-body'
        'dialog-footer';
}

fluent-dialog[class~="right"][b-0j0r1mn32u]::part(control),
fluent-dialog[class~="left"][b-0j0r1mn32u]::part(control) {
    display: flex;
    flex-direction: column;
    border-radius: unset;
    border-width: 0;
    --dialog-height: 100dvh;
    overflow-y: auto;
}

:is(fluent-dialog[class~="right"], fluent-dialog[class~="left"])[b-0j0r1mn32u]  .fluent-dialog-body {
    flex-grow: 1;
    overflow-y: auto;
}

fluent-dialog[class~="right"][b-0j0r1mn32u]::part(control) {
    position: absolute;
    right: 0;
}

fluent-dialog[class~="left"][b-0j0r1mn32u]::part(control) {
    position: absolute;
    left: 0;
}

fluent-dialog[b-0j0r1mn32u]  .fluent-dialog-header {
    grid-area: dialog-header;
    /*padding: 0 0 var(--dialog-padding) 0;*/
    background-color: var(--nx-color-primary);
    color: var(--nx-color-text-on-primary);
    padding: 6px 12px;
    margin: -1px;
    width: calc(100% + 2px) !important;
}

fluent-dialog[b-0j0r1mn32u]  .fluent-dialog-footer {
    grid-area: dialog-footer;
    margin-top: auto;
    /*padding: var(--dialog-padding) 0 0 0;*/
    background-color: var(--nx-color-primary-light-lighter);
    padding: 12px 12px;
}

fluent-dialog:has(div[class~="fluent-dialog-body"])[b-0j0r1mn32u]  .fluent-dialog-footer {
    grid-area: dialog-footer;
    margin-top: auto;
    /*padding-top: var(--dialog-padding);*/
    right: 0px;
}

fluent-dialog[b-0j0r1mn32u]  .fluent-dialog-body {
    grid-area: dialog-body;
    width: 100%;
    height: auto;
    min-height: 80px;
    padding: var(--dialog-padding);
}
/* _content/SystemNext.Client.UI/Fluent/Components/Forms/FluentValidationMessage.razor.rz.scp.css */
.validation-message[b-5mzyz56d4n] {
    color: var(--error);
    font-size: var(--type-ramp-minus-1-font-size);
    display: flex;
    align-items: center;
    column-gap: 4px;
}
/* _content/SystemNext.Client.UI/Fluent/Components/Grid/FluentGrid.razor.rz.scp.css */
.fluent-grid[b-mpdwfdkfn6] {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
}

    .fluent-grid[b-mpdwfdkfn6]  > div {
        margin: 0;
        box-sizing: border-box;
    }

    /* Spacing */

    .fluent-grid[spacing="1"][b-mpdwfdkfn6] {
        width: calc(100% + 8px);
        margin: 0 -4px;
    }

        .fluent-grid[spacing="1"][b-mpdwfdkfn6]  > div {
            padding: 0 4px;
        }

    .fluent-grid[spacing="2"][b-mpdwfdkfn6] {
        width: calc(100% + 16px);
        margin: 0 -8px;
    }

        .fluent-grid[spacing="2"][b-mpdwfdkfn6]  > div {
            padding: 0 8px;
        }

    .fluent-grid[spacing="3"][b-mpdwfdkfn6] {
        width: calc(100% + 24px);
        margin: 0 -12px;
    }

        .fluent-grid[spacing="3"][b-mpdwfdkfn6]  > div {
            padding: 0 12px;
        }

    .fluent-grid[spacing="4"][b-mpdwfdkfn6] {
        width: calc(100% + 32px);
        margin: 0 -16px;
    }

        .fluent-grid[spacing="4"][b-mpdwfdkfn6]  > div {
            padding: 0 16px;
        }

    .fluent-grid[spacing="5"][b-mpdwfdkfn6] {
        width: calc(100% + 40px);
        margin: 0 -20px;
    }

        .fluent-grid[spacing="5"][b-mpdwfdkfn6]  > div {
            padding: 0 20px;
        }

    .fluent-grid[spacing="6"][b-mpdwfdkfn6] {
        width: calc(100% + 48px);
        margin: 0 -24px;
    }

        .fluent-grid[spacing="6"][b-mpdwfdkfn6]  > div {
            padding: 0 24px;
        }

    .fluent-grid[spacing="7"][b-mpdwfdkfn6] {
        width: calc(100% + 56px);
        margin: 0 -28px;
    }

        .fluent-grid[spacing="7"][b-mpdwfdkfn6]  > div {
            padding: 0 28px;
        }

    .fluent-grid[spacing="8"][b-mpdwfdkfn6] {
        width: calc(100% + 64px);
        margin: 0 -32px;
    }

        .fluent-grid[spacing="8"][b-mpdwfdkfn6]  > div {
            padding: 0 32px;
        }

    .fluent-grid[spacing="9"][b-mpdwfdkfn6] {
        width: calc(100% + 72px);
        margin: 0 -36px;
    }

        .fluent-grid[spacing="9"][b-mpdwfdkfn6]  > div {
            padding: 0 36px;
        }

    .fluent-grid[spacing="10"][b-mpdwfdkfn6] {
        width: calc(100% + 80px);
        margin: 0 -40px;
    }

        .fluent-grid[spacing="10"][b-mpdwfdkfn6]  > div {
            padding: 0 40px;
        }



    /* Size xs */

    .fluent-grid[b-mpdwfdkfn6]  > div[xs="auto"] {
        flex-grow: 0;
        max-width: none;
        flex-basis: auto;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xs="true"] {
        flex-grow: 1;
        max-width: 100%;
        flex-basis: 0;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xs="0"] {
        flex: 1;
        max-width: fit-content;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xs="1"] {
        flex-grow: 0;
        max-width: 8.333%;
        flex-basis: 8.3333%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xs="2"] {
        flex-grow: 0;
        max-width: 16.667%;
        flex-basis: 16.667%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xs="3"] {
        flex-grow: 0;
        max-width: 25%;
        flex-basis: 25%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xs="4"] {
        flex-grow: 0;
        max-width: 33.333%;
        flex-basis: 33.333%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xs="5"] {
        flex-grow: 0;
        max-width: 41.667%;
        flex-basis: 41.667%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xs="6"] {
        flex-grow: 0;
        max-width: 50%;
        flex-basis: 50%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xs="7"] {
        flex-grow: 0;
        max-width: 58.333%;
        flex-basis: 58.333%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xs="8"] {
        flex-grow: 0;
        max-width: 66.667%;
        flex-basis: 66.667%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xs="9"] {
        flex-grow: 0;
        max-width: 75%;
        flex-basis: 75%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xs="10"] {
        flex-grow: 0;
        max-width: 83.333%;
        flex-basis: 83.333%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xs="11"] {
        flex-grow: 0;
        max-width: 91.667%;
        flex-basis: 91.667%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xs="12"] {
        flex-grow: 0;
        max-width: 100%;
        flex-basis: 100%;
    }


@media(min-width: 600px) {

    /* Size sm */

    .fluent-grid[b-mpdwfdkfn6]  > div[sm="auto"] {
        flex-grow: 0;
        max-width: none;
        flex-basis: auto;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[sm="true"] {
        flex-grow: 1;
        max-width: 100%;
        flex-basis: 0;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[sm="0"] {
        flex: 1;
        max-width: fit-content;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[sm="1"] {
        flex-grow: 0;
        max-width: 8.333%;
        flex-basis: 8.3333%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[sm="2"] {
        flex-grow: 0;
        max-width: 16.667%;
        flex-basis: 16.667%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[sm="3"] {
        flex-grow: 0;
        max-width: 25%;
        flex-basis: 25%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[sm="4"] {
        flex-grow: 0;
        max-width: 33.333%;
        flex-basis: 33.333%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[sm="5"] {
        flex-grow: 0;
        max-width: 41.667%;
        flex-basis: 41.667%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[sm="6"] {
        flex-grow: 0;
        max-width: 50%;
        flex-basis: 50%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[sm="7"] {
        flex-grow: 0;
        max-width: 58.333%;
        flex-basis: 58.333%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[sm="8"] {
        flex-grow: 0;
        max-width: 66.667%;
        flex-basis: 66.667%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[sm="9"] {
        flex-grow: 0;
        max-width: 75%;
        flex-basis: 75%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[sm="10"] {
        flex-grow: 0;
        max-width: 83.333%;
        flex-basis: 83.333%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[sm="11"] {
        flex-grow: 0;
        max-width: 91.667%;
        flex-basis: 91.667%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[sm="12"] {
        flex-grow: 0;
        max-width: 100%;
        flex-basis: 100%;
    }
}

@media(min-width: 960px) {

    /* Size md */

    .fluent-grid[b-mpdwfdkfn6]  > div[md="auto"] {
        flex-grow: 0;
        max-width: none;
        flex-basis: auto;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[md="true"] {
        flex-grow: 1;
        max-width: 100%;
        flex-basis: 0;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[md="0"] {
        flex: 1;
        max-width: fit-content;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[md="1"] {
        flex-grow: 0;
        max-width: 8.333%;
        flex-basis: 8.3333%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[md="2"] {
        flex-grow: 0;
        max-width: 16.667%;
        flex-basis: 16.667%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[md="3"] {
        flex-grow: 0;
        max-width: 25%;
        flex-basis: 25%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[md="4"] {
        flex-grow: 0;
        max-width: 33.333%;
        flex-basis: 33.333%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[md="5"] {
        flex-grow: 0;
        max-width: 41.667%;
        flex-basis: 41.667%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[md="6"] {
        flex-grow: 0;
        max-width: 50%;
        flex-basis: 50%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[md="7"] {
        flex-grow: 0;
        max-width: 58.333%;
        flex-basis: 58.333%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[md="8"] {
        flex-grow: 0;
        max-width: 66.667%;
        flex-basis: 66.667%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[md="9"] {
        flex-grow: 0;
        max-width: 75%;
        flex-basis: 75%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[md="10"] {
        flex-grow: 0;
        max-width: 83.333%;
        flex-basis: 83.333%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[md="11"] {
        flex-grow: 0;
        max-width: 91.667%;
        flex-basis: 91.667%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[md="12"] {
        flex-grow: 0;
        max-width: 100%;
        flex-basis: 100%;
    }
}

@media(min-width: 1280px) {

    /* Size lg */

    .fluent-grid[b-mpdwfdkfn6]  > div[lg="auto"] {
        flex-grow: 0;
        max-width: none;
        flex-basis: auto;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[lg="true"] {
        flex-grow: 1;
        max-width: 100%;
        flex-basis: 0;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[lg="0"] {
        flex: 1;
        max-width: fit-content;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[lg="1"] {
        flex-grow: 0;
        max-width: 8.333%;
        flex-basis: 8.3333%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[lg="2"] {
        flex-grow: 0;
        max-width: 16.667%;
        flex-basis: 16.667%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[lg="3"] {
        flex-grow: 0;
        max-width: 25%;
        flex-basis: 25%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[lg="4"] {
        flex-grow: 0;
        max-width: 33.333%;
        flex-basis: 33.333%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[lg="5"] {
        flex-grow: 0;
        max-width: 41.667%;
        flex-basis: 41.667%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[lg="6"] {
        flex-grow: 0;
        max-width: 50%;
        flex-basis: 50%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[lg="7"] {
        flex-grow: 0;
        max-width: 58.333%;
        flex-basis: 58.333%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[lg="8"] {
        flex-grow: 0;
        max-width: 66.667%;
        flex-basis: 66.667%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[lg="9"] {
        flex-grow: 0;
        max-width: 75%;
        flex-basis: 75%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[lg="10"] {
        flex-grow: 0;
        max-width: 83.333%;
        flex-basis: 83.333%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[lg="11"] {
        flex-grow: 0;
        max-width: 91.667%;
        flex-basis: 91.667%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[lg="12"] {
        flex-grow: 0;
        max-width: 100%;
        flex-basis: 100%;
    }
}

@media(min-width: 1920px) {

    /* Size xl */

    .fluent-grid[b-mpdwfdkfn6]  > div[xl="auto"] {
        flex-grow: 0;
        max-width: none;
        flex-basis: auto;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xl="true"] {
        flex-grow: 1;
        max-width: 100%;
        flex-basis: 0;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xl="0"] {
        flex: 1;
        max-width: fit-content;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xl="1"] {
        flex-grow: 0;
        max-width: 8.333%;
        flex-basis: 8.3333%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xl="2"] {
        flex-grow: 0;
        max-width: 16.667%;
        flex-basis: 16.667%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xl="3"] {
        flex-grow: 0;
        max-width: 25%;
        flex-basis: 25%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xl="4"] {
        flex-grow: 0;
        max-width: 33.333%;
        flex-basis: 33.333%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xl="5"] {
        flex-grow: 0;
        max-width: 41.667%;
        flex-basis: 41.667%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xl="6"] {
        flex-grow: 0;
        max-width: 50%;
        flex-basis: 50%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xl="7"] {
        flex-grow: 0;
        max-width: 58.333%;
        flex-basis: 58.333%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xl="8"] {
        flex-grow: 0;
        max-width: 66.667%;
        flex-basis: 66.667%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xl="9"] {
        flex-grow: 0;
        max-width: 75%;
        flex-basis: 75%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xl="10"] {
        flex-grow: 0;
        max-width: 83.333%;
        flex-basis: 83.333%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xl="11"] {
        flex-grow: 0;
        max-width: 91.667%;
        flex-basis: 91.667%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xl="12"] {
        flex-grow: 0;
        max-width: 100%;
        flex-basis: 100%;
    }
}

@media(min-width: 2560px) {

    /* Size xxl */

    .fluent-grid[b-mpdwfdkfn6]  > div[xxl="auto"] {
        flex-grow: 0;
        max-width: none;
        flex-basis: auto;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xxl="true"] {
        flex-grow: 1;
        max-width: 100%;
        flex-basis: 0;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xxl="0"] {
        flex: 1;
        max-width: fit-content;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xxl="1"] {
        flex-grow: 0;
        max-width: 8.333%;
        flex-basis: 8.3333%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xxl="2"] {
        flex-grow: 0;
        max-width: 16.667%;
        flex-basis: 16.667%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xxl="3"] {
        flex-grow: 0;
        max-width: 25%;
        flex-basis: 25%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xxl="4"] {
        flex-grow: 0;
        max-width: 33.333%;
        flex-basis: 33.333%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xxl="5"] {
        flex-grow: 0;
        max-width: 41.667%;
        flex-basis: 41.667%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xxl="6"] {
        flex-grow: 0;
        max-width: 50%;
        flex-basis: 50%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xxl="7"] {
        flex-grow: 0;
        max-width: 58.333%;
        flex-basis: 58.333%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xxl="8"] {
        flex-grow: 0;
        max-width: 66.667%;
        flex-basis: 66.667%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xxl="9"] {
        flex-grow: 0;
        max-width: 75%;
        flex-basis: 75%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xxl="10"] {
        flex-grow: 0;
        max-width: 83.333%;
        flex-basis: 83.333%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xxl="11"] {
        flex-grow: 0;
        max-width: 91.667%;
        flex-basis: 91.667%;
    }

    .fluent-grid[b-mpdwfdkfn6]  > div[xxl="12"] {
        flex-grow: 0;
        max-width: 100%;
        flex-basis: 100%;
    }
}

/* Hidden */

@media (max-width: 599.98px) {
    .fluent-grid[b-mpdwfdkfn6]  > div[hidden-when~="xs"] {
        display: none;
    }
}

@media (min-width: 600px) and (max-width: 959.98px) {
    .fluent-grid[b-mpdwfdkfn6]  > div[hidden-when~="sm"] {
        display: none;
    }
}

@media (min-width: 960px) and (max-width: 1279.98px) {
    .fluent-grid[b-mpdwfdkfn6]  > div[hidden-when~="md"] {
        display: none;
    }
}

@media (min-width: 1280px) and (max-width: 1919.98px) {
    .fluent-grid[b-mpdwfdkfn6]  > div[hidden-when~="lg"] {
        display: none;
    }
}

@media (min-width: 1920px) and (max-width: 2559.98px) {
    .fluent-grid[b-mpdwfdkfn6]  > div[hidden-when~="xl"] {
        display: none;
    }
}

@media (min-width: 2560px) {
    .fluent-grid[b-mpdwfdkfn6]  > div[hidden-when~="xxl"] {
        display: none;
    }
}
/* _content/SystemNext.Client.UI/Fluent/Components/Label/FluentInputLabel.razor.rz.scp.css */
.fluent-input-label[b-31xodiab77] {
    display: flex;
    color: var(--neutral-foreground-rest);
    cursor: pointer;
    font-family: var(--body-font);
    font-size: var(--type-ramp-base-font-size);
    line-height: var(--type-ramp-base-line-height);
    font-weight: initial;
    font-variation-settings: var(--type-ramp-base-font-variations);
    margin-bottom: calc(var(--design-unit) * 1px);
    align-items: center;
}
/* _content/SystemNext.Client.UI/Fluent/Components/Label/FluentLabel.razor.rz.scp.css */
/*
    --type-ramp-base-font-size: 14px;
    --type-ramp-base-line-height: 20px;
*/
.fluent-typography[b-jnmllcruje] {
    font-family: var(--body-font);
    color: var(--neutral-foreground-rest);
    font-style: normal;
}

    .fluent-typography:not([default-margin])[b-jnmllcruje] {
        margin-block: 0px;
    }

    .fluent-typography[typo='body'][b-jnmllcruje] {
        font-size: var(--type-ramp-base-font-size);
        line-height: var(--type-ramp-base-line-height);
        font-weight: 400;
    }

    .fluent-typography[typo='subject'][b-jnmllcruje] {
        font-size: var(--type-ramp-plus-1-font-size);
        line-height: var(--type-ramp-plus-1-line-height);
        font-weight: 400;
    }

    .fluent-typography[typo='header'][b-jnmllcruje] {
        font-size: var(--type-ramp-plus-2-font-size);
        line-height: var(--type-ramp-plus-2-line-height);
        font-weight: 400;
    }

    .fluent-typography[typo='pane-header'][b-jnmllcruje] {
        font-size: var(--type-ramp-plus-3-font-size);
        line-height: var(--type-ramp-plus-3-line-height);
        font-weight: 400;
    }

    .fluent-typography[typo='email-header'][b-jnmllcruje] {
        font-size: var(--type-ramp-plus-4-font-size);
        line-height: var(--type-ramp-plus-4-line-height);
        font-weight: 400;
    }

    .fluent-typography[typo='page-title'][b-jnmllcruje] {
        font-size: var(--type-ramp-plus-5-font-size);
        line-height: var(--type-ramp-plus-5-line-height);
        font-weight: 400;
    }

    .fluent-typography[typo='hero-title'][b-jnmllcruje] {
        font-size: var(--type-ramp-plus-6-font-size);
        line-height: var(--type-ramp-plus-6-line-height);
        font-weight: 400;
    }

    .fluent-typography[bold][b-jnmllcruje] {
        font-weight: 600;
    }

    .fluent-typography[bolder][b-jnmllcruje] {
        font-weight: 800;
    }

    .fluent-typography[disabled][b-jnmllcruje] {
        opacity: var(--disabled-opacity);
    }

.fluent-typo-left[b-jnmllcruje] {
    text-align: left;
}

.fluent-typo-center[b-jnmllcruje] {
    text-align: center;
}

.fluent-typo-right[b-jnmllcruje] {
    text-align: right;
}
/* _content/SystemNext.Client.UI/Fluent/Components/Layout/FluentLayout.razor.rz.scp.css */
.layout[b-zf7jw94ckl] {
    height: 100%;
    width: 100%;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}
/* _content/SystemNext.Client.UI/Fluent/Components/MessageBar/FluentMessageBar.razor.rz.scp.css */
/* OneRow */

.fluent-messagebar[b-ux8qjwcpo6] {
    font-family: var(--body-font);
    background-color: var(--neutral-layer-floating);
    color: var(--neutral-foreground-rest);
    display: grid;
    grid-template-columns: 24px 1fr auto;
    width: 100%;
    padding: 0px 3px;
    align-items: center;
    min-height: 36px;
    border-radius: calc(var(--control-corner-radius) * 1px);
    padding: 0 12px;
    column-gap: 8px;
    animation: fadein-b-ux8qjwcpo6 1.5s;
}

.fluent-messagebar-container-action[b-ux8qjwcpo6] {
    display: flex;
    padding: 6px 0px;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
}

    .fluent-messagebar.intent-info[b-ux8qjwcpo6] {
        background-color: #f5f5f5; 
        border: 1px solid #d1d1d1; 

    }

    .fluent-messagebar.dark.intent-info[b-ux8qjwcpo6] {
        background-color: #141414;
        border: 1px solid #666;
    }

    .fluent-messagebar.intent-warning[b-ux8qjwcpo6] {
        background-color: #FDF6F3; 
        border: 1px solid #f4bfab; 
    }

    .fluent-messagebar.dark.intent-warning[b-ux8qjwcpo6] {
        background-color: #411200;
        border: 1px solid #DA3B01;
    }
    .fluent-messagebar.intent-error[b-ux8qjwcpo6] {
        background-color: #FDF3F4;
        border: 1px solid #f1bbbc;
    }

    .fluent-messagebar.dark.intent-error[b-ux8qjwcpo6] {
        background-color: #3F1011;
        border: 1px solid #D13438;
    }
    .fluent-messagebar.intent-success[b-ux8qjwcpo6] {
        background-color: #f1faf1;
        border: 1px solid #9fd89f;
    }

    .fluent-messagebar.dark.intent-success[b-ux8qjwcpo6] {
        background-color: #052505;
        border: 1px solid #107C10;
    }
    .fluent-messagebar.intent-custom[b-ux8qjwcpo6] {
        background-color: var(--neutral-layer-1);
        border: 1px solid var(--neutral-stroke-layer-rest);
    }

.fluent-messagebar-icon[b-ux8qjwcpo6] {
        grid-column: 1;
        display: flex;
        justify-content:center;
    }

.fluent-messagebar-message[b-ux8qjwcpo6] {
    grid-column: 2;
    padding: 10px 0;
    align-self: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;

}

.fluent-messagebar-message .title[b-ux8qjwcpo6]{
    font-weight: 600;
    padding: 0 4px 0 0;

}

.fluent-messagebar-message[b-ux8qjwcpo6]  fluent-anchor {
        margin-inline-start: 5px;
 }

[b-ux8qjwcpo6] .fluent-messagebar-action {
    height: 24px;

}

.fluent-messagebar-close[b-ux8qjwcpo6] {
    grid-column: 3;
    padding: 4px;
    justify-self: center;
    align-self: center;
    fill: var(--neutral-fill-strong-active);
    cursor: pointer;
    max-width: 16px;
    max-height: 16px;
}

/* Notification */

.fluent-messagebar-notification[b-ux8qjwcpo6] {
    font-family: var(--body-font);
    color: var(--neutral-foreground-rest);
    display: grid;
    grid-template-columns: 24px 1fr auto;
    grid-template-rows: 36px 1fr auto;
    width: 100%;
    min-height: 36px;
    padding: 0 12px;
    column-gap: 8px;
    animation: fadein-b-ux8qjwcpo6 1.5s;
}

    .fluent-messagebar-notification.intent-info[b-ux8qjwcpo6] {
        fill: #797775; /* Gray */
    }

    .fluent-messagebar-notification.intent-warning[b-ux8qjwcpo6] {
        fill: #d83b01; /* Orange */
    }

    .fluent-messagebar-notification.intent-error[b-ux8qjwcpo6] {
        fill: #a80000; /* Red */
    }

    .fluent-messagebar-notification.intent-success[b-ux8qjwcpo6] {
        fill: #107c10; /* Green */
    }

.fluent-messagebar-notification-icon[b-ux8qjwcpo6] {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    justify-content: center;
}

.fluent-messagebar-notification-message[b-ux8qjwcpo6] {
    grid-column: 2;
    grid-row: 1;
    padding: 10px 0;
    align-self: center;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.fluent-messagebar-notification-content[b-ux8qjwcpo6] {
    grid-column: 1 / 4;
    grid-row: 2;
    padding: 6px 6px;
}

.fluent-messagebar-notification-content[b-ux8qjwcpo6]   fluent-anchor {
    margin-inline-start: 5px;
}

[b-ux8qjwcpo6] .fluent-messagebar-notification-action {
    margin-left: 5px;
}

.fluent-messagebar-notification-close[b-ux8qjwcpo6] {
    grid-column: 3;
    grid-row: 1;
    padding: 4px;
    display: flex;
    justify-content: center;
    justify-self: center;
    cursor: pointer;
}

.fluent-messagebar-notification-time[b-ux8qjwcpo6] {
    grid-column: 2 / 4;
    grid-row: 3;
    font-size: 12px;
    right: 10px;
    text-align: right;
    padding: 0px 4px 4px 0px;
}

@keyframes fadein-b-ux8qjwcpo6 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
/* _content/SystemNext.Client.UI/Fluent/Components/MessageBar/FluentMessageBarProvider.razor.rz.scp.css */
.fluent-messagebar-provider[b-6bbfd1uevb] {
    display: flex;
    flex-direction: column;
    row-gap: calc( var(--design-unit) * 2px);
    padding-bottom: calc(var(--design-unit) * 1px);
}
/* _content/SystemNext.Client.UI/Fluent/Components/Overflow/FluentOverflow.razor.rz.scp.css */
.fluent-overflow[orientation="horizontal"][b-zdab9otu9x] {
    display: flex;
    flex-direction: row;
    overflow-x: hidden;
    gap: 5px;
}

.fluent-overflow[orientation="vertical"][b-zdab9otu9x] {
    display: flex;
    flex-direction: column;
    overflow-y: hidden;
}

.fluent-overflow-more[b-zdab9otu9x] {
    min-width: 32px;
    max-width: 32px;
}

.fluent-overflow[b-zdab9otu9x]  > *[overflow] {
    display: none;
}
/* _content/SystemNext.Client.UI/Fluent/Components/Overlay/FluentOverlay.razor.rz.scp.css */
.fluent-overlay[b-v1zcsxgsmp] {
    inset: 0px;
    display: flex;
    pointer-events: auto;    
    width: 100%;
    height: 100%;
    overflow: hidden auto;
}
/* _content/SystemNext.Client.UI/Fluent/Components/Pagination/FluentPaginator.razor.rz.scp.css */
.paginator[b-dkbi5fgotk] {
    display: flex;
    /*border-top: 1px solid var(--neutral-stroke-divider-rest);*/
    margin-top: 0.5rem;
    padding: 0.25rem 0;
    align-items: center;
}

.pagination-text[b-dkbi5fgotk] {
    margin: 0 0.5rem;
}

.paginator-nav[b-dkbi5fgotk] {
    padding: 0; 
    display: flex;
    margin-inline-start: auto;
    margin-inline-end: 0;
    gap: 0.5rem;
    align-items: center;
}

    
[dir="rtl"] *[b-dkbi5fgotk]  fluent-button > svg {
    transform: rotate(180deg);
}
/* _content/SystemNext.Client.UI/Fluent/Components/Stack/FluentStack.razor.rz.scp.css */
.stack-vertical[b-8zf26wc9t8] {
    display: flex;
    flex-direction: column;
}

.stack-horizontal[b-8zf26wc9t8] {
    display: flex;
    flex-direction: row;
}
/* _content/SystemNext.Client.UI/Fluent/Components/Tabs/FluentTab.razor.rz.scp.css */
fluent-tab[b-y4b5sbf764] {
    -webkit-user-select: none;
    user-select: none;
    font-weight: 400;
}

    fluent-tab[aria-selected="true"][b-y4b5sbf764] {
        font-weight: 600;
        z-index: 1;
    }

    fluent-tab[overflow][b-y4b5sbf764] {
        display: none;
    }

    fluent-tab[disabled][b-y4b5sbf764] {
        cursor: not-allowed;
        color: var(--neutral-foreground-hint)
    }

[b-y4b5sbf764] .fluent-tab-icon {
    fill: var(--neutral-fill-strong-active);
    min-width: 18px;
    max-width: 18px;
}

[b-y4b5sbf764] .fluent-tab-close {
    fill: var(--neutral-fill-strong-active);
    cursor: pointer;
    max-width: 12px;
    max-height: 12px;
    margin-left: 6px;
}

    [b-y4b5sbf764] .fluent-tab-close:hover {
        fill: var(--neutral-fill-strong-hover);
    }
/* _content/SystemNext.Client.UI/Fluent/Components/Toast/FluentToast.razor.rz.scp.css */
.fluent-toast[b-fngh6x0d54] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: initial;
    margin-bottom: 10px;
    padding: 12px;
    position: relative;
    min-width: 292px;
    max-width: 500px;
    min-height: 44px;
    font-family: var(--body-font);
    background-color: var(--neutral-layer-floating);
    box-shadow: var(--elevation-shadow-tooltip);
    border-radius: calc( var(--control-corner-radius) * 1px);
    color: var(--neutral-foreground-rest);
    overflow-wrap: break-word;
    word-break: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
    -webkit-user-select: none;
    user-select: none;
    overflow: hidden;
    pointer-events: auto;
    animation-name: fadein-b-fngh6x0d54;
    animation-duration: 0.5s;
    animation-delay: 0s;
}


    .fluent-toast[b-fngh6x0d54]  .fluent-toast-title {
        flex-grow: 1;
        font-weight: 600;
        font-size: 14px;
    }

    .fluent-toast[b-fngh6x0d54]  .fluent-toast-action {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        width: 48px;
        min-width: 48px;
        height: 20px;
        font-weight: 400;
    }

    .fluent-toast[b-fngh6x0d54]  .fluent-toast-body {
        display: flex;
        flex-direction: column;
        width: calc( 100% - 12px);
        justify-content: flex-start;
        padding-inline-start: 24px;

    }

    .fluent-toast[b-fngh6x0d54]  .fluent-toast-small {
        font-size: 12px;
        line-height: 16px;
    }

    .fluent-toast[b-fngh6x0d54]  .fluent-toast-action:has(.timestamp) {
        cursor: initial;
    }

    .fluent-toast[b-fngh6x0d54]  .fluent-toast-details {
        font-size: 14px;
        line-height: 20px;
    }

    .fluent-toast[b-fngh6x0d54]  .fluent-toast-progressbar {
        display: grid;
        padding: 8px 0px 0px;
        width: 100%;
    }

    .fluent-toast[b-fngh6x0d54]  .fluent-toast-progressbar-percentage {
        font-size: 12px;
        line-height: 16px;
        padding-top: 7px;
    }

    .fluent-toast[b-fngh6x0d54]  .fluent-toast-actions {
        display: flex;
        align-items: flex-end;
        gap: 16px;
        height: 28px;
        width: calc( 100% - 12px);
        justify-content: flex-start;
        padding-inline-start: 24px;
    }

@keyframes fadein-b-fngh6x0d54 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
/* _content/SystemNext.Client.UI/Fluent/Components/Toast/FluentToastProvider.razor.rz.scp.css */
.fluent-toast-provider[b-9tjsy0p1ek] {
    display: flex;
    flex-direction: column;
    position: fixed;
    z-index: 999;
}

.position-topleft[b-9tjsy0p1ek],
.position-topright[b-9tjsy0p1ek],
.position-topcenter[b-9tjsy0p1ek] {
    top: 0;
}

.position-bottomleft[b-9tjsy0p1ek],
.position-bottomright[b-9tjsy0p1ek],
.position-bottomcenter[b-9tjsy0p1ek] {
    bottom: 0;
}

.position-topleft[b-9tjsy0p1ek] {
    top: 24px;
    left: 24px;
}

.position-topright[b-9tjsy0p1ek] {
    top: 24px;
    right: 24px;
}

.position-topcenter[b-9tjsy0p1ek] {
    top: 24px;
    left: 50%;
    transform: translate(-50%, 0%);
}

.position-bottomleft[b-9tjsy0p1ek] {
    bottom: 24px;
    left: 24px;
}

.position-bottomright[b-9tjsy0p1ek] {
    bottom: 24px;
    right: 24px;
}

.position-bottomcenter[b-9tjsy0p1ek] {
    bottom: 24px;
    left: 50%;
    transform: translate(-50%, 0%);
}
/* _content/SystemNext.Client.UI/NX/Components/DataGrid/Columns/NXColumnBase.razor.rz.scp.css */
/* Contains the title text and sort indicator, and expands to fill as much of the col width as it can */
.col-title[b-01puswpsrb] {
    display: flex; /* So that we can make col-title-text expand as much as possible, and still hide overflow with ellipsis */
    min-width: 0px;
    flex-grow: 1;
    padding: 0;
}

/* If the column is sortable, its title is rendered as a button element for accessibility and to support navigation by tab */
button.col-title[b-01puswpsrb] {
    border: none;
    background: none;
    position: relative;
    cursor: pointer;
}

.col-justify-center .col-title[b-01puswpsrb] {
    justify-content: center;
}

.col-justify-end .col-title[b-01puswpsrb], .col-justify-right .col-title[b-01puswpsrb] {
    flex-direction: row-reverse; /* For end-justified cols, the sort indicator should appear before the title text */
}

/* We put the column title text in its own element primarily so that it can use text-overflow: ellipsis */
.col-title-text[b-01puswpsrb] {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
/* _content/SystemNext.Client.UI/NX/Components/DataGrid/NXDataGridCell.razor.rz.scp.css */
.nx-data-grid-cell[b-llsmortbxj] {
    white-space: nowrap;
    overflow:clip;
    text-overflow: ellipsis;
    font-size: 14px;
    padding: 4px 10px;
    border-right: 1px solid transparent;
}

.multiline-text[b-llsmortbxj] {
    white-space: inherit !important;
    overflow: auto !important;
    word-break: break-word !important;
}

.column-header[b-llsmortbxj] {
    display: flex;
    align-self: center;
    padding-inline: 0;
    border-right: 1px solid var(--nx-color-primary-light-lighter);
}

    .column-header.col-justify-end[b-llsmortbxj], .column-header.col-justify-right[b-llsmortbxj] {
        width: 100%;
        padding: 0;
        justify-content: end;
    }

    .column-header.col-justify-center[b-llsmortbxj] {
        width: 100%;
        padding: 0;
        justify-content: center;
    }

    .column-header[b-llsmortbxj] >  .col-sort-button {
        flex-grow: 1;
        padding-inline-end: 5px;
    }

        .column-header[b-llsmortbxj] >  .col-sort-button::part(content) {
            overflow: hidden;
            text-overflow: ellipsis;
        }

    .column-header.col-justify-end[b-llsmortbxj]  .col-title-text, .column-header.col-justify-right[b-llsmortbxj]  .col-title-text {
        text-align: end;
    }

    .column-header.col-justify-end[b-llsmortbxj]  .col-sort-button, .column-header.col-justify-right[b-llsmortbxj]  .col-sort-button {
        justify-content: end;
    }

    .column-header.col-justify-center[b-llsmortbxj]  .col-title-text {
        text-align: center;
    }

    .column-header.col-justify-end[b-llsmortbxj]  .col-sort-button, .column-header.col-justify-right[b-llsmortbxj]  .col-sort-button {
        justify-content: end;
        text-align: end;
    }

[b-llsmortbxj] .col-sort-button::part(control) {
    align-items: center;
    justify-content: start;
    overflow: hidden;
    text-overflow: ellipsis;
}

.col-justify-center[b-llsmortbxj]  .col-sort-button::part(control) {
    justify-content: center;
}

.col-justify-end[b-llsmortbxj]  .col-sort-button::part(control), .col-justify-right[b-llsmortbxj]  .col-sort-button::part(control) {
    justify-content: end;
}

.col-justify-center[b-llsmortbxj] {
    /*justify-self: center;*/
    text-align: center;
}

.col-justify-end[b-llsmortbxj], .col-justify-right[b-llsmortbxj] {
    /*    justify-self: end;
    padding-inline-end: 20px;*/
    text-align: end;
}

    .col-justify-end .col-title[b-llsmortbxj], .col-justify-right .col-title[b-llsmortbxj] {
        justify-content: end;
    }

[b-llsmortbxj] .col-title {
    padding: 0 calc((12 + (var(--design-unit) * 2 * var(--density))) * 1px);
    display: flex;
    align-items: center;
}

[b-llsmortbxj] .col-title-text {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 600;
    font-size: 12px; /*ch*/
}

[b-llsmortbxj] .show-when-row-hover {
    display: none;
}

[b-llsmortbxj] .always-hide {
    display: none;
}
/* _content/SystemNext.Client.UI/NX/Components/DataGrid/NXDataGridRow.razor.rz.scp.css */
.nx-data-grid-row[b-e9wepqdbz8] {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 1px 0px;
}

    .nx-data-grid-row[row-type="header"][b-e9wepqdbz8] {
        background-color: var(--nx-color-primary-light);
        border: 2px solid var(--nx-color-primary-light);
        cursor: default;
    }

    .nx-data-grid-row[row-type="default"][b-e9wepqdbz8] {
        background-color: white;
        border-top: 2px solid transparent;
        border-left: 2px solid transparent;
        border-right: 2px solid transparent;
        border-bottom: 2px solid #ebebeb;
    }

    .nx-data-grid-row[row-selected][b-e9wepqdbz8] {
        background-color: var(--nx-color-primary-light-lighter);
        border: 2px solid var(--nx-color-primary-dark) !important;
    }


.nx-data-grid-row[row-type="default"]:hover[b-e9wepqdbz8] {
    background-color: var(--nx-color-primary-light-lighter) !important;
}

.header[b-e9wepqdbz8] {
    padding: 0;
    z-index: 3;
}

.sticky-header[b-e9wepqdbz8] {
    z-index: 3;
}

/*pokaz gdy selected*/
[b-e9wepqdbz8][row-selected] .show-when-row-hover {
    display: block !important;
}

/*pokaz gdy hover*/
[b-e9wepqdbz8]:hover .show-when-row-hover {
    display: block !important;
}

/* _content/SystemNext.Client.UI/NX/Components/Divider/NXDivider.razor.rz.scp.css */
.divider-heading[b-66ws1o569x] {
    width: 100%;
    margin-top: -10px;
    border-bottom: 2px var(--nx-color-primary-light) solid;
}

.divider-title[b-66ws1o569x] {
    position: relative;
    font-size: 12px;
    background-color: white;
    top: 10px !important;
    padding: 0 10px;
    margin-left: 20px;
}
/* _content/SystemNext.Client.UI/NX/Components/FieldWithLabel/NXFieldWithLabel.razor.rz.scp.css */
.nx-fl-comp[b-ao2oyuj3wj] {
    border: 1px solid #583787;
    border-radius: 5px;
    padding: 1px 5px 1px 7px;
    margin-right: 4px;
}

.nx-fl-comp-noborder[b-ao2oyuj3wj] {
    border: 1px solid white;
    border-radius: 5px;
    padding: 0 5px 0 7px;
    margin-right: 4px;
}

.nx-fl-comp:focus-within[b-ao2oyuj3wj] {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

[b-ao2oyuj3wj] > input, [b-ao2oyuj3wj] > select, [b-ao2oyuj3wj] .nx-field-root {
    border: none !important;
    outline: none !important;
    font-size: 12px !important;
}

.nx-fl-label[b-ao2oyuj3wj] {
    border: none;
    outline: none;
    font-size: 12px;
    color: #6c757d;
    margin-right: 0.25rem;
}
/* _content/SystemNext.Client.UI/NX/Components/Hint/NXHint.razor.rz.scp.css */
.nx-hint-wrapper[b-6vv8jr221i] {
    position: relative;
    /*width: 100%;*/
}

.nx-hint-item[b-6vv8jr221i] {
    border: none;
    background-color: white;
    text-align: left;
    border: solid 2px white;
}

    .nx-hint-item:hover[b-6vv8jr221i] {
        background-color: var(--nx-color-primary-light-lighter);
    }

.nx-hint-item-selected[b-6vv8jr221i] {
    border: solid 2px var(--nx-color-primary);
    background-color: var(--nx-color-primary-light);
}

.nx-hint-niewszystkie[b-6vv8jr221i] {
    background-color: var(--nx-color-warning);
    text-align: center;
    font-size: 12px;
    padding: 2px 0;
}

.nx-hint-results[b-6vv8jr221i] {
    position: absolute;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #dbdbdb;
    min-height: 2rem;
    max-height: 30rem;
    overflow-y: auto;
    z-index: 20;
    width: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.nx-hint-notfound[b-6vv8jr221i] {
    color: red;
    font-size: 12px;
    margin-left: 4px;
}

.nx-input-group-text[b-6vv8jr221i] {
    background-color: white !important;
    padding: 0 0.4rem;
}

.nx-hint-search[b-6vv8jr221i] {
    padding: .4rem;
    align-items: center;
    justify-content: center;
    cursor: default;
    color: #dbdbdb;
    position: absolute;
    z-index: 10;
}

.nx-hint-field[b-6vv8jr221i] {
    padding: 4px 0 4px 30px !important;
    border-left: calc(var(--stroke-width)* 1px) solid var(--nx-color-primary-light-lighter) !important;
    border-right: calc(var(--stroke-width)* 1px) solid var(--nx-color-primary-light-lighter) !important;
    border-top: calc(var(--stroke-width)* 1px) solid var(--nx-color-primary-light-lighter) !important;
    border-bottom: calc(var(--stroke-width)* 1px) solid var(--nx-color-primary-light) !important;
    border-radius: 4px !important;
}

    .nx-hint-field:focus[b-6vv8jr221i] {
        margin-bottom: -2px;
        border-bottom: 2px solid var(--nx-color-primary) !important;
        box-shadow: none !important;
    }

.nx-hint-reset[b-6vv8jr221i] {
    padding: .4rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #dbdbdb;
    position: absolute;
    right: 3px;
    z-index: 10;
}

    .nx-hint-reset:hover[b-6vv8jr221i] {
        color: #333333;
    }
/* _content/SystemNext.Client.UI/NX/Components/InputCheckBox/NXInputCheckbox.razor.rz.scp.css */
*[b-330ailbdmy],
*[b-330ailbdmy]:before,
*[b-330ailbdmy]:after {
    box-sizing: border-box;
}

body[b-330ailbdmy] {
    margin: 0;
}

form[b-330ailbdmy] {
    display: grid;
    place-content: center;
    min-height: 100vh;
}

.nx-field-root[b-330ailbdmy] {
    padding: 4px 8px !important;
    display: grid;
    grid-template-columns: 1em auto;
    gap: 1em;
}

.nx-field-root-margin[b-330ailbdmy] {
    margin-top: 20px;
}


input[type="checkbox"][b-330ailbdmy] {
    /* Add if not using autoprefixer */
    -webkit-appearance: none;
    /* Remove most all native input styles */
    appearance: none;
    /* For iOS < 15 */
    background-color: var(--form-background);
    /* Not removed via appearance */
    margin: 0;
    font: inherit;
    color: currentColor;
    margin-top: 2px;
    width: 1.35em;
    height: 1.35em;
    border: 1px solid var(--nx-color-primary-light);
    border-radius: 0.15em;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
}

    input[type="checkbox"][b-330ailbdmy]::before {
        content: "";
        width: 0.65em;
        height: 0.65em;
        clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
        transform: scale(0);
        transform-origin: bottom left;
        transition: 60ms transform ease-in-out;
        box-shadow: inset 1em 1em var(--nx-color-primary);
        /* Windows High Contrast Mode */
        /*background-color: CanvasText;*/
    }

    input[type="checkbox"]:checked[b-330ailbdmy]::before {
        transform: scale(1);
    }


    input[type="checkbox"]:disabled[b-330ailbdmy] {
        cursor: not-allowed;
    }
/* _content/SystemNext.Client.UI/NX/Components/MiesiacRok/NXMiesiacRokComponent.razor.rz.scp.css */
.zd-aktualny[b-lky7up4bp7] {
    color: lightblue;
    cursor: pointer;
    width: 60px;
    margin: 1.6rem 0 0 0.5rem !important;
    padding: 0 !important;
}

    .zd-aktualny:hover[b-lky7up4bp7] {
        text-decoration: underline;
    }
/* _content/SystemNext.Client.UI/NX/Components/Pagination/NXPaginator.razor.rz.scp.css */
.paginator[b-z9x4swis6y] {
    display: flex;
    /*border-top: 1px solid var(--neutral-stroke-divider-rest);*/
    margin-top: 0.25rem; /* oryginalnie 0.5rem*/
    padding: 0; /* oryginalnie 0.25rem 0 */
    align-items: center;
}

.pagination-text[b-z9x4swis6y] {
    margin: 0 0.5rem;
}

.paginator-nav[b-z9x4swis6y] {
    padding: 0; 
    display: flex;
    margin-inline-start: auto;
    margin-inline-end: 0;
    gap: 0.5rem;
    align-items: center;
}

    
[dir="rtl"] *[b-z9x4swis6y]  fluent-button > svg {
    transform: rotate(180deg);
}
/* _content/SystemNext.Client.UI/NX/Components/ValidationMessage/NXValidationMessage.razor.rz.scp.css */
.validation-message[b-dj2pigwlvr] {
    color: var(--error);
    font-size: var(--type-ramp-minus-1-font-size);
    display: flex;
    align-items: center;
    column-gap: 4px;
}
/* _content/SystemNext.Client.UI/NX/PageParts/NXListPageFiltr.razor.rz.scp.css */
.list-page-filtr[b-75mgrjzfzx] {
    display: flex;
    flex-direction: row;
    align-items: center;
    border-bottom: 2px solid var(--accent-base-color);
    padding: 2px;
}
/* _content/SystemNext.Client.UI/NX/PageParts/NXPageButtons.razor.rz.scp.css */
.nx-page-buttons[b-2anewyhcb5] {
    background-color: var(--nx-color-primary-light-lighter);
    border: 1px solid var(--nx-color-primary-light);
    padding: 0.4rem 0.5rem;
    display: flex;
    margin: 0.5rem -1px -5px -1px;
}

    [b-2anewyhcb5] > a, [b-2anewyhcb5] > button {
        margin-right: 0.5rem;
    }
/* _content/SystemNext.Client.UI/NX/PageParts/NXPageCentered.razor.rz.scp.css */
[b-3qv8fi2iv7] .nx-page-header {
    padding: 0.5rem 1rem;
    font-weight: bold;
    color: white;
    background-color: var(--nx-color-primary);
    margin: 0 -1px;
}
/* _content/SystemNext.Client.UI/NX/PageParts/NXPanelMenuItem.razor.rz.scp.css */
.nx-panel-menu-item[b-s3mgt9pyk3] {

}

    .nx-panel-menu-item svg[b-s3mgt9pyk3] {
        fill: var(--nx-color-primary);
    }

    .nx-panel-menu-item a[b-s3mgt9pyk3] {
        cursor: pointer;
        padding: 3px 10px;
        display: inline-block;
        width: 100%;
        text-decoration: none;
        border: 1px solid white;
        border-radius: 5px;
    }

    .nx-panel-menu-item-sm a[b-s3mgt9pyk3] {
        padding: 0px 10px 0px 10px !important;
    }

        .nx-panel-menu-item a:link[b-s3mgt9pyk3], .nx-panel-menu-item a:visited[b-s3mgt9pyk3] {
            color: var(--nx-color-primary-dark);
        }

        .nx-panel-menu-item a:hover[b-s3mgt9pyk3] {
            background-color: var(--nx-color-primary-light);
            border-color: var(--nx-color-primary);
            color: var(--nx-color-primary);
        }


.nx-panel-menu-item i[b-s3mgt9pyk3] {
    margin-right: 5px;
}

/* _content/SystemNext.Client.UI/NX/PageParts/NXResultMessage.razor.rz.scp.css */
.nx-result-message[b-v2sx045bpg] {
    background-color: var(--nx-color-canvas);
    border: 1px solid var(--nx-color-primary-light);
    border-radius: 6px;
}

.nx-result-message-info[b-v2sx045bpg] {
    color: var(--nx-color-info);
}

.nx-result-message-success[b-v2sx045bpg] {
    color: var(--nx-color-Succes);
}

.nx-result-message-failure[b-v2sx045bpg] {
    color: var(--nx-color-danger);
}
