/* ============================================================
   GEAR Theme � derived from GEAR workflow-manager-spec-v1.html
   Color tokens:
     Navy    #0B2444 / #0f2d54 / #1a3a5c
     Teal    #1A9E78 / #22c795
     Gold    #C49A0C
     Red     #dc2626
     Amber   #d97706
     Green   #16a34a
     Off     #F4F6FA  (page background)
     Border  #d8e0ec
     Text    #1a2535
     Muted   #5a6a7e
   ============================================================ */

/* ?? Light theme token overrides ??????????????????????????????? */
html, body {
    --windowbackground:    #F4F6FA;
    --panelbackground:     #FFFFFF;
    --containerbackground: #eef1f6;
    --filebackground:      #d8e0ec;
    --hoverbackground:     rgba(26, 158, 120, 0.08);
    --hovercolor:          rgba(26, 158, 120, 0.12);
    --activecolor:         rgba(26, 158, 120, 0.2);
    --disabledcolor:       #9aabb8;
    --disabledbackground:  #eef1f6;
    --shadowcolor:         rgba(11, 36, 68, 0.12);
    --highlightcolor:      rgba(26, 158, 120, 0.1);
    --highlightbordercolor:#1A9E78;
    --border:              1px solid #d8e0ec;
    --border2:             0.5px solid #d8e0ec;
    --bordercolor:         #d8e0ec;
    --comboborder:         1px solid #d8e0ec;
    --fontcolor:           #1a2535;
    --fontcolorlight:      #5a6a7e;
    --textcolor:           #5a6a7e;
    --iconcolor:           #5a6a7e;
    --tooltipbackground:   #0B2444;
    --tooltipcolor:        #FFFFFF;
    --buttonhovercolor:    rgba(26, 158, 120, 0.12);
    --buttonactivecolor:   #1A9E78;
    --buttonlight:         #FFFFFF;
    --checkbox:            #1A9E78;
    --button:              #1A9E78;
    --groupbackground:     #eef1f6;
    --flowchartcolor:      #eef1f6;
    --flowchartpathcolor:  #F4F6FA;
    --flowchartpathbordercolor: #d8e0ec;
    --rangeslider:         #1A9E78;
    --rangesliderline:     #d8e0ec;
    --tabborder:           1px solid #1A9E78;
    --svgfilter:           brightness(0) saturate(100%) invert(38%) sepia(56%) saturate(400%) hue-rotate(116deg) brightness(88%) contrast(90%);
    --disablesvgfilter:    brightness(0) saturate(100%) invert(60%) sepia(10%) saturate(400%) hue-rotate(170deg) brightness(95%) contrast(80%);

    font-family: 'DM Sans', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ?? Dark theme token overrides ???????????????????????????????? */
body.dark {
    --windowbackground:    #0d1b2a;
    --panelbackground:     #0f2d54;
    --containerbackground: #0B2444;
    --filebackground:      #1a3a5c;
    --hoverbackground:     rgba(26, 158, 120, 0.15);
    --hovercolor:          rgba(26, 158, 120, 0.2);
    --activecolor:         rgba(26, 158, 120, 0.3);
    --disabledcolor:       #546e7a;
    --disabledbackground:  #0B2444;
    --shadowcolor:         rgba(0, 0, 0, 0.4);
    --highlightcolor:      rgba(26, 158, 120, 0.2);
    --highlightbordercolor:#22c795;
    --border:              1px solid rgba(255, 255, 255, 0.08);
    --border2:             0.5px solid rgba(255, 255, 255, 0.07);
    --bordercolor:         rgba(255, 255, 255, 0.08);
    --comboborder:         1px solid rgba(255, 255, 255, 0.08);
    --fontcolor:           #c9d6e3;
    --fontcolorlight:      #7ec8e3;
    --textcolor:           #7ec8e3;
    --iconcolor:           #7ec8e3;
    --tooltipbackground:   #1a3a5c;
    --tooltipcolor:        #c9d6e3;
    --buttonhovercolor:    rgba(26, 158, 120, 0.2);
    --buttonactivecolor:   #22c795;
    --buttonlight:         #0f2d54;
    --checkbox:            #22c795;
    --button:              #1A9E78;
    --groupbackground:     #0B2444;
    --flowchartcolor:      #1a3a5c;
    --flowchartpathcolor:  #0B2444;
    --flowchartpathbordercolor: rgba(255, 255, 255, 0.06);
    --rangeslider:         #22c795;
    --rangesliderline:     rgba(255, 255, 255, 0.15);
    --tabborder:           1px solid #22c795;
    --svgfilter:           brightness(0) saturate(100%) invert(74%) sepia(20%) saturate(600%) hue-rotate(116deg) brightness(110%) contrast(90%);
    --disablesvgfilter:    brightness(0) saturate(100%) invert(45%) sepia(10%) saturate(400%) hue-rotate(180deg) brightness(80%) contrast(80%);

    scrollbar-color: #1a3a5c #0B2444;
    background-color: var(--windowbackground);
}

/* ?? Toolbar & Status bar ?????????????????????????????????????? */
.toolbar-container {
    background-color: var(--panelbackground);
    border-bottom: var(--border);
    box-shadow: 0 1px 3px var(--shadowcolor);
}

.statusbar-container {
    background-color: var(--panelbackground);
    border-top: var(--border);
}

/* ?? Ribbon menu ?????????????????????????????????????????????? */
.ribbonmenu-body {
    background-color: var(--panelbackground);
    border: var(--border);
    border-radius: 0 8px 8px 8px;
    box-shadow: 0 2px 8px var(--shadowcolor);
}

.ribbonmenu-header-text {
    color: var(--textcolor);
    font-size: 11px;
    letter-spacing: 0.4px;
    padding: 2px 2px;
    transition: color 0.15s, border-color 0.15s;
}

.ribbonmenu-header-text:hover {
    color: #1A9E78;
    border-bottom: 2px solid #1A9E78;
}

.ribbonmenu-header-text.selected {
    color: #1A9E78;
    border-bottom: 2px solid #1A9E78;
    font-weight: 600;
}

.ribbonmenu-group {
    border-right: var(--border);
}

.ribbonmenu-group-text {
    color: var(--textcolor);
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ?? Panels ??????????????????????????????????????????????????? */
.panel {
    background-color: var(--panelbackground);
    border: var(--border);
    border-radius: 4px;
    box-shadow: 0 1px 4px var(--shadowcolor);
}

.panel-header {
    background-color: var(--panelbackground);
    border-bottom: var(--border);
    font-weight: 600;
    font-size: 11px;
    color: var(--fontcolor);
    letter-spacing: 0.3px;
}

/* ?? Property groups ?????????????????????????????????????????? */
.property-group {
    border: var(--border);
    border-radius: 6px;
    margin-bottom: 8px;
}

.property-group .property-group-header {
    background-color: var(--windowbackground);
    border-bottom: var(--border);
    font-size: 12px;
    font-weight: 600;
    color: var(--fontcolor);
    letter-spacing: 0.3px;
    padding: 6px 8px;
    border-radius: 5px 5px 0 0;
}

.property-group .property-group-header img {
    filter: var(--svgfilter);
}

.property-group.false>.property-group-header {
    border-radius: 5px;
}

/* ?? Property labels ?????????????????????????????????????????? */
.property-text {
    color: var(--textcolor);
    font-size: 11px;
}

.property-value {
    border: var(--border);
    border-radius: 4px;
}

.property-value:focus-within {
    border-color: #1A9E78;
    box-shadow: 0 0 0 2px rgba(26, 158, 120, 0.15);
}

/* ?? Buttons ??????????????????????????????????????????????????? */
.button {
    border: var(--border);
    border-radius: 6px;
    transition: background-color 0.12s, box-shadow 0.12s;
}

.button:hover {
    background-color: var(--buttonhovercolor) !important;
    box-shadow: 0 1px 4px var(--shadowcolor);
}

.button:active {
    background-color: var(--activecolor) !important;
}

.button img {
    filter: var(--svgfilter);
}

.button.disabled img {
    filter: var(--disablesvgfilter);
}

/* Primary / accent button (uses --button color) */
.propertygrid-footer .button,
.property-appbutton .button {
    background-color: var(--button);
    color: #FFFFFF;
    border: none;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.propertygrid-footer .button:hover,
.property-appbutton .button:hover {
    background-color: #22c795 !important;
    box-shadow: 0 2px 6px rgba(26, 158, 120, 0.35);
}

/* Panel header action button */
.panel-header .right-button {
    background-color: transparent;
    border: 1px solid #1A9E78;
    color: #1A9E78;
    font-weight: 500;
}

.panel-header .right-button:hover {
    background-color: #1A9E78 !important;
    color: #FFFFFF !important;
}

/* Toolbar separator */
.toolbar-separator {
    border-right: var(--border);
}

/* ?? Tabs ?????????????????????????????????????????????????????? */
.tab-header {
    background-color: var(--panelbackground);
    border-bottom: var(--border);
}

.tab-header-item {
    color: var(--textcolor);
    font-size: 11px;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s;
}

.tab-header-item:hover {
    color: #1A9E78;
    border-bottom-color: rgba(26, 158, 120, 0.4);
}

.tab-header-item.selected {
    color: #1A9E78;
    border-bottom-color: #1A9E78;
    font-weight: 600;
    background-color: transparent;
}

/* ?? Tables ??????????????????????????????????????????????????? */
.property-table th {
    background-color: var(--windowbackground);
    border: var(--border);
    color: var(--fontcolor);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 6px 14px;
}

.property-table td {
    border: var(--border);
}

.property-table tr:has(:hover, :focus) td {
    background: #A4D9E4 !important;
}

.property-table tr:has(:hover, :focus) input {
    background: #A4D9E4;
}

.datagrid .property.property-table .property.display {
    background-color: rgba(26, 158, 120, 0.1);
}

/* ?? Expander ?????????????????????????????????????????????????? */
.expander {
    border: var(--border);
    border-radius: 6px;
    margin-bottom: 8px;
}

.expander-header {
    background-color: var(--windowbackground);
    border-radius: 5px 5px 0 0;
    font-size: 11px;
    font-weight: 600;
    color: var(--fontcolor);
    padding: 5px 8px;
    transition: background-color 0.12s;
}

.expander-header:hover {
    background-color: var(--hoverbackground);
}

/* ?? Tooltips ?????????????????????????????????????????????????? */
.tooltip {
    background-color: var(--tooltipbackground);
    border: none;
    border-radius: 6px;
    box-shadow: 0 4px 12px var(--shadowcolor);
    color: var(--tooltipcolor);
    font-size: 11px;
    padding: 6px 10px;
}

/* ?? Dialogs ?????????????????????????????????????????????????? */
.dialog {
    background-color: var(--panelbackground);
    border: var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(11, 36, 68, 0.18);
}

.dialog-header {
    color: #0B2444;
    font-size: 16px;
    font-weight: 700;
}

body.dark .dialog-header {
    color: var(--fontcolor);
}

.dialog-footer .button {
    background-color: var(--button);
    border: none;
    border-radius: 6px;
    color: #FFFFFF;
    font-weight: 600;
    padding: 6px 16px;
}

.dialog-footer .button:hover {
    background-color: #22c795 !important;
}

/* ?? Progress ring ???????????????????????????????????????????? */
[role="progressbar"] {
    --primary: #1A9E78;
    --secondary: rgba(26, 158, 120, 0.15);
}

.progress-ring .progress-message {
    background-color: #0B2444;
    border-radius: 6px;
    color: #FFFFFF;
}

/* ?? Scrollbar (Webkit) ??????????????????????????????????????? */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--windowbackground);
}

::-webkit-scrollbar-thumb {
    background-color: #d8e0ec;
    border-radius: 6px;
    transition: background-color 0.2s;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #1A9E78;
}

body.dark ::-webkit-scrollbar-track {
    background: #0B2444;
}

body.dark ::-webkit-scrollbar-thumb {
    background-color: #1a3a5c;
}

body.dark ::-webkit-scrollbar-thumb:hover {
    background-color: #22c795;
}

/* ?? Treeview ?????????????????????????????????????????????????? */
.treeview-node-header.true {
    background-color: rgba(26, 158, 120, 0.1);
    color: #1A9E78;
}

.treeview-node-header:hover {
    background-color: var(--hoverbackground);
}

.treeview-node .child-count {
    background-color: #1A9E78;
    color: #FFFFFF;
}

/* ?? Navigation view ??????????????????????????????????????????? */
.navigation-view-item:hover {
    background-color: var(--hoverbackground);
    color: #1A9E78;
}

.navigation-view-item.highlight {
    background-color: rgba(26, 158, 120, 0.1);
    color: #1A9E78;
}

/* ?? File menu / home page ???????????????????????????????????? */
.ribbon-menu-file {
    background-color: var(--windowbackground);
}

.file-header {
    background-color: #0B2444;
}

.file-navigation-item {
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
}

.file-navigation-item img {
    filter: brightness(0) saturate(100%) invert(100%);
}

.file-navigation-item:hover {
    background-color: rgba(26, 158, 120, 0.15);
    color: #FFFFFF;
}

.file-navigation-item.selected {
    background-color: rgba(26, 158, 120, 0.2);
    color: #FFFFFF;
}

.file-body h1,
.file-body h2 {
    color: #0B2444;
}

body.dark .file-body h1,
body.dark .file-body h2 {
    color: var(--fontcolor);
}

/* ?? Home-page thumbnails ????????????????????????????????????? */
.home-page.thumbnails {
    background-color: var(--windowbackground);
    border-top: var(--border);
    border-bottom: var(--border);
}

.home-page.thumbnails .thumbnail {
    background-color: var(--panelbackground);
    border: var(--border);
    border-radius: 8px;
    transition: box-shadow 0.15s, border-color 0.15s;
}

.home-page.thumbnails .thumbnail:hover {
    border-color: #1A9E78;
    box-shadow: 0 2px 8px rgba(26, 158, 120, 0.18);
}

.home-page.thumbnails .thumbnail-caption {
    color: var(--textcolor);
    font-weight: 600;
    font-size: 11px;
}

/* ?? Inline toggle buttons ???????????????????????????????????? */
.property-checkbox.inline-buttons {
    border-color: #d8e0ec;
}

.property-checkbox.inline-buttons.inline-buttons-selected {
    background-color: #1A9E78 !important;
    color: #FFFFFF;
    border-color: #1A9E78;
}

/* ?? Checkbox / radio accent ??????????????????????????????????? */
.property-group-list-body input[type="checkbox"] {
    accent-color: #1A9E78;
}

/* ?? Canvas toolbar ??????????????????????????????????????????? */
.canvas2d .toolbar,
.canvas3d .toolbar {
    background-color: var(--panelbackground);
    border-bottom: var(--border);
}

/* ?? Remark property (warning text color) ????????????????????? */
.property-remark .property-input {
    color: #dc2626;
}

.property-remark.true .property-input {
    color: #1A9E78;
}

/* ?? Error indicator ?????????????????????????????????????????? */
.property-error img {
    filter: brightness(0) saturate(100%) invert(26%) sepia(99%) saturate(1400%) hue-rotate(341deg) brightness(95%) contrast(105%);
}

/* ?? Group-toolbar AI button ??????????????????????????????????? */
.group-toolbar .button.ai-button {
    background-color: #0B2444 !important;
    border-radius: 6px !important;
    color: #FFFFFF;
}

.group-toolbar .button.ai-button:hover {
    background-color: #1A9E78 !important;
}

/* ?? AppView layout tightening ???????????????????????????????? */
.appview {
    background-color: var(--windowbackground);
}

/* ?? Statusbar info ??????????????????????????????????????????? */
.statusbar img {
    filter: var(--svgfilter);
}
html,
body {
    background-color: var(--windowbackground);
    color: var(--fontcolor);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    --windowbackground: #f5f7f9;
    --panelbackground: #FFFFFF;
    --containerbackground: #eff1f2;
    --filebackground: #C6CFDA;
    --hoverbackground: #E0E5EE;
    --hovercolor: #EEEEEE;
    --activecolor: #E0E0E0;
    --disabledcolor: #888888;
    --disabledbackground: #EEE;
    --shadowcolor: #AAAAAA;
    --highlightcolor: #AADDFF;
    --highlightbordercolor: #6666CC;
    --border: 1px solid #d8dee4;
    --border2: 0.5px solid #CCC;
    --bordercolor: #CCC;
    --comboborder: 0.5px solid #EEEEEE;
    --fontcolor: #000000;
    --textcolor: #000000;
    --iconcolor: #5b6a80;
    --tooltipbackground: #333;
    --tooltipcolor: #FFF;
    --buttonhovercolor: #AADDFF;
    --buttonactivecolor: #2a7b8c;
    --buttonlight: #FAFAFA;
    --checkbox: #959ba3;
    --button: #0067c0;
    --flowchartcolor: #eee;
    --flowchartpathcolor: #eff1f2;
    --flowchartpathbordercolor: #dee0e1;
    --groupbackground: #e8eef2;
    --rangeslider: #0067c0;
    --rangesliderline: #CCC;
    --tabborder: 1px solid var(--buttonactivecolor);
    --svgfilter: brightness(0) saturate(100%) invert(35%) sepia(15%) saturate(927%) hue-rotate(176deg) brightness(96%) contrast(90%);
    --disablesvgfilter: brightness(0) saturate(100%) invert(58%) sepia(20%) saturate(328%) hue-rotate(178deg) brightness(93%) contrast(84%);
}

    body.dark {
        --windowbackground: #000000;
        --panelbackground: #333333;
        --containerbackground: #222222;
        --filebackground: #C6CFDA;
        --hoverbackground: #666666;
        --hovercolor: #EEEEEE;
        --activecolor: #E0E0E0;
        --disabledcolor: #BBBBBB;
        --disabledbackground: #333333;
        --shadowcolor: #555555;
        --highlightcolor: #AADDFF;
        --highlightbordercolor: #6666CC;
        --border: 0.5px solid #444444;
        --bordercolor: #444444;
        --comboborder: 0.5px solid #EEEEEE;
        --fontcolor: #FFFFFF;
        --iconcolor: #a8b9d1;
        --tooltipbackground: #333;
        --tooltipcolor: #FFF;
        --buttonhovercolor: #336688;
        --buttonactivecolor: #AAAAFF;
        --buttonlight: #333333;
        --checkbox: #959ba3;
        --button: #0067c0;
        --flowchartcolor: #444;
        --flowchartpathcolor: #222222;
        --svgfilter: brightness(0) saturate(100%) invert(50%) sepia(15%) saturate(1200%) hue-rotate(176deg) brightness(120%) contrast(90%);
        --disablesvgfilter: brightness(0) saturate(100%) invert(58%) sepia(20%) saturate(500%) hue-rotate(178deg) brightness(93%) contrast(84%);
        scrollbar-color: #555 var(--panelbackground);
        background-color: var(--windowbackground);
    }

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}

input,
select {
    background-color: var(--panelbackground);
    color: var(--fontcolor);
    font-family: 'Segoe UI', 'Segoe UI Variable', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 12px;
}

    /* Chrome, Safari, Edge, Opera */
    input::-webkit-outer-spin-button,
    input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    /* Firefox */
    input[type=number] {
        -moz-appearance: textfield;
    }

input {
    padding-block: 0 !important;
    padding-inline: 0 !important;
}

img {
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.hidden {
    display: none !important;
}

.invisible {
    visibility: hidden;
}

.full-view {
    border-radius: 0 !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.disabled {
    cursor: default !important;
    color: var(--disabledcolor);
}

.menu-container-icon img {
    cursor: pointer;
    padding: 16px 0;
    width: 24px;
    margin: 0 16px;
}

.property {
    display: flex;
    padding: 2px 8px;
}

.property-icon img {
    filter: var(--svgfilter);
    width: 20px;
}

.property-text {
    align-content: center;
    color: var(--textcolor);
    width: 50%;
}

.property-table-body .property-text {
    display: none;
}

.property.property-enum-thumbnail {
    display: block;
    padding: 2px 0 2px 8px;
}

.property-enum-thumbnail .property-text {
    margin-bottom: 8px;
    width: unset;
}

.property-enum-thumbnail .thumbnails-body {
    margin: 0;
}

.property-enum-thumbnail .thumbnails {
    margin: 0 0 4px 0 !important;
    padding: 0 !important;
}

.property-enum-thumbnail .thumbnail {
    cursor: pointer;
    margin: 0 !important;
    padding: 8px !important;
    vertical-align: top;
}

    .property-enum-thumbnail .thumbnail.thumbnail-selected {
        background-color: var(--windowbackground);
    }

.property-enum-thumbnail .thumbnail-caption {
    padding: 8px 0 0 0 !important;
}

.property-range .property-text {
    width: 10%;
}

body .property-range .property-value {
    border: none;
    display: flex;
    width: 100%;
}

.property-input-border {
    border: var(--border);
    padding: 2px 0 2px 8px;
    margin-right: 2px;
    width: calc(25% - 2px);
}

.property-range-cell {
    margin-right: 2px;
    height: 40px;
    width: 25%;
}

    .property-range-cell .property-input-border {
        width: 100%;
    }

.property-range .property-list-value {
    padding: 2px 4px;
}

body .property-range.fixed .property-value > input:nth-child(2) {
    display: none;
}

body .property-range.fixed .property-value > input:nth-child(3) {
    display: none;
}

body .property-range .property-value > .property-enum {
    border: var(--border);
    padding: 0;
    margin: 0;
    width: 25%;
}

    body .property-range .property-value > .property-enum .property-text {
        display: none;
    }

    body .property-range .property-value > .property-enum .property-value {
        width: 100%;
    }

body .property-range-cell .property-enum {
    border: var(--border);
    padding: 0;
    margin: 0;
    height: 23px;
}

.property-range-cell-text {
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 4px;
}

.property-checkbox-thumbnail .thumbnail,
.property-checkbox-thumbnail .thumbnails,
.property-checkbox-thumbnail .thumbnails-body {
    margin: 0 !important;
    padding: 0 !important;
}

.property-checkbox-thumbnail .thumbnails {
    border: none !important;
    display: inline-block;
    vertical-align: top;
}

.property-checkbox-thumbnail .thumbnail {
    background-color: var(--windowbackground);
    cursor: pointer;
    padding: 0 8px !important;
}

    .property-checkbox-thumbnail .thumbnail:first-child {
        border-radius: 4px 0 0 4px;
        border: 1px solid var(--checkbox);
    }

    .property-checkbox-thumbnail .thumbnail:last-child {
        border-radius: 0 4px 4px 0;
        border: 1px solid var(--checkbox);
    }

    .property-checkbox-thumbnail .thumbnail.thumbnail-selected {
        background-color: var(--checkbox);
    }

        .property-checkbox-thumbnail .thumbnail.thumbnail-selected img {
            mix-blend-mode: color-dodge;
        }

    .property-checkbox-thumbnail .thumbnail img {
        width: 24px;
    }

.property-list {
    position: relative;
}

    .property-list .property-input.disabled {
        padding: 2px 8px 3px 8px;
    }

    .property-list.true {
        color: var(--disabledcolor);
    }

        .property-list.true select {
            color: var(--disabledcolor);
        }

.property-list-block {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.property-appbutton .property-value {
    border: none;
    padding: 0;
}

.property-appbutton .button {
    background-color: var(--button);
    color: var(--buttonlight);
}

.property-appbutton .button-text {
    white-space: nowrap;
}

.ribbonmenu .property-icon {
    margin-right: 8px;
}

.ribbonmenu .property {
    align-items: center;
    padding: 1px 4px;
    min-height: 24px;
}

.ribbonmenu .property-text {
    margin: 0 16px 0 4px;
    width: 50%;
    white-space: nowrap;
}

.ribbonmenu .property-value {
    height: unset;
    padding: 3px 8px;
    min-width: 120px;
}

.property-value {
    align-content: center;
    border: var(--border);
    border-radius: 4px;
    margin-right: 8px;
    padding: 4px 8px;
    width: calc(50% - 48px);
    position: relative;
}

.property-checkbox .property-value {
    border: none;
}

    .property-checkbox .property-value .property-input {
        width: 16px;
        margin-left: -8px;
    }

.property-enum .property-value,
.property-list .property-value {
    padding: 0;
}

.property-input {
    border: none;
    font-family: "JetBrains Mono", monospace;
    font-weight: 500;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: right;
    white-space: nowrap;
}

    .property-input.disabled {
        margin-top: -2px;
        padding: 0.5px 0;
    }

.property-table .property-input.disabled {
    color: var(--fontcolor);
}

div.property-input {
    background-color: transparent;
    border-radius: 4px;
}

select.property-input {
    margin: -2px -8px;
    padding: 2px 4px;
    width: calc(100% + 8px);
}

.property-info {
    align-items: center;
    border-left: none;
    display: flex;
    padding-top: 1.5px;
    padding-left: 4px;
}

.property-enum-background {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 200 !important;
}

.property-value > img {
    position: absolute;
    left: unset;
    right: 4px;
    top: 0;
    width: 18px;
    height: 18px;
}

.property-enum-options {
    background: var(--panelbackground);
    box-shadow: var(--shadowcolor) 0 0 8px;
    border: var(--border);
    position: absolute;
    margin: 4px -8px;
    max-height: 200px;
    overflow: auto;
    z-index: 1000;
}

    .property-enum-options > div {
        padding: 4px 12px;
        white-space: nowrap;
    }

        .property-enum-options > div:hover {
            background: var(--highlightcolor);
        }

.property-error {
    margin-top: -2.5px;
}

.property-remark .property-value {
    border: none;
    color: #F00;
}

.property-remark .property-input {
    color: #F00;
    font-weight: bold;
}

.property-remark.true .property-input {
    color: #00F;
}

.panel {
    background-color: var(--panelbackground);
    border: var(--border);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.panel-header {
    align-items: center;
    background-color: var(--panelbackground);
    border-bottom: var(--border);
    display: flex;
    font-weight: bold;
    height: 28px;
    padding: 6px 10px;
    top: 0;
    z-index: 1;
}

    .panel-header img {
        filter: var(--svgfilter);
        margin-right: 8px;
        height: 20px;
    }

.panel-body {
    position: absolute;
    left: 0;
    right: 0;
    top: 28px;
    bottom: 28px;
    overflow-x: clip;
    overflow-y: auto;
}

.no-header .panel-body {
    top: 0 !important;
}

.no-footer .panel-body {
    bottom: 0 !important;
}

.propertygrid-footer {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px;
}

    .propertygrid-footer .button {
        background-color: var(--button);
        color: var(--buttonlight);
        height: 100%;
        flex-grow: 1;
    }

.property-value .button {
    border: none;
    padding: 0 4px;
    position: absolute;
    right: -28px;
    top: 0;
}

    .property-value .button img {
        margin: 0;
    }

    .property-value .button:hover .tooltip {
        visibility: visible;
        opacity: 1;
    }

.property-file {
    align-content: center;
    display: flex;
    height: 42px;
}

    .property-file .property-text {
        border: none;
        width: unset;
    }

    .property-file .property-value {
        border: none;
        position: absolute;
        right: 0;
        width: 180px;
    }

    .property-file input {
        position: absolute;
        right: 0;
        width: 180px;
    }

        .property-file input::-webkit-file-upload-button {
            visibility: hidden;
        }

        .property-file input::before {
            content: 'Select a file...';
            display: inline-block;
            background: linear-gradient(top, #f9f9f9, #e3e3e3);
            border: var(--border);
            border-radius: 8px;
            padding: 5px 12px;
            outline: none;
            white-space: nowrap;
            -webkit-user-select: none;
            cursor: pointer;
            text-shadow: 1px 1px #fff;
            font-size: 10pt;
            text-align: center;
            width: 146px;
        }

        .property-file input::before {
            border: var(--border);
        }

        .property-file input:active::before {
            background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9);
        }

.tooltip {
    border: var(--border);
    border-radius: 4px;
    box-shadow: var(--shadowcolor) 0 0 8px;
    cursor: pointer;
    padding: 6px 10px;
    top: 110%;
    left: 0;
    position: absolute;
    width: max-content;
    z-index: 1;
    visibility: hidden;
    /* Hidden by default */
    opacity: 0;
    /* Start with 0 opacity for fade effect */
    transition: opacity 3s;
    /* Smooth transition for fade */
}

.statusbar-container .tooltip {
    bottom: 32px;
    top: unset;
    z-index: 1000;
}

.statusbar-container .button {
    margin: 0px 2px;
}


.treeview-node-toolbar .tooltip {
    left: unset;
    right: 0;
    top: unset;
    bottom: 32px;
}



.button {
    align-items: center;
    /* Vertical alignment */
    justify-content: center;
    /* Horizontal alignment */
    text-align: center;
    border: var(--border);
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    min-height: 24px;
    padding: 4px;
}

    .button i {
        color: var(--iconcolor);
        font-size: 20px;
    }

    .button:hover {
        background-color: var(--buttonhovercolor) !important;
    }

    .button:active {
        background-color: var(--highlightcolor) !important;
    }

    .button.toggle {
        border: var(--border) !important;
    }

    .button.highlight {
        background-color: var(--highlightcolor) !important;
    }

    .button img {
        align-content: center;
        filter: var(--svgfilter);
        margin: 0 2px 0 2px;
        height: 20px;
        width: 20px;
    }

    .button.no-filter img {
        filter: none !important;
    }

    .button > a {
        color: var(--fontcolor);
        text-decoration: none;
        display: flex;
    }

        .button > a > .button-text {
            white-space: nowrap;
        }

.right-toolbar {
    position: absolute;
    right: 8px !important;
    top: 0;
    width: unset !important;
}

    .right-toolbar .button .tooltip {
        right: 0;
        left: unset;
    }

.toolbar .button .property-group-list-body .property-icon {
    display: flex;
    padding: 2px 8px 2px 0px;
}

.toolbar .button .property-group-list-body .property {
    padding: 2px 16px 2px 8px;
}

.toolbar .button .property-input {
    width: 60px;
}

.button-text {
    align-content: center;
    margin: 0 8px;
}

.button.large {
    display: block;
    min-height: 48px;
    padding: 0px 4px;
}

    .button.large img {
        height: unset;
        width: 42px;
    }

.button.checked {
    background-color: var(--windowbackground) !important;
    border-color: var(--border);
}

.button.disabled {
    background-color: var(--disabledbackground);
    color: var(--disabledcolor);
    cursor: default;
}

    .button.disabled:hover {
        background-color: var(--disabledbackground) !important;
    }

.button.toggle {
    height: 23px;
    margin-bottom: 2px;
}

    .button.toggle img {
        margin: 3px 2px 0 2px;
    }

.button.disabled img {
    filter: var(--disablesvgfilter);
}

.button.large .button-icon {
    text-align: center;
}

.button:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

.toolbar-separator {
    border-right: var(--border) !important;
    display: inline-flex;
    height: 32px;
    width: 1px;
    margin: 0 8px;
}

.button-icon {
    align-items: center;
    display: flex;
    justify-content: center;
}

.toolbar {
    display: flex;
}

    .toolbar .button {
        border: none;
        border-radius: 0;
    }

canvas {
    position: absolute;
    width: 100%;
    height: 100%;
    outline: none;
}

.canvas.has-toolbar canvas {
    top: 43px;
    bottom: 0;
    height: calc(100% - 43px);
}

.canvas.has-statusbar canvas {
    bottom: 43px;
    height: calc(100% - 43px) !important;
}

.canvas.has-toolbar.has-statusbar canvas {
    height: calc(100% - 86px) !important;
}

.canvas2d,
.canvas3d {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
}

    .canvas2d .toolbar,
    .canvas3d .toolbar {
        background-color: var(--panelbackground);
        border-bottom: var(--border);
        position: absolute;
        top: 0;
        height: 43px;
        width: 100%;
    }

    .canvas2d .canvas-input {
        background-color: var(--panelbackground);
        border: var(--border);
        border-radius: 8px;
        box-shadow: 0 0 4px var(--shadowcolor);
        padding: 8px 10px;
        position: absolute;
        left: 50%;
        top: 50%;
    }

.canvas-input div:first-child {
    font-weight: 500;
    margin-bottom: 4px;
}

.canvas-input div:nth-child(2) {
    background-color: var(--panelbackground);
    border: var(--border);
    padding: 4px 8px;
}

.canvas-input input {
    border: none !important;
}

mjx-container[jax="CHTML"][display="true"] {
    text-align: left !important;
}

.map {
    background-color: var(--panelbackground);
    box-shadow: #AAAAAA 0 0 8px;
    border: var(--border);
    border-radius: 8px;
    position: absolute !important;
    left: 100px !important;
    right: 100px !important;
    top: 100px !important;
    bottom: 100px !important;
    max-width: 1200px;
    max-height: 800px;
    margin: auto;
    overflow: hidden;
}

    .map .icon {
        cursor: pointer;
        justify-content: unset;
        position: absolute;
        right: 6px;
        top: 3px;
        width: 20px;
    }

    .map .panel-header {
        border: none;
    }

    .map .panel-header-text {
        margin-top: 1px;
    }

.input input,
.input select {
    border: var(--border);
    color: var(--fontcolor);
    outline: none;
    padding: 8px 0;
    width: 100%;
}

.input.with-unit > div:nth-child(3) {
    margin-left: 8px;
    width: 40px;
}

.picturebox {
    max-width: 100%;
}

.property-group-body .picturebox {
    max-height: 256px;
    margin: 0 auto;
    justify-content: center;
}

.picture-container {
    display: flex;
}

.thumbnails {
    background-color: var(--windowbackground);
    padding: 4px;
}

.thumbnail {
    display: inline-block;
    padding: 4px;
    margin: 4px;
}

    .thumbnail:hover {
        outline: var(--border);
    }

    .thumbnail.disabled:hover {
        outline: none;
    }

    .thumbnail img {
        mix-blend-mode: multiply;
        margin: 0 auto;
        display: block;
        width: 100px;
    }

.thumbnail-caption {
    text-align: center;
}

.thumbnails-text {
    padding: 2px 8px;
    text-align: left;
}

.thumbnails-body {
    border: var(--border);
    margin: 4px 8px;
}

.thumbnail.true {
    background-color: var(--panelbackground) !important;
}

.thumbnails.true .thumbnails-body {
    border: none;
    margin: 0;
}

.property-group-body .thumbnails {
    background-color: var(--panelbackground);
    margin: 4px 0;
}

    .property-group-body .thumbnails .thumbnail {
        align-self: stretch;
        border-top: var(--border);
        border-bottom: var(--border);
        border-right: var(--border);
        cursor: pointer;
        margin-bottom: 8px !important;
        margin-right: 0 !important;
    }

        .property-group-body .thumbnails .thumbnail:first-child {
            border-radius: 8px 0 0 8px;
            border-left: var(--border);
            border-right: none;
        }

        .property-group-body .thumbnails .thumbnail:last-child {
            border-radius: 0 8px 8px 0;
            border-right: var(--border);
        }

.property-group-body .thumbnails-body {
    border: none !important;
    display: flex;
    flex-wrap: wrap;
}

.property-group-body .thumbnails-text {
    font-weight: bold;
}

.property-group-body .thumbnail.true {
    background-color: var(--windowbackground) !important;
}

.border-left {
    border-left: var(--border) !important;
}

.border-right {
    border-right: var(--border) !important;
}

.border-bottom {
    border-bottom: var(--border) !important;
}

.border-top {
    border-top: var(--border) !important;
}

.toolbar-container {
    background-color: var(--panelbackground);
    border-bottom: var(--border);
    color: var(--C050);
    display: flex;
    height: 43px;
}

.statusbar-container {
    background-color: var(--panelbackground);
    border-top: var(--border);
    color: var(--C050);
    display: flex;
    height: 43px;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    z-index: 10;
}

.toolbar {
    align-items: center;
    display: inline-flex;
    padding-left: 8px;
}

    .toolbar .button {
        align-items: center;
        border-radius: 8px !important;
        color: var(--C50);
        display: inline-flex;
        position: relative;
        padding: 4px 6px;
        vertical-align: top;
    }

.viewer-container .toolbar .button {
    border-radius: 4px !important;
}


.toolbar .button.hidden {
    display: none !important;
}

.toolbar .button:hover {
    color: var(--HIGHLIGHT);
}

.toolbar .button:active {
    background-color: var(--C900);
    color: var(--ACTIVE);
}

.toolbar .button .property-list-container > .button {
    background-color: var(--button);
    border-radius: 8px;
    color: var(--buttonlight);
    margin: 8px 8px 0 8px;
    width: calc(100% - 16px);
}

.toolbar .button .property-list-container {
    border-radius: 0 8px 8px 8px;
    overflow: hidden;
}

.toolbar .input {
    align-items: center;
    display: inline-flex;
    height: 32px;
    margin: 0;
}

    .toolbar .input.inline {
        padding: 0 8px;
        vertical-align: top;
    }

    .toolbar .input select {
        background-color: var(--containerbackground);
        cursor: pointer;
        padding: 4px 8px;
        width: 120px;
    }

.toolbar .button.dropdown-button {
    height: unset;
    padding: 0;
    margin: 0 4px;
}

.toolbar .property .property-text {
    width: 80px;
    white-space: nowrap;
}

.toolbar .property.property-checkbox .property-text {
    display: block;
    width: unset;
    white-space: nowrap;
}

.toolbar .property.property-checkbox .property-value {
    width: unset;
    margin-left: 8px;
}

.toolbar .property .property-value-group {
    width: unset;
}

.toolbar .property .property-value {
    width: 100px;
}

.split-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

    .split-container > div {
        position: absolute;
    }

        .split-container > div:nth-child(2) {
            background-color: var(--bordercolor);
            cursor: col-resize;
            text-align: center;
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
            z-index: 1;
        }

.report .split-container > div:nth-child(1) {
    height: 43px !important;
}

.report .split-container > div:nth-child(2) {
    top: 43px !important;
}

.report .split-container > div:nth-child(3) {
    top: 44px !important;
}

@keyframes progress {
    0% {
        --percentage: 0;
    }

    100% {
        --percentage: var(--value);
    }
}

@property --percentage {
    syntax: '<number>';
    inherits: true;
    initial-value: 0;
}

[role="progressbar"] {
    --percentage: var(--value);
    --primary: #369;
    --secondary: #adf;
    --size: 100px;
    animation: progress 1s 0.5s forwards;
    width: var(--size);
    aspect-ratio: 1;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    margin: calc(50% - 50px) auto;
}

    [role="progressbar"]::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: conic-gradient(var(--primary) calc(var(--percentage) * 1%), var(--secondary) 0);
        mask: radial-gradient(white 55%, transparent 0);
        mask-mode: alpha;
        -webkit-mask: radial-gradient(#0000 55%, #000 0);
        -webkit-mask-mode: alpha;
    }

    [role="progressbar"]::after {
        counter-reset: percentage var(--value);
        content: counter(percentage) '%';
        font-family: Helvetica, Arial, sans-serif;
        font-size: 12px;
        color: var(--primary);
    }

.property-group {
    margin: 0 8px;
}

.property-group {
    border: var(--border);
    border-radius: 4px;
    margin-bottom: 8px;
    margin-top: 8px;
}

    .property-group.false {
        border: none;
    }

.center-panel .tab-body .property-group {
    background: var(--panelbackground);
    border: var(--border);
    margin: 4px;
    padding: 0;
}

.center-panel .property-group .property-group-header {
    background: var(--groupbackground) !important;
    border-radius: 8px 8px 0 0;
    border: none;
    border-bottom: var(--border);
    margin: 0;
    padding: 0 8px !important;
    height: 32px;
}

.default.property-group .thumbnails {
    margin: 8px;
}

.line .property-group,
.plain .property-group {
    border: none;
    margin: 0;
}

.property-group .property-group {
    margin: 0 10px;
}

    .property-group .property-group:last-child {
        margin: 0 10px;
    }

.property-group .property-group-header {
    align-items: center;
    cursor: pointer;
    display: flex;
    font-weight: bold;
    position: relative;
}

.property-group .property-group-header {
    background-color: var(--windowbackground);
    border-bottom: var(--border);
    padding: 4px 8px;
}

.line .property-group .property-group-header {
    background-color: transparent;
    border-bottom: var(--border);
    padding: 4px 8px !important;
}

.plain .property-group .property-group-header {
    background-color: transparent;
    border-bottom: none;
    padding: 4px 8px !important;
}

.property-group .property-group-header {
    border-bottom: var(--border);
    padding: 6px 8px;
}

.property-group-header img {
    cursor: pointer;
    width: 20px;
}

.property-group .property-group-body {
    padding: 0;
}

.property-group-body .table {
    margin: 0;
}

.line .property-group .property-group-body {
    padding: 8px !important;
}

.plain .property-group .property-group-body {
    padding: 8px !important;
}

.property-group.false > .property-group-body {
    padding: 0 !important;
}

.property-group .property-group-header img {
    filter: var(--svgfilter);
    position: absolute;
    right: 8px;
}

.line .property-group .property-group-header img,
.plain .property-group .property-group-header img {
    position: relative;
    right: 0;
}

.line .property-group .property-group-header img {
    position: relative;
    right: 0;
}

.line .property-group .property-group .property-group-header img {
    position: static;
}

.property-group .property-group-header-text {
    margin-left: 4px;
    width: 100%;
}

.property-group .property:first-child {
    margin-top: 8px;
}

.property-group .property-table .property:first-child {
    margin-top: 0;
}

.property-group .property-table .property:last-child {
    margin-bottom: 0;
}

.property.property-table-body {
    display: block;
}

.treeview-node {
    padding: 2px 0 2px 20px;
}

    .treeview-node .treeview-node-header {
        font-size: 13px;
        font-weight: bold;
        margin: 0 0 0 -20px;
        padding: 4px 8px;
    }

    .treeview-node .treeview-node .treeview-node-header {
        font-weight: normal;
    }

    .treeview-node.highlight > .treeview-node-header {
        background-color: var(--highlightcolor);
    }

.treeview-node-toolbar > div,
.group-toolbar > div {
    position: absolute;
    right: 4px;
    top: 4px;
    display: flex;
}

.group-toolbar > div {
    top: -4px;
    right: 32px;
}

.treeview-node-toolbar .button,
.group-toolbar .button {
    border: none;
    padding: 0;
    margin: 0 4px;
}

.group-toolbar .button {
    justify-content: left;
    font-size: 11px;
    padding: 2px 8px 2px 6px;
    width: unset;
    margin-top: 3px;
    text-align: left;
}

    .group-toolbar .button.ai-button {
        background-color: #006496 !important;
        border-radius: 8px !important;
        color: #FFF;
    }

    .group-toolbar .button .button-text {
        font-weight: normal;
        margin-left: 2px;
        white-space: nowrap;
    }

    .group-toolbar .button .button-icon {
    }

        .group-toolbar .button .button-icon img {
            position: unset;
            width: 16px;
        }


    .group-toolbar .button .tooltip {
        left: unset;
        right: 0;
    }

    .group-toolbar .button:hover {
        background-color: none !important;
    }

.treeview-node:last-child {
}

.property-table table {
    border-collapse: collapse;
}

.property-table .property {
    padding: 0 0 0 0 !important;
}

.datagrid .property-table .property {
    display: unset;
    padding: 0 !important;
}

    .datagrid .property-table .property.display {
        background-color: var(--highlightcolor);
    }

        .datagrid .property-table .property.display .property-value {
            padding: 0 8px !important;
        }

.property-table .property-value {
    border: none !important;
    border-radius: 0;
    height: unset;
    padding: 6px 8px;
    margin: 0;
    min-width: 64px;
    width: 100% !important;
}

.property-table .property-enum .property-value {
    padding: 0;
}

.property-table .property-list .property-value {
    padding: 4px 8px;
}

.property-group-body .canvas-container {
    border: var(--border);
    position: relative;
    width: 100%;
    height: 300px;
}

.property.property-table th:last-child {
    min-width: 0 !important;
    z-index: 4 !important;
}

.beam-sections .property.property-table th:nth-last-child(2) {
    min-width: 0 !important;
    z-index: 4 !important;
}

.beam-sections .datagrid .property.property-table tr:nth-child(2) th:nth-last-child(2),
.beam-sections .datagrid .property.property-table td:nth-last-child(2) {
    outline: var(--border2);
    position: sticky;
    right: 57px;
    min-width: 60px;
}

.datagrid .property.property-table th:last-child,
.datagrid .property.property-table td:last-child {
    position: sticky;
    right: 0;
    min-width: 60px;
    z-index: 3;
}

.datagrid .property.property-table th:last-child,
.datagrid .property.property-table td:last-child {
    outline: var(--border2);
}

.property.property-table td:last-child {
    background-color: var(--panelbackground);
}

.beam-sections .property.property-table td:nth-last-child(2) {
    background-color: var(--panelbackground);
}

.table-header {
    margin: 8px 0 8px 16px;
}

.property.property-table .button {
    border-radius: 4px !important;
}

    .property.property-table .button.add-button {
        max-width: 36px;
        margin: 2px auto;
    }

    .property.property-table .button:hover {
        font-weight: bold;
    }

.property-group .property-table {
    border: var(--border);
    position: relative;
    left: 0;
    right: 0;
    overflow: auto;
    margin: 4px 8px;
    max-height: 800px;
    padding: 0 !important;
}

.property-table table {
    border: var(--border);
}

.property-table th {
    background: var(--windowbackground);
    border: var(--border);
    padding: 4px 14px;
}

.property-table td {
    border: var(--border);
    padding: 0;
    white-space: nowrap;
}

.datagrid .property-table .empty-cell {
    background-color: #F8F8F8 !important;
    border: 0.5px solid #DDD !important;
    outline: none !important;
    height: 24px;
}

.property-table th:last-child,
.property-table td:last-child {
    border-right: none;
}

.property-table th {
    border-top: none;
}

.property-table .property {
    min-width: 78px;
}

.property-table .dt-container {
    width: 100%;
}

.property-group-body.false {
    display: none;
    height: 0;
    overflow: hidden;
    padding: 0;
}

.property-table td:nth-child(1),
.property-table th:nth-child(1) {
    position: sticky;
    left: -1px;
    min-width: 36px;
    width: 36px;
    text-align: center;
    z-index: 2;
}

.datagrid .property-table td:nth-child(1),
.datagrid .property-table th:nth-child(1) {
    outline: var(--border2);
}

.property-table th:nth-child(1) {
    z-index: 5 !important;
}

/* .property-table td:nth-child(2), .property-table th:nth-child(2) {
    background-color: var(--panelbackground);
    outline: var(--border);
    position: sticky;
    left: 36px;
    z-index: 1;
} */

.property-table th:nth-child(1) {
    background-color: var(--panelbackground);
    z-index: 3 !important;
}

.property-table thead {
    z-index: 5;
}

    .property-table thead th {
        background-color: var(--panelbackground);
        position: sticky;
        top: -1px;
        z-index: 2 !important;
    }

.property-table .no-paging thead th {
    position: unset;
}

.property-table-body {
    width: 100%;
}

.table-page {
    min-height: 24px;
}

.table-page,
.table-page-buttons {
    align-items: center;
    display: flex;
}

.table-page-summary {
    margin: 0 0 0 16px;
}

.table-page-buttons {
    position: absolute;
    right: 24px;
}

    .table-page-buttons .button {
        border-radius: 4px !important;
        height: 24px !important;
        padding: 0px 4px;
        margin-left: 4px;
    }

.table-page .property-enum {
    margin-left: 4px;
    margin-top: 0 !important;
    padding: 0 !important;
    width: 100px;
}

.datagrid .table-page .property-enum {
    margin-top: 4px !important;
}

.table-page .property-enum .property-text {
    display: none;
}

.table-page .property-enum .property-value {
    height: 24px !important;
    margin-right: 0;
    vertical-align: top;
    width: 100%;
}

.property-table table {
    width: 100%;
}

.property-group-header-text {
    margin-left: 8px;
}

.property-group .property {
    padding: 2px 0 2px 12px;
}

.property-group-body .property-groups {
    margin-bottom: 8px;
}

    .property-group-body .property-groups:last-child {
        margin-bottom: 0;
    }

.property-group.true .property-group .property-group-header {
    font-style: italic;
}

.property-groups > .property-group .property-group-header {
    border-bottom: var(--border);
}

.property-group .paragraph {
    padding: 8px 12px;
    overflow-x: auto;
    overflow-y: hidden;
}

.tab {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.tab-header {
    align-items: center;
    background-color: var(--panelbackground);
    border: var(--border);
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 64px;
}

.tab-header-item {
    cursor: pointer;
    padding: 0 12px;
    height: 100%;
}

    .tab-header-item img {
        display: block;
        margin: 12px auto 0 auto;
        width: 24px;
    }

    .tab-header-item.selected {
        background-color: var(--highlightcolor);
        font-weight: bold;
    }

.tab-header-text {
    display: block;
    margin-top: 4px;
}

.tab-body {
    position: absolute;
    left: 0;
    right: 0;
    top: 64px;
    bottom: 0;
    overflow: auto;
}

input[readonly] {
    cursor: default;
    color: #888;
}

.ribbonmenu-column .button {
    border: none;
    justify-content: start;
    min-height: unset;
    margin-bottom: 2px;
    padding: 0px 4px;
    text-align: left;
}

    .ribbonmenu-column .button.large {
        margin-right: 4px;
        margin-top: 4px;
        padding: 0px 2px 4px 2px;
    }

    .ribbonmenu-column .button.toggle {
        padding: 4px;
    }

.thumbnails.tower-type {
    border: none;
    margin: -8px !important
}

.scale {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 16px;
}

    .scale table {
        border-collapse: collapse;
        height: 100%;
        width: 100%;
    }

    .scale td {
        position: relative;
    }

        .scale td:hover {
            background: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5) 4px);
        }

            .scale td:hover .scale-text {
                background-color: #333;
                border-radius: 4px;
                color: #FFF;
                display: block;
                padding: 2px 8px;
                z-index: 10;
                top: unset;
                bottom: 30px;
            }

.scale-text {
    display: none;
    position: absolute;
    top: -16px;
    white-space: nowrap;
}

.scale td:first-child .scale-text {
    left: 8px;
}

.scale td:last-child .scale-text {
    text-align: right;
    right: 8px;
}

.scale .scale-text.align-right {
    text-align: right;
    right: 8px;
}

.scale-text.breakpoint {
    border-left: 2px solid #000;
    font-weight: bold;
    padding-left: 4px;
}

.scale-text.align-right.breakpoint {
    border-left: none;
    border-right: 2px solid #000;
    padding-left: 0;
    padding-right: 4px;
    margin-right: 8px;
}

.scale-text.show {
    display: block;
}

.scale td.thin {
    background: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75) 4px);
}


    .scale td.thin:first-child .scale-text,
    .scale td.thin:last-child .scale-text {
        background-color: #0067c0;
        border-radius: 4px;
        color: #FFF;
        bottom: 36px;
        top: unset;
        padding: 0 6px 2px 6px;
    }

.elastic-stresses .center-panel .scale-text {
    font-size: 10px;
}

.canvas2d.has-toolbar .legend {
    top: 48px;
}

.legend {
    position: absolute;
    top: 8px;
    right: 0;
}

    .legend table {
        border-collapse: collapse;
        margin-right: 16px;
    }

    .legend .legend-header {
        font-weight: bold;
        font-size: 14px;
        margin-bottom: 4px;
    }

    .legend .legend-unit {
        border-bottom: var(--border);
        margin-bottom: 8px;
        padding-bottom: 8px;
    }

    .legend td {
        padding: 4px;
    }

        .legend td:first-child {
            width: 24px;
        }

        .legend td:nth-child(2) {
            padding-left: 8px;
        }


.treeview-node-icon {
    filter: var(--svgfilter);
    width: 20px;
}

.ribbon-menu-file {
    background-color: var(--windowbackground);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 50;
}

.file-header {
    padding-top: 8px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 200px;
}

.file-body {
    background-color: var(--panelbackground);
    border: var(--border);
    border-radius: 8px 0 0 0;
    position: absolute;
    left: 200px;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
}

    .file-body h1 {
        color: var(--iconcolor);
        font-size: 18px;
        padding: 24px 24px 8px 32px;
    }

    .file-body h2 {
        color: var(--iconcolor);
        font-size: 16px;
        margin: 0 0 24px 0;
        padding: 0;
    }

.home-page.thumbnails {
    background-color: #eff2f5;
    border-top: var(--border);
    border-bottom: var(--border);
    padding: 16px;
}

    .home-page.thumbnails .thumbnail {
        background-color: var(--panelbackground);
        border: var(--border);
        cursor: pointer;
        margin: 4px 8px;
    }

        .home-page.thumbnails .thumbnail:first-child {
            margin-left: 4px;
        }

    .home-page.thumbnails .thumbnail-caption {
        color: #737577;
        font-weight: bold;
        padding: 0 8px 4px 8px;
    }

.home-page .property-group-body.false {
    display: flex;
    height: unset;
    padding: 8px 16px 8px 24px !important;
}

.home-page .property-group-body .property-text {
    margin-right: 10px;
    white-space: nowrap;
    width: unset;
}

.home-page .property-group-body .property-value {
    height: unset;
    width: unset;
}

    .home-page .property-group-body .property-value .property-input {
        padding: 4px;
    }

.home-page.property-group {
    border: none;
    margin: 4px !important;
}

    .home-page.property-group .property {
        margin-right: 16px;
        padding: 2px 0;
    }

        .home-page.property-group .property:first-child {
            margin-top: 0;
        }

        .home-page.property-group .property:last-child {
            margin-bottom: 0;
        }

    .home-page.property-group > .property-group-header {
        display: none;
    }

    .home-page.property-group > .property-group-body {
    }

.ribbonmenu .home-page .property-value {
    min-width: 60px;
    width: 120px;
}


.file-body .templateview {
    top: 90px !important;
}

.file-navigation-item {
    cursor: pointer;
    -webkit-align-items: center;
    align-items: center;
    display: flex;
    padding: 8px 16px;
}

    .file-navigation-item.selected {
        background-color: var(--filebackground);
    }

    .file-navigation-item img {
        filter: var(--svgfilter);
        margin-right: 12px;
        width: 20px;
    }

    .file-navigation-item:hover {
        background-color: var(--hoverbackground);
    }

.file-back {
}

    .file-back .navigation-view-item {
        margin: 8px 16px 16px 16px;
        padding: 0 16px 0 0;
    }

.file-view .navigation-view {
    top: 0 !important;
}

.file-body-main {
    position: absolute;
    left: 0;
    top: 300px;
    bottom: 0;
    right: 0;
}

.file-body-sub {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    bottom: 0;
    padding: 32px;
}

    .file-body-sub.second-item {
        left: 300px;
        right: 0;
        width: unset;
        padding-left: 0;
    }

    .file-body-sub iframe {
        border: var(--border);
        position: absolute;
        left: 0;
        top: 72px;
        width: calc(100% - 16px);
        height: calc(100% - 86px);
    }

.latest-news {
    overflow-y: auto;
    height: calc(100% - 16px);
    padding-right: 16px;
}

    .latest-news a {
        color: var(--fontcolor);
        text-decoration: none;
    }

.latest-news-item {
    margin-bottom: 32px;
}

    .latest-news-item a {
        display: flex;
    }

        .latest-news-item a:hover .news-title,
        .latest-news-item a:hover .news-summary {
            color: var(--iconcolor);
        }

    .latest-news-item img {
        height: 96px;
        width: 96px;
    }

    .latest-news-item .news-details {
        margin-left: 16px;
    }

    .latest-news-item .news-title {
        font-weight: bold;
        font-size: 13px;
        margin-bottom: 4px;
    }

    .latest-news-item .news-date {
        margin-bottom: 8px;
    }

    .latest-news-item .news-summary {
        color: #888;
    }

.left-button {
    font-weight: normal;
    margin-right: 4px;
    padding: 2px 4px;
    min-height: unset;
}

.right-button {
    font-weight: normal;
    margin-left: auto;
    padding: 2px 4px;
    min-height: unset;
}

.button.bold {
    font-weight: bold;
}

.panel-header .left-button:first-child {
    margin-left: -7px;
}

.panel-header .right-button {
    background-color: var(--buttonlight);
    color: var(--fontcolor);
    border: 1px solid #5b6a80;
    font-weight: 500;
    margin-right: -7px;
}

    .panel-header .right-button:hover {
        background-color: #5b6a80 !important;
        color: #FFF !important;
    }

.rz-dropdown.property-input {
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    height: unset !important;
}

.rz-dropdown-label.rz-inputtext:active {
    border: none !important;
    outline: none !important;
}

.rz-dropdown-panel.rz-popup {
    width: unset !important;
}

.rz-dropdown-label.rz-inputtext {
    padding: 2px 8px;
}

.viewer-container .progress-ring {
    left: calc(50% - 32px);
    top: calc(50% - 32px);
}

    .viewer-container .progress-ring .progress-message {
        display: none;
    }

.progress-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    text-align: center;
    z-index: 1000;
}

    .progress-ring .ring-container {
        margin: 0 0 4px 0;
    }

    .progress-ring .progress-message {
        background-color: #555;
        border-radius: 4px;
        color: #FFF;
        text-align: center;
        padding: 4px 8px;
        margin: 0 auto;
        width: fit-content;
    }

    .progress-ring img {
        max-width: unset !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 100px;
    }

.viewer-container .progress-ring img {
    height: 64px;
    width: 64px;
}

.property-unit .property-value {
    border: var(--border);
    width: calc(100% - 36px);
}

td.readonly-true {
    /*    background-color: var(--windowbackground) !important; */
}

td.display-true {
    background-color: #FAFAFA !important;
}

.property-value-group {
    display: flex;
    width: 50%;
}

table .property-value-group {
    width: 100%;
}

.property.display .property-value {
    border: none;
}

.property-info {
    color: #888;
    text-align: right;
    white-space: nowrap;
    padding: 0;
}

.property-error {
    position: absolute;
    right: 8px;
}

    .property-error:hover .tooltip {
        visibility: visible;
        opacity: 1;
    }

    .property-error .tooltip {
        color: #FFF;
        max-width: 300px;
        left: unset;
        right: 0;
        text-align: left;
    }

        .property-error .tooltip .tooltip-header {
            font-weight: bold;
            padding: 4px;
        }

        .property-error .tooltip .tooltip-message {
            padding: 4px;
            white-space: pre-wrap;
        }

    .property-error img {
        cursor: pointer;
        filter: brightness(0) saturate(100%) invert(48%) sepia(99%) saturate(1353%) hue-rotate(1deg) brightness(104%) contrast(105%);
        margin-right: 8px;
        margin-top: 4px;
        width: 16px;
    }

.property-button {
    background-color: #888;
    cursor: pointer;
    color: #FFF;
    position: absolute;
    top: 0;
    right: -30px;
    padding: 0 6px;
    height: 100%;
    outline: var(--border);
}

.property-table td.row-header {
    background: var(--panelbackground);
    cursor: pointer;
    padding: 0 8px;
}

.property-group-list {
}

.property-group-list-container {
    background-color: var(--panelbackground);
    border: 1px solid #CCC;
    box-shadow: 0 4px 4px #AAA;
    left: -0.5px;
    margin-top: 4px;
    padding: 0 12px 12px 12px;
    position: absolute;
    z-index: 1000;
}

.property-group-list-value {
    cursor: pointer;
    padding: 0 4px;
}

.toolbar .property-group-list-value {
    display: flex;
}

.button .property-group-list-value > .button-text {
    display: none;
}

.button .property .property-value {
    width: unset;
}

.button .property .property-list-container .property-value {
    padding: 2px 8px;
}

.button .property {
    display: block;
}

    .button .property .property-value {
        margin-top: 8px;
    }

.button .property-enum.is-list .property,
.button .property-group-list.is-list .property {
    display: flex;
}

.button .property-enum.is-list .property-value,
.button .property-group-list.is-list .property-value {
    border: none;
    padding: 0;
}

.button .property-enum.is-list .property-list-container,
.button .property-group-list.is-list .property-list-container {
    box-shadow: none;
    position: relative;
    top: 0;
    left: 0;
    margin: 8px 0 0 0;
    padding: 8px 16px;
}

.button .property-group-list.is-list .property-list-container {
    padding: 8px;
    max-height: 200px;
    overflow: auto;
}

    .button .property-group-list.is-list .property-list-container .property {
        margin: 0;
    }

.button.dropdown-button .property-list-container .property {
    margin: 0 0 8px 0;
}

.button.dropdown-button.ismenu .property-list-container .property {
    margin: 0;
}

.button .property-group-list-value > .button-icon {
    padding: 4px 32px 4px 0;
}

.button .property-group-list {
}

.button .property-group-list-value .expander-header-icon {
    margin-top: 4px;
}


.button .property-list-container {
    border-radius: 4px;
    position: absolute;
    left: 0;
    top: 24px;
    overflow: hidden;
    visibility: visible;
    padding: 16px;
    min-width: 200px;
}

.button.ismenu .property-list-container {
    border-radius: 8px 0 8px 8px;
    padding: 8px;
    min-width: unset;
}

.button .property-list-container .property-text {
    width: 100px !important;
}

.button .property-list-container .button-text {
    white-space: nowrap;
}

.button .property-group-list-body,
.button .property-group-list-body .button {
    justify-content: start;
    text-align: left;
    width: 100%;
}

    .button .property-group-list-body .button {
        border-radius: 0 !important;
    }

    .button .property-group-list-body .border-bottom {
        padding-bottom: 4px;
        margin-bottom: 4px;
    }

    .button .property-group-list-body .border-top {
        padding-top: 4px;
        margin-top: 4px;
    }

.property-list-container .property-checkbox .property-value {
    margin-top: 0;
}

.property-list-value {
    cursor: pointer;
    font-family: "JetBrains Mono", monospace;
    overflow: hidden;
    padding: 4px 8px 4px 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: calc(100% - 16px);
}

.property-list-container {
    background-color: var(--panelbackground);
    border: var(--border);
    box-shadow: 0 4px 4px var(--shadowcolor);
    left: -0.5px;
    min-width: 60px;
    position: fixed;
    overflow-y: auto;
    z-index: 1000;
    visibility: hidden;
}

.property-list-body {
    cursor: pointer;
    font-family: "JetBrains Mono", monospace;
    padding: 4px 12px;
    white-space: nowrap;
}

    .property-list-body:hover {
        background-color: var(--hoverbackground);
    }

.property-group-list-value .expander-header-icon {
    margin-top: 2px;
}

.property-group-list .property-value {
    min-width: 120px;
}

.property-group-list-header {
    font-weight: bold;
    margin-bottom: 4px;
    margin-top: 16px;
}

    .property-group-list-header:first-child {
        margin-top: 12px;
    }

.property-group-list-body .property {
    padding: 0;
}

.property-list-container .property {
    padding: 2px 0;
}

.property-group-list-body .property-text {
    margin: 0 16px 0 0;
    width: 100px;
}

.property-group-list-body .property-icon {
    display: none;
}

.property-group-list-body .property-value {
    min-width: 20px;
}

.property-group-list-body .property-enum .property-value {
    padding: 2px 8px;
    min-width: 100px;
    width: unset;
}

    .property-group-list-body .property-enum .property-value .property-input.disabled {
        padding: 2px 8px;
    }

.property-group-list-body input[type="checkbox"] {
    accent-color: #0067c0;
}

.property-group-list-container .button {
    background-color: var(--windowbackground);
    border: var(--border);
    display: block;
    margin-top: 8px;
    padding: 4px 8px;
    text-align: center;
}

.property-list-container .expander-header-icon {
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    padding: 0 4px;
}

.expander-header-icon {
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 2px;
    padding: 0 4px;
}

.ribbonmenu .expander-header-icon {
    top: 2px;
}

.property-group-list-value .expander-header-icon {
    top: 0;
}

.property-table tr:has(:hover, :focus) td {
    background: #CEF;
}

.property-table tr:has(:hover, :focus) input {
    background: #CEF;
}

.directory-breadcrumb {
    border-bottom: var(--border);
    padding: 8px 0;
    margin-bottom: 16px;
}

    .directory-breadcrumb span {
        border-radius: 4px;
        cursor: pointer;
        padding: 4px 8px;
    }

        .directory-breadcrumb span.breadcrumb-item:hover {
            background-color: var(--windowbackground);
        }

.background {
    background-color: rgba(0, 0, 0, 0.15);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
}

.dialog {
    background-color: var(--panelbackground);
    border: var(--border);
    border-radius: 16px;
    box-shadow: 0 0 8px #888;
    padding: 24px 32px;
    position: fixed;
    width: 400px;
    height: 200px;
    top: 0;
    left: 0;
    left: calc(50% - 200px);
    top: calc(50% - 100px);
    z-index: 101;
    animation: var(--animation-slide-in-up) forwards;
}

.dialog-header {
    font-weight: bold;
    font-size: 18px;
}

.dialog-body {
    font-size: 13px;
    margin-top: 24px;
}

.dialog-footer {
    display: flex;
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    text-align: right;
}

    .dialog-footer .button {
        border-bottom: 2px solid var(--bordercolor);
        justify-content: center;
        padding: 6px 0;
        width: 100px;
    }

        .dialog-footer .button:nth-child(1) {
            background-color: var(--button);
            border-bottom: 2px solid #333;
            color: #FFF;
            position: absolute;
            bottom: 0;
            right: 108px;
        }

        .dialog-footer .button:nth-child(2) {
            position: absolute;
            bottom: 0;
            right: 0px;
        }

.dialog-background {
    background-color: rgba(0, 0, 0, 0.3);
}

.file-view {
    background-color: var(--panelbackground);
    border-top: var(--border);
    position: fixed;
    left: 201px;
    right: 0;
    top: 76px;
    bottom: 0;
    z-index: 1000;
}

    .file-view .directory-explorer {
        border-left: var(--border);
        position: absolute;
        left: 200px;
        right: 0;
        top: 0;
        bottom: 0;
        padding: 16px 32px;
        overflow: auto;
    }

.directory-explorer table td:nth-child(2) {
    padding: 6px 0;
}

.file-view .directory-explorer table {
    width: 100%;
}

    .file-view .directory-explorer table td:first-child {
        width: 36px;
    }

    .file-view .directory-explorer table td:hover {
        cursor: pointer;
        font-weight: bold;
    }

.file-view .directory-explorer img {
    height: 20px;
    width: 20px;
}

.file-view .canvas3d {
    display: none;
    border-left: var(--border);
    position: absolute;
    left: unset;
    right: 0;
    top: 0;
    bottom: 0;
    width: 400px;
}

.directory-save {
    padding-bottom: 8px;
}

    .directory-save input {
        border: var(--border);
        padding: 0 8px;
        margin-right: 8px;
        height: 25px;
        width: 400px;
    }

    .directory-save button {
        height: 24px;
        padding: 0 16px;
    }


.appview {
    background-color: var(--windowbackground);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.appview-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 130px;
}

.appview-body {
    position: absolute;
    left: 4px;
    right: 4px;
    top: 135px;
    bottom: 24px;
}

.appview-explorer {
    position: absolute;
    left: 0;
    width: 300px;
    top: 0;
    bottom: 0;
}

    .appview-explorer.false {
        display: none;
    }

.appview-property {
    position: absolute;
    left: 304px;
    width: 500px;
    top: 0;
    bottom: 0;
}

.appview-model {
    position: absolute;
    left: 808px;
    right: 404px;
    top: 0;
    bottom: 0;
}

.appview-status {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 24px;
}

.appview-help {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 400px;
}

.appview-output {
    background-color: var(--panelbackground);
    position: absolute;
    display: none;
    left: 0;
    right: 0;
    bottom: 0;
    height: 400px;
}

.hide-explorer .appview-explorer {
    display: none;
}

.hide-explorer .appview-property {
    left: 0;
}

.hide-explorer .appview-model {
    left: 504px;
}

.hide-property .appview-model {
    left: 304px;
}

.hide-property .appview-property {
    display: none;
}

.hide-explorer.hide-property .appview-model {
    left: 0;
}

.hide-help .appview-model {
    right: 0;
}

.hide-help .appview-help {
    display: none;
}

.row-header {
    position: relative;
}

.row-header-menu {
    display: flex;
    background-color: var(--panelbackground);
    border: var(--border);
    box-shadow: var(--shadowcolor) 0 0 4px;
    position: absolute;
    left: 60px;
    top: 0;
    z-index: 1000;
}

    .row-header-menu .button {
        border-radius: 0;
        border: none;
        height: 22px !important;
        min-height: 22px !important;
        padding: 2px 4px;
    }

.treeview-node-link img {
    position: absolute;
    top: 4px;
    right: 8px;
    width: 16px;
}

.templateview {
    position: absolute;
    left: 4px;
    right: 4px;
    top: 4px;
    bottom: 4px;
}

.templateview-property {
    position: absolute;
    left: 0;
    width: 480px;
    top: 0;
    bottom: 0;
}

.templateview-model {
    position: absolute;
    left: 484px;
    right: 0;
    top: 0;
    bottom: 0;
}

.treeview-node > div:nth-child(2) {
    margin-left: -20px;
}

.treeview-node .treeview-node .treeview-node-header {
    padding-left: 18px;
}

.treeview-node .treeview-node .treeview-node .treeview-node-header {
    padding-left: 36px;
}

.treeview-node .treeview-node .treeview-node .treeview-node .treeview-node-header {
    padding-left: 54px;
}

.treeview-node .treeview-node .treeview-node .treeview-node .treeview-node .treeview-node-header {
    padding-left: 72px;
}

.treeview-node .treeview-node .treeview-node .treeview-node .treeview-node .treeview-node .treeview-node-header {
    padding-left: 90px;
}

.treeview-node-header {
    align-items: center;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    min-height: 20px;
    padding: 3px 8px 1px 8px;
    position: relative;
}

    .treeview-node-header.true {
        background-color: var(--windowbackground);
        font-weight: bold;
    }

    .treeview-node-header:hover,
    .treeview-node-header:active {
        background-color: var(--highlightcolor);
        font-weight: bold;
    }

.treeview-node-icon {
    align-content: center;
    cursor: pointer;
    display: inline;
}

    .treeview-node-icon img {
        height: 16.667px;
        width: 16.667px;
    }

.treeview-node-text {
    align-content: center;
    margin-left: 4px;
    margin-top: -2px;
    position: relative;
}

.treeview-node.noevent > .treeview-node-header:hover,
.treeview-node.noevent > .treeview-node-header:active {
    background-color: var(--hovercolor);
    font-weight: normal;
}

.treeview-node.noevent > .treeview-node-header {
    cursor: default;
}


.expander {
    border: var(--border);
    margin-bottom: 8px;
}

    .expander:last-child {
        margin-bottom: 0;
    }

    .expander .expander .expander-header {
        font-weight: normal;
    }

.expander-header {
    background-color: var(--windowbackground);
    cursor: pointer;
    display: flex;
    font-weight: bold;
    min-height: 24px;
    padding: 0 8px;
    position: relative;
}

    .expander-header:hover {
        background-color: var(--highlightcolor);
    }

.expander-header-icon {
    align-content: center;
}

.property-group-list .expander-header-icon {
    right: 4px;
}

.expander-header-icon img {
    margin-top: 3px;
    margin-right: 4px;
    height: 12px;
    width: 12px;
}

.expander-header-text {
    align-content: center;
    margin-left: 8px;
}

.expander-body {
    padding: 8px;
}

.main-container {
    position: absolute;
    left: 0;
    right: 0;
    top: 132px;
    bottom: 32px;
}

.tree-container {
    margin: 4px;
    position: absolute;
    left: 0;
    width: 240px;
    top: 0;
    bottom: 0;
}

.property-container {
    margin: 4px;
    position: absolute;
    left: 244px;
    width: 300px;
    top: 0;
    bottom: 0;
}

.model-container {
    margin: 4px;
    position: absolute;
    left: 548px;
    right: 0;
    top: 0;
    bottom: 0;
}

.help-container {
    background-color: var(--panelbackground);
    border: var(--border);
    display: none;
    margin: 4px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 400px;
    overflow: auto;
}

.status-container {
    position: absolute;
    left: 0;
    right: 0;
    height: 32px;
    bottom: 0;
}

.ribbonmenu {
}

.ribbonmenu-header {
    display: flex;
    padding: 0 4px;
}

.ribbonmenu-header-text {
    cursor: pointer;
    margin: 8px 8px 4px 8px;
    padding: 2px 0;
}

    .ribbonmenu-header-text:hover {
        border-bottom: 2px solid #0094ff;
    }

    .ribbonmenu-header-text.selected {
        border-bottom: 2px solid #0094ff;
    }

.ribbonmenu-body {
    background-color: var(--panelbackground);
    border: var(--border);
    border-radius: 8px;
    position: absolute;
    left: 4px;
    right: 4px;
    top: 32px;
    height: 100px;
}

.ribbonmenu-group {
    border-right: var(--border);
    position: relative;
    display: flex;
    height: 100px;
    min-width: 100px;
    padding: 4px 8px;
}

.ribbonmenu-group-text {
    bottom: 4px;
    font-size: 10px;
    position: absolute;
    text-align: center;
    margin: 0 -8px;
    width: 100%;
}

.ribbonmenu-tab {
    display: flex;
}

.navigation-view {
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    overflow-y: auto;
    width: calc(100% - 8px);
}

.navigation-view-item {
    border-radius: 8px;
    padding: 4px 12px;
}

    .navigation-view-item .navigation-view-item-body {
        padding-bottom: 0;
    }

.navigation-view-item-header {
    cursor: pointer;
    display: flex;
    font-size: 14px;
    font-weight: bold;
    padding: 5px;
}

.navigation-view-item .navigation-view-item-header {
    font-size: 13px;
    font-weight: normal;
}

.navigation-view-item:hover {
    background-color: var(--highlightcolor);
    font-weight: bold !important;
}

.navigation-view-item.highlight {
    background-color: rgb(237, 231, 246);
    font-weight: bold !important;
}

.navigation-view-item:hover .navigation-view-item-header {
    font-weight: bold !important;
}

.navigation-view-item .navigation-view-item-icon {
    align-content: center;
    height: 20px;
    width: 20px;
    margin-right: 8px;
}

.navigation-view-item-text {
    align-content: center;
    margin-left: 8px;
}

body .navigation-view .property-group {
    border-radius: 0;
    border-bottom: var(--border);
    margin: 0 4px;
    padding: 4px 0;
}

.property-enum-value {
    overflow: hidden;
    width: calc(100% - 16px);
    white-space: nowrap;
}

.map {
    z-index: 1000;
}

.picturebox {
    cursor: pointer;
}

.picture-container {
    margin-bottom: 8px;
    position: relative;
}

    .picture-container:hover {
        outline: var(--border);
    }

        .picture-container:hover .picturebox-info {
            display: block;
        }

.picturebox-info {
    background-color: #333;
    color: #FFF;
    display: none;
    padding: 2px 4px;
    position: absolute;
    margin: auto auto;
    top: 50%;
    left: calc(50% - 45px);
}

.map .panel-body {
    display: flex;
    overflow: hidden;
    justify-content: center;
}

.map img {
    justify-content: center;
    max-height: 100%;
    max-width: 100%;
}

.map .background {
    background-color: rgba(0, 0, 0, 0.15);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 90;
}

.treeview-node-menu {
    background-color: var(--panelbackground);
    border: var(--border);
    border-radius: 4px;
    position: absolute;
    z-index: 1000;
    top: 20px;
    left: 0;
    white-space: nowrap;
}

    .treeview-node-menu .button {
        border: none;
        border-radius: 0;
        font-weight: normal;
    }

.property-checkbox-thumbnail .property-value {
    border: none;
    padding: 0;
}

.rz-dropdown-items.rz-dropdown-list li span {
    padding: 2px 8px;
    white-space: nowrap;
}

.rz-dropdown.property-input .rz-dropdown-label.rz-inputtext {
    width: calc(100% - 20px);
}

.rz-dropdown-items {
    padding: 0 !important;
}

.statusbar {
    align-items: center;
    display: flex;
}

    .statusbar img {
        margin: 2px 8px 0 8px;
        width: 16px;
    }

table.dataTable td {
    padding: 0 8px !important;
}

.property-table table.dataTable .property {
    min-width: unset !important;
}

.property-table table.dataTable .property-value {
    padding: 4px 0;
}

.dt-container > div:nth-child(3) {
    display: block !important;
}

    .dt-container > div:nth-child(3) > div:nth-child(2) {
        display: block !important;
    }

.dt-paging {
    border-top: var(--border);
    margin-top: 8px;
    padding-top: 8px;
    text-align: right;
}

#canvas-info {
    background-color: var(--panelbackground);
    border-radius: 4px;
    box-shadow: 0 0 5px #888;
    color: var(--fontcolor);
    padding: 8px;
    position: absolute;
    z-index: 1000;
}

    #canvas-info > div:first-child {
        font-weight: bold;
        margin-bottom: 8px;
    }

    #canvas-info table {
        border-collapse: collapse;
        border: var(--border);
        width: 100%;
    }

    #canvas-info td {
        border: var(--border);
        padding: 2px 8px;
        text-align: center;
        min-width: 100px;
        white-space: nowrap;
    }

    #canvas-info th {
        background-color: var(--windowbackground);
        border: var(--border);
        padding: 4px 0;
    }

.datagrid {
    background-color: var(--panelbackground);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
}

    .datagrid .property.property-table {
        background-color: var(--windowbackground);
        border: var(--border2);
        padding: 0;
        position: absolute;
        left: 8px;
        right: 8px;
        top: 43px;
        bottom: 43px;
        overflow: auto;
    }

    .datagrid .table.no-toolbar .property.property-table {
        top: 0 !important;
    }

    .datagrid table {
        background-color: var(--panelbackground);
        outline: none;
    }

    .datagrid .property-table-footer {
        align-items: center;
        background-color: var(--panelbackground);
        display: flex;
        position: absolute;
        height: 43px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 100;
    }

    .datagrid .table-page-buttons {
        top: 4px;
        right: 8px;
    }

    .datagrid .property-table-header {
        height: 43px;
        display: flex;
        align-items: center;
    }

    .datagrid .button {
        padding: 0 4px;
        height: 20px;
    }

.button.dropdown-button {
    justify-content: left;
    text-align: left;
    /*    padding-left: 8px !important; Cannot add padding here*/
}

    .button.dropdown-button .button-text {
        width: 100%;
    }

.datagrid .property-table-header .button {
    background-color: #FFF !important;
    border-radius: 8px !important;
    border: none;
    display: inline-flex;
    margin: 4px 0 4px 8px;
    padding: 2px 0 4px 0;
    position: relative;
    width: 100px;
}

.dropdown-button .property-group-list-value {
    padding: 0;
}

.datagrid > .button {
    background-color: #0083C4 !important;
    border-radius: 8px !important;
    color: #FFF;
    position: absolute;
    top: 4px;
    right: 12px;
    width: 28px;
    z-index: 1;
}

    .datagrid > .button img {
        filter: brightness(0) invert(1);
    }

.datagrid .table {
    margin: 0;
}

.treeview-header {
    height: 28px;
}

.treeview-body {
    position: absolute;
    left: 0;
    right: 0;
    top: 28px;
    bottom: 0;
    overflow-x: hidden;
    overflow-y: auto;
}

.treeview-node-link {
    position: absolute;
    right: 8px;
}

    .treeview-node-link img {
        width: 16px;
    }

.property-equations {
    display: block;
}

.property-equations-header {
    display: block;
}

    .property-equations-header .button {
        display: inline-block;
    }

.property-equation {
    display: block;
    border: var(--border);
    padding: 2px 8px;
    margin-top: 4px;
}

.equation-buttons {
    border-top: var(--border);
    text-align: right;
    margin-top: 8px;
    padding-top: 8px;
}

    .equation-buttons > div {
        display: flex;
        justify-content: end;
    }

    .equation-buttons .button {
        border-radius: 8px;
        display: inline-flex;
        margin-bottom: 4px;
        margin-top: 4px;
        margin-right: 4px;
        width: 80px;
    }

        .equation-buttons .button:first-child {
            background-color: #0067c0;
            color: #FFF;
            font-weight: bold;
        }

.form {
    background-color: #FFF;
    border-radius: 8px;
    color: var(--C50);
    position: absolute;
    width: 600px;
    height: 400px;
    left: calc(50% - 300px);
    top: calc(50% - 200px);
    overflow: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 200;
}

.form-header,
.form-body,
.form-footer {
    position: absolute;
    left: 0;
    right: 0;
}

.form-header {
    align-items: center;
    display: flex;
    font-weight: bold;
    font-size: 18px;
    height: 42px;
    top: 0;
    cursor: grab;
    margin-left: 16px;
}

    .form-header .buttons,
    .form-footer .buttons {
        align-items: center;
        display: flex;
        position: absolute;
        top: 0;
        right: 0;
        height: 42px;
    }

    .form-header .button {
        background-color: transparent;
        color: #C6CCDB;
        padding-right: 16px;
    }

.form-body {
    top: 43px;
    bottom: 43px;
}

.form.no-header .form-body {
    top: 0;
}

.form.no-footer .form-body {
    bottom: 0;
}

.form-footer {
    background-color: var(--C900);
    bottom: 0;
    height: 42px;
    z-index: 1;
}

    .form-footer .buttons .input {
        margin-right: 8px;
        padding: 0;
    }

    .form-footer .buttons .button,
    .form-footer .buttons input {
        margin-right: 8px;
        padding: 0 24px;
        text-align: center;
    }

.viewer-container {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
}

.flow-chart-container {
    background-color: var(--panelbackground);
}

.flow-chart {
    background-color: var(--panelbackground);
    position: absolute;
    left: 0;
    right: 0;
    top: 36px;
    bottom: 0;
    overflow: auto;
    text-align: center;
    min-width: 100%;
}

    .flow-chart td {
        vertical-align: top;
    }

    .flow-chart .flow-chart {
        top: 0;
    }

.flow-chart-children {
    /* display: flex;
    justify-content: center; */
}

.flow-chart-item {
    /* display: block; */
    padding-top: 20px;
    position: relative;
}

    .flow-chart-item.condition {
        margin-top: 20px;
    }

.flow-chart-text {
    color: #888;
    font-weight: bold;
    margin: 4px auto;
    min-width: 200px;
    max-width: 200px;
}

.flow-chart-equation {
    width: 240px;
    overflow-x: auto;
    overflow-y: hidden;
}

.flow-chart-answer {
}

.flow-chart-border {
    background-color: var(--flowchartcolor);
    border: 1px solid var(--flowchartcolor);
    display: block;
    padding: 8px 16px;
    position: relative;
    text-align: center;
    width: 274px;
    max-width: 274px;
    margin: 0 auto;
    z-index: 1;
}

    .flow-chart-border.path {
        background-color: var(--flowchartpathcolor);
        border: 1px solid var(--flowchartpathbordercolor);
    }

    .flow-chart-border.flow-chart-type-0 {
        background: #2c698d;
        border: none;
        border-radius: 100px;
        min-width: 120px;
    }

        .flow-chart-border.flow-chart-type-0 .flow-chart-text {
            color: #FFF !important;
        }

    .flow-chart-border.path .flow-chart-text {
        color: var(--fontcolor);
    }

    .flow-chart-border mjx-math {
        color: #555;
    }

    .flow-chart-border.path mjx-math {
        color: var(--fontcolor);
    }

.flow-chart-body {
    display: inline-block;
    margin: 4px 100px 30px 100px;
    position: relative;
}

.condition > tr > td > .flow-chart-body > .flow-chart-border {
    background-color: transparent;
    border: none;
}

.flow-chart-connector-top {
    top: -5px;
}

.condition > tr > td > .flow-chart-body > .flow-chart-connector-top {
    top: -25px;
}

.condition > tr > td > .flow-chart-body > .flow-chart-border > .flow-chart-equation {
    max-width: 300px;
    margin: 0 auto;
}

.flow-chart-connector-top.offset {
    top: -25px;
}

.flow-chart-connector-bottom {
    bottom: -5px;
}

.condition > tr > td > .flow-chart-body {
    margin-top: 20px;
}

.condition > .flow-chart-body .flow-chart-connector-bottom {
    bottom: -20px;
}

.flow-chart-connector-left {
    left: -5px !important;
    top: calc(50% - 7px);
}

.condition > tr > td > .flow-chart-body > .flow-chart-connector-left {
    left: -25px !important;
}

.condition > tr > td > .flow-chart-body > .flow-chart-connector-bottom {
    bottom: -20px !important;
}

.flow-chart-connector-right {
    left: unset !important;
    right: -5px;
    top: calc(50% - 7px);
}

.condition > tr > td > .flow-chart-body > .flow-chart-connector-right {
    right: -25px;
}

.flow-chart-connector {
    background-color: #CCC;
    border-radius: 10px;
    visibility: hidden;
    position: absolute;
    left: calc(50% - 5px);
    height: 10px;
    width: 10px;
    z-index: 2;
}

    .flow-chart-connector.show {
        visibility: visible;
    }

    .flow-chart-connector.path {
        background-color: #272643;
    }

.flow-chart-limit {
    background-color: #FFF;
    border: 1px solid #00F;
    border-radius: 4px;
    display: inline-block;
    padding: 4px 32px 4px 16px;
    margin-bottom: 4px;
    position: relative;
    text-align: center;
    z-index: 1;
}

    .flow-chart-limit img {
        filter: brightness(0) saturate(100%) invert(67%) sepia(71%) saturate(4067%) hue-rotate(355deg) brightness(96%) contrast(114%);
        width: 16px;
        height: 16px;
        position: absolute;
        right: 8px;
        top: 4px;
    }

.flow-chart-condition {
    font-style: italic;
    left: calc(50% - 5px);
    position: absolute;
    white-space: nowrap;
    z-index: 2;
}

.flow-chart-condition-left {
    left: unset !important;
    right: calc(100% + 25px) !important;
    bottom: calc(50% + 10px);
    text-align: right;
}

.flow-chart-condition-right {
    left: calc(100% + 25px) !important;
    bottom: calc(50% + 10px);
    text-align: left;
}

.flow-chart-shape {
    position: absolute;
    left: -20px;
    top: -20px;
    z-index: 0;
}

.flow-chart mjx-container[jax="CHTML"][display="true"] {
    text-align: center !important;
}

.flow-chart canvas {
    left: 0;
    top: 0;
}

.flow-chart-container .property-enum {
    border-bottom: var(--border);
    margin: 4px 0 0 0;
    padding-bottom: 4px;
}

    .flow-chart-container .property-enum .property-text {
        display: none;
    }

    .flow-chart-container .property-enum .property-list-value,
    .flow-chart-container .property-enum .property-list-body {
        text-align: left;
    }

    .flow-chart-container .property-enum .property-value {
        min-width: 100px;
        width: unset;
    }

.context-menu {
    background-color: var(--panelbackground);
    border: var(--border);
    border-radius: 8px !important;
    box-shadow: var(--shadowcolor) 0 0 16px;
    display: block;
    position: absolute;
    padding: 4px;
    z-index: 1000;
}

    .context-menu .button {
        display: flex;
    }

        .context-menu .button a {
            color: var(--fontcolor);
        }

.iframe {
    background-color: var(--panelbackground);
    border: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1000;
}

.canvas-2D.chart img {
    max-width: calc(100% - 0.25in);
    margin: 0 0 0 0.25in;
}

.graphic-tooltip {
    background-color: #FFF;
    border-radius: 8px 8px 8px 0;
    border: var(--border);
    box-shadow: var(--shadowcolor) 0 0 4px;
    padding: 8px 16px;
    margin: 8px 0 0 4px;
    position: absolute;
    z-index: 100;
}

.form-login {
    text-align: left;
    height: 300px;
}

    .form-login .property .property-text {
        width: 40%;
    }

    .form-login .property .property-value {
        width: 60%;
    }

.appstyle2 .center-panel {
    right: 4px;
}

.property-group-body .viewer-container {
    border: var(--border);
    height: 300px;
    margin-bottom: 16px;
    position: relative;
    width: calc(100% - 16px);
}

    .property-group-body .viewer-container canvas {
        height: 300px;
        position: relative;
    }

.page-menu {
    background-color: var(--panelbackground);
    border: var(--border);
    box-shadow: var(--shadowcolor) 4px 4px 8px;
    position: absolute;
    display: block;
    left: 0;
    top: 52px;
    padding: 0;
    width: 200px;
    z-index: 1000;
}

    .page-menu .button {
        border: none;
        border-radius: 0px !important;
        align-items: start;
        justify-content: left;
    }

        .page-menu .button .button-text {
            align-content: start;
        }

    .page-menu .property-group {
        padding: 0 !important;
    }

.menu-background {
    background-color: rgba(0, 0, 0, 0.1);
}

@media print {
    .report-view .page {
        display: none !important;
        z-index: 10;
    }

        .report-view .page:first-child {
            display: block !important;
        }

        .report-view .page * {
            display: none !important;
        }

        .report-view .page::before {
            background: #2A7B9B;
            color: #FFF;
            content: "Please use the Print button within the app itself, rather than the one in your browser, to print this report.";
            position: absolute;
            padding: 8px;
            font-size: 14px;
            text-align: center;
            top: 40%;
            width: calc(100% - 1in);
        }
}

.company-login {
    margin: 32px 0 16px 0;
}

#components-reconnect-modal,
.components-reconnect-show,
.components-reconnect-failed,
.components-reconnect-rejected {
    display: none !important;
}

.button {
    border-radius: 16px !important;
}

.authorization {
    background-color: #F00;
    border-radius: 4px;
    color: #FFF;
    font-size: 8px;
    font-weight: bold;
    padding: 0 3px;
    margin-left: 4px;
    vertical-align: top;
}

.menu-toolbar .toolbar .button {
    border-radius: 4px;
    padding: 8px;
}

.loading-progress {
    position: absolute;
    display: block;
    left: calc(50% - 48px);
    top: calc(50% - 48px);
    width: 96px;
    height: 96px;
    z-index: 100;
}

    .loading-progress circle {
        fill: none;
        stroke: #e0e0e0;
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke: #1b6ec2;
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
            transition: stroke-dasharray 0.05s ease-in-out;
        }

.loading-progress-text {
    position: absolute;
    display: block;
    top: calc(50% - 7px);
    position: absolute;
    text-align: center;
    font-weight: bold;
    width: 100%;
    z-index: 100;
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text, "Loading");
    }

.menu-container {
    align-items: center;
    background-color: var(--panelbackground);
    border-bottom: var(--border);
    position: absolute;
    display: flex;
    left: 0;
    right: 0;
    top: 0;
    height: 52px;
}

.menu-container-icon img {
    border-radius: 50%;
    padding: 16px 0;
    width: 24px;
    filter: none;
    margin: 0 16px;
}

.menu-container > a {
    display: inline-flex;
    padding: 8px;
}

.main-container-body {
    position: absolute;
    display: flex;
    left: 0;
    right: 0;
    top: 52px;
    bottom: 0;
}

.frame .menu-container {
    border-bottom: var(--border);
}

.menu-container-title {
    font-size: 20px;
    font-weight: bold;
    white-space: nowrap;
}

.menu-container-buttons {
    align-items: center;
    background-color: var(--panelbackground);
    border-radius: 50%;
    display: flex;
    position: absolute;
    height: 42px;
    right: 8px;
    top: 4px;
    justify-content: center;
    text-align: right;
}

    .menu-container-buttons img {
        width: 24px;
    }

.main-container {
    background-color: var(--windowbackground);
    padding: 16px;
    position: absolute;
    left: 0;
    right: 0;
    top: 52px !important;
    bottom: 0;
    overflow-y: auto;
}

.frame .main-container {
    padding: 0;
}

.app-group {
    color: rgb(52, 71, 103);
    border-radius: 16px;
    margin-bottom: 16px;
}

.app-group-header {
    color: rgb(50, 50, 71);
    font-size: 18px;
    font-weight: bold;
    padding: 16px 16px 8px 16px;
}

.app-group-description {
    color: rgb(150, 150, 150);
    padding: 0 16px 0 16px;
    max-width: 600px;
}

.app-group-body {
    padding: 16px 0 0 16px;
}

.left-panel {
    background: var(--panelbackground);
    border: var(--border);
    margin: 4px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 380px;
    overflow: hidden;
}

.center-panel {
    border: var(--border);
    position: absolute;
    left: 384px;
    right: 404px;
    top: 0;
    bottom: 0;
    overflow: auto;
    padding: 16px;
    overflow: hidden;
}

    .center-panel .canvas2d,
    .center-panel .canvas3d,
    .center-panel .report,
    .center-panel .pmm,
    .center-panel .datagrid {
        border: none;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        /*border-radius: 16px;
        left: 8px;
        right: 8px;
        top: 8px;
        bottom: 8px;*/
        overflow: hidden;
    }

    .center-panel .pmm {
        background-color: var(--panelbackground);
    }

    .center-panel.frame {
        right: 8px;
    }

.right-panel {
    background-color: var(--panelbackground);
    border: var(--border);
    margin: 4px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 400px;
    overflow: hidden;
}

.property-groups .tab {
    background-color: var(--windowbackground);
    border-radius: 16px;
    position: relative;
    margin: 4px;
    overflow: unset;
}

.property-groups .tab-header,
.property-groups .tab-body {
    background-color: unset;
    position: relative !important;
    top: 0;
    overflow: unset;
}

.tab {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

    .tab .tab-header {
        align-items: center;
        border-bottom: 2px solid var(--buttonactivecolor);
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        height: 36px;
        overflow: hidden;
    }

.tab-header-item {
    align-items: center;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    padding: 4px 16px !important;
}

    .tab-header-item:first-child {
        border-top-left-radius: 8px;
        border-left: var(--tabborder) !important;
    }

    .tab-header-item:last-child {
        border-top-right-radius: 8px;
    }

    .tab-header-item img {
        filter: var(--svgfilter);
        margin-right: 12px !important;
        margin-top: 0 !important;
        width: 20px !important;
    }

    .tab-header-item.selected {
        background-color: var(--buttonactivecolor) !important;
        color: #FFF;
        font-weight: bold;
    }

        .tab-header-item.selected img {
            filter: brightness(0) invert(1);
        }

.tab.center .tab-header-item.selected {
    border-radius: 8px;
}

.tab-header-text {
    margin-top: -2px !important;
    position: relative;
}

body .tab-body {
    top: 36px;
}

body .panel {
    background-color: transparent;
    border: none;
}

body .property-group-header {
    align-items: center;
    background-color: transparent !important;
    cursor: pointer;
    display: flex;
    font-size: 14px;
    font-weight: bold;
    margin: 0 8px;
    padding: 8px 0 !important;
    position: relative;
}

body .property-group {
    border: none;
    border-radius: 8px;
    margin: 4px;
    padding: 8px;
}

.property-group.maximize {
    position: absolute;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    height: unset !important;
    width: unset !important;
    z-index: 10 !important;
}

body .tab.center .canvas2d,
body .tab.center .canvas3d,
body .tab.center .report {
    border: none;
    border-radius: 16px;
    left: 8px;
    right: 8px;
    top: 0;
    bottom: 8px;
    overflow: hidden;
}

body .canvas2d .toolbar,
body .canvas3d .toolbar {
    background-color: var(--panelbackground);
    border-bottom: var(--border);
    align-items: center;
    display: flex;
    height: 43px;
    position: absolute;
    top: 0;
    width: 100%;
}

body .property-unit .property-value {
    width: calc(100% - 48px);
}

body .main-container {
    bottom: 0;
}

.app-container.has-details {
    width: calc(100% - 336px);
}

.app-details {
    background-color: #eff1f2;
    border-radius: 8px;
    position: absolute;
    top: 16px;
    bottom: 16px;
    right: 16px;
    width: 320px;
    padding-bottom: 60px;
    overflow: auto;
}

.app-description,
.app-title {
    padding: 16px;
}

.app-title {
    border-bottom: var(--border);
    font-weight: 500;
    margin: 16px;
    padding: 8px 0;
}

.app-new-model {
    background-color: var(--button);
    color: var(--buttonlight);
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
}

.button.app-new-model:hover {
    background-color: #006496 !important;
}

.app-details .property {
    display: block;
    padding: 2px 16px;
    margin-bottom: 8px;
}

.app-details .property-text {
    color: #888;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    width: 100%;
}

.app-details .property-value {
    background-color: var(--panelbackground);
    width: 100%;
}

.app-group .app-group {
    background-color: var(--panelbackground);
    margin: 0 16px 16px 16px;
    padding: 0 0 8px 0;
}

    .app-group .app-group .app-group-header {
        margin-bottom: 8px;
    }

.app-thumbnail {
    background-color: var(--panelbackground);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
    margin-right: 16px;
    min-height: 96px;
    width: 320px;
}

    .app-thumbnail.highlight {
        border: 2px solid #2a7b8c;
    }

        .app-thumbnail.inactive .app-thumbnail-text {
            color: #AAA !important;
        }

        .app-thumbnail.inactive img {
            filter: brightness(0) saturate(100%) invert(98%) sepia(1%) saturate(5037%) hue-rotate(241deg) brightness(127%) contrast(76%);
        }

        .app-thumbnail.disabled {
            background-color: #EEE;
            box-shadow: none !important;
        }

    .app-thumbnail:hover {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    }

        .app-thumbnail:hover .app-thumbnail-text {
            font-weight: bold;
            white-space: nowrap;
        }

    .app-thumbnail img {
        display: block;
        margin: 16px 0 0 16px;
        width: 64px;
        height: 64px;
        object-fit: cover;
    }

    .app-thumbnail a {
        color: #000;
        text-decoration: none;
    }

.app-thumbnail-text {
    font-size: 16px;
    font-weight: bold;
    padding: 8px 0;
    position: absolute;
    left: 90px;
    top: 16px;
}

.app-thumbnail-description {
    color: rgb(150, 150, 150);
    position: absolute;
    left: 90px;
    top: 48px;
    right: 16px;
}

.design-group .button {
    background-color: #0067c0;
    border-radius: 16px;
    color: #FFF;
    display: block;
    font-weight: bold;
    padding: 12px 0;
    text-align: center;
}

body .tab-header {
    border: none;
}

body .treeview {
    background-color: var(--panelbackground);
    border: none;
    box-shadow: none;
    border-radius: 8px;
    margin: 4px;
    position: unset;
}

body .treeview-header {
    background-color: #006496 !important;
    color: #FFF;
    border-bottom: 2px solid #006496;
    height: 32px;
}

body .treeview-body {
    padding: 8px;
    top: 32px;
    bottom: 0 !important;
    position: unset;
}

    body .treeview-body.false {
        top: 0 !important;
    }

.frame .main-menu {
    background-color: var(--panelbackground);
    border-bottom: var(--border);
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 43px;
    display: flex;
}


.frame .main-panel {
    position: absolute;
    top: 43px;
    bottom: 0;
    left: 0;
    right: 0;
}


.frame .panel.toolbar > .button img {
    height: 20px;
    width: 20px;
}

.frame .panel.toolbar > .button:first-child {
    border-radius: 8px 0 0 0;
}

.frame .center-panel {
    right: 4px;
}

    .frame .center-panel .canvas2d {
        border-radius: 0;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
    }

.canvas-container {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.frame .panel-header {
    font-size: 14px;
    height: 43px;
    padding-left: 16px;
}

.panel-body {
    top: 43px !important;
    bottom: 46px !important;
}

.propertygrid-footer .button {
    height: 32px !important;
}

.table {
    margin: 8px 0 8px 0;
}

.table-header {
    margin: 8px 0 8px 12px;
}

.property-table thead th {
    font-weight: bold;
}

.viewer-container .toolbar .property {
    display: inline-flex;
    padding: 8px 0;
}

.viewer-container .toolbar > div {
    display: inline-flex;
}

.viewer-container .toolbar .property .property-text {
    margin-right: 16px;
    width: unset;
}

.viewer-container .toolbar .property-checkbox .property-value {
    padding: 4px 0;
}

.toolbar .left-separator {
    border-radius: 0 !important;
    border-left: var(--border) !important;
    padding-left: 8px !important;
    margin-left: 4px;
}

.toolbar .right-separator {
    border-radius: 0 !important;
    border-right: var(--border) !important;
    padding-right: 8px !important;
    margin-right: 4px;
}

.toolbar-menu {
    position: absolute;
    right: 8px;
    top: 8px;
}

.toolbar {
    position: relative !important;
}

.toolbar-menu .button .property-list-container {
    left: unset;
    right: 0;
    top: 24px;
}

.toolbar-menu .button .property-input {
    width: unset;
}

.toolbar .disabled {
    pointer-events: none;
    opacity: 0.6;
    cursor: default;
}

.toolbar .enabled {
    pointer-events: auto;
    opacity: 1;
    cursor: pointer;
}

.toolbar-menu .button .property-group-list-body .property {
    padding: 2px 0;
}

.pmm {
    position: absolute;
}

    .pmm .canvas2d {
        border-radius: 0;
    }

    .pmm .viewer-container.canvas3d-container {
        border-right: var(--border);
        border-radius: 8px 0 0 8px;
        top: 0;
        left: 0;
        bottom: 0;
        right: 50%;
    }

    .pmm .viewer-container {
        left: 50%;
        right: 0;
    }

        .pmm .viewer-container .canvas2d {
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
        }

    .pmm > .viewer-container:nth-child(2) {
        border-radius: 0 8px 0 0;
        border-bottom: var(--border);
        bottom: 50%;
        top: 0;
    }

    .pmm > .viewer-container:nth-child(3) {
        border-radius: 0 0 8px 0;
        bottom: 0;
        top: 50%;
    }

.viewer-container.canvas3d-container > .toolbar {
    background-color: var(--panelbackground);
    border-bottom: var(--border);
    height: 43px;
    width: 100%;
}

.pmm .viewer-container .canvas2d.has-toolbar {
    top: 43px;
}

.viewer-container > .toolbar {
    border-bottom: var(--border);
    height: 43px;
    width: 100%;
}

.viewer-container .canvas3d.has-toolbar {
    top: 43px;
}

.authenticate-button.button {
    background-color: #0067c0;
    border-radius: 8px;
    color: #FFF;
    text-align: center;
    text-decoration: none;
    padding: 0 12px;
}

.menu-container-buttons .user {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    margin-right: 16px;
}

/*
@media only screen and (max-width: 1600px) {
    .left-panel {
        bottom: calc(50% - 4px);
    }

    .frame .left-panel {
        bottom: 0;
    }

    .center-panel {
        bottom: 0;
        left: 436px;
        right: 4px;
    }

    .frame .center-panel {
        bottom: 4px;
    }

    .right-panel {
        top: 50%;
        left: 0;
        width: 420px;
    }
}*/

.dialog.form {
    left: calc(50% - 300px);
    top: calc(50% - 200px);
    height: 400px;
    width: 600px;
}

.dialog-footer .button {
    border-radius: 16px;
}

.app-user {
    border-radius: 16px;
    float: left;
    overflow: hidden;
    padding: 16px;
    width: 320px;
}

.app-user-picture {
    text-align: center;
}

    .app-user-picture img {
        border-radius: 50%;
        margin-bottom: 16px;
        width: 120px;
    }

.app-user-name {
    font-size: 16px;
    font-weight: bold;
    margin-left: 16px;
}

.app-user-account {
    margin-left: 16px;
}

.app-user-stats {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    margin: 16px 0;
    padding: 16px;
}

.app-user-stats-header {
    font-size: 14px;
    font-weight: bold;
}

.app-user-stats-body {
    background-color: #EEE;
    border-radius: 8px;
    height: 64px;
    margin-top: 8px;
}

.design-button {
    background-color: #006496 !important;
    color: #FFF;
    margin: 0 auto 0 auto;
    padding: 2px 0 4px 0;
    position: sticky;
    bottom: 8px;
    width: 100px;
}

.right-button {
    background-color: #006496 !important;
    color: #FFF;
    padding: 2px 8px;
    bottom: 8px;
    margin: 10px 60px;
    display: flex;
    justify-self: right;
    flex-direction: row;
}

.beam-sections .left-panel {
    bottom: 40%;
}

.beam-sections .center-panel {
    border-right: 0;
    right: 0;
}

.beam-sections .right-panel {
    background: #eff1f2;
    border-radius: 16px;
    position: absolute;
    margin: 0 4px 4px 4px;
    left: 0;
    height: calc(40% - 4px);
    bottom: 0;
    top: unset;
    width: 380px;
    overflow: hidden;
    display: block;
}


.beam-sections .property.property-table td:last-child,
.beam-sections .property.property-table td:nth-last-child(2) {
    width: 32px;
}

    .beam-sections .property.property-table td:last-child .button,
    .beam-sections .property.property-table td:nth-last-child(2) .button {
        border: none;
        padding: 0;
    }

        .beam-sections .property.property-table td:last-child .button img,
        .beam-sections .property.property-table td:nth-last-child(2) .button img {
            height: 20px;
            width: 20px;
        }

    .beam-sections .property.property-table td:last-child .button-text,
    .beam-sections .property.property-table td:nth-last-child(2) .button-text {
        display: none;
    }

.app-table .property-table .has-top-header thead tr:first-child th {
    /*    background-color: #006496 !important;
    color: #FFF;*/
    height: 32px;
    outline: var(--border2);
    top: -1px;
}

.app-table .property-table .has-top-header thead tr:nth-child(2) th {
    background-color: var(--panelbackground);
    outline: var(--border2);
    position: sticky;
    top: 31px;
}

.toolbar-dropdown {
    border: var(--border);
    border-radius: 8px;
    position: relative;
    padding: 0 4px;
    margin: 0 4px;
}

    .toolbar-dropdown .icon.mdi {
        cursor: pointer;
        display: inline-block;
        font-size: 24px;
    }

.toolbar-dropdown-body .button {
    justify-content: left;
    border-radius: 0 !important;
    text-align: left;
    width: 100%;
}

.toolbar-dropdown .button .text {
    margin: 0 8px;
    white-space: nowrap;
}

.toolbar-dropdown-header {
    align-items: center;
    display: flex;
}

.toolbar-dropdown .toolbar-dropdown-body {
    border: var(--border);
    background-color: var(--panelbackground);
    position: absolute;
    left: 0;
    top: 33px;
    z-index: 1000;
}

.treeview-node-toolbar {
    display: none;
}

.treeview-node-header:hover .treeview-node-toolbar {
    display: block;
}

.analysis .right-panel {
    background: #eff1f2;
    margin: 4px;
    left: 0;
    bottom: 0;
    height: calc(40% - 12px);
    width: 380px;
    display: block;
}

.group-button {
    background-color: #006496 !important;
    border-radius: 8px !important;
    color: #FFF;
    margin: 8px auto 0 auto;
    padding: 8px 0;
    position: sticky;
    bottom: 8px;
    width: 100px;
}

.moment-curvature .center-panel .tab-body > div > .canvas2d-container:nth-child(1) {
    bottom: 50%;
    right: 50%;
    border-right: var(--border);
}

.moment-curvature .center-panel .tab-body > div > .canvas2d-container:nth-child(2) {
    bottom: 50%;
    left: 50%;
}

.moment-curvature .center-panel .tab-body > div > .canvas2d-container:nth-child(3) {
    border-top: var(--border);
    border-bottom: var(--border);
    top: 50%;
    bottom: 25%;
}

.moment-curvature .center-panel .tab-body > div > .canvas2d-container:nth-child(4) {
    border-right: var(--border);
    top: 75%;
    right: 50%;
}

.moment-curvature .center-panel .tab-body div > .canvas2d-container:nth-child(5) {
    top: 75%;
    left: 50%;
}

.elastic-stresses .left-panel {
    bottom: 0 !important;
}

.elastic-stresses .center-panel {
}

.elastic-stresses .right-panel {
    display: none;
}

.elastic-analysis {
    position: absolute;
    left: 0;
    width: calc(33% - 4px);
    top: 0;
    height: 33%;
}

.elastic-distribution-1 {
    position: absolute;
    left: calc(33%);
    width: calc(33% - 4px);
    top: 0;
    height: 33%;
}

.elastic-distribution-2 {
    position: absolute;
    right: 0;
    width: calc(34% - 8px);
    top: 0;
    height: 33%;
}

.elastic-direct {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(33% + 4px);
    height: 33%;
    width: calc(33% - 4px);
}

.elastic-principal {
    position: absolute;
    right: 0;
    top: calc(33% + 4px);
    height: 33%;
    left: calc(33%);
    width: calc(33% - 4px);
}

.elastic-mohrs {
    position: absolute;
    right: 0;
    top: calc(33% + 4px);
    height: 33%;
    width: calc(34% - 8px);
}

.elastic-major {
    position: absolute;
    left: 0;
    width: calc(25% - 4px);
    bottom: 0;
    height: calc(33% - 4px);
}

.elastic-minor {
    position: absolute;
    left: calc(25%);
    width: calc(25% - 8px);
    bottom: 0;
    height: calc(33% - 4px);
}

.elastic-trajectories {
    position: absolute;
    right: 0;
    width: calc(50% - 4px);
    bottom: 0;
    height: calc(33% - 4px);
}


.menu-toolbar .button img {
    width: 27px;
    height: 24px;
}

.menu-left-toolbar {
    margin-left: 32px;
}

.menu-center-toolbar {
    margin: 0 auto;
}

    .menu-center-toolbar .toolbar,
    .menu-right-toolbar .toolbar {
        white-space: nowrap;
    }

.menu-right-toolbar {
    float: right;
    margin-right: 52px;
}

    .menu-right-toolbar .tooltip {
        left: unset;
        right: 0;
    }

    .menu-right-toolbar .toolbar .button .property-list-container {
        left: unset;
        right: 0;
    }

.analysis.analysis-template .left-panel {
    bottom: 0;
    width: 428px;
}

.analysis.analysis-template .center-panel {
    left: 432px;
}

.analysis.analysis-template .right-panel {
    display: none;
}

.analysis .left-panel {
    width: 368px;
    bottom: 40%;
}

.etabs-app .left-panel {
    bottom: 50%;
}

.analysis .center-panel {
    left: 372px;
    right: 0;
}

.analysis .right-panel {
    height: calc(40% - 4px);
    width: 368px !important;
    top: unset;
}

.etabs-app .right-panel {
    height: calc(50% - 8px);
}

.curvature-canvas-section {
    position: absolute;
    height: 33%;
    width: calc(50% - 4px);
}

.curvature-canvas-curvature {
    position: absolute;
    height: 33%;
    right: 0;
    width: calc(50% - 8px);
}

.curvature-canvas-stress {
    position: absolute;
    left: 0;
    right: 0;
    height: 33%;
    top: calc(33% + 4px);
}

.curvature-canvas-steel {
    position: absolute;
    top: calc(66% + 8px);
    height: calc(34% - 16px);
    width: calc(33% - 8px);
}

.curvature-canvas-concrete {
    position: absolute;
    top: calc(66% + 8px);
    left: calc(33% - 4px);
    right: calc(33% - 8px);
    height: calc(34% - 16px);
    width: calc(33% - 4px);
}

.curvature-canvas-concrete-core {
    position: absolute;
    top: calc(66% + 8px);
    height: calc(34% - 16px);
    right: 0;
    width: calc(34% - 4px);
}

.perf-based-eval .elastic-analysis {
    height: calc(67% - 4px);
    width: calc(33% - 16px);
}

.perf-based-eval .curvature-canvas-curvature {
    position: absolute;
    height: 33%;
    left: calc(33% - 8px);
    width: calc(33% - 8px);
}

.perf-based-eval .curvature-canvas-curvature-2 {
    position: absolute;
    height: 33%;
    right: 0;
    width: calc(34% - 8px);
}

.perf-based-eval .curvature-canvas-curvature-3 {
    position: absolute;
    height: 33%;
    top: calc(33% + 8px);
    left: calc(33% - 8px);
    right: 0;
    width: calc(67% - 8px);
}

.perf-based-eval .curvature-canvas-steel {
}

.perf-based-eval .curvature-canvas-concrete {
}

.perf-based-eval .curvature-canvas-concrete-core {
}

.perf-based-eval .right-panel {
    background: #eff1f2;
    border-radius: 16px;
    position: absolute;
    margin: 8px;
    right: 0;
    top: 0;
    bottom: 0;
    width: 400px;
    overflow: hidden;
}

/* set a single gap value */
.sdof-dynamics {
    --sd-gap: 8px;
}

    /* common panel size: (100% - 2*gaps) / 3 */
    .sdof-dynamics .sdof-canvas-1,
    .sdof-dynamics .sdof-canvas-2,
    .sdof-dynamics .sdof-canvas-3 {
        position: absolute;
        left: 0;
        right: 0;
        height: calc((100% - (2 * var(--sd-gap))) / 3);
    }

    /* stacked positions with equal gaps */
    .sdof-dynamics .sdof-canvas-1 {
        top: 0;
    }

    .sdof-dynamics .sdof-canvas-2 {
        top: calc((100% - (2 * var(--sd-gap))) / 3 + var(--sd-gap));
    }

    .sdof-dynamics .sdof-canvas-3 {
        top: calc(2 * ((100% - (2 * var(--sd-gap))) / 3) + 2 * var(--sd-gap));
        height: calc((100% - (2 * var(--sd-gap))) / 3 - 16px);
    }


    .sdof-dynamics .sdof-canvas-right-1 {
        position: relative;
        bottom: 0;
        left: 0;
        right: 0;
        height: 38%;
    }

    .sdof-dynamics .sdof-canvas-right-harmonic-1,
    .sdof-dynamics .sdof-canvas-right-harmonic-2,
    .sdof-dynamics .sdof-canvas-right-harmonic-3 {
        position: relative;
        /* no absolute positioning */
        width: 100%;
        min-height: 180px;
        /* tweak: 160�220px works well */
        margin-top: 8px;
        /* space between groups */
    }

    .sdof-dynamics .sdof-canvas-right-impulse-animation,
    .sdof-dynamics .sdof-canvas-right-impulse-1,
    .sdof-dynamics .sdof-canvas-right-impulse-2,
    .sdof-dynamics .sdof-canvas-right-impulse-3 {
        position: relative;
        /* no absolute positioning */
        width: 100%;
        min-height: 180px;
        /* tweak: 160�220px works well */
        margin-top: 8px;
        /* space between groups */
    }

.tab-tools-canvas .property-group-body .viewer-container {
    border: none;
    border-radius: 0 0 8px 8px;
    position: absolute;
    left: 0;
    right: 0;
    top: 32px;
    bottom: 0;
    margin-bottom: 0;
    height: unset;
    width: 100%
}

.property-group-body .viewer-container canvas {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
}

.toolbar .play-button {
    background-color: #006496;
    border-radius: 8px !important;
    padding: 2px 8px;
    margin-right: 4px;
}

    .toolbar .play-button i {
        color: #FFF;
    }

    .toolbar .play-button img {
        filter: brightness(0) saturate(100%) invert(99%) sepia(100%) saturate(42%) hue-rotate(223deg) brightness(109%) contrast(99%);
        margin: 2px 0;
    }

.property-group.no-expand .group-toolbar > div {
    right: 0;
}

.property-group.has-maximize.no-expand .group-toolbar > div {
    right: 28px;
}

.group-toolbar {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

    .group-toolbar > div {
        display: flex;
        align-items: center;
        margin-top: 1px;
        top: 0;
    }

    .group-toolbar .property {
        font-weight: normal;
        font-size: 12px;
        padding: 2px 2px;
    }

    .group-toolbar .property-enum .property-value {
        background-color: var(--panelbackground);
        min-width: 140px;
    }

.property-group .group-toolbar .property:first-child {
    margin-top: 0;
}

.info {
    position: absolute;
    bottom: 16px;
    font-size: 14px;
    left: 0;
    right: 0;
    text-align: center;
    animation-name: fadeIn;
    animation-duration: 6s;
    animation-fill-mode: forwards;
}

    .info .icon {
        font-size: 32px;
        margin-right: 12px;
    }

    .info .info-container {
        align-items: center;
        background-color: #DDFFDD;
        border-radius: 8px !important;
        border: 1px solid #AAA;
        padding: 4px 32px 4px 16px;
        display: inline-flex;
    }

    .info.warning .info-container {
        align-items: center;
        background-color: #FFEEDD;
        border-radius: 8px !important;
        border: 1px solid #AAA;
        display: inline-flex;
    }

    .info.error .info-container {
        align-items: center;
        background-color: #FF8888;
        color: #FFF;
        border-radius: 8px !important;
        border: 1px solid #AAA;
        display: inline-flex;
    }

.button.user-menu-button {
    border-radius: 50% !important;
    width: 36px;
    height: 36px;
    justify-content: center;
}

.user-menu-button .property-list-container {
    left: unset;
    right: 0;
    top: 40px;
}

.button.user-menu-button .property {
    align-items: center;
    display: flex;
    padding: 4px 8px;
}

    .button.user-menu-button .property .property-value {
        margin-top: 0;
    }

.parameter-common {
    background-color: var(--panelbackground);
    border-bottom: var(--border);
    height: 43px;
    overflow: hidden;
    padding-top: 6px;
    position: sticky;
    top: 0;
    z-index: 1;
}

    .parameter-common > .property-group {
        border-radius: 0;
        border-top: 1px solid var(--bordercolor);
        margin: 4px 0 0 0;
    }

.center-button-container {
    height: 34px;
    margin: 0;
    padding: 0;
    position: relative;
}

    .center-button-container .button,
    .button-highlight {
        background-color: var(--buttonactivecolor) !important;
        border-radius: 8px !important;
        color: #FFF;
        padding: 7px 8px;
        display: flex;
        height: 30px;
        width: 130px;
        margin: 0 8px 0 auto;
    }

.menu-container .button-highlight {
    height: unset;
    padding: 2px 6px !important;
    margin-top: 4px;
    vertical-align: middle;
}

    .menu-container .button-highlight img {
        width: 20px;
    }

.button-highlight .button-text {
    color: #FFF;
}

.button-highlight img {
    filter: brightness(0) invert(1) !important;
}

.center-button-container .property-enum {
    border: 1px solid var(--bordercolor);
    border-radius: 4px;
    padding: 0 8px;
    position: absolute;
    height: 30px;
    top: 0;
    left: 8px;
    width: 160px;
}

    .center-button-container .property-enum .property-text {
        padding-left: 4px;
    }

    .center-button-container .property-enum .property-value {
        border: none;
        border-left: 1px solid #888;
        border-radius: 0;
        margin-right: -4px;
        padding-left: 8px;
        width: 100px;
    }

    .center-button-container .property-enum .expander-header-icon {
        top: 4px;
    }

.eaglei-link {
    background-color: #FFF;
    border-radius: 16px;
    border: 1px solid #CCC;
    padding: 8px 16px 4px 16px;
    position: absolute;
    bottom: 4px;
    right: 4px;
    z-index: 1000;
}

    .eaglei-link img {
        width: 60px;
        height: auto;
    }

.button .property-group-list-body .button.logout-button {
    background-color: #0083C4 !important;
    border-radius: 8px !important;
    color: #FFF;
    text-align: center;
    justify-content: center;
    padding: 6px 0;
}

    .button .property-group-list-body .button.logout-button a {
        color: #FFF;
    }

    .button .property-group-list-body .button.logout-button .button-text {
        display: inline-flex;
        justify-content: center;
    }

.datatable {
    border: none;
    border-radius: 8px;
    margin: 8px;
    overflow: hidden;
}

    .datatable table {
        border: none;
        border-radius: 8px;
        width: 100%;
    }

        .datatable table thead {
            background-color: var(--panelbackground);
            border-bottom: var(--border);
        }

            .datatable table thead th {
                font-weight: bold;
                padding: 8px;
                text-align: left;
            }

        .datatable table tbody tr:nth-child(odd) {
            background-color: var(--containerbackground);
        }

    .datatable .datatable-text {
        font-weight: bold;
        margin-bottom: 8px;
    }

.fea-calculations {
    position: absolute;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    height: unset !important;
    width: unset !important;
    background-color: var(--panelbackground);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

    .fea-calculations .form-body {
        overflow-x: hidden;
        overflow-y: auto;
    }

    .fea-calculations .datatable table {
        width: unset;
    }

    .fea-calculations .form-header .button {
        border: none;
    }

.param-header {
    border-bottom: var(--border);
    font-weight: bold;
    margin: 16px 12px 8px 12px;
    padding: 2px 0 8px 0;
}

.pointer {
    border-radius: 50%;
    border: 2px solid #000;
    position: absolute;
    background-color: #FF0;
    width: 10px;
    height: 10px;
}

.clipping-plane-ui {
    background-color: var(--panelbackground);
    border: var(--border);
    border-radius: 8px;
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 200px;
    padding: 8px 16px;
}

    .clipping-plane-ui > .text {
        font-weight: bold;
        margin-bottom: 8px;
    }

    .clipping-plane-ui .button {
        border: none;
        border-radius: 4px;
        padding: 2px 8px;
        margin-right: 4px;
        position: absolute;
        top: 4px;
        right: 4px;
        height: 24px;
        width: 24px;
    }

.range-slider-val-left,
.range-slider-val-right {
    display: none;
}

.range-control {
    position: relative;
    width: 100%;
    height: 12px;
    margin-top: 8px;
}

    .range-control .range-control-body {
        margin-left: 12px;
        width: calc(100% - 24px);
    }

    .range-control .range-control-body-back {
        background-color: #888;
        border-radius: 4px;
        height: 4px;
        width: 100%;
        position: absolute;
    }

.range-control-left {
    background: none !important;
    width: 0 !important;
    height: 0 !important;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 12px solid var(--rangeslider);
    margin-left: 0 !important;
    margin-top: -4px;
    position: absolute;
}

.range-control-right {
    background: none !important;
    width: 0 !important;
    height: 0 !important;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 12px solid var(--rangeslider);
    margin-left: 0 !important;
    margin-top: -4px;
    right: 0;
    position: absolute;
}

.context-menu {
    position: absolute;
}

    .context-menu .button {
        border: none;
        border-radius: 4px !important;
        text-align: left;
        justify-content: left;
    }

        .context-menu .button.separator, .context-menu .input.separator {
            border-bottom: var(--border);
            border-bottom-left-radius: 0 !important;
            border-bottom-right-radius: 0 !important;
            padding-bottom: 8px;
        }

    .context-menu .input {
        align-items: center;
        display: flex;
        padding: 4px 8px;
    }

        .context-menu .input > div:first-child {
            width: 80px;
        }

        .context-menu .input > div:nth-child(2) {
            border: var(--border);
            padding: 4px 8px;
        }

        .context-menu .input > div input {
            border: none;
        }

    .context-menu .button .icon {
        margin-right: 8px;
    }


@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@media only screen and (max-width: 1650px) {
    .left-panel {
        bottom: 50%;
    }

    .center-panel {
        border-right: 0;
        right: 0;
    }

    .right-panel {
        border-top: var(--border);
        position: absolute;
        margin-top: 0;
        left: 0;
        top: 50%;
        bottom: 0;
        width: 380px;
        overflow: hidden;
        display: block;
    }

    .beam-sections .right-panel {
        height: unset;
        top: 60%;
        width: 380px;
    }
}

@media only screen and (max-width: 1200px) {
    .menu-center-toolbar .toolbar {
        display: none;
    }
}

@media only screen and (max-width: 600px) {
    .menu-container {
        border-bottom: var(--border);
    }

    .menu-center-toolbar {
        display: none;
    }

    .left-panel {
        bottom: 0 !important;
        border-radius: 0;
        width: unset;
        right: 0;
        margin: 0;
    }

    .tab .tab-header {
        top: unset !important;
        bottom: 0 !important;
    }

    body .tab-header {
        border: none;
        border-bottom: none !important;
        border-top: 2px solid #006496;
        height: 42px !important;
        overflow-x: auto !important;
    }

    .tab-body {
        top: 0 !important;
        bottom: 42px !important;
    }

    .tab-header-item.selected {
        background-color: var(--panelbackground) !important;
        border-radius: 0;
        color: var(--fontcolor);
    }

        .tab-header-item.selected img {
            filter: none !important;
        }

    .parameter-common {
        background-color: var(--panelbackground);
        border: none;
        border-bottom: 1px solid var(--bordercolor);
        border-radius: 0;
        padding: 8px 0 4px 0;
        margin: 0;
        overflow: hidden;
        position: sticky;
        top: -1px;
        z-index: 1;
    }
}