#crudsterListHeader>div {
    vertical-align: top;
}

#crudsterListHeader:after {
    content: '';
    display: block;
    clear: both;
}

#crudsterListHeader>div.formarHolder div.formarField {
    vertical-align: bottom;
}

#crudsterListHeader div.crudsterButton {
    float: right;
    margin: 0px 0px 20px 20px;
}

/* LISTING */
.crudsterListTable div.header div.sortable svg.icon.frk {
    fill: #FFF;
    margin-right: 5px;
    opacity: 0.25;
}

.crudsterListTable div.header div.sortable:hover {
    cursor: pointer;
}

.crudsterListTable div.header div.sortable:hover svg.icon.frk {
    opacity: 0.5;
}

.crudsterListTable div.header div.sortable svg.icon.frk.sort-up {
    display: none;
}

.crudsterListTable div.header div.sortable.sorting svg.icon.frk {
    opacity: 1;
}

.crudsterListTable div.header div.sortable.sorting.DESC svg.icon.frk.sort-up {
    display: inline-block;
}

.crudsterListTable div.header div.sortable.sorting.DESC svg.icon.frk.sort-down {
    display: none;
}

.crudsterListTable div.header div.sortable.sorting.ASC:hover svg.icon.frk.sort-up {
    display: inline-block;
    opacity: 0.5;
}

.crudsterListTable div.header div.sortable.sorting.ASC:hover svg.icon.frk.sort-down {
    display: none;
}

.crudsterListTable div.header div.sortable.sorting.DESC:hover svg.icon.frk.sort-up {
    display: none;
}

.crudsterListTable div.header div.sortable.sorting.DESC:hover svg.icon.frk.sort-down {
    display: inline-block;
    opacity: 0.5;
}

.crudsterListTable:not(.nodetail) div.entry:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* LIST CHECKBOXES */
.crudsterListTable div.entry>div.checkbox {}

.crudsterListTable div.entry>div.checkbox.checkval_1 {
    background: rgba(0, 255, 0, 0.10);
}

.crudsterListTable div.entry>div.checkbox.checkval_1:nth-child(odd) {
    background: rgba(0, 255, 0, 0.15);
}

.crudsterListTable div.entry>div.checkbox.checkval_1>div {
    color: var(--frk-dark-green);
}

.crudsterListTable div.entry>div.checkbox.checkval_0 {
    background: rgba(255, 0, 0, 0.10);
}

.crudsterListTable div.entry>div.checkbox.checkval_0:nth-child(odd) {
    background: rgba(255, 0, 0, 0.15);
}

.crudsterListTable div.entry>div.checkbox.checkval_0>div {
    color: var(--frk-dark-red);
}

.crudsterListTable div.entry>div.checkbox svg.icon.frk {
    display: none;
}

.crudsterListTable div.entry>div.checkbox.checkval_1 svg.icon.frk.ischecked {
    display: inline-block;
    fill: var(--frk-dark-green);
}

.crudsterListTable div.entry>div.checkbox.checkval_0 svg.icon.frk.unchecked {
    display: inline-block;
    fill: var(--frk-dark-red);
}

/* LIST SORTING */

.crudsterListTable:not(.nodetail) div.entry>div:not(.moveHandle) {
    cursor: pointer;
}

.crudsterListTable div>div.moveHandle {
    text-align: center;
    width: 0px;
}

.crudsterListTable div>div.moveHandle>svg.icon.frk {
    margin: 0px 5px;
}

.crudsterListTable div.header>div.moveHandle>svg.icon.frk {
    fill: #FFF;
}

.crudsterListTable div.entry>div.moveHandle {
    opacity: 0.5;
    border: 1px inset rgba(0, 0, 0, 0.5);
}

.crudsterListTable div.entry>div.moveHandle:hover {
    opacity: 1;
    cursor: grab;
    background: rgba(0, 0, 0, 0.5);
    border-color: transparent;
}

.crudsterListTable div.entry>div.moveHandle:hover>svg.icon.frk {
    fill: #FFF;
}

div.crudsterSortPlaceholder {
    height: 30px;
    background: rgba(255, 200, 0, 0.25) !important;
    display: table-row !important;
}

/* PARENT */
.crudsterListTable.parent div.entry svg.level.icon.frk {
    margin-right: 5px;
    opacity: 0.5;
    height: 18px;
    width: 18px;
    margin-top: 1px;
    margin-left: 5px;
}

.crudsterListTable.parent div.entry.level_0 svg.level.icon.frk {
    display: none;
}

/* RECORD */
.crudsterEditorLayout {
    display: table;
    width: 100%;
}

.crudsterEditorLayout>div.row {
    display: table-row;
}

.crudsterEditorLayout>div.row>div.cell {
    display: table-cell;
}

.crudsterEditorLayout>div.row>div.cell>div.node {
    background: rgba(0, 0, 0, 0.05);
}

.crudsterEditorLayout>div.row>div.cell>div.node>div.title {
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.05);
    font-weight: bold;
    font-size: 16px;
}

.crudsterEditorLayout>div.row>div.cell>div.node>div.content {
    padding: 20px 0px 0px 20px;
}

.crudsterEditorLayout>div.row:not(:last-child)>div.cell {
    padding-bottom: 20px;
}

.crudsterEditorLayout>div.row>div.cell:not(:last-child) {
    padding-right: 20px;
}

/* HISTORY */
.crudsterFieldHistoryButton {
    margin-top: 10px !important;
    padding-bottom: 4px !important;
}

.formar .crudsterFieldHistoryButton.small {
    padding-bottom: 4px !important;
}

.crudsterFieldHistoryButton svg.icon.frk {
    fill: #FFF;
}

.historyChangeRow:not(.delta) .value svg.icon.frk {
    display: none;
}

.historyChangeRow:not(.delta) .value svg.icon.frk.delta_change {
    display: inline-block;
}

.historyChangeRow.delta_true .value svg.icon.frk.delta_true,
.historyChangeRow.delta_false .value svg.icon.frk.delta_false {
    display: inline-block;
}

.historyChangeRow.delta_true .value svg.icon.frk.delta_false,
.historyChangeRow.delta_false .value svg.icon.frk.delta_true,
.historyChangeRow.delta_true .value svg.icon.frk.delta_change,
.historyChangeRow.delta_false .value svg.icon.frk.delta_change {
    display: none;
}

.historyChangeRow.delta_true div.value {
    background: rgba(0, 255, 0, 0.1);
}

.historyChangeRow.delta_true div.value>div {
    color: #006600;
}

.historyChangeRow.delta_true svg.icon.frk.delta_true {
    fill: #006600;
}

.historyChangeRow.delta_false div.value {
    background: rgba(255, 0, 0, 0.1);
}

.historyChangeRow.delta_false div.value>div {
    color: #660000;
}

.historyChangeRow.delta_false svg.icon.frk.delta_false {
    fill: #660000;
}

.historyChangeRow .action .mcui-button:not(:last-child) {
    margin-right: 5px;
}

.historyChangeRow .action .mcui-button svg.icon.frk {
    margin: 1px 0px 0px 0px;
    fill: #FFF;
    width: 16px;
    height: 16px;
}

/* CHILDREN */
.crudsterChildrenZone {
    margin-top: 20px;
}

.crudsterChildrenZone>div.title {
    padding-bottom: 10px;
    font-size: 22px;
    color: var(--highlight);
}

.crudsterChildrenZone>div.title>div.mcui-button {
    float: right;
}

.crudsterChildrenZone .div_table .actions {
    width: 0px;
    text-align: center;
}

.crudsterChildrenZone .div_table .actions>div {
    white-space: nowrap;
}

.crudsterChildrenZone .div_table .actions>div>div:not(:first-child) {
    margin-left: 10px;
}

.crudsterChildrenZone .div_table .lngPrefix {
    opacity: 0.5;
}

/* DIAlOG */
#crudsterEditor dialog,
#crudsterLayout dialog {
    border: 0px;
    border-radius: 5px;
}

#crudsterEditor dialog:focus-visible,
#crudsterLayout dialog:focus-visible {
    outline: none;
}

#crudsterEditor dialog>div.title,
#crudsterLayout dialog>div.title {
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    padding-bottom: 10px;
}

#crudsterEditor dialog>div.actions,
#crudsterLayout dialog>div.actions {
    text-align: center;
    padding: 5px;
    padding-bottom: 0px;
}

#crudsterEditor dialog>div.actions>div,
#crudsterLayout dialog>div.actions>div {
    margin: 5px;
    margin-bottom: 0px;
}