/* /Components/AlertPrompt.razor.rz.scp.css */
section[b-abwisvjq9z] {
    min-width: 15vw;
    max-width: 40vw;
    padding: 0.5em 1em;
    font-size: 1.25rem;
}

.prompt-field[b-abwisvjq9z] {
    margin-top: 1rem;
}

footer[b-abwisvjq9z] {
    padding: 0.5em 1em 1em;
    font-size: 1.25rem;
    display: flex;
    justify-content: flex-end;
    gap: 0.5em;
}
/* /Components/Dialog.razor.rz.scp.css */
.dialog-backdrop[b-4fi6qh7d5l] {
    display: contents;
}

.dialog-backdrop.modal[b-4fi6qh7d5l] {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.2);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 100ms ease-in-out;
}

.dialog-backdrop.modal.open[b-4fi6qh7d5l] {
    opacity: 1;
    pointer-events: all;
}

.dialog[b-4fi6qh7d5l] {
    transition: opacity 200ms ease-in-out, transform 200ms ease-in-out;
    transform: translateY(0px);
    opacity: 1;
    pointer-events: all;
    padding: 0;
    background-color: var(--canvas-bg-color);
    box-shadow: 4px 4px 12px rgba(64, 64, 64, 0.6);
    border: 1px outset #777;
    font-family: Verdana, Helvetica, sans-serif;
    font-size: 0.8em;
    z-index: 1;
    min-width: 16em;
}

.dialog:not(.modal)[b-4fi6qh7d5l] {
    position: fixed;
}

.dialog:not(.open)[b-4fi6qh7d5l] {
    opacity: 0;
    pointer-events: none;
}

.dialog.modal:not(.open)[b-4fi6qh7d5l] {
    transform: translateY(-200px);
}

.dialog-title[b-4fi6qh7d5l] {
    background-color: var(--main-bg-color);
    border-bottom: 1px solid #777;
    color: #FFFFFF;
    font-size: 1.5em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4em 0.4em 0.4em 1em;
    user-select: none;
}

.dialog:not(.modal) .dialog-title[b-4fi6qh7d5l] {
    cursor: move;
}

.dialog-close-btn[b-4fi6qh7d5l] {
    font-weight: bold;
    color: #FFFFFF;
    background-color: var(--icon-bg-color);
    border: none;
    border-radius: 3px;
    padding: 0.3em 0.6em;
    cursor: pointer;
    user-select: none;
}

.dialog-close-btn:hover[b-4fi6qh7d5l] {
    background-color: var(--icon-bg-color-hover);
}

.dialog-content[b-4fi6qh7d5l] {
    color: #000000;
    overflow-x: hidden;
    max-height: 80vh;
}
/* /Components/Dialogs/AnchorsDialog.razor.rz.scp.css */
.anchors-wrapper[b-57v7rcndso] {
    font-size: 8pt;
    margin: 0.5em 1em 1em 1em;
    display: grid;
    grid-template-areas:
        ". t ."
        "l c r"
        ". b q";
    grid-template-rows: 2.5em 5em 2.5em;
    grid-template-columns: 2.5em 5em 2.5em;
    grid-gap: .5em;
}

.anchors-fill[b-57v7rcndso] {
    grid-area: c;
    background-color: #b0b0b0;
    border: 1px solid #5B5B5B;
}

.tooltip-icon[b-57v7rcndso] {
    position: relative;
    grid-area: q;
    border: 1px solid #5B5B5B;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ccc;
    border-color: #ccc;
    background: none;
    cursor: help;
    margin: .4em;
    user-select: none;
}

.tooltip-icon > .tooltip[b-57v7rcndso] {
    position: fixed;
    top: 50%;
    left: calc(100% + 0.5em);
    width: 40vw;
    padding: 0.5em 2em;
    background-color: rgb(from var(--main-bg-color) r g b / 95%);
    border-radius: 8px;
    box-shadow: 4px 4px 4px rgb(0 0 0 / 20%);
    pointer-events: none;
    transition: opacity 200ms ease-in-out, transform 200ms ease-in-out;
    opacity: 0;
    transform: scale(0);
}

.tooltip-icon:hover > .tooltip[b-57v7rcndso] {
    opacity: 1;
    transform: scale(1);
}
/* /Components/Dialogs/AnchorsDialogComponents/AnchorsButton.razor.rz.scp.css */
input[type="checkbox"][b-3uoeyzgjsi] {
    display: none;
}

input[type="checkbox"] + label[b-3uoeyzgjsi] {
    display: flex;
    background-color: #d8d8d8;
    border: 1px solid #5B5B5B;
    justify-content: center;
    align-items: center;
    transition: background-color .2s ease-in-out;
    cursor: pointer;
}

input[type="checkbox"]:disabled + label[b-3uoeyzgjsi] {
    cursor: not-allowed;
}

input[type="checkbox"] + label[b-3uoeyzgjsi]  svg path {
    transition: fill .2s ease-in-out;
    fill: #b0b0b0;
}

input[type="checkbox"]:checked:not(:disabled) + label[b-3uoeyzgjsi] {
    background-color: #009CA6;
}

input[type="checkbox"]:checked:not(:disabled) + label[b-3uoeyzgjsi]  svg path {
    fill: #fff;
}
/* /Components/Dialogs/ComponentsDialog.razor.rz.scp.css */
.components-wrapper[b-lhz1059908] {
    padding: 1em;
}

.components-list-wrapper[b-lhz1059908] {
    max-height: 50vh;
    overflow: auto;
    font-size: 8pt;
    margin-top: 0.5em;
}

.components-entry[b-lhz1059908] {
    --transition-time: 100ms;
    display: flex;
    align-items: center;
    width: 30em;
    user-select: none;
    border: 2px solid var(--canvas-bg-color);
    background-color: rgb(255 255 255 / 10%);
    transition: transform var(--transition-time) ease-in-out, opacity var(--transition-time) ease-in-out, max-height var(--transition-time) ease-in-out, border-width var(--transition-time) ease-in-out;
    transform: scaleY(1);
    opacity: 1;
    max-height: 6em;
    overflow: hidden;
}

.components-entry:not(.visible)[b-lhz1059908] {
    transform: scaleY(0);
    opacity: 0;
    max-height: 0;
    border-block-width: 0;
}

.entry-thumbnail-container[b-lhz1059908] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4em;
    height: 4em;
    padding: .5em;
    border: 1px solid var(--canvas-bg-color);
    background-color: #5b5b5b;
    background-image: repeating-conic-gradient(#d8d8d8 0% 25%, #eee 0% 50%);
    background-position: 50% center;
    background-size: 10px 10px;
}

.entry-label[b-lhz1059908] {
    flex: 1;
    padding: 0.5em 1em;
    width: 100%;
}

.entry-buttons[b-lhz1059908] {
    padding: 0.5em 1em;
}

.no-panels-notice[b-lhz1059908] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30em;
    height: 2em;
    transition: transform 100ms ease-in-out, opacity 100ms ease-in-out, height 100ms ease-in-out;
    transform: scaleY(1);
    opacity: 1;
}

.no-panels-notice:not(.visible)[b-lhz1059908] {
    transform: scaleY(0);
    opacity: 0;
    height: 0;
}
/* /Components/Dialogs/CreateMigrationsDialog.razor.rz.scp.css */
.create-migrations__wrapper[b-d1djxitrxy] {
    display: flex;
    flex-direction: column;
    padding: 0.5em;
}

.create-migrations__table-wrapper[b-d1djxitrxy] {
    flex: 1;
    position: relative;
}

.create-migrations__table-wrapper table[b-d1djxitrxy] {
    margin: 0.5em 0;
    table-layout: fixed;
    border-collapse: collapse;
    width: 100%;
    max-width: 60em;
    max-height: 60vh;
    height: calc(100% - 20px);
    font-size: 1.5em;
}

.create-migrations__table-wrapper table tbody[b-d1djxitrxy] {
    display: block;
    overflow: auto;
    height: 55vh;
}

.create-migrations__table-wrapper table tr[b-d1djxitrxy] {
    display: flex;
}

.create-migrations__table-wrapper table th[b-d1djxitrxy] {
    text-align: left;
    border-bottom: 1px solid #888888;
    background-color: rgba(0, 0, 0, 0.2);
}

.create-migrations__table-wrapper table td[b-d1djxitrxy] {
    border-bottom: 1px solid #444;
    cursor: pointer;
}

.create-migrations__table-wrapper table td[b-d1djxitrxy],
.create-migrations__table-wrapper table th[b-d1djxitrxy] {
    padding: 0.3em 0.6em;
}

.create-migrations__table-wrapper table .panel-checked-column[b-d1djxitrxy] {
    flex-basis: 32px;
}

.create-migrations__table-wrapper table .panel-type-column[b-d1djxitrxy] {
    flex-basis: 120px;
}

.create-migrations__table-wrapper table .panel-name-column[b-d1djxitrxy] {
    flex: 1;
}

.create-migrations__table-wrapper table .last-modified-column[b-d1djxitrxy] {
    width: 14em;
}

.create-migrations__table-wrapper table tr:hover td[b-d1djxitrxy] {
    background-color: rgba(0,0,0,0.1);
}

.create-migrations__table-wrapper table .active-row[b-d1djxitrxy] {
    background-color: #009CA6;
    color: #FFFFFF;
}

.create-migrations__table-wrapper table .depended-upon-row[b-d1djxitrxy] {
    background-color: #74A3A6;
    color: #EEEEEE;
}

.create-migrations__buttons-list[b-d1djxitrxy] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.create-migrations__buttons-list > div[b-d1djxitrxy] {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.create-migrations__buttons-list label[b-d1djxitrxy] {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.create-migrations__buttons-list .btn[b-d1djxitrxy] {
    color: #fff;
    background-color: var(--icon-bg-color);
    border: none;
    border-radius: 3px;
    padding: .3em .6em;
    cursor: pointer;
    user-select: none;
    height: 2.4rem;
}

.create-migrations__buttons-list .btn:hover[b-d1djxitrxy] {
    background-color: var(--icon-bg-color-hover);
}

.create-migrations__buttons-list .form-select[b-d1djxitrxy] {
    width: 14em;
    display: inline-block;
    height: 2.4rem;
}
/* /Components/Dialogs/OpenSavePanelDialogComponents/OpenSavePanelDialogModel.razor.rz.scp.css */
.dialog-toolbar[b-7o7ptvtw2l] {
    display: flex;
    margin: 0.5em 0.5em;
}
/* /Components/Dialogs/OpenSavePanelDialogComponents/PanelList.razor.rz.scp.css */
.panel-list-container[b-9humeh635o] {
    color: #000;
    position: relative;
    display: flex;
    height: 40vh;
    width: min(150em, 70vw);
    margin: 0.5em;
}

.panel-types-list[b-9humeh635o] {
    width: 196px;
    overflow: auto;
}

.panel-types-list .panel-type-button[b-9humeh635o] {
    display: block;
    position: relative;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    margin-bottom: -1px;
    background-color: var(--bs-gray-400);
    color: var(--bd-body-color);
    transition: all 0.1s ease-in-out;
    padding-left: 0.5em;
    border: 1px solid var(--bs-secondary);
    height: 2.5em;
    cursor: pointer;
}

.panel-types-list .panel-type-button.active[b-9humeh635o] {
    background-color: var(--bs-secondary);
    border-color: var(--bs-dark);
    color: #FFFFFF;
    padding-left: 1em;
    z-index: 1;
}

.panel-list[b-9humeh635o] {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 0.5em;
}

.panel-filter-container[b-9humeh635o] {
    padding-bottom: 0.5em;
}

.panel-list-entries[b-9humeh635o] {
    flex: 1;
    width: 100%;
    padding: 0.4em;
    background-color: rgba(0,0,0,0.1);
    overflow: auto;
}

.save-overlay[b-9humeh635o] {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #555555;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    font-size: 3em;
    font-weight: bold;
    user-select: none;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.1s ease-in-out;
}

.save-overlay.active[b-9humeh635o] {
    opacity: 1;
    pointer-events: all;
}
/* /Components/Dialogs/OpenSavePanelDialogComponents/PanelListEntry.razor.rz.scp.css */
.panel-entry[b-x0wcu1ziau] {
    position: relative;
    display: grid;
    grid-template-areas: "thumb name name btns" "thumb created updated btns";
    grid-template-columns: 85px 1fr 1fr 100px;
    column-gap: 10px;
    margin-bottom: 0.2em;
    padding: 0.2em 0.5em;
    border-left: 12px solid transparent;
    font-size: 1.25em;
    border-bottom: 1px solid #AAAAAA;
}

.panel-entry:hover[b-x0wcu1ziau] {
    background-color: rgba(255,255,255,0.1);
}

.panel-entry.last-opened[b-x0wcu1ziau] {
    border-left-color: #317531;
}

.thumbnail-column[b-x0wcu1ziau] {
    grid-area: thumb;
    width: 76px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0.4em;
    border: 1px solid var(--bs-gray-400);
    background-color: var(--bs-gray-600);
    background-image: repeating-conic-gradient(var(--bs-gray-400) 0% 25%, var(--bs-gray-200) 0% 50%);
    background-position: 50% center;
    background-size: 10px 10px;
}

.thumbnail-column img[b-x0wcu1ziau] {
    max-height: 66px;
    object-fit: contain;
}

.name-column[b-x0wcu1ziau] {
    grid-area: name;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.25em;
    font-size: 1.5em;
    height: 2em;
}

.name-column .form-control[b-x0wcu1ziau] {
    display: inline-block;
    width: 50%;
}

.name-column small[b-x0wcu1ziau] {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.5;
    cursor: help;
}

.name-column .damaged-panel[b-x0wcu1ziau] {
    color: #AA0000;
    cursor: help;
}

.created-column[b-x0wcu1ziau] {
    grid-area: created;
}

.updated-column[b-x0wcu1ziau] {
    grid-area: updated;
}

.buttons-column[b-x0wcu1ziau] {
    grid-area: btns;
    padding-top: 0.1em;
}

.buttons-column button[b-x0wcu1ziau] {
    display: block;
    width: 100%;
    margin-bottom: 0.2em;
}

.delete-overlay[b-x0wcu1ziau] {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    font-size: 1.5em;
    color: #FFFFFF;
    background-color: rgba(0,0,0,0.2);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 150ms ease-in-out;
}

.delete-overlay.active[b-x0wcu1ziau] {
    opacity: 1;
    pointer-events: all;
}
/* /Components/Dialogs/SavePanelDialog.razor.rz.scp.css */
.save-panel-settings[b-4i5l4w65vx] {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.save-panel-settings label[b-4i5l4w65vx] {
    display: flex;
    align-items: center;
    gap: 0.5em;
    white-space: nowrap;
}
/* /Components/Dialogs/ShortcutListDialog.razor.rz.scp.css */
.shortcuts-wrapper[b-jhw5zl00vh] {
    padding: 1em;
}

.shortcuts-table-wrapper[b-jhw5zl00vh] {
    margin-top: 1em;
    overflow: auto;
    border: 1px solid #212529;
    background-color: rgb(255 255 255 / 20%);
    flex: 1;
    max-height: 50vh;
    max-width: 40vw;
}

table[b-jhw5zl00vh] {
    border-collapse: collapse;
}

table th[b-jhw5zl00vh] {
    text-align: left;
}

.category-row[b-jhw5zl00vh] {
    font-size: 1.5em;
}

table td[b-jhw5zl00vh] {
    border: 1px solid #888888;
}

table td:first-child[b-jhw5zl00vh] {
    border-left: none;
}

table td:last-child[b-jhw5zl00vh] {
    border-left: none;
}
/* /Components/EditorPanels/BottomPanel.razor.rz.scp.css */
#tools_bottom[b-4mf28ch3y7] {
    grid-area: b;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
    padding-left: 40px;
    border-right: 1px solid var(--border-color);
}

#tools_bottom[b-4mf28ch3y7]  > * {
    display: flex;
    align-items: center;
    white-space: nowrap;
}
/* /Components/EditorPanels/BottomPanelComponents/PreviewControls.razor.rz.scp.css */
.preview-box[b-nbl0q4zydp] {
    display: flex;
    align-items: center;
    gap: 0.5em;
    margin-right: 0.5em;
}

.preview-tr-number[b-nbl0q4zydp] {
    width: 10em;
}

.preview-type-select[b-nbl0q4zydp] {
    width: 10em;
}

.preview-submit-btn[b-nbl0q4zydp] {
    color: #FFFFFF;
    background-color: var(--icon-bg-color-hover);
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    border-radius: .25rem;
    transition: background-color 50ms ease-in-out;
}

.preview-submit-btn:hover[b-nbl0q4zydp] {
    background-color: color-mix(in srgb, var(--icon-bg-color-hover), var(--icon-bg-color) 40%);
}
/* /Components/EditorPanels/BottomPanelComponents/ZoomComboBox.razor.rz.scp.css */
.zoom-combo-box[b-oxg9vdfyy8] {
    margin-left: 0.25em;
}

.zoom-combo-box .form-control[b-oxg9vdfyy8] {
    width: 6.2em;
    max-width: 6.2em;
    height: 2.45em;
}

.zoom-combo-box .dropdown-menu[b-oxg9vdfyy8] {
    display: block;
    pointer-events: none;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom center !important;
    transition: opacity 100ms ease-in-out, transform 100ms ease-in-out;
    box-shadow: 4px 4px 8px rgba(0,0,0,0.2);
    margin-bottom: 4px;
}

.zoom-combo-box .dropdown-menu.open[b-oxg9vdfyy8] {
    pointer-events: all;
    opacity: 1;
    transform: scaleY(1);
}

/*
// Mac specific corrections
:global(body.mac) {
    .zoomDropdownBtn {
        margin-right: 0;
    }

    .zoomInput input {
        height: 2.45em !important;
    }
}
*/
/* /Components/EditorPanels/CommonComponents/ColourEditorComponents/RegistrationColourEditor.razor.rz.scp.css */
.input-group[b-etl8ddhz6r] {
    width: 82px;
}
/* /Components/EditorPanels/CommonComponents/ColourSwatchPreview.razor.rz.scp.css */
.swatch-preview-wrapper[b-op7agtpemk] {
    width: 24px;
    height: 24px;
    aspect-ratio: 1;
    display: inline-block;
    position: relative;
    border: 1px solid #5B5B5B;
    background-color: #fff;
    background-image: url(../../../images/map-opacity.png);
}

.swatch-preview[b-op7agtpemk] {
    position: absolute;
    inset: 0;
}

.registration-mark[b-op7agtpemk] {
    mix-blend-mode: difference;
    filter: grayscale(1);

    > * {
        fill: none;
        /* Off-white so that the difference blend mode won't make the symbol invisible at 50% grey. */
        stroke: rgb(200, 200, 255);
        stroke-width: 4;
    }
}

.spot-color-widget polygon[b-op7agtpemk] {
    fill: white;
    stroke: black;
    stroke-width: 1px;
}

.spot-color-widget circle[b-op7agtpemk] {
    fill: black;
    stroke-width: 0;
}
/* /Components/EditorPanels/CommonComponents/NumericInput.razor.rz.scp.css */
.input-group[b-x7onki2z90] {
    flex-wrap: nowrap !important;
}

.input-group-text[b-x7onki2z90] {
    user-select: none;
}

input[b-x7onki2z90] { 
    text-overflow: ellipsis;
}

input.short[b-x7onki2z90] {
    width: 6.2em;
    max-width: 6.2em;
}

.icon[b-x7onki2z90] {
    margin-right: 0.5em;
    user-select: none;
}
/* /Components/EditorPanels/CommonComponents/PopoutButton.razor.rz.scp.css */
.popout-btn-wrapper[b-9pmf33y3dk] {
    user-select: none;
    position: relative;
}

button[b-9pmf33y3dk] {
    user-select: none;
    height: 2px;
    min-height: 30px;
    width: 30px;
    min-width: 30px;
    margin: 2px 1px 4px;
    padding: 3px;
    background-color: var(--icon-bg-color);
    cursor: pointer;
    border: none;
    border-radius: 3px;
}

button:hover:not(:disabled)[b-9pmf33y3dk] {
    background-color: var(--icon-bg-color-hover);
}

button:disabled[b-9pmf33y3dk] {
    opacity: 0.3;
    cursor: default;
}

button.pressed[b-9pmf33y3dk] {
    background-color: var(--icon-bg-color-hover);
}

button img[b-9pmf33y3dk] {
    border: none;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.handle[b-9pmf33y3dk] {
    height: 8px;
    width: 8px;
    background-image: url(./images/handle.svg);
    position: absolute;
    bottom: 0px;
    right: 0px;
    cursor: alias;
}

.popout[b-9pmf33y3dk] {
    position: absolute;
    top: 0px;
    left: 24px;
    background: none !important;
    display: flex;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.1s ease-in-out, left 0.1s ease-in-out;
}

.popout.open[b-9pmf33y3dk] {
    left: 38px;
    opacity: 1;
    pointer-events: all;
}
/* /Components/EditorPanels/CommonComponents/ToolButton.razor.rz.scp.css */
button[b-4j7ggsh1nd] {
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    height: 2px;
    min-height: 30px;
    width: 30px;
    min-width: 30px;
    margin: 2px 1px 4px;
    padding: 3px;
    background-color: var(--icon-bg-color);
    cursor: pointer;
    border: none;
    border-radius: 3px;
}

button:hover:not(:disabled)[b-4j7ggsh1nd] {
    background-color: var(--icon-bg-color-hover);
}

button:disabled[b-4j7ggsh1nd] {
    opacity: 0.3;
    cursor: default;
}

button.pressed[b-4j7ggsh1nd] {
    background-color: var(--icon-bg-color-hover);
}

button img[b-4j7ggsh1nd] {
    border: none;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* /Components/EditorPanels/LeftPanel.razor.rz.scp.css */
#tools_left[b-gwumo2uyes] {
    grid-area: l;
    border-right: none;
    width: 36px;
    margin-top: -2px;
    padding-left: 4px;
    z-index: 4;
}
/* /Components/EditorPanels/RightPanel.razor.rz.scp.css */
#tools_right[b-wztr4vy6ie] {
    display: flex;
    flex-direction: column;
    flex: 1;
    grid-area: r;
    padding: 4px 4px 8px;
    border-left: none;
    overflow-x: hidden;
    overflow-y: visible;
    width: 360px;
}
/* /Components/EditorPanels/RightPanelComponents/DocumentSettings.razor.rz.scp.css */
.document-notes[b-50i33n2yk2] {
    width: 100%;
    height: 10em;
    min-height: 2em;
    max-height: 50vh;
    resize: vertical;
    padding: 0.5em;
}
/* /Components/EditorPanels/RightPanelComponents/ElementsSettings.razor.rz.scp.css */
.colour-type-closed-header[b-v8bvwxntuj] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.colour-type-closed-header > div[b-v8bvwxntuj] {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-weight: normal;
}

.colour-type-selector[b-v8bvwxntuj] {
    display: flex;
    column-gap: 0.5em;
}
/* /Components/EditorPanels/RightPanelComponents/SidebarTabContainer.razor.rz.scp.css */
.tab-container[b-25x5mua2kx] {
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 0; /* A small flexbox hack. */
}

.tab-buttons[b-25x5mua2kx] {
    list-style: none;
    display: flex;
    margin: 0.5em 0.2em 0;
    padding: 0;
    gap: 0.5em;
}

.tab-button[b-25x5mua2kx] {
    padding: 0.4em 0.8em;
    border-radius: 4px 4px 0 0;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 100ms ease-in-out;
}

.tab-button.active[b-25x5mua2kx] {
    background-color: var(--bs-primary);
    color: #FFF;
}

.tab-content[b-25x5mua2kx] {
    background-color: rgb(255 255 255 / 10%);
    flex: 1;
    overflow-y: auto;
    box-shadow: inset 0 0 8px #0006;
    padding: 1em;
}

.tab-content[b-25x5mua2kx]::-webkit-scrollbar {
    -webkit-appearance: none;
}

.tab-content[b-25x5mua2kx]::-webkit-scrollbar:vertical {
    width: 11px;
}

.tab-content[b-25x5mua2kx]::-webkit-scrollbar:horizontal {
    height: 11px;
}

.tab-content[b-25x5mua2kx]::-webkit-scrollbar-thumb {
    border-radius: 8px;
    border: 2px solid var(--main-bg-color);
    background-color: rgba(0, 0, 0, .5);
}

.tab-content[b-25x5mua2kx]::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, .6);
}

&[b-25x5mua2kx]::-webkit-scrollbar-corner {
    background-color: #A0A0A0;
}

.tab-content[b-25x5mua2kx]  .alert p {
    margin: 0;
}

.tab-content[b-25x5mua2kx]  table {
    width: 100%;
    border-collapse: collapse;
}

.tab-content[b-25x5mua2kx]  table th {
    text-align: left;
}

.tab-content[b-25x5mua2kx]  table input,
.tab-content[b-25x5mua2kx]  table select,
.tab-content[b-25x5mua2kx]  table textarea {
    box-sizing: border-box;
}
/* /Components/EditorPanels/RightPanelComponents/TabPageGrids/GridSection.razor.rz.scp.css */
.section-header[b-qr3wu5g4er] {
    padding: 0.8em 0;
    text-align: left;
    font-size: 1.2em;
    cursor: pointer;
    display: flex;
    align-items: center;

    > i {
        margin-right: 0.5em;
        margin-top: 0.25em;
    }
}

.section-header-separator[b-qr3wu5g4er] {
    height: 0.8em;
    border-bottom: 1px solid #999999;
}
/* /Components/EditorPanels/RightPanelComponents/TabPageGrids/GridSections.razor.rz.scp.css */
table[b-k6t3q4peiy]  tr td {
    padding-bottom: 0.2em;
    padding-right: 0.5em;

    &:last-child {
        min-width: 66%;
        padding-right: 0;
    }
}

table[b-k6t3q4peiy]  details {
    background-color: rgba(0,0,0,0.1);
    padding: 1em;
    margin: 0.5em -0.2em;
    border-radius: 4px;
    box-shadow: inset 0 0 16px rgb(0 0 0 / 10%);

    &:not([open]) {
        padding-bottom: 0.5em;
    }
}
/* /Components/EditorPanels/RightPanelComponents/TextSettings.razor.rz.scp.css */
.text-alignment[b-v4m55ys5xy] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.text-alignment-buttons[b-v4m55ys5xy] {
    display: flex;
    justify-content: space-between;
    gap: 0.5em;
    margin: 0.5em 0;
}

.text-alignment-buttons label[b-v4m55ys5xy] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    background-color: var(--icon-bg-color);
    color: #fff;
    padding: .4em .8em;
    cursor: pointer;
    border-radius: 4px;
    user-select: none;
}

.text-alignment-buttons label[b-v4m55ys5xy]  input {
    display: none;
}

.text-alignment-buttons label:has(:checked)[b-v4m55ys5xy] {
    background-color: var(--icon-bg-color-hover);
}
/* /Components/EditorPanels/TopPanel.razor.rz.scp.css */
#tools_top_container[b-af8e35updt] {
    grid-area: t;
    margin-left: 0.5em;
    padding-top: 2px;
    border-bottom: none;
    overflow: visible;
    border-right: 1px solid var(--border-color);
}

#tools_top_container[b-af8e35updt]  :is(#tools_top, #tools_top > div, #tools_top__react_host > div) {
    display: flex;
    align-items: center;
}

#tools_top_container[b-af8e35updt]  :is(#tools_top > select, #tools_top > div > select, #tools_top__react_host > div > select) {
    height: 2.5em;
    margin: 0 0.2em;
}

#tools_top_container[b-af8e35updt]  #tools_top {
    flex-wrap: wrap;
}

#tools_top_container[b-af8e35updt]  .tool_sep {
    margin-top: 5px;
}

#tools_top_container[b-af8e35updt]  :is(.input-group-text, select) {
    user-select: none;
}

#tools_top_container[b-af8e35updt]  .input-group {
    margin-left: 0.5em;
}
/* /Components/EditorPanels/TopPanelComponents/ButtonPanels/MultiselectedPanel.razor.rz.scp.css */
.relative_to_label[b-kmnxta5eec] {
    display: flex;
    white-space: nowrap;
    align-items: center;
    column-gap: .5em;
}

select[b-kmnxta5eec] {
    font-size: 0.8em;
    padding-top: 0.7em;
    padding-bottom: 0.4em;
}
/* /Components/EditorPanels/TopPanelComponents/MenuBarComponents/CurrentlyOpenPanelName.razor.rz.scp.css */
.currently-open-panel-name[b-9lqqaby8jc] {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: start;
    height: 2em;
    margin: 0 auto;
    padding: 0 2em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background-color: rgb(255 255 255 / 10%);
    border-radius: 16px 16px 16px 16px / 12px 12px 12px 12px;
}

span[b-9lqqaby8jc] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* /Components/EditorPanels/TopPanelComponents/MenuBarComponents/MenuBar.razor.rz.scp.css */
.menubar[b-56etf22luf] {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.menubar > ul[b-56etf22luf] {
    display: flex;
    margin: 0;
    padding: 0;
}

.customer-dropdown[b-56etf22luf] {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5em;
    margin-left: 3em;
}

.customer-dropdown label[b-56etf22luf] {
    white-space: nowrap;
}
/* /Components/EditorPanels/TopPanelComponents/MenuBarComponents/MenuBarDdlEntry.razor.rz.scp.css */
.menuBarDdlEntry[b-83vn6w4h36] {
    cursor: pointer;
}

.menuBarDdlEntry.disabled[b-83vn6w4h36] {
    color: #AAAAAA;
}

.menuBarDdlEntry:not(.disabled):hover[b-83vn6w4h36] {
    background-color: #009CA6;
}

.menuBarDdlEntry td[b-83vn6w4h36] {
    padding: 0.5em 1em;
}

.menuBarDdlEntry .imageColumn[b-83vn6w4h36] {
    padding: 0.1em 0.1em 0.1em 0.5em;
}

.menuBarDdlEntry .imageColumn img[b-83vn6w4h36] {
    height: 1.5em;
}

.menuBarDdlEntry .labelColumn[b-83vn6w4h36] {
    padding-left: 0.2em;
}

.menuBarDdlEntry .shortcutColumn[b-83vn6w4h36] {
    text-align: right;
    position: relative;
}
/* /Components/EditorPanels/TopPanelComponents/MenuBarComponents/MenuBarEntry.razor.rz.scp.css */
.menuBarEntry[b-mimh0ve6hc] {
    list-style: none;
    cursor: pointer;
    position: relative;
    margin-right: 0.15em;
}

.menuBarEntry > span[b-mimh0ve6hc] {
    display: inline-block;
    position: relative;
    padding: 0.4em 0.8em 00.5em;
    font-size: 1.1em;
    border: 1px solid transparent;
    transition: background-color 100ms ease-in-out, border-color 100ms ease-in-out;
}

.menuBarEntry:hover > span[b-mimh0ve6hc] {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.menuBarEntry.active > span[b-mimh0ve6hc] {
    background-color: transparent;
    border-color: #AAAAAA;
    border-bottom-color: var(--main-bg-color);
    z-index: 101;
}

.menuBarEntry > table[b-mimh0ve6hc] {
    position: absolute;
    left: 0;
    top: 100%;
    display: flex;
    flex-direction: column;
    margin: -1px 0 0 0;
    padding: 0;
    z-index: 100;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    border: 1px solid #AAAAAA;
    border-collapse: collapse;
    font-size: 1.1em;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.2);
    background-color: var(--main-bg-color);
    transform: scale(0.5, 0);
    transform-origin: top center;
    transition: transform 100ms ease-in-out;
    transition-delay: 0, 0;
}

.menuBarEntry.active > table[b-mimh0ve6hc] {
    opacity: 1;
    transform: scale(1, 1);
    pointer-events: all;
    transition-delay: 100ms;
}

.menuBarEntry > table > tbody[b-mimh0ve6hc] {
    margin: 0.3em 0.2em;
}
/* /Components/EditorPanels/TopPanelComponents/MenuBarComponents/MenuBarPopoutEntry.razor.rz.scp.css */
.menuBarDdlEntry[b-ar3gymgsge] {
    cursor: pointer;
}

.menuBarDdlEntry.disabled[b-ar3gymgsge] {
    color: #AAAAAA;
}

.menuBarDdlEntry:not(.disabled):hover[b-ar3gymgsge] {
    background-color: #009CA6;
}

.menuBarDdlEntry td[b-ar3gymgsge] {
    padding: 0.5em 1em;
}

.menuBarDdlEntry .imageColumn[b-ar3gymgsge] {
    padding: 0.1em 0.1em 0.1em 0.5em;
}

.menuBarDdlEntry .imageColumn img[b-ar3gymgsge] {
    height: 1.5em;
}

.menuBarDdlEntry .labelColumn[b-ar3gymgsge] {
    padding-left: 0.2em;
}

.menuBarDdlEntry .shortcutColumn[b-ar3gymgsge] {
    text-align: right;
    position: relative;
}

.popoutDropdown[b-ar3gymgsge] {
    --safety-margin-block: 1em;
    --safety-margin-inline: 0.5em;
    position: absolute;
    left: calc(100% + 3px - var(--safety-margin-inline));
    top: calc(var(--safety-margin-block) * -1);
    padding-block: var(--safety-margin-block);
    padding-inline: var(--safety-margin-inline);
}

.popoutDropdown table[b-ar3gymgsge] {
    background-color: var(--main-bg-color);
    border: 1px solid #AAAAAA;
    border-collapse: collapse;
    text-align: left;
}
/* /Components/EditorPanels/TopPanelComponents/MenuBarComponents/MenuBarSeparator.razor.rz.scp.css */
.separator td[b-umhdwykvi3] {
    margin: 0 1em;
    padding: 0;
}

.separator:hover[b-umhdwykvi3] {
    background-color: transparent;
}

.separator div[b-umhdwykvi3] {
    border-bottom: 1px solid #888888;
    margin: 0.4em 2em;
}
/* /Components/ErrorsWidget.razor.rz.scp.css */
.errors-widget[b-y85dgigky9] {
    grid-area: w;
    position: relative;
    pointer-events: none;
}

.errors-widget-button[b-y85dgigky9] {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 2em;
    height: 2em;
    background: none;
    border: none;
    color: #CC0000;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 100ms ease-in-out;
    pointer-events: all;
}

.errors-widget-button:hover[b-y85dgigky9] {
    opacity: 1;
}

.errors-widget-unread-badge[b-y85dgigky9] {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: #FFFFFF;
    border-radius: 4px;
    height: 1.25em;
    aspect-ratio: 1;
    font-size: 1.25rem;
}

.errors-widget-panel[b-y85dgigky9] {
    position: absolute;
    top: 24px;
    right: 4em;
    width: 60%;
    background: rgba(128, 0, 0, 0.5);
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    font-size: 1.5rem;
    z-index: 1000;
    pointer-events: none;
    transition: transform 100ms ease-in-out, opacity 100ms ease-in-out;
    transform: translateX(2em) scale(0, 0);
    transform-origin: top right !important;
    opacity: 0;
}

.errors-widget-panel.open[b-y85dgigky9] {
    pointer-events: all;
    transform: translateX(0) scale(1, 1);
    opacity: 1;
}

.errors-widget-panel .errors-widget-panel-buttons[b-y85dgigky9] {
    display: flex;
    justify-content: flex-end;
    gap: 0.25em;
    padding: 0.25em 0.5em;
}

.errors-widget-panel .errors-widget-panel-table-wrapper[b-y85dgigky9] {
    overflow: auto;
    max-height: 50vh;
    padding: 0.2em;
}

.errors-widget-panel table[b-y85dgigky9] {
    border-collapse: collapse;
    width: 100%;
    overflow: auto;
}

.errors-widget-panel table td[b-y85dgigky9] {
   padding: 0.25em 0.5em;
   border-bottom: 1px solid rgba(255,255,255,0.2);
}

.errors-widget-panel table td:last-child[b-y85dgigky9] {
    width: 90px;
    text-align: right;
}

.errors-widget-panel table tr td:first-child[b-y85dgigky9] {
    border-left: 4px solid transparent;
}

.errors-widget-panel tr.no-errors td[b-y85dgigky9] {
    text-align: center;
}

.errors-widget-panel tr.unread[b-y85dgigky9] {
    background-color: rgba(164, 0, 0, 0.8);
}

.errors-widget-panel tr.read[b-y85dgigky9] {
    background-color: rgba(164, 0, 0, 0.5);
}

.errors-widget-panel table tr.unread td:first-child[b-y85dgigky9] {
    border-left-color: #FF5500;
}

.errors-widget-panel table[b-y85dgigky9]  p {
    margin: 0;
}

.errors-widget-panel table[b-y85dgigky9]  p:not(:last-child) {
    margin-bottom: 0.5em;
}

.errors-widget-panel table[b-y85dgigky9]  details,
.errors-widget-panel table[b-y85dgigky9]  details summary {
    margin: 0;
}

.errors-widget-panel table[b-y85dgigky9]  details[open],
.errors-widget-panel table[b-y85dgigky9]  details[open] summary {
    margin-bottom: 0.5em;
}

.errors-widget-panel table[b-y85dgigky9]  details > p {
    margin-left: 1em;
    margin-right: 1em;
}
/* /Components/LoadingSpinner.razor.rz.scp.css */
.loading-overlay[b-3td17izpjl] {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
    color: #FFFFFF;
    font-size: 3rem;
    background-color: rgba(0,0,0,0.2);
    backdrop-filter: blur(4px);
    transition: opacity 250ms ease-in-out;
}

.loading-overlay[aria-hidden=true][b-3td17izpjl] {
    opacity: 0;
    pointer-events: none;
}

.loading-overlay[b-3td17izpjl]  .sk-grid-cube {
    box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.loading-overlay .loading-text[b-3td17izpjl] {
    font-weight: bold;
    text-shadow: 2px 2px 2px rgba(0,0,0,0.2);
}
/* /Components/PlaceholderPanels/BarcodePlaceholders.razor.rz.scp.css */
#BARCODE_PLACEHOLDERS_ALL[b-owkt9xn7ij] {
    --barcode-placeholder-bg-opacity: 0.1;
    --barcode-placeholder-bg-fill: #ECB3FF;
    --barcode-placeholder-bg-stroke: #6000FF;
    --barcode-placeholder-bars-color: #6000FF;
    --barcode-placeholder-text-color: #EC008C;
}

#BARCODE_PLACEHOLDERS_ALL[b-owkt9xn7ij]  .bcph_bg {
    opacity: 0.1;
    fill: #ECB3FF;
    stroke: #6000FF;
}

#BARCODE_PLACEHOLDERS_ALL[b-owkt9xn7ij]  .bcph_bar {
    fill: #6000FF;
}

#BARCODE_PLACEHOLDERS_ALL[b-owkt9xn7ij]  .bcph_text {
    fill: #EC008C;
}
/* /Components/Toaster.razor.rz.scp.css */
.toaster[b-y8lyk8slzw] {
    grid-area: w;
    position: relative;
    pointer-events: none;
    padding: 16px 1.5em 0 16px;
    padding: calc(16px + 0.5em) 1.5em 0 calc(16px + 0.5em);
}
/* /Components/Toasts/Toast.razor.rz.scp.css */
.toast[b-qpc4y8oqso] {
    --text-color: #000000;
    --background-color: #FFFFFF;
    display: flex;
    align-items: center;
    position: relative;
    gap: 1em;
    pointer-events: all;
    z-index: 1000;
    font-size: 1rem;
    padding: 0.5em 1em;
    margin: 0 0 0.5em 0;
    color: var(--text-color);
    background-color: var(--background-color);
    border-radius: 0.25rem;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease-in-out;
}

.toast.closing[b-qpc4y8oqso] {
    opacity: 0;
}

.toast.info[b-qpc4y8oqso] {
    --text-color: #FFFFFF;
    --background-color: #00ABED;
}

.toast.success[b-qpc4y8oqso] {
    --text-color: #FFFFFF;
    --background-color: #00AA00;
}

.toast.warning[b-qpc4y8oqso] {
    --text-color: #FFFFFF;
    --background-color: #D59D00;
}

.toast.error[b-qpc4y8oqso] {
    --text-color: #FFFFFF;
    --background-color: #AA2222;
}

.toast-icon[b-qpc4y8oqso] {
    font-size: 2.5rem;
}

.toast-content[b-qpc4y8oqso] {
    flex: 1;
    font-size: 1.25rem;
}

.toast-close[b-qpc4y8oqso] {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    padding: 0.4em 0.6em;
    margin: 0;
    border: none;
    color: var(--text-color);
    background-image: none;
    background-color: rgba(0, 0, 0, 0);
    cursor: pointer;
    transition: background-color 100ms ease-in-out;
}

.toast-close:hover[b-qpc4y8oqso] {
    background-color: rgba(0,0,0,0.1);
}

.toast-progress-wrapper[b-qpc4y8oqso] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    width: 100%;
    background-color: rgba(0,0,0,0.2);
    transform-origin: left;
    transition: opacity 100ms ease-in-out;
}

.toast-progress-wrapper.suppressed[b-qpc4y8oqso] {
    opacity: 0;
}

.toast-progress-bar[b-qpc4y8oqso] {
    transform: scaleX(0);
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    animation-name: toast-progress-bar-fill-b-qpc4y8oqso;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
    animation-play-state: paused;
}

@keyframes toast-progress-bar-fill-b-qpc4y8oqso {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}
