.k-body {
    width: 100dvw;
    min-width: 375px;
    height: 100dvh;
    background-color: var(--kendo-color-app-surface);
    background-image: var(--background-logo), var(--background-image);
    background-size: 33dvw auto, 100dvw 100dvh;
    
    background-position: calc(50% + (262px / 2)) 90%, left top;

    background-repeat: no-repeat, no-repeat;
    color: var(--kendo-color-on-app-surface);
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling for iOS */
    overscroll-behavior: none; /* Prevents overscrolling */
    transition: background-position ease 0.3s;
}

body.k-body:not(.k-drawer) {
    background-position: 50% 90%, left top;
}

body.k-body:has(.k-drawer-expanded) {
    background-position: calc(50% + (262px / 2)) 90%, left top;
}

body.k-body:has(.k-drawer-mini) {
    background-position: calc(50% + (60px / 2)) 90%, left top;
}

@media only screen and (max-width: 800px) {
    .k-body {
        background-color: var(--mobile-background-color);
        background-position: 50% 90%, left top;
        transition: none;
    }

    .k-drawer {
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
    }
}

b, strong {
    /*font-weight: var(--kendo-font-weight-bold);*/
    font-family: var(--kendo-font-family-bold);
}

/*a {
    color: var(--kendo-color-primary);
    text-decoration: underline;
}*/

.icon-appbar-wrapper {
    display: inline-flex;
    /*gap: 0.750rem;*/
    align-items: center;
}

.logo-icon {
    height: 64px;
}

.logo-icon-text {
    height: 64px;
    margin-left: 0.750rem;
    color: var(--kendo-color-primary);
}

@media only screen and (max-width: 800px) {

    .icon-appbar-wrapper {
        gap: 0.5rem;
    }

    .logo-icon {
        display: none;
        height: 32px;
    }

    .logo-icononly-wrapper {
        /*box-shadow: var(--modules-elevation);*/
        border-radius: var(--kendo-border-radius-full, 9999px);
        position: absolute;
    }

    .logo-icon-text {
        /*display: none;*/
        height: 32px;
        padding-inline-start: 0;
        margin-left: 0;
    }

    .toolbar-container {
        margin-bottom: 0px !important;
    }
}

.topMenu {
    width: 100%;
    height: calc(var(--appBar-height) + (var(--modules-margin) * 2));
    padding: var(--modules-margin);
}

.appBarStyle {
    background-color: var(--modules-background-color);
    width: 100%;
    height: var(--appBar-height);
    border-radius: var(--modules-rounded);
    box-shadow: var(--modules-elevation);
    padding-inline: var(--kendo-spacing-4);
    display: flex; /* Ensure the AppBar is a flex container */
    flex-wrap: nowrap; /* Prevent items from wrapping to the next line */
    justify-content: space-between; /* Optional: spread items evenly */
    align-items: center; /* Align items vertically in the center */
}

.appbar-section {
    flex: 1;
    min-width: 100px; /* Optional: Set a minimum width for sections */
}

.appbar-section-left {
    flex: 33.33%;
    overflow: hidden;
}

.appbar-section-middle {
    flex: 33.33%;
    text-align: center;
    justify-content: center;
}

.appbar-section-right {
    flex: 33.33%;
    justify-content: end;
}

.appBar-menu-button {
    display: none;
}

.appBar-searcher {
    width: 100%;
}

.breadcrumb-scroll-wrapper {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    /*-ms-overflow-style: none;*/ /* IE and Edge */
    /*scrollbar-width: none;*/ /* Firefox */
    mask-image: linear-gradient( to left, rgba(var(--r), var(--g), var(--b), 0) 0%, var(--modules-background-color) 10px, var(--modules-background-color) calc(100% - 10px), rgba(var(--r), var(--g), var(--b), 0) 100% );
    -webkit-mask-image: linear-gradient( to left, rgba(var(--r), var(--g), var(--b), 0) 0%, var(--modules-background-color) 10px, var(--modules-background-color) calc(100% - 10px), rgba(var(--r), var(--g), var(--b), 0) 100% );
}

    .breadcrumb-scroll-wrapper .k-breadcrumb {
        display: inline-flex;
    }

    .breadcrumb-scroll-wrapper::-webkit-scrollbar {
        /*display: none;*/
        height: 0px;
    }

.breadcrumb-bar-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-left: 10px;
    padding-right: 10px;
}

@media only screen and (max-width: 800px) {
    .appBarStyle {
        padding-inline: var(--kendo-spacing-1);
        flex-wrap: wrap !important;
        margin: 0 auto;
        border-radius: 0;
    }

    .appbar-section-left {
        order: 1;
        flex: 0 0 48%;
        box-sizing: border-box;
        justify-content: start;
    }

    .appbar-section-middle {
        order: 3;
        flex: 0 0 100%;
        box-sizing: border-box;
        padding-inline-end: 46px;
    }

    .appbar-section-right {
        order: 2;
        flex: 0 0 48%;
        box-sizing: border-box;
    }

    .k-combobox-popup {
        padding-inline: 10px;
    }

    .super-search-drop-down {
        width: 100dvw !important;
        /*margin-left: -40px;*/
    }

    .custom-combobox-drop-down {
        width: 100dvw !important;
        /*margin-left: -40px;*/
    }
}

.super-search-drop-down {
}

.pageTitle {
    font-size: 12pt;
    font-weight: 500;
    color: var(--kendo-color-on-app-surface);
}

.breadcrumbNavigator {
    height: 30px;
    background-color: transparent;
}

.topMenu .k-breadcrumb-last-item .k-breadcrumb-link {
    color: var(--kendo-color-primary-on-surface);
    opacity: 1;
}

.k-breadcrumb-link, .k-breadcrumb {
    color: var(--kendo-color-subtle);
}

    .k-breadcrumb-link:hover {
        color: var(--kendo-color-on-app-surface);
        background-color: inherit;
    }

.k-breadcrumb-root-link:hover {
    color: var(--kendo-color-on-app-surface);
    background-color: inherit;
}

.breadcrumbicon {
    margin-inline-end: var(--kendo-spacing-1, 0.25rem);
}

.k-breadcrumb-last-item > .k-breadcrumb-root-link {
    color: var(--kendo-color-primary-on-surface) !important;
    opacity: 1;
}
/* Hide boards on flat input fields: */
.searchBar {
    width: 100% !important;
    background-color: var(--kendo-color-surface-alt);
    max-width: 700px;
}

.combobox-header {
    height: 35px;
    padding-left: var(--kendo-spacing-2);
    padding-top: var(--kendo-spacing-2);
}

.combobox-footer {
    padding-left: 5px;
    padding-top: 5px;
}

.searchBar .k-input-button {
    display: none;
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Space between buttons */
}

.mainContent {
    width: 100%;
    height: calc(100dvh - (var(--appBar-height) + (var(--modules-margin) * 2)));
    padding: 0 var(--modules-margin) var(--modules-margin) 0;
}

.k-input-flat:focus-within, .k-input-flat:focus, .k-input-flat.k-focus, .k-list-item:focus, .k-list-optionlabel:focus, .k-list-item.k-focus, .k-focus.k-list-optionlabel {
    box-shadow: none;
}

.k-button-flat::after {
    box-shadow: none;
}

.k-button-solid-base:focus {
    box-shadow: none;
}

/* Highlight focused item in drop-downs: */
.k-list-item:focus, .k-list-optionlabel:focus, .k-list-item.k-focus, .k-focus.k-list-optionlabel {
    background: var(--kendo-color-base-subtle-active);
}

.k-list-item.k-selected {
    color: var(--kendo-color-on-app-surface);
}

    .k-list-item.k-selected:hover {
        background: var(--kendo-color-base-subtle-hover);
        color: var(--kendo-color-on-app-surface);
    }

.k-menu-group .k-item > .k-link:active, .k-menu-group .k-item > .k-link.k-active, .k-menu-group .k-item > .k-link.k-selected, .k-menu.k-context-menu .k-item > .k-link:active, .k-menu.k-context-menu .k-item > .k-link.k-active, .k-menu.k-context-menu .k-item > .k-link.k-selected {
    color: var(--kendo-color-on-app-surface);
    background-color: var(--kendo-color-base-subtle-active);
}

/*.k-list {
    border-radius: 8px;
}*/

.k-picker-solid {
    background-color: var(--kendo-color-surface-alt, #ffffff);
}

    .k-picker-solid:hover, .k-picker-solid.k-hover {
        border-color: var(--kendo-color-border-alt, rgba(0, 0, 0, 0.16));
    }

.k-input-solid:focus-within, .k-picker-solid:focus-within {
    box-shadow: none;
}

.k-breadcrumb-root-link:focus, .k-breadcrumb-root-link.k-focus {
    box-shadow: none;
}

.k-splitter {
    background-color: transparent;
    border-style: none;
}

.k-splitter-flex {
    width: calc(100% - 12px);
}

.k-splitbar {
    border-radius: 14px;
}

@media screen and (min-width: 801px) {
    .k-splitbar {
        justify-content: start;
    }
}

@media not (hover: hover) {
    .k-splitbar-horizontal {
        width: 12px;
    }

    .k-splitbar-vertical {
        height: 18px !important;
        width: calc(100% - 10px);
        margin-left: 6px;
        border-radius: 0.6rem;
    }
}

.k-splitbar-horizontal {
    background-color: transparent;
    width: 8px;
    margin-right: 8px;
    color: var(--kendo-color-border);
}

    .k-splitbar-horizontal:hover {
        background-color: transparent;
    }

.module-box {
    /*Use also: https://www.telerik.com/design-system/docs/utils/responsive-layout/flexbox-grid/*/
    height: 100%;
    margin-left: var(--modules-margin);
    border-radius: var(--modules-rounded);
    background-color: var(--modules-background-color);
    box-shadow: var(--modules-elevation);
    padding: var(--modules-padding) var(--modules-padding) var(--modules-padding) var(--modules-padding);
    position: relative;
    display: flex;
    overflow: auto;
}

    .module-box:has(> :first-child.k-tabstrip) {
        padding: var(--modules-padding) 2px 2px 2px;
    }

/* Default styling for the main content */
.mainContentModuleBox {
    flex: 0 0 auto;
    flex-grow: 1;
    width: 1%;
    height: 100%;
}

    .mainContentModuleBox > * {
        max-width: 100%; /* Prevent child from overflowing */
        box-sizing: border-box;
    }

.actionPanelModuleBox {
    flex: 0 0 auto;
    width: 350px;
    height: 100%;
}

.mobile-navigation-buttons-wrapper {
    position: absolute;
    width: calc(100% - var(--modules-margin));
}

.action-button-toggle-wrapper {
    visibility: hidden;
}

.action-button-toggle {
    height: 32px;
    width: 32px;
    /*box-shadow: var(--modules-elevation);*/
}

@media screen and (max-width: 1200px) {
    .mainContentModuleBox {
        width: 100%;
        height: 100%;
    }

    /* Popup container - initially hidden offscreen */
    .actionPanelModuleBox {
        position: absolute;
        top: 0;
        right: 0; /* Start offscreen */
        width: 100%;
        max-width: 350px;
        height: 100%;
        background-color: var(--kendo-color-base);
        border-radius: var(--modules-rounded);
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
        transition: transform 0.5s ease, opacity 0.5s ease;
        transform: translateX(100%); /* Slide out to the right */
        opacity: 1;
        z-index: 1000;
    }

        /* Show state for the popup */
        .actionPanelModuleBox.show {
            transform: translateX(0); /* Slide into view */
            opacity: 1;
        }

            .actionPanelModuleBox.show .module-box {
                margin-left: 0;
            }

    /* Add a trigger button for the popup */
    .mainContent:has(.actionPanelModuleBox) .action-button-toggle-wrapper {
        display: flex;
        visibility: visible;
        position: absolute;
        top: -30px;
        margin: var(--kendo-spacing-1);
        /*left: calc(100dvw - 40px);*/
        /*width: 46px;*/
        right: calc(var(--modules-margin) + 15px);
        z-index: 9999;
    }
}

@media screen and (max-width: 1200px) and (min-width: 801px) {
    .action-button-toggle-wrapper {
        border-radius: var(--modules-rounded);
        background-color: var(--modules-background-color);
        box-shadow: var(--modules-elevation);
        padding: var(--modules-padding) var(--modules-padding) var(--modules-padding) var(--modules-padding);
        height: calc(30px + var(--modules-padding) * 2);
        right: var(--modules-margin) !important;
        justify-content: center;
        animation: pulse-animation 5s ease-in-out 3;
    }

    .searchBar {
        min-width: 300px;
    }
}

@keyframes pulse-animation {
    0% {
        /* Start with no visible shadow */
        filter: drop-shadow(0 0 0 var(--kendo-color-primary-active));
    }

    50% {
        /* Expand to a brighter/larger shadow */
        filter: drop-shadow(0 0 3px var(--kendo-color-primary-active));
    }

    100% {
        /* Return to no visible shadow */
        filter: drop-shadow(0 0 0 var(--kendo-color-primary-active));
    }
}

.menu-button-toggle {
    visibility: hidden;
    /*box-shadow: var(--modules-elevation);*/
}

.k-drawer-container {
    height: calc(var(--content-height) + (var(--modules-padding)/2));
}

.k-drawer-start {
    background-color: var(--modules-background-color);
    border-radius: var(--modules-rounded);
    box-shadow: var(--modules-elevation);
}

.k-drawer-push .k-drawer {
    height: var(--content-height);
}

.k-drawer-content {
    height: auto;
    position: relative;
    align-self: stretch;
    padding-right: calc(var(--modules-margin)/2);
    overflow: hidden;
}

.k-drawer-expanded .k-drawer-items {
    padding: var(--modules-padding);
    transition: padding 0.3s;
}

.k-drawer-items {
    padding: 0;
    transition: padding 0.3s;
}

.k-drawer-item {
    border-radius: var(--kendo-border-radius-md);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
}

/* Smooth rotate for the chevron icon */
.drawer-chevron-icon {
    display: inline-block; /* ensure transform works */
    transform-origin: center; /* rotate around center */
    transition: transform 180ms ease; /* the animation */
}

    /* When expanded, rotate 90 degrees */
    .drawer-chevron-icon.is-expanded {
        transform: rotate(90deg);
    }

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .drawer-chevron-icon {
        transition: none;
    }
}

.main-content-wrapper {
    height: var(--content-height);
    position: relative;
}

/*.main-content-wrapper.new-page {
        animation: mymove 0.8s ease-out;
    }

@keyframes mymove {
    0% {*/
/*left: 10px;*/
/*opacity: 1.0;
    }

    25% {
        opacity: 0.0;*/
/*left: 100px;*/
/*}

    100% {
        left: 0px;
        opacity: 1;
    }
}*/

.noGap {
    gap: 0;
}

.selectList {
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 300px;
}

.grid-search-bar {
    max-width: 400px;
}

.k-row {
    height: 100%;
    width: 100%;
}

.k-button {
    text-transform: inherit !important;
}

.k-grid {
    height: 100%;
}

/* Make the grid transparent and hide borders */
.k-grid, .k-toolbar, .k-table-thead, .k-grid-content, .k-grid-footer {
    background-color: transparent;
    border-style: none;
}

.k-toolbar {
    padding-inline-start: 0;
}
/*.k-toolbar > * {
    width: 100%;
}*/

.overview-header {
    margin-bottom: 20px;
    gap: 10px;
    max-width: 1300px !important;
}

@media (max-width: 800px) {
    /* Mobile style that always displays the scrollbar and removes the padding. */
    #GridComponent > .k-toolbar {
        /* padding-inline-start: 0;*/
    }

    .tile-row {
        padding-right: 0 !important;
    }

    .module-box {
        padding: 0 0 0 0;
    }

        .module-box:has(> :first-child.k-tabstrip) {
            padding: 0;
        }

    .k-virtual-scroller {
        padding-right: 1px;
    }

    .k-grid-container {
        padding-inline: 8px;
    }

    .k-grid-content {
        overflow: scroll !important;
    }

    .appBarStyle {
        box-shadow: none;
    }

    .overview-header {
        margin-bottom: 0px;
    }
}

.tile-row:last-child {
    /*margin-right: 0;*/
}

.k-grid-header {
    background-color: transparent;
    border-color: inherit;
    border-style: none;
}

.k-grid-header-wrap, .k-grid-footer-wrap {
    border-inline-end-width: 0px !important;
}

.k-grid .k-cell-inner {
    border-bottom: none;
}

.k-grid {
    background-color: transparent;
    border: none; /* Optional: remove default grid borders */
}

    /* Style each row as a box with rounded corners and shadow */
    .k-grid tbody tr {
        background-color: transparent !important; /* Set the background color of each row */
        padding: 10px; /* Padding inside each row */
    }

    .k-grid td:first-child {
        border-top-left-radius: var(--kendo-border-radius-md);
        border-bottom-left-radius: var(--kendo-border-radius-md);
    }

    .k-grid td:last-child {
        border-top-right-radius: var(--kendo-border-radius-md);
        border-bottom-right-radius: var(--kendo-border-radius-md);
    }

.k-table-tbody .k-table-row:hover, .k-table-list .k-table-row:hover, .k-table-tbody .k-table-row.k-hover, .k-table-list .k-table-row.k-hover {
    background-color: var(--kendo-color-base-hover) !important;
}

/* Optional: Style the grid footer */
.k-grid-footer {
    background-color: transparent;
    border-top: none; /* Remove the top border of the footer */
}

.k-pager {
    background-color: transparent !important;
}

.k-grid .k-table-th, .k-grid td, .k-grid .k-table-td {
    border-inline-start-width: 0;
}

.k-window-actions:has(> .window-banner) {
    flex-direction: column;
}

.window-banner {
    /*position: absolute;
    top: 50%;*/
}

    .window-banner .note
    {
        margin-block: 0;
    }

    .window-banner .note.error {
        background-color: var(--kendo-color-error-subtle, #fcddda) !important;
    }

.k-window {
    /*border: 1px solid var(--kendo-color-border);*/
    background-color: rgb(from var(--kendo-color-surface-alt) r g b / var(--opacity));
    backdrop-filter: blur(10px);
    border: 1px solid var(--kendo-color-border-alt);
    border-radius: var(--modules-rounded);
    max-width: 100dvw;
    max-height: 100dvh;
}

    .k-window .k-button .k-svg-i-x-circle, .k-popup .k-button .k-svg-i-x-circle, .k-tooltip .k-button .k-svg-i-x-circle {
        color: var(--kendo-color-tertiary);
        background-color: var(--kendo-color-on-base);
        border-radius: 100px;
        min-width: 14px !important;
        min-height: 14px !important;
    }

    .k-window .k-svg-i-caret-alt-expand {
        color: var(--kendo-color-primary-subtle-active);
        background-color: var(--kendo-color-primary-subtle);
        border-radius: 100px;
        transform: rotate(-45deg);
        min-width: 14px !important;
        min-height: 14px !important;
    }

.k-window-content:has(.k-window-actions) {
    padding-block-end: 0;
}

.k-window-content .k-window-actions {
    margin-left: calc(var(--kendo-spacing-4, 1rem) * (-1));
    width: calc(100% + var(--kendo-spacing-4, 1rem) * 2);
    padding-block-start: var(--kendo-spacing-4, 1.0rem);
    border-width: 0;
}
/*.k-window .k-svg-i-x-circle:hover, .k-popup .k-svg-i-x-circle:hover {
        color: var(--kendo-color-tertiary-hover);
    }*/
.k-window-titlebar {
    background-color: rgb(from var(--kendo-color-surface) r g b / var(--opacity));
}

.window-no-padding .k-window-content
{
    padding-block: 0;
    padding-inline: 0;
}

.k-overlay {
    background-color: #000;
}

.k-list-container {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-top-style: none !important;
    /*margin-left: -1px;*/
    margin-top: -1px;
    /*transition: border-top-left-radius ease 0.3s, border-top-right-radius ease 0.3s, border-top-style ease 0.3s;*/
}

.k-popup {
    background-color: rgb(from var(--kendo-color-surface-alt) r g b / var(--opacity));
    backdrop-filter: blur(10px);
    border: 1px solid var(--kendo-color-border-alt);
    border-radius: var(--modules-rounded);
    max-width: 100dvw;
    max-height: 100dvh;
}

    .k-popup:has(.popup-close-button), .k-tooltip:has(.popup-close-button) {
        padding-top: 26px;
        background-repeat: no-repeat;
        background-image: linear-gradient(to right, rgb(from var(--kendo-color-surface) r g b / var(--opacity)), rgb(from var(--kendo-color-surface) r g b / var(--opacity))), linear-gradient(to right, rgb(from var(--kendo-color-surface-alt) r g b / var(--opacity)), rgb(from var(--kendo-color-surface-alt) r g b / var(--opacity)));
        background-position: 0 0, 0 26px;
        background-size: 100% 26px, 100% calc(100% - 26px);
    }

    .k-popup .k-list {
        background-color: transparent;
    }

.k-tooltip {
    background-color: rgb(from var(--kendo-color-surface-alt) r g b / var(--opacity));
    backdrop-filter: blur(10px);
    color: var(--kendo-color-on-app-surface);
    border: 1px solid var(--kendo-color-border-alt);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
    max-width: 100dvw;
    max-height: 100dvh;
    border-radius: var(--modules-rounded);
}

    .k-tooltip .k-callout {
        color: var(--kendo-color-secondary-subtle);
    }

.k-popover-callout.k-callout-n {
    background-color: transparent;
    width: 0;
    height: 0;
    top: -7px !important;
    border-top-style: none;
    border-left: 5px solid transparent; /* half width */
    border-right: 5px solid transparent; /* half width */
    border-bottom: 6px solid var(--kendo-color-secondary-subtle);
    ; /* height + color */
    transform: none;
}

.k-popover-callout.k-callout-e {
    background-color: transparent;
    width: 0;
    height: 0;
    right: -7px;
    border-right-style: none;
    border-top: 5px solid transparent; /* half height */
    border-bottom: 5px solid transparent; /* half height */
    border-left: 6px solid var(--kendo-color-secondary-subtle); /* width + color */
    transform: none;
    top: calc(50% - 5px); /* half height */
}

.popup-close-button {
    top: 2px; /*-15,-7*/
    right: 5px;
    position: absolute;
    /*margin: -10px;
    margin-top: -10px;*/
    color: var(--kendo-color-tertiary);
    z-index: 1;
}

.popup-header-text {
    top: 2px;
    left: 5px;
    position: absolute;
}

    .popup-header-text .k-icon {
        padding-top: 2px;
    }

.k-tooltip .popup-close-button {
    top: 3px;
}

.k-popover .popup-close-button {
    top: -24px;
}

.popup-close-button > span {
    background-color: var(--kendo-color-on-base);
    border-radius: 100px;
}

    .popup-close-button > span:hover {
        color: var(--kendo-color-tertiary-hover);
    }

.k-popover-header {
    border-style: none;
    padding: 0 0 0 var(--kendo-spacing-4, 1rem);
    margin-top: -23px;
}

.appBar-searcher .k-input-solid {
    transition: border-radius ease 0.3s, border-color linear 0.3s;
}

body:has(.k-list) .appBar-searcher .k-input-solid:focus-within {
    box-shadow: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    /*border-bottom-color: rgb(from var(--kendo-color-surface-alt) r g b / var(--opacity));*/
    /*transition: border-bottom-left-radius ease 0.5s, border-bottom-right-radius ease 0.5s;*/
    /*background-color: var(--kendo-color-base-active);*/
    /*transition: border-radius ease 0.3s;*/
    /*transition-delay: 0.3s;*/
}

.k-window-titlebar {
    border-top-left-radius: var(--modules-rounded);
    border-top-right-radius: var(--modules-rounded);
}

.k-window-title:has(.window-title-icon) {
    padding-block: 0;
    margin-left: -2px;
}
/*.k-grid .k-grid-header {
    border-inline-style: solid !important;
    border-inline-width: 1px !important;
}*/
.k-grid-content {
    overflow-y: auto;
}

.k-card {
    /*background-color: var(--modules-background-color);*/
    background-color: rgb(from var(--kendo-color-surface-alt) r g b / var(--opacity));
    backdrop-filter: blur(10px);
    box-shadow: var(--modules-elevation);
}

.k-grid .k-card-body {
    max-height: 63px;
}

.k-card-actions {
    flex-wrap: wrap;
    gap: 0;
}

.k-loader-container-overlay {
    background-color: var(--modules-background-color);
}

::-webkit-scrollbar {
    width: 7px;
    margin-left: 1px;
    height: var(--modules-padding);
}

::-webkit-scrollbar-track {
    margin-top: calc(var(--modules-rounded, 0.5rem) / 2);
}

::-webkit-scrollbar-thumb {
    /*background: var(--kendo-color-primary);*/
    background: var(--kendo-color-border);
    border-radius: 14px;
}

    ::-webkit-scrollbar-thumb:hover {
        /*background: var(--kendo-color-primary-hover);*/
        background: var(--kendo-color-border-alt)
    }

::-webkit-scrollbar-corner {
    background: none; /* Remove the white corner */
}

/* Show and hide scroll bar on mouse over https://codepen.io/cassiecodes/pen/YWZGWe */
.k-grid-content {
    overflow: auto;
    visibility: hidden;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling for iOS */
    overscroll-behavior: none; /* Prevents overscrolling */
}

.right-align {
    text-align: right !important;
}

.center-align {
    text-align: center !important;
}

.k-table-tbody,
.k-grid-container:hover > .k-grid-content {
    visibility: visible;
}

.grid-center-toolbar .k-toolbar-items {
    justify-content: center;
}

.grid-allow-overflow td {
    overflow: auto !important;
    text-overflow: unset !important;
}

/* Always show scrollbar on touch devices (iPads, mobile, etc.) */
@media (hover: none) {
    .k-grid-content {
        visibility: visible;
    }
}

.settings ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

    .settings ul li {
        margin: 0;
        padding: 10px 20px 10px 20px;
        min-height: 28px;
        line-height: 28px;
        vertical-align: middle;
    }

        .settings ul li:not(:first-child) {
            border-top: 1px solid var(--kendo-color-border);
        }

.settings {
    min-width: 220px;
    padding: 0;
}

.card-border {
    border-top: 1px var(--kendo-color-border, rgba(0, 0, 0, 0.08)) solid;
}

a {
    text-decoration: none;
    color: inherit;
}

    a:hover {
        color: inherit;
    }

.k-tabstrip-content:focus, .k-tabstrip-content.k-focus, .k-tabstrip > .k-content:focus, .k-tabstrip > .k-content.k-focus {
    outline-style: none;
}

/*.k-tabstrip-top > .k-tabstrip-items-wrapper .k-tabstrip-item:active,*/
.k-tabstrip-top > .k-tabstrip-items-wrapper .k-tabstrip-item.k-active,
.k-tabstrip-item .k-active {
    border-bottom-color: var(--modules-background-color);
    border-left-width: 1px;
    border-right-width: 1px;
}

/*.k-tabstrip-items-wrapper .k-tabstrip-item:active {
    border-bottom-color: var(--modules-background-color);
    background-color: var(--modules-background-color);
}*/


/*.k-tabstrip-items-wrapper .k-tabstrip-item:active,*/ .k-tabstrip-items-wrapper .k-tabstrip-item.k-active, .k-tabstrip-items-wrapper .k-tabstrip-item.k-selected {
    background-color: var(--modules-background-color);
}

/*.k-tabstrip-top > .k-tabstrip-items-wrapper {
    border-bottom-width: 0;
}*/

.k-tabstrip-top > .k-content, .k-tabstrip-top > .k-tabstrip-content {
    border-top-width: 1px !important;
    /*border-radius: var(--kendo-border-radius-md, 0.25rem);*/
}

.k-tabstrip-content, .k-tabstrip > .k-content {
    border-style: none;
    background-color: var(--modules-background-color);
}

.k-tabstrip-items-wrapper .k-tabstrip-item:focus, .k-tabstrip-items-wrapper .k-tabstrip-item.k-focus {
    box-shadow: none;
}

.k-tabstrip-top > .k-tabstrip-items-wrapper .k-tabstrip-item {
    border-bottom-width: 1px;
    border-bottom-color: var(--kendo-color-border);
}

.k-tabstrip-items {
    margin-bottom: -2px;
}

    .k-tabstrip-items .k-link {
        margin-bottom: 2px;
    }

.k-validation-summary {
    padding-top: calc(var(--kendo-line-height, normal)* var(--kendo-font-size, inherit));
}


.k-dialog {
    max-width: 600px;
}

.copy-to-clipboard {
    cursor: pointer;
    margin-left: 5px;
    margin-right: 5px;
    /*width: var(--kendo-font-size);*/
    /*height: var(--kendo-font-size);*/
    /*display: inline-flex;*/
    /*justify-content: center;*/
    /*border-radius: 50%;*/
    filter: drop-shadow();
    transition: filter 0.5s ease-out;
    position: relative;
}

    .copy-to-clipboard.show-title:after {
        content: attr(copied);
        background-color: var(--kendo-color-primary-subtle);
        color: var(--kendo-color-primary-on-subtle);
        font-size: var(--kendo-font-size-xs);
        border-color: var(--kendo-color-border, rgba(0, 0, 0, 0.08));
        border-style: solid;
        border-width: 1px;
        box-sizing: border-box;
        padding: 2px 4px 2px 4px;
        left: 50%;
        border-radius: var(--kendo-border-radius-md);
        position: absolute;
        box-shadow: var(--modules-elevation);
        z-index: 10;
    }

.copy-to-clipboard-text {
    margin-left: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.copy-to-clipboard-render-fragment {
    margin-inline: 5px;
    display: inline;
    align-items: center;
}

.no-inline-margin .copy-to-clipboard-render-fragment {
    margin-left: 0;
}

.copy-to-clipboard-render-fragment .copy-to-clipboard-icon
{
    margin-left: 5px;
}

.copy-to-clipboard-icon {
    filter: drop-shadow();
    transition: filter 0.5s ease-out;
    width: 12px;
    height: 12px;
    min-width: 12px;
    min-height: 12px;
    color: var(--kendo-color-primary) !important;
}

.fade-out {
    filter: drop-shadow();
    transition: filter 0.5s ease-out;
}

.fadein > .copy-to-clipboard-icon, .fade-in {
    filter: drop-shadow(0 0 3px var(--kendo-color-primary-active));
    transition: filter 0.5s ease-in;
}

.copy-to-clipboard-empty {
    width: 23px;
}

.message-box {
    padding-top: calc(var(--kendo-line-height, normal)* var(--kendo-font-size, inherit));
    padding-bottom: calc(var(--kendo-line-height, normal)* var(--kendo-font-size, inherit));
}

.filter-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem; /* optional spacing between rows */
}

.filter-label {
    width: 160px; /* same as your original inline style */
    margin-right: 1rem; /* some spacing before the dropdown */
}

/* When screen is 800px wide or less, stack label above the dropdown */
@media (max-width: 800px) {
    .filter-item {
        flex-direction: column;
        align-items: flex-start; /* label and dropdown left-aligned */
    }

    .filter-label {
        width: auto; /* let it size naturally */
        margin-right: 0;
        margin-bottom: 0.25rem; /* add a little space under the label */
    }

    .grid-chip-list {
        display: none;
    }
}

.aiSuggested {
    color: var(--kendo-color-primary);
    font-weight: bold;
    display: inline-flex;
    position: relative;
    top: 2px;
}

.icon-next-to-text:has(> .highlight) {
    gap: 0;
}

.highlight {
    background-color: var(--kendo-color-tertiary); /* Highlight color */
    color: var(--kendo-color-on-tertiary);
    font-weight: 700;
    font-family: var(--kendo-font-family-bold);
    padding-inline-end: 0.125rem
}

    .highlight.primary {
        background-color: var(--kendo-color-primary);
        color: var(--kendo-color-on-primary);
        margin-right: 0px;
    }

.rotated {
    transform: rotate(180deg);
}

.form-width {
    width: 50%;
    min-width: 800px;
}


    .form-width .form-body > * {
        width: 80%;
    }

@media only screen and (max-width: 1200px) {
    .form-width {
        width: 80%;
        min-width: auto;
    }

        .form-width .form-body > * {
            width: 95%;
        }
}

@media only screen and (max-width: 800px) {
    .form-width {
        width: 100%;
    }

        .form-width .form-body > * {
            width: 95%;
        }
}

.input-width {
    width: 100%;
    max-height: 300px;
}

.form-width .k-validation-summary {
    margin-top: calc(var(--kendo-line-height, normal)* var(--kendo-font-size, inherit));
    padding-top: calc(var(--kendo-line-height, normal)* var(--kendo-font-size, inherit));
}

.form-body > :last-child {
    margin-bottom: calc(var(--kendo-line-height, normal)* var(--kendo-font-size, inherit));
}

.form-body > * {
    margin-top: 10px;
}

.input-form-width {
    width: 100%;
    max-width: 1000px;
}

.single-input-form {
    max-width: 500px;
    padding-top: var(--modules-padding);
    padding-bottom: var(--modules-padding);
}

/*.k-tabstrip-content{
    width: 100%;
    height: 100%;
}*/

.k-tabstrip-content {
    padding-block-start: calc(1rem - 10px);
}

.tab-content {
    height: 100%;
    max-width: 1500px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    grid-template-rows: auto 1fr;
}

.tab-content-inner-top {
    /*padding-top: 10px;
    padding-bottom: 10px;*/
}

    .tab-content-inner-top.padding {
        padding-top: 10px
    }

.tab-content-inner-bottom {
    height: 100%;
    padding-top: 10px;
    overflow: auto;
    mask-image: linear-gradient( to bottom, rgba(var(--r), var(--g), var(--b), 0) 0%, var(--modules-background-color) 10px, var(--modules-background-color) calc(100% - 10px), rgba(var(--r), var(--g), var(--b), 0) 100% );
    -webkit-mask-image: linear-gradient( to bottom, rgba(var(--r), var(--g), var(--b), 0) 0%, var(--modules-background-color) 10px, var(--modules-background-color) calc(100% - 10px), rgba(var(--r), var(--g), var(--b), 0) 100% );
}

@keyframes text-fade {
    0% {
        color: var(--kendo-color-primary-on-surface);
    }

    100% {
        color: var(--kendo-color-on-app-surface);
    }
}

.log-row-highlight {
    animation: text-fade 3s ease-in 1;
}

    .log-row-highlight:not(.log-row-highlight) {
    }

.k-grid tr.custom-ellipsis .k-table-td {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.grid-view-card-icon {
    width: 64px;
    height: 64px;
}

.hightlight-element-base, .icon-background, .hightlight-element {
    background-color: var(--kendo-color-surface);
    border-radius: var(--kendo-border-radius-md, 0.25rem);
    align-items: center;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}

.hightlight-element {
    border: 1px solid var(--kendo-color-border, rgba(0, 0, 0, 0.08));
}

.grid-filter-header {
    display: flex;
    margin-left: 3px;
    width: calc(100% - 6px) !important;
    border-radius: 0.6rem;
    padding: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.grid-filter-header-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
}

    .grid-filter-header-icon .k-button,
    .grid-filter-header-icon .k-button-icon,
    .grid-filter-header-icon svg {
        width: 100% !important;
        height: 100% !important;
    }

.window-title-icon {
    margin-left: 2px;
    margin-bottom: 3px;
}

.icon-background {
    border-radius: 0.7rem;
    padding: 0.5rem;
    display: flex;
    width: 64px;
    height: 64px;
}

    .icon-background.xlarge {
        width: 128px;
        height: 128px;
        border-radius: 0.6rem;
        padding: 0.3rem;
    }

    .icon-background.large {
        width: 64px;
        height: 64px;
        min-width: 64px;
        min-height: 64px;
        border-radius: 0.6rem;
        padding: 0.3rem;
    }

    .icon-background.medium {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
        border-radius: 0.6rem;
        padding: 0.3rem;
    }

    .icon-background.small {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
        border-radius: 0.6rem;
        padding: 0.3rem;
    }

    .icon-background.xsmall {
        width: 20px;
        min-width: 20px;
        min-height: 20px;
        height: 20px;
        border-radius: 0.3rem;
        padding: 0.2rem;
    }


    .icon-background img, .icon-background .k-svg-icon {
        width: 100%;
        height: 100%;
        border-radius: 0.3rem;
    }

    .icon-background.xsmall .k-svg-icon
    {
        width: 12px;
        height: 12px;
    }

    .icon-background .round,
    .draggable-grid-item-icon .round {
        border-radius: 50%;
    }


.k-chart svg > g > path:nth-child(1) {
    fill: transparent !important;
    fill-opacity: 1 !important;
}

.k-column-title {
    color: var(--kendo-color-subtle, #666666);
    font-size: var(--kendo-font-size-sm, inherit);
    width: 100%;
}

.k-column-title-template-container {
    display: flex;
    flex-wrap: nowrap;
    text-align: left;
    width: 100%;
}

.k-column-title-template-text {
    display: flex;
    box-sizing: border-box;
    justify-content: left;
    vertical-align: bottom;
}

.k-column-title-template-resize {
    display: flex;
    box-sizing: border-box;
    justify-content: right;
    padding-inline: 15px;
}

.k-column-title-template-resize-button {
    height: 14px;
    width: 14px;
    color: var(--kendo-color-base-subtle);
}

    .k-column-title-template-resize-button:hover {
        color: var(--kendo-color-base-subtle-hover);
    }

.k-grid .k-cell-inner > .k-link {
    cursor: inherit;
}

.tab-content-inner-top .icon-column,
.tab-content-inner-top .content-column,
.tab-content-inner-bottom .icon-column,
.tab-content-inner-bottom .content-column {
    padding: 0;
}

.icon-column {
    /*flex: 30%;
    max-width: 30%;*/
    min-width: 30%;
    flex-shrink: 1;
    padding: 10px;
    box-sizing: border-box;
}

.content-column {
    /*flex: 70%;*/
    /*max-width: 70%;*/
    flex-grow: 1;
    padding: 10px;
    box-sizing: border-box;
}

/*@media (max-width: 1299px) {
    .icon-column {
        flex: 50%;
        max-width: 50%;
    }

    .content-column {
        flex: 50%;
        max-width: 50%;
    }
}*/



@media (max-width: 800px) {
    .icon-column {
        flex: 100%;
        max-width: 100%;
    }

    .content-column {
        flex: 100%;
        max-width: 100%;
    }
}

.table-container {
    align-items: center;
    display: flex;
}

.icon-column > .table-container {
    /*display: grid;*/
    column-gap: 10px;
    grid-template-columns: auto 1fr;
    overflow: hidden;
    mask-image: linear-gradient(to left, rgba(var(--r), var(--g), var(--b), 0) 0%, var(--modules-background-color) 10px);
    -webkit-mask-image: linear-gradient(to left, rgba(var(--r), var(--g), var(--b), 0) 0%, var(--modules-background-color) 10px);
}

.table-container > .item1 {
    grid-row-start: 1;
    grid-row-end: 3;
    padding: 5px;
}

.inline-link-button {
    padding-inline: 0;
}

    .inline-link-button > .k-button-text {
        padding-bottom: 2px;
    }

.selected-DropDownButtonItem {
    background: var(--kendo-color-base-subtle-active);
    /*color: var(--kendo-color-on-primary) !important;*/
}

    .selected-DropDownButtonItem .k-link:hover {
        /*color: var(--kendo-color-on-primary) !important;*/
        background-color: var(--kendo-color-base-subtle-hover) !important;
    }

.draggable-grid-item-button {
    order: 0;
    margin-left: 0;
    padding-inline-end: var(--kendo-spacing-2, 0.5rem);
}

.draggable-grid-item-icon {
    order: 1;
    padding-inline-end: var(--kendo-spacing-2, 0.5rem);
    background-color: var(--kendo-color-surface);
    align-items: center;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
    width: 42px;
    min-width: 42px;
    height: 42px;
    border-radius: 0.6rem;
    padding: 0.3rem;
}

    .draggable-grid-item-icon img, .draggable-grid-item-icon .k-svg-icon {
        width: 100%;
        height: 100%;
        border-radius: 0.3rem;
    }

.draggable-grid-item-text {
    padding-inline: var(--kendo-spacing-2, 0.25rem);
    order: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

    .draggable-grid-item-text > * {
        flex: 100%;
    }

.draggable-grid-item-button-replacement {
    width: 30px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*.draggable-grid-item-button .k-icon-button {
        margin-top: -2px;
    }*/
/*
@media (max-width: 1200px) {
    .draggable-grid-item-icon {
        
    }

    .draggable-grid-item-text {
        
    }

    .draggable-grid-item-button {
        
        
    }
}*/
/*.k-tooltip {
    background-color: var(--kendo-color-secondary-subtle);
    color: var(--kendo-color-secondary-on-subtle);
}

    .k-tooltip .k-callout {
        color: var(--kendo-color-secondary-subtle);
    }*/



/*.custom-tooltip .k-tooltip {
    background-color: var(--kendo-color-surface-alt);
    opacity: 0.9;
    color: var(--kendo-color-on-app-surface);
    border: 1px solid var(--kendo-color-border-alt);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);*/
/*font-size: 13px;*/
/*font-weight: 100;
}

    .custom-tooltip .k-tooltip .k-callout {
        color: var(--kendo-color-border-alt);
    }*/

.custom-tooltip .k-callout-n {
    top: -13px;
}

.custom-tooltip .k-tooltip {
    max-width: 500px;
    line-height: 22px;
}

.grid-filter-wrapper {
    width: 100%;
    display: block;
}

.grid-filter-searchbox {
    width: 100%;
    text-align: center;
}

    .grid-filter-searchbox .k-input-inner::placeholder {
        font-size: var(--kendo-font-size-sm);
    }

.grid-filter-applied-search-filters {
    width: 100%;
    margin-top: 5px;
    text-align: left;
}

/*.{*/
/*.k-grid-container {
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 40px, black calc(100% - 40px), rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 40px, black calc(100% - 40px), rgba(0, 0, 0, 0) 100%);
}*/

.k-grid-container::before,
.k-grid-container::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 40px; /* Adjust the fade height */
    pointer-events: none;
    opacity: 0; /* Initially hidden */
    transition: opacity 0.3s ease-in-out;
    z-index: 10000;
}

.k-grid-container::before {
    top: 0;
    background: linear-gradient(to bottom, var(--modules-background-color), rgba(var(--r), var(--g), var(--b), 0));
}

.k-grid-container::after {
    bottom: 0;
    background: linear-gradient(to top, var(--modules-background-color), rgba(var(--r), var(--g), var(--b), 0));
}

.k-grid-container.fade-top::before {
    opacity: 1;
}

.k-grid-container.fade-bottom::after {
    opacity: 1;
}

.save-button-floating {
    visibility: hidden;
    position: absolute;
    right: calc(50% - 16px);
    bottom: 3.25rem;
    z-index: 100;
    width: 32px;
    height: 32px;
    border-radius: 100%;
    background-color: var(--kendo-color-primary);
}

    .save-button-floating > .k-button {
        color: var(--kendo-color-on-primary);
    }

@media only screen and (max-width: 800px) {
    .save-button-floating {
        visibility: visible;
    }
}

.scroll-to-top {
    visibility: hidden;
    cursor: pointer;
    color: var(--kendo-color-primary);
    right: 1.25rem;
    bottom: 1.25rem;
}

    .scroll-to-top.show {
        visibility: visible;
        -webkit-animation: fadein 0.5s;
        animation: fadein 0.5s;
    }

    .scroll-to-top.hide {
        visibility: visible;
        -webkit-animation:, fadeout 0.5s;
        animation: fadeout 0.5s;
    }

    .scroll-to-top:hover {
        color: var(--kendo-color-primary-hover);
    }

/* Animations to fade the scroll to top button in and out */
@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 1.25rem;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 1.25rem;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 1.25rem;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 1.25rem;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

.toolbar-template-wrapper {
    display: block;
    width: 100%;
}

    .toolbar-template-wrapper > .toolbar-template-text {
        display: flex;
        align-items: center;
        justify-content: center;
        /*padding-inline: var(--kendo-spacing-1, 0.25rem);*/
    }


.swc-subtitle-text > .k-button-md {
    padding-block: 0;
    padding-inline: 0;
    font-size: inherit;
    line-height: inherit;
}

.spacer-between-group-search {
    height: 10px;
}

.xs-icon {
    width: 12px;
    height: 12px;
    margin-top: 2px;
}

.icon-next-to-text {
    display: flex;
    gap: 5px;
    align-items: center;
}

    .icon-next-to-text > span svg {
        margin-top: -2px;
    }

    .icon-next-to-text > .k-svg-icon {
        min-width: 16px;
    }

.align-button-text > span svg {
    margin-top: -2px;
}

.textbox-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

    .textbox-container .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay-background-color);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 100;
        cursor: wait;
    }

    .textbox-container .interactable-overlay {
        position: absolute;
        right: 8px;
        bottom: 8px;
        z-index: 99;
    }


@media only screen and (max-width: 800px) {
    .mobile-navigation-buttons-wrapper {
        width: 100%;
    }

    .action-button-toggle-wrapper {
        right: 0 !important;
        /*top: calc(-1 * (var(--appBar-height) - 55px)) !important;*/
        top: -45px !important;
    }

    .menu-button-toggle {
        /*display: block;*/
        visibility: visible;
        height: 32px;
        width: 32px;
    }

    .appBar-menu-button {
        display: flex;
    }

    .topMenu {
        padding: 0 !important;
        height: var(--appBar-height) !important;
    }

    .main-content-wrapper {
        height: var(--content-height-mobile);
    }

    .mainContent {
        height: var(--content-height-mobile);
        padding: 0 !important;
    }

    .module-box {
        margin-left: 0;
    }

    .k-drawer-content {
        padding-right: 0 !important;
    }

    .k-drawer-container {
        height: var(--content-height-mobile);
    }

    /*.searchBar {
        width: calc(100% - var(--modules-padding)) !important;
    }*/

    input,
    textarea {
        font-size: 16px !important;
    }

    .k-body {
        font-size: var(--kendo-font-size-lg) !important;
    }

    .k-list-item {
        font-size: var(--kendo-font-size-lg) !important;
    }

    .k-drawer-push .k-drawer {
        height: var(--content-height-mobile) !important;
    }

    .module-box {
        border-radius: 0;
        box-shadow: none;
    }

    .k-drawer-start {
        border-radius: 0;
        box-shadow: none;
    }

    .current-user-avatar {
        padding-left: 5px;
        padding-right: 0;
    }

    .appBarStyle {
        padding-inline: var(--kendo-spacing-1);
        flex-wrap: wrap !important;
        margin: 0 auto;
        border-radius: 0;
    }

    .appbar-section-left {
        order: 1;
        flex: 0 0 48%;
        box-sizing: border-box;
        justify-content: start;
    }

    .appbar-section-middle {
        order: 3;
        flex: 0 0 100%;
        box-sizing: border-box;
    }

    .appbar-section-right {
        order: 2;
        flex: 0 0 48%;
        box-sizing: border-box;
    }

    .k-combobox-popup {
        padding-inline: 10px;
    }

    .super-search-drop-down {
        width: 100dvw !important;
        /*margin-left: -40px;*/
    }

    .custom-combobox-drop-down {
        width: 100dvw !important;
        /*margin-left: -40px;*/
    }

    .breadcrumb-bar-wrapper {
        display: none;
    }
}

@media only screen and (min-width: 801px) {
    .k-drawer-start {
        border-inline-end-width: 0px !important;
    }
}

.drop-down-offset {
    margin-left: -188px;
}

.filter-drop-down {
    width: 200px;
}

@media only screen and (max-width: 800px) {
    /*  .k-body {
        min-height: 600px;
    }*/

    .topMenu {
        position: sticky;
        top: 0;
        z-index: 1100;
        background-color: var(--kendo-color-surface) !important;
        border-radius: var(--kendo-border-radius-md, 0.25rem);
        align-items: center;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
    }

    .k-appbar {
        padding-block: 0;
    }

    .appBar-searcher:not(:has(.center-screen)) {
        display: none;
    }

    .appBar-searcher:has(.center-screen) .center-screen {
        top: 30%;
        left: 50%;
    }

    .appbar-section-middle {
        order: 1;
        flex: 0 0 30%;
        box-sizing: border-box;
        padding-inline: 0;
        justify-content: start;
    }

    .appbar-section-left {
        order: 2;
        flex: 0 0 30%;
        justify-content: center;
        /*position: absolute;
        left: 50%;
        transform: translate(-50%, 0);*/
    }

    .appbar-section-right {
        order: 3;
        flex: 0 0 30%;
        box-sizing: border-box;
        padding-inline-end: 5px;
        transition: padding-inline-end 0.5s;
    }

    .k-body:has(.actionPanelModuleBox) .appbar-section-right {
        padding-inline-end: 50px;
        transition: padding-inline-end 0.5s;
    }

    .theme-chooser {
        position: absolute;
        right: 88px;
        opacity: 1;
        transition: opacity 0.2s, right 0.5s;
    }

    .theme-chooser-fade {
        opacity: 0;
        right: 133px;
        transition: opacity 0.2s, right 0.5s;
    }

    .mainContent:has(.actionPanelModuleBox) .action-button-toggle-wrapper {
        left: calc(100dvw - 46px);
        animation-name: action-button-fade;
        animation-duration: 0.3s;
        animation-direction: reverse;
    }



    @keyframes action-button-fade {
        0% {
            opacity: 1;
        }

        100% {
            opacity: 0;
        }
    }

    .actionPanelModuleBox {
        background-color: transparent;
    }

        .actionPanelModuleBox .module-box {
            background-color: rgb(from var(--kendo-color-surface-alt) r g b / var(--opacity));
            backdrop-filter: blur(10px);
        }

    .filter-drop-down {
        width: 100%;
    }

    .drop-down-offset {
        margin-left: 10px;
    }
    /*   .appbar-section-middle
    {
        display: none !important;
    }*/

    /*.menu-button-toggle {*/
    /*position: sticky;*/
    /*top: -30px;
    }*/
}

.hamburger {
    width: 32px;
    height: 32px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .hamburger .top {
        stroke-dasharray: 40 121;
    }

    .hamburger .bottom {
        stroke-dasharray: 40 121;
    }

.k-body:has(.k-drawer-expanded) .hamburgerRotate {
    transform: rotate(45deg);
}

.k-body:has(.k-drawer-expanded) .hamburger .top {
    stroke-dashoffset: -68px;
}

.k-body:has(.k-drawer-expanded) .hamburger .bottom {
    stroke-dashoffset: -68px;
}

.line {
    fill: none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke: #fff;
    stroke-width: 8.5;
    stroke-linecap: round;
}

.k-svg-i-chevron-double-right {
    animation-name: chevron-right-rotate;
    animation-duration: 0.3s;
}

.rotate-right {
    animation-name: chevron-right-rotate;
    animation-duration: 0.5s;
}

.rotate-left {
    animation-name: chevron-left-rotate;
    animation-duration: 0.5s;
}

@keyframes chevron-right-rotate {
    from {
        transform: rotate(180deg);
    }

    to {
        transform: rotate(0deg);
    }
}

.k-svg-i-chevron-double-left {
    animation-name: chevron-left-rotate;
    animation-duration: 0.3s;
}

@keyframes chevron-left-rotate {
    from {
        transform: rotate(-180deg);
    }

    to {
        transform: rotate(0deg);
    }
}

.info-bubble {
    margin-left: 5px;
    margin-right: 1px;
}

    .info-bubble svg {
        width: 16px;
        height: 16px;
    }

.info-bubble-tooltip {
    max-width: 500px;
    max-height: 300px;
    padding: 10px;
}

.password input {
    -webkit-text-security: disc;
    -mox-text-security: disc;
}

.floating-label {
    flex-direction: row;
    align-items: center;
    color: var(--kendo-color-subtle, #666666);
}

.k-floating-label {
    color: var(--kendo-color-subtle, #666666);
}

.scheduleMembership {
    cursor: pointer;
}

    .scheduleMembership svg {
        height: 14px;
    }

.scheduleApplied {
    cursor: pointer;
    font-size: 12px;
    color: var(--kendo-color-primary);
}

    .scheduleApplied svg {
        height: 14px;
    }

    .scheduleApplied label {
        cursor: pointer;
        padding-top: 2px;
    }


.show-on-drag {
    display: none;
}

.hide-on-drag {
    display: inherit;
}

.file-drag-hover {
    position: relative;
}

    .file-drag-hover .module-box {
        /*border-radius: var(--kendo-border-radius-md, 0.25rem);
    border: 4px dotted;
    border-color: var(--kendo-color-on-app-surface);*/
    }

        .file-drag-hover .module-box::after,
        .drop-zone.file-drag-hover::after {
            content: "Drop files here";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgb(from var(--kendo-color-surface) r g b / var(--opacity));
            backdrop-filter: blur(5px);
            color: var(--kendo-color-primary-on-surface);
            font-size: 1.5rem;
            font-weight: bold;
            display: flex;
            justify-content: center;
            align-items: center;
            pointer-events: none;
            z-index: 10;
            border-radius: var(--modules-rounded);
            border: 4px dotted;
            border-color: var(--kendo-color-border-alt);
        }

    .file-drag-hover .show-on-drag {
        display: inherit !important;
    }

    .file-drag-hover .hide-on-drag {
        display: none !important;
    }

/*.k-external-dropzone-hover .k-icon,
.k-external-dropzone-hover .k-dropzone-icon {
    color: inherit;
}*/

.text-spacer {
    margin: 5px 10px;
}

.collapsible-container {
    overflow-x: hidden;
    overflow-y: auto;
    transition: max-height 1.0s ease;
    max-height: 500px;
}

    /* Collapsed state: effectively invisible height */
    .collapsible-container.collapsed {
        max-height: 0;
    }

@media only screen and (max-width: 800px) {
    .collapsible-container.collapsed-mobile {
        max-height: 0;
    }
}

@media (max-width: 1299px) {
    .collapsible-container.collapsed-1299 {
        max-height: 0;
        padding: 0;
    }
}

.center-content {
    width: 100%;
    display: flex;
    justify-content: center;
}

.k-checkbox-wrap {
    top: 1px;
}

.k-table-row .k-checkbox-wrap {
    top: 0;
}

.domain-selector-textbox .k-input-inner {
    width: 25%;
}

.domain-selector-textbox .k-input-suffix-horizontal {
    width: 75%;
}

.domain-selector {
    width: calc(100% - 20px);
    min-width: 200px;
    box-shadow: none !important;
}

.button-width {
    width: 150px;
}

.k-upload-button-wrap {
    display: none;
}

.k-upload-files {
    display: none;
}

.hidden {
    display: none;
}

.profile-picture-container {
    display: flex;
    align-items: end;
}

.profile-picture > div > span {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.profile-picture-flex-item {
    padding-bottom: 0;
    padding-top: 15px;
}

.button-clear-profile-picture {
    width: 100%;
    justify-content: stretch;
    height: 30px;
}

.table-top-align td {
    vertical-align: top;
    padding: 5px;
}

.button-hover-effect:hover, .child-hover-effect:hover > :first-child {
    background-color: var(--kendo-color-base-hover);
}

.property-updated {
    color: var(--kendo-color-info, #0058e9);
}

.pointer {
    cursor: pointer;
}

.k-breadcrumb-link:focus, .k-breadcrumb-link.k-focus {
    color: inherit;
    box-shadow: none;
}

.k-card .k-card-header:last-child {
    border-style: none;
}

.primary-devices {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .primary-devices > * {
        flex: 1 1 40%;
    }

    .primary-devices .k-card:hover {
        background-color: var(--kendo-color-base-hover);
    }

.k-button-link-base:focus, .k-button-link-base.k-focus {
    box-shadow: none;
}

/* Set a custom Switch background in indeterminate state. */
span.switch-indeterminate .k-switch-track {
    background-color: var(--kendo-color-warning);
}

/* Hide Switch labels */
/*span.switch-indeterminate .k-switch-label-on,
span.switch-indeterminate .k-switch-label-off {
    display: none;
}*/

/* Center the Switch thumb */
span.switch-indeterminate .k-switch-thumb {
    transform: translate(0, -50%);
}

.center-align-on-top {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@-webkit-keyframes fadeIn-in-place {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn-in-place {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in-in-place {
    -webkit-animation: fadeIn-in-place 0.3s ease-in-out;
    animation: fadeIn-in-place 0.3s ease-in-out;
}

@-webkit-keyframes slow-fade-out {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes slow-fade-out {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.slow-fade-out {
    -webkit-animation: slow-fade-out 10.0s ease-out;
    animation: slow-fade-out 10.0s ease-out;
}

.status-tooltip {
    max-width: 500px;
}

    .status-tooltip .k-card {
        box-shadow: none;
        border-style: none;
        background-color: transparent;
    }

.membership-lookup-tooltip {
    max-width: 100dvw;
}

.toggle-button {
    animation: button-animation-out 0.3s;
}

.selected-toggle-button {
    animation: button-animation 0.3s;
}

@keyframes button-animation {
    from {
        background-color: var(--kendo-color-base-active);
    }

    to {
        background-color: var(--kendo-color-primary);
    }
}

@keyframes button-animation-out {
    from {
        background-color: var(--kendo-color-primary);
    }

    to {
        background-color: var(--kendo-color-base);
    }
}

.inline-text, .inline-text * {
    display: inline;
}

.note {
    background-color: rgb(from var(--kendo-color-surface-alt) r g b / var(--opacity));
    border-left: 4px solid var(--kendo-color-primary);
    padding: 10px 12px;
    margin-block: 16px;
    border-end-end-radius: var(--modules-rounded);
    box-shadow: var(--modules-elevation);
}

.k-grid .k-card-body .note,
.no-margin .note{
    margin-block: 0;
}

.k-stack-layout .k-card .note {
    width: 100%;
    margin-block: 0;
}

.note:hover {
    background-color: rgb(from var(--kendo-color-surface) r g b / var(--opacity));
}

pre, code {
    background: var(--kendo-color-base);
    border: 1px solid var(--kendo-color-border);
    padding-inline: 5px;
    border-radius: 6px;
    font-family: Consolas, "Courier New", monospace;
    font-size: unset;
    color: unset;
}

strong {
    color: var(--kendo-color-primary);
}

pre {
    padding: 12px;
    overflow: auto;
}

    pre code.language-powershell {
        background: #1e1e1e;
        color: #dcdcdc;
        display: block;
        padding: 12px;
        border-radius: 6px;
        font-family: Consolas, "Courier New", monospace;
        overflow-x: auto;
        white-space: pre;
        padding-left: 40px;
    }

.diagram {
    margin-top: 8px;
}

.multiselect-with-buttons {
    min-height: 36px;
}

.basemodel-counter {
    font-size: 12px;
    color: var(--kendo-color-on-app-surface);
    background-color: var(--kendo-color-surface);
    border-radius: 4px;
    padding-block: 2px;
    padding-inline: 4px;
    margin-inline: 4px;
    margin-block: 2px;
    cursor: default;
}

.highlight-card {
    background-color: color-mix(in srgb, var(--kendo-color-primary, #ff6358) 25%, transparent);
}

    .highlight-card .k-card-subtitle {
        color: var(--kendo-color-on-app-surface) !important;
    }

.xsmall-button {
    font-size: 12px;
    padding: 0 !important;
}

    .xsmall-button svg {
        height: 14px !important;
    }

.appBar-searcher > .center-screen {
    position: fixed;
    top: 300px;
    left: calc(50% + (60px / 2));
    /*left: calc(50% + (248px / 2));*/
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 100%;
    max-width: 700px;
    transition: left 0.4s ease, width ease 0.6s;
}

body:has(.k-drawer-expanded) .appBar-searcher > .center-screen {
    left: calc(50% + (262px / 2));
    width: calc(100dvw - (var(--modules-margin) * 3) - 262px);
    transition: left ease 0.3s, width ease 0.3s;
}

.searchBar {
    /*background-color: var(--kendo-color-base, #FFF);*/
    color: var(--kendo-color-on-base);
}

    .searchBar:hover {
        /*background-color: var(--kendo-color-base-active);*/
    }

.appBar-searcher input::placeholder {
    color: var(--kendo-color-on-base);
    transition: color ease 0.3s;
}

.appBar-searcher .k-input-solid:focus-within input::placeholder {
    color: var(--kendo-color-subtle);
    transition: color ease 0.3s;
}

.appBar-searcher .k-input-solid:focus-within {
    box-shadow: none;
    border-color: transparent;
}



.appBar-searcher .k-svg-icon {
    color: var(--kendo-color-on-base);
}

.super-search-drop-down .k-list-header {
    /*background: linear-gradient( to bottom, var(--kendo-color-on-app-surface) 0%, var(--modules-background-color) 20%, var(--modules-background-color) 100% );*/
}

.searchbar-logo {
    height: 96px;    
    color: var(--kendo-color-primary);
}

.noselect {
    cursor: default;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently */
}

.role-picker {
    max-width: 300px !important;
    width: 300px;
    border-radius: 12px;
    transition: border-radius ease 0.3s, border-color linear 0.3s;
    background: var(--input-custom-background);
    cursor: pointer;
    display: flex;
}

    .role-picker input {
        /*flex: 1 1 auto;*/
        cursor: text;
        field-sizing: content;
        max-width: 250px;
        padding-inline-start: 0 !important;
    }

    .role-picker .k-input-suffix {
        flex-shrink: 1;
        min-width: 75px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: end;
        margin-right: 5px;
        color: var(--kendo-color-subtle, #666666);
        font-size: var(--kendo-font-size-sm, inherit);
    }
    /*.role-picker .k-input-solid {
        
    }

    .role-picker .k-input-prefix
    {
        flex: 0 0 20px;
    }*/
    .role-picker .k-input-button {
        display: none;
    }

/*.role-picker > .k-input-inner {*/
    /*flex: 1 1 0%;*/
    /*flex: unset;
    width: unset;
    min-width: 50px;
    field-sizing: content;
    
}


    .role-picker .k-input-suffix {
        flex: 1 1 auto;
        text-align: end;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-right: 5px;
    }*/

.tenant-pos {
    /*left: var(--w);*/
    
}

body:has(.k-list) .role-picker.k-input-solid:focus-within
{
    box-shadow: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.custom-combobox-drop-down .k-list-container {
    margin-top: 0;
}

.super-search-drop-down .k-list-container {
    margin-top: 0;
}

.custom-combobox-drop-down .k-popup {
    border-radius: 12px;
    border: 1px solid var(--kendo-color-border-alt);
}

.super-search-drop-down .k-popup {
    border-radius: 12px;
    border: 2px solid var(--kendo-color-border-alt);
}

.box-border-animation {    
    border: 2px solid transparent;
    border-radius: 12px;
    background: 
        linear-gradient(var(--input-custom-background), var(--input-custom-background)) padding-box,
        conic-gradient(
        from var(--angle),      
            var(--kendo-color-border-alt) 225deg,
            var(--kendo-color-primary) 300deg,
            var(--kendo-color-primary-active) 300.5deg,
            var(--kendo-color-primary) 301deg,
            var(--kendo-color-primary) 315deg,
            var(--kendo-color-border-alt) 360deg
        ) border-box;
    animation-name: rotate, autoFillEnd !important;
    animation: 5s rotate linear infinite;
    animation-fill-mode: forwards;
}

body:has(.super-search-drop-down .k-list) .appBar-searcher .box-border-animation {
    animation-play-state: paused;
    background: var(--input-custom-background);
    border-color: var(--kendo-color-border-alt);
}

.appBar-searcher .k-input-solid:hover,
body:has(.super-search-drop-down .k-list) .appBar-searcher .k-input-solid:hover {
    border-color: var(--kendo-color-primary);
    animation-play-state: paused;
}

@keyframes rotate {
    to {
        --angle: 360deg;
    }
}

@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.ai-summary-textbox
{
    height: 100%;
    width: 100%;
    overflow-y: auto;
}

.file-manager
{

}

    .file-manager.hide-navigation-pane .k-filemanager-navigation,
    .file-manager.hide-navigation-pane .k-splitbar {
        display: none;
    }

    .file-manager.hide-navigation-pane {
    }

    .file-manager .k-toolbar .k-input
    {
        min-width: 200px;
        max-width: 400px;
        width: 100%;
    }

    .file-manager .k-filemanager-toolbar {
        padding-inline-start: 8px;
    }

    .file-manager .k-file-name {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        align-items: center;
    }

    .file-manager .k-table-td:has(> .k-file-preview)
    {
        display: flex;
    }

.timestamp {
    width: 10rem;
    white-space: nowrap;
    padding-inline: 5px;
}

.text-area-full
{
    width: 100%;
    height: 100%;
}

    .text-area-full textarea
    {
        height: 100%;
    }

.terminal-ps
{
    width: 100%;
    height: 100%;
}

    .terminal-ps .xterm
    {
        height: 100%;
        padding: 10px;
    }

.app-status-dashboard-item {
    /*min-height: 200px;
    min-width: 300px;
    padding: 10px;
    flex: 1;    
    box-sizing: border-box;    
    justify-items: center;*/
    width: 100%;
    display: flex;
    gap: 10px;
    height: 100%;
}

    .app-status-dashboard-item .k-chart
    {
        flex-shrink: 0;
    }

    .k-chart-point {
        cursor: pointer;
    }

.break-word {
    word-wrap: break-word;
    white-space: break-spaces;
}