.k-sr-only {
    position: absolute;
    left: -1px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.k-theme-test-class, .k-common-test-class {
    opacity: 0;
}

.k-hstack, .k-hbox {
    display: flex;
    flex-flow: row nowrap;
}

.k-vstack, .k-vbox {
    display: flex;
    flex-flow: column nowrap;
}

.k-spacer, .k-flex {
    flex: 1 1 auto;
}

.k-spacer-sized {
    flex: none;
}

.k-float-wrap::after, .k-floatwrap::after {
    content: "";
    display: block;
    clear: both;
}

.k-flex-layout {
    display: flex;
}

.k-grid-layout {
    display: grid;
}

.k-separator {
    width: auto;
    height: 0;
    border-width: 1px 0 0;
    border-style: solid;
    border-color: inherit;
    display: block;
    flex-grow: 0 !important;
    flex-shrink: 0 !important;
    align-self: stretch;
}

.k-separator-horizontal, .k-vstack > .k-separator, .k-vbox > .k-separator {
    width: auto;
    height: 0;
    border-width: 1px 0 0;
}

.k-separator-vertical, .k-hstack > .k-separator, .k-hbox > .k-separator {
    width: 0;
    height: auto;
    border-width: 0 0 0 1px;
}

hr.k-separator {
    margin: 0;
    padding: 0;
}

.k-hidden {
    display: none !important;
}

.k-rtl {
    direction: rtl;
}

[hidden] {
    display: none !important;
}

script {
    display: none !important;
}

.k-reset {
    margin: 0;
    padding: 0;
    border-width: 0;
    outline: 0;
    text-decoration: none;
    font: inherit;
    list-style: none;
}

kendo-sortable {
    display: block;
}

.k-link, .k-link:hover {
    color: inherit;
    text-decoration: none;
    outline: 0;
    cursor: pointer;
}

.k-content {
    outline: 0;
}

.k-centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.k-no-click {
    pointer-events: none;
}

.k-pdf-export-shadow {
    position: absolute;
    overflow: hidden;
    left: -15000px;
    width: 14400px;
}

.kendo-pdf-hide-pseudo-elements::before, .kendo-pdf-hide-pseudo-elements::after {
    display: none !important;
}

.k-text-selection ::-moz-selection {
    background-color: var(--themecolor);
    color: #fff;
}

.k-text-selection ::selection {
    background-color: var(--themecolor);
    color: #fff;
}

.k-block, .k-panel {
    border-radius: 4px;
    border-color: var(--kendo-border-color);;
    color: #424242;
    background-color: #fff;
    padding: 0;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
}

    .k-block > .k-header, .k-panel > .k-header {
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
        border-color: var(--kendo-border-color);
        color: #424242;
        background-color: #fafafa;
        padding-inline: 8px;
        padding-block: 4px;
    }

    .k-block > .k-content, .k-panel > .k-content {
        padding-inline: 8px;
        padding-block: 4px;
    }

.k-content {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

.k-disabled, .k-widget[disabled], .k-disabled {
    outline: none;
    cursor: default;
    opacity: .6;
    filter: grayscale(0.1);
    pointer-events: none;
    box-shadow: none;
}

    .k-disabled .k-link, .k-widget[disabled] .k-link, .k-disabled .k-link {
        cursor: default;
        outline: 0;
    }

    .k-disabled [disabled], .k-disabled .k-disabled, .k-widget[disabled] [disabled], .k-widget[disabled] .k-disabled, .k-disabled [disabled], .k-disabled .k-disabled {
        opacity: 1;
        filter: grayscale(0);
    }

.k-hr {
    margin: 16px auto;
    padding: 0;
    height: 0;
    border-width: 1px 0 0;
    border-style: solid;
    border-color: var(--kendo-border-color);
    display: block;
    float: none;
    clear: both;
}

.k-d-flex-row > .k-hr {
    margin: 0;
    width: 0;
    height: auto;
    border-width: 0 0 0 1px;
    flex: 0 0 auto;
}

.k-d-flex-col > .k-hr {
    margin: 0;
    flex: 0 0 auto;
}

.k-dirty {
    margin: 0;
    padding: 0;
    width: 0;
    height: 0;
    border-width: 3px;
    border-style: solid;
    border-color: #df5438 #df5438 transparent transparent;
    position: absolute;
    top: 0;
    right: 0;
}

[dir="rtl"] .k-dirty, .k-rtl .k-dirty {
    border-color: transparent transparent #df5438 #df5438;
    right: auto;
    left: 0;
}

.k-animation-container {
    position: absolute;
    overflow: hidden;
    z-index: 100;
}

.k-animation-container-fixed {
    position: fixed;
}

.k-animation-container-relative {
    position: relative;
    display: inline-block;
}

.k-push-right-enter, .k-push-right-appear {
    transform: translate(-100%, 0);
}

.k-push-right-enter-active, .k-push-right-appear-active {
    transform: translate(0, 0);
    transition: transform 300ms ease-in-out;
}

.k-push-right-exit {
    transform: translate(0, 0);
}

.k-push-right-exit-active {
    transform: translate(100%, 0);
    transition: transform 300ms ease-in-out;
}

.k-push-left-enter, .k-push-left-appear {
    transform: translate(100%, 0);
}

.k-push-left-enter-active, .k-push-left-appear-active {
    transform: translate(0, 0);
    transition: transform 300ms ease-in-out;
}

.k-push-left-exit {
    transform: translate(0, 0);
}

.k-push-left-exit-active {
    transform: translate(-100%, 0);
    transition: transform 300ms ease-in-out;
}

.k-push-down-enter, .k-push-down-appear {
    transform: translate(0, -100%);
}

.k-push-down-enter-active, .k-push-down-appear-active {
    transform: translate(0, 0);
    transition: transform 300ms ease-in-out;
}

.k-push-down-exit {
    transform: translate(0, 0);
}

.k-push-down-exit-active {
    transform: translate(0, 100%);
    transition: transform 300ms ease-in-out;
}

.k-push-up-enter, .k-push-up-appear {
    transform: translate(0, 100%);
}

.k-push-up-enter-active, .k-push-up-appear-active {
    transform: translate(0, 0);
    transition: transform 300ms ease-in-out;
}

.k-push-up-exit {
    transform: translate(0, 0);
}

.k-push-up-exit-active {
    transform: translate(0, -100%);
    transition: transform 300ms ease-in-out;
}

.k-expand-vertical-enter, .k-expand-vertical-appear {
    transform: scaleY(0);
}

.k-expand-vertical-enter-active, .k-expand-vertical-appear-active {
    transform: scaleY(1);
    transition: transform 300ms ease-in-out;
}

.k-expand-vertical-exit {
    transform: scaleY(1);
}

.k-expand-vertical-exit-active {
    transform: scaleY(0);
    transition: transform 300ms ease-in-out;
}

.k-expand-horizontal-enter, .k-expand-horizontal-appear {
    transform: scaleX(0);
}

.k-expand-horizontal-enter-active, .k-expand-horizontal-appear-active {
    transform: scaleX(1);
    transition: transform 300ms ease-in-out;
}

.k-expand-horizontal-exit {
    transform: scaleX(1);
}

.k-expand-horizontal-exit-active {
    transform: scaleX(0);
    transition: transform 300ms ease-in-out;
}

.k-fade-enter, .k-fade-appear {
    opacity: 0;
}

.k-fade-enter-active, .k-fade-appear-active {
    opacity: 1;
    transition: opacity 500ms ease-in-out;
}

.k-fade-exit {
    opacity: 1;
}

.k-fade-exit-active {
    opacity: 0;
    transition: opacity 500ms ease-in-out;
}

    .k-fade-exit-active + .k-fade-exit-active, .k-fade-enter-active + .k-fade-enter-active {
        display: none;
    }

.k-zoom-in-enter, .k-zoom-in-appear {
    opacity: 0;
    transform: scale(0);
}

.k-zoom-in-enter-active, .k-zoom-in-appear-active {
    opacity: 1;
    transform: scale(1);
    transition: transform, opacity 300ms ease-in-out;
}

.k-zoom-in-exit {
    opacity: 1;
    transform: scale(1);
}

.k-zoom-in-exit-active {
    opacity: 0;
    transform: scale(2);
    transition: transform, opacity 300ms ease-in-out;
}

.k-zoom-out-enter, .k-zoom-out-appear {
    opacity: 0;
    transform: scale(2);
}

.k-zoom-out-enter-active, .k-zoom-out-appear-active {
    opacity: 1;
    transform: scale(1);
    transition: transform, opacity 300ms ease-in-out;
}

.k-zoom-out-exit {
    opacity: 1;
    transform: scale(1);
}

.k-zoom-out-exit-active {
    opacity: 0;
    transform: scale(0);
    transition: transform, opacity 300ms ease-in-out;
}

.k-slide-in-appear {
    opacity: .1;
    transform: translate(0, -3em);
}

    .k-slide-in-appear .k-centered {
        transform: translate(-50%, -60%);
    }

.k-slide-in-appear-active {
    opacity: 1;
    transform: translate(0, 0);
    transition: transform 0.3s cubic-bezier(0.2, 0.6, 0.4, 1), opacity 0.3s cubic-bezier(0.2, 1, 0.2, 1);
}

    .k-slide-in-appear-active .k-centered {
        transform: translate(-50%, -50%);
    }

.k-slide-down-enter, .k-slide-down-appear {
    transform: translateY(-100%);
}

.k-slide-down-enter-active, .k-slide-down-appear-active {
    transform: translateY(0);
    transition: transform 300ms ease-in-out;
}

.k-slide-down-exit {
    transform: translateY(0);
}

.k-slide-down-exit-active {
    transform: translateY(-100%);
    transition: transform 300ms ease-in-out;
}

.k-slide-up-enter, .k-slide-up-appear {
    transform: translateY(100%);
}

.k-slide-up-enter-active, .k-slide-up-appear-active {
    transform: translateY(0);
    transition: transform 300ms ease-in-out;
}

.k-slide-up-exit {
    transform: translateY(0);
}

.k-slide-up-exit-active {
    transform: translateY(100%);
    transition: transform 300ms ease-in-out;
}

.k-slide-right-enter, .k-slide-right-appear {
    transform: translateX(-100%);
}

.k-slide-right-enter-active, .k-slide-right-appear-active {
    transform: translateX(0);
    transition: transform 300ms ease-in-out;
}

.k-slide-right-exit {
    transform: translateX(0);
}

.k-slide-right-exit-active {
    transform: translateX(-100%);
    transition: transform 300ms ease-in-out;
}

.k-slide-left-enter, .k-slide-left-appear {
    transform: translateX(100%);
}

.k-slide-left-enter-active, .k-slide-left-appear-active {
    transform: translateX(0);
    transition: transform 300ms ease-in-out;
}

.k-slide-left-exit {
    transform: translateX(0);
}

.k-slide-left-exit-active {
    transform: translateX(100%);
    transition: transform 300ms ease-in-out;
}

.k-reveal-vertical-enter, .k-reveal-vertical-appear {
    max-height: 0;
}

.k-reveal-vertical-enter-active, .k-reveal-vertical-appear-active {
    transition: max-height 300ms ease-in-out;
}

.k-reveal-vertical-exit-active {
    max-height: 0 !important;
    transition: max-height 300ms ease-in-out;
}

.k-reveal-horizontal-enter, .k-reveal-horizontal-appear {
    max-width: 0;
}

.k-reveal-horizontal-enter-active, .k-reveal-horizontal-appear-active {
    transition: max-width 300ms ease-in-out;
}

.k-reveal-horizontal-exit-active {
    max-width: 0 !important;
    transition: max-width 300ms ease-in-out;
}

.k-fx-end .k-fx-next, .k-fx-end .k-fx-current {
    transition: all 350ms ease-out;
}

.k-fx {
    position: relative;
}

    .k-fx .k-fx-current {
        z-index: 0;
    }

    .k-fx .k-fx-next {
        z-index: 1;
    }

.k-fx-hidden, .k-fx-hidden * {
    visibility: hidden !important;
}

.k-fx-reverse .k-fx-current {
    z-index: 1;
}

.k-fx-reverse .k-fx-next {
    z-index: 0;
}

.k-fx-zoom.k-fx-start .k-fx-next {
    transform: scale(0) !important;
}

.k-fx-zoom.k-fx-end .k-fx-next {
    transform: scale(1) !important;
}

.k-fx-zoom.k-fx-reverse.k-fx-start .k-fx-next, .k-fx-zoom.k-fx-reverse.k-fx-end .k-fx-next {
    transform: scale(1) !important;
}

.k-fx-zoom.k-fx-reverse.k-fx-start .k-fx-current {
    transform: scale(1) !important;
}

.k-fx-zoom.k-fx-reverse.k-fx-end .k-fx-current {
    transform: scale(0) !important;
}

.k-fx-fade.k-fx-start .k-fx-next {
    will-change: opacity;
    opacity: 0;
}

.k-fx-fade.k-fx-end .k-fx-next {
    opacity: 1;
}

.k-fx-fade.k-fx-reverse.k-fx-start .k-fx-current {
    will-change: opacity;
    opacity: 1;
}

.k-fx-fade.k-fx-reverse.k-fx-end .k-fx-current {
    opacity: 0;
}

.k-fx-slide.k-fx-end .k-fx-next .k-content, .k-fx-slide.k-fx-end .k-fx-next .k-header, .k-fx-slide.k-fx-end .k-fx-next .k-footer, .k-fx-slide.k-fx-end .k-fx-current .k-content, .k-fx-slide.k-fx-end .k-fx-current .k-header, .k-fx-slide.k-fx-end .k-fx-current .k-footer, .k-fx-slide.k-fx-end .k-fx-next .km-content, .k-fx-slide.k-fx-end .k-fx-next .km-header, .k-fx-slide.k-fx-end .k-fx-next .km-footer, .k-fx-slide.k-fx-end .k-fx-current .km-content, .k-fx-slide.k-fx-end .k-fx-current .km-header, .k-fx-slide.k-fx-end .k-fx-current .km-footer {
    transition: all 350ms ease-out;
}

.k-fx-slide.k-fx-start .k-fx-next .k-content, .k-fx-slide.k-fx-start .k-fx-next .km-content {
    will-change: transform;
    transform: translateX(100%);
}

.k-fx-slide.k-fx-start .k-fx-next .k-header, .k-fx-slide.k-fx-start .k-fx-next .k-footer, .k-fx-slide.k-fx-start .k-fx-next .km-header, .k-fx-slide.k-fx-start .k-fx-next .km-footer {
    will-change: opacity;
    opacity: 0;
}

.k-fx-slide.k-fx-end .k-fx-current .k-content, .k-fx-slide.k-fx-end .k-fx-current .km-content {
    transform: translateX(-100%);
}

.k-fx-slide.k-fx-end .k-fx-next .k-header, .k-fx-slide.k-fx-end .k-fx-next .k-footer, .k-fx-slide.k-fx-end .k-fx-next .km-header, .k-fx-slide.k-fx-end .k-fx-next .km-footer {
    opacity: 1;
}

.k-fx-slide.k-fx-reverse.k-fx-start .k-fx-current .k-content, .k-fx-slide.k-fx-reverse.k-fx-start .k-fx-current .km-content {
    will-change: transform;
    transform: translateX(0);
}

.k-fx-slide.k-fx-reverse.k-fx-end .k-fx-current .k-content, .k-fx-slide.k-fx-reverse.k-fx-end .k-fx-current .km-content {
    transform: translateX(100%);
}

.k-fx-slide.k-fx-reverse.k-fx-start .k-fx-next .k-content, .k-fx-slide.k-fx-reverse.k-fx-start .k-fx-next .km-content {
    transform: translateX(-100%);
}

.k-fx-slide.k-fx-reverse.k-fx-end .k-fx-next .k-content, .k-fx-slide.k-fx-reverse.k-fx-end .k-fx-next .km-content {
    transform: translateX(0);
}

.k-fx-slide.k-fx-reverse.k-fx-start .k-fx-current .k-header, .k-fx-slide.k-fx-reverse.k-fx-start .k-fx-current .k-footer, .k-fx-slide.k-fx-reverse.k-fx-start .k-fx-current .km-header, .k-fx-slide.k-fx-reverse.k-fx-start .k-fx-current .km-footer {
    will-change: opacity;
    opacity: 1;
}

.k-fx-slide.k-fx-reverse.k-fx-start .k-fx-next .k-header, .k-fx-slide.k-fx-reverse.k-fx-start .k-fx-next .k-footer, .k-fx-slide.k-fx-reverse.k-fx-start .k-fx-next .km-header, .k-fx-slide.k-fx-reverse.k-fx-start .k-fx-next .km-footer {
    opacity: 1;
}

.k-fx-slide.k-fx-reverse.k-fx-end .k-fx-current .k-header, .k-fx-slide.k-fx-reverse.k-fx-end .k-fx-current .k-footer, .k-fx-slide.k-fx-reverse.k-fx-end .k-fx-current .km-header, .k-fx-slide.k-fx-reverse.k-fx-end .k-fx-current .km-footer {
    opacity: 0;
}

.k-fx-slide.k-fx-reverse.k-fx-end .k-fx-next .k-header, .k-fx-slide.k-fx-reverse.k-fx-end .k-fx-next .k-footer, .k-fx-slide.k-fx-reverse.k-fx-end .k-fx-next .km-header, .k-fx-slide.k-fx-reverse.k-fx-end .k-fx-next .km-footer {
    opacity: 1;
}

.k-fx-slide.k-fx-right.k-fx-start .k-fx-next .k-content, .k-fx-slide.k-fx-right.k-fx-start .k-fx-next .km-content {
    transform: translateX(-100%);
}

.k-fx-slide.k-fx-right.k-fx-end .k-fx-current .k-content, .k-fx-slide.k-fx-right.k-fx-end .k-fx-current .km-content {
    transform: translateX(100%);
}

.k-fx-slide.k-fx-right.k-fx-reverse.k-fx-start .k-fx-current .k-content, .k-fx-slide.k-fx-right.k-fx-reverse.k-fx-start .k-fx-current .km-content {
    transform: translateX(0);
}

.k-fx-slide.k-fx-right.k-fx-reverse.k-fx-end .k-fx-current .k-content, .k-fx-slide.k-fx-right.k-fx-reverse.k-fx-end .k-fx-current .km-content {
    transform: translateX(-100%);
}

.k-fx-slide.k-fx-right.k-fx-reverse.k-fx-start .k-fx-next .k-content, .k-fx-slide.k-fx-right.k-fx-reverse.k-fx-start .k-fx-next .km-content {
    transform: translateX(100%);
}

.k-fx-slide.k-fx-right.k-fx-reverse.k-fx-end .k-fx-next .k-content, .k-fx-slide.k-fx-right.k-fx-reverse.k-fx-end .k-fx-next .km-content {
    transform: translateX(0%);
}

.k-fx-tile.k-fx-start .k-fx-next {
    will-change: transform;
    transform: translateX(100%);
}

.k-fx-tile.k-fx-end .k-fx-current {
    transform: translateX(-100%);
}

.k-fx-tile.k-fx-reverse.k-fx-start .k-fx-current {
    will-change: transform;
    transform: translateX(0);
}

.k-fx-tile.k-fx-reverse.k-fx-end .k-fx-current {
    transform: translateX(100%);
}

.k-fx-tile.k-fx-reverse.k-fx-start .k-fx-next {
    transform: translateX(-100%);
}

.k-fx-tile.k-fx-reverse.k-fx-end .k-fx-next {
    transform: translateX(0);
}

.k-fx-tile.k-fx-right.k-fx-start .k-fx-next {
    transform: translateX(-100%);
}

.k-fx-tile.k-fx-right.k-fx-end .k-fx-current {
    transform: translateX(100%);
}

.k-fx-tile.k-fx-right.k-fx-reverse.k-fx-start .k-fx-current {
    transform: translateX(0);
}

.k-fx-tile.k-fx-right.k-fx-reverse.k-fx-end .k-fx-current {
    transform: translateX(-100%);
}

.k-fx-tile.k-fx-right.k-fx-reverse.k-fx-start .k-fx-next {
    transform: translateX(100%);
}

.k-fx-tile.k-fx-right.k-fx-reverse.k-fx-end .k-fx-next {
    transform: translateX(0%);
}

.k-fx.k-fx-overlay.k-fx-start .k-fx-next, .k-fx.k-fx-overlay.k-fx-left.k-fx-start .k-fx-next {
    will-change: transform;
    transform: translateX(100%);
}

.k-fx.k-fx-overlay.k-fx-right.k-fx-start .k-fx-next {
    transform: translateX(-100%);
}

.k-fx.k-fx-overlay.k-fx-up.k-fx-start .k-fx-next {
    transform: translateY(100%);
}

.k-fx.k-fx-overlay.k-fx-down.k-fx-start .k-fx-next {
    transform: translateY(-100%);
}

.k-fx.k-fx-overlay.k-fx-reverse.k-fx-start .k-fx-next {
    transform: none;
}

.k-fx.k-fx-overlay.k-fx-reverse.k-fx-start .k-fx-current {
    will-change: transform;
    transform: none;
}

.k-fx.k-fx-overlay.k-fx-reverse.k-fx-end .k-fx-current, .k-fx.k-fx-overlay.k-fx-reverse.k-fx-left.k-fx-end .k-fx-current {
    transform: translateX(100%);
}

.k-fx.k-fx-overlay.k-fx-reverse.k-fx-right.k-fx-end .k-fx-current {
    transform: translateX(-100%);
}

.k-fx.k-fx-overlay.k-fx-reverse.k-fx-up.k-fx-end .k-fx-current {
    transform: translateY(100%);
}

.k-fx.k-fx-overlay.k-fx-reverse.k-fx-down.k-fx-end .k-fx-current {
    transform: translateY(-100%);
}

.k-resize-handle, .k-resize-hint {
    position: absolute;
    border-color: inherit;
    z-index: 200;
}

.k-resize-handle {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .k-resize-handle::before {
        content: "";
        border: 0 solid;
        border-color: inherit;
    }

.k-resize-n {
    width: 100%;
    height: 6px;
    flex-direction: row;
    left: 0;
    top: -3px;
    cursor: n-resize;
}

.k-resize-s {
    width: 100%;
    height: 6px;
    flex-direction: row;
    left: 0;
    bottom: -3px;
    cursor: s-resize;
}

.k-resize-w {
    width: 6px;
    height: 100%;
    flex-direction: column;
    top: 0;
    left: -3px;
    cursor: w-resize;
}

.k-resize-e {
    width: 6px;
    height: 100%;
    flex-direction: column;
    top: 0;
    right: -3px;
    cursor: e-resize;
}

.k-resize-sw, .k-resize-se, .k-resize-nw, .k-resize-ne {
    width: 5px;
    height: 5px;
}

.k-resize-sw {
    cursor: sw-resize;
    bottom: 0;
    left: 0;
}

.k-resize-se {
    cursor: se-resize;
    bottom: 0;
    right: 0;
}

.k-resize-nw {
    cursor: nw-resize;
    top: 0;
    left: 0;
}

.k-resize-ne {
    cursor: ne-resize;
    top: 0;
    right: 0;
}

.k-vertical-resize {
    cursor: row-resize;
}

.k-horizontal-resize {
    cursor: col-resize;
}

.k-resize-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .k-resize-hint .k-resize-hint-handle {
        width: auto;
        height: 20px;
        align-self: stretch;
    }

    .k-resize-hint .k-resize-hint-marker {
        width: 2px;
        height: auto;
        flex: 1 1 auto;
    }

.k-resize-hint-vertical {
    display: flex;
    flex-direction: row;
    align-items: center;
}

    .k-resize-hint-vertical .k-resize-hint-handle {
        width: 20px;
        height: auto;
        align-self: stretch;
    }

    .k-resize-hint-vertical .k-resize-hint-marker {
        width: auto;
        height: 2px;
        flex: 1 1 auto;
    }

.k-scrollbar {
    position: absolute;
    overflow: scroll;
}

.k-scrollbar-vertical {
    top: 0;
    right: 0;
    width: 17px;
    height: 100%;
    overflow-x: hidden;
}

.k-touch-scrollbar {
    display: none;
    position: absolute;
    z-index: 200000;
    height: 8px;
    width: 8px;
    border: 1px solid #8a8a8a;
    background-color: #858585;
}

.k-marquee {
    position: absolute;
    z-index: 100000;
}

.k-marquee-color, .k-marquee-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.k-marquee-color {
    color: #fff;
    background-color: var(--themecolor);
    border-color: var(--kendo-border-color);
    opacity: .6;
}

.k-marquee-text {
    color: #fff;
}

.k-body, .k-typography {
    font-size: 14px;
    font-family: inherit;
    line-height: 1.4285714286;
    font-weight: 400;
    margin: 0;
}

    .k-body p, .k-typography p {
        margin: 0 0 14px;
    }

.k-h1 {
    font-size: 42px;
    font-family: inherit;
    line-height: 54px;
    font-weight: 400;
    margin: 0 0 14px;
}

.k-h2 {
    font-size: 34px;
    font-family: inherit;
    line-height: 46px;
    font-weight: 400;
    margin: 0 0 14px;
}

.k-h3 {
    font-size: 28px;
    font-family: inherit;
    line-height: 42px;
    font-weight: 400;
    margin: 0 0 14px;
}

.k-h4 {
    font-size: 22px;
    font-family: inherit;
    line-height: 32px;
    font-weight: 700;
    margin: 0 0 14px;
}

.k-h5 {
    font-size: 16px;
    font-family: inherit;
    line-height: 26px;
    font-weight: 700;
    margin: 0 0 14px;
}

.k-h6 {
    font-size: 14px;
    font-family: inherit;
    line-height: 20px;
    font-weight: 700;
    margin: 0 0 14px;
}

.k-paragraph {
    font-size: 14px;
    font-family: inherit;
    line-height: 20px;
    font-weight: 400;
    margin: 0 0 14px;
}

.k-pre, .k-code {
    font-size: 14px;
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Roboto Mono", "Ubuntu Mono", "Lucida Console", "Courier New", monospace;
    line-height: 20px;
    font-weight: 400;
    border-style: solid;
    border-width: 1px;
}

.k-pre {
    padding: 16px 24px;
    overflow: auto;
}

    .k-pre > .k-code {
        padding: 0;
        border-width: 0;
        border-color: transparent;
        background-color: transparent;
        font-family: inherit;
        font-size: inherit;
    }

.k-code {
    padding: 0px 4px;
}

.k-display-1 {
    font-size: 84px;
    font-family: inherit;
    line-height: 1.2;
    font-weight: 300;
}

.k-display-2 {
    font-size: 70px;
    font-family: inherit;
    line-height: 1.2;
    font-weight: 300;
}

.k-display-3 {
    font-size: 56px;
    font-family: inherit;
    line-height: 1.2;
    font-weight: 300;
}

.k-display-4 {
    font-size: 42px;
    font-family: inherit;
    line-height: 1.2;
    font-weight: 300;
}

.k-body {
    color: #424242;
    background-color: #fff;
}

.k-pre, .k-code {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fafafa;
}

.k-ratio-auto {
    aspect-ratio: auto;
}

.\!k-ratio-auto {
    aspect-ratio: auto !important;
}

.k-ratio-1 {
    aspect-ratio: 1;
}

.\!k-ratio-1 {
    aspect-ratio: 1 !important;
}

.k-ratio-square {
    aspect-ratio: 1 / 1;
}

.\!k-ratio-square {
    aspect-ratio: 1 / 1 !important;
}

.k-ratio-video {
    aspect-ratio: 16 / 9;
}

.\!k-ratio-video {
    aspect-ratio: 16 / 9 !important;
}

.k-aspect-ratio-auto {
    aspect-ratio: auto;
}

.\!k-aspect-ratio-auto {
    aspect-ratio: auto !important;
}

.k-aspect-ratio-1 {
    aspect-ratio: 1;
}

.\!k-aspect-ratio-1 {
    aspect-ratio: 1 !important;
}

.k-aspect-ratio-square {
    aspect-ratio: 1 / 1;
}

.\!k-aspect-ratio-square {
    aspect-ratio: 1 / 1 !important;
}

.k-aspect-ratio-video {
    aspect-ratio: 16 / 9;
}

.\!k-aspect-ratio-video {
    aspect-ratio: 16 / 9 !important;
}

.k-clear-left {
    clear: left;
}

.\!k-clear-left {
    clear: left !important;
}

.k-clear-right {
    clear: right;
}

.\!k-clear-right {
    clear: right !important;
}

.k-clear-both {
    clear: both;
}

.\!k-clear-both {
    clear: both !important;
}

.k-clear-none {
    clear: none;
}

.\!k-clear-none {
    clear: none !important;
}

.k-d-none {
    display: none;
}

.\!k-d-none {
    display: none !important;
}

.k-d-block {
    display: block;
}

.\!k-d-block {
    display: block !important;
}

.k-d-inline {
    display: inline;
}

.\!k-d-inline {
    display: inline !important;
}

.k-d-inline-block {
    display: inline-block;
}

.\!k-d-inline-block {
    display: inline-block !important;
}

.k-d-flex, .k-d-flex-row, .k-d-flex-col {
    display: flex;
}

.\!k-d-flex, .\!k-d-flex-row, .\!k-d-flex-col {
    display: flex !important;
}

.k-d-inline-flex {
    display: inline-flex;
}

.\!k-d-inline-flex {
    display: inline-flex !important;
}

.k-d-grid {
    display: grid;
}

.\!k-d-grid {
    display: grid !important;
}

.k-d-inline-grid {
    display: inline-grid;
}

.\!k-d-inline-grid {
    display: inline-grid !important;
}

.k-d-table {
    display: table;
}

.\!k-d-table {
    display: table !important;
}

.k-d-inline-table {
    display: inline-table;
}

.\!k-d-inline-table {
    display: inline-table !important;
}

.k-d-list-item {
    display: list-item;
}

.\!k-d-list-item {
    display: list-item !important;
}

.k-display-none {
    display: none;
}

.\!k-display-none {
    display: none !important;
}

.k-display-block {
    display: block;
}

.\!k-display-block {
    display: block !important;
}

.k-display-inline {
    display: inline;
}

.\!k-display-inline {
    display: inline !important;
}

.k-display-inline-block {
    display: inline-block;
}

.\!k-display-inline-block {
    display: inline-block !important;
}

.k-display-flex {
    display: flex;
}

.\!k-display-flex {
    display: flex !important;
}

.k-display-inline-flex {
    display: inline-flex;
}

.\!k-display-inline-flex {
    display: inline-flex !important;
}

.k-display-grid {
    display: grid;
}

.\!k-display-grid {
    display: grid !important;
}

.k-display-inline-grid {
    display: inline-grid;
}

.\!k-display-inline-grid {
    display: inline-grid !important;
}

.k-display-table {
    display: table;
}

.\!k-display-table {
    display: table !important;
}

.k-display-inline-table {
    display: inline-table;
}

.\!k-display-inline-table {
    display: inline-table !important;
}

.k-display-list-item {
    display: list-item;
}

.\!k-display-list-item {
    display: list-item !important;
}

.k-float-left {
    float: left;
}

.\!k-float-left {
    float: left !important;
}

.k-float-right {
    float: right;
}

.\!k-float-right {
    float: right !important;
}

.k-float-none {
    float: none;
}

.\!k-float-none {
    float: none !important;
}

.k-overflow-auto {
    overflow: auto;
}

.\!k-overflow-auto {
    overflow: auto !important;
}

.k-overflow-hidden {
    overflow: hidden;
}

.\!k-overflow-hidden {
    overflow: hidden !important;
}

.k-overflow-visible {
    overflow: visible;
}

.\!k-overflow-visible {
    overflow: visible !important;
}

.k-overflow-scroll {
    overflow: scroll;
}

.\!k-overflow-scroll {
    overflow: scroll !important;
}

.k-overflow-clip {
    overflow: clip;
}

.\!k-overflow-clip {
    overflow: clip !important;
}

.k-overflow-x-auto {
    overflow: auto;
}

.\!k-overflow-x-auto {
    overflow: auto !important;
}

.k-overflow-x-hidden {
    overflow: hidden;
}

.\!k-overflow-x-hidden {
    overflow: hidden !important;
}

.k-overflow-x-visible {
    overflow: visible;
}

.\!k-overflow-x-visible {
    overflow: visible !important;
}

.k-overflow-x-scroll {
    overflow: scroll;
}

.\!k-overflow-x-scroll {
    overflow: scroll !important;
}

.k-overflow-x-clip {
    overflow: clip;
}

.\!k-overflow-x-clip {
    overflow: clip !important;
}

.k-overflow-y-auto {
    overflow: auto;
}

.\!k-overflow-y-auto {
    overflow: auto !important;
}

.k-overflow-y-hidden {
    overflow: hidden;
}

.\!k-overflow-y-hidden {
    overflow: hidden !important;
}

.k-overflow-y-visible {
    overflow: visible;
}

.\!k-overflow-y-visible {
    overflow: visible !important;
}

.k-overflow-y-scroll {
    overflow: scroll;
}

.\!k-overflow-y-scroll {
    overflow: scroll !important;
}

.k-overflow-y-clip {
    overflow: clip;
}

.\!k-overflow-y-clip {
    overflow: clip !important;
}

.k-pos-static, .k-static {
    position: static;
}

.\!k-pos-static, .\!k-static {
    position: static !important;
}

.k-pos-relative, .k-relative {
    position: relative;
}

.\!k-pos-relative, .\!k-relative {
    position: relative !important;
}

.k-pos-absolute, .k-absolute {
    position: absolute;
}

.\!k-pos-absolute, .\!k-absolute {
    position: absolute !important;
}

.k-pos-fixed, .k-fixed {
    position: fixed;
}

.\!k-pos-fixed, .\!k-fixed {
    position: fixed !important;
}

.k-pos-sticky, .k-sticky {
    position: sticky;
}

.\!k-pos-sticky, .\!k-sticky {
    position: sticky !important;
}

.k-inset-0 {
    inset: 0;
}

.\!k-inset-0 {
    inset: 0 !important;
}

.k-inset-1 {
    inset: 1px;
}

.\!k-inset-1 {
    inset: 1px !important;
}

.k-inset--1 {
    inset: -1px;
}

.\!k-inset--1 {
    inset: -1px !important;
}

.k-inset-x-0 {
    inset-inline: 0;
}

.\!k-inset-x-0 {
    inset-inline: 0 !important;
}

.k-inset-x-1 {
    inset-inline: 1px;
}

.\!k-inset-x-1 {
    inset-inline: 1px !important;
}

.k-inset-x--1 {
    inset-inline: -1px;
}

.\!k-inset-x--1 {
    inset-inline: -1px !important;
}

.k-inset-y-0 {
    inset-block: 0;
}

.\!k-inset-y-0 {
    inset-block: 0 !important;
}

.k-inset-y-1 {
    inset-block: 1px;
}

.\!k-inset-y-1 {
    inset-block: 1px !important;
}

.k-inset-y--1 {
    inset-block: -1px;
}

.\!k-inset-y--1 {
    inset-block: -1px !important;
}

.k-top-0 {
    top: 0;
}

.\!k-top-0 {
    top: 0 !important;
}

.k-top-1 {
    top: 1px;
}

.\!k-top-1 {
    top: 1px !important;
}

.k-top--1 {
    top: -1px;
}

.\!k-top--1 {
    top: -1px !important;
}

.k-right-0 {
    right: 0;
}

.\!k-right-0 {
    right: 0 !important;
}

.k-right-1 {
    right: 1px;
}

.\!k-right-1 {
    right: 1px !important;
}

.k-right--1 {
    right: -1px;
}

.\!k-right--1 {
    right: -1px !important;
}

.k-bottom-0 {
    bottom: 0;
}

.\!k-bottom-0 {
    bottom: 0 !important;
}

.k-bottom-1 {
    bottom: 1px;
}

.\!k-bottom-1 {
    bottom: 1px !important;
}

.k-bottom--1 {
    bottom: -1px;
}

.\!k-bottom--1 {
    bottom: -1px !important;
}

.k-left-0 {
    left: 0;
}

.\!k-left-0 {
    left: 0 !important;
}

.k-left-1 {
    left: 1px;
}

.\!k-left-1 {
    left: 1px !important;
}

.k-left--1 {
    left: -1px;
}

.\!k-left--1 {
    left: -1px !important;
}

.k-top-left-0 {
    top: 0;
    left: 0;
}

.\!k-top-left-0 {
    top: 0 !important;
    left: 0 !important;
}

.k-top-left-1 {
    top: 1px;
    left: 1px;
}

.\!k-top-left-1 {
    top: 1px !important;
    left: 1px !important;
}

.k-top-left--1 {
    top: -1px;
    left: -1px;
}

.\!k-top-left--1 {
    top: -1px !important;
    left: -1px !important;
}

.k-top-right-0 {
    top: 0;
    right: 0;
}

.\!k-top-right-0 {
    top: 0 !important;
    right: 0 !important;
}

.k-top-right-1 {
    top: 1px;
    right: 1px;
}

.\!k-top-right-1 {
    top: 1px !important;
    right: 1px !important;
}

.k-top-right--1 {
    top: -1px;
    right: -1px;
}

.\!k-top-right--1 {
    top: -1px !important;
    right: -1px !important;
}

.k-bottom-left-0 {
    bottom: 0;
    left: 0;
}

.\!k-bottom-left-0 {
    bottom: 0 !important;
    left: 0 !important;
}

.k-bottom-left-1 {
    bottom: 1px;
    left: 1px;
}

.\!k-bottom-left-1 {
    bottom: 1px !important;
    left: 1px !important;
}

.k-bottom-left--1 {
    bottom: -1px;
    left: -1px;
}

.\!k-bottom-left--1 {
    bottom: -1px !important;
    left: -1px !important;
}

.k-bottom-right-0 {
    bottom: 0;
    right: 0;
}

.\!k-bottom-right-0 {
    bottom: 0 !important;
    right: 0 !important;
}

.k-bottom-right-1 {
    bottom: 1px;
    right: 1px;
}

.\!k-bottom-right-1 {
    bottom: 1px !important;
    right: 1px !important;
}

.k-bottom-right--1 {
    bottom: -1px;
    right: -1px;
}

.\!k-bottom-right--1 {
    bottom: -1px !important;
    right: -1px !important;
}

.k-top-start, .k-pos-top-start {
    top: 0;
    inset-inline-start: 0;
}

.k-top-end, .k-pos-top-end {
    top: 0;
    inset-inline-end: 0;
}

.k-bottom-start, .k-pos-bottom-start {
    bottom: 0;
    inset-inline-start: 0;
}

.k-bottom-end, .k-pos-bottom-end {
    bottom: 0;
    inset-inline-end: 0;
}

.k-top-center, .k-pos-top-center {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.k-middle-left, .k-middle-start, .k-pos-middle-start {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.k-middle-center {
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
}

.k-middle-right, .k-middle-end, .k-pos-middle-end {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.k-bottom-center, .k-pos-bottom-center {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.k-top, .k-pos-top {
    top: 0;
}

.k-right, .k-pos-right {
    right: 0;
}

.k-bottom, .k-pos-bottom {
    bottom: 0;
}

.k-left, .k-pos-left {
    left: 0;
}

.k-visibility-visible, .k-visible {
    visibility: visible;
}

.\!k-visibility-visible, .\!k-visible {
    visibility: visible !important;
}

.k-visibility-hidden, .k-invisible {
    visibility: hidden;
}

.\!k-visibility-hidden, .\!k-invisible {
    visibility: hidden !important;
}

.k-z-0 {
    z-index: 0;
}

.\!k-z-0 {
    z-index: 0 !important;
}

.k-z-10 {
    z-index: 10;
}

.\!k-z-10 {
    z-index: 10 !important;
}

.k-z-20 {
    z-index: 20;
}

.\!k-z-20 {
    z-index: 20 !important;
}

.k-z-30 {
    z-index: 30;
}

.\!k-z-30 {
    z-index: 30 !important;
}

.k-z-40 {
    z-index: 40;
}

.\!k-z-40 {
    z-index: 40 !important;
}

.k-z-50 {
    z-index: 50;
}

.\!k-z-50 {
    z-index: 50 !important;
}

.k-z-auto {
    z-index: auto;
}

.\!k-z-auto {
    z-index: auto !important;
}

.k-align-content-normal {
    align-content: normal;
}

.\!k-align-content-normal {
    align-content: normal !important;
}

.k-align-content-stretch {
    align-content: stretch;
}

.\!k-align-content-stretch {
    align-content: stretch !important;
}

.k-align-content-start {
    align-content: flex-start;
}

.\!k-align-content-start {
    align-content: flex-start !important;
}

.k-align-content-end {
    align-content: flex-end;
}

.\!k-align-content-end {
    align-content: flex-end !important;
}

.k-align-content-center {
    align-content: center;
}

.\!k-align-content-center {
    align-content: center !important;
}

.k-align-content-between {
    align-content: space-between;
}

.\!k-align-content-between {
    align-content: space-between !important;
}

.k-align-content-around {
    align-content: space-around;
}

.\!k-align-content-around {
    align-content: space-around !important;
}

.k-align-content-evenly {
    align-content: space-evenly;
}

.\!k-align-content-evenly {
    align-content: space-evenly !important;
}

.k-align-items-normal {
    align-items: normal;
}

.\!k-align-items-normal {
    align-items: normal !important;
}

.k-align-items-start {
    align-items: flex-start;
}

.\!k-align-items-start {
    align-items: flex-start !important;
}

.k-align-items-end {
    align-items: flex-end;
}

.\!k-align-items-end {
    align-items: flex-end !important;
}

.k-align-items-center {
    align-items: center;
}

.\!k-align-items-center {
    align-items: center !important;
}

.k-align-items-stretch {
    align-items: stretch;
}

.\!k-align-items-stretch {
    align-items: stretch !important;
}

.k-align-self-auto {
    align-self: auto;
}

.\!k-align-self-auto {
    align-self: auto !important;
}

.k-align-self-normal {
    align-self: normal;
}

.\!k-align-self-normal {
    align-self: normal !important;
}

.k-align-self-stretch {
    align-self: stretch;
}

.\!k-align-self-stretch {
    align-self: stretch !important;
}

.k-align-self-start {
    align-self: flex-start;
}

.\!k-align-self-start {
    align-self: flex-start !important;
}

.k-align-self-end {
    align-self: flex-end;
}

.\!k-align-self-end {
    align-self: flex-end !important;
}

.k-align-self-center {
    align-self: center;
}

.\!k-align-self-center {
    align-self: center !important;
}

.k-basis-0 {
    flex-basis: 0;
}

.\!k-basis-0 {
    flex-basis: 0 !important;
}

.k-basis-1px {
    flex-basis: 1px;
}

.\!k-basis-1px {
    flex-basis: 1px !important;
}

.k-basis-\.5 {
    flex-basis: 2px;
}

.\!k-basis-\.5 {
    flex-basis: 2px !important;
}

.k-basis-1 {
    flex-basis: 4px;
}

.\!k-basis-1 {
    flex-basis: 4px !important;
}

.k-basis-1\.5 {
    flex-basis: 6px;
}

.\!k-basis-1\.5 {
    flex-basis: 6px !important;
}

.k-basis-2 {
    flex-basis: 8px;
}

.\!k-basis-2 {
    flex-basis: 8px !important;
}

.k-basis-2\.5 {
    flex-basis: 10px;
}

.\!k-basis-2\.5 {
    flex-basis: 10px !important;
}

.k-basis-3 {
    flex-basis: 12px;
}

.\!k-basis-3 {
    flex-basis: 12px !important;
}

.k-basis-3\.5 {
    flex-basis: 14px;
}

.\!k-basis-3\.5 {
    flex-basis: 14px !important;
}

.k-basis-4 {
    flex-basis: 16px;
}

.\!k-basis-4 {
    flex-basis: 16px !important;
}

.k-basis-4\.5 {
    flex-basis: 18px;
}

.\!k-basis-4\.5 {
    flex-basis: 18px !important;
}

.k-basis-5 {
    flex-basis: 20px;
}

.\!k-basis-5 {
    flex-basis: 20px !important;
}

.k-basis-5\.5 {
    flex-basis: 22px;
}

.\!k-basis-5\.5 {
    flex-basis: 22px !important;
}

.k-basis-6 {
    flex-basis: 24px;
}

.\!k-basis-6 {
    flex-basis: 24px !important;
}

.k-basis-6\.5 {
    flex-basis: 26px;
}

.\!k-basis-6\.5 {
    flex-basis: 26px !important;
}

.k-basis-7 {
    flex-basis: 28px;
}

.\!k-basis-7 {
    flex-basis: 28px !important;
}

.k-basis-7\.5 {
    flex-basis: 30px;
}

.\!k-basis-7\.5 {
    flex-basis: 30px !important;
}

.k-basis-8 {
    flex-basis: 32px;
}

.\!k-basis-8 {
    flex-basis: 32px !important;
}

.k-basis-9 {
    flex-basis: 36px;
}

.\!k-basis-9 {
    flex-basis: 36px !important;
}

.k-basis-10 {
    flex-basis: 40px;
}

.\!k-basis-10 {
    flex-basis: 40px !important;
}

.k-basis-11 {
    flex-basis: 44px;
}

.\!k-basis-11 {
    flex-basis: 44px !important;
}

.k-basis-12 {
    flex-basis: 48px;
}

.\!k-basis-12 {
    flex-basis: 48px !important;
}

.k-basis-13 {
    flex-basis: 52px;
}

.\!k-basis-13 {
    flex-basis: 52px !important;
}

.k-basis-14 {
    flex-basis: 56px;
}

.\!k-basis-14 {
    flex-basis: 56px !important;
}

.k-basis-15 {
    flex-basis: 60px;
}

.\!k-basis-15 {
    flex-basis: 60px !important;
}

.k-basis-16 {
    flex-basis: 64px;
}

.\!k-basis-16 {
    flex-basis: 64px !important;
}

.k-basis-17 {
    flex-basis: 68px;
}

.\!k-basis-17 {
    flex-basis: 68px !important;
}

.k-basis-18 {
    flex-basis: 72px;
}

.\!k-basis-18 {
    flex-basis: 72px !important;
}

.k-basis-19 {
    flex-basis: 76px;
}

.\!k-basis-19 {
    flex-basis: 76px !important;
}

.k-basis-20 {
    flex-basis: 80px;
}

.\!k-basis-20 {
    flex-basis: 80px !important;
}

.k-basis-21 {
    flex-basis: 84px;
}

.\!k-basis-21 {
    flex-basis: 84px !important;
}

.k-basis-22 {
    flex-basis: 88px;
}

.\!k-basis-22 {
    flex-basis: 88px !important;
}

.k-basis-23 {
    flex-basis: 92px;
}

.\!k-basis-23 {
    flex-basis: 92px !important;
}

.k-basis-24 {
    flex-basis: 96px;
}

.\!k-basis-24 {
    flex-basis: 96px !important;
}

.k-basis-auto {
    flex-basis: auto;
}

.\!k-basis-auto {
    flex-basis: auto !important;
}

.k-basis-1\/2 {
    flex-basis: 50%
}

.\!k-basis-1\/2 {
    flex-basis: 50% !important;
}

.k-basis-1\/3 {
    flex-basis: 33.333333%
}

.\!k-basis-1\/3 {
    flex-basis: 33.333333% !important;
}

.k-basis-2\/3 {
    flex-basis: 66.666667%
}

.\!k-basis-2\/3 {
    flex-basis: 66.666667% !important;
}

.k-basis-1\/4 {
    flex-basis: 25%
}

.\!k-basis-1\/4 {
    flex-basis: 25% !important;
}

.k-basis-2\/4 {
    flex-basis: 50%
}

.\!k-basis-2\/4 {
    flex-basis: 50% !important;
}

.k-basis-3\/4 {
    flex-basis: 75%
}

.\!k-basis-3\/4 {
    flex-basis: 75% !important;
}

.k-basis-1\/5 {
    flex-basis: 20%
}

.\!k-basis-1\/5 {
    flex-basis: 20% !important;
}

.k-basis-2\/5 {
    flex-basis: 40%
}

.\!k-basis-2\/5 {
    flex-basis: 40% !important;
}

.k-basis-3\/5 {
    flex-basis: 60%
}

.\!k-basis-3\/5 {
    flex-basis: 60% !important;
}

.k-basis-4\/5 {
    flex-basis: 80%
}

.\!k-basis-4\/5 {
    flex-basis: 80% !important;
}

.k-basis-1\/6 {
    flex-basis: 16.666667%
}

.\!k-basis-1\/6 {
    flex-basis: 16.666667% !important;
}

.k-basis-2\/6 {
    flex-basis: 33.333333%
}

.\!k-basis-2\/6 {
    flex-basis: 33.333333% !important;
}

.k-basis-3\/6 {
    flex-basis: 50%
}

.\!k-basis-3\/6 {
    flex-basis: 50% !important;
}

.k-basis-4\/6 {
    flex-basis: 66.666667%
}

.\!k-basis-4\/6 {
    flex-basis: 66.666667% !important;
}

.k-basis-5\/6 {
    flex-basis: 83.333333%
}

.\!k-basis-5\/6 {
    flex-basis: 83.333333% !important;
}

.k-basis-1\/12 {
    flex-basis: 8.333333%
}

.\!k-basis-1\/12 {
    flex-basis: 8.333333% !important;
}

.k-basis-2\/12 {
    flex-basis: 16.666667%
}

.\!k-basis-2\/12 {
    flex-basis: 16.666667% !important;
}

.k-basis-3\/12 {
    flex-basis: 25%
}

.\!k-basis-3\/12 {
    flex-basis: 25% !important;
}

.k-basis-4\/12 {
    flex-basis: 33.333333%
}

.\!k-basis-4\/12 {
    flex-basis: 33.333333% !important;
}

.k-basis-5\/12 {
    flex-basis: 41.666667%
}

.\!k-basis-5\/12 {
    flex-basis: 41.666667% !important;
}

.k-basis-6\/12 {
    flex-basis: 50%
}

.\!k-basis-6\/12 {
    flex-basis: 50% !important;
}

.k-basis-7\/12 {
    flex-basis: 58.333333%
}

.\!k-basis-7\/12 {
    flex-basis: 58.333333% !important;
}

.k-basis-8\/12 {
    flex-basis: 66.666667%
}

.\!k-basis-8\/12 {
    flex-basis: 66.666667% !important;
}

.k-basis-9\/12 {
    flex-basis: 75%
}

.\!k-basis-9\/12 {
    flex-basis: 75% !important;
}

.k-basis-10\/12 {
    flex-basis: 83.333333%
}

.\!k-basis-10\/12 {
    flex-basis: 83.333333% !important;
}

.k-basis-11\/12 {
    flex-basis: 91.666667%
}

.\!k-basis-11\/12 {
    flex-basis: 91.666667% !important;
}

.k-basis-full {
    flex-basis: 100%
}

.\!k-basis-full {
    flex-basis: 100% !important;
}

.k-basis-min {
    flex-basis: min-content;
}

.\!k-basis-min {
    flex-basis: min-content !important;
}

.k-basis-max {
    flex-basis: max-content;
}

.\!k-basis-max {
    flex-basis: max-content !important;
}

.k-basis-fit {
    flex-basis: fit-content;
}

.\!k-basis-fit {
    flex-basis: fit-content !important;
}

.k-flex-basis-0 {
    flex-basis: 0;
}

.\!k-flex-basis-0 {
    flex-basis: 0 !important;
}

.k-flex-basis-1px {
    flex-basis: 1px;
}

.\!k-flex-basis-1px {
    flex-basis: 1px !important;
}

.k-flex-basis-\.5 {
    flex-basis: 2px;
}

.\!k-flex-basis-\.5 {
    flex-basis: 2px !important;
}

.k-flex-basis-1 {
    flex-basis: 4px;
}

.\!k-flex-basis-1 {
    flex-basis: 4px !important;
}

.k-flex-basis-1\.5 {
    flex-basis: 6px;
}

.\!k-flex-basis-1\.5 {
    flex-basis: 6px !important;
}

.k-flex-basis-2 {
    flex-basis: 8px;
}

.\!k-flex-basis-2 {
    flex-basis: 8px !important;
}

.k-flex-basis-2\.5 {
    flex-basis: 10px;
}

.\!k-flex-basis-2\.5 {
    flex-basis: 10px !important;
}

.k-flex-basis-3 {
    flex-basis: 12px;
}

.\!k-flex-basis-3 {
    flex-basis: 12px !important;
}

.k-flex-basis-3\.5 {
    flex-basis: 14px;
}

.\!k-flex-basis-3\.5 {
    flex-basis: 14px !important;
}

.k-flex-basis-4 {
    flex-basis: 16px;
}

.\!k-flex-basis-4 {
    flex-basis: 16px !important;
}

.k-flex-basis-4\.5 {
    flex-basis: 18px;
}

.\!k-flex-basis-4\.5 {
    flex-basis: 18px !important;
}

.k-flex-basis-5 {
    flex-basis: 20px;
}

.\!k-flex-basis-5 {
    flex-basis: 20px !important;
}

.k-flex-basis-5\.5 {
    flex-basis: 22px;
}

.\!k-flex-basis-5\.5 {
    flex-basis: 22px !important;
}

.k-flex-basis-6 {
    flex-basis: 24px;
}

.\!k-flex-basis-6 {
    flex-basis: 24px !important;
}

.k-flex-basis-6\.5 {
    flex-basis: 26px;
}

.\!k-flex-basis-6\.5 {
    flex-basis: 26px !important;
}

.k-flex-basis-7 {
    flex-basis: 28px;
}

.\!k-flex-basis-7 {
    flex-basis: 28px !important;
}

.k-flex-basis-7\.5 {
    flex-basis: 30px;
}

.\!k-flex-basis-7\.5 {
    flex-basis: 30px !important;
}

.k-flex-basis-8 {
    flex-basis: 32px;
}

.\!k-flex-basis-8 {
    flex-basis: 32px !important;
}

.k-flex-basis-9 {
    flex-basis: 36px;
}

.\!k-flex-basis-9 {
    flex-basis: 36px !important;
}

.k-flex-basis-10 {
    flex-basis: 40px;
}

.\!k-flex-basis-10 {
    flex-basis: 40px !important;
}

.k-flex-basis-11 {
    flex-basis: 44px;
}

.\!k-flex-basis-11 {
    flex-basis: 44px !important;
}

.k-flex-basis-12 {
    flex-basis: 48px;
}

.\!k-flex-basis-12 {
    flex-basis: 48px !important;
}

.k-flex-basis-13 {
    flex-basis: 52px;
}

.\!k-flex-basis-13 {
    flex-basis: 52px !important;
}

.k-flex-basis-14 {
    flex-basis: 56px;
}

.\!k-flex-basis-14 {
    flex-basis: 56px !important;
}

.k-flex-basis-15 {
    flex-basis: 60px;
}

.\!k-flex-basis-15 {
    flex-basis: 60px !important;
}

.k-flex-basis-16 {
    flex-basis: 64px;
}

.\!k-flex-basis-16 {
    flex-basis: 64px !important;
}

.k-flex-basis-17 {
    flex-basis: 68px;
}

.\!k-flex-basis-17 {
    flex-basis: 68px !important;
}

.k-flex-basis-18 {
    flex-basis: 72px;
}

.\!k-flex-basis-18 {
    flex-basis: 72px !important;
}

.k-flex-basis-19 {
    flex-basis: 76px;
}

.\!k-flex-basis-19 {
    flex-basis: 76px !important;
}

.k-flex-basis-20 {
    flex-basis: 80px;
}

.\!k-flex-basis-20 {
    flex-basis: 80px !important;
}

.k-flex-basis-21 {
    flex-basis: 84px;
}

.\!k-flex-basis-21 {
    flex-basis: 84px !important;
}

.k-flex-basis-22 {
    flex-basis: 88px;
}

.\!k-flex-basis-22 {
    flex-basis: 88px !important;
}

.k-flex-basis-23 {
    flex-basis: 92px;
}

.\!k-flex-basis-23 {
    flex-basis: 92px !important;
}

.k-flex-basis-24 {
    flex-basis: 96px;
}

.\!k-flex-basis-24 {
    flex-basis: 96px !important;
}

.k-flex-basis-auto {
    flex-basis: auto;
}

.\!k-flex-basis-auto {
    flex-basis: auto !important;
}

.k-flex-basis-1\/2 {
    flex-basis: 50%
}

.\!k-flex-basis-1\/2 {
    flex-basis: 50% !important;
}

.k-flex-basis-1\/3 {
    flex-basis: 33.333333%
}

.\!k-flex-basis-1\/3 {
    flex-basis: 33.333333% !important;
}

.k-flex-basis-2\/3 {
    flex-basis: 66.666667%
}

.\!k-flex-basis-2\/3 {
    flex-basis: 66.666667% !important;
}

.k-flex-basis-1\/4 {
    flex-basis: 25%
}

.\!k-flex-basis-1\/4 {
    flex-basis: 25% !important;
}

.k-flex-basis-2\/4 {
    flex-basis: 50%
}

.\!k-flex-basis-2\/4 {
    flex-basis: 50% !important;
}

.k-flex-basis-3\/4 {
    flex-basis: 75%
}

.\!k-flex-basis-3\/4 {
    flex-basis: 75% !important;
}

.k-flex-basis-1\/5 {
    flex-basis: 20%
}

.\!k-flex-basis-1\/5 {
    flex-basis: 20% !important;
}

.k-flex-basis-2\/5 {
    flex-basis: 40%
}

.\!k-flex-basis-2\/5 {
    flex-basis: 40% !important;
}

.k-flex-basis-3\/5 {
    flex-basis: 60%
}

.\!k-flex-basis-3\/5 {
    flex-basis: 60% !important;
}

.k-flex-basis-4\/5 {
    flex-basis: 80%
}

.\!k-flex-basis-4\/5 {
    flex-basis: 80% !important;
}

.k-flex-basis-1\/6 {
    flex-basis: 16.666667%
}

.\!k-flex-basis-1\/6 {
    flex-basis: 16.666667% !important;
}

.k-flex-basis-2\/6 {
    flex-basis: 33.333333%
}

.\!k-flex-basis-2\/6 {
    flex-basis: 33.333333% !important;
}

.k-flex-basis-3\/6 {
    flex-basis: 50%
}

.\!k-flex-basis-3\/6 {
    flex-basis: 50% !important;
}

.k-flex-basis-4\/6 {
    flex-basis: 66.666667%
}

.\!k-flex-basis-4\/6 {
    flex-basis: 66.666667% !important;
}

.k-flex-basis-5\/6 {
    flex-basis: 83.333333%
}

.\!k-flex-basis-5\/6 {
    flex-basis: 83.333333% !important;
}

.k-flex-basis-1\/12 {
    flex-basis: 8.333333%
}

.\!k-flex-basis-1\/12 {
    flex-basis: 8.333333% !important;
}

.k-flex-basis-2\/12 {
    flex-basis: 16.666667%
}

.\!k-flex-basis-2\/12 {
    flex-basis: 16.666667% !important;
}

.k-flex-basis-3\/12 {
    flex-basis: 25%
}

.\!k-flex-basis-3\/12 {
    flex-basis: 25% !important;
}

.k-flex-basis-4\/12 {
    flex-basis: 33.333333%
}

.\!k-flex-basis-4\/12 {
    flex-basis: 33.333333% !important;
}

.k-flex-basis-5\/12 {
    flex-basis: 41.666667%
}

.\!k-flex-basis-5\/12 {
    flex-basis: 41.666667% !important;
}

.k-flex-basis-6\/12 {
    flex-basis: 50%
}

.\!k-flex-basis-6\/12 {
    flex-basis: 50% !important;
}

.k-flex-basis-7\/12 {
    flex-basis: 58.333333%
}

.\!k-flex-basis-7\/12 {
    flex-basis: 58.333333% !important;
}

.k-flex-basis-8\/12 {
    flex-basis: 66.666667%
}

.\!k-flex-basis-8\/12 {
    flex-basis: 66.666667% !important;
}

.k-flex-basis-9\/12 {
    flex-basis: 75%
}

.\!k-flex-basis-9\/12 {
    flex-basis: 75% !important;
}

.k-flex-basis-10\/12 {
    flex-basis: 83.333333%
}

.\!k-flex-basis-10\/12 {
    flex-basis: 83.333333% !important;
}

.k-flex-basis-11\/12 {
    flex-basis: 91.666667%
}

.\!k-flex-basis-11\/12 {
    flex-basis: 91.666667% !important;
}

.k-flex-basis-full {
    flex-basis: 100%
}

.\!k-flex-basis-full {
    flex-basis: 100% !important;
}

.k-flex-basis-min {
    flex-basis: min-content;
}

.\!k-flex-basis-min {
    flex-basis: min-content !important;
}

.k-flex-basis-max {
    flex-basis: max-content;
}

.\!k-flex-basis-max {
    flex-basis: max-content !important;
}

.k-flex-basis-fit {
    flex-basis: fit-content;
}

.\!k-flex-basis-fit {
    flex-basis: fit-content !important;
}

.k-flex-row, .k-d-flex-row {
    flex-direction: row;
}

.\!k-flex-row, .\!k-d-flex-row, .\!k-d-flex-col {
    flex-direction: row !important;
}

.k-flex-row-reverse {
    flex-direction: row-reverse;
}

.\!k-flex-row-reverse {
    flex-direction: row-reverse !important;
}

.k-flex-col, .k-d-flex-col, .k-flex-column {
    flex-direction: column;
}

.\!k-flex-col {
    flex-direction: column !important;
}

.k-flex-col-reverse, .k-flex-column-reverse {
    flex-direction: column-reverse;
}

.\!k-flex-col-reverse {
    flex-direction: column-reverse !important;
}

.k-grow {
    flex-grow: 1;
}

.\!k-grow {
    flex-grow: 1 !important;
}

.k-grow-0 {
    flex-grow: 0;
}

.\!k-grow-0 {
    flex-grow: 0 !important;
}

.k-flex-grow {
    flex-grow: 1;
}

.\!k-flex-grow {
    flex-grow: 1 !important;
}

.k-flex-grow-0 {
    flex-grow: 0;
}

.\!k-flex-grow-0 {
    flex-grow: 0 !important;
}

.k-shrink {
    flex-shrink: 1;
}

.\!k-shrink {
    flex-shrink: 1 !important;
}

.k-shrink-0 {
    flex-shrink: 0;
}

.\!k-shrink-0 {
    flex-shrink: 0 !important;
}

.k-flex-shrink {
    flex-shrink: 1;
}

.\!k-flex-shrink {
    flex-shrink: 1 !important;
}

.k-flex-shrink-0 {
    flex-shrink: 0;
}

.\!k-flex-shrink-0 {
    flex-shrink: 0 !important;
}

.k-flex-wrap {
    flex-wrap: wrap;
}

.\!k-flex-wrap {
    flex-wrap: wrap !important;
}

.k-flex-wrap-reverse {
    flex-wrap: wrap-reverse;
}

.\!k-flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
}

.k-flex-nowrap {
    flex-wrap: nowrap;
}

.\!k-flex-nowrap {
    flex-wrap: nowrap !important;
}

.k-flex-1 {
    flex: 1 1 0%
}

.\!k-flex-1 {
    flex: 1 1 0% !important;
}

.k-flex-auto {
    flex: 1 1 auto;
}

.\!k-flex-auto {
    flex: 1 1 auto !important;
}

.k-flex-initial {
    flex: 0 1 auto;
}

.\!k-flex-initial {
    flex: 0 1 auto !important;
}

.k-flex-none {
    flex: none;
}

.\!k-flex-none {
    flex: none !important;
}

.k-gap-0 {
    gap: 0;
}

.\!k-gap-0 {
    gap: 0 !important;
}

.k-gap-1px {
    gap: 1px;
}

.\!k-gap-1px {
    gap: 1px !important;
}

.k-gap-\.5 {
    gap: 2px;
}

.\!k-gap-\.5 {
    gap: 2px !important;
}

.k-gap-1 {
    gap: 4px;
}

.\!k-gap-1 {
    gap: 4px !important;
}

.k-gap-1\.5 {
    gap: 6px;
}

.\!k-gap-1\.5 {
    gap: 6px !important;
}

.k-gap-2 {
    gap: 8px;
}

.\!k-gap-2 {
    gap: 8px !important;
}

.k-gap-2\.5 {
    gap: 10px;
}

.\!k-gap-2\.5 {
    gap: 10px !important;
}

.k-gap-3 {
    gap: 12px;
}

.\!k-gap-3 {
    gap: 12px !important;
}

.k-gap-3\.5 {
    gap: 14px;
}

.\!k-gap-3\.5 {
    gap: 14px !important;
}

.k-gap-4 {
    gap: 16px;
}

.\!k-gap-4 {
    gap: 16px !important;
}

.k-gap-4\.5 {
    gap: 18px;
}

.\!k-gap-4\.5 {
    gap: 18px !important;
}

.k-gap-5 {
    gap: 20px;
}

.\!k-gap-5 {
    gap: 20px !important;
}

.k-gap-5\.5 {
    gap: 22px;
}

.\!k-gap-5\.5 {
    gap: 22px !important;
}

.k-gap-6 {
    gap: 24px;
}

.\!k-gap-6 {
    gap: 24px !important;
}

.k-gap-6\.5 {
    gap: 26px;
}

.\!k-gap-6\.5 {
    gap: 26px !important;
}

.k-gap-7 {
    gap: 28px;
}

.\!k-gap-7 {
    gap: 28px !important;
}

.k-gap-7\.5 {
    gap: 30px;
}

.\!k-gap-7\.5 {
    gap: 30px !important;
}

.k-gap-8 {
    gap: 32px;
}

.\!k-gap-8 {
    gap: 32px !important;
}

.k-gap-9 {
    gap: 36px;
}

.\!k-gap-9 {
    gap: 36px !important;
}

.k-gap-10 {
    gap: 40px;
}

.\!k-gap-10 {
    gap: 40px !important;
}

.k-gap-11 {
    gap: 44px;
}

.\!k-gap-11 {
    gap: 44px !important;
}

.k-gap-12 {
    gap: 48px;
}

.\!k-gap-12 {
    gap: 48px !important;
}

.k-gap-13 {
    gap: 52px;
}

.\!k-gap-13 {
    gap: 52px !important;
}

.k-gap-14 {
    gap: 56px;
}

.\!k-gap-14 {
    gap: 56px !important;
}

.k-gap-15 {
    gap: 60px;
}

.\!k-gap-15 {
    gap: 60px !important;
}

.k-gap-16 {
    gap: 64px;
}

.\!k-gap-16 {
    gap: 64px !important;
}

.k-gap-17 {
    gap: 68px;
}

.\!k-gap-17 {
    gap: 68px !important;
}

.k-gap-18 {
    gap: 72px;
}

.\!k-gap-18 {
    gap: 72px !important;
}

.k-gap-19 {
    gap: 76px;
}

.\!k-gap-19 {
    gap: 76px !important;
}

.k-gap-20 {
    gap: 80px;
}

.\!k-gap-20 {
    gap: 80px !important;
}

.k-gap-21 {
    gap: 84px;
}

.\!k-gap-21 {
    gap: 84px !important;
}

.k-gap-22 {
    gap: 88px;
}

.\!k-gap-22 {
    gap: 88px !important;
}

.k-gap-23 {
    gap: 92px;
}

.\!k-gap-23 {
    gap: 92px !important;
}

.k-gap-24 {
    gap: 96px;
}

.\!k-gap-24 {
    gap: 96px !important;
}

.k-gap-xs {
    gap: 4px;
}

.\!k-gap-xs {
    gap: 4px !important;
}

.k-gap-sm {
    gap: 8px;
}

.\!k-gap-sm {
    gap: 8px !important;
}

.k-gap-md {
    gap: 12px;
}

.\!k-gap-md {
    gap: 12px !important;
}

.k-gap-lg {
    gap: 16px;
}

.\!k-gap-lg {
    gap: 16px !important;
}

.k-gap-xl {
    gap: 24px;
}

.\!k-gap-xl {
    gap: 24px !important;
}

.k-gap-thin {
    gap: 2px;
}

.\!k-gap-thin {
    gap: 2px !important;
}

.k-gap-hair {
    gap: 1px;
}

.\!k-gap-hair {
    gap: 1px !important;
}

.k-gap-x-0 {
    -moz-column-gap: 0;
    column-gap: 0;
}

.\!k-gap-x-0 {
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
}

.k-gap-x-1px {
    -moz-column-gap: 1px;
    column-gap: 1px;
}

.\!k-gap-x-1px {
    -moz-column-gap: 1px !important;
    column-gap: 1px !important;
}

.k-gap-x-\.5 {
    -moz-column-gap: 2px;
    column-gap: 2px;
}

.\!k-gap-x-\.5 {
    -moz-column-gap: 2px !important;
    column-gap: 2px !important;
}

.k-gap-x-1 {
    -moz-column-gap: 4px;
    column-gap: 4px;
}

.\!k-gap-x-1 {
    -moz-column-gap: 4px !important;
    column-gap: 4px !important;
}

.k-gap-x-1\.5 {
    -moz-column-gap: 6px;
    column-gap: 6px;
}

.\!k-gap-x-1\.5 {
    -moz-column-gap: 6px !important;
    column-gap: 6px !important;
}

.k-gap-x-2 {
    -moz-column-gap: 8px;
    column-gap: 8px;
}

.\!k-gap-x-2 {
    -moz-column-gap: 8px !important;
    column-gap: 8px !important;
}

.k-gap-x-2\.5 {
    -moz-column-gap: 10px;
    column-gap: 10px;
}

.\!k-gap-x-2\.5 {
    -moz-column-gap: 10px !important;
    column-gap: 10px !important;
}

.k-gap-x-3 {
    -moz-column-gap: 12px;
    column-gap: 12px;
}

.\!k-gap-x-3 {
    -moz-column-gap: 12px !important;
    column-gap: 12px !important;
}

.k-gap-x-3\.5 {
    -moz-column-gap: 14px;
    column-gap: 14px;
}

.\!k-gap-x-3\.5 {
    -moz-column-gap: 14px !important;
    column-gap: 14px !important;
}

.k-gap-x-4 {
    -moz-column-gap: 16px;
    column-gap: 16px;
}

.\!k-gap-x-4 {
    -moz-column-gap: 16px !important;
    column-gap: 16px !important;
}

.k-gap-x-4\.5 {
    -moz-column-gap: 18px;
    column-gap: 18px;
}

.\!k-gap-x-4\.5 {
    -moz-column-gap: 18px !important;
    column-gap: 18px !important;
}

.k-gap-x-5 {
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.\!k-gap-x-5 {
    -moz-column-gap: 20px !important;
    column-gap: 20px !important;
}

.k-gap-x-5\.5 {
    -moz-column-gap: 22px;
    column-gap: 22px;
}

.\!k-gap-x-5\.5 {
    -moz-column-gap: 22px !important;
    column-gap: 22px !important;
}

.k-gap-x-6 {
    -moz-column-gap: 24px;
    column-gap: 24px;
}

.\!k-gap-x-6 {
    -moz-column-gap: 24px !important;
    column-gap: 24px !important;
}

.k-gap-x-6\.5 {
    -moz-column-gap: 26px;
    column-gap: 26px;
}

.\!k-gap-x-6\.5 {
    -moz-column-gap: 26px !important;
    column-gap: 26px !important;
}

.k-gap-x-7 {
    -moz-column-gap: 28px;
    column-gap: 28px;
}

.\!k-gap-x-7 {
    -moz-column-gap: 28px !important;
    column-gap: 28px !important;
}

.k-gap-x-7\.5 {
    -moz-column-gap: 30px;
    column-gap: 30px;
}

.\!k-gap-x-7\.5 {
    -moz-column-gap: 30px !important;
    column-gap: 30px !important;
}

.k-gap-x-8 {
    -moz-column-gap: 32px;
    column-gap: 32px;
}

.\!k-gap-x-8 {
    -moz-column-gap: 32px !important;
    column-gap: 32px !important;
}

.k-gap-x-9 {
    -moz-column-gap: 36px;
    column-gap: 36px;
}

.\!k-gap-x-9 {
    -moz-column-gap: 36px !important;
    column-gap: 36px !important;
}

.k-gap-x-10 {
    -moz-column-gap: 40px;
    column-gap: 40px;
}

.\!k-gap-x-10 {
    -moz-column-gap: 40px !important;
    column-gap: 40px !important;
}

.k-gap-x-11 {
    -moz-column-gap: 44px;
    column-gap: 44px;
}

.\!k-gap-x-11 {
    -moz-column-gap: 44px !important;
    column-gap: 44px !important;
}

.k-gap-x-12 {
    -moz-column-gap: 48px;
    column-gap: 48px;
}

.\!k-gap-x-12 {
    -moz-column-gap: 48px !important;
    column-gap: 48px !important;
}

.k-gap-x-13 {
    -moz-column-gap: 52px;
    column-gap: 52px;
}

.\!k-gap-x-13 {
    -moz-column-gap: 52px !important;
    column-gap: 52px !important;
}

.k-gap-x-14 {
    -moz-column-gap: 56px;
    column-gap: 56px;
}

.\!k-gap-x-14 {
    -moz-column-gap: 56px !important;
    column-gap: 56px !important;
}

.k-gap-x-15 {
    -moz-column-gap: 60px;
    column-gap: 60px;
}

.\!k-gap-x-15 {
    -moz-column-gap: 60px !important;
    column-gap: 60px !important;
}

.k-gap-x-16 {
    -moz-column-gap: 64px;
    column-gap: 64px;
}

.\!k-gap-x-16 {
    -moz-column-gap: 64px !important;
    column-gap: 64px !important;
}

.k-gap-x-17 {
    -moz-column-gap: 68px;
    column-gap: 68px;
}

.\!k-gap-x-17 {
    -moz-column-gap: 68px !important;
    column-gap: 68px !important;
}

.k-gap-x-18 {
    -moz-column-gap: 72px;
    column-gap: 72px;
}

.\!k-gap-x-18 {
    -moz-column-gap: 72px !important;
    column-gap: 72px !important;
}

.k-gap-x-19 {
    -moz-column-gap: 76px;
    column-gap: 76px;
}

.\!k-gap-x-19 {
    -moz-column-gap: 76px !important;
    column-gap: 76px !important;
}

.k-gap-x-20 {
    -moz-column-gap: 80px;
    column-gap: 80px;
}

.\!k-gap-x-20 {
    -moz-column-gap: 80px !important;
    column-gap: 80px !important;
}

.k-gap-x-21 {
    -moz-column-gap: 84px;
    column-gap: 84px;
}

.\!k-gap-x-21 {
    -moz-column-gap: 84px !important;
    column-gap: 84px !important;
}

.k-gap-x-22 {
    -moz-column-gap: 88px;
    column-gap: 88px;
}

.\!k-gap-x-22 {
    -moz-column-gap: 88px !important;
    column-gap: 88px !important;
}

.k-gap-x-23 {
    -moz-column-gap: 92px;
    column-gap: 92px;
}

.\!k-gap-x-23 {
    -moz-column-gap: 92px !important;
    column-gap: 92px !important;
}

.k-gap-x-24 {
    -moz-column-gap: 96px;
    column-gap: 96px;
}

.\!k-gap-x-24 {
    -moz-column-gap: 96px !important;
    column-gap: 96px !important;
}

.k-gap-x-xs {
    -moz-column-gap: 4px;
    column-gap: 4px;
}

.\!k-gap-x-xs {
    -moz-column-gap: 4px !important;
    column-gap: 4px !important;
}

.k-gap-x-sm {
    -moz-column-gap: 8px;
    column-gap: 8px;
}

.\!k-gap-x-sm {
    -moz-column-gap: 8px !important;
    column-gap: 8px !important;
}

.k-gap-x-md {
    -moz-column-gap: 12px;
    column-gap: 12px;
}

.\!k-gap-x-md {
    -moz-column-gap: 12px !important;
    column-gap: 12px !important;
}

.k-gap-x-lg {
    -moz-column-gap: 16px;
    column-gap: 16px;
}

.\!k-gap-x-lg {
    -moz-column-gap: 16px !important;
    column-gap: 16px !important;
}

.k-gap-x-xl {
    -moz-column-gap: 24px;
    column-gap: 24px;
}

.\!k-gap-x-xl {
    -moz-column-gap: 24px !important;
    column-gap: 24px !important;
}

.k-gap-x-thin {
    -moz-column-gap: 2px;
    column-gap: 2px;
}

.\!k-gap-x-thin {
    -moz-column-gap: 2px !important;
    column-gap: 2px !important;
}

.k-gap-x-hair {
    -moz-column-gap: 1px;
    column-gap: 1px;
}

.\!k-gap-x-hair {
    -moz-column-gap: 1px !important;
    column-gap: 1px !important;
}

.k-gap-y-0 {
    row-gap: 0;
}

.\!k-gap-y-0 {
    row-gap: 0 !important;
}

.k-gap-y-1px {
    row-gap: 1px;
}

.\!k-gap-y-1px {
    row-gap: 1px !important;
}

.k-gap-y-\.5 {
    row-gap: 2px;
}

.\!k-gap-y-\.5 {
    row-gap: 2px !important;
}

.k-gap-y-1 {
    row-gap: 4px;
}

.\!k-gap-y-1 {
    row-gap: 4px !important;
}

.k-gap-y-1\.5 {
    row-gap: 6px;
}

.\!k-gap-y-1\.5 {
    row-gap: 6px !important;
}

.k-gap-y-2 {
    row-gap: 8px;
}

.\!k-gap-y-2 {
    row-gap: 8px !important;
}

.k-gap-y-2\.5 {
    row-gap: 10px;
}

.\!k-gap-y-2\.5 {
    row-gap: 10px !important;
}

.k-gap-y-3 {
    row-gap: 12px;
}

.\!k-gap-y-3 {
    row-gap: 12px !important;
}

.k-gap-y-3\.5 {
    row-gap: 14px;
}

.\!k-gap-y-3\.5 {
    row-gap: 14px !important;
}

.k-gap-y-4 {
    row-gap: 16px;
}

.\!k-gap-y-4 {
    row-gap: 16px !important;
}

.k-gap-y-4\.5 {
    row-gap: 18px;
}

.\!k-gap-y-4\.5 {
    row-gap: 18px !important;
}

.k-gap-y-5 {
    row-gap: 20px;
}

.\!k-gap-y-5 {
    row-gap: 20px !important;
}

.k-gap-y-5\.5 {
    row-gap: 22px;
}

.\!k-gap-y-5\.5 {
    row-gap: 22px !important;
}

.k-gap-y-6 {
    row-gap: 24px;
}

.\!k-gap-y-6 {
    row-gap: 24px !important;
}

.k-gap-y-6\.5 {
    row-gap: 26px;
}

.\!k-gap-y-6\.5 {
    row-gap: 26px !important;
}

.k-gap-y-7 {
    row-gap: 28px;
}

.\!k-gap-y-7 {
    row-gap: 28px !important;
}

.k-gap-y-7\.5 {
    row-gap: 30px;
}

.\!k-gap-y-7\.5 {
    row-gap: 30px !important;
}

.k-gap-y-8 {
    row-gap: 32px;
}

.\!k-gap-y-8 {
    row-gap: 32px !important;
}

.k-gap-y-9 {
    row-gap: 36px;
}

.\!k-gap-y-9 {
    row-gap: 36px !important;
}

.k-gap-y-10 {
    row-gap: 40px;
}

.\!k-gap-y-10 {
    row-gap: 40px !important;
}

.k-gap-y-11 {
    row-gap: 44px;
}

.\!k-gap-y-11 {
    row-gap: 44px !important;
}

.k-gap-y-12 {
    row-gap: 48px;
}

.\!k-gap-y-12 {
    row-gap: 48px !important;
}

.k-gap-y-13 {
    row-gap: 52px;
}

.\!k-gap-y-13 {
    row-gap: 52px !important;
}

.k-gap-y-14 {
    row-gap: 56px;
}

.\!k-gap-y-14 {
    row-gap: 56px !important;
}

.k-gap-y-15 {
    row-gap: 60px;
}

.\!k-gap-y-15 {
    row-gap: 60px !important;
}

.k-gap-y-16 {
    row-gap: 64px;
}

.\!k-gap-y-16 {
    row-gap: 64px !important;
}

.k-gap-y-17 {
    row-gap: 68px;
}

.\!k-gap-y-17 {
    row-gap: 68px !important;
}

.k-gap-y-18 {
    row-gap: 72px;
}

.\!k-gap-y-18 {
    row-gap: 72px !important;
}

.k-gap-y-19 {
    row-gap: 76px;
}

.\!k-gap-y-19 {
    row-gap: 76px !important;
}

.k-gap-y-20 {
    row-gap: 80px;
}

.\!k-gap-y-20 {
    row-gap: 80px !important;
}

.k-gap-y-21 {
    row-gap: 84px;
}

.\!k-gap-y-21 {
    row-gap: 84px !important;
}

.k-gap-y-22 {
    row-gap: 88px;
}

.\!k-gap-y-22 {
    row-gap: 88px !important;
}

.k-gap-y-23 {
    row-gap: 92px;
}

.\!k-gap-y-23 {
    row-gap: 92px !important;
}

.k-gap-y-24 {
    row-gap: 96px;
}

.\!k-gap-y-24 {
    row-gap: 96px !important;
}

.k-gap-y-xs {
    row-gap: 4px;
}

.\!k-gap-y-xs {
    row-gap: 4px !important;
}

.k-gap-y-sm {
    row-gap: 8px;
}

.\!k-gap-y-sm {
    row-gap: 8px !important;
}

.k-gap-y-md {
    row-gap: 12px;
}

.\!k-gap-y-md {
    row-gap: 12px !important;
}

.k-gap-y-lg {
    row-gap: 16px;
}

.\!k-gap-y-lg {
    row-gap: 16px !important;
}

.k-gap-y-xl {
    row-gap: 24px;
}

.\!k-gap-y-xl {
    row-gap: 24px !important;
}

.k-gap-y-thin {
    row-gap: 2px;
}

.\!k-gap-y-thin {
    row-gap: 2px !important;
}

.k-gap-y-hair {
    row-gap: 1px;
}

.\!k-gap-y-hair {
    row-gap: 1px !important;
}

.k-grid-auto-cols-auto {
    grid-auto-columns: auto;
}

.\!k-grid-auto-cols-auto {
    grid-auto-columns: auto !important;
}

.k-grid-auto-cols-min {
    grid-auto-columns: min-content;
}

.\!k-grid-auto-cols-min {
    grid-auto-columns: min-content !important;
}

.k-grid-auto-cols-max {
    grid-auto-columns: max-content;
}

.\!k-grid-auto-cols-max {
    grid-auto-columns: max-content !important;
}

.k-grid-auto-cols-fr {
    grid-auto-columns: minmax(0, 1fr);
}

.\!k-grid-auto-cols-fr {
    grid-auto-columns: minmax(0, 1fr) !important;
}

.k-grid-flow-row {
    grid-auto-flow: row;
}

.\!k-grid-flow-row {
    grid-auto-flow: row !important;
}

.k-grid-flow-col {
    grid-auto-flow: column;
}

.\!k-grid-flow-col {
    grid-auto-flow: column !important;
}

.k-grid-flow-row-dense {
    grid-auto-flow: row dense;
}

.\!k-grid-flow-row-dense {
    grid-auto-flow: row dense !important;
}

.k-grid-flow-col-dense {
    grid-auto-flow: column dense;
}

.\!k-grid-flow-col-dense {
    grid-auto-flow: column dense !important;
}

.k-grid-flow-unset {
    grid-auto-flow: unset;
}

.\!k-grid-flow-unset {
    grid-auto-flow: unset !important;
}

.k-grid-auto-rows-auto {
    grid-auto-rows: auto;
}

.\!k-grid-auto-rows-auto {
    grid-auto-rows: auto !important;
}

.k-grid-auto-rows-min {
    grid-auto-rows: min-content;
}

.\!k-grid-auto-rows-min {
    grid-auto-rows: min-content !important;
}

.k-grid-auto-rows-max {
    grid-auto-rows: max-content;
}

.\!k-grid-auto-rows-max {
    grid-auto-rows: max-content !important;
}

.k-grid-auto-rows-fr {
    grid-auto-rows: minmax(0, 1fr);
}

.\!k-grid-auto-rows-fr {
    grid-auto-rows: minmax(0, 1fr) !important;
}

.k-col-start-1 {
    grid-column-start: 1;
}

.\!k-col-start-1 {
    grid-column-start: 1 !important;
}

.k-col-start-2 {
    grid-column-start: 2;
}

.\!k-col-start-2 {
    grid-column-start: 2 !important;
}

.k-col-start-3 {
    grid-column-start: 3;
}

.\!k-col-start-3 {
    grid-column-start: 3 !important;
}

.k-col-start-4 {
    grid-column-start: 4;
}

.\!k-col-start-4 {
    grid-column-start: 4 !important;
}

.k-col-start-5 {
    grid-column-start: 5;
}

.\!k-col-start-5 {
    grid-column-start: 5 !important;
}

.k-col-start-6 {
    grid-column-start: 6;
}

.\!k-col-start-6 {
    grid-column-start: 6 !important;
}

.k-col-start-7 {
    grid-column-start: 7;
}

.\!k-col-start-7 {
    grid-column-start: 7 !important;
}

.k-col-start-8 {
    grid-column-start: 8;
}

.\!k-col-start-8 {
    grid-column-start: 8 !important;
}

.k-col-start-9 {
    grid-column-start: 9;
}

.\!k-col-start-9 {
    grid-column-start: 9 !important;
}

.k-col-start-10 {
    grid-column-start: 10;
}

.\!k-col-start-10 {
    grid-column-start: 10 !important;
}

.k-col-start-11 {
    grid-column-start: 11;
}

.\!k-col-start-11 {
    grid-column-start: 11 !important;
}

.k-col-start-12 {
    grid-column-start: 12;
}

.\!k-col-start-12 {
    grid-column-start: 12 !important;
}

.k-col-start-13 {
    grid-column-start: 13;
}

.\!k-col-start-13 {
    grid-column-start: 13 !important;
}

.k-col-start-auto {
    grid-column-start: auto;
}

.\!k-col-start-auto {
    grid-column-start: auto !important;
}

.k-col-end-1 {
    grid-column-end: 1;
}

.\!k-col-end-1 {
    grid-column-end: 1 !important;
}

.k-col-end-2 {
    grid-column-end: 2;
}

.\!k-col-end-2 {
    grid-column-end: 2 !important;
}

.k-col-end-3 {
    grid-column-end: 3;
}

.\!k-col-end-3 {
    grid-column-end: 3 !important;
}

.k-col-end-4 {
    grid-column-end: 4;
}

.\!k-col-end-4 {
    grid-column-end: 4 !important;
}

.k-col-end-5 {
    grid-column-end: 5;
}

.\!k-col-end-5 {
    grid-column-end: 5 !important;
}

.k-col-end-6 {
    grid-column-end: 6;
}

.\!k-col-end-6 {
    grid-column-end: 6 !important;
}

.k-col-end-7 {
    grid-column-end: 7;
}

.\!k-col-end-7 {
    grid-column-end: 7 !important;
}

.k-col-end-8 {
    grid-column-end: 8;
}

.\!k-col-end-8 {
    grid-column-end: 8 !important;
}

.k-col-end-9 {
    grid-column-end: 9;
}

.\!k-col-end-9 {
    grid-column-end: 9 !important;
}

.k-col-end-10 {
    grid-column-end: 10;
}

.\!k-col-end-10 {
    grid-column-end: 10 !important;
}

.k-col-end-11 {
    grid-column-end: 11;
}

.\!k-col-end-11 {
    grid-column-end: 11 !important;
}

.k-col-end-12 {
    grid-column-end: 12;
}

.\!k-col-end-12 {
    grid-column-end: 12 !important;
}

.k-col-end-13 {
    grid-column-end: 13;
}

.\!k-col-end-13 {
    grid-column-end: 13 !important;
}

.k-col-end-auto {
    grid-column-end: auto;
}

.\!k-col-end-auto {
    grid-column-end: auto !important;
}

.k-col-span-1 {
    grid-column: span 1/span 1;
}

.\!k-col-span-1 {
    grid-column: span 1/span 1 !important;
}

.k-col-span-2 {
    grid-column: span 2/span 2;
}

.\!k-col-span-2 {
    grid-column: span 2/span 2 !important;
}

.k-col-span-3 {
    grid-column: span 3/span 3;
}

.\!k-col-span-3 {
    grid-column: span 3/span 3 !important;
}

.k-col-span-4 {
    grid-column: span 4/span 4;
}

.\!k-col-span-4 {
    grid-column: span 4/span 4 !important;
}

.k-col-span-5 {
    grid-column: span 5/span 5;
}

.\!k-col-span-5 {
    grid-column: span 5/span 5 !important;
}

.k-col-span-6 {
    grid-column: span 6/span 6;
}

.\!k-col-span-6 {
    grid-column: span 6/span 6 !important;
}

.k-col-span-7 {
    grid-column: span 7/span 7;
}

.\!k-col-span-7 {
    grid-column: span 7/span 7 !important;
}

.k-col-span-8 {
    grid-column: span 8/span 8;
}

.\!k-col-span-8 {
    grid-column: span 8/span 8 !important;
}

.k-col-span-9 {
    grid-column: span 9/span 9;
}

.\!k-col-span-9 {
    grid-column: span 9/span 9 !important;
}

.k-col-span-10 {
    grid-column: span 10/span 10;
}

.\!k-col-span-10 {
    grid-column: span 10/span 10 !important;
}

.k-col-span-11 {
    grid-column: span 11/span 11;
}

.\!k-col-span-11 {
    grid-column: span 11/span 11 !important;
}

.k-col-span-12 {
    grid-column: span 12/span 12;
}

.\!k-col-span-12 {
    grid-column: span 12/span 12 !important;
}

.k-col-span-full {
    grid-column: 1 / -1;
}

.\!k-col-span-full {
    grid-column: 1 / -1 !important;
}

.k-col-span-auto {
    grid-column: auto;
}

.\!k-col-span-auto {
    grid-column: auto !important;
}

.k-colspan-1 {
    grid-column: span 1/span 1;
}

.\!k-colspan-1 {
    grid-column: span 1/span 1 !important;
}

.k-colspan-2 {
    grid-column: span 2/span 2;
}

.\!k-colspan-2 {
    grid-column: span 2/span 2 !important;
}

.k-colspan-3 {
    grid-column: span 3/span 3;
}

.\!k-colspan-3 {
    grid-column: span 3/span 3 !important;
}

.k-colspan-4 {
    grid-column: span 4/span 4;
}

.\!k-colspan-4 {
    grid-column: span 4/span 4 !important;
}

.k-colspan-5 {
    grid-column: span 5/span 5;
}

.\!k-colspan-5 {
    grid-column: span 5/span 5 !important;
}

.k-colspan-6 {
    grid-column: span 6/span 6;
}

.\!k-colspan-6 {
    grid-column: span 6/span 6 !important;
}

.k-colspan-7 {
    grid-column: span 7/span 7;
}

.\!k-colspan-7 {
    grid-column: span 7/span 7 !important;
}

.k-colspan-8 {
    grid-column: span 8/span 8;
}

.\!k-colspan-8 {
    grid-column: span 8/span 8 !important;
}

.k-colspan-9 {
    grid-column: span 9/span 9;
}

.\!k-colspan-9 {
    grid-column: span 9/span 9 !important;
}

.k-colspan-10 {
    grid-column: span 10/span 10;
}

.\!k-colspan-10 {
    grid-column: span 10/span 10 !important;
}

.k-colspan-11 {
    grid-column: span 11/span 11;
}

.\!k-colspan-11 {
    grid-column: span 11/span 11 !important;
}

.k-colspan-12 {
    grid-column: span 12/span 12;
}

.\!k-colspan-12 {
    grid-column: span 12/span 12 !important;
}

.k-colspan-full, .k-colspan-all {
    grid-column: 1 / -1;
}

.\!k-colspan-full, .\!k-colspan-all {
    grid-column: 1 / -1 !important;
}

.k-colspan-auto {
    grid-column: auto;
}

.\!k-colspan-auto {
    grid-column: auto !important;
}

.k-row-start-1 {
    grid-row-start: 1;
}

.\!k-row-start-1 {
    grid-row-start: 1 !important;
}

.k-row-start-2 {
    grid-row-start: 2;
}

.\!k-row-start-2 {
    grid-row-start: 2 !important;
}

.k-row-start-3 {
    grid-row-start: 3;
}

.\!k-row-start-3 {
    grid-row-start: 3 !important;
}

.k-row-start-4 {
    grid-row-start: 4;
}

.\!k-row-start-4 {
    grid-row-start: 4 !important;
}

.k-row-start-5 {
    grid-row-start: 5;
}

.\!k-row-start-5 {
    grid-row-start: 5 !important;
}

.k-row-start-6 {
    grid-row-start: 6;
}

.\!k-row-start-6 {
    grid-row-start: 6 !important;
}

.k-row-start-7 {
    grid-row-start: 7;
}

.\!k-row-start-7 {
    grid-row-start: 7 !important;
}

.k-row-start-8 {
    grid-row-start: 8;
}

.\!k-row-start-8 {
    grid-row-start: 8 !important;
}

.k-row-start-9 {
    grid-row-start: 9;
}

.\!k-row-start-9 {
    grid-row-start: 9 !important;
}

.k-row-start-10 {
    grid-row-start: 10;
}

.\!k-row-start-10 {
    grid-row-start: 10 !important;
}

.k-row-start-11 {
    grid-row-start: 11;
}

.\!k-row-start-11 {
    grid-row-start: 11 !important;
}

.k-row-start-12 {
    grid-row-start: 12;
}

.\!k-row-start-12 {
    grid-row-start: 12 !important;
}

.k-row-start-13 {
    grid-row-start: 13;
}

.\!k-row-start-13 {
    grid-row-start: 13 !important;
}

.k-row-start-auto {
    grid-row-start: auto;
}

.\!k-row-start-auto {
    grid-row-start: auto !important;
}

.k-row-end-1 {
    grid-row-end: 1;
}

.\!k-row-end-1 {
    grid-row-end: 1 !important;
}

.k-row-end-2 {
    grid-row-end: 2;
}

.\!k-row-end-2 {
    grid-row-end: 2 !important;
}

.k-row-end-3 {
    grid-row-end: 3;
}

.\!k-row-end-3 {
    grid-row-end: 3 !important;
}

.k-row-end-4 {
    grid-row-end: 4;
}

.\!k-row-end-4 {
    grid-row-end: 4 !important;
}

.k-row-end-5 {
    grid-row-end: 5;
}

.\!k-row-end-5 {
    grid-row-end: 5 !important;
}

.k-row-end-6 {
    grid-row-end: 6;
}

.\!k-row-end-6 {
    grid-row-end: 6 !important;
}

.k-row-end-7 {
    grid-row-end: 7;
}

.\!k-row-end-7 {
    grid-row-end: 7 !important;
}

.k-row-end-8 {
    grid-row-end: 8;
}

.\!k-row-end-8 {
    grid-row-end: 8 !important;
}

.k-row-end-9 {
    grid-row-end: 9;
}

.\!k-row-end-9 {
    grid-row-end: 9 !important;
}

.k-row-end-10 {
    grid-row-end: 10;
}

.\!k-row-end-10 {
    grid-row-end: 10 !important;
}

.k-row-end-11 {
    grid-row-end: 11;
}

.\!k-row-end-11 {
    grid-row-end: 11 !important;
}

.k-row-end-12 {
    grid-row-end: 12;
}

.\!k-row-end-12 {
    grid-row-end: 12 !important;
}

.k-row-end-13 {
    grid-row-end: 13;
}

.\!k-row-end-13 {
    grid-row-end: 13 !important;
}

.k-row-end-auto {
    grid-row-end: auto;
}

.\!k-row-end-auto {
    grid-row-end: auto !important;
}

.k-row-span-1 {
    grid-row: span 1/span 1;
}

.\!k-row-span-1 {
    grid-row: span 1/span 1 !important;
}

.k-row-span-2 {
    grid-row: span 2/span 2;
}

.\!k-row-span-2 {
    grid-row: span 2/span 2 !important;
}

.k-row-span-3 {
    grid-row: span 3/span 3;
}

.\!k-row-span-3 {
    grid-row: span 3/span 3 !important;
}

.k-row-span-4 {
    grid-row: span 4/span 4;
}

.\!k-row-span-4 {
    grid-row: span 4/span 4 !important;
}

.k-row-span-5 {
    grid-row: span 5/span 5;
}

.\!k-row-span-5 {
    grid-row: span 5/span 5 !important;
}

.k-row-span-6 {
    grid-row: span 6/span 6;
}

.\!k-row-span-6 {
    grid-row: span 6/span 6 !important;
}

.k-row-span-7 {
    grid-row: span 7/span 7;
}

.\!k-row-span-7 {
    grid-row: span 7/span 7 !important;
}

.k-row-span-8 {
    grid-row: span 8/span 8;
}

.\!k-row-span-8 {
    grid-row: span 8/span 8 !important;
}

.k-row-span-9 {
    grid-row: span 9/span 9;
}

.\!k-row-span-9 {
    grid-row: span 9/span 9 !important;
}

.k-row-span-10 {
    grid-row: span 10/span 10;
}

.\!k-row-span-10 {
    grid-row: span 10/span 10 !important;
}

.k-row-span-11 {
    grid-row: span 11/span 11;
}

.\!k-row-span-11 {
    grid-row: span 11/span 11 !important;
}

.k-row-span-12 {
    grid-row: span 12/span 12;
}

.\!k-row-span-12 {
    grid-row: span 12/span 12 !important;
}

.k-row-span-full {
    grid-row: span 1/span -1;
}

.\!k-row-span-full {
    grid-row: span 1/span -1 !important;
}

.k-row-span-auto {
    grid-row: auto;
}

.\!k-row-span-auto {
    grid-row: auto !important;
}

.k-rowspan-1 {
    grid-row: span 1/span 1;
}

.\!k-rowspan-1 {
    grid-row: span 1/span 1 !important;
}

.k-rowspan-2 {
    grid-row: span 2/span 2;
}

.\!k-rowspan-2 {
    grid-row: span 2/span 2 !important;
}

.k-rowspan-3 {
    grid-row: span 3/span 3;
}

.\!k-rowspan-3 {
    grid-row: span 3/span 3 !important;
}

.k-rowspan-4 {
    grid-row: span 4/span 4;
}

.\!k-rowspan-4 {
    grid-row: span 4/span 4 !important;
}

.k-rowspan-5 {
    grid-row: span 5/span 5;
}

.\!k-rowspan-5 {
    grid-row: span 5/span 5 !important;
}

.k-rowspan-6 {
    grid-row: span 6/span 6;
}

.\!k-rowspan-6 {
    grid-row: span 6/span 6 !important;
}

.k-rowspan-7 {
    grid-row: span 7/span 7;
}

.\!k-rowspan-7 {
    grid-row: span 7/span 7 !important;
}

.k-rowspan-8 {
    grid-row: span 8/span 8;
}

.\!k-rowspan-8 {
    grid-row: span 8/span 8 !important;
}

.k-rowspan-9 {
    grid-row: span 9/span 9;
}

.\!k-rowspan-9 {
    grid-row: span 9/span 9 !important;
}

.k-rowspan-10 {
    grid-row: span 10/span 10;
}

.\!k-rowspan-10 {
    grid-row: span 10/span 10 !important;
}

.k-rowspan-11 {
    grid-row: span 11/span 11;
}

.\!k-rowspan-11 {
    grid-row: span 11/span 11 !important;
}

.k-rowspan-12 {
    grid-row: span 12/span 12;
}

.\!k-rowspan-12 {
    grid-row: span 12/span 12 !important;
}

.k-rowspan-full, .k-rowspan-all {
    grid-row: span 1/span -1;
}

.\!k-rowspan-full, .\!k-rowspan-all {
    grid-row: span 1/span -1 !important;
}

.k-rowspan-auto {
    grid-row: auto;
}

.\!k-rowspan-auto {
    grid-row: auto !important;
}

.k-grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.\!k-grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
}

.k-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.\!k-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.k-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.\!k-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.k-grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.\!k-grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.k-grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.\!k-grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}

.k-grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.\!k-grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
}

.k-grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.\!k-grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
}

.k-grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
}

.\!k-grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
}

.k-grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
}

.\!k-grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
}

.k-grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
}

.\!k-grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
}

.k-grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
}

.\!k-grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
}

.k-grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
}

.\!k-grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
}

.k-grid-cols-none {
    grid-template-columns: none;
}

.\!k-grid-cols-none {
    grid-template-columns: none !important;
}

.k-grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr));
}

.\!k-grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
}

.k-grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr));
}

.\!k-grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
}

.k-grid-rows-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr));
}

.\!k-grid-rows-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
}

.k-grid-rows-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr));
}

.\!k-grid-rows-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
}

.k-grid-rows-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr));
}

.\!k-grid-rows-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
}

.k-grid-rows-6 {
    grid-template-rows: repeat(6, minmax(0, 1fr));
}

.\!k-grid-rows-6 {
    grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
}

.k-grid-rows-7 {
    grid-template-rows: repeat(7, minmax(0, 1fr));
}

.\!k-grid-rows-7 {
    grid-template-rows: repeat(7, minmax(0, 1fr)) !important;
}

.k-grid-rows-8 {
    grid-template-rows: repeat(8, minmax(0, 1fr));
}

.\!k-grid-rows-8 {
    grid-template-rows: repeat(8, minmax(0, 1fr)) !important;
}

.k-grid-rows-9 {
    grid-template-rows: repeat(9, minmax(0, 1fr));
}

.\!k-grid-rows-9 {
    grid-template-rows: repeat(9, minmax(0, 1fr)) !important;
}

.k-grid-rows-10 {
    grid-template-rows: repeat(10, minmax(0, 1fr));
}

.\!k-grid-rows-10 {
    grid-template-rows: repeat(10, minmax(0, 1fr)) !important;
}

.k-grid-rows-11 {
    grid-template-rows: repeat(11, minmax(0, 1fr));
}

.\!k-grid-rows-11 {
    grid-template-rows: repeat(11, minmax(0, 1fr)) !important;
}

.k-grid-rows-12 {
    grid-template-rows: repeat(12, minmax(0, 1fr));
}

.\!k-grid-rows-12 {
    grid-template-rows: repeat(12, minmax(0, 1fr)) !important;
}

.k-grid-rows-none {
    grid-template-rows: none;
}

.\!k-grid-rows-none {
    grid-template-rows: none !important;
}

.k-justify-content-normal {
    justify-content: normal;
}

.\!k-justify-content-normal {
    justify-content: normal !important;
}

.k-justify-content-start {
    justify-content: flex-start;
}

.\!k-justify-content-start {
    justify-content: flex-start !important;
}

.k-justify-content-end {
    justify-content: flex-end;
}

.\!k-justify-content-end {
    justify-content: flex-end !important;
}

.k-justify-content-center {
    justify-content: center;
}

.\!k-justify-content-center {
    justify-content: center !important;
}

.k-justify-content-between {
    justify-content: space-between;
}

.\!k-justify-content-between {
    justify-content: space-between !important;
}

.k-justify-content-around {
    justify-content: space-around;
}

.\!k-justify-content-around {
    justify-content: space-around !important;
}

.k-justify-content-evenly {
    justify-content: space-evenly;
}

.\!k-justify-content-evenly {
    justify-content: space-evenly !important;
}

.k-justify-content-stretch {
    justify-content: stretch;
}

.\!k-justify-content-stretch {
    justify-content: stretch !important;
}

.k-justify-content-stretch > * {
    flex: 1 0 0%
}

.\!.k-justify-content-stretch > * {
    flex: 1 0 0% !important;
}

.k-justify-items-normal {
    justify-items: normal;
}

.\!k-justify-items-normal {
    justify-items: normal !important;
}

.k-justify-items-start {
    justify-items: flex-start;
}

.\!k-justify-items-start {
    justify-items: flex-start !important;
}

.k-justify-items-end {
    justify-items: flex-end;
}

.\!k-justify-items-end {
    justify-items: flex-end !important;
}

.k-justify-items-center {
    justify-items: center;
}

.\!k-justify-items-center {
    justify-items: center !important;
}

.k-justify-items-stretch {
    justify-items: stretch;
}

.\!k-justify-items-stretch {
    justify-items: stretch !important;
}

.k-justify-self-auto {
    justify-self: auto;
}

.\!k-justify-self-auto {
    justify-self: auto !important;
}

.k-justify-self-normal {
    justify-self: normal;
}

.\!k-justify-self-normal {
    justify-self: normal !important;
}

.k-justify-self-start {
    justify-self: flex-start;
}

.\!k-justify-self-start {
    justify-self: flex-start !important;
}

.k-justify-self-end {
    justify-self: flex-end;
}

.\!k-justify-self-end {
    justify-self: flex-end !important;
}

.k-justify-self-center {
    justify-self: center;
}

.\!k-justify-self-center {
    justify-self: center !important;
}

.k-justify-self-stretch {
    justify-self: stretch;
}

.\!k-justify-self-stretch {
    justify-self: stretch !important;
}

.k-order-1 {
    order: 1;
}

.\!k-order-1 {
    order: 1 !important;
}

.k-order-2 {
    order: 2;
}

.\!k-order-2 {
    order: 2 !important;
}

.k-order-3 {
    order: 3;
}

.\!k-order-3 {
    order: 3 !important;
}

.k-order-4 {
    order: 4;
}

.\!k-order-4 {
    order: 4 !important;
}

.k-order-5 {
    order: 5;
}

.\!k-order-5 {
    order: 5 !important;
}

.k-order-6 {
    order: 6;
}

.\!k-order-6 {
    order: 6 !important;
}

.k-order-7 {
    order: 7;
}

.\!k-order-7 {
    order: 7 !important;
}

.k-order-8 {
    order: 8;
}

.\!k-order-8 {
    order: 8 !important;
}

.k-order-9 {
    order: 9;
}

.\!k-order-9 {
    order: 9 !important;
}

.k-order-10 {
    order: 10;
}

.\!k-order-10 {
    order: 10 !important;
}

.k-order-11 {
    order: 11;
}

.\!k-order-11 {
    order: 11 !important;
}

.k-order-12 {
    order: 12;
}

.\!k-order-12 {
    order: 12 !important;
}

.k-order-first {
    order: -9999;
}

.\!k-order-first {
    order: -9999 !important;
}

.k-order-last {
    order: 9999;
}

.\!k-order-last {
    order: 9999 !important;
}

.k-order-none {
    order: 0;
}

.\!k-order-none {
    order: 0 !important;
}

.k-place-content-normal {
    place-content: normal;
}

.\!k-place-content-normal {
    place-content: normal !important;
}

.k-place-content-start {
    place-content: flex-start;
}

.\!k-place-content-start {
    place-content: flex-start !important;
}

.k-place-content-end {
    place-content: flex-end;
}

.\!k-place-content-end {
    place-content: flex-end !important;
}

.k-place-content-center {
    place-content: center;
}

.\!k-place-content-center {
    place-content: center !important;
}

.k-place-content-between {
    place-content: space-between;
}

.\!k-place-content-between {
    place-content: space-between !important;
}

.k-place-content-around {
    place-content: space-around;
}

.\!k-place-content-around {
    place-content: space-around !important;
}

.k-place-content-evenly {
    place-content: space-evenly;
}

.\!k-place-content-evenly {
    place-content: space-evenly !important;
}

.k-place-content-stretch {
    place-content: stretch;
}

.\!k-place-content-stretch {
    place-content: stretch !important;
}

.k-place-items-normal {
    place-items: normal;
}

.\!k-place-items-normal {
    place-items: normal !important;
}

.k-place-items-start {
    place-items: flex-start;
}

.\!k-place-items-start {
    place-items: flex-start !important;
}

.k-place-items-end {
    place-items: flex-end;
}

.\!k-place-items-end {
    place-items: flex-end !important;
}

.k-place-items-center {
    place-items: center;
}

.\!k-place-items-center {
    place-items: center !important;
}

.k-place-items-stretch {
    place-items: stretch;
}

.\!k-place-items-stretch {
    place-items: stretch !important;
}

.k-place-self-auto {
    place-self: auto;
}

.\!k-place-self-auto {
    place-self: auto !important;
}

.k-place-self-normal {
    place-self: normal;
}

.\!k-place-self-normal {
    place-self: normal !important;
}

.k-place-self-start {
    place-self: flex-start;
}

.\!k-place-self-start {
    place-self: flex-start !important;
}

.k-place-self-end {
    place-self: flex-end;
}

.\!k-place-self-end {
    place-self: flex-end !important;
}

.k-place-self-center {
    place-self: center;
}

.\!k-place-self-center {
    place-self: center !important;
}

.k-place-self-stretch {
    place-self: stretch;
}

.\!k-place-self-stretch {
    place-self: stretch !important;
}

.k-m-0 {
    margin: 0;
}

.\!k-m-0 {
    margin: 0 !important;
}

.k-m-1px {
    margin: 1px;
}

.\!k-m-1px {
    margin: 1px !important;
}

.k-m-\.5 {
    margin: 2px;
}

.\!k-m-\.5 {
    margin: 2px !important;
}

.k-m-1 {
    margin: 4px;
}

.\!k-m-1 {
    margin: 4px !important;
}

.k-m-1\.5 {
    margin: 6px;
}

.\!k-m-1\.5 {
    margin: 6px !important;
}

.k-m-2 {
    margin: 8px;
}

.\!k-m-2 {
    margin: 8px !important;
}

.k-m-2\.5 {
    margin: 10px;
}

.\!k-m-2\.5 {
    margin: 10px !important;
}

.k-m-3 {
    margin: 12px;
}

.\!k-m-3 {
    margin: 12px !important;
}

.k-m-3\.5 {
    margin: 14px;
}

.\!k-m-3\.5 {
    margin: 14px !important;
}

.k-m-4 {
    margin: 16px;
}

.\!k-m-4 {
    margin: 16px !important;
}

.k-m-4\.5 {
    margin: 18px;
}

.\!k-m-4\.5 {
    margin: 18px !important;
}

.k-m-5 {
    margin: 20px;
}

.\!k-m-5 {
    margin: 20px !important;
}

.k-m-5\.5 {
    margin: 22px;
}

.\!k-m-5\.5 {
    margin: 22px !important;
}

.k-m-6 {
    margin: 24px;
}

.\!k-m-6 {
    margin: 24px !important;
}

.k-m-6\.5 {
    margin: 26px;
}

.\!k-m-6\.5 {
    margin: 26px !important;
}

.k-m-7 {
    margin: 28px;
}

.\!k-m-7 {
    margin: 28px !important;
}

.k-m-7\.5 {
    margin: 30px;
}

.\!k-m-7\.5 {
    margin: 30px !important;
}

.k-m-8 {
    margin: 32px;
}

.\!k-m-8 {
    margin: 32px !important;
}

.k-m-9 {
    margin: 36px;
}

.\!k-m-9 {
    margin: 36px !important;
}

.k-m-10 {
    margin: 40px;
}

.\!k-m-10 {
    margin: 40px !important;
}

.k-m-11 {
    margin: 44px;
}

.\!k-m-11 {
    margin: 44px !important;
}

.k-m-12 {
    margin: 48px;
}

.\!k-m-12 {
    margin: 48px !important;
}

.k-m-13 {
    margin: 52px;
}

.\!k-m-13 {
    margin: 52px !important;
}

.k-m-14 {
    margin: 56px;
}

.\!k-m-14 {
    margin: 56px !important;
}

.k-m-15 {
    margin: 60px;
}

.\!k-m-15 {
    margin: 60px !important;
}

.k-m-16 {
    margin: 64px;
}

.\!k-m-16 {
    margin: 64px !important;
}

.k-m-17 {
    margin: 68px;
}

.\!k-m-17 {
    margin: 68px !important;
}

.k-m-18 {
    margin: 72px;
}

.\!k-m-18 {
    margin: 72px !important;
}

.k-m-19 {
    margin: 76px;
}

.\!k-m-19 {
    margin: 76px !important;
}

.k-m-20 {
    margin: 80px;
}

.\!k-m-20 {
    margin: 80px !important;
}

.k-m-21 {
    margin: 84px;
}

.\!k-m-21 {
    margin: 84px !important;
}

.k-m-22 {
    margin: 88px;
}

.\!k-m-22 {
    margin: 88px !important;
}

.k-m-23 {
    margin: 92px;
}

.\!k-m-23 {
    margin: 92px !important;
}

.k-m-24 {
    margin: 96px;
}

.\!k-m-24 {
    margin: 96px !important;
}

.k-m-xs {
    margin: 4px;
}

.\!k-m-xs {
    margin: 4px !important;
}

.k-m-sm {
    margin: 8px;
}

.\!k-m-sm {
    margin: 8px !important;
}

.k-m-md {
    margin: 12px;
}

.\!k-m-md {
    margin: 12px !important;
}

.k-m-lg {
    margin: 16px;
}

.\!k-m-lg {
    margin: 16px !important;
}

.k-m-xl {
    margin: 24px;
}

.\!k-m-xl {
    margin: 24px !important;
}

.k-m-thin {
    margin: 2px;
}

.\!k-m-thin {
    margin: 2px !important;
}

.k-m-hair {
    margin: 1px;
}

.\!k-m-hair {
    margin: 1px !important;
}

.k-mt-0 {
    margin-top: 0;
}

.\!k-mt-0 {
    margin-top: 0 !important;
}

.k-mt-1px {
    margin-top: 1px;
}

.\!k-mt-1px {
    margin-top: 1px !important;
}

.k-mt-\.5 {
    margin-top: 2px;
}

.\!k-mt-\.5 {
    margin-top: 2px !important;
}

.k-mt-1 {
    margin-top: 4px;
}

.\!k-mt-1 {
    margin-top: 4px !important;
}

.k-mt-1\.5 {
    margin-top: 6px;
}

.\!k-mt-1\.5 {
    margin-top: 6px !important;
}

.k-mt-2 {
    margin-top: 8px;
}

.\!k-mt-2 {
    margin-top: 8px !important;
}

.k-mt-2\.5 {
    margin-top: 10px;
}

.\!k-mt-2\.5 {
    margin-top: 10px !important;
}

.k-mt-3 {
    margin-top: 12px;
}

.\!k-mt-3 {
    margin-top: 12px !important;
}

.k-mt-3\.5 {
    margin-top: 14px;
}

.\!k-mt-3\.5 {
    margin-top: 14px !important;
}

.k-mt-4 {
    margin-top: 16px;
}

.\!k-mt-4 {
    margin-top: 16px !important;
}

.k-mt-4\.5 {
    margin-top: 18px;
}

.\!k-mt-4\.5 {
    margin-top: 18px !important;
}

.k-mt-5 {
    margin-top: 20px;
}

.\!k-mt-5 {
    margin-top: 20px !important;
}

.k-mt-5\.5 {
    margin-top: 22px;
}

.\!k-mt-5\.5 {
    margin-top: 22px !important;
}

.k-mt-6 {
    margin-top: 24px;
}

.\!k-mt-6 {
    margin-top: 24px !important;
}

.k-mt-6\.5 {
    margin-top: 26px;
}

.\!k-mt-6\.5 {
    margin-top: 26px !important;
}

.k-mt-7 {
    margin-top: 28px;
}

.\!k-mt-7 {
    margin-top: 28px !important;
}

.k-mt-7\.5 {
    margin-top: 30px;
}

.\!k-mt-7\.5 {
    margin-top: 30px !important;
}

.k-mt-8 {
    margin-top: 32px;
}

.\!k-mt-8 {
    margin-top: 32px !important;
}

.k-mt-9 {
    margin-top: 36px;
}

.\!k-mt-9 {
    margin-top: 36px !important;
}

.k-mt-10 {
    margin-top: 40px;
}

.\!k-mt-10 {
    margin-top: 40px !important;
}

.k-mt-11 {
    margin-top: 44px;
}

.\!k-mt-11 {
    margin-top: 44px !important;
}

.k-mt-12 {
    margin-top: 48px;
}

.\!k-mt-12 {
    margin-top: 48px !important;
}

.k-mt-13 {
    margin-top: 52px;
}

.\!k-mt-13 {
    margin-top: 52px !important;
}

.k-mt-14 {
    margin-top: 56px;
}

.\!k-mt-14 {
    margin-top: 56px !important;
}

.k-mt-15 {
    margin-top: 60px;
}

.\!k-mt-15 {
    margin-top: 60px !important;
}

.k-mt-16 {
    margin-top: 64px;
}

.\!k-mt-16 {
    margin-top: 64px !important;
}

.k-mt-17 {
    margin-top: 68px;
}

.\!k-mt-17 {
    margin-top: 68px !important;
}

.k-mt-18 {
    margin-top: 72px;
}

.\!k-mt-18 {
    margin-top: 72px !important;
}

.k-mt-19 {
    margin-top: 76px;
}

.\!k-mt-19 {
    margin-top: 76px !important;
}

.k-mt-20 {
    margin-top: 80px;
}

.\!k-mt-20 {
    margin-top: 80px !important;
}

.k-mt-21 {
    margin-top: 84px;
}

.\!k-mt-21 {
    margin-top: 84px !important;
}

.k-mt-22 {
    margin-top: 88px;
}

.\!k-mt-22 {
    margin-top: 88px !important;
}

.k-mt-23 {
    margin-top: 92px;
}

.\!k-mt-23 {
    margin-top: 92px !important;
}

.k-mt-24 {
    margin-top: 96px;
}

.\!k-mt-24 {
    margin-top: 96px !important;
}

.k-mt-xs {
    margin-top: 4px;
}

.\!k-mt-xs {
    margin-top: 4px !important;
}

.k-mt-sm {
    margin-top: 8px;
}

.\!k-mt-sm {
    margin-top: 8px !important;
}

.k-mt-md {
    margin-top: 12px;
}

.\!k-mt-md {
    margin-top: 12px !important;
}

.k-mt-lg {
    margin-top: 16px;
}

.\!k-mt-lg {
    margin-top: 16px !important;
}

.k-mt-xl {
    margin-top: 24px;
}

.\!k-mt-xl {
    margin-top: 24px !important;
}

.k-mt-thin {
    margin-top: 2px;
}

.\!k-mt-thin {
    margin-top: 2px !important;
}

.k-mt-hair {
    margin-top: 1px;
}

.\!k-mt-hair {
    margin-top: 1px !important;
}

.k-mr-0 {
    margin-right: 0;
}

.\!k-mr-0 {
    margin-right: 0 !important;
}

.k-mr-1px {
    margin-right: 1px;
}

.\!k-mr-1px {
    margin-right: 1px !important;
}

.k-mr-\.5 {
    margin-right: 2px;
}

.\!k-mr-\.5 {
    margin-right: 2px !important;
}

.k-mr-1 {
    margin-right: 4px;
}

.\!k-mr-1 {
    margin-right: 4px !important;
}

.k-mr-1\.5 {
    margin-right: 6px;
}

.\!k-mr-1\.5 {
    margin-right: 6px !important;
}

.k-mr-2 {
    margin-right: 8px;
}

.\!k-mr-2 {
    margin-right: 8px !important;
}

.k-mr-2\.5 {
    margin-right: 10px;
}

.\!k-mr-2\.5 {
    margin-right: 10px !important;
}

.k-mr-3 {
    margin-right: 12px;
}

.\!k-mr-3 {
    margin-right: 12px !important;
}

.k-mr-3\.5 {
    margin-right: 14px;
}

.\!k-mr-3\.5 {
    margin-right: 14px !important;
}

.k-mr-4 {
    margin-right: 16px;
}

.\!k-mr-4 {
    margin-right: 16px !important;
}

.k-mr-4\.5 {
    margin-right: 18px;
}

.\!k-mr-4\.5 {
    margin-right: 18px !important;
}

.k-mr-5 {
    margin-right: 20px;
}

.\!k-mr-5 {
    margin-right: 20px !important;
}

.k-mr-5\.5 {
    margin-right: 22px;
}

.\!k-mr-5\.5 {
    margin-right: 22px !important;
}

.k-mr-6 {
    margin-right: 24px;
}

.\!k-mr-6 {
    margin-right: 24px !important;
}

.k-mr-6\.5 {
    margin-right: 26px;
}

.\!k-mr-6\.5 {
    margin-right: 26px !important;
}

.k-mr-7 {
    margin-right: 28px;
}

.\!k-mr-7 {
    margin-right: 28px !important;
}

.k-mr-7\.5 {
    margin-right: 30px;
}

.\!k-mr-7\.5 {
    margin-right: 30px !important;
}

.k-mr-8 {
    margin-right: 32px;
}

.\!k-mr-8 {
    margin-right: 32px !important;
}

.k-mr-9 {
    margin-right: 36px;
}

.\!k-mr-9 {
    margin-right: 36px !important;
}

.k-mr-10 {
    margin-right: 40px;
}

.\!k-mr-10 {
    margin-right: 40px !important;
}

.k-mr-11 {
    margin-right: 44px;
}

.\!k-mr-11 {
    margin-right: 44px !important;
}

.k-mr-12 {
    margin-right: 48px;
}

.\!k-mr-12 {
    margin-right: 48px !important;
}

.k-mr-13 {
    margin-right: 52px;
}

.\!k-mr-13 {
    margin-right: 52px !important;
}

.k-mr-14 {
    margin-right: 56px;
}

.\!k-mr-14 {
    margin-right: 56px !important;
}

.k-mr-15 {
    margin-right: 60px;
}

.\!k-mr-15 {
    margin-right: 60px !important;
}

.k-mr-16 {
    margin-right: 64px;
}

.\!k-mr-16 {
    margin-right: 64px !important;
}

.k-mr-17 {
    margin-right: 68px;
}

.\!k-mr-17 {
    margin-right: 68px !important;
}

.k-mr-18 {
    margin-right: 72px;
}

.\!k-mr-18 {
    margin-right: 72px !important;
}

.k-mr-19 {
    margin-right: 76px;
}

.\!k-mr-19 {
    margin-right: 76px !important;
}

.k-mr-20 {
    margin-right: 80px;
}

.\!k-mr-20 {
    margin-right: 80px !important;
}

.k-mr-21 {
    margin-right: 84px;
}

.\!k-mr-21 {
    margin-right: 84px !important;
}

.k-mr-22 {
    margin-right: 88px;
}

.\!k-mr-22 {
    margin-right: 88px !important;
}

.k-mr-23 {
    margin-right: 92px;
}

.\!k-mr-23 {
    margin-right: 92px !important;
}

.k-mr-24 {
    margin-right: 96px;
}

.\!k-mr-24 {
    margin-right: 96px !important;
}

.k-mr-xs {
    margin-right: 4px;
}

.\!k-mr-xs {
    margin-right: 4px !important;
}

.k-mr-sm {
    margin-right: 8px;
}

.\!k-mr-sm {
    margin-right: 8px !important;
}

.k-mr-md {
    margin-right: 12px;
}

.\!k-mr-md {
    margin-right: 12px !important;
}

.k-mr-lg {
    margin-right: 16px;
}

.\!k-mr-lg {
    margin-right: 16px !important;
}

.k-mr-xl {
    margin-right: 24px;
}

.\!k-mr-xl {
    margin-right: 24px !important;
}

.k-mr-thin {
    margin-right: 2px;
}

.\!k-mr-thin {
    margin-right: 2px !important;
}

.k-mr-hair {
    margin-right: 1px;
}

.\!k-mr-hair {
    margin-right: 1px !important;
}

.k-mb-0 {
    margin-bottom: 0;
}

.\!k-mb-0 {
    margin-bottom: 0 !important;
}

.k-mb-1px {
    margin-bottom: 1px;
}

.\!k-mb-1px {
    margin-bottom: 1px !important;
}

.k-mb-\.5 {
    margin-bottom: 2px;
}

.\!k-mb-\.5 {
    margin-bottom: 2px !important;
}

.k-mb-1 {
    margin-bottom: 4px;
}

.\!k-mb-1 {
    margin-bottom: 4px !important;
}

.k-mb-1\.5 {
    margin-bottom: 6px;
}

.\!k-mb-1\.5 {
    margin-bottom: 6px !important;
}

.k-mb-2 {
    margin-bottom: 8px;
}

.\!k-mb-2 {
    margin-bottom: 8px !important;
}

.k-mb-2\.5 {
    margin-bottom: 10px;
}

.\!k-mb-2\.5 {
    margin-bottom: 10px !important;
}

.k-mb-3 {
    margin-bottom: 12px;
}

.\!k-mb-3 {
    margin-bottom: 12px !important;
}

.k-mb-3\.5 {
    margin-bottom: 14px;
}

.\!k-mb-3\.5 {
    margin-bottom: 14px !important;
}

.k-mb-4 {
    margin-bottom: 16px;
}

.\!k-mb-4 {
    margin-bottom: 16px !important;
}

.k-mb-4\.5 {
    margin-bottom: 18px;
}

.\!k-mb-4\.5 {
    margin-bottom: 18px !important;
}

.k-mb-5 {
    margin-bottom: 20px;
}

.\!k-mb-5 {
    margin-bottom: 20px !important;
}

.k-mb-5\.5 {
    margin-bottom: 22px;
}

.\!k-mb-5\.5 {
    margin-bottom: 22px !important;
}

.k-mb-6 {
    margin-bottom: 24px;
}

.\!k-mb-6 {
    margin-bottom: 24px !important;
}

.k-mb-6\.5 {
    margin-bottom: 26px;
}

.\!k-mb-6\.5 {
    margin-bottom: 26px !important;
}

.k-mb-7 {
    margin-bottom: 28px;
}

.\!k-mb-7 {
    margin-bottom: 28px !important;
}

.k-mb-7\.5 {
    margin-bottom: 30px;
}

.\!k-mb-7\.5 {
    margin-bottom: 30px !important;
}

.k-mb-8 {
    margin-bottom: 32px;
}

.\!k-mb-8 {
    margin-bottom: 32px !important;
}

.k-mb-9 {
    margin-bottom: 36px;
}

.\!k-mb-9 {
    margin-bottom: 36px !important;
}

.k-mb-10 {
    margin-bottom: 40px;
}

.\!k-mb-10 {
    margin-bottom: 40px !important;
}

.k-mb-11 {
    margin-bottom: 44px;
}

.\!k-mb-11 {
    margin-bottom: 44px !important;
}

.k-mb-12 {
    margin-bottom: 48px;
}

.\!k-mb-12 {
    margin-bottom: 48px !important;
}

.k-mb-13 {
    margin-bottom: 52px;
}

.\!k-mb-13 {
    margin-bottom: 52px !important;
}

.k-mb-14 {
    margin-bottom: 56px;
}

.\!k-mb-14 {
    margin-bottom: 56px !important;
}

.k-mb-15 {
    margin-bottom: 60px;
}

.\!k-mb-15 {
    margin-bottom: 60px !important;
}

.k-mb-16 {
    margin-bottom: 64px;
}

.\!k-mb-16 {
    margin-bottom: 64px !important;
}

.k-mb-17 {
    margin-bottom: 68px;
}

.\!k-mb-17 {
    margin-bottom: 68px !important;
}

.k-mb-18 {
    margin-bottom: 72px;
}

.\!k-mb-18 {
    margin-bottom: 72px !important;
}

.k-mb-19 {
    margin-bottom: 76px;
}

.\!k-mb-19 {
    margin-bottom: 76px !important;
}

.k-mb-20 {
    margin-bottom: 80px;
}

.\!k-mb-20 {
    margin-bottom: 80px !important;
}

.k-mb-21 {
    margin-bottom: 84px;
}

.\!k-mb-21 {
    margin-bottom: 84px !important;
}

.k-mb-22 {
    margin-bottom: 88px;
}

.\!k-mb-22 {
    margin-bottom: 88px !important;
}

.k-mb-23 {
    margin-bottom: 92px;
}

.\!k-mb-23 {
    margin-bottom: 92px !important;
}

.k-mb-24 {
    margin-bottom: 96px;
}

.\!k-mb-24 {
    margin-bottom: 96px !important;
}

.k-mb-xs {
    margin-bottom: 4px;
}

.\!k-mb-xs {
    margin-bottom: 4px !important;
}

.k-mb-sm {
    margin-bottom: 8px;
}

.\!k-mb-sm {
    margin-bottom: 8px !important;
}

.k-mb-md {
    margin-bottom: 12px;
}

.\!k-mb-md {
    margin-bottom: 12px !important;
}

.k-mb-lg {
    margin-bottom: 16px;
}

.\!k-mb-lg {
    margin-bottom: 16px !important;
}

.k-mb-xl {
    margin-bottom: 24px;
}

.\!k-mb-xl {
    margin-bottom: 24px !important;
}

.k-mb-thin {
    margin-bottom: 2px;
}

.\!k-mb-thin {
    margin-bottom: 2px !important;
}

.k-mb-hair {
    margin-bottom: 1px;
}

.\!k-mb-hair {
    margin-bottom: 1px !important;
}

.k-ml-0 {
    margin-left: 0;
}

.\!k-ml-0 {
    margin-left: 0 !important;
}

.k-ml-1px {
    margin-left: 1px;
}

.\!k-ml-1px {
    margin-left: 1px !important;
}

.k-ml-\.5 {
    margin-left: 2px;
}

.\!k-ml-\.5 {
    margin-left: 2px !important;
}

.k-ml-1 {
    margin-left: 4px;
}

.\!k-ml-1 {
    margin-left: 4px !important;
}

.k-ml-1\.5 {
    margin-left: 6px;
}

.\!k-ml-1\.5 {
    margin-left: 6px !important;
}

.k-ml-2 {
    margin-left: 8px;
}

.\!k-ml-2 {
    margin-left: 8px !important;
}

.k-ml-2\.5 {
    margin-left: 10px;
}

.\!k-ml-2\.5 {
    margin-left: 10px !important;
}

.k-ml-3 {
    margin-left: 12px;
}

.\!k-ml-3 {
    margin-left: 12px !important;
}

.k-ml-3\.5 {
    margin-left: 14px;
}

.\!k-ml-3\.5 {
    margin-left: 14px !important;
}

.k-ml-4 {
    margin-left: 16px;
}

.\!k-ml-4 {
    margin-left: 16px !important;
}

.k-ml-4\.5 {
    margin-left: 18px;
}

.\!k-ml-4\.5 {
    margin-left: 18px !important;
}

.k-ml-5 {
    margin-left: 20px;
}

.\!k-ml-5 {
    margin-left: 20px !important;
}

.k-ml-5\.5 {
    margin-left: 22px;
}

.\!k-ml-5\.5 {
    margin-left: 22px !important;
}

.k-ml-6 {
    margin-left: 24px;
}

.\!k-ml-6 {
    margin-left: 24px !important;
}

.k-ml-6\.5 {
    margin-left: 26px;
}

.\!k-ml-6\.5 {
    margin-left: 26px !important;
}

.k-ml-7 {
    margin-left: 28px;
}

.\!k-ml-7 {
    margin-left: 28px !important;
}

.k-ml-7\.5 {
    margin-left: 30px;
}

.\!k-ml-7\.5 {
    margin-left: 30px !important;
}

.k-ml-8 {
    margin-left: 32px;
}

.\!k-ml-8 {
    margin-left: 32px !important;
}

.k-ml-9 {
    margin-left: 36px;
}

.\!k-ml-9 {
    margin-left: 36px !important;
}

.k-ml-10 {
    margin-left: 40px;
}

.\!k-ml-10 {
    margin-left: 40px !important;
}

.k-ml-11 {
    margin-left: 44px;
}

.\!k-ml-11 {
    margin-left: 44px !important;
}

.k-ml-12 {
    margin-left: 48px;
}

.\!k-ml-12 {
    margin-left: 48px !important;
}

.k-ml-13 {
    margin-left: 52px;
}

.\!k-ml-13 {
    margin-left: 52px !important;
}

.k-ml-14 {
    margin-left: 56px;
}

.\!k-ml-14 {
    margin-left: 56px !important;
}

.k-ml-15 {
    margin-left: 60px;
}

.\!k-ml-15 {
    margin-left: 60px !important;
}

.k-ml-16 {
    margin-left: 64px;
}

.\!k-ml-16 {
    margin-left: 64px !important;
}

.k-ml-17 {
    margin-left: 68px;
}

.\!k-ml-17 {
    margin-left: 68px !important;
}

.k-ml-18 {
    margin-left: 72px;
}

.\!k-ml-18 {
    margin-left: 72px !important;
}

.k-ml-19 {
    margin-left: 76px;
}

.\!k-ml-19 {
    margin-left: 76px !important;
}

.k-ml-20 {
    margin-left: 80px;
}

.\!k-ml-20 {
    margin-left: 80px !important;
}

.k-ml-21 {
    margin-left: 84px;
}

.\!k-ml-21 {
    margin-left: 84px !important;
}

.k-ml-22 {
    margin-left: 88px;
}

.\!k-ml-22 {
    margin-left: 88px !important;
}

.k-ml-23 {
    margin-left: 92px;
}

.\!k-ml-23 {
    margin-left: 92px !important;
}

.k-ml-24 {
    margin-left: 96px;
}

.\!k-ml-24 {
    margin-left: 96px !important;
}

.k-ml-xs {
    margin-left: 4px;
}

.\!k-ml-xs {
    margin-left: 4px !important;
}

.k-ml-sm {
    margin-left: 8px;
}

.\!k-ml-sm {
    margin-left: 8px !important;
}

.k-ml-md {
    margin-left: 12px;
}

.\!k-ml-md {
    margin-left: 12px !important;
}

.k-ml-lg {
    margin-left: 16px;
}

.\!k-ml-lg {
    margin-left: 16px !important;
}

.k-ml-xl {
    margin-left: 24px;
}

.\!k-ml-xl {
    margin-left: 24px !important;
}

.k-ml-thin {
    margin-left: 2px;
}

.\!k-ml-thin {
    margin-left: 2px !important;
}

.k-ml-hair {
    margin-left: 1px;
}

.\!k-ml-hair {
    margin-left: 1px !important;
}

.k-mx-0 {
    margin-inline: 0;
}

.\!k-mx-0 {
    margin-inline: 0 !important;
}

.k-mx-1px {
    margin-inline: 1px;
}

.\!k-mx-1px {
    margin-inline: 1px !important;
}

.k-mx-\.5 {
    margin-inline: 2px;
}

.\!k-mx-\.5 {
    margin-inline: 2px !important;
}

.k-mx-1 {
    margin-inline: 4px;
}

.\!k-mx-1 {
    margin-inline: 4px !important;
}

.k-mx-1\.5 {
    margin-inline: 6px;
}

.\!k-mx-1\.5 {
    margin-inline: 6px !important;
}

.k-mx-2 {
    margin-inline: 8px;
}

.\!k-mx-2 {
    margin-inline: 8px !important;
}

.k-mx-2\.5 {
    margin-inline: 10px;
}

.\!k-mx-2\.5 {
    margin-inline: 10px !important;
}

.k-mx-3 {
    margin-inline: 12px;
}

.\!k-mx-3 {
    margin-inline: 12px !important;
}

.k-mx-3\.5 {
    margin-inline: 14px;
}

.\!k-mx-3\.5 {
    margin-inline: 14px !important;
}

.k-mx-4 {
    margin-inline: 16px;
}

.\!k-mx-4 {
    margin-inline: 16px !important;
}

.k-mx-4\.5 {
    margin-inline: 18px;
}

.\!k-mx-4\.5 {
    margin-inline: 18px !important;
}

.k-mx-5 {
    margin-inline: 20px;
}

.\!k-mx-5 {
    margin-inline: 20px !important;
}

.k-mx-5\.5 {
    margin-inline: 22px;
}

.\!k-mx-5\.5 {
    margin-inline: 22px !important;
}

.k-mx-6 {
    margin-inline: 24px;
}

.\!k-mx-6 {
    margin-inline: 24px !important;
}

.k-mx-6\.5 {
    margin-inline: 26px;
}

.\!k-mx-6\.5 {
    margin-inline: 26px !important;
}

.k-mx-7 {
    margin-inline: 28px;
}

.\!k-mx-7 {
    margin-inline: 28px !important;
}

.k-mx-7\.5 {
    margin-inline: 30px;
}

.\!k-mx-7\.5 {
    margin-inline: 30px !important;
}

.k-mx-8 {
    margin-inline: 32px;
}

.\!k-mx-8 {
    margin-inline: 32px !important;
}

.k-mx-9 {
    margin-inline: 36px;
}

.\!k-mx-9 {
    margin-inline: 36px !important;
}

.k-mx-10 {
    margin-inline: 40px;
}

.\!k-mx-10 {
    margin-inline: 40px !important;
}

.k-mx-11 {
    margin-inline: 44px;
}

.\!k-mx-11 {
    margin-inline: 44px !important;
}

.k-mx-12 {
    margin-inline: 48px;
}

.\!k-mx-12 {
    margin-inline: 48px !important;
}

.k-mx-13 {
    margin-inline: 52px;
}

.\!k-mx-13 {
    margin-inline: 52px !important;
}

.k-mx-14 {
    margin-inline: 56px;
}

.\!k-mx-14 {
    margin-inline: 56px !important;
}

.k-mx-15 {
    margin-inline: 60px;
}

.\!k-mx-15 {
    margin-inline: 60px !important;
}

.k-mx-16 {
    margin-inline: 64px;
}

.\!k-mx-16 {
    margin-inline: 64px !important;
}

.k-mx-17 {
    margin-inline: 68px;
}

.\!k-mx-17 {
    margin-inline: 68px !important;
}

.k-mx-18 {
    margin-inline: 72px;
}

.\!k-mx-18 {
    margin-inline: 72px !important;
}

.k-mx-19 {
    margin-inline: 76px;
}

.\!k-mx-19 {
    margin-inline: 76px !important;
}

.k-mx-20 {
    margin-inline: 80px;
}

.\!k-mx-20 {
    margin-inline: 80px !important;
}

.k-mx-21 {
    margin-inline: 84px;
}

.\!k-mx-21 {
    margin-inline: 84px !important;
}

.k-mx-22 {
    margin-inline: 88px;
}

.\!k-mx-22 {
    margin-inline: 88px !important;
}

.k-mx-23 {
    margin-inline: 92px;
}

.\!k-mx-23 {
    margin-inline: 92px !important;
}

.k-mx-24 {
    margin-inline: 96px;
}

.\!k-mx-24 {
    margin-inline: 96px !important;
}

.k-mx-xs {
    margin-inline: 4px;
}

.\!k-mx-xs {
    margin-inline: 4px !important;
}

.k-mx-sm {
    margin-inline: 8px;
}

.\!k-mx-sm {
    margin-inline: 8px !important;
}

.k-mx-md {
    margin-inline: 12px;
}

.\!k-mx-md {
    margin-inline: 12px !important;
}

.k-mx-lg {
    margin-inline: 16px;
}

.\!k-mx-lg {
    margin-inline: 16px !important;
}

.k-mx-xl {
    margin-inline: 24px;
}

.\!k-mx-xl {
    margin-inline: 24px !important;
}

.k-mx-thin {
    margin-inline: 2px;
}

.\!k-mx-thin {
    margin-inline: 2px !important;
}

.k-mx-hair {
    margin-inline: 1px;
}

.\!k-mx-hair {
    margin-inline: 1px !important;
}

.k-my-0 {
    margin-block: 0;
}

.\!k-my-0 {
    margin-block: 0 !important;
}

.k-my-1px {
    margin-block: 1px;
}

.\!k-my-1px {
    margin-block: 1px !important;
}

.k-my-\.5 {
    margin-block: 2px;
}

.\!k-my-\.5 {
    margin-block: 2px !important;
}

.k-my-1 {
    margin-block: 4px;
}

.\!k-my-1 {
    margin-block: 4px !important;
}

.k-my-1\.5 {
    margin-block: 6px;
}

.\!k-my-1\.5 {
    margin-block: 6px !important;
}

.k-my-2 {
    margin-block: 8px;
}

.\!k-my-2 {
    margin-block: 8px !important;
}

.k-my-2\.5 {
    margin-block: 10px;
}

.\!k-my-2\.5 {
    margin-block: 10px !important;
}

.k-my-3 {
    margin-block: 12px;
}

.\!k-my-3 {
    margin-block: 12px !important;
}

.k-my-3\.5 {
    margin-block: 14px;
}

.\!k-my-3\.5 {
    margin-block: 14px !important;
}

.k-my-4 {
    margin-block: 16px;
}

.\!k-my-4 {
    margin-block: 16px !important;
}

.k-my-4\.5 {
    margin-block: 18px;
}

.\!k-my-4\.5 {
    margin-block: 18px !important;
}

.k-my-5 {
    margin-block: 20px;
}

.\!k-my-5 {
    margin-block: 20px !important;
}

.k-my-5\.5 {
    margin-block: 22px;
}

.\!k-my-5\.5 {
    margin-block: 22px !important;
}

.k-my-6 {
    margin-block: 24px;
}

.\!k-my-6 {
    margin-block: 24px !important;
}

.k-my-6\.5 {
    margin-block: 26px;
}

.\!k-my-6\.5 {
    margin-block: 26px !important;
}

.k-my-7 {
    margin-block: 28px;
}

.\!k-my-7 {
    margin-block: 28px !important;
}

.k-my-7\.5 {
    margin-block: 30px;
}

.\!k-my-7\.5 {
    margin-block: 30px !important;
}

.k-my-8 {
    margin-block: 32px;
}

.\!k-my-8 {
    margin-block: 32px !important;
}

.k-my-9 {
    margin-block: 36px;
}

.\!k-my-9 {
    margin-block: 36px !important;
}

.k-my-10 {
    margin-block: 40px;
}

.\!k-my-10 {
    margin-block: 40px !important;
}

.k-my-11 {
    margin-block: 44px;
}

.\!k-my-11 {
    margin-block: 44px !important;
}

.k-my-12 {
    margin-block: 48px;
}

.\!k-my-12 {
    margin-block: 48px !important;
}

.k-my-13 {
    margin-block: 52px;
}

.\!k-my-13 {
    margin-block: 52px !important;
}

.k-my-14 {
    margin-block: 56px;
}

.\!k-my-14 {
    margin-block: 56px !important;
}

.k-my-15 {
    margin-block: 60px;
}

.\!k-my-15 {
    margin-block: 60px !important;
}

.k-my-16 {
    margin-block: 64px;
}

.\!k-my-16 {
    margin-block: 64px !important;
}

.k-my-17 {
    margin-block: 68px;
}

.\!k-my-17 {
    margin-block: 68px !important;
}

.k-my-18 {
    margin-block: 72px;
}

.\!k-my-18 {
    margin-block: 72px !important;
}

.k-my-19 {
    margin-block: 76px;
}

.\!k-my-19 {
    margin-block: 76px !important;
}

.k-my-20 {
    margin-block: 80px;
}

.\!k-my-20 {
    margin-block: 80px !important;
}

.k-my-21 {
    margin-block: 84px;
}

.\!k-my-21 {
    margin-block: 84px !important;
}

.k-my-22 {
    margin-block: 88px;
}

.\!k-my-22 {
    margin-block: 88px !important;
}

.k-my-23 {
    margin-block: 92px;
}

.\!k-my-23 {
    margin-block: 92px !important;
}

.k-my-24 {
    margin-block: 96px;
}

.\!k-my-24 {
    margin-block: 96px !important;
}

.k-my-xs {
    margin-block: 4px;
}

.\!k-my-xs {
    margin-block: 4px !important;
}

.k-my-sm {
    margin-block: 8px;
}

.\!k-my-sm {
    margin-block: 8px !important;
}

.k-my-md {
    margin-block: 12px;
}

.\!k-my-md {
    margin-block: 12px !important;
}

.k-my-lg {
    margin-block: 16px;
}

.\!k-my-lg {
    margin-block: 16px !important;
}

.k-my-xl {
    margin-block: 24px;
}

.\!k-my-xl {
    margin-block: 24px !important;
}

.k-my-thin {
    margin-block: 2px;
}

.\!k-my-thin {
    margin-block: 2px !important;
}

.k-my-hair {
    margin-block: 1px;
}

.\!k-my-hair {
    margin-block: 1px !important;
}

.k-p-0 {
    padding: 0;
}

.\!k-p-0 {
    padding: 0 !important;
}

.k-p-1px {
    padding: 1px;
}

.\!k-p-1px {
    padding: 1px !important;
}

.k-p-\.5 {
    padding: 2px;
}

.\!k-p-\.5 {
    padding: 2px !important;
}

.k-p-1 {
    padding: 4px;
}

.\!k-p-1 {
    padding: 4px !important;
}

.k-p-1\.5 {
    padding: 6px;
}

.\!k-p-1\.5 {
    padding: 6px !important;
}

.k-p-2 {
    padding: 8px;
}

.\!k-p-2 {
    padding: 8px !important;
}

.k-p-2\.5 {
    padding: 10px;
}

.\!k-p-2\.5 {
    padding: 10px !important;
}

.k-p-3 {
    padding: 12px;
}

.\!k-p-3 {
    padding: 12px !important;
}

.k-p-3\.5 {
    padding: 14px;
}

.\!k-p-3\.5 {
    padding: 14px !important;
}

.k-p-4 {
    padding: 16px;
}

.\!k-p-4 {
    padding: 16px !important;
}

.k-p-4\.5 {
    padding: 18px;
}

.\!k-p-4\.5 {
    padding: 18px !important;
}

.k-p-5 {
    padding: 20px;
}

.\!k-p-5 {
    padding: 20px !important;
}

.k-p-5\.5 {
    padding: 22px;
}

.\!k-p-5\.5 {
    padding: 22px !important;
}

.k-p-6 {
    padding: 24px;
}

.\!k-p-6 {
    padding: 24px !important;
}

.k-p-6\.5 {
    padding: 26px;
}

.\!k-p-6\.5 {
    padding: 26px !important;
}

.k-p-7 {
    padding: 28px;
}

.\!k-p-7 {
    padding: 28px !important;
}

.k-p-7\.5 {
    padding: 30px;
}

.\!k-p-7\.5 {
    padding: 30px !important;
}

.k-p-8 {
    padding: 32px;
}

.\!k-p-8 {
    padding: 32px !important;
}

.k-p-9 {
    padding: 36px;
}

.\!k-p-9 {
    padding: 36px !important;
}

.k-p-10 {
    padding: 40px;
}

.\!k-p-10 {
    padding: 40px !important;
}

.k-p-11 {
    padding: 44px;
}

.\!k-p-11 {
    padding: 44px !important;
}

.k-p-12 {
    padding: 48px;
}

.\!k-p-12 {
    padding: 48px !important;
}

.k-p-13 {
    padding: 52px;
}

.\!k-p-13 {
    padding: 52px !important;
}

.k-p-14 {
    padding: 56px;
}

.\!k-p-14 {
    padding: 56px !important;
}

.k-p-15 {
    padding: 60px;
}

.\!k-p-15 {
    padding: 60px !important;
}

.k-p-16 {
    padding: 64px;
}

.\!k-p-16 {
    padding: 64px !important;
}

.k-p-17 {
    padding: 68px;
}

.\!k-p-17 {
    padding: 68px !important;
}

.k-p-18 {
    padding: 72px;
}

.\!k-p-18 {
    padding: 72px !important;
}

.k-p-19 {
    padding: 76px;
}

.\!k-p-19 {
    padding: 76px !important;
}

.k-p-20 {
    padding: 80px;
}

.\!k-p-20 {
    padding: 80px !important;
}

.k-p-21 {
    padding: 84px;
}

.\!k-p-21 {
    padding: 84px !important;
}

.k-p-22 {
    padding: 88px;
}

.\!k-p-22 {
    padding: 88px !important;
}

.k-p-23 {
    padding: 92px;
}

.\!k-p-23 {
    padding: 92px !important;
}

.k-p-24 {
    padding: 96px;
}

.\!k-p-24 {
    padding: 96px !important;
}

.k-p-xs {
    padding: 4px;
}

.\!k-p-xs {
    padding: 4px !important;
}

.k-p-sm {
    padding: 8px;
}

.\!k-p-sm {
    padding: 8px !important;
}

.k-p-md {
    padding: 12px;
}

.\!k-p-md {
    padding: 12px !important;
}

.k-p-lg {
    padding: 16px;
}

.\!k-p-lg {
    padding: 16px !important;
}

.k-p-xl {
    padding: 24px;
}

.\!k-p-xl {
    padding: 24px !important;
}

.k-p-thin {
    padding: 2px;
}

.\!k-p-thin {
    padding: 2px !important;
}

.k-p-hair {
    padding: 1px;
}

.\!k-p-hair {
    padding: 1px !important;
}

.k-pt-0 {
    padding-top: 0;
}

.\!k-pt-0 {
    padding-top: 0 !important;
}

.k-pt-1px {
    padding-top: 1px;
}

.\!k-pt-1px {
    padding-top: 1px !important;
}

.k-pt-\.5 {
    padding-top: 2px;
}

.\!k-pt-\.5 {
    padding-top: 2px !important;
}

.k-pt-1 {
    padding-top: 4px;
}

.\!k-pt-1 {
    padding-top: 4px !important;
}

.k-pt-1\.5 {
    padding-top: 6px;
}

.\!k-pt-1\.5 {
    padding-top: 6px !important;
}

.k-pt-2 {
    padding-top: 8px;
}

.\!k-pt-2 {
    padding-top: 8px !important;
}

.k-pt-2\.5 {
    padding-top: 10px;
}

.\!k-pt-2\.5 {
    padding-top: 10px !important;
}

.k-pt-3 {
    padding-top: 12px;
}

.\!k-pt-3 {
    padding-top: 12px !important;
}

.k-pt-3\.5 {
    padding-top: 14px;
}

.\!k-pt-3\.5 {
    padding-top: 14px !important;
}

.k-pt-4 {
    padding-top: 16px;
}

.\!k-pt-4 {
    padding-top: 16px !important;
}

.k-pt-4\.5 {
    padding-top: 18px;
}

.\!k-pt-4\.5 {
    padding-top: 18px !important;
}

.k-pt-5 {
    padding-top: 20px;
}

.\!k-pt-5 {
    padding-top: 20px !important;
}

.k-pt-5\.5 {
    padding-top: 22px;
}

.\!k-pt-5\.5 {
    padding-top: 22px !important;
}

.k-pt-6 {
    padding-top: 24px;
}

.\!k-pt-6 {
    padding-top: 24px !important;
}

.k-pt-6\.5 {
    padding-top: 26px;
}

.\!k-pt-6\.5 {
    padding-top: 26px !important;
}

.k-pt-7 {
    padding-top: 28px;
}

.\!k-pt-7 {
    padding-top: 28px !important;
}

.k-pt-7\.5 {
    padding-top: 30px;
}

.\!k-pt-7\.5 {
    padding-top: 30px !important;
}

.k-pt-8 {
    padding-top: 32px;
}

.\!k-pt-8 {
    padding-top: 32px !important;
}

.k-pt-9 {
    padding-top: 36px;
}

.\!k-pt-9 {
    padding-top: 36px !important;
}

.k-pt-10 {
    padding-top: 40px;
}

.\!k-pt-10 {
    padding-top: 40px !important;
}

.k-pt-11 {
    padding-top: 44px;
}

.\!k-pt-11 {
    padding-top: 44px !important;
}

.k-pt-12 {
    padding-top: 48px;
}

.\!k-pt-12 {
    padding-top: 48px !important;
}

.k-pt-13 {
    padding-top: 52px;
}

.\!k-pt-13 {
    padding-top: 52px !important;
}

.k-pt-14 {
    padding-top: 56px;
}

.\!k-pt-14 {
    padding-top: 56px !important;
}

.k-pt-15 {
    padding-top: 60px;
}

.\!k-pt-15 {
    padding-top: 60px !important;
}

.k-pt-16 {
    padding-top: 64px;
}

.\!k-pt-16 {
    padding-top: 64px !important;
}

.k-pt-17 {
    padding-top: 68px;
}

.\!k-pt-17 {
    padding-top: 68px !important;
}

.k-pt-18 {
    padding-top: 72px;
}

.\!k-pt-18 {
    padding-top: 72px !important;
}

.k-pt-19 {
    padding-top: 76px;
}

.\!k-pt-19 {
    padding-top: 76px !important;
}

.k-pt-20 {
    padding-top: 80px;
}

.\!k-pt-20 {
    padding-top: 80px !important;
}

.k-pt-21 {
    padding-top: 84px;
}

.\!k-pt-21 {
    padding-top: 84px !important;
}

.k-pt-22 {
    padding-top: 88px;
}

.\!k-pt-22 {
    padding-top: 88px !important;
}

.k-pt-23 {
    padding-top: 92px;
}

.\!k-pt-23 {
    padding-top: 92px !important;
}

.k-pt-24 {
    padding-top: 96px;
}

.\!k-pt-24 {
    padding-top: 96px !important;
}

.k-pt-xs {
    padding-top: 4px;
}

.\!k-pt-xs {
    padding-top: 4px !important;
}

.k-pt-sm {
    padding-top: 8px;
}

.\!k-pt-sm {
    padding-top: 8px !important;
}

.k-pt-md {
    padding-top: 12px;
}

.\!k-pt-md {
    padding-top: 12px !important;
}

.k-pt-lg {
    padding-top: 16px;
}

.\!k-pt-lg {
    padding-top: 16px !important;
}

.k-pt-xl {
    padding-top: 24px;
}

.\!k-pt-xl {
    padding-top: 24px !important;
}

.k-pt-thin {
    padding-top: 2px;
}

.\!k-pt-thin {
    padding-top: 2px !important;
}

.k-pt-hair {
    padding-top: 1px;
}

.\!k-pt-hair {
    padding-top: 1px !important;
}

.k-pr-0 {
    padding-right: 0;
}

.\!k-pr-0 {
    padding-right: 0 !important;
}

.k-pr-1px {
    padding-right: 1px;
}

.\!k-pr-1px {
    padding-right: 1px !important;
}

.k-pr-\.5 {
    padding-right: 2px;
}

.\!k-pr-\.5 {
    padding-right: 2px !important;
}

.k-pr-1 {
    padding-right: 4px;
}

.\!k-pr-1 {
    padding-right: 4px !important;
}

.k-pr-1\.5 {
    padding-right: 6px;
}

.\!k-pr-1\.5 {
    padding-right: 6px !important;
}

.k-pr-2 {
    padding-right: 8px;
}

.\!k-pr-2 {
    padding-right: 8px !important;
}

.k-pr-2\.5 {
    padding-right: 10px;
}

.\!k-pr-2\.5 {
    padding-right: 10px !important;
}

.k-pr-3 {
    padding-right: 12px;
}

.\!k-pr-3 {
    padding-right: 12px !important;
}

.k-pr-3\.5 {
    padding-right: 14px;
}

.\!k-pr-3\.5 {
    padding-right: 14px !important;
}

.k-pr-4 {
    padding-right: 16px;
}

.\!k-pr-4 {
    padding-right: 16px !important;
}

.k-pr-4\.5 {
    padding-right: 18px;
}

.\!k-pr-4\.5 {
    padding-right: 18px !important;
}

.k-pr-5 {
    padding-right: 20px;
}

.\!k-pr-5 {
    padding-right: 20px !important;
}

.k-pr-5\.5 {
    padding-right: 22px;
}

.\!k-pr-5\.5 {
    padding-right: 22px !important;
}

.k-pr-6 {
    padding-right: 24px;
}

.\!k-pr-6 {
    padding-right: 24px !important;
}

.k-pr-6\.5 {
    padding-right: 26px;
}

.\!k-pr-6\.5 {
    padding-right: 26px !important;
}

.k-pr-7 {
    padding-right: 28px;
}

.\!k-pr-7 {
    padding-right: 28px !important;
}

.k-pr-7\.5 {
    padding-right: 30px;
}

.\!k-pr-7\.5 {
    padding-right: 30px !important;
}

.k-pr-8 {
    padding-right: 32px;
}

.\!k-pr-8 {
    padding-right: 32px !important;
}

.k-pr-9 {
    padding-right: 36px;
}

.\!k-pr-9 {
    padding-right: 36px !important;
}

.k-pr-10 {
    padding-right: 40px;
}

.\!k-pr-10 {
    padding-right: 40px !important;
}

.k-pr-11 {
    padding-right: 44px;
}

.\!k-pr-11 {
    padding-right: 44px !important;
}

.k-pr-12 {
    padding-right: 48px;
}

.\!k-pr-12 {
    padding-right: 48px !important;
}

.k-pr-13 {
    padding-right: 52px;
}

.\!k-pr-13 {
    padding-right: 52px !important;
}

.k-pr-14 {
    padding-right: 56px;
}

.\!k-pr-14 {
    padding-right: 56px !important;
}

.k-pr-15 {
    padding-right: 60px;
}

.\!k-pr-15 {
    padding-right: 60px !important;
}

.k-pr-16 {
    padding-right: 64px;
}

.\!k-pr-16 {
    padding-right: 64px !important;
}

.k-pr-17 {
    padding-right: 68px;
}

.\!k-pr-17 {
    padding-right: 68px !important;
}

.k-pr-18 {
    padding-right: 72px;
}

.\!k-pr-18 {
    padding-right: 72px !important;
}

.k-pr-19 {
    padding-right: 76px;
}

.\!k-pr-19 {
    padding-right: 76px !important;
}

.k-pr-20 {
    padding-right: 80px;
}

.\!k-pr-20 {
    padding-right: 80px !important;
}

.k-pr-21 {
    padding-right: 84px;
}

.\!k-pr-21 {
    padding-right: 84px !important;
}

.k-pr-22 {
    padding-right: 88px;
}

.\!k-pr-22 {
    padding-right: 88px !important;
}

.k-pr-23 {
    padding-right: 92px;
}

.\!k-pr-23 {
    padding-right: 92px !important;
}

.k-pr-24 {
    padding-right: 96px;
}

.\!k-pr-24 {
    padding-right: 96px !important;
}

.k-pr-xs {
    padding-right: 4px;
}

.\!k-pr-xs {
    padding-right: 4px !important;
}

.k-pr-sm {
    padding-right: 8px;
}

.\!k-pr-sm {
    padding-right: 8px !important;
}

.k-pr-md {
    padding-right: 12px;
}

.\!k-pr-md {
    padding-right: 12px !important;
}

.k-pr-lg {
    padding-right: 16px;
}

.\!k-pr-lg {
    padding-right: 16px !important;
}

.k-pr-xl {
    padding-right: 24px;
}

.\!k-pr-xl {
    padding-right: 24px !important;
}

.k-pr-thin {
    padding-right: 2px;
}

.\!k-pr-thin {
    padding-right: 2px !important;
}

.k-pr-hair {
    padding-right: 1px;
}

.\!k-pr-hair {
    padding-right: 1px !important;
}

.k-pb-0 {
    padding-bottom: 0;
}

.\!k-pb-0 {
    padding-bottom: 0 !important;
}

.k-pb-1px {
    padding-bottom: 1px;
}

.\!k-pb-1px {
    padding-bottom: 1px !important;
}

.k-pb-\.5 {
    padding-bottom: 2px;
}

.\!k-pb-\.5 {
    padding-bottom: 2px !important;
}

.k-pb-1 {
    padding-bottom: 4px;
}

.\!k-pb-1 {
    padding-bottom: 4px !important;
}

.k-pb-1\.5 {
    padding-bottom: 6px;
}

.\!k-pb-1\.5 {
    padding-bottom: 6px !important;
}

.k-pb-2 {
    padding-bottom: 8px;
}

.\!k-pb-2 {
    padding-bottom: 8px !important;
}

.k-pb-2\.5 {
    padding-bottom: 10px;
}

.\!k-pb-2\.5 {
    padding-bottom: 10px !important;
}

.k-pb-3 {
    padding-bottom: 12px;
}

.\!k-pb-3 {
    padding-bottom: 12px !important;
}

.k-pb-3\.5 {
    padding-bottom: 14px;
}

.\!k-pb-3\.5 {
    padding-bottom: 14px !important;
}

.k-pb-4 {
    padding-bottom: 16px;
}

.\!k-pb-4 {
    padding-bottom: 16px !important;
}

.k-pb-4\.5 {
    padding-bottom: 18px;
}

.\!k-pb-4\.5 {
    padding-bottom: 18px !important;
}

.k-pb-5 {
    padding-bottom: 20px;
}

.\!k-pb-5 {
    padding-bottom: 20px !important;
}

.k-pb-5\.5 {
    padding-bottom: 22px;
}

.\!k-pb-5\.5 {
    padding-bottom: 22px !important;
}

.k-pb-6 {
    padding-bottom: 24px;
}

.\!k-pb-6 {
    padding-bottom: 24px !important;
}

.k-pb-6\.5 {
    padding-bottom: 26px;
}

.\!k-pb-6\.5 {
    padding-bottom: 26px !important;
}

.k-pb-7 {
    padding-bottom: 28px;
}

.\!k-pb-7 {
    padding-bottom: 28px !important;
}

.k-pb-7\.5 {
    padding-bottom: 30px;
}

.\!k-pb-7\.5 {
    padding-bottom: 30px !important;
}

.k-pb-8 {
    padding-bottom: 32px;
}

.\!k-pb-8 {
    padding-bottom: 32px !important;
}

.k-pb-9 {
    padding-bottom: 36px;
}

.\!k-pb-9 {
    padding-bottom: 36px !important;
}

.k-pb-10 {
    padding-bottom: 40px;
}

.\!k-pb-10 {
    padding-bottom: 40px !important;
}

.k-pb-11 {
    padding-bottom: 44px;
}

.\!k-pb-11 {
    padding-bottom: 44px !important;
}

.k-pb-12 {
    padding-bottom: 48px;
}

.\!k-pb-12 {
    padding-bottom: 48px !important;
}

.k-pb-13 {
    padding-bottom: 52px;
}

.\!k-pb-13 {
    padding-bottom: 52px !important;
}

.k-pb-14 {
    padding-bottom: 56px;
}

.\!k-pb-14 {
    padding-bottom: 56px !important;
}

.k-pb-15 {
    padding-bottom: 60px;
}

.\!k-pb-15 {
    padding-bottom: 60px !important;
}

.k-pb-16 {
    padding-bottom: 64px;
}

.\!k-pb-16 {
    padding-bottom: 64px !important;
}

.k-pb-17 {
    padding-bottom: 68px;
}

.\!k-pb-17 {
    padding-bottom: 68px !important;
}

.k-pb-18 {
    padding-bottom: 72px;
}

.\!k-pb-18 {
    padding-bottom: 72px !important;
}

.k-pb-19 {
    padding-bottom: 76px;
}

.\!k-pb-19 {
    padding-bottom: 76px !important;
}

.k-pb-20 {
    padding-bottom: 80px;
}

.\!k-pb-20 {
    padding-bottom: 80px !important;
}

.k-pb-21 {
    padding-bottom: 84px;
}

.\!k-pb-21 {
    padding-bottom: 84px !important;
}

.k-pb-22 {
    padding-bottom: 88px;
}

.\!k-pb-22 {
    padding-bottom: 88px !important;
}

.k-pb-23 {
    padding-bottom: 92px;
}

.\!k-pb-23 {
    padding-bottom: 92px !important;
}

.k-pb-24 {
    padding-bottom: 96px;
}

.\!k-pb-24 {
    padding-bottom: 96px !important;
}

.k-pb-xs {
    padding-bottom: 4px;
}

.\!k-pb-xs {
    padding-bottom: 4px !important;
}

.k-pb-sm {
    padding-bottom: 8px;
}

.\!k-pb-sm {
    padding-bottom: 8px !important;
}

.k-pb-md {
    padding-bottom: 12px;
}

.\!k-pb-md {
    padding-bottom: 12px !important;
}

.k-pb-lg {
    padding-bottom: 16px;
}

.\!k-pb-lg {
    padding-bottom: 16px !important;
}

.k-pb-xl {
    padding-bottom: 24px;
}

.\!k-pb-xl {
    padding-bottom: 24px !important;
}

.k-pb-thin {
    padding-bottom: 2px;
}

.\!k-pb-thin {
    padding-bottom: 2px !important;
}

.k-pb-hair {
    padding-bottom: 1px;
}

.\!k-pb-hair {
    padding-bottom: 1px !important;
}

.k-pl-0 {
    padding-left: 0;
}

.\!k-pl-0 {
    padding-left: 0 !important;
}

.k-pl-1px {
    padding-left: 1px;
}

.\!k-pl-1px {
    padding-left: 1px !important;
}

.k-pl-\.5 {
    padding-left: 2px;
}

.\!k-pl-\.5 {
    padding-left: 2px !important;
}

.k-pl-1 {
    padding-left: 4px;
}

.\!k-pl-1 {
    padding-left: 4px !important;
}

.k-pl-1\.5 {
    padding-left: 6px;
}

.\!k-pl-1\.5 {
    padding-left: 6px !important;
}

.k-pl-2 {
    padding-left: 8px;
}

.\!k-pl-2 {
    padding-left: 8px !important;
}

.k-pl-2\.5 {
    padding-left: 10px;
}

.\!k-pl-2\.5 {
    padding-left: 10px !important;
}

.k-pl-3 {
    padding-left: 12px;
}

.\!k-pl-3 {
    padding-left: 12px !important;
}

.k-pl-3\.5 {
    padding-left: 14px;
}

.\!k-pl-3\.5 {
    padding-left: 14px !important;
}

.k-pl-4 {
    padding-left: 16px;
}

.\!k-pl-4 {
    padding-left: 16px !important;
}

.k-pl-4\.5 {
    padding-left: 18px;
}

.\!k-pl-4\.5 {
    padding-left: 18px !important;
}

.k-pl-5 {
    padding-left: 20px;
}

.\!k-pl-5 {
    padding-left: 20px !important;
}

.k-pl-5\.5 {
    padding-left: 22px;
}

.\!k-pl-5\.5 {
    padding-left: 22px !important;
}

.k-pl-6 {
    padding-left: 24px;
}

.\!k-pl-6 {
    padding-left: 24px !important;
}

.k-pl-6\.5 {
    padding-left: 26px;
}

.\!k-pl-6\.5 {
    padding-left: 26px !important;
}

.k-pl-7 {
    padding-left: 28px;
}

.\!k-pl-7 {
    padding-left: 28px !important;
}

.k-pl-7\.5 {
    padding-left: 30px;
}

.\!k-pl-7\.5 {
    padding-left: 30px !important;
}

.k-pl-8 {
    padding-left: 32px;
}

.\!k-pl-8 {
    padding-left: 32px !important;
}

.k-pl-9 {
    padding-left: 36px;
}

.\!k-pl-9 {
    padding-left: 36px !important;
}

.k-pl-10 {
    padding-left: 40px;
}

.\!k-pl-10 {
    padding-left: 40px !important;
}

.k-pl-11 {
    padding-left: 44px;
}

.\!k-pl-11 {
    padding-left: 44px !important;
}

.k-pl-12 {
    padding-left: 48px;
}

.\!k-pl-12 {
    padding-left: 48px !important;
}

.k-pl-13 {
    padding-left: 52px;
}

.\!k-pl-13 {
    padding-left: 52px !important;
}

.k-pl-14 {
    padding-left: 56px;
}

.\!k-pl-14 {
    padding-left: 56px !important;
}

.k-pl-15 {
    padding-left: 60px;
}

.\!k-pl-15 {
    padding-left: 60px !important;
}

.k-pl-16 {
    padding-left: 64px;
}

.\!k-pl-16 {
    padding-left: 64px !important;
}

.k-pl-17 {
    padding-left: 68px;
}

.\!k-pl-17 {
    padding-left: 68px !important;
}

.k-pl-18 {
    padding-left: 72px;
}

.\!k-pl-18 {
    padding-left: 72px !important;
}

.k-pl-19 {
    padding-left: 76px;
}

.\!k-pl-19 {
    padding-left: 76px !important;
}

.k-pl-20 {
    padding-left: 80px;
}

.\!k-pl-20 {
    padding-left: 80px !important;
}

.k-pl-21 {
    padding-left: 84px;
}

.\!k-pl-21 {
    padding-left: 84px !important;
}

.k-pl-22 {
    padding-left: 88px;
}

.\!k-pl-22 {
    padding-left: 88px !important;
}

.k-pl-23 {
    padding-left: 92px;
}

.\!k-pl-23 {
    padding-left: 92px !important;
}

.k-pl-24 {
    padding-left: 96px;
}

.\!k-pl-24 {
    padding-left: 96px !important;
}

.k-pl-xs {
    padding-left: 4px;
}

.\!k-pl-xs {
    padding-left: 4px !important;
}

.k-pl-sm {
    padding-left: 8px;
}

.\!k-pl-sm {
    padding-left: 8px !important;
}

.k-pl-md {
    padding-left: 12px;
}

.\!k-pl-md {
    padding-left: 12px !important;
}

.k-pl-lg {
    padding-left: 16px;
}

.\!k-pl-lg {
    padding-left: 16px !important;
}

.k-pl-xl {
    padding-left: 24px;
}

.\!k-pl-xl {
    padding-left: 24px !important;
}

.k-pl-thin {
    padding-left: 2px;
}

.\!k-pl-thin {
    padding-left: 2px !important;
}

.k-pl-hair {
    padding-left: 1px;
}

.\!k-pl-hair {
    padding-left: 1px !important;
}

.k-px-0 {
    padding-inline: 0;
}

.\!k-px-0 {
    padding-inline: 0 !important;
}

.k-px-1px {
    padding-inline: 1px;
}

.\!k-px-1px {
    padding-inline: 1px !important;
}

.k-px-\.5 {
    padding-inline: 2px;
}

.\!k-px-\.5 {
    padding-inline: 2px !important;
}

.k-px-1 {
    padding-inline: 4px;
}

.\!k-px-1 {
    padding-inline: 4px !important;
}

.k-px-1\.5 {
    padding-inline: 6px;
}

.\!k-px-1\.5 {
    padding-inline: 6px !important;
}

.k-px-2 {
    padding-inline: 8px;
}

.\!k-px-2 {
    padding-inline: 8px !important;
}

.k-px-2\.5 {
    padding-inline: 10px;
}

.\!k-px-2\.5 {
    padding-inline: 10px !important;
}

.k-px-3 {
    padding-inline: 12px;
}

.\!k-px-3 {
    padding-inline: 12px !important;
}

.k-px-3\.5 {
    padding-inline: 14px;
}

.\!k-px-3\.5 {
    padding-inline: 14px !important;
}

.k-px-4 {
    padding-inline: 16px;
}

.\!k-px-4 {
    padding-inline: 16px !important;
}

.k-px-4\.5 {
    padding-inline: 18px;
}

.\!k-px-4\.5 {
    padding-inline: 18px !important;
}

.k-px-5 {
    padding-inline: 20px;
}

.\!k-px-5 {
    padding-inline: 20px !important;
}

.k-px-5\.5 {
    padding-inline: 22px;
}

.\!k-px-5\.5 {
    padding-inline: 22px !important;
}

.k-px-6 {
    padding-inline: 24px;
}

.\!k-px-6 {
    padding-inline: 24px !important;
}

.k-px-6\.5 {
    padding-inline: 26px;
}

.\!k-px-6\.5 {
    padding-inline: 26px !important;
}

.k-px-7 {
    padding-inline: 28px;
}

.\!k-px-7 {
    padding-inline: 28px !important;
}

.k-px-7\.5 {
    padding-inline: 30px;
}

.\!k-px-7\.5 {
    padding-inline: 30px !important;
}

.k-px-8 {
    padding-inline: 32px;
}

.\!k-px-8 {
    padding-inline: 32px !important;
}

.k-px-9 {
    padding-inline: 36px;
}

.\!k-px-9 {
    padding-inline: 36px !important;
}

.k-px-10 {
    padding-inline: 40px;
}

.\!k-px-10 {
    padding-inline: 40px !important;
}

.k-px-11 {
    padding-inline: 44px;
}

.\!k-px-11 {
    padding-inline: 44px !important;
}

.k-px-12 {
    padding-inline: 48px;
}

.\!k-px-12 {
    padding-inline: 48px !important;
}

.k-px-13 {
    padding-inline: 52px;
}

.\!k-px-13 {
    padding-inline: 52px !important;
}

.k-px-14 {
    padding-inline: 56px;
}

.\!k-px-14 {
    padding-inline: 56px !important;
}

.k-px-15 {
    padding-inline: 60px;
}

.\!k-px-15 {
    padding-inline: 60px !important;
}

.k-px-16 {
    padding-inline: 64px;
}

.\!k-px-16 {
    padding-inline: 64px !important;
}

.k-px-17 {
    padding-inline: 68px;
}

.\!k-px-17 {
    padding-inline: 68px !important;
}

.k-px-18 {
    padding-inline: 72px;
}

.\!k-px-18 {
    padding-inline: 72px !important;
}

.k-px-19 {
    padding-inline: 76px;
}

.\!k-px-19 {
    padding-inline: 76px !important;
}

.k-px-20 {
    padding-inline: 80px;
}

.\!k-px-20 {
    padding-inline: 80px !important;
}

.k-px-21 {
    padding-inline: 84px;
}

.\!k-px-21 {
    padding-inline: 84px !important;
}

.k-px-22 {
    padding-inline: 88px;
}

.\!k-px-22 {
    padding-inline: 88px !important;
}

.k-px-23 {
    padding-inline: 92px;
}

.\!k-px-23 {
    padding-inline: 92px !important;
}

.k-px-24 {
    padding-inline: 96px;
}

.\!k-px-24 {
    padding-inline: 96px !important;
}

.k-px-xs {
    padding-inline: 4px;
}

.\!k-px-xs {
    padding-inline: 4px !important;
}

.k-px-sm {
    padding-inline: 8px;
}

.\!k-px-sm {
    padding-inline: 8px !important;
}

.k-px-md {
    padding-inline: 12px;
}

.\!k-px-md {
    padding-inline: 12px !important;
}

.k-px-lg {
    padding-inline: 16px;
}

.\!k-px-lg {
    padding-inline: 16px !important;
}

.k-px-xl {
    padding-inline: 24px;
}

.\!k-px-xl {
    padding-inline: 24px !important;
}

.k-px-thin {
    padding-inline: 2px;
}

.\!k-px-thin {
    padding-inline: 2px !important;
}

.k-px-hair {
    padding-inline: 1px;
}

.\!k-px-hair {
    padding-inline: 1px !important;
}

.k-py-0 {
    padding-block: 0;
}

.\!k-py-0 {
    padding-block: 0 !important;
}

.k-py-1px {
    padding-block: 1px;
}

.\!k-py-1px {
    padding-block: 1px !important;
}

.k-py-\.5 {
    padding-block: 2px;
}

.\!k-py-\.5 {
    padding-block: 2px !important;
}

.k-py-1 {
    padding-block: 4px;
}

.\!k-py-1 {
    padding-block: 4px !important;
}

.k-py-1\.5 {
    padding-block: 6px;
}

.\!k-py-1\.5 {
    padding-block: 6px !important;
}

.k-py-2 {
    padding-block: 8px;
}

.\!k-py-2 {
    padding-block: 8px !important;
}

.k-py-2\.5 {
    padding-block: 10px;
}

.\!k-py-2\.5 {
    padding-block: 10px !important;
}

.k-py-3 {
    padding-block: 12px;
}

.\!k-py-3 {
    padding-block: 12px !important;
}

.k-py-3\.5 {
    padding-block: 14px;
}

.\!k-py-3\.5 {
    padding-block: 14px !important;
}

.k-py-4 {
    padding-block: 16px;
}

.\!k-py-4 {
    padding-block: 16px !important;
}

.k-py-4\.5 {
    padding-block: 18px;
}

.\!k-py-4\.5 {
    padding-block: 18px !important;
}

.k-py-5 {
    padding-block: 20px;
}

.\!k-py-5 {
    padding-block: 20px !important;
}

.k-py-5\.5 {
    padding-block: 22px;
}

.\!k-py-5\.5 {
    padding-block: 22px !important;
}

.k-py-6 {
    padding-block: 24px;
}

.\!k-py-6 {
    padding-block: 24px !important;
}

.k-py-6\.5 {
    padding-block: 26px;
}

.\!k-py-6\.5 {
    padding-block: 26px !important;
}

.k-py-7 {
    padding-block: 28px;
}

.\!k-py-7 {
    padding-block: 28px !important;
}

.k-py-7\.5 {
    padding-block: 30px;
}

.\!k-py-7\.5 {
    padding-block: 30px !important;
}

.k-py-8 {
    padding-block: 32px;
}

.\!k-py-8 {
    padding-block: 32px !important;
}

.k-py-9 {
    padding-block: 36px;
}

.\!k-py-9 {
    padding-block: 36px !important;
}

.k-py-10 {
    padding-block: 40px;
}

.\!k-py-10 {
    padding-block: 40px !important;
}

.k-py-11 {
    padding-block: 44px;
}

.\!k-py-11 {
    padding-block: 44px !important;
}

.k-py-12 {
    padding-block: 48px;
}

.\!k-py-12 {
    padding-block: 48px !important;
}

.k-py-13 {
    padding-block: 52px;
}

.\!k-py-13 {
    padding-block: 52px !important;
}

.k-py-14 {
    padding-block: 56px;
}

.\!k-py-14 {
    padding-block: 56px !important;
}

.k-py-15 {
    padding-block: 60px;
}

.\!k-py-15 {
    padding-block: 60px !important;
}

.k-py-16 {
    padding-block: 64px;
}

.\!k-py-16 {
    padding-block: 64px !important;
}

.k-py-17 {
    padding-block: 68px;
}

.\!k-py-17 {
    padding-block: 68px !important;
}

.k-py-18 {
    padding-block: 72px;
}

.\!k-py-18 {
    padding-block: 72px !important;
}

.k-py-19 {
    padding-block: 76px;
}

.\!k-py-19 {
    padding-block: 76px !important;
}

.k-py-20 {
    padding-block: 80px;
}

.\!k-py-20 {
    padding-block: 80px !important;
}

.k-py-21 {
    padding-block: 84px;
}

.\!k-py-21 {
    padding-block: 84px !important;
}

.k-py-22 {
    padding-block: 88px;
}

.\!k-py-22 {
    padding-block: 88px !important;
}

.k-py-23 {
    padding-block: 92px;
}

.\!k-py-23 {
    padding-block: 92px !important;
}

.k-py-24 {
    padding-block: 96px;
}

.\!k-py-24 {
    padding-block: 96px !important;
}

.k-py-xs {
    padding-block: 4px;
}

.\!k-py-xs {
    padding-block: 4px !important;
}

.k-py-sm {
    padding-block: 8px;
}

.\!k-py-sm {
    padding-block: 8px !important;
}

.k-py-md {
    padding-block: 12px;
}

.\!k-py-md {
    padding-block: 12px !important;
}

.k-py-lg {
    padding-block: 16px;
}

.\!k-py-lg {
    padding-block: 16px !important;
}

.k-py-xl {
    padding-block: 24px;
}

.\!k-py-xl {
    padding-block: 24px !important;
}

.k-py-thin {
    padding-block: 2px;
}

.\!k-py-thin {
    padding-block: 2px !important;
}

.k-py-hair {
    padding-block: 1px;
}

.\!k-py-hair {
    padding-block: 1px !important;
}

.k-h-0 {
    height: 0;
}

.\!k-h-0 {
    height: 0 !important;
}

.k-h-1px {
    height: 1px;
}

.\!k-h-1px {
    height: 1px !important;
}

.k-h-\.5 {
    height: 2px;
}

.\!k-h-\.5 {
    height: 2px !important;
}

.k-h-1 {
    height: 4px;
}

.\!k-h-1 {
    height: 4px !important;
}

.k-h-1\.5 {
    height: 6px;
}

.\!k-h-1\.5 {
    height: 6px !important;
}

.k-h-2 {
    height: 8px;
}

.\!k-h-2 {
    height: 8px !important;
}

.k-h-2\.5 {
    height: 10px;
}

.\!k-h-2\.5 {
    height: 10px !important;
}

.k-h-3 {
    height: 12px;
}

.\!k-h-3 {
    height: 12px !important;
}

.k-h-3\.5 {
    height: 14px;
}

.\!k-h-3\.5 {
    height: 14px !important;
}

.k-h-4 {
    height: 16px;
}

.\!k-h-4 {
    height: 16px !important;
}

.k-h-4\.5 {
    height: 18px;
}

.\!k-h-4\.5 {
    height: 18px !important;
}

.k-h-5 {
    height: 20px;
}

.\!k-h-5 {
    height: 20px !important;
}

.k-h-5\.5 {
    height: 22px;
}

.\!k-h-5\.5 {
    height: 22px !important;
}

.k-h-6 {
    height: 24px;
}

.\!k-h-6 {
    height: 24px !important;
}

.k-h-6\.5 {
    height: 26px;
}

.\!k-h-6\.5 {
    height: 26px !important;
}

.k-h-7 {
    height: 28px;
}

.\!k-h-7 {
    height: 28px !important;
}

.k-h-7\.5 {
    height: 30px;
}

.\!k-h-7\.5 {
    height: 30px !important;
}

.k-h-8 {
    height: 32px;
}

.\!k-h-8 {
    height: 32px !important;
}

.k-h-9 {
    height: 36px;
}

.\!k-h-9 {
    height: 36px !important;
}

.k-h-10 {
    height: 40px;
}

.\!k-h-10 {
    height: 40px !important;
}

.k-h-11 {
    height: 44px;
}

.\!k-h-11 {
    height: 44px !important;
}

.k-h-12 {
    height: 48px;
}

.\!k-h-12 {
    height: 48px !important;
}

.k-h-13 {
    height: 52px;
}

.\!k-h-13 {
    height: 52px !important;
}

.k-h-14 {
    height: 56px;
}

.\!k-h-14 {
    height: 56px !important;
}

.k-h-15 {
    height: 60px;
}

.\!k-h-15 {
    height: 60px !important;
}

.k-h-16 {
    height: 64px;
}

.\!k-h-16 {
    height: 64px !important;
}

.k-h-17 {
    height: 68px;
}

.\!k-h-17 {
    height: 68px !important;
}

.k-h-18 {
    height: 72px;
}

.\!k-h-18 {
    height: 72px !important;
}

.k-h-19 {
    height: 76px;
}

.\!k-h-19 {
    height: 76px !important;
}

.k-h-20 {
    height: 80px;
}

.\!k-h-20 {
    height: 80px !important;
}

.k-h-21 {
    height: 84px;
}

.\!k-h-21 {
    height: 84px !important;
}

.k-h-22 {
    height: 88px;
}

.\!k-h-22 {
    height: 88px !important;
}

.k-h-23 {
    height: 92px;
}

.\!k-h-23 {
    height: 92px !important;
}

.k-h-24 {
    height: 96px;
}

.\!k-h-24 {
    height: 96px !important;
}

.k-h-auto {
    height: auto;
}

.\!k-h-auto {
    height: auto !important;
}

.k-h-1\/2 {
    height: 50%
}

.\!k-h-1\/2 {
    height: 50% !important;
}

.k-h-1\/3 {
    height: 33.333333%
}

.\!k-h-1\/3 {
    height: 33.333333% !important;
}

.k-h-2\/3 {
    height: 66.666667%
}

.\!k-h-2\/3 {
    height: 66.666667% !important;
}

.k-h-1\/4 {
    height: 25%
}

.\!k-h-1\/4 {
    height: 25% !important;
}

.k-h-2\/4 {
    height: 50%
}

.\!k-h-2\/4 {
    height: 50% !important;
}

.k-h-3\/4 {
    height: 75%
}

.\!k-h-3\/4 {
    height: 75% !important;
}

.k-h-1\/5 {
    height: 20%
}

.\!k-h-1\/5 {
    height: 20% !important;
}

.k-h-2\/5 {
    height: 40%
}

.\!k-h-2\/5 {
    height: 40% !important;
}

.k-h-3\/5 {
    height: 60%
}

.\!k-h-3\/5 {
    height: 60% !important;
}

.k-h-4\/5 {
    height: 80%
}

.\!k-h-4\/5 {
    height: 80% !important;
}

.k-h-1\/6 {
    height: 16.666667%
}

.\!k-h-1\/6 {
    height: 16.666667% !important;
}

.k-h-2\/6 {
    height: 33.333333%
}

.\!k-h-2\/6 {
    height: 33.333333% !important;
}

.k-h-3\/6 {
    height: 50%
}

.\!k-h-3\/6 {
    height: 50% !important;
}

.k-h-4\/6 {
    height: 66.666667%
}

.\!k-h-4\/6 {
    height: 66.666667% !important;
}

.k-h-5\/6 {
    height: 83.333333%
}

.\!k-h-5\/6 {
    height: 83.333333% !important;
}

.k-h-1\/12 {
    height: 8.333333%
}

.\!k-h-1\/12 {
    height: 8.333333% !important;
}

.k-h-2\/12 {
    height: 16.666667%
}

.\!k-h-2\/12 {
    height: 16.666667% !important;
}

.k-h-3\/12 {
    height: 25%
}

.\!k-h-3\/12 {
    height: 25% !important;
}

.k-h-4\/12 {
    height: 33.333333%
}

.\!k-h-4\/12 {
    height: 33.333333% !important;
}

.k-h-5\/12 {
    height: 41.666667%
}

.\!k-h-5\/12 {
    height: 41.666667% !important;
}

.k-h-6\/12 {
    height: 50%
}

.\!k-h-6\/12 {
    height: 50% !important;
}

.k-h-7\/12 {
    height: 58.333333%
}

.\!k-h-7\/12 {
    height: 58.333333% !important;
}

.k-h-8\/12 {
    height: 66.666667%
}

.\!k-h-8\/12 {
    height: 66.666667% !important;
}

.k-h-9\/12 {
    height: 75%
}

.\!k-h-9\/12 {
    height: 75% !important;
}

.k-h-10\/12 {
    height: 83.333333%
}

.\!k-h-10\/12 {
    height: 83.333333% !important;
}

.k-h-11\/12 {
    height: 91.666667%
}

.\!k-h-11\/12 {
    height: 91.666667% !important;
}

.k-h-full {
    height: 100%
}

.\!k-h-full {
    height: 100% !important;
}

.k-h-min {
    height: -moz-min-content;
    height: min-content;
}

.\!k-h-min {
    height: -moz-min-content !important;
    height: min-content !important;
}

.k-h-max {
    height: -moz-max-content;
    height: max-content;
}

.\!k-h-max {
    height: -moz-max-content !important;
    height: max-content !important;
}

.k-h-fit {
    height: -moz-fit-content;
    height: fit-content;
}

.\!k-h-fit {
    height: -moz-fit-content !important;
    height: fit-content !important;
}

.k-h-screen {
    height: 100vh;
}

.\!k-h-screen {
    height: 100vh !important;
}

.k-min-h-0 {
    min-height: 0;
}

.\!k-min-h-0 {
    min-height: 0 !important;
}

.k-min-h-full {
    min-height: 100%
}

.\!k-min-h-full {
    min-height: 100% !important;
}

.k-min-h-screen {
    min-height: 100vh;
}

.\!k-min-h-screen {
    min-height: 100vh !important;
}

.k-min-h-min {
    min-height: -moz-min-content;
    min-height: min-content;
}

.\!k-min-h-min {
    min-height: -moz-min-content !important;
    min-height: min-content !important;
}

.k-min-h-max {
    min-height: -moz-max-content;
    min-height: max-content;
}

.\!k-min-h-max {
    min-height: -moz-max-content !important;
    min-height: max-content !important;
}

.k-min-h-fit {
    min-height: -moz-fit-content;
    min-height: fit-content;
}

.\!k-min-h-fit {
    min-height: -moz-fit-content !important;
    min-height: fit-content !important;
}

.k-max-h-none {
    max-height: none;
}

.\!k-max-h-none {
    max-height: none !important;
}

.k-max-h-0 {
    max-height: 0;
}

.\!k-max-h-0 {
    max-height: 0 !important;
}

.k-max-h-full {
    max-height: 100%
}

.\!k-max-h-full {
    max-height: 100% !important;
}

.k-max-h-screen {
    max-height: 100vh;
}

.\!k-max-h-screen {
    max-height: 100vh !important;
}

.k-max-h-min {
    max-height: -moz-min-content;
    max-height: min-content;
}

.\!k-max-h-min {
    max-height: -moz-min-content !important;
    max-height: min-content !important;
}

.k-max-h-max {
    max-height: -moz-max-content;
    max-height: max-content;
}

.\!k-max-h-max {
    max-height: -moz-max-content !important;
    max-height: max-content !important;
}

.k-max-h-fit {
    max-height: -moz-fit-content;
    max-height: fit-content;
}

.\!k-max-h-fit {
    max-height: -moz-fit-content !important;
    max-height: fit-content !important;
}

.k-w-0 {
    width: 0;
}

.\!k-w-0 {
    width: 0 !important;
}

.k-w-1px {
    width: 1px;
}

.\!k-w-1px {
    width: 1px !important;
}

.k-w-\.5 {
    width: 2px;
}

.\!k-w-\.5 {
    width: 2px !important;
}

.k-w-1 {
    width: 4px;
}

.\!k-w-1 {
    width: 4px !important;
}

.k-w-1\.5 {
    width: 6px;
}

.\!k-w-1\.5 {
    width: 6px !important;
}

.k-w-2 {
    width: 8px;
}

.\!k-w-2 {
    width: 8px !important;
}

.k-w-2\.5 {
    width: 10px;
}

.\!k-w-2\.5 {
    width: 10px !important;
}

.k-w-3 {
    width: 12px;
}

.\!k-w-3 {
    width: 12px !important;
}

.k-w-3\.5 {
    width: 14px;
}

.\!k-w-3\.5 {
    width: 14px !important;
}

.k-w-4 {
    width: 16px;
}

.\!k-w-4 {
    width: 16px !important;
}

.k-w-4\.5 {
    width: 18px;
}

.\!k-w-4\.5 {
    width: 18px !important;
}

.k-w-5 {
    width: 20px;
}

.\!k-w-5 {
    width: 20px !important;
}

.k-w-5\.5 {
    width: 22px;
}

.\!k-w-5\.5 {
    width: 22px !important;
}

.k-w-6 {
    width: 24px;
}

.\!k-w-6 {
    width: 24px !important;
}

.k-w-6\.5 {
    width: 26px;
}

.\!k-w-6\.5 {
    width: 26px !important;
}

.k-w-7 {
    width: 28px;
}

.\!k-w-7 {
    width: 28px !important;
}

.k-w-7\.5 {
    width: 30px;
}

.\!k-w-7\.5 {
    width: 30px !important;
}

.k-w-8 {
    width: 32px;
}

.\!k-w-8 {
    width: 32px !important;
}

.k-w-9 {
    width: 36px;
}

.\!k-w-9 {
    width: 36px !important;
}

.k-w-10 {
    width: 40px;
}

.\!k-w-10 {
    width: 40px !important;
}

.k-w-11 {
    width: 44px;
}

.\!k-w-11 {
    width: 44px !important;
}

.k-w-12 {
    width: 48px;
}

.\!k-w-12 {
    width: 48px !important;
}

.k-w-13 {
    width: 52px;
}

.\!k-w-13 {
    width: 52px !important;
}

.k-w-14 {
    width: 56px;
}

.\!k-w-14 {
    width: 56px !important;
}

.k-w-15 {
    width: 60px;
}

.\!k-w-15 {
    width: 60px !important;
}

.k-w-16 {
    width: 64px;
}

.\!k-w-16 {
    width: 64px !important;
}

.k-w-17 {
    width: 68px;
}

.\!k-w-17 {
    width: 68px !important;
}

.k-w-18 {
    width: 72px;
}

.\!k-w-18 {
    width: 72px !important;
}

.k-w-19 {
    width: 76px;
}

.\!k-w-19 {
    width: 76px !important;
}

.k-w-20 {
    width: 80px;
}

.\!k-w-20 {
    width: 80px !important;
}

.k-w-21 {
    width: 84px;
}

.\!k-w-21 {
    width: 84px !important;
}

.k-w-22 {
    width: 88px;
}

.\!k-w-22 {
    width: 88px !important;
}

.k-w-23 {
    width: 92px;
}

.\!k-w-23 {
    width: 92px !important;
}

.k-w-24 {
    width: 96px;
}

.\!k-w-24 {
    width: 96px !important;
}

.k-w-auto {
    width: auto;
}

.\!k-w-auto {
    width: auto !important;
}

.k-w-1\/2 {
    width: 50%
}

.\!k-w-1\/2 {
    width: 50% !important;
}

.k-w-1\/3 {
    width: 33.333333%
}

.\!k-w-1\/3 {
    width: 33.333333% !important;
}

.k-w-2\/3 {
    width: 66.666667%
}

.\!k-w-2\/3 {
    width: 66.666667% !important;
}

.k-w-1\/4 {
    width: 25%
}

.\!k-w-1\/4 {
    width: 25% !important;
}

.k-w-2\/4 {
    width: 50%
}

.\!k-w-2\/4 {
    width: 50% !important;
}

.k-w-3\/4 {
    width: 75%
}

.\!k-w-3\/4 {
    width: 75% !important;
}

.k-w-1\/5 {
    width: 20%
}

.\!k-w-1\/5 {
    width: 20% !important;
}

.k-w-2\/5 {
    width: 40%
}

.\!k-w-2\/5 {
    width: 40% !important;
}

.k-w-3\/5 {
    width: 60%
}

.\!k-w-3\/5 {
    width: 60% !important;
}

.k-w-4\/5 {
    width: 80%
}

.\!k-w-4\/5 {
    width: 80% !important;
}

.k-w-1\/6 {
    width: 16.666667%
}

.\!k-w-1\/6 {
    width: 16.666667% !important;
}

.k-w-2\/6 {
    width: 33.333333%
}

.\!k-w-2\/6 {
    width: 33.333333% !important;
}

.k-w-3\/6 {
    width: 50%
}

.\!k-w-3\/6 {
    width: 50% !important;
}

.k-w-4\/6 {
    width: 66.666667%
}

.\!k-w-4\/6 {
    width: 66.666667% !important;
}

.k-w-5\/6 {
    width: 83.333333%
}

.\!k-w-5\/6 {
    width: 83.333333% !important;
}

.k-w-1\/12 {
    width: 8.333333%
}

.\!k-w-1\/12 {
    width: 8.333333% !important;
}

.k-w-2\/12 {
    width: 16.666667%
}

.\!k-w-2\/12 {
    width: 16.666667% !important;
}

.k-w-3\/12 {
    width: 25%
}

.\!k-w-3\/12 {
    width: 25% !important;
}

.k-w-4\/12 {
    width: 33.333333%
}

.\!k-w-4\/12 {
    width: 33.333333% !important;
}

.k-w-5\/12 {
    width: 41.666667%
}

.\!k-w-5\/12 {
    width: 41.666667% !important;
}

.k-w-6\/12 {
    width: 50%
}

.\!k-w-6\/12 {
    width: 50% !important;
}

.k-w-7\/12 {
    width: 58.333333%
}

.\!k-w-7\/12 {
    width: 58.333333% !important;
}

.k-w-8\/12 {
    width: 66.666667%
}

.\!k-w-8\/12 {
    width: 66.666667% !important;
}

.k-w-9\/12 {
    width: 75%
}

.\!k-w-9\/12 {
    width: 75% !important;
}

.k-w-10\/12 {
    width: 83.333333%
}

.\!k-w-10\/12 {
    width: 83.333333% !important;
}

.k-w-11\/12 {
    width: 91.666667%
}

.\!k-w-11\/12 {
    width: 91.666667% !important;
}

.k-w-full {
    width: 100%
}

.\!k-w-full {
    width: 100% !important;
}

.k-w-min {
    width: -moz-min-content;
    width: min-content;
}

.\!k-w-min {
    width: -moz-min-content !important;
    width: min-content !important;
}

.k-w-max {
    width: -moz-max-content;
    width: max-content;
}

.\!k-w-max {
    width: -moz-max-content !important;
    width: max-content !important;
}

.k-w-fit {
    width: -moz-fit-content;
    width: fit-content;
}

.\!k-w-fit {
    width: -moz-fit-content !important;
    width: fit-content !important;
}

.k-w-screen {
    width: 100vw;
}

.\!k-w-screen {
    width: 100vw !important;
}

.k-min-w-0 {
    min-width: 0;
}

.\!k-min-w-0 {
    min-width: 0 !important;
}

.k-min-w-full {
    min-width: 100%
}

.\!k-min-w-full {
    min-width: 100% !important;
}

.k-min-w-screen {
    min-width: 100vw;
}

.\!k-min-w-screen {
    min-width: 100vw !important;
}

.k-min-w-min {
    min-width: -moz-min-content;
    min-width: min-content;
}

.\!k-min-w-min {
    min-width: -moz-min-content !important;
    min-width: min-content !important;
}

.k-min-w-max {
    min-width: -moz-max-content;
    min-width: max-content;
}

.\!k-min-w-max {
    min-width: -moz-max-content !important;
    min-width: max-content !important;
}

.k-min-w-fit {
    min-width: -moz-fit-content;
    min-width: fit-content;
}

.\!k-min-w-fit {
    min-width: -moz-fit-content !important;
    min-width: fit-content !important;
}

.k-max-w-none {
    max-width: none;
}

.\!k-max-w-none {
    max-width: none !important;
}

.k-max-w-0 {
    max-width: 0;
}

.\!k-max-w-0 {
    max-width: 0 !important;
}

.k-max-w-full {
    max-width: 100%
}

.\!k-max-w-full {
    max-width: 100% !important;
}

.k-max-w-screen {
    max-width: 100vw;
}

.\!k-max-w-screen {
    max-width: 100vw !important;
}

.k-max-w-min {
    max-width: -moz-min-content;
    max-width: min-content;
}

.\!k-max-w-min {
    max-width: -moz-min-content !important;
    max-width: min-content !important;
}

.k-max-w-max {
    max-width: -moz-max-content;
    max-width: max-content;
}

.\!k-max-w-max {
    max-width: -moz-max-content !important;
    max-width: max-content !important;
}

.k-max-w-fit {
    max-width: -moz-fit-content;
    max-width: fit-content;
}

.\!k-max-w-fit {
    max-width: -moz-fit-content !important;
    max-width: fit-content !important;
}

.k-text-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.k-font-size-xs {
    font-size: 10px;
}

.\!k-font-size-xs {
    font-size: 10px !important;
}

.k-font-size-sm {
    font-size: 12px;
}

.\!k-font-size-sm {
    font-size: 12px !important;
}

.k-font-size-md {
    font-size: 14px;
}

.\!k-font-size-md {
    font-size: 14px !important;
}

.k-font-size-lg {
    font-size: 16px;
}

.\!k-font-size-lg {
    font-size: 16px !important;
}

.k-font-size-xl {
    font-size: 20px;
}

.\!k-font-size-xl {
    font-size: 20px !important;
}

.k-fs-xs {
    font-size: 10px;
}

.\!k-fs-xs {
    font-size: 10px !important;
}

.k-fs-sm {
    font-size: 12px;
}

.\!k-fs-sm {
    font-size: 12px !important;
}

.k-fs-md {
    font-size: 14px;
}

.\!k-fs-md {
    font-size: 14px !important;
}

.k-fs-lg {
    font-size: 16px;
}

.\!k-fs-lg {
    font-size: 16px !important;
}

.k-fs-xl {
    font-size: 20px;
}

.\!k-fs-xl {
    font-size: 20px !important;
}

.k-font-italic {
    font-style: italic;
}

.\!k-font-italic {
    font-style: italic !important;
}

.k-font-non-italic {
    font-style: normal;
}

.\!k-font-non-italic {
    font-style: normal !important;
}

.k-font-thin {
    font-weight: 100;
}

.\!k-font-thin {
    font-weight: 100 !important;
}

.k-font-extralight {
    font-weight: 200;
}

.\!k-font-extralight {
    font-weight: 200 !important;
}

.k-font-light {
    font-weight: 300;
}

.\!k-font-light {
    font-weight: 300 !important;
}

.k-font-normal {
    font-weight: 400;
}

.\!k-font-normal {
    font-weight: 400 !important;
}

.k-font-medium {
    font-weight: 500;
}

.\!k-font-medium {
    font-weight: 500 !important;
}

.k-font-semibold {
    font-weight: 600;
}

.\!k-font-semibold {
    font-weight: 600 !important;
}

.k-font-bold {
    font-weight: 700;
}

.\!k-font-bold {
    font-weight: 700 !important;
}

.k-font-extrabold {
    font-weight: 800;
}

.\!k-font-extrabold {
    font-weight: 800 !important;
}

.k-font-black {
    font-weight: 900;
}

.\!k-font-black {
    font-weight: 900 !important;
}

.k-font-weight-thin {
    font-weight: 100;
}

.\!k-font-weight-thin {
    font-weight: 100 !important;
}

.k-font-weight-extralight {
    font-weight: 200;
}

.\!k-font-weight-extralight {
    font-weight: 200 !important;
}

.k-font-weight-light {
    font-weight: 300;
}

.\!k-font-weight-light {
    font-weight: 300 !important;
}

.k-font-weight-normal {
    font-weight: 400;
}

.\!k-font-weight-normal {
    font-weight: 400 !important;
}

.k-font-weight-medium {
    font-weight: 500;
}

.\!k-font-weight-medium {
    font-weight: 500 !important;
}

.k-font-weight-semibold {
    font-weight: 600;
}

.\!k-font-weight-semibold {
    font-weight: 600 !important;
}

.k-font-weight-bold {
    font-weight: 700;
}

.\!k-font-weight-bold {
    font-weight: 700 !important;
}

.k-font-weight-extrabold {
    font-weight: 800;
}

.\!k-font-weight-extrabold {
    font-weight: 800 !important;
}

.k-font-weight-black {
    font-weight: 900;
}

.\!k-font-weight-black {
    font-weight: 900 !important;
}

.k-text-left {
    text-align: left;
}

.\!k-text-left {
    text-align: left !important;
}

.k-text-right {
    text-align: right;
}

.\!k-text-right {
    text-align: right !important;
}

.k-text-center {
    text-align: center;
}

.\!k-text-center {
    text-align: center !important;
}

.k-text-justify {
    text-align: justify;
}

.\!k-text-justify {
    text-align: justify !important;
}

.k-text-primary {
    color: var(--themecolor);
}

.\!k-text-primary {
    color: var(--themecolor) !important;
}

.k-text-secondary {
    color: #757575;
}

.\!k-text-secondary {
    color: #757575 !important;
}

.k-text-tertiary {
    color: #03a9f4;
}

.\!k-text-tertiary {
    color: #03a9f4 !important;
}

.k-text-info {
    color: #0058E9;
}

.\!k-text-info {
    color: #0058E9 !important;
}

.k-text-success {
    color: #5cb85c;
}

.\!k-text-success {
    color: #5cb85c !important;
}

.k-text-warning {
    color: #F5A600;
}

.\!k-text-warning {
    color: #F5A600 !important;
}

.k-text-error {
    color: #df5438;
}

.\!k-text-error {
    color: #df5438 !important;
}

.k-text-dark {
    color: #424242;
}

.\!k-text-dark {
    color: #424242 !important;
}

.k-text-light {
    color: #ebebeb;
}

.\!k-text-light {
    color: #ebebeb !important;
}

.k-text-inverse {
    color: #424242;
}

.\!k-text-inverse {
    color: #424242 !important;
}

.k-text-inherit {
    color: inherit;
}

.\!k-text-inherit {
    color: inherit !important;
}

.k-text-current {
    color: currentColor;
}

.\!k-text-current {
    color: currentColor !important;
}

.k-text-transparent {
    color: rgba(0, 0, 0, 0);
}

.\!k-text-transparent {
    color: rgba(0, 0, 0, 0) !important;
}

.k-text-black {
    color: #000;
}

.\!k-text-black {
    color: #000 !important;
}

.k-text-white {
    color: #fff;
}

.\!k-text-white {
    color: #fff !important;
}

.k-color-primary {
    color: var(--themecolor);
}

.\!k-color-primary {
    color: var(--themecolor) !important;
}

.k-color-secondary {
    color: #757575;
}

.\!k-color-secondary {
    color: #757575 !important;
}

.k-color-tertiary {
    color: #03a9f4;
}

.\!k-color-tertiary {
    color: #03a9f4 !important;
}

.k-color-info {
    color: #0058E9;
}

.\!k-color-info {
    color: #0058E9 !important;
}

.k-color-success {
    color: #5cb85c;
}

.\!k-color-success {
    color: #5cb85c !important;
}

.k-color-warning {
    color: #F5A600;
}

.\!k-color-warning {
    color: #F5A600 !important;
}

.k-color-error {
    color: #df5438;
}

.\!k-color-error {
    color: #df5438 !important;
}

.k-color-dark {
    color: #424242;
}

.\!k-color-dark {
    color: #424242 !important;
}

.k-color-light {
    color: #ebebeb;
}

.\!k-color-light {
    color: #ebebeb !important;
}

.k-color-inverse {
    color: #424242;
}

.\!k-color-inverse {
    color: #424242 !important;
}

.k-color-inherit {
    color: inherit;
}

.\!k-color-inherit {
    color: inherit !important;
}

.k-color-current {
    color: currentColor;
}

.\!k-color-current {
    color: currentColor !important;
}

.k-color-transparent {
    color: rgba(0, 0, 0, 0);
}

.\!k-color-transparent {
    color: rgba(0, 0, 0, 0) !important;
}

.k-color-black {
    color: #000;
}

.\!k-color-black {
    color: #000 !important;
}

.k-color-white {
    color: #fff;
}

.\!k-color-white {
    color: #fff !important;
}

.k-text-uppercase {
    text-transform: uppercase;
}

.\!k-text-uppercase {
    text-transform: uppercase !important;
}

.k-text-lowercase {
    text-transform: lowercase;
}

.\!k-text-lowercase {
    text-transform: lowercase !important;
}

.k-text-capitalize {
    text-transform: capitalize;
}

.\!k-text-capitalize {
    text-transform: capitalize !important;
}

.k-text-normal-case {
    text-transform: none;
}

.\!k-text-normal-case {
    text-transform: none !important;
}

.k-white-space-normal {
    white-space: normal;
}

.\!k-white-space-normal {
    white-space: normal !important;
}

.k-white-space-nowrap, .k-text-nowrap {
    white-space: nowrap;
}

.\!k-white-space-nowrap {
    white-space: nowrap !important;
}

.k-white-space-pre {
    white-space: pre;
}

.\!k-white-space-pre {
    white-space: pre !important;
}

.k-white-space-pre-line {
    white-space: pre-line;
}

.\!k-white-space-pre-line {
    white-space: pre-line !important;
}

.k-white-space-pre-wrap {
    white-space: pre-wrap;
}

.\!k-white-space-pre-wrap {
    white-space: pre-wrap !important;
}

.k-white-space-break-spaces {
    white-space: break-spaces;
}

.\!k-white-space-break-spaces {
    white-space: break-spaces !important;
}

.k-whitespace-normal {
    white-space: normal;
}

.\!k-whitespace-normal {
    white-space: normal !important;
}

.k-whitespace-nowrap {
    white-space: nowrap;
}

.\!k-whitespace-nowrap {
    white-space: nowrap !important;
}

.k-whitespace-pre {
    white-space: pre;
}

.\!k-whitespace-pre {
    white-space: pre !important;
}

.k-whitespace-pre-line {
    white-space: pre-line;
}

.\!k-whitespace-pre-line {
    white-space: pre-line !important;
}

.k-whitespace-pre-wrap {
    white-space: pre-wrap;
}

.\!k-whitespace-pre-wrap {
    white-space: pre-wrap !important;
}

.k-whitespace-break-spaces {
    white-space: break-spaces;
}

.\!k-whitespace-break-spaces {
    white-space: break-spaces !important;
}

.k-bg-primary {
    background-color: var(--themecolor);
}

.\!k-bg-primary {
    background-color: var(--themecolor) !important;
}

.k-bg-secondary {
    background-color: #757575;
}

.\!k-bg-secondary {
    background-color: #757575 !important;
}

.k-bg-tertiary {
    background-color: #03a9f4;
}

.\!k-bg-tertiary {
    background-color: #03a9f4 !important;
}

.k-bg-info {
    background-color: #0058E9;
}

.\!k-bg-info {
    background-color: #0058E9 !important;
}

.k-bg-success {
    background-color: #5cb85c;
}

.\!k-bg-success {
    background-color: #5cb85c !important;
}

.k-bg-warning {
    background-color: #F5A600;
}

.\!k-bg-warning {
    background-color: #F5A600 !important;
}

.k-bg-error {
    background-color: #df5438;
}

.\!k-bg-error {
    background-color: #df5438 !important;
}

.k-bg-dark {
    background-color: #424242;
}

.\!k-bg-dark {
    background-color: #424242 !important;
}

.k-bg-light {
    background-color: #ebebeb;
}

.\!k-bg-light {
    background-color: #ebebeb !important;
}

.k-bg-inverse {
    background-color: #424242;
}

.\!k-bg-inverse {
    background-color: #424242 !important;
}

.k-bg-inherit {
    background-color: inherit;
}

.\!k-bg-inherit {
    background-color: inherit !important;
}

.k-bg-transparent {
    background-color: rgba(0, 0, 0, 0);
}

.\!k-bg-transparent {
    background-color: rgba(0, 0, 0, 0) !important;
}

.k-bg-black {
    background-color: #000;
}

.\!k-bg-black {
    background-color: #000 !important;
}

.k-bg-white {
    background-color: #fff;
}

.\!k-bg-white {
    background-color: #fff !important;
}

.k-border-primary {
    border-color: var(--themecolor);
}

.\!k-border-primary {
    border-color: var(--themecolor) !important;
}

.k-border-secondary {
    border-color: #757575;
}

.\!k-border-secondary {
    border-color: #757575 !important;
}

.k-border-tertiary {
    border-color: #03a9f4;
}

.\!k-border-tertiary {
    border-color: #03a9f4 !important;
}

.k-border-info {
    border-color: #0058E9;
}

.\!k-border-info {
    border-color: #0058E9 !important;
}

.k-border-success {
    border-color: #5cb85c;
}

.\!k-border-success {
    border-color: #5cb85c !important;
}

.k-border-warning {
    border-color: #F5A600;
}

.\!k-border-warning {
    border-color: #F5A600 !important;
}

.k-border-error {
    border-color: #df5438;
}

.\!k-border-error {
    border-color: #df5438 !important;
}

.k-border-dark {
    border-color: #424242;
}

.\!k-border-dark {
    border-color: #424242 !important;
}

.k-border-light {
    border-color: #ebebeb;
}

.\!k-border-light {
    border-color: #ebebeb !important;
}

.k-border-inverse {
    border-color: #424242;
}

.\!k-border-inverse {
    border-color: #424242 !important;
}

.k-border-inherit {
    border-color: inherit;
}

.\!k-border-inherit {
    border-color: inherit !important;
}

.k-border-current {
    border-color: currentColor;
}

.\!k-border-current {
    border-color: currentColor !important;
}

.k-border-transparent {
    border-color: rgba(0, 0, 0, 0);
}

.\!k-border-transparent {
    border-color: rgba(0, 0, 0, 0) !important;
}

.k-border-black {
    border-color: #000;
}

.\!k-border-black {
    border-color: #000 !important;
}

.k-border-white {
    border-color: #fff;
}

.\!k-border-white {
    border-color: #fff !important;
}

.k-border-t-primary {
    border-top-color: var(--themecolor);
}

.\!k-border-t-primary {
    border-top-color: var(--themecolor) !important;
}

.k-border-t-secondary {
    border-top-color: #757575;
}

.\!k-border-t-secondary {
    border-top-color: #757575 !important;
}

.k-border-t-tertiary {
    border-top-color: #03a9f4;
}

.\!k-border-t-tertiary {
    border-top-color: #03a9f4 !important;
}

.k-border-t-info {
    border-top-color: #0058E9;
}

.\!k-border-t-info {
    border-top-color: #0058E9 !important;
}

.k-border-t-success {
    border-top-color: #5cb85c;
}

.\!k-border-t-success {
    border-top-color: #5cb85c !important;
}

.k-border-t-warning {
    border-top-color: #F5A600;
}

.\!k-border-t-warning {
    border-top-color: #F5A600 !important;
}

.k-border-t-error {
    border-top-color: #df5438;
}

.\!k-border-t-error {
    border-top-color: #df5438 !important;
}

.k-border-t-dark {
    border-top-color: #424242;
}

.\!k-border-t-dark {
    border-top-color: #424242 !important;
}

.k-border-t-light {
    border-top-color: #ebebeb;
}

.\!k-border-t-light {
    border-top-color: #ebebeb !important;
}

.k-border-t-inverse {
    border-top-color: #424242;
}

.\!k-border-t-inverse {
    border-top-color: #424242 !important;
}

.k-border-t-inherit {
    border-top-color: inherit;
}

.\!k-border-t-inherit {
    border-top-color: inherit !important;
}

.k-border-t-current {
    border-top-color: currentColor;
}

.\!k-border-t-current {
    border-top-color: currentColor !important;
}

.k-border-t-transparent {
    border-top-color: rgba(0, 0, 0, 0);
}

.\!k-border-t-transparent {
    border-top-color: rgba(0, 0, 0, 0) !important;
}

.k-border-t-black {
    border-top-color: #000;
}

.\!k-border-t-black {
    border-top-color: #000 !important;
}

.k-border-t-white {
    border-top-color: #fff;
}

.\!k-border-t-white {
    border-top-color: #fff !important;
}

.k-border-r-primary {
    border-right-color: var(--themecolor);
}

.\!k-border-r-primary {
    border-right-color: var(--themecolor) !important;
}

.k-border-r-secondary {
    border-right-color: #757575;
}

.\!k-border-r-secondary {
    border-right-color: #757575 !important;
}

.k-border-r-tertiary {
    border-right-color: #03a9f4;
}

.\!k-border-r-tertiary {
    border-right-color: #03a9f4 !important;
}

.k-border-r-info {
    border-right-color: #0058E9;
}

.\!k-border-r-info {
    border-right-color: #0058E9 !important;
}

.k-border-r-success {
    border-right-color: #5cb85c;
}

.\!k-border-r-success {
    border-right-color: #5cb85c !important;
}

.k-border-r-warning {
    border-right-color: #F5A600;
}

.\!k-border-r-warning {
    border-right-color: #F5A600 !important;
}

.k-border-r-error {
    border-right-color: #df5438;
}

.\!k-border-r-error {
    border-right-color: #df5438 !important;
}

.k-border-r-dark {
    border-right-color: #424242;
}

.\!k-border-r-dark {
    border-right-color: #424242 !important;
}

.k-border-r-light {
    border-right-color: #ebebeb;
}

.\!k-border-r-light {
    border-right-color: #ebebeb !important;
}

.k-border-r-inverse {
    border-right-color: #424242;
}

.\!k-border-r-inverse {
    border-right-color: #424242 !important;
}

.k-border-r-inherit {
    border-right-color: inherit;
}

.\!k-border-r-inherit {
    border-right-color: inherit !important;
}

.k-border-r-current {
    border-right-color: currentColor;
}

.\!k-border-r-current {
    border-right-color: currentColor !important;
}

.k-border-r-transparent {
    border-right-color: rgba(0, 0, 0, 0);
}

.\!k-border-r-transparent {
    border-right-color: rgba(0, 0, 0, 0) !important;
}

.k-border-r-black {
    border-right-color: #000;
}

.\!k-border-r-black {
    border-right-color: #000 !important;
}

.k-border-r-white {
    border-right-color: #fff;
}

.\!k-border-r-white {
    border-right-color: #fff !important;
}

.k-border-b-primary {
    border-bottom-color: var(--themecolor);
}

.\!k-border-b-primary {
    border-bottom-color: var(--themecolor) !important;
}

.k-border-b-secondary {
    border-bottom-color: #757575;
}

.\!k-border-b-secondary {
    border-bottom-color: #757575 !important;
}

.k-border-b-tertiary {
    border-bottom-color: #03a9f4;
}

.\!k-border-b-tertiary {
    border-bottom-color: #03a9f4 !important;
}

.k-border-b-info {
    border-bottom-color: #0058E9;
}

.\!k-border-b-info {
    border-bottom-color: #0058E9 !important;
}

.k-border-b-success {
    border-bottom-color: #5cb85c;
}

.\!k-border-b-success {
    border-bottom-color: #5cb85c !important;
}

.k-border-b-warning {
    border-bottom-color: #F5A600;
}

.\!k-border-b-warning {
    border-bottom-color: #F5A600 !important;
}

.k-border-b-error {
    border-bottom-color: #df5438;
}

.\!k-border-b-error {
    border-bottom-color: #df5438 !important;
}

.k-border-b-dark {
    border-bottom-color: #424242;
}

.\!k-border-b-dark {
    border-bottom-color: #424242 !important;
}

.k-border-b-light {
    border-bottom-color: #ebebeb;
}

.\!k-border-b-light {
    border-bottom-color: #ebebeb !important;
}

.k-border-b-inverse {
    border-bottom-color: #424242;
}

.\!k-border-b-inverse {
    border-bottom-color: #424242 !important;
}

.k-border-b-inherit {
    border-bottom-color: inherit;
}

.\!k-border-b-inherit {
    border-bottom-color: inherit !important;
}

.k-border-b-current {
    border-bottom-color: currentColor;
}

.\!k-border-b-current {
    border-bottom-color: currentColor !important;
}

.k-border-b-transparent {
    border-bottom-color: rgba(0, 0, 0, 0);
}

.\!k-border-b-transparent {
    border-bottom-color: rgba(0, 0, 0, 0) !important;
}

.k-border-b-black {
    border-bottom-color: #000;
}

.\!k-border-b-black {
    border-bottom-color: #000 !important;
}

.k-border-b-white {
    border-bottom-color: #fff;
}

.\!k-border-b-white {
    border-bottom-color: #fff !important;
}

.k-border-l-primary {
    border-left-color: var(--themecolor);
}

.\!k-border-l-primary {
    border-left-color: var(--themecolor) !important;
}

.k-border-l-secondary {
    border-left-color: #757575;
}

.\!k-border-l-secondary {
    border-left-color: #757575 !important;
}

.k-border-l-tertiary {
    border-left-color: #03a9f4;
}

.\!k-border-l-tertiary {
    border-left-color: #03a9f4 !important;
}

.k-border-l-info {
    border-left-color: #0058E9;
}

.\!k-border-l-info {
    border-left-color: #0058E9 !important;
}

.k-border-l-success {
    border-left-color: #5cb85c;
}

.\!k-border-l-success {
    border-left-color: #5cb85c !important;
}

.k-border-l-warning {
    border-left-color: #F5A600;
}

.\!k-border-l-warning {
    border-left-color: #F5A600 !important;
}

.k-border-l-error {
    border-left-color: #df5438;
}

.\!k-border-l-error {
    border-left-color: #df5438 !important;
}

.k-border-l-dark {
    border-left-color: #424242;
}

.\!k-border-l-dark {
    border-left-color: #424242 !important;
}

.k-border-l-light {
    border-left-color: #ebebeb;
}

.\!k-border-l-light {
    border-left-color: #ebebeb !important;
}

.k-border-l-inverse {
    border-left-color: #424242;
}

.\!k-border-l-inverse {
    border-left-color: #424242 !important;
}

.k-border-l-inherit {
    border-left-color: inherit;
}

.\!k-border-l-inherit {
    border-left-color: inherit !important;
}

.k-border-l-current {
    border-left-color: currentColor;
}

.\!k-border-l-current {
    border-left-color: currentColor !important;
}

.k-border-l-transparent {
    border-left-color: rgba(0, 0, 0, 0);
}

.\!k-border-l-transparent {
    border-left-color: rgba(0, 0, 0, 0) !important;
}

.k-border-l-black {
    border-left-color: #000;
}

.\!k-border-l-black {
    border-left-color: #000 !important;
}

.k-border-l-white {
    border-left-color: #fff;
}

.\!k-border-l-white {
    border-left-color: #fff !important;
}

.k-border-x-primary {
    border-inline-color: var(--themecolor);
}

.\!k-border-x-primary {
    border-inline-color: var(--themecolor) !important;
}

.k-border-x-secondary {
    border-inline-color: #757575;
}

.\!k-border-x-secondary {
    border-inline-color: #757575 !important;
}

.k-border-x-tertiary {
    border-inline-color: #03a9f4;
}

.\!k-border-x-tertiary {
    border-inline-color: #03a9f4 !important;
}

.k-border-x-info {
    border-inline-color: #0058E9;
}

.\!k-border-x-info {
    border-inline-color: #0058E9 !important;
}

.k-border-x-success {
    border-inline-color: #5cb85c;
}

.\!k-border-x-success {
    border-inline-color: #5cb85c !important;
}

.k-border-x-warning {
    border-inline-color: #F5A600;
}

.\!k-border-x-warning {
    border-inline-color: #F5A600 !important;
}

.k-border-x-error {
    border-inline-color: #df5438;
}

.\!k-border-x-error {
    border-inline-color: #df5438 !important;
}

.k-border-x-dark {
    border-inline-color: #424242;
}

.\!k-border-x-dark {
    border-inline-color: #424242 !important;
}

.k-border-x-light {
    border-inline-color: #ebebeb;
}

.\!k-border-x-light {
    border-inline-color: #ebebeb !important;
}

.k-border-x-inverse {
    border-inline-color: #424242;
}

.\!k-border-x-inverse {
    border-inline-color: #424242 !important;
}

.k-border-x-inherit {
    border-inline-color: inherit;
}

.\!k-border-x-inherit {
    border-inline-color: inherit !important;
}

.k-border-x-current {
    border-inline-color: currentColor;
}

.\!k-border-x-current {
    border-inline-color: currentColor !important;
}

.k-border-x-transparent {
    border-inline-color: rgba(0, 0, 0, 0);
}

.\!k-border-x-transparent {
    border-inline-color: rgba(0, 0, 0, 0) !important;
}

.k-border-x-black {
    border-inline-color: #000;
}

.\!k-border-x-black {
    border-inline-color: #000 !important;
}

.k-border-x-white {
    border-inline-color: #fff;
}

.\!k-border-x-white {
    border-inline-color: #fff !important;
}

.k-border-y-primary {
    border-block-color: var(--themecolor);
}

.\!k-border-y-primary {
    border-block-color: var(--themecolor) !important;
}

.k-border-y-secondary {
    border-block-color: #757575;
}

.\!k-border-y-secondary {
    border-block-color: #757575 !important;
}

.k-border-y-tertiary {
    border-block-color: #03a9f4;
}

.\!k-border-y-tertiary {
    border-block-color: #03a9f4 !important;
}

.k-border-y-info {
    border-block-color: #0058E9;
}

.\!k-border-y-info {
    border-block-color: #0058E9 !important;
}

.k-border-y-success {
    border-block-color: #5cb85c;
}

.\!k-border-y-success {
    border-block-color: #5cb85c !important;
}

.k-border-y-warning {
    border-block-color: #F5A600;
}

.\!k-border-y-warning {
    border-block-color: #F5A600 !important;
}

.k-border-y-error {
    border-block-color: #df5438;
}

.\!k-border-y-error {
    border-block-color: #df5438 !important;
}

.k-border-y-dark {
    border-block-color: #424242;
}

.\!k-border-y-dark {
    border-block-color: #424242 !important;
}

.k-border-y-light {
    border-block-color: #ebebeb;
}

.\!k-border-y-light {
    border-block-color: #ebebeb !important;
}

.k-border-y-inverse {
    border-block-color: #424242;
}

.\!k-border-y-inverse {
    border-block-color: #424242 !important;
}

.k-border-y-inherit {
    border-block-color: inherit;
}

.\!k-border-y-inherit {
    border-block-color: inherit !important;
}

.k-border-y-current {
    border-block-color: currentColor;
}

.\!k-border-y-current {
    border-block-color: currentColor !important;
}

.k-border-y-transparent {
    border-block-color: rgba(0, 0, 0, 0);
}

.\!k-border-y-transparent {
    border-block-color: rgba(0, 0, 0, 0) !important;
}

.k-border-y-black {
    border-block-color: #000;
}

.\!k-border-y-black {
    border-block-color: #000 !important;
}

.k-border-y-white {
    border-block-color: #fff;
}

.\!k-border-y-white {
    border-block-color: #fff !important;
}

.k-rounded {
    border-radius: 4px;
}

.\!k-rounded {
    border-radius: 4px !important;
}

.k-rounded-0 {
    border-radius: 0;
}

.\!k-rounded-0 {
    border-radius: 0 !important;
}

.k-rounded-sm {
    border-radius: 2px;
}

.\!k-rounded-sm {
    border-radius: 2px !important;
}

.k-rounded-md {
    border-radius: 4px;
}

.\!k-rounded-md {
    border-radius: 4px !important;
}

.k-rounded-lg {
    border-radius: 6px;
}

.\!k-rounded-lg {
    border-radius: 6px !important;
}

.k-rounded-full {
    border-radius: 9999px;
}

.\!k-rounded-full {
    border-radius: 9999px !important;
}

.k-rounded-tl {
    border-top-left-radius: 4px;
}

.\!k-rounded-tl {
    border-top-left-radius: 4px !important;
}

.k-rounded-tl-0 {
    border-top-left-radius: 0;
}

.\!k-rounded-tl-0 {
    border-top-left-radius: 0 !important;
}

.k-rounded-tl-sm {
    border-top-left-radius: 2px;
}

.\!k-rounded-tl-sm {
    border-top-left-radius: 2px !important;
}

.k-rounded-tl-md {
    border-top-left-radius: 4px;
}

.\!k-rounded-tl-md {
    border-top-left-radius: 4px !important;
}

.k-rounded-tl-lg {
    border-top-left-radius: 6px;
}

.\!k-rounded-tl-lg {
    border-top-left-radius: 6px !important;
}

.k-rounded-tl-full {
    border-top-left-radius: 9999px;
}

.\!k-rounded-tl-full {
    border-top-left-radius: 9999px !important;
}

.k-rounded-tr {
    border-top-right-radius: 4px;
}

.\!k-rounded-tr {
    border-top-right-radius: 4px !important;
}

.k-rounded-tr-0 {
    border-top-right-radius: 0;
}

.\!k-rounded-tr-0 {
    border-top-right-radius: 0 !important;
}

.k-rounded-tr-sm {
    border-top-right-radius: 2px;
}

.\!k-rounded-tr-sm {
    border-top-right-radius: 2px !important;
}

.k-rounded-tr-md {
    border-top-right-radius: 4px;
}

.\!k-rounded-tr-md {
    border-top-right-radius: 4px !important;
}

.k-rounded-tr-lg {
    border-top-right-radius: 6px;
}

.\!k-rounded-tr-lg {
    border-top-right-radius: 6px !important;
}

.k-rounded-tr-full {
    border-top-right-radius: 9999px;
}

.\!k-rounded-tr-full {
    border-top-right-radius: 9999px !important;
}

.k-rounded-br {
    border-bottom-right-radius: 4px;
}

.\!k-rounded-br {
    border-bottom-right-radius: 4px !important;
}

.k-rounded-br-0 {
    border-bottom-right-radius: 0;
}

.\!k-rounded-br-0 {
    border-bottom-right-radius: 0 !important;
}

.k-rounded-br-sm {
    border-bottom-right-radius: 2px;
}

.\!k-rounded-br-sm {
    border-bottom-right-radius: 2px !important;
}

.k-rounded-br-md {
    border-bottom-right-radius: 4px;
}

.\!k-rounded-br-md {
    border-bottom-right-radius: 4px !important;
}

.k-rounded-br-lg {
    border-bottom-right-radius: 6px;
}

.\!k-rounded-br-lg {
    border-bottom-right-radius: 6px !important;
}

.k-rounded-br-full {
    border-bottom-right-radius: 9999px;
}

.\!k-rounded-br-full {
    border-bottom-right-radius: 9999px !important;
}

.k-rounded-bl {
    border-bottom-left-radius: 4px;
}

.\!k-rounded-bl {
    border-bottom-left-radius: 4px !important;
}

.k-rounded-bl-0 {
    border-bottom-left-radius: 0;
}

.\!k-rounded-bl-0 {
    border-bottom-left-radius: 0 !important;
}

.k-rounded-bl-sm {
    border-bottom-left-radius: 2px;
}

.\!k-rounded-bl-sm {
    border-bottom-left-radius: 2px !important;
}

.k-rounded-bl-md {
    border-bottom-left-radius: 4px;
}

.\!k-rounded-bl-md {
    border-bottom-left-radius: 4px !important;
}

.k-rounded-bl-lg {
    border-bottom-left-radius: 6px;
}

.\!k-rounded-bl-lg {
    border-bottom-left-radius: 6px !important;
}

.k-rounded-bl-full {
    border-bottom-left-radius: 9999px;
}

.\!k-rounded-bl-full {
    border-bottom-left-radius: 9999px !important;
}

.k-rounded-t {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.\!k-rounded-t {
    border-top-left-radius: 4px !important;
    border-top-right-radius: 4px !important;
}

.k-rounded-t-0 {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.\!k-rounded-t-0 {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.k-rounded-t-sm {
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}

.\!k-rounded-t-sm {
    border-top-left-radius: 2px !important;
    border-top-right-radius: 2px !important;
}

.k-rounded-t-md {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.\!k-rounded-t-md {
    border-top-left-radius: 4px !important;
    border-top-right-radius: 4px !important;
}

.k-rounded-t-lg {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.\!k-rounded-t-lg {
    border-top-left-radius: 6px !important;
    border-top-right-radius: 6px !important;
}

.k-rounded-t-full {
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
}

.\!k-rounded-t-full {
    border-top-left-radius: 9999px !important;
    border-top-right-radius: 9999px !important;
}

.k-rounded-r {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.\!k-rounded-r {
    border-top-right-radius: 4px !important;
    border-bottom-right-radius: 4px !important;
}

.k-rounded-r-0 {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.\!k-rounded-r-0 {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.k-rounded-r-sm {
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

.\!k-rounded-r-sm {
    border-top-right-radius: 2px !important;
    border-bottom-right-radius: 2px !important;
}

.k-rounded-r-md {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.\!k-rounded-r-md {
    border-top-right-radius: 4px !important;
    border-bottom-right-radius: 4px !important;
}

.k-rounded-r-lg {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.\!k-rounded-r-lg {
    border-top-right-radius: 6px !important;
    border-bottom-right-radius: 6px !important;
}

.k-rounded-r-full {
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
}

.\!k-rounded-r-full {
    border-top-right-radius: 9999px !important;
    border-bottom-right-radius: 9999px !important;
}

.k-rounded-b {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.\!k-rounded-b {
    border-bottom-left-radius: 4px !important;
    border-bottom-right-radius: 4px !important;
}

.k-rounded-b-0 {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.\!k-rounded-b-0 {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.k-rounded-b-sm {
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
}

.\!k-rounded-b-sm {
    border-bottom-left-radius: 2px !important;
    border-bottom-right-radius: 2px !important;
}

.k-rounded-b-md {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.\!k-rounded-b-md {
    border-bottom-left-radius: 4px !important;
    border-bottom-right-radius: 4px !important;
}

.k-rounded-b-lg {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.\!k-rounded-b-lg {
    border-bottom-left-radius: 6px !important;
    border-bottom-right-radius: 6px !important;
}

.k-rounded-b-full {
    border-bottom-left-radius: 9999px;
    border-bottom-right-radius: 9999px;
}

.\!k-rounded-b-full {
    border-bottom-left-radius: 9999px !important;
    border-bottom-right-radius: 9999px !important;
}

.k-rounded-l {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.\!k-rounded-l {
    border-top-left-radius: 4px !important;
    border-bottom-left-radius: 4px !important;
}

.k-rounded-l-0 {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.\!k-rounded-l-0 {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.k-rounded-l-sm {
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}

.\!k-rounded-l-sm {
    border-top-left-radius: 2px !important;
    border-bottom-left-radius: 2px !important;
}

.k-rounded-l-md {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.\!k-rounded-l-md {
    border-top-left-radius: 4px !important;
    border-bottom-left-radius: 4px !important;
}

.k-rounded-l-lg {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.\!k-rounded-l-lg {
    border-top-left-radius: 6px !important;
    border-bottom-left-radius: 6px !important;
}

.k-rounded-l-full {
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
}

.\!k-rounded-l-full {
    border-top-left-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
}

.k-border-solid {
    border-style: solid;
}

.\!k-border-solid {
    border-style: solid !important;
}

.k-border-dashed {
    border-style: dashed;
}

.\!k-border-dashed {
    border-style: dashed !important;
}

.k-border-dotted {
    border-style: dotted;
}

.\!k-border-dotted {
    border-style: dotted !important;
}

.k-border-double {
    border-style: double;
}

.\!k-border-double {
    border-style: double !important;
}

.k-border-hidden {
    border-style: hidden;
}

.\!k-border-hidden {
    border-style: hidden !important;
}

.k-border-none {
    border-style: none;
}

.\!k-border-none {
    border-style: none !important;
}

.k-border-t-solid {
    border-top-style: solid;
}

.\!k-border-t-solid {
    border-top-style: solid !important;
}

.k-border-t-dashed {
    border-top-style: dashed;
}

.\!k-border-t-dashed {
    border-top-style: dashed !important;
}

.k-border-t-dotted {
    border-top-style: dotted;
}

.\!k-border-t-dotted {
    border-top-style: dotted !important;
}

.k-border-t-double {
    border-top-style: double;
}

.\!k-border-t-double {
    border-top-style: double !important;
}

.k-border-t-hidden {
    border-top-style: hidden;
}

.\!k-border-t-hidden {
    border-top-style: hidden !important;
}

.k-border-t-none {
    border-top-style: none;
}

.\!k-border-t-none {
    border-top-style: none !important;
}

.k-border-r-solid {
    border-right-style: solid;
}

.\!k-border-r-solid {
    border-right-style: solid !important;
}

.k-border-r-dashed {
    border-right-style: dashed;
}

.\!k-border-r-dashed {
    border-right-style: dashed !important;
}

.k-border-r-dotted {
    border-right-style: dotted;
}

.\!k-border-r-dotted {
    border-right-style: dotted !important;
}

.k-border-r-double {
    border-right-style: double;
}

.\!k-border-r-double {
    border-right-style: double !important;
}

.k-border-r-hidden {
    border-right-style: hidden;
}

.\!k-border-r-hidden {
    border-right-style: hidden !important;
}

.k-border-r-none {
    border-right-style: none;
}

.\!k-border-r-none {
    border-right-style: none !important;
}

.k-border-b-solid {
    border-bottom-style: solid;
}

.\!k-border-b-solid {
    border-bottom-style: solid !important;
}

.k-border-b-dashed {
    border-bottom-style: dashed;
}

.\!k-border-b-dashed {
    border-bottom-style: dashed !important;
}

.k-border-b-dotted {
    border-bottom-style: dotted;
}

.\!k-border-b-dotted {
    border-bottom-style: dotted !important;
}

.k-border-b-double {
    border-bottom-style: double;
}

.\!k-border-b-double {
    border-bottom-style: double !important;
}

.k-border-b-hidden {
    border-bottom-style: hidden;
}

.\!k-border-b-hidden {
    border-bottom-style: hidden !important;
}

.k-border-b-none {
    border-bottom-style: none;
}

.\!k-border-b-none {
    border-bottom-style: none !important;
}

.k-border-l-solid {
    border-left-style: solid;
}

.\!k-border-l-solid {
    border-left-style: solid !important;
}

.k-border-l-dashed {
    border-left-style: dashed;
}

.\!k-border-l-dashed {
    border-left-style: dashed !important;
}

.k-border-l-dotted {
    border-left-style: dotted;
}

.\!k-border-l-dotted {
    border-left-style: dotted !important;
}

.k-border-l-double {
    border-left-style: double;
}

.\!k-border-l-double {
    border-left-style: double !important;
}

.k-border-l-hidden {
    border-left-style: hidden;
}

.\!k-border-l-hidden {
    border-left-style: hidden !important;
}

.k-border-l-none {
    border-left-style: none;
}

.\!k-border-l-none {
    border-left-style: none !important;
}

.k-border-x-solid {
    border-inline-style: solid;
}

.\!k-border-x-solid {
    border-inline-style: solid !important;
}

.k-border-x-dashed {
    border-inline-style: dashed;
}

.\!k-border-x-dashed {
    border-inline-style: dashed !important;
}

.k-border-x-dotted {
    border-inline-style: dotted;
}

.\!k-border-x-dotted {
    border-inline-style: dotted !important;
}

.k-border-x-double {
    border-inline-style: double;
}

.\!k-border-x-double {
    border-inline-style: double !important;
}

.k-border-x-hidden {
    border-inline-style: hidden;
}

.\!k-border-x-hidden {
    border-inline-style: hidden !important;
}

.k-border-x-none {
    border-inline-style: none;
}

.\!k-border-x-none {
    border-inline-style: none !important;
}

.k-border-y-solid {
    border-block-style: solid;
}

.\!k-border-y-solid {
    border-block-style: solid !important;
}

.k-border-y-dashed {
    border-block-style: dashed;
}

.\!k-border-y-dashed {
    border-block-style: dashed !important;
}

.k-border-y-dotted {
    border-block-style: dotted;
}

.\!k-border-y-dotted {
    border-block-style: dotted !important;
}

.k-border-y-double {
    border-block-style: double;
}

.\!k-border-y-double {
    border-block-style: double !important;
}

.k-border-y-hidden {
    border-block-style: hidden;
}

.\!k-border-y-hidden {
    border-block-style: hidden !important;
}

.k-border-y-none {
    border-block-style: none;
}

.\!k-border-y-none {
    border-block-style: none !important;
}

.k-border {
    border-width: 1px;
}

.\!k-border {
    border-width: 1px !important;
}

.k-border-0 {
    border-width: 0;
}

.\!k-border-0 {
    border-width: 0 !important;
}

.k-border-2 {
    border-width: 2px;
}

.\!k-border-2 {
    border-width: 2px !important;
}

.k-border-4 {
    border-width: 4px;
}

.\!k-border-4 {
    border-width: 4px !important;
}

.k-border-8 {
    border-width: 8px;
}

.\!k-border-8 {
    border-width: 8px !important;
}

.k-border-t {
    border-top-width: 1px;
}

.\!k-border-t {
    border-top-width: 1px !important;
}

.k-border-t-0 {
    border-top-width: 0;
}

.\!k-border-t-0 {
    border-top-width: 0 !important;
}

.k-border-t-2 {
    border-top-width: 2px;
}

.\!k-border-t-2 {
    border-top-width: 2px !important;
}

.k-border-t-4 {
    border-top-width: 4px;
}

.\!k-border-t-4 {
    border-top-width: 4px !important;
}

.k-border-t-8 {
    border-top-width: 8px;
}

.\!k-border-t-8 {
    border-top-width: 8px !important;
}

.k-border-r {
    border-right-width: 1px;
}

.\!k-border-r {
    border-right-width: 1px !important;
}

.k-border-r-0 {
    border-right-width: 0;
}

.\!k-border-r-0 {
    border-right-width: 0 !important;
}

.k-border-r-2 {
    border-right-width: 2px;
}

.\!k-border-r-2 {
    border-right-width: 2px !important;
}

.k-border-r-4 {
    border-right-width: 4px;
}

.\!k-border-r-4 {
    border-right-width: 4px !important;
}

.k-border-r-8 {
    border-right-width: 8px;
}

.\!k-border-r-8 {
    border-right-width: 8px !important;
}

.k-border-b {
    border-bottom-width: 1px;
}

.\!k-border-b {
    border-bottom-width: 1px !important;
}

.k-border-b-0 {
    border-bottom-width: 0;
}

.\!k-border-b-0 {
    border-bottom-width: 0 !important;
}

.k-border-b-2 {
    border-bottom-width: 2px;
}

.\!k-border-b-2 {
    border-bottom-width: 2px !important;
}

.k-border-b-4 {
    border-bottom-width: 4px;
}

.\!k-border-b-4 {
    border-bottom-width: 4px !important;
}

.k-border-b-8 {
    border-bottom-width: 8px;
}

.\!k-border-b-8 {
    border-bottom-width: 8px !important;
}

.k-border-l {
    border-left-width: 1px;
}

.\!k-border-l {
    border-left-width: 1px !important;
}

.k-border-l-0 {
    border-left-width: 0;
}

.\!k-border-l-0 {
    border-left-width: 0 !important;
}

.k-border-l-2 {
    border-left-width: 2px;
}

.\!k-border-l-2 {
    border-left-width: 2px !important;
}

.k-border-l-4 {
    border-left-width: 4px;
}

.\!k-border-l-4 {
    border-left-width: 4px !important;
}

.k-border-l-8 {
    border-left-width: 8px;
}

.\!k-border-l-8 {
    border-left-width: 8px !important;
}

.k-border-x {
    border-inline-width: 1px;
}

.\!k-border-x {
    border-inline-width: 1px !important;
}

.k-border-x-0 {
    border-inline-width: 0;
}

.\!k-border-x-0 {
    border-inline-width: 0 !important;
}

.k-border-x-2 {
    border-inline-width: 2px;
}

.\!k-border-x-2 {
    border-inline-width: 2px !important;
}

.k-border-x-4 {
    border-inline-width: 4px;
}

.\!k-border-x-4 {
    border-inline-width: 4px !important;
}

.k-border-x-8 {
    border-inline-width: 8px;
}

.\!k-border-x-8 {
    border-inline-width: 8px !important;
}

.k-border-y {
    border-block-width: 1px;
}

.\!k-border-y {
    border-block-width: 1px !important;
}

.k-border-y-0 {
    border-block-width: 0;
}

.\!k-border-y-0 {
    border-block-width: 0 !important;
}

.k-border-y-2 {
    border-block-width: 2px;
}

.\!k-border-y-2 {
    border-block-width: 2px !important;
}

.k-border-y-4 {
    border-block-width: 4px;
}

.\!k-border-y-4 {
    border-block-width: 4px !important;
}

.k-border-y-8 {
    border-block-width: 8px;
}

.\!k-border-y-8 {
    border-block-width: 8px !important;
}

.k-border-top {
    border-top-width: 1px;
}

.\!k-border-top {
    border-top-width: 1px !important;
}

.k-border-top-0 {
    border-top-width: 0;
}

.\!k-border-top-0 {
    border-top-width: 0 !important;
}

.k-border-top-2 {
    border-top-width: 2px;
}

.\!k-border-top-2 {
    border-top-width: 2px !important;
}

.k-border-top-4 {
    border-top-width: 4px;
}

.\!k-border-top-4 {
    border-top-width: 4px !important;
}

.k-border-top-8 {
    border-top-width: 8px;
}

.\!k-border-top-8 {
    border-top-width: 8px !important;
}

.k-border-right {
    border-right-width: 1px;
}

.\!k-border-right {
    border-right-width: 1px !important;
}

.k-border-right-0 {
    border-right-width: 0;
}

.\!k-border-right-0 {
    border-right-width: 0 !important;
}

.k-border-right-2 {
    border-right-width: 2px;
}

.\!k-border-right-2 {
    border-right-width: 2px !important;
}

.k-border-right-4 {
    border-right-width: 4px;
}

.\!k-border-right-4 {
    border-right-width: 4px !important;
}

.k-border-right-8 {
    border-right-width: 8px;
}

.\!k-border-right-8 {
    border-right-width: 8px !important;
}

.k-border-bottom {
    border-bottom-width: 1px;
}

.\!k-border-bottom {
    border-bottom-width: 1px !important;
}

.k-border-bottom-0 {
    border-bottom-width: 0;
}

.\!k-border-bottom-0 {
    border-bottom-width: 0 !important;
}

.k-border-bottom-2 {
    border-bottom-width: 2px;
}

.\!k-border-bottom-2 {
    border-bottom-width: 2px !important;
}

.k-border-bottom-4 {
    border-bottom-width: 4px;
}

.\!k-border-bottom-4 {
    border-bottom-width: 4px !important;
}

.k-border-bottom-8 {
    border-bottom-width: 8px;
}

.\!k-border-bottom-8 {
    border-bottom-width: 8px !important;
}

.k-border-left {
    border-left-width: 1px;
}

.\!k-border-left {
    border-left-width: 1px !important;
}

.k-border-left-0 {
    border-left-width: 0;
}

.\!k-border-left-0 {
    border-left-width: 0 !important;
}

.k-border-left-2 {
    border-left-width: 2px;
}

.\!k-border-left-2 {
    border-left-width: 2px !important;
}

.k-border-left-4 {
    border-left-width: 4px;
}

.\!k-border-left-4 {
    border-left-width: 4px !important;
}

.k-border-left-8 {
    border-left-width: 8px;
}

.\!k-border-left-8 {
    border-left-width: 8px !important;
}

.k-outline-offset-0 {
    outline-offset: 0;
}

.\!k-outline-offset-0 {
    outline-offset: 0 !important;
}

.k-outline-offset-1 {
    outline-offset: 1px;
}

.\!k-outline-offset-1 {
    outline-offset: 1px !important;
}

.k-outline-offset-2 {
    outline-offset: 2px;
}

.\!k-outline-offset-2 {
    outline-offset: 2px !important;
}

.k-outline-offset-4 {
    outline-offset: 4px;
}

.\!k-outline-offset-4 {
    outline-offset: 4px !important;
}

.k-outline-offset-8 {
    outline-offset: 8px;
}

.\!k-outline-offset-8 {
    outline-offset: 8px !important;
}

.k-outline-solid {
    outline-style: solid;
}

.\!k-outline-solid {
    outline-style: solid !important;
}

.k-outline-dashed {
    outline-style: dashed;
}

.\!k-outline-dashed {
    outline-style: dashed !important;
}

.k-outline-dotted {
    outline-style: dotted;
}

.\!k-outline-dotted {
    outline-style: dotted !important;
}

.k-outline-double {
    outline-style: double;
}

.\!k-outline-double {
    outline-style: double !important;
}

.k-outline-groove {
    outline-style: groove;
}

.\!k-outline-groove {
    outline-style: groove !important;
}

.k-outline-ridge {
    outline-style: ridge;
}

.\!k-outline-ridge {
    outline-style: ridge !important;
}

.k-outline-inset {
    outline-style: inset;
}

.\!k-outline-inset {
    outline-style: inset !important;
}

.k-outline-outset {
    outline-style: outset;
}

.\!k-outline-outset {
    outline-style: outset !important;
}

.k-outline-none {
    outline-style: none;
}

.\!k-outline-none {
    outline-style: none !important;
}

.k-outline {
    outline-width: 1px;
}

.\!k-outline {
    outline-width: 1px !important;
}

.k-outline-0 {
    outline-width: 0;
}

.\!k-outline-0 {
    outline-width: 0 !important;
}

.k-outline-2 {
    outline-width: 2px;
}

.\!k-outline-2 {
    outline-width: 2px !important;
}

.k-outline-4 {
    outline-width: 4px;
}

.\!k-outline-4 {
    outline-width: 4px !important;
}

.k-outline-8 {
    outline-width: 8px;
}

.\!k-outline-8 {
    outline-width: 8px !important;
}

.k-border-collapse {
    border-collapse: collapse;
}

.\!k-border-collapse {
    border-collapse: collapse !important;
}

.k-border-separate {
    border-collapse: separate;
}

.\!k-border-separate {
    border-collapse: separate !important;
}

.k-table-auto {
    table-layout: auto;
}

.\!k-table-auto {
    table-layout: auto !important;
}

.k-table-fixed {
    table-layout: fixed;
}

.\!k-table-fixed {
    table-layout: fixed !important;
}

.k-table-layout-auto {
    table-layout: auto;
}

.\!k-table-layout-auto {
    table-layout: auto !important;
}

.k-table-layout-fixed {
    table-layout: fixed;
}

.\!k-table-layout-fixed {
    table-layout: fixed !important;
}

.k-flip-h, .k-flip-x {
    transform: scaleX(-1);
}

.\!k-flip-h, .\!k-flip-x {
    transform: scaleX(-1) !important;
}

.k-flip-v, .k-flip-y {
    transform: scaleY(-1);
}

.\!k-flip-v, .\!k-flip-y {
    transform: scaleY(-1) !important;
}

.k-flip-h.k-flip-v, .k-flip-v.k-flip-x, .k-flip-x.k-flip-y, .k-flip-h.k-flip-y {
    transform: scale(-1, -1);
}

.\!k-flip-h.\!k-flip-v, .\!k-flip-v.\!k-flip-x, .\!k-flip-x.\!k-flip-y, .\!k-flip-h.\!k-flip-y {
    transform: scale(-1, -1) !important;
}

.k-origin-center {
    transform-origin: center;
}

.\!k-origin-center {
    transform-origin: center !important;
}

.k-origin-top {
    transform-origin: top;
}

.\!k-origin-top {
    transform-origin: top !important;
}

.k-origin-right {
    transform-origin: right;
}

.\!k-origin-right {
    transform-origin: right !important;
}

.k-origin-bottom {
    transform-origin: bottom;
}

.\!k-origin-bottom {
    transform-origin: bottom !important;
}

.k-origin-left {
    transform-origin: left;
}

.\!k-origin-left {
    transform-origin: left !important;
}

.k-origin-top-left {
    transform-origin: top left;
}

.\!k-origin-top-left {
    transform-origin: top left !important;
}

.k-origin-top-right {
    transform-origin: top right;
}

.\!k-origin-top-right {
    transform-origin: top right !important;
}

.k-origin-bottom-left {
    transform-origin: bottom left;
}

.\!k-origin-bottom-left {
    transform-origin: bottom left !important;
}

.k-origin-bottom-right {
    transform-origin: bottom right;
}

.\!k-origin-bottom-right {
    transform-origin: bottom right !important;
}

.k-rotate-0 {
    transform: rotate(0deg);
}

.\!k-rotate-0 {
    transform: rotate(0deg) !important;
}

.k-rotate-45 {
    transform: rotate(45deg);
}

.\!k-rotate-45 {
    transform: rotate(45deg) !important;
}

.k-rotate-90 {
    transform: rotate(90deg);
}

.\!k-rotate-90 {
    transform: rotate(90deg) !important;
}

.k-rotate-135 {
    transform: rotate(135deg);
}

.\!k-rotate-135 {
    transform: rotate(135deg) !important;
}

.k-rotate-180 {
    transform: rotate(180deg);
}

.\!k-rotate-180 {
    transform: rotate(180deg) !important;
}

.k-rotate-225 {
    transform: rotate(225deg);
}

.\!k-rotate-225 {
    transform: rotate(225deg) !important;
}

.k-rotate-270 {
    transform: rotate(270deg);
}

.\!k-rotate-270 {
    transform: rotate(270deg) !important;
}

.k-rotate-315 {
    transform: rotate(315deg);
}

.\!k-rotate-315 {
    transform: rotate(315deg) !important;
}

.k-scale-0 {
    transform: scale(0);
}

.\!k-scale-0 {
    transform: scale(0) !important;
}

.k-scale-\.25 {
    transform: scale(.25);
}

.\!k-scale-\.25 {
    transform: scale(.25) !important;
}

.k-scale-\.5 {
    transform: scale(.5);
}

.\!k-scale-\.5 {
    transform: scale(.5) !important;
}

.k-scale-\.75 {
    transform: scale(.75);
}

.\!k-scale-\.75 {
    transform: scale(.75) !important;
}

.k-scale-1 {
    transform: scale(1);
}

.\!k-scale-1 {
    transform: scale(1) !important;
}

.k-scale-1\.25 {
    transform: scale(1.25);
}

.\!k-scale-1\.25 {
    transform: scale(1.25) !important;
}

.k-scale-1\.5 {
    transform: scale(1.5);
}

.\!k-scale-1\.5 {
    transform: scale(1.5) !important;
}

.k-scale-2 {
    transform: scale(2);
}

.\!k-scale-2 {
    transform: scale(2) !important;
}

.k-scale-x-0 {
    transform: scaleX(0);
}

.\!k-scale-x-0 {
    transform: scaleX(0) !important;
}

.k-scale-x-\.25 {
    transform: scaleX(.25);
}

.\!k-scale-x-\.25 {
    transform: scaleX(.25) !important;
}

.k-scale-x-\.5 {
    transform: scaleX(.5);
}

.\!k-scale-x-\.5 {
    transform: scaleX(.5) !important;
}

.k-scale-x-\.75 {
    transform: scaleX(.75);
}

.\!k-scale-x-\.75 {
    transform: scaleX(.75) !important;
}

.k-scale-x-1 {
    transform: scaleX(1);
}

.\!k-scale-x-1 {
    transform: scaleX(1) !important;
}

.k-scale-x-1\.25 {
    transform: scaleX(1.25);
}

.\!k-scale-x-1\.25 {
    transform: scaleX(1.25) !important;
}

.k-scale-x-1\.5 {
    transform: scaleX(1.5);
}

.\!k-scale-x-1\.5 {
    transform: scaleX(1.5) !important;
}

.k-scale-x-2 {
    transform: scaleX(2);
}

.\!k-scale-x-2 {
    transform: scaleX(2) !important;
}

.k-scale-y-0 {
    transform: scaleY(0);
}

.\!k-scale-y-0 {
    transform: scaleY(0) !important;
}

.k-scale-y-\.25 {
    transform: scaleY(.25);
}

.\!k-scale-y-\.25 {
    transform: scaleY(.25) !important;
}

.k-scale-y-\.5 {
    transform: scaleY(.5);
}

.\!k-scale-y-\.5 {
    transform: scaleY(.5) !important;
}

.k-scale-y-\.75 {
    transform: scaleY(.75);
}

.\!k-scale-y-\.75 {
    transform: scaleY(.75) !important;
}

.k-scale-y-1 {
    transform: scaleY(1);
}

.\!k-scale-y-1 {
    transform: scaleY(1) !important;
}

.k-scale-y-1\.25 {
    transform: scaleY(1.25);
}

.\!k-scale-y-1\.25 {
    transform: scaleY(1.25) !important;
}

.k-scale-y-1\.5 {
    transform: scaleY(1.5);
}

.\!k-scale-y-1\.5 {
    transform: scaleY(1.5) !important;
}

.k-scale-y-2 {
    transform: scaleY(2);
}

.\!k-scale-y-2 {
    transform: scaleY(2) !important;
}

.k-skew-x-0 {
    transform: skewX(0deg);
}

.\!k-skew-x-0 {
    transform: skewX(0deg) !important;
}

.k-skew-x-1 {
    transform: skewX(1deg);
}

.\!k-skew-x-1 {
    transform: skewX(1deg) !important;
}

.k-skew-x-2 {
    transform: skewX(2deg);
}

.\!k-skew-x-2 {
    transform: skewX(2deg) !important;
}

.k-skew-x-3 {
    transform: skewX(3deg);
}

.\!k-skew-x-3 {
    transform: skewX(3deg) !important;
}

.k-skew-x-4 {
    transform: skewX(4deg);
}

.\!k-skew-x-4 {
    transform: skewX(4deg) !important;
}

.k-skew-x-5 {
    transform: skewX(5deg);
}

.\!k-skew-x-5 {
    transform: skewX(5deg) !important;
}

.k-skew-x-6 {
    transform: skewX(6deg);
}

.\!k-skew-x-6 {
    transform: skewX(6deg) !important;
}

.k-skew-x-7 {
    transform: skewX(7deg);
}

.\!k-skew-x-7 {
    transform: skewX(7deg) !important;
}

.k-skew-x-8 {
    transform: skewX(8deg);
}

.\!k-skew-x-8 {
    transform: skewX(8deg) !important;
}

.k-skew-x-9 {
    transform: skewX(9deg);
}

.\!k-skew-x-9 {
    transform: skewX(9deg) !important;
}

.k-skew-x-10 {
    transform: skewX(10deg);
}

.\!k-skew-x-10 {
    transform: skewX(10deg) !important;
}

.k-skew-x-11 {
    transform: skewX(11deg);
}

.\!k-skew-x-11 {
    transform: skewX(11deg) !important;
}

.k-skew-x-12 {
    transform: skewX(12deg);
}

.\!k-skew-x-12 {
    transform: skewX(12deg) !important;
}

.k-skew-y-0 {
    transform: skewY(0deg);
}

.\!k-skew-y-0 {
    transform: skewY(0deg) !important;
}

.k-skew-y-1 {
    transform: skewY(1deg);
}

.\!k-skew-y-1 {
    transform: skewY(1deg) !important;
}

.k-skew-y-2 {
    transform: skewY(2deg);
}

.\!k-skew-y-2 {
    transform: skewY(2deg) !important;
}

.k-skew-y-3 {
    transform: skewY(3deg);
}

.\!k-skew-y-3 {
    transform: skewY(3deg) !important;
}

.k-skew-y-4 {
    transform: skewY(4deg);
}

.\!k-skew-y-4 {
    transform: skewY(4deg) !important;
}

.k-skew-y-5 {
    transform: skewY(5deg);
}

.\!k-skew-y-5 {
    transform: skewY(5deg) !important;
}

.k-skew-y-6 {
    transform: skewY(6deg);
}

.\!k-skew-y-6 {
    transform: skewY(6deg) !important;
}

.k-skew-y-7 {
    transform: skewY(7deg);
}

.\!k-skew-y-7 {
    transform: skewY(7deg) !important;
}

.k-skew-y-8 {
    transform: skewY(8deg);
}

.\!k-skew-y-8 {
    transform: skewY(8deg) !important;
}

.k-skew-y-9 {
    transform: skewY(9deg);
}

.\!k-skew-y-9 {
    transform: skewY(9deg) !important;
}

.k-skew-y-10 {
    transform: skewY(10deg);
}

.\!k-skew-y-10 {
    transform: skewY(10deg) !important;
}

.k-skew-y-11 {
    transform: skewY(11deg);
}

.\!k-skew-y-11 {
    transform: skewY(11deg) !important;
}

.k-skew-y-12 {
    transform: skewY(12deg);
}

.\!k-skew-y-12 {
    transform: skewY(12deg) !important;
}

.k-translate-0 {
    transform: translate(0, 0);
}

.\!k-translate-0 {
    transform: translate(0, 0) !important;
}

.k-translate-0-50 {
    transform: translate(0, 50%);
}

.\!k-translate-0-50 {
    transform: translate(0, 50%) !important;
}

.k-translate-0-100 {
    transform: translate(0, 100%);
}

.\!k-translate-0-100 {
    transform: translate(0, 100%) !important;
}

.k-translate-50-0 {
    transform: translate(50%, 0);
}

.\!k-translate-50-0 {
    transform: translate(50%, 0) !important;
}

.k-translate-50-50 {
    transform: translate(50%, 50%);
}

.\!k-translate-50-50 {
    transform: translate(50%, 50%) !important;
}

.k-translate-50-100 {
    transform: translate(50%, 100%);
}

.\!k-translate-50-100 {
    transform: translate(50%, 100%) !important;
}

.k-translate-100-0 {
    transform: translate(100%, 0);
}

.\!k-translate-100-0 {
    transform: translate(100%, 0) !important;
}

.k-translate-100-50 {
    transform: translate(100%, 50%);
}

.\!k-translate-100-50 {
    transform: translate(100%, 50%) !important;
}

.k-translate-100-100 {
    transform: translate(100%, 100%);
}

.\!k-translate-100-100 {
    transform: translate(100%, 100%) !important;
}

.k-translate-x-0 {
    transform: translateX(0);
}

.\!k-translate-x-0 {
    transform: translateX(0) !important;
}

.k-translate-x-1px {
    transform: translateX(1px);
}

.\!k-translate-x-1px {
    transform: translateX(1px) !important;
}

.k-translate-x-\.5 {
    transform: translateX(2px);
}

.\!k-translate-x-\.5 {
    transform: translateX(2px) !important;
}

.k-translate-x-1 {
    transform: translateX(4px);
}

.\!k-translate-x-1 {
    transform: translateX(4px) !important;
}

.k-translate-x-1\.5 {
    transform: translateX(6px);
}

.\!k-translate-x-1\.5 {
    transform: translateX(6px) !important;
}

.k-translate-x-2 {
    transform: translateX(8px);
}

.\!k-translate-x-2 {
    transform: translateX(8px) !important;
}

.k-translate-x-2\.5 {
    transform: translateX(10px);
}

.\!k-translate-x-2\.5 {
    transform: translateX(10px) !important;
}

.k-translate-x-3 {
    transform: translateX(12px);
}

.\!k-translate-x-3 {
    transform: translateX(12px) !important;
}

.k-translate-x-3\.5 {
    transform: translateX(14px);
}

.\!k-translate-x-3\.5 {
    transform: translateX(14px) !important;
}

.k-translate-x-4 {
    transform: translateX(16px);
}

.\!k-translate-x-4 {
    transform: translateX(16px) !important;
}

.k-translate-x-4\.5 {
    transform: translateX(18px);
}

.\!k-translate-x-4\.5 {
    transform: translateX(18px) !important;
}

.k-translate-x-5 {
    transform: translateX(20px);
}

.\!k-translate-x-5 {
    transform: translateX(20px) !important;
}

.k-translate-x-5\.5 {
    transform: translateX(22px);
}

.\!k-translate-x-5\.5 {
    transform: translateX(22px) !important;
}

.k-translate-x-6 {
    transform: translateX(24px);
}

.\!k-translate-x-6 {
    transform: translateX(24px) !important;
}

.k-translate-x-6\.5 {
    transform: translateX(26px);
}

.\!k-translate-x-6\.5 {
    transform: translateX(26px) !important;
}

.k-translate-x-7 {
    transform: translateX(28px);
}

.\!k-translate-x-7 {
    transform: translateX(28px) !important;
}

.k-translate-x-7\.5 {
    transform: translateX(30px);
}

.\!k-translate-x-7\.5 {
    transform: translateX(30px) !important;
}

.k-translate-x-8 {
    transform: translateX(32px);
}

.\!k-translate-x-8 {
    transform: translateX(32px) !important;
}

.k-translate-x-9 {
    transform: translateX(36px);
}

.\!k-translate-x-9 {
    transform: translateX(36px) !important;
}

.k-translate-x-10 {
    transform: translateX(40px);
}

.\!k-translate-x-10 {
    transform: translateX(40px) !important;
}

.k-translate-x-11 {
    transform: translateX(44px);
}

.\!k-translate-x-11 {
    transform: translateX(44px) !important;
}

.k-translate-x-12 {
    transform: translateX(48px);
}

.\!k-translate-x-12 {
    transform: translateX(48px) !important;
}

.k-translate-x-13 {
    transform: translateX(52px);
}

.\!k-translate-x-13 {
    transform: translateX(52px) !important;
}

.k-translate-x-14 {
    transform: translateX(56px);
}

.\!k-translate-x-14 {
    transform: translateX(56px) !important;
}

.k-translate-x-15 {
    transform: translateX(60px);
}

.\!k-translate-x-15 {
    transform: translateX(60px) !important;
}

.k-translate-x-16 {
    transform: translateX(64px);
}

.\!k-translate-x-16 {
    transform: translateX(64px) !important;
}

.k-translate-x-17 {
    transform: translateX(68px);
}

.\!k-translate-x-17 {
    transform: translateX(68px) !important;
}

.k-translate-x-18 {
    transform: translateX(72px);
}

.\!k-translate-x-18 {
    transform: translateX(72px) !important;
}

.k-translate-x-19 {
    transform: translateX(76px);
}

.\!k-translate-x-19 {
    transform: translateX(76px) !important;
}

.k-translate-x-20 {
    transform: translateX(80px);
}

.\!k-translate-x-20 {
    transform: translateX(80px) !important;
}

.k-translate-x-21 {
    transform: translateX(84px);
}

.\!k-translate-x-21 {
    transform: translateX(84px) !important;
}

.k-translate-x-22 {
    transform: translateX(88px);
}

.\!k-translate-x-22 {
    transform: translateX(88px) !important;
}

.k-translate-x-23 {
    transform: translateX(92px);
}

.\!k-translate-x-23 {
    transform: translateX(92px) !important;
}

.k-translate-x-24 {
    transform: translateX(96px);
}

.\!k-translate-x-24 {
    transform: translateX(96px) !important;
}

.k-translate-x-1\/2 {
    transform: translateX(50%);
}

.\!k-translate-x-1\/2 {
    transform: translateX(50%) !important;
}

.k-translate-x-1\/3 {
    transform: translateX(33.333333%);
}

.\!k-translate-x-1\/3 {
    transform: translateX(33.333333%) !important;
}

.k-translate-x-2\/3 {
    transform: translateX(66.666667%);
}

.\!k-translate-x-2\/3 {
    transform: translateX(66.666667%) !important;
}

.k-translate-x-1\/4 {
    transform: translateX(25%);
}

.\!k-translate-x-1\/4 {
    transform: translateX(25%) !important;
}

.k-translate-x-2\/4 {
    transform: translateX(50%);
}

.\!k-translate-x-2\/4 {
    transform: translateX(50%) !important;
}

.k-translate-x-3\/4 {
    transform: translateX(75%);
}

.\!k-translate-x-3\/4 {
    transform: translateX(75%) !important;
}

.k-translate-x-1\/5 {
    transform: translateX(20%);
}

.\!k-translate-x-1\/5 {
    transform: translateX(20%) !important;
}

.k-translate-x-2\/5 {
    transform: translateX(40%);
}

.\!k-translate-x-2\/5 {
    transform: translateX(40%) !important;
}

.k-translate-x-3\/5 {
    transform: translateX(60%);
}

.\!k-translate-x-3\/5 {
    transform: translateX(60%) !important;
}

.k-translate-x-4\/5 {
    transform: translateX(80%);
}

.\!k-translate-x-4\/5 {
    transform: translateX(80%) !important;
}

.k-translate-x-1\/6 {
    transform: translateX(16.666667%);
}

.\!k-translate-x-1\/6 {
    transform: translateX(16.666667%) !important;
}

.k-translate-x-2\/6 {
    transform: translateX(33.333333%);
}

.\!k-translate-x-2\/6 {
    transform: translateX(33.333333%) !important;
}

.k-translate-x-3\/6 {
    transform: translateX(50%);
}

.\!k-translate-x-3\/6 {
    transform: translateX(50%) !important;
}

.k-translate-x-4\/6 {
    transform: translateX(66.666667%);
}

.\!k-translate-x-4\/6 {
    transform: translateX(66.666667%) !important;
}

.k-translate-x-5\/6 {
    transform: translateX(83.333333%);
}

.\!k-translate-x-5\/6 {
    transform: translateX(83.333333%) !important;
}

.k-translate-x-1\/12 {
    transform: translateX(8.333333%);
}

.\!k-translate-x-1\/12 {
    transform: translateX(8.333333%) !important;
}

.k-translate-x-2\/12 {
    transform: translateX(16.666667%);
}

.\!k-translate-x-2\/12 {
    transform: translateX(16.666667%) !important;
}

.k-translate-x-3\/12 {
    transform: translateX(25%);
}

.\!k-translate-x-3\/12 {
    transform: translateX(25%) !important;
}

.k-translate-x-4\/12 {
    transform: translateX(33.333333%);
}

.\!k-translate-x-4\/12 {
    transform: translateX(33.333333%) !important;
}

.k-translate-x-5\/12 {
    transform: translateX(41.666667%);
}

.\!k-translate-x-5\/12 {
    transform: translateX(41.666667%) !important;
}

.k-translate-x-6\/12 {
    transform: translateX(50%);
}

.\!k-translate-x-6\/12 {
    transform: translateX(50%) !important;
}

.k-translate-x-7\/12 {
    transform: translateX(58.333333%);
}

.\!k-translate-x-7\/12 {
    transform: translateX(58.333333%) !important;
}

.k-translate-x-8\/12 {
    transform: translateX(66.666667%);
}

.\!k-translate-x-8\/12 {
    transform: translateX(66.666667%) !important;
}

.k-translate-x-9\/12 {
    transform: translateX(75%);
}

.\!k-translate-x-9\/12 {
    transform: translateX(75%) !important;
}

.k-translate-x-10\/12 {
    transform: translateX(83.333333%);
}

.\!k-translate-x-10\/12 {
    transform: translateX(83.333333%) !important;
}

.k-translate-x-11\/12 {
    transform: translateX(91.666667%);
}

.\!k-translate-x-11\/12 {
    transform: translateX(91.666667%) !important;
}

.k-translate-x-full {
    transform: translateX(100%);
}

.\!k-translate-x-full {
    transform: translateX(100%) !important;
}

.k-translate-y-0 {
    transform: translateY(0);
}

.\!k-translate-y-0 {
    transform: translateY(0) !important;
}

.k-translate-y-1px {
    transform: translateY(1px);
}

.\!k-translate-y-1px {
    transform: translateY(1px) !important;
}

.k-translate-y-\.5 {
    transform: translateY(2px);
}

.\!k-translate-y-\.5 {
    transform: translateY(2px) !important;
}

.k-translate-y-1 {
    transform: translateY(4px);
}

.\!k-translate-y-1 {
    transform: translateY(4px) !important;
}

.k-translate-y-1\.5 {
    transform: translateY(6px);
}

.\!k-translate-y-1\.5 {
    transform: translateY(6px) !important;
}

.k-translate-y-2 {
    transform: translateY(8px);
}

.\!k-translate-y-2 {
    transform: translateY(8px) !important;
}

.k-translate-y-2\.5 {
    transform: translateY(10px);
}

.\!k-translate-y-2\.5 {
    transform: translateY(10px) !important;
}

.k-translate-y-3 {
    transform: translateY(12px);
}

.\!k-translate-y-3 {
    transform: translateY(12px) !important;
}

.k-translate-y-3\.5 {
    transform: translateY(14px);
}

.\!k-translate-y-3\.5 {
    transform: translateY(14px) !important;
}

.k-translate-y-4 {
    transform: translateY(16px);
}

.\!k-translate-y-4 {
    transform: translateY(16px) !important;
}

.k-translate-y-4\.5 {
    transform: translateY(18px);
}

.\!k-translate-y-4\.5 {
    transform: translateY(18px) !important;
}

.k-translate-y-5 {
    transform: translateY(20px);
}

.\!k-translate-y-5 {
    transform: translateY(20px) !important;
}

.k-translate-y-5\.5 {
    transform: translateY(22px);
}

.\!k-translate-y-5\.5 {
    transform: translateY(22px) !important;
}

.k-translate-y-6 {
    transform: translateY(24px);
}

.\!k-translate-y-6 {
    transform: translateY(24px) !important;
}

.k-translate-y-6\.5 {
    transform: translateY(26px);
}

.\!k-translate-y-6\.5 {
    transform: translateY(26px) !important;
}

.k-translate-y-7 {
    transform: translateY(28px);
}

.\!k-translate-y-7 {
    transform: translateY(28px) !important;
}

.k-translate-y-7\.5 {
    transform: translateY(30px);
}

.\!k-translate-y-7\.5 {
    transform: translateY(30px) !important;
}

.k-translate-y-8 {
    transform: translateY(32px);
}

.\!k-translate-y-8 {
    transform: translateY(32px) !important;
}

.k-translate-y-9 {
    transform: translateY(36px);
}

.\!k-translate-y-9 {
    transform: translateY(36px) !important;
}

.k-translate-y-10 {
    transform: translateY(40px);
}

.\!k-translate-y-10 {
    transform: translateY(40px) !important;
}

.k-translate-y-11 {
    transform: translateY(44px);
}

.\!k-translate-y-11 {
    transform: translateY(44px) !important;
}

.k-translate-y-12 {
    transform: translateY(48px);
}

.\!k-translate-y-12 {
    transform: translateY(48px) !important;
}

.k-translate-y-13 {
    transform: translateY(52px);
}

.\!k-translate-y-13 {
    transform: translateY(52px) !important;
}

.k-translate-y-14 {
    transform: translateY(56px);
}

.\!k-translate-y-14 {
    transform: translateY(56px) !important;
}

.k-translate-y-15 {
    transform: translateY(60px);
}

.\!k-translate-y-15 {
    transform: translateY(60px) !important;
}

.k-translate-y-16 {
    transform: translateY(64px);
}

.\!k-translate-y-16 {
    transform: translateY(64px) !important;
}

.k-translate-y-17 {
    transform: translateY(68px);
}

.\!k-translate-y-17 {
    transform: translateY(68px) !important;
}

.k-translate-y-18 {
    transform: translateY(72px);
}

.\!k-translate-y-18 {
    transform: translateY(72px) !important;
}

.k-translate-y-19 {
    transform: translateY(76px);
}

.\!k-translate-y-19 {
    transform: translateY(76px) !important;
}

.k-translate-y-20 {
    transform: translateY(80px);
}

.\!k-translate-y-20 {
    transform: translateY(80px) !important;
}

.k-translate-y-21 {
    transform: translateY(84px);
}

.\!k-translate-y-21 {
    transform: translateY(84px) !important;
}

.k-translate-y-22 {
    transform: translateY(88px);
}

.\!k-translate-y-22 {
    transform: translateY(88px) !important;
}

.k-translate-y-23 {
    transform: translateY(92px);
}

.\!k-translate-y-23 {
    transform: translateY(92px) !important;
}

.k-translate-y-24 {
    transform: translateY(96px);
}

.\!k-translate-y-24 {
    transform: translateY(96px) !important;
}

.k-translate-y-1\/2 {
    transform: translateY(50%);
}

.\!k-translate-y-1\/2 {
    transform: translateY(50%) !important;
}

.k-translate-y-1\/3 {
    transform: translateY(33.333333%);
}

.\!k-translate-y-1\/3 {
    transform: translateY(33.333333%) !important;
}

.k-translate-y-2\/3 {
    transform: translateY(66.666667%);
}

.\!k-translate-y-2\/3 {
    transform: translateY(66.666667%) !important;
}

.k-translate-y-1\/4 {
    transform: translateY(25%);
}

.\!k-translate-y-1\/4 {
    transform: translateY(25%) !important;
}

.k-translate-y-2\/4 {
    transform: translateY(50%);
}

.\!k-translate-y-2\/4 {
    transform: translateY(50%) !important;
}

.k-translate-y-3\/4 {
    transform: translateY(75%);
}

.\!k-translate-y-3\/4 {
    transform: translateY(75%) !important;
}

.k-translate-y-1\/5 {
    transform: translateY(20%);
}

.\!k-translate-y-1\/5 {
    transform: translateY(20%) !important;
}

.k-translate-y-2\/5 {
    transform: translateY(40%);
}

.\!k-translate-y-2\/5 {
    transform: translateY(40%) !important;
}

.k-translate-y-3\/5 {
    transform: translateY(60%);
}

.\!k-translate-y-3\/5 {
    transform: translateY(60%) !important;
}

.k-translate-y-4\/5 {
    transform: translateY(80%);
}

.\!k-translate-y-4\/5 {
    transform: translateY(80%) !important;
}

.k-translate-y-1\/6 {
    transform: translateY(16.666667%);
}

.\!k-translate-y-1\/6 {
    transform: translateY(16.666667%) !important;
}

.k-translate-y-2\/6 {
    transform: translateY(33.333333%);
}

.\!k-translate-y-2\/6 {
    transform: translateY(33.333333%) !important;
}

.k-translate-y-3\/6 {
    transform: translateY(50%);
}

.\!k-translate-y-3\/6 {
    transform: translateY(50%) !important;
}

.k-translate-y-4\/6 {
    transform: translateY(66.666667%);
}

.\!k-translate-y-4\/6 {
    transform: translateY(66.666667%) !important;
}

.k-translate-y-5\/6 {
    transform: translateY(83.333333%);
}

.\!k-translate-y-5\/6 {
    transform: translateY(83.333333%) !important;
}

.k-translate-y-1\/12 {
    transform: translateY(8.333333%);
}

.\!k-translate-y-1\/12 {
    transform: translateY(8.333333%) !important;
}

.k-translate-y-2\/12 {
    transform: translateY(16.666667%);
}

.\!k-translate-y-2\/12 {
    transform: translateY(16.666667%) !important;
}

.k-translate-y-3\/12 {
    transform: translateY(25%);
}

.\!k-translate-y-3\/12 {
    transform: translateY(25%) !important;
}

.k-translate-y-4\/12 {
    transform: translateY(33.333333%);
}

.\!k-translate-y-4\/12 {
    transform: translateY(33.333333%) !important;
}

.k-translate-y-5\/12 {
    transform: translateY(41.666667%);
}

.\!k-translate-y-5\/12 {
    transform: translateY(41.666667%) !important;
}

.k-translate-y-6\/12 {
    transform: translateY(50%);
}

.\!k-translate-y-6\/12 {
    transform: translateY(50%) !important;
}

.k-translate-y-7\/12 {
    transform: translateY(58.333333%);
}

.\!k-translate-y-7\/12 {
    transform: translateY(58.333333%) !important;
}

.k-translate-y-8\/12 {
    transform: translateY(66.666667%);
}

.\!k-translate-y-8\/12 {
    transform: translateY(66.666667%) !important;
}

.k-translate-y-9\/12 {
    transform: translateY(75%);
}

.\!k-translate-y-9\/12 {
    transform: translateY(75%) !important;
}

.k-translate-y-10\/12 {
    transform: translateY(83.333333%);
}

.\!k-translate-y-10\/12 {
    transform: translateY(83.333333%) !important;
}

.k-translate-y-11\/12 {
    transform: translateY(91.666667%);
}

.\!k-translate-y-11\/12 {
    transform: translateY(91.666667%) !important;
}

.k-translate-y-full {
    transform: translateY(100%);
}

.\!k-translate-y-full {
    transform: translateY(100%) !important;
}

.k-appearance-none {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.\!k-appearance-none {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

.k-appearance-auto {
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
}

.\!k-appearance-auto {
    -webkit-appearance: auto !important;
    -moz-appearance: auto !important;
    appearance: auto !important;
}

.k-cursor-none {
    cursor: none;
}

.\!k-cursor-none {
    cursor: none !important;
}

.k-cursor-auto {
    cursor: auto;
}

.\!k-cursor-auto {
    cursor: auto !important;
}

.k-cursor-default {
    cursor: default;
}

.\!k-cursor-default {
    cursor: default !important;
}

.k-cursor-context-menu {
    cursor: context-menu;
}

.\!k-cursor-context-menu {
    cursor: context-menu !important;
}

.k-cursor-help {
    cursor: help;
}

.\!k-cursor-help {
    cursor: help !important;
}

.k-cursor-pointer {
    cursor: pointer;
}

.\!k-cursor-pointer {
    cursor: pointer !important;
}

.k-cursor-progress {
    cursor: progress;
}

.\!k-cursor-progress {
    cursor: progress !important;
}

.k-cursor-wait {
    cursor: wait;
}

.\!k-cursor-wait {
    cursor: wait !important;
}

.k-cursor-cell {
    cursor: cell;
}

.\!k-cursor-cell {
    cursor: cell !important;
}

.k-cursor-crosshair {
    cursor: crosshair;
}

.\!k-cursor-crosshair {
    cursor: crosshair !important;
}

.k-cursor-text {
    cursor: text;
}

.\!k-cursor-text {
    cursor: text !important;
}

.k-cursor-vertical-text {
    cursor: vertical-text;
}

.\!k-cursor-vertical-text {
    cursor: vertical-text !important;
}

.k-cursor-alias {
    cursor: alias;
}

.\!k-cursor-alias {
    cursor: alias !important;
}

.k-cursor-copy {
    cursor: copy;
}

.\!k-cursor-copy {
    cursor: copy !important;
}

.k-cursor-move {
    cursor: move;
}

.\!k-cursor-move {
    cursor: move !important;
}

.k-cursor-no-drop {
    cursor: no-drop;
}

.\!k-cursor-no-drop {
    cursor: no-drop !important;
}

.k-cursor-not-allowed {
    cursor: not-allowed;
}

.\!k-cursor-not-allowed {
    cursor: not-allowed !important;
}

.k-cursor-e-resize {
    cursor: e-resize;
}

.\!k-cursor-e-resize {
    cursor: e-resize !important;
}

.k-cursor-n-resize {
    cursor: n-resize;
}

.\!k-cursor-n-resize {
    cursor: n-resize !important;
}

.k-cursor-ne-resize {
    cursor: ne-resize;
}

.\!k-cursor-ne-resize {
    cursor: ne-resize !important;
}

.k-cursor-nw-resize {
    cursor: nw-resize;
}

.\!k-cursor-nw-resize {
    cursor: nw-resize !important;
}

.k-cursor-s-resize {
    cursor: s-resize;
}

.\!k-cursor-s-resize {
    cursor: s-resize !important;
}

.k-cursor-se-resize {
    cursor: se-resize;
}

.\!k-cursor-se-resize {
    cursor: se-resize !important;
}

.k-cursor-sw-resize {
    cursor: sw-resize;
}

.\!k-cursor-sw-resize {
    cursor: sw-resize !important;
}

.k-cursor-w-resize {
    cursor: w-resize;
}

.\!k-cursor-w-resize {
    cursor: w-resize !important;
}

.k-cursor-ew-resize {
    cursor: ew-resize;
}

.\!k-cursor-ew-resize {
    cursor: ew-resize !important;
}

.k-cursor-ns-resize {
    cursor: ns-resize;
}

.\!k-cursor-ns-resize {
    cursor: ns-resize !important;
}

.k-cursor-nesw-resize {
    cursor: nesw-resize;
}

.\!k-cursor-nesw-resize {
    cursor: nesw-resize !important;
}

.k-cursor-nwse-resize {
    cursor: nwse-resize;
}

.\!k-cursor-nwse-resize {
    cursor: nwse-resize !important;
}

.k-cursor-col-resize {
    cursor: col-resize;
}

.\!k-cursor-col-resize {
    cursor: col-resize !important;
}

.k-cursor-row-resize {
    cursor: row-resize;
}

.\!k-cursor-row-resize {
    cursor: row-resize !important;
}

.k-cursor-all-scroll {
    cursor: all-scroll;
}

.\!k-cursor-all-scroll {
    cursor: all-scroll !important;
}

.k-cursor-zoom-in {
    cursor: zoom-in;
}

.\!k-cursor-zoom-in {
    cursor: zoom-in !important;
}

.k-cursor-zoom-out {
    cursor: zoom-out;
}

.\!k-cursor-zoom-out {
    cursor: zoom-out !important;
}

.k-cursor-grab {
    cursor: grab;
}

.\!k-cursor-grab {
    cursor: grab !important;
}

.k-cursor-grabbing {
    cursor: grabbing;
}

.\!k-cursor-grabbing {
    cursor: grabbing !important;
}

.k-pointer-events-none {
    pointer-events: none;
}

.\!k-pointer-events-none {
    pointer-events: none !important;
}

.k-pointer-events-auto {
    pointer-events: auto;
}

.\!k-pointer-events-auto {
    pointer-events: auto !important;
}

.k-resize {
    resize: both;
}

.\!k-resize {
    resize: both !important;
}

.k-resize-none {
    resize: none;
}

.\!k-resize-none {
    resize: none !important;
}

.k-resize-x {
    resize: horizontal;
}

.\!k-resize-x {
    resize: horizontal !important;
}

.k-resize-y {
    resize: vertical;
}

.\!k-resize-y {
    resize: vertical !important;
}

.k-scroll-auto {
    scroll-behavior: auto;
}

.\!k-scroll-auto {
    scroll-behavior: auto !important;
}

.k-scroll-smooth {
    scroll-behavior: smooth;
}

.\!k-scroll-smooth {
    scroll-behavior: smooth !important;
}

.k-scroll-snap-none {
    scroll-snap-type: none;
}

.\!k-scroll-snap-none {
    scroll-snap-type: none !important;
}

.k-scroll-snap-snap-x {
    scroll-snap-type: x var(--k-scroll-snap-strictness);
}

.\!k-scroll-snap-snap-x {
    scroll-snap-type: x var(--k-scroll-snap-strictness) !important;
}

.k-scroll-snap-snap-y {
    scroll-snap-type: y var(--k-scroll-snap-strictness);
}

.\!k-scroll-snap-snap-y {
    scroll-snap-type: y var(--k-scroll-snap-strictness) !important;
}

.k-scroll-snap-snap-both {
    scroll-snap-type: both var(--k-scroll-snap-strictness);
}

.\!k-scroll-snap-snap-both {
    scroll-snap-type: both var(--k-scroll-snap-strictness) !important;
}

.k-scroll-snap-mandatory {
    --k-scroll-snap-strictness: mandatory;
}

.k-scroll-snap-proximity {
    --k-scroll-snap-strictness: proximity;
}

.k-scroll-snap-stop-normal {
    scroll-snap-stop: normal;
}

.\!k-scroll-snap-stop-normal {
    scroll-snap-stop: normal !important;
}

.k-scroll-snap-stop-always {
    scroll-snap-stop: always;
}

.\!k-scroll-snap-stop-always {
    scroll-snap-stop: always !important;
}

.k-scroll-snap-align-start {
    scroll-snap-align: start;
}

.\!k-scroll-snap-align-start {
    scroll-snap-align: start !important;
}

.k-scroll-snap-align-end {
    scroll-snap-align: end;
}

.\!k-scroll-snap-align-end {
    scroll-snap-align: end !important;
}

.k-scroll-snap-align-center {
    scroll-snap-align: center;
}

.\!k-scroll-snap-align-center {
    scroll-snap-align: center !important;
}

.k-scroll-snap-align-none {
    scroll-snap-align: none;
}

.\!k-scroll-snap-align-none {
    scroll-snap-align: none !important;
}

.k-scroll-m-0 {
    scroll-margin: 0;
}

.\!k-scroll-m-0 {
    scroll-margin: 0 !important;
}

.k-scroll-m-1px {
    scroll-margin: 1px;
}

.\!k-scroll-m-1px {
    scroll-margin: 1px !important;
}

.k-scroll-m-\.5 {
    scroll-margin: 2px;
}

.\!k-scroll-m-\.5 {
    scroll-margin: 2px !important;
}

.k-scroll-m-1 {
    scroll-margin: 4px;
}

.\!k-scroll-m-1 {
    scroll-margin: 4px !important;
}

.k-scroll-m-1\.5 {
    scroll-margin: 6px;
}

.\!k-scroll-m-1\.5 {
    scroll-margin: 6px !important;
}

.k-scroll-m-2 {
    scroll-margin: 8px;
}

.\!k-scroll-m-2 {
    scroll-margin: 8px !important;
}

.k-scroll-m-2\.5 {
    scroll-margin: 10px;
}

.\!k-scroll-m-2\.5 {
    scroll-margin: 10px !important;
}

.k-scroll-m-3 {
    scroll-margin: 12px;
}

.\!k-scroll-m-3 {
    scroll-margin: 12px !important;
}

.k-scroll-m-3\.5 {
    scroll-margin: 14px;
}

.\!k-scroll-m-3\.5 {
    scroll-margin: 14px !important;
}

.k-scroll-m-4 {
    scroll-margin: 16px;
}

.\!k-scroll-m-4 {
    scroll-margin: 16px !important;
}

.k-scroll-m-4\.5 {
    scroll-margin: 18px;
}

.\!k-scroll-m-4\.5 {
    scroll-margin: 18px !important;
}

.k-scroll-m-5 {
    scroll-margin: 20px;
}

.\!k-scroll-m-5 {
    scroll-margin: 20px !important;
}

.k-scroll-m-5\.5 {
    scroll-margin: 22px;
}

.\!k-scroll-m-5\.5 {
    scroll-margin: 22px !important;
}

.k-scroll-m-6 {
    scroll-margin: 24px;
}

.\!k-scroll-m-6 {
    scroll-margin: 24px !important;
}

.k-scroll-m-6\.5 {
    scroll-margin: 26px;
}

.\!k-scroll-m-6\.5 {
    scroll-margin: 26px !important;
}

.k-scroll-m-7 {
    scroll-margin: 28px;
}

.\!k-scroll-m-7 {
    scroll-margin: 28px !important;
}

.k-scroll-m-7\.5 {
    scroll-margin: 30px;
}

.\!k-scroll-m-7\.5 {
    scroll-margin: 30px !important;
}

.k-scroll-m-8 {
    scroll-margin: 32px;
}

.\!k-scroll-m-8 {
    scroll-margin: 32px !important;
}

.k-scroll-m-9 {
    scroll-margin: 36px;
}

.\!k-scroll-m-9 {
    scroll-margin: 36px !important;
}

.k-scroll-m-10 {
    scroll-margin: 40px;
}

.\!k-scroll-m-10 {
    scroll-margin: 40px !important;
}

.k-scroll-m-11 {
    scroll-margin: 44px;
}

.\!k-scroll-m-11 {
    scroll-margin: 44px !important;
}

.k-scroll-m-12 {
    scroll-margin: 48px;
}

.\!k-scroll-m-12 {
    scroll-margin: 48px !important;
}

.k-scroll-m-13 {
    scroll-margin: 52px;
}

.\!k-scroll-m-13 {
    scroll-margin: 52px !important;
}

.k-scroll-m-14 {
    scroll-margin: 56px;
}

.\!k-scroll-m-14 {
    scroll-margin: 56px !important;
}

.k-scroll-m-15 {
    scroll-margin: 60px;
}

.\!k-scroll-m-15 {
    scroll-margin: 60px !important;
}

.k-scroll-m-16 {
    scroll-margin: 64px;
}

.\!k-scroll-m-16 {
    scroll-margin: 64px !important;
}

.k-scroll-m-17 {
    scroll-margin: 68px;
}

.\!k-scroll-m-17 {
    scroll-margin: 68px !important;
}

.k-scroll-m-18 {
    scroll-margin: 72px;
}

.\!k-scroll-m-18 {
    scroll-margin: 72px !important;
}

.k-scroll-m-19 {
    scroll-margin: 76px;
}

.\!k-scroll-m-19 {
    scroll-margin: 76px !important;
}

.k-scroll-m-20 {
    scroll-margin: 80px;
}

.\!k-scroll-m-20 {
    scroll-margin: 80px !important;
}

.k-scroll-m-21 {
    scroll-margin: 84px;
}

.\!k-scroll-m-21 {
    scroll-margin: 84px !important;
}

.k-scroll-m-22 {
    scroll-margin: 88px;
}

.\!k-scroll-m-22 {
    scroll-margin: 88px !important;
}

.k-scroll-m-23 {
    scroll-margin: 92px;
}

.\!k-scroll-m-23 {
    scroll-margin: 92px !important;
}

.k-scroll-m-24 {
    scroll-margin: 96px;
}

.\!k-scroll-m-24 {
    scroll-margin: 96px !important;
}

.k-scroll-mt-0 {
    scroll-margin-top: 0;
}

.\!k-scroll-mt-0 {
    scroll-margin-top: 0 !important;
}

.k-scroll-mt-1px {
    scroll-margin-top: 1px;
}

.\!k-scroll-mt-1px {
    scroll-margin-top: 1px !important;
}

.k-scroll-mt-\.5 {
    scroll-margin-top: 2px;
}

.\!k-scroll-mt-\.5 {
    scroll-margin-top: 2px !important;
}

.k-scroll-mt-1 {
    scroll-margin-top: 4px;
}

.\!k-scroll-mt-1 {
    scroll-margin-top: 4px !important;
}

.k-scroll-mt-1\.5 {
    scroll-margin-top: 6px;
}

.\!k-scroll-mt-1\.5 {
    scroll-margin-top: 6px !important;
}

.k-scroll-mt-2 {
    scroll-margin-top: 8px;
}

.\!k-scroll-mt-2 {
    scroll-margin-top: 8px !important;
}

.k-scroll-mt-2\.5 {
    scroll-margin-top: 10px;
}

.\!k-scroll-mt-2\.5 {
    scroll-margin-top: 10px !important;
}

.k-scroll-mt-3 {
    scroll-margin-top: 12px;
}

.\!k-scroll-mt-3 {
    scroll-margin-top: 12px !important;
}

.k-scroll-mt-3\.5 {
    scroll-margin-top: 14px;
}

.\!k-scroll-mt-3\.5 {
    scroll-margin-top: 14px !important;
}

.k-scroll-mt-4 {
    scroll-margin-top: 16px;
}

.\!k-scroll-mt-4 {
    scroll-margin-top: 16px !important;
}

.k-scroll-mt-4\.5 {
    scroll-margin-top: 18px;
}

.\!k-scroll-mt-4\.5 {
    scroll-margin-top: 18px !important;
}

.k-scroll-mt-5 {
    scroll-margin-top: 20px;
}

.\!k-scroll-mt-5 {
    scroll-margin-top: 20px !important;
}

.k-scroll-mt-5\.5 {
    scroll-margin-top: 22px;
}

.\!k-scroll-mt-5\.5 {
    scroll-margin-top: 22px !important;
}

.k-scroll-mt-6 {
    scroll-margin-top: 24px;
}

.\!k-scroll-mt-6 {
    scroll-margin-top: 24px !important;
}

.k-scroll-mt-6\.5 {
    scroll-margin-top: 26px;
}

.\!k-scroll-mt-6\.5 {
    scroll-margin-top: 26px !important;
}

.k-scroll-mt-7 {
    scroll-margin-top: 28px;
}

.\!k-scroll-mt-7 {
    scroll-margin-top: 28px !important;
}

.k-scroll-mt-7\.5 {
    scroll-margin-top: 30px;
}

.\!k-scroll-mt-7\.5 {
    scroll-margin-top: 30px !important;
}

.k-scroll-mt-8 {
    scroll-margin-top: 32px;
}

.\!k-scroll-mt-8 {
    scroll-margin-top: 32px !important;
}

.k-scroll-mt-9 {
    scroll-margin-top: 36px;
}

.\!k-scroll-mt-9 {
    scroll-margin-top: 36px !important;
}

.k-scroll-mt-10 {
    scroll-margin-top: 40px;
}

.\!k-scroll-mt-10 {
    scroll-margin-top: 40px !important;
}

.k-scroll-mt-11 {
    scroll-margin-top: 44px;
}

.\!k-scroll-mt-11 {
    scroll-margin-top: 44px !important;
}

.k-scroll-mt-12 {
    scroll-margin-top: 48px;
}

.\!k-scroll-mt-12 {
    scroll-margin-top: 48px !important;
}

.k-scroll-mt-13 {
    scroll-margin-top: 52px;
}

.\!k-scroll-mt-13 {
    scroll-margin-top: 52px !important;
}

.k-scroll-mt-14 {
    scroll-margin-top: 56px;
}

.\!k-scroll-mt-14 {
    scroll-margin-top: 56px !important;
}

.k-scroll-mt-15 {
    scroll-margin-top: 60px;
}

.\!k-scroll-mt-15 {
    scroll-margin-top: 60px !important;
}

.k-scroll-mt-16 {
    scroll-margin-top: 64px;
}

.\!k-scroll-mt-16 {
    scroll-margin-top: 64px !important;
}

.k-scroll-mt-17 {
    scroll-margin-top: 68px;
}

.\!k-scroll-mt-17 {
    scroll-margin-top: 68px !important;
}

.k-scroll-mt-18 {
    scroll-margin-top: 72px;
}

.\!k-scroll-mt-18 {
    scroll-margin-top: 72px !important;
}

.k-scroll-mt-19 {
    scroll-margin-top: 76px;
}

.\!k-scroll-mt-19 {
    scroll-margin-top: 76px !important;
}

.k-scroll-mt-20 {
    scroll-margin-top: 80px;
}

.\!k-scroll-mt-20 {
    scroll-margin-top: 80px !important;
}

.k-scroll-mt-21 {
    scroll-margin-top: 84px;
}

.\!k-scroll-mt-21 {
    scroll-margin-top: 84px !important;
}

.k-scroll-mt-22 {
    scroll-margin-top: 88px;
}

.\!k-scroll-mt-22 {
    scroll-margin-top: 88px !important;
}

.k-scroll-mt-23 {
    scroll-margin-top: 92px;
}

.\!k-scroll-mt-23 {
    scroll-margin-top: 92px !important;
}

.k-scroll-mt-24 {
    scroll-margin-top: 96px;
}

.\!k-scroll-mt-24 {
    scroll-margin-top: 96px !important;
}

.k-scroll-mr-0 {
    scroll-margin-right: 0;
}

.\!k-scroll-mr-0 {
    scroll-margin-right: 0 !important;
}

.k-scroll-mr-1px {
    scroll-margin-right: 1px;
}

.\!k-scroll-mr-1px {
    scroll-margin-right: 1px !important;
}

.k-scroll-mr-\.5 {
    scroll-margin-right: 2px;
}

.\!k-scroll-mr-\.5 {
    scroll-margin-right: 2px !important;
}

.k-scroll-mr-1 {
    scroll-margin-right: 4px;
}

.\!k-scroll-mr-1 {
    scroll-margin-right: 4px !important;
}

.k-scroll-mr-1\.5 {
    scroll-margin-right: 6px;
}

.\!k-scroll-mr-1\.5 {
    scroll-margin-right: 6px !important;
}

.k-scroll-mr-2 {
    scroll-margin-right: 8px;
}

.\!k-scroll-mr-2 {
    scroll-margin-right: 8px !important;
}

.k-scroll-mr-2\.5 {
    scroll-margin-right: 10px;
}

.\!k-scroll-mr-2\.5 {
    scroll-margin-right: 10px !important;
}

.k-scroll-mr-3 {
    scroll-margin-right: 12px;
}

.\!k-scroll-mr-3 {
    scroll-margin-right: 12px !important;
}

.k-scroll-mr-3\.5 {
    scroll-margin-right: 14px;
}

.\!k-scroll-mr-3\.5 {
    scroll-margin-right: 14px !important;
}

.k-scroll-mr-4 {
    scroll-margin-right: 16px;
}

.\!k-scroll-mr-4 {
    scroll-margin-right: 16px !important;
}

.k-scroll-mr-4\.5 {
    scroll-margin-right: 18px;
}

.\!k-scroll-mr-4\.5 {
    scroll-margin-right: 18px !important;
}

.k-scroll-mr-5 {
    scroll-margin-right: 20px;
}

.\!k-scroll-mr-5 {
    scroll-margin-right: 20px !important;
}

.k-scroll-mr-5\.5 {
    scroll-margin-right: 22px;
}

.\!k-scroll-mr-5\.5 {
    scroll-margin-right: 22px !important;
}

.k-scroll-mr-6 {
    scroll-margin-right: 24px;
}

.\!k-scroll-mr-6 {
    scroll-margin-right: 24px !important;
}

.k-scroll-mr-6\.5 {
    scroll-margin-right: 26px;
}

.\!k-scroll-mr-6\.5 {
    scroll-margin-right: 26px !important;
}

.k-scroll-mr-7 {
    scroll-margin-right: 28px;
}

.\!k-scroll-mr-7 {
    scroll-margin-right: 28px !important;
}

.k-scroll-mr-7\.5 {
    scroll-margin-right: 30px;
}

.\!k-scroll-mr-7\.5 {
    scroll-margin-right: 30px !important;
}

.k-scroll-mr-8 {
    scroll-margin-right: 32px;
}

.\!k-scroll-mr-8 {
    scroll-margin-right: 32px !important;
}

.k-scroll-mr-9 {
    scroll-margin-right: 36px;
}

.\!k-scroll-mr-9 {
    scroll-margin-right: 36px !important;
}

.k-scroll-mr-10 {
    scroll-margin-right: 40px;
}

.\!k-scroll-mr-10 {
    scroll-margin-right: 40px !important;
}

.k-scroll-mr-11 {
    scroll-margin-right: 44px;
}

.\!k-scroll-mr-11 {
    scroll-margin-right: 44px !important;
}

.k-scroll-mr-12 {
    scroll-margin-right: 48px;
}

.\!k-scroll-mr-12 {
    scroll-margin-right: 48px !important;
}

.k-scroll-mr-13 {
    scroll-margin-right: 52px;
}

.\!k-scroll-mr-13 {
    scroll-margin-right: 52px !important;
}

.k-scroll-mr-14 {
    scroll-margin-right: 56px;
}

.\!k-scroll-mr-14 {
    scroll-margin-right: 56px !important;
}

.k-scroll-mr-15 {
    scroll-margin-right: 60px;
}

.\!k-scroll-mr-15 {
    scroll-margin-right: 60px !important;
}

.k-scroll-mr-16 {
    scroll-margin-right: 64px;
}

.\!k-scroll-mr-16 {
    scroll-margin-right: 64px !important;
}

.k-scroll-mr-17 {
    scroll-margin-right: 68px;
}

.\!k-scroll-mr-17 {
    scroll-margin-right: 68px !important;
}

.k-scroll-mr-18 {
    scroll-margin-right: 72px;
}

.\!k-scroll-mr-18 {
    scroll-margin-right: 72px !important;
}

.k-scroll-mr-19 {
    scroll-margin-right: 76px;
}

.\!k-scroll-mr-19 {
    scroll-margin-right: 76px !important;
}

.k-scroll-mr-20 {
    scroll-margin-right: 80px;
}

.\!k-scroll-mr-20 {
    scroll-margin-right: 80px !important;
}

.k-scroll-mr-21 {
    scroll-margin-right: 84px;
}

.\!k-scroll-mr-21 {
    scroll-margin-right: 84px !important;
}

.k-scroll-mr-22 {
    scroll-margin-right: 88px;
}

.\!k-scroll-mr-22 {
    scroll-margin-right: 88px !important;
}

.k-scroll-mr-23 {
    scroll-margin-right: 92px;
}

.\!k-scroll-mr-23 {
    scroll-margin-right: 92px !important;
}

.k-scroll-mr-24 {
    scroll-margin-right: 96px;
}

.\!k-scroll-mr-24 {
    scroll-margin-right: 96px !important;
}

.k-scroll-mb-0 {
    scroll-margin-bottom: 0;
}

.\!k-scroll-mb-0 {
    scroll-margin-bottom: 0 !important;
}

.k-scroll-mb-1px {
    scroll-margin-bottom: 1px;
}

.\!k-scroll-mb-1px {
    scroll-margin-bottom: 1px !important;
}

.k-scroll-mb-\.5 {
    scroll-margin-bottom: 2px;
}

.\!k-scroll-mb-\.5 {
    scroll-margin-bottom: 2px !important;
}

.k-scroll-mb-1 {
    scroll-margin-bottom: 4px;
}

.\!k-scroll-mb-1 {
    scroll-margin-bottom: 4px !important;
}

.k-scroll-mb-1\.5 {
    scroll-margin-bottom: 6px;
}

.\!k-scroll-mb-1\.5 {
    scroll-margin-bottom: 6px !important;
}

.k-scroll-mb-2 {
    scroll-margin-bottom: 8px;
}

.\!k-scroll-mb-2 {
    scroll-margin-bottom: 8px !important;
}

.k-scroll-mb-2\.5 {
    scroll-margin-bottom: 10px;
}

.\!k-scroll-mb-2\.5 {
    scroll-margin-bottom: 10px !important;
}

.k-scroll-mb-3 {
    scroll-margin-bottom: 12px;
}

.\!k-scroll-mb-3 {
    scroll-margin-bottom: 12px !important;
}

.k-scroll-mb-3\.5 {
    scroll-margin-bottom: 14px;
}

.\!k-scroll-mb-3\.5 {
    scroll-margin-bottom: 14px !important;
}

.k-scroll-mb-4 {
    scroll-margin-bottom: 16px;
}

.\!k-scroll-mb-4 {
    scroll-margin-bottom: 16px !important;
}

.k-scroll-mb-4\.5 {
    scroll-margin-bottom: 18px;
}

.\!k-scroll-mb-4\.5 {
    scroll-margin-bottom: 18px !important;
}

.k-scroll-mb-5 {
    scroll-margin-bottom: 20px;
}

.\!k-scroll-mb-5 {
    scroll-margin-bottom: 20px !important;
}

.k-scroll-mb-5\.5 {
    scroll-margin-bottom: 22px;
}

.\!k-scroll-mb-5\.5 {
    scroll-margin-bottom: 22px !important;
}

.k-scroll-mb-6 {
    scroll-margin-bottom: 24px;
}

.\!k-scroll-mb-6 {
    scroll-margin-bottom: 24px !important;
}

.k-scroll-mb-6\.5 {
    scroll-margin-bottom: 26px;
}

.\!k-scroll-mb-6\.5 {
    scroll-margin-bottom: 26px !important;
}

.k-scroll-mb-7 {
    scroll-margin-bottom: 28px;
}

.\!k-scroll-mb-7 {
    scroll-margin-bottom: 28px !important;
}

.k-scroll-mb-7\.5 {
    scroll-margin-bottom: 30px;
}

.\!k-scroll-mb-7\.5 {
    scroll-margin-bottom: 30px !important;
}

.k-scroll-mb-8 {
    scroll-margin-bottom: 32px;
}

.\!k-scroll-mb-8 {
    scroll-margin-bottom: 32px !important;
}

.k-scroll-mb-9 {
    scroll-margin-bottom: 36px;
}

.\!k-scroll-mb-9 {
    scroll-margin-bottom: 36px !important;
}

.k-scroll-mb-10 {
    scroll-margin-bottom: 40px;
}

.\!k-scroll-mb-10 {
    scroll-margin-bottom: 40px !important;
}

.k-scroll-mb-11 {
    scroll-margin-bottom: 44px;
}

.\!k-scroll-mb-11 {
    scroll-margin-bottom: 44px !important;
}

.k-scroll-mb-12 {
    scroll-margin-bottom: 48px;
}

.\!k-scroll-mb-12 {
    scroll-margin-bottom: 48px !important;
}

.k-scroll-mb-13 {
    scroll-margin-bottom: 52px;
}

.\!k-scroll-mb-13 {
    scroll-margin-bottom: 52px !important;
}

.k-scroll-mb-14 {
    scroll-margin-bottom: 56px;
}

.\!k-scroll-mb-14 {
    scroll-margin-bottom: 56px !important;
}

.k-scroll-mb-15 {
    scroll-margin-bottom: 60px;
}

.\!k-scroll-mb-15 {
    scroll-margin-bottom: 60px !important;
}

.k-scroll-mb-16 {
    scroll-margin-bottom: 64px;
}

.\!k-scroll-mb-16 {
    scroll-margin-bottom: 64px !important;
}

.k-scroll-mb-17 {
    scroll-margin-bottom: 68px;
}

.\!k-scroll-mb-17 {
    scroll-margin-bottom: 68px !important;
}

.k-scroll-mb-18 {
    scroll-margin-bottom: 72px;
}

.\!k-scroll-mb-18 {
    scroll-margin-bottom: 72px !important;
}

.k-scroll-mb-19 {
    scroll-margin-bottom: 76px;
}

.\!k-scroll-mb-19 {
    scroll-margin-bottom: 76px !important;
}

.k-scroll-mb-20 {
    scroll-margin-bottom: 80px;
}

.\!k-scroll-mb-20 {
    scroll-margin-bottom: 80px !important;
}

.k-scroll-mb-21 {
    scroll-margin-bottom: 84px;
}

.\!k-scroll-mb-21 {
    scroll-margin-bottom: 84px !important;
}

.k-scroll-mb-22 {
    scroll-margin-bottom: 88px;
}

.\!k-scroll-mb-22 {
    scroll-margin-bottom: 88px !important;
}

.k-scroll-mb-23 {
    scroll-margin-bottom: 92px;
}

.\!k-scroll-mb-23 {
    scroll-margin-bottom: 92px !important;
}

.k-scroll-mb-24 {
    scroll-margin-bottom: 96px;
}

.\!k-scroll-mb-24 {
    scroll-margin-bottom: 96px !important;
}

.k-scroll-ml-0 {
    scroll-margin-left: 0;
}

.\!k-scroll-ml-0 {
    scroll-margin-left: 0 !important;
}

.k-scroll-ml-1px {
    scroll-margin-left: 1px;
}

.\!k-scroll-ml-1px {
    scroll-margin-left: 1px !important;
}

.k-scroll-ml-\.5 {
    scroll-margin-left: 2px;
}

.\!k-scroll-ml-\.5 {
    scroll-margin-left: 2px !important;
}

.k-scroll-ml-1 {
    scroll-margin-left: 4px;
}

.\!k-scroll-ml-1 {
    scroll-margin-left: 4px !important;
}

.k-scroll-ml-1\.5 {
    scroll-margin-left: 6px;
}

.\!k-scroll-ml-1\.5 {
    scroll-margin-left: 6px !important;
}

.k-scroll-ml-2 {
    scroll-margin-left: 8px;
}

.\!k-scroll-ml-2 {
    scroll-margin-left: 8px !important;
}

.k-scroll-ml-2\.5 {
    scroll-margin-left: 10px;
}

.\!k-scroll-ml-2\.5 {
    scroll-margin-left: 10px !important;
}

.k-scroll-ml-3 {
    scroll-margin-left: 12px;
}

.\!k-scroll-ml-3 {
    scroll-margin-left: 12px !important;
}

.k-scroll-ml-3\.5 {
    scroll-margin-left: 14px;
}

.\!k-scroll-ml-3\.5 {
    scroll-margin-left: 14px !important;
}

.k-scroll-ml-4 {
    scroll-margin-left: 16px;
}

.\!k-scroll-ml-4 {
    scroll-margin-left: 16px !important;
}

.k-scroll-ml-4\.5 {
    scroll-margin-left: 18px;
}

.\!k-scroll-ml-4\.5 {
    scroll-margin-left: 18px !important;
}

.k-scroll-ml-5 {
    scroll-margin-left: 20px;
}

.\!k-scroll-ml-5 {
    scroll-margin-left: 20px !important;
}

.k-scroll-ml-5\.5 {
    scroll-margin-left: 22px;
}

.\!k-scroll-ml-5\.5 {
    scroll-margin-left: 22px !important;
}

.k-scroll-ml-6 {
    scroll-margin-left: 24px;
}

.\!k-scroll-ml-6 {
    scroll-margin-left: 24px !important;
}

.k-scroll-ml-6\.5 {
    scroll-margin-left: 26px;
}

.\!k-scroll-ml-6\.5 {
    scroll-margin-left: 26px !important;
}

.k-scroll-ml-7 {
    scroll-margin-left: 28px;
}

.\!k-scroll-ml-7 {
    scroll-margin-left: 28px !important;
}

.k-scroll-ml-7\.5 {
    scroll-margin-left: 30px;
}

.\!k-scroll-ml-7\.5 {
    scroll-margin-left: 30px !important;
}

.k-scroll-ml-8 {
    scroll-margin-left: 32px;
}

.\!k-scroll-ml-8 {
    scroll-margin-left: 32px !important;
}

.k-scroll-ml-9 {
    scroll-margin-left: 36px;
}

.\!k-scroll-ml-9 {
    scroll-margin-left: 36px !important;
}

.k-scroll-ml-10 {
    scroll-margin-left: 40px;
}

.\!k-scroll-ml-10 {
    scroll-margin-left: 40px !important;
}

.k-scroll-ml-11 {
    scroll-margin-left: 44px;
}

.\!k-scroll-ml-11 {
    scroll-margin-left: 44px !important;
}

.k-scroll-ml-12 {
    scroll-margin-left: 48px;
}

.\!k-scroll-ml-12 {
    scroll-margin-left: 48px !important;
}

.k-scroll-ml-13 {
    scroll-margin-left: 52px;
}

.\!k-scroll-ml-13 {
    scroll-margin-left: 52px !important;
}

.k-scroll-ml-14 {
    scroll-margin-left: 56px;
}

.\!k-scroll-ml-14 {
    scroll-margin-left: 56px !important;
}

.k-scroll-ml-15 {
    scroll-margin-left: 60px;
}

.\!k-scroll-ml-15 {
    scroll-margin-left: 60px !important;
}

.k-scroll-ml-16 {
    scroll-margin-left: 64px;
}

.\!k-scroll-ml-16 {
    scroll-margin-left: 64px !important;
}

.k-scroll-ml-17 {
    scroll-margin-left: 68px;
}

.\!k-scroll-ml-17 {
    scroll-margin-left: 68px !important;
}

.k-scroll-ml-18 {
    scroll-margin-left: 72px;
}

.\!k-scroll-ml-18 {
    scroll-margin-left: 72px !important;
}

.k-scroll-ml-19 {
    scroll-margin-left: 76px;
}

.\!k-scroll-ml-19 {
    scroll-margin-left: 76px !important;
}

.k-scroll-ml-20 {
    scroll-margin-left: 80px;
}

.\!k-scroll-ml-20 {
    scroll-margin-left: 80px !important;
}

.k-scroll-ml-21 {
    scroll-margin-left: 84px;
}

.\!k-scroll-ml-21 {
    scroll-margin-left: 84px !important;
}

.k-scroll-ml-22 {
    scroll-margin-left: 88px;
}

.\!k-scroll-ml-22 {
    scroll-margin-left: 88px !important;
}

.k-scroll-ml-23 {
    scroll-margin-left: 92px;
}

.\!k-scroll-ml-23 {
    scroll-margin-left: 92px !important;
}

.k-scroll-ml-24 {
    scroll-margin-left: 96px;
}

.\!k-scroll-ml-24 {
    scroll-margin-left: 96px !important;
}

.k-scroll-mx-0 {
    scroll-margin-inline: 0;
}

.\!k-scroll-mx-0 {
    scroll-margin-inline: 0 !important;
}

.k-scroll-mx-1px {
    scroll-margin-inline: 1px;
}

.\!k-scroll-mx-1px {
    scroll-margin-inline: 1px !important;
}

.k-scroll-mx-\.5 {
    scroll-margin-inline: 2px;
}

.\!k-scroll-mx-\.5 {
    scroll-margin-inline: 2px !important;
}

.k-scroll-mx-1 {
    scroll-margin-inline: 4px;
}

.\!k-scroll-mx-1 {
    scroll-margin-inline: 4px !important;
}

.k-scroll-mx-1\.5 {
    scroll-margin-inline: 6px;
}

.\!k-scroll-mx-1\.5 {
    scroll-margin-inline: 6px !important;
}

.k-scroll-mx-2 {
    scroll-margin-inline: 8px;
}

.\!k-scroll-mx-2 {
    scroll-margin-inline: 8px !important;
}

.k-scroll-mx-2\.5 {
    scroll-margin-inline: 10px;
}

.\!k-scroll-mx-2\.5 {
    scroll-margin-inline: 10px !important;
}

.k-scroll-mx-3 {
    scroll-margin-inline: 12px;
}

.\!k-scroll-mx-3 {
    scroll-margin-inline: 12px !important;
}

.k-scroll-mx-3\.5 {
    scroll-margin-inline: 14px;
}

.\!k-scroll-mx-3\.5 {
    scroll-margin-inline: 14px !important;
}

.k-scroll-mx-4 {
    scroll-margin-inline: 16px;
}

.\!k-scroll-mx-4 {
    scroll-margin-inline: 16px !important;
}

.k-scroll-mx-4\.5 {
    scroll-margin-inline: 18px;
}

.\!k-scroll-mx-4\.5 {
    scroll-margin-inline: 18px !important;
}

.k-scroll-mx-5 {
    scroll-margin-inline: 20px;
}

.\!k-scroll-mx-5 {
    scroll-margin-inline: 20px !important;
}

.k-scroll-mx-5\.5 {
    scroll-margin-inline: 22px;
}

.\!k-scroll-mx-5\.5 {
    scroll-margin-inline: 22px !important;
}

.k-scroll-mx-6 {
    scroll-margin-inline: 24px;
}

.\!k-scroll-mx-6 {
    scroll-margin-inline: 24px !important;
}

.k-scroll-mx-6\.5 {
    scroll-margin-inline: 26px;
}

.\!k-scroll-mx-6\.5 {
    scroll-margin-inline: 26px !important;
}

.k-scroll-mx-7 {
    scroll-margin-inline: 28px;
}

.\!k-scroll-mx-7 {
    scroll-margin-inline: 28px !important;
}

.k-scroll-mx-7\.5 {
    scroll-margin-inline: 30px;
}

.\!k-scroll-mx-7\.5 {
    scroll-margin-inline: 30px !important;
}

.k-scroll-mx-8 {
    scroll-margin-inline: 32px;
}

.\!k-scroll-mx-8 {
    scroll-margin-inline: 32px !important;
}

.k-scroll-mx-9 {
    scroll-margin-inline: 36px;
}

.\!k-scroll-mx-9 {
    scroll-margin-inline: 36px !important;
}

.k-scroll-mx-10 {
    scroll-margin-inline: 40px;
}

.\!k-scroll-mx-10 {
    scroll-margin-inline: 40px !important;
}

.k-scroll-mx-11 {
    scroll-margin-inline: 44px;
}

.\!k-scroll-mx-11 {
    scroll-margin-inline: 44px !important;
}

.k-scroll-mx-12 {
    scroll-margin-inline: 48px;
}

.\!k-scroll-mx-12 {
    scroll-margin-inline: 48px !important;
}

.k-scroll-mx-13 {
    scroll-margin-inline: 52px;
}

.\!k-scroll-mx-13 {
    scroll-margin-inline: 52px !important;
}

.k-scroll-mx-14 {
    scroll-margin-inline: 56px;
}

.\!k-scroll-mx-14 {
    scroll-margin-inline: 56px !important;
}

.k-scroll-mx-15 {
    scroll-margin-inline: 60px;
}

.\!k-scroll-mx-15 {
    scroll-margin-inline: 60px !important;
}

.k-scroll-mx-16 {
    scroll-margin-inline: 64px;
}

.\!k-scroll-mx-16 {
    scroll-margin-inline: 64px !important;
}

.k-scroll-mx-17 {
    scroll-margin-inline: 68px;
}

.\!k-scroll-mx-17 {
    scroll-margin-inline: 68px !important;
}

.k-scroll-mx-18 {
    scroll-margin-inline: 72px;
}

.\!k-scroll-mx-18 {
    scroll-margin-inline: 72px !important;
}

.k-scroll-mx-19 {
    scroll-margin-inline: 76px;
}

.\!k-scroll-mx-19 {
    scroll-margin-inline: 76px !important;
}

.k-scroll-mx-20 {
    scroll-margin-inline: 80px;
}

.\!k-scroll-mx-20 {
    scroll-margin-inline: 80px !important;
}

.k-scroll-mx-21 {
    scroll-margin-inline: 84px;
}

.\!k-scroll-mx-21 {
    scroll-margin-inline: 84px !important;
}

.k-scroll-mx-22 {
    scroll-margin-inline: 88px;
}

.\!k-scroll-mx-22 {
    scroll-margin-inline: 88px !important;
}

.k-scroll-mx-23 {
    scroll-margin-inline: 92px;
}

.\!k-scroll-mx-23 {
    scroll-margin-inline: 92px !important;
}

.k-scroll-mx-24 {
    scroll-margin-inline: 96px;
}

.\!k-scroll-mx-24 {
    scroll-margin-inline: 96px !important;
}

.k-scroll-my-0 {
    scroll-margin-block: 0;
}

.\!k-scroll-my-0 {
    scroll-margin-block: 0 !important;
}

.k-scroll-my-1px {
    scroll-margin-block: 1px;
}

.\!k-scroll-my-1px {
    scroll-margin-block: 1px !important;
}

.k-scroll-my-\.5 {
    scroll-margin-block: 2px;
}

.\!k-scroll-my-\.5 {
    scroll-margin-block: 2px !important;
}

.k-scroll-my-1 {
    scroll-margin-block: 4px;
}

.\!k-scroll-my-1 {
    scroll-margin-block: 4px !important;
}

.k-scroll-my-1\.5 {
    scroll-margin-block: 6px;
}

.\!k-scroll-my-1\.5 {
    scroll-margin-block: 6px !important;
}

.k-scroll-my-2 {
    scroll-margin-block: 8px;
}

.\!k-scroll-my-2 {
    scroll-margin-block: 8px !important;
}

.k-scroll-my-2\.5 {
    scroll-margin-block: 10px;
}

.\!k-scroll-my-2\.5 {
    scroll-margin-block: 10px !important;
}

.k-scroll-my-3 {
    scroll-margin-block: 12px;
}

.\!k-scroll-my-3 {
    scroll-margin-block: 12px !important;
}

.k-scroll-my-3\.5 {
    scroll-margin-block: 14px;
}

.\!k-scroll-my-3\.5 {
    scroll-margin-block: 14px !important;
}

.k-scroll-my-4 {
    scroll-margin-block: 16px;
}

.\!k-scroll-my-4 {
    scroll-margin-block: 16px !important;
}

.k-scroll-my-4\.5 {
    scroll-margin-block: 18px;
}

.\!k-scroll-my-4\.5 {
    scroll-margin-block: 18px !important;
}

.k-scroll-my-5 {
    scroll-margin-block: 20px;
}

.\!k-scroll-my-5 {
    scroll-margin-block: 20px !important;
}

.k-scroll-my-5\.5 {
    scroll-margin-block: 22px;
}

.\!k-scroll-my-5\.5 {
    scroll-margin-block: 22px !important;
}

.k-scroll-my-6 {
    scroll-margin-block: 24px;
}

.\!k-scroll-my-6 {
    scroll-margin-block: 24px !important;
}

.k-scroll-my-6\.5 {
    scroll-margin-block: 26px;
}

.\!k-scroll-my-6\.5 {
    scroll-margin-block: 26px !important;
}

.k-scroll-my-7 {
    scroll-margin-block: 28px;
}

.\!k-scroll-my-7 {
    scroll-margin-block: 28px !important;
}

.k-scroll-my-7\.5 {
    scroll-margin-block: 30px;
}

.\!k-scroll-my-7\.5 {
    scroll-margin-block: 30px !important;
}

.k-scroll-my-8 {
    scroll-margin-block: 32px;
}

.\!k-scroll-my-8 {
    scroll-margin-block: 32px !important;
}

.k-scroll-my-9 {
    scroll-margin-block: 36px;
}

.\!k-scroll-my-9 {
    scroll-margin-block: 36px !important;
}

.k-scroll-my-10 {
    scroll-margin-block: 40px;
}

.\!k-scroll-my-10 {
    scroll-margin-block: 40px !important;
}

.k-scroll-my-11 {
    scroll-margin-block: 44px;
}

.\!k-scroll-my-11 {
    scroll-margin-block: 44px !important;
}

.k-scroll-my-12 {
    scroll-margin-block: 48px;
}

.\!k-scroll-my-12 {
    scroll-margin-block: 48px !important;
}

.k-scroll-my-13 {
    scroll-margin-block: 52px;
}

.\!k-scroll-my-13 {
    scroll-margin-block: 52px !important;
}

.k-scroll-my-14 {
    scroll-margin-block: 56px;
}

.\!k-scroll-my-14 {
    scroll-margin-block: 56px !important;
}

.k-scroll-my-15 {
    scroll-margin-block: 60px;
}

.\!k-scroll-my-15 {
    scroll-margin-block: 60px !important;
}

.k-scroll-my-16 {
    scroll-margin-block: 64px;
}

.\!k-scroll-my-16 {
    scroll-margin-block: 64px !important;
}

.k-scroll-my-17 {
    scroll-margin-block: 68px;
}

.\!k-scroll-my-17 {
    scroll-margin-block: 68px !important;
}

.k-scroll-my-18 {
    scroll-margin-block: 72px;
}

.\!k-scroll-my-18 {
    scroll-margin-block: 72px !important;
}

.k-scroll-my-19 {
    scroll-margin-block: 76px;
}

.\!k-scroll-my-19 {
    scroll-margin-block: 76px !important;
}

.k-scroll-my-20 {
    scroll-margin-block: 80px;
}

.\!k-scroll-my-20 {
    scroll-margin-block: 80px !important;
}

.k-scroll-my-21 {
    scroll-margin-block: 84px;
}

.\!k-scroll-my-21 {
    scroll-margin-block: 84px !important;
}

.k-scroll-my-22 {
    scroll-margin-block: 88px;
}

.\!k-scroll-my-22 {
    scroll-margin-block: 88px !important;
}

.k-scroll-my-23 {
    scroll-margin-block: 92px;
}

.\!k-scroll-my-23 {
    scroll-margin-block: 92px !important;
}

.k-scroll-my-24 {
    scroll-margin-block: 96px;
}

.\!k-scroll-my-24 {
    scroll-margin-block: 96px !important;
}

.k-scroll-p-0 {
    scroll-padding: 0;
}

.\!k-scroll-p-0 {
    scroll-padding: 0 !important;
}

.k-scroll-p-1px {
    scroll-padding: 1px;
}

.\!k-scroll-p-1px {
    scroll-padding: 1px !important;
}

.k-scroll-p-\.5 {
    scroll-padding: 2px;
}

.\!k-scroll-p-\.5 {
    scroll-padding: 2px !important;
}

.k-scroll-p-1 {
    scroll-padding: 4px;
}

.\!k-scroll-p-1 {
    scroll-padding: 4px !important;
}

.k-scroll-p-1\.5 {
    scroll-padding: 6px;
}

.\!k-scroll-p-1\.5 {
    scroll-padding: 6px !important;
}

.k-scroll-p-2 {
    scroll-padding: 8px;
}

.\!k-scroll-p-2 {
    scroll-padding: 8px !important;
}

.k-scroll-p-2\.5 {
    scroll-padding: 10px;
}

.\!k-scroll-p-2\.5 {
    scroll-padding: 10px !important;
}

.k-scroll-p-3 {
    scroll-padding: 12px;
}

.\!k-scroll-p-3 {
    scroll-padding: 12px !important;
}

.k-scroll-p-3\.5 {
    scroll-padding: 14px;
}

.\!k-scroll-p-3\.5 {
    scroll-padding: 14px !important;
}

.k-scroll-p-4 {
    scroll-padding: 16px;
}

.\!k-scroll-p-4 {
    scroll-padding: 16px !important;
}

.k-scroll-p-4\.5 {
    scroll-padding: 18px;
}

.\!k-scroll-p-4\.5 {
    scroll-padding: 18px !important;
}

.k-scroll-p-5 {
    scroll-padding: 20px;
}

.\!k-scroll-p-5 {
    scroll-padding: 20px !important;
}

.k-scroll-p-5\.5 {
    scroll-padding: 22px;
}

.\!k-scroll-p-5\.5 {
    scroll-padding: 22px !important;
}

.k-scroll-p-6 {
    scroll-padding: 24px;
}

.\!k-scroll-p-6 {
    scroll-padding: 24px !important;
}

.k-scroll-p-6\.5 {
    scroll-padding: 26px;
}

.\!k-scroll-p-6\.5 {
    scroll-padding: 26px !important;
}

.k-scroll-p-7 {
    scroll-padding: 28px;
}

.\!k-scroll-p-7 {
    scroll-padding: 28px !important;
}

.k-scroll-p-7\.5 {
    scroll-padding: 30px;
}

.\!k-scroll-p-7\.5 {
    scroll-padding: 30px !important;
}

.k-scroll-p-8 {
    scroll-padding: 32px;
}

.\!k-scroll-p-8 {
    scroll-padding: 32px !important;
}

.k-scroll-p-9 {
    scroll-padding: 36px;
}

.\!k-scroll-p-9 {
    scroll-padding: 36px !important;
}

.k-scroll-p-10 {
    scroll-padding: 40px;
}

.\!k-scroll-p-10 {
    scroll-padding: 40px !important;
}

.k-scroll-p-11 {
    scroll-padding: 44px;
}

.\!k-scroll-p-11 {
    scroll-padding: 44px !important;
}

.k-scroll-p-12 {
    scroll-padding: 48px;
}

.\!k-scroll-p-12 {
    scroll-padding: 48px !important;
}

.k-scroll-p-13 {
    scroll-padding: 52px;
}

.\!k-scroll-p-13 {
    scroll-padding: 52px !important;
}

.k-scroll-p-14 {
    scroll-padding: 56px;
}

.\!k-scroll-p-14 {
    scroll-padding: 56px !important;
}

.k-scroll-p-15 {
    scroll-padding: 60px;
}

.\!k-scroll-p-15 {
    scroll-padding: 60px !important;
}

.k-scroll-p-16 {
    scroll-padding: 64px;
}

.\!k-scroll-p-16 {
    scroll-padding: 64px !important;
}

.k-scroll-p-17 {
    scroll-padding: 68px;
}

.\!k-scroll-p-17 {
    scroll-padding: 68px !important;
}

.k-scroll-p-18 {
    scroll-padding: 72px;
}

.\!k-scroll-p-18 {
    scroll-padding: 72px !important;
}

.k-scroll-p-19 {
    scroll-padding: 76px;
}

.\!k-scroll-p-19 {
    scroll-padding: 76px !important;
}

.k-scroll-p-20 {
    scroll-padding: 80px;
}

.\!k-scroll-p-20 {
    scroll-padding: 80px !important;
}

.k-scroll-p-21 {
    scroll-padding: 84px;
}

.\!k-scroll-p-21 {
    scroll-padding: 84px !important;
}

.k-scroll-p-22 {
    scroll-padding: 88px;
}

.\!k-scroll-p-22 {
    scroll-padding: 88px !important;
}

.k-scroll-p-23 {
    scroll-padding: 92px;
}

.\!k-scroll-p-23 {
    scroll-padding: 92px !important;
}

.k-scroll-p-24 {
    scroll-padding: 96px;
}

.\!k-scroll-p-24 {
    scroll-padding: 96px !important;
}

.k-scroll-pt-0 {
    scroll-padding-top: 0;
}

.\!k-scroll-pt-0 {
    scroll-padding-top: 0 !important;
}

.k-scroll-pt-1px {
    scroll-padding-top: 1px;
}

.\!k-scroll-pt-1px {
    scroll-padding-top: 1px !important;
}

.k-scroll-pt-\.5 {
    scroll-padding-top: 2px;
}

.\!k-scroll-pt-\.5 {
    scroll-padding-top: 2px !important;
}

.k-scroll-pt-1 {
    scroll-padding-top: 4px;
}

.\!k-scroll-pt-1 {
    scroll-padding-top: 4px !important;
}

.k-scroll-pt-1\.5 {
    scroll-padding-top: 6px;
}

.\!k-scroll-pt-1\.5 {
    scroll-padding-top: 6px !important;
}

.k-scroll-pt-2 {
    scroll-padding-top: 8px;
}

.\!k-scroll-pt-2 {
    scroll-padding-top: 8px !important;
}

.k-scroll-pt-2\.5 {
    scroll-padding-top: 10px;
}

.\!k-scroll-pt-2\.5 {
    scroll-padding-top: 10px !important;
}

.k-scroll-pt-3 {
    scroll-padding-top: 12px;
}

.\!k-scroll-pt-3 {
    scroll-padding-top: 12px !important;
}

.k-scroll-pt-3\.5 {
    scroll-padding-top: 14px;
}

.\!k-scroll-pt-3\.5 {
    scroll-padding-top: 14px !important;
}

.k-scroll-pt-4 {
    scroll-padding-top: 16px;
}

.\!k-scroll-pt-4 {
    scroll-padding-top: 16px !important;
}

.k-scroll-pt-4\.5 {
    scroll-padding-top: 18px;
}

.\!k-scroll-pt-4\.5 {
    scroll-padding-top: 18px !important;
}

.k-scroll-pt-5 {
    scroll-padding-top: 20px;
}

.\!k-scroll-pt-5 {
    scroll-padding-top: 20px !important;
}

.k-scroll-pt-5\.5 {
    scroll-padding-top: 22px;
}

.\!k-scroll-pt-5\.5 {
    scroll-padding-top: 22px !important;
}

.k-scroll-pt-6 {
    scroll-padding-top: 24px;
}

.\!k-scroll-pt-6 {
    scroll-padding-top: 24px !important;
}

.k-scroll-pt-6\.5 {
    scroll-padding-top: 26px;
}

.\!k-scroll-pt-6\.5 {
    scroll-padding-top: 26px !important;
}

.k-scroll-pt-7 {
    scroll-padding-top: 28px;
}

.\!k-scroll-pt-7 {
    scroll-padding-top: 28px !important;
}

.k-scroll-pt-7\.5 {
    scroll-padding-top: 30px;
}

.\!k-scroll-pt-7\.5 {
    scroll-padding-top: 30px !important;
}

.k-scroll-pt-8 {
    scroll-padding-top: 32px;
}

.\!k-scroll-pt-8 {
    scroll-padding-top: 32px !important;
}

.k-scroll-pt-9 {
    scroll-padding-top: 36px;
}

.\!k-scroll-pt-9 {
    scroll-padding-top: 36px !important;
}

.k-scroll-pt-10 {
    scroll-padding-top: 40px;
}

.\!k-scroll-pt-10 {
    scroll-padding-top: 40px !important;
}

.k-scroll-pt-11 {
    scroll-padding-top: 44px;
}

.\!k-scroll-pt-11 {
    scroll-padding-top: 44px !important;
}

.k-scroll-pt-12 {
    scroll-padding-top: 48px;
}

.\!k-scroll-pt-12 {
    scroll-padding-top: 48px !important;
}

.k-scroll-pt-13 {
    scroll-padding-top: 52px;
}

.\!k-scroll-pt-13 {
    scroll-padding-top: 52px !important;
}

.k-scroll-pt-14 {
    scroll-padding-top: 56px;
}

.\!k-scroll-pt-14 {
    scroll-padding-top: 56px !important;
}

.k-scroll-pt-15 {
    scroll-padding-top: 60px;
}

.\!k-scroll-pt-15 {
    scroll-padding-top: 60px !important;
}

.k-scroll-pt-16 {
    scroll-padding-top: 64px;
}

.\!k-scroll-pt-16 {
    scroll-padding-top: 64px !important;
}

.k-scroll-pt-17 {
    scroll-padding-top: 68px;
}

.\!k-scroll-pt-17 {
    scroll-padding-top: 68px !important;
}

.k-scroll-pt-18 {
    scroll-padding-top: 72px;
}

.\!k-scroll-pt-18 {
    scroll-padding-top: 72px !important;
}

.k-scroll-pt-19 {
    scroll-padding-top: 76px;
}

.\!k-scroll-pt-19 {
    scroll-padding-top: 76px !important;
}

.k-scroll-pt-20 {
    scroll-padding-top: 80px;
}

.\!k-scroll-pt-20 {
    scroll-padding-top: 80px !important;
}

.k-scroll-pt-21 {
    scroll-padding-top: 84px;
}

.\!k-scroll-pt-21 {
    scroll-padding-top: 84px !important;
}

.k-scroll-pt-22 {
    scroll-padding-top: 88px;
}

.\!k-scroll-pt-22 {
    scroll-padding-top: 88px !important;
}

.k-scroll-pt-23 {
    scroll-padding-top: 92px;
}

.\!k-scroll-pt-23 {
    scroll-padding-top: 92px !important;
}

.k-scroll-pt-24 {
    scroll-padding-top: 96px;
}

.\!k-scroll-pt-24 {
    scroll-padding-top: 96px !important;
}

.k-scroll-pr-0 {
    scroll-padding-right: 0;
}

.\!k-scroll-pr-0 {
    scroll-padding-right: 0 !important;
}

.k-scroll-pr-1px {
    scroll-padding-right: 1px;
}

.\!k-scroll-pr-1px {
    scroll-padding-right: 1px !important;
}

.k-scroll-pr-\.5 {
    scroll-padding-right: 2px;
}

.\!k-scroll-pr-\.5 {
    scroll-padding-right: 2px !important;
}

.k-scroll-pr-1 {
    scroll-padding-right: 4px;
}

.\!k-scroll-pr-1 {
    scroll-padding-right: 4px !important;
}

.k-scroll-pr-1\.5 {
    scroll-padding-right: 6px;
}

.\!k-scroll-pr-1\.5 {
    scroll-padding-right: 6px !important;
}

.k-scroll-pr-2 {
    scroll-padding-right: 8px;
}

.\!k-scroll-pr-2 {
    scroll-padding-right: 8px !important;
}

.k-scroll-pr-2\.5 {
    scroll-padding-right: 10px;
}

.\!k-scroll-pr-2\.5 {
    scroll-padding-right: 10px !important;
}

.k-scroll-pr-3 {
    scroll-padding-right: 12px;
}

.\!k-scroll-pr-3 {
    scroll-padding-right: 12px !important;
}

.k-scroll-pr-3\.5 {
    scroll-padding-right: 14px;
}

.\!k-scroll-pr-3\.5 {
    scroll-padding-right: 14px !important;
}

.k-scroll-pr-4 {
    scroll-padding-right: 16px;
}

.\!k-scroll-pr-4 {
    scroll-padding-right: 16px !important;
}

.k-scroll-pr-4\.5 {
    scroll-padding-right: 18px;
}

.\!k-scroll-pr-4\.5 {
    scroll-padding-right: 18px !important;
}

.k-scroll-pr-5 {
    scroll-padding-right: 20px;
}

.\!k-scroll-pr-5 {
    scroll-padding-right: 20px !important;
}

.k-scroll-pr-5\.5 {
    scroll-padding-right: 22px;
}

.\!k-scroll-pr-5\.5 {
    scroll-padding-right: 22px !important;
}

.k-scroll-pr-6 {
    scroll-padding-right: 24px;
}

.\!k-scroll-pr-6 {
    scroll-padding-right: 24px !important;
}

.k-scroll-pr-6\.5 {
    scroll-padding-right: 26px;
}

.\!k-scroll-pr-6\.5 {
    scroll-padding-right: 26px !important;
}

.k-scroll-pr-7 {
    scroll-padding-right: 28px;
}

.\!k-scroll-pr-7 {
    scroll-padding-right: 28px !important;
}

.k-scroll-pr-7\.5 {
    scroll-padding-right: 30px;
}

.\!k-scroll-pr-7\.5 {
    scroll-padding-right: 30px !important;
}

.k-scroll-pr-8 {
    scroll-padding-right: 32px;
}

.\!k-scroll-pr-8 {
    scroll-padding-right: 32px !important;
}

.k-scroll-pr-9 {
    scroll-padding-right: 36px;
}

.\!k-scroll-pr-9 {
    scroll-padding-right: 36px !important;
}

.k-scroll-pr-10 {
    scroll-padding-right: 40px;
}

.\!k-scroll-pr-10 {
    scroll-padding-right: 40px !important;
}

.k-scroll-pr-11 {
    scroll-padding-right: 44px;
}

.\!k-scroll-pr-11 {
    scroll-padding-right: 44px !important;
}

.k-scroll-pr-12 {
    scroll-padding-right: 48px;
}

.\!k-scroll-pr-12 {
    scroll-padding-right: 48px !important;
}

.k-scroll-pr-13 {
    scroll-padding-right: 52px;
}

.\!k-scroll-pr-13 {
    scroll-padding-right: 52px !important;
}

.k-scroll-pr-14 {
    scroll-padding-right: 56px;
}

.\!k-scroll-pr-14 {
    scroll-padding-right: 56px !important;
}

.k-scroll-pr-15 {
    scroll-padding-right: 60px;
}

.\!k-scroll-pr-15 {
    scroll-padding-right: 60px !important;
}

.k-scroll-pr-16 {
    scroll-padding-right: 64px;
}

.\!k-scroll-pr-16 {
    scroll-padding-right: 64px !important;
}

.k-scroll-pr-17 {
    scroll-padding-right: 68px;
}

.\!k-scroll-pr-17 {
    scroll-padding-right: 68px !important;
}

.k-scroll-pr-18 {
    scroll-padding-right: 72px;
}

.\!k-scroll-pr-18 {
    scroll-padding-right: 72px !important;
}

.k-scroll-pr-19 {
    scroll-padding-right: 76px;
}

.\!k-scroll-pr-19 {
    scroll-padding-right: 76px !important;
}

.k-scroll-pr-20 {
    scroll-padding-right: 80px;
}

.\!k-scroll-pr-20 {
    scroll-padding-right: 80px !important;
}

.k-scroll-pr-21 {
    scroll-padding-right: 84px;
}

.\!k-scroll-pr-21 {
    scroll-padding-right: 84px !important;
}

.k-scroll-pr-22 {
    scroll-padding-right: 88px;
}

.\!k-scroll-pr-22 {
    scroll-padding-right: 88px !important;
}

.k-scroll-pr-23 {
    scroll-padding-right: 92px;
}

.\!k-scroll-pr-23 {
    scroll-padding-right: 92px !important;
}

.k-scroll-pr-24 {
    scroll-padding-right: 96px;
}

.\!k-scroll-pr-24 {
    scroll-padding-right: 96px !important;
}

.k-scroll-pb-0 {
    scroll-padding-bottom: 0;
}

.\!k-scroll-pb-0 {
    scroll-padding-bottom: 0 !important;
}

.k-scroll-pb-1px {
    scroll-padding-bottom: 1px;
}

.\!k-scroll-pb-1px {
    scroll-padding-bottom: 1px !important;
}

.k-scroll-pb-\.5 {
    scroll-padding-bottom: 2px;
}

.\!k-scroll-pb-\.5 {
    scroll-padding-bottom: 2px !important;
}

.k-scroll-pb-1 {
    scroll-padding-bottom: 4px;
}

.\!k-scroll-pb-1 {
    scroll-padding-bottom: 4px !important;
}

.k-scroll-pb-1\.5 {
    scroll-padding-bottom: 6px;
}

.\!k-scroll-pb-1\.5 {
    scroll-padding-bottom: 6px !important;
}

.k-scroll-pb-2 {
    scroll-padding-bottom: 8px;
}

.\!k-scroll-pb-2 {
    scroll-padding-bottom: 8px !important;
}

.k-scroll-pb-2\.5 {
    scroll-padding-bottom: 10px;
}

.\!k-scroll-pb-2\.5 {
    scroll-padding-bottom: 10px !important;
}

.k-scroll-pb-3 {
    scroll-padding-bottom: 12px;
}

.\!k-scroll-pb-3 {
    scroll-padding-bottom: 12px !important;
}

.k-scroll-pb-3\.5 {
    scroll-padding-bottom: 14px;
}

.\!k-scroll-pb-3\.5 {
    scroll-padding-bottom: 14px !important;
}

.k-scroll-pb-4 {
    scroll-padding-bottom: 16px;
}

.\!k-scroll-pb-4 {
    scroll-padding-bottom: 16px !important;
}

.k-scroll-pb-4\.5 {
    scroll-padding-bottom: 18px;
}

.\!k-scroll-pb-4\.5 {
    scroll-padding-bottom: 18px !important;
}

.k-scroll-pb-5 {
    scroll-padding-bottom: 20px;
}

.\!k-scroll-pb-5 {
    scroll-padding-bottom: 20px !important;
}

.k-scroll-pb-5\.5 {
    scroll-padding-bottom: 22px;
}

.\!k-scroll-pb-5\.5 {
    scroll-padding-bottom: 22px !important;
}

.k-scroll-pb-6 {
    scroll-padding-bottom: 24px;
}

.\!k-scroll-pb-6 {
    scroll-padding-bottom: 24px !important;
}

.k-scroll-pb-6\.5 {
    scroll-padding-bottom: 26px;
}

.\!k-scroll-pb-6\.5 {
    scroll-padding-bottom: 26px !important;
}

.k-scroll-pb-7 {
    scroll-padding-bottom: 28px;
}

.\!k-scroll-pb-7 {
    scroll-padding-bottom: 28px !important;
}

.k-scroll-pb-7\.5 {
    scroll-padding-bottom: 30px;
}

.\!k-scroll-pb-7\.5 {
    scroll-padding-bottom: 30px !important;
}

.k-scroll-pb-8 {
    scroll-padding-bottom: 32px;
}

.\!k-scroll-pb-8 {
    scroll-padding-bottom: 32px !important;
}

.k-scroll-pb-9 {
    scroll-padding-bottom: 36px;
}

.\!k-scroll-pb-9 {
    scroll-padding-bottom: 36px !important;
}

.k-scroll-pb-10 {
    scroll-padding-bottom: 40px;
}

.\!k-scroll-pb-10 {
    scroll-padding-bottom: 40px !important;
}

.k-scroll-pb-11 {
    scroll-padding-bottom: 44px;
}

.\!k-scroll-pb-11 {
    scroll-padding-bottom: 44px !important;
}

.k-scroll-pb-12 {
    scroll-padding-bottom: 48px;
}

.\!k-scroll-pb-12 {
    scroll-padding-bottom: 48px !important;
}

.k-scroll-pb-13 {
    scroll-padding-bottom: 52px;
}

.\!k-scroll-pb-13 {
    scroll-padding-bottom: 52px !important;
}

.k-scroll-pb-14 {
    scroll-padding-bottom: 56px;
}

.\!k-scroll-pb-14 {
    scroll-padding-bottom: 56px !important;
}

.k-scroll-pb-15 {
    scroll-padding-bottom: 60px;
}

.\!k-scroll-pb-15 {
    scroll-padding-bottom: 60px !important;
}

.k-scroll-pb-16 {
    scroll-padding-bottom: 64px;
}

.\!k-scroll-pb-16 {
    scroll-padding-bottom: 64px !important;
}

.k-scroll-pb-17 {
    scroll-padding-bottom: 68px;
}

.\!k-scroll-pb-17 {
    scroll-padding-bottom: 68px !important;
}

.k-scroll-pb-18 {
    scroll-padding-bottom: 72px;
}

.\!k-scroll-pb-18 {
    scroll-padding-bottom: 72px !important;
}

.k-scroll-pb-19 {
    scroll-padding-bottom: 76px;
}

.\!k-scroll-pb-19 {
    scroll-padding-bottom: 76px !important;
}

.k-scroll-pb-20 {
    scroll-padding-bottom: 80px;
}

.\!k-scroll-pb-20 {
    scroll-padding-bottom: 80px !important;
}

.k-scroll-pb-21 {
    scroll-padding-bottom: 84px;
}

.\!k-scroll-pb-21 {
    scroll-padding-bottom: 84px !important;
}

.k-scroll-pb-22 {
    scroll-padding-bottom: 88px;
}

.\!k-scroll-pb-22 {
    scroll-padding-bottom: 88px !important;
}

.k-scroll-pb-23 {
    scroll-padding-bottom: 92px;
}

.\!k-scroll-pb-23 {
    scroll-padding-bottom: 92px !important;
}

.k-scroll-pb-24 {
    scroll-padding-bottom: 96px;
}

.\!k-scroll-pb-24 {
    scroll-padding-bottom: 96px !important;
}

.k-scroll-pl-0 {
    scroll-padding-left: 0;
}

.\!k-scroll-pl-0 {
    scroll-padding-left: 0 !important;
}

.k-scroll-pl-1px {
    scroll-padding-left: 1px;
}

.\!k-scroll-pl-1px {
    scroll-padding-left: 1px !important;
}

.k-scroll-pl-\.5 {
    scroll-padding-left: 2px;
}

.\!k-scroll-pl-\.5 {
    scroll-padding-left: 2px !important;
}

.k-scroll-pl-1 {
    scroll-padding-left: 4px;
}

.\!k-scroll-pl-1 {
    scroll-padding-left: 4px !important;
}

.k-scroll-pl-1\.5 {
    scroll-padding-left: 6px;
}

.\!k-scroll-pl-1\.5 {
    scroll-padding-left: 6px !important;
}

.k-scroll-pl-2 {
    scroll-padding-left: 8px;
}

.\!k-scroll-pl-2 {
    scroll-padding-left: 8px !important;
}

.k-scroll-pl-2\.5 {
    scroll-padding-left: 10px;
}

.\!k-scroll-pl-2\.5 {
    scroll-padding-left: 10px !important;
}

.k-scroll-pl-3 {
    scroll-padding-left: 12px;
}

.\!k-scroll-pl-3 {
    scroll-padding-left: 12px !important;
}

.k-scroll-pl-3\.5 {
    scroll-padding-left: 14px;
}

.\!k-scroll-pl-3\.5 {
    scroll-padding-left: 14px !important;
}

.k-scroll-pl-4 {
    scroll-padding-left: 16px;
}

.\!k-scroll-pl-4 {
    scroll-padding-left: 16px !important;
}

.k-scroll-pl-4\.5 {
    scroll-padding-left: 18px;
}

.\!k-scroll-pl-4\.5 {
    scroll-padding-left: 18px !important;
}

.k-scroll-pl-5 {
    scroll-padding-left: 20px;
}

.\!k-scroll-pl-5 {
    scroll-padding-left: 20px !important;
}

.k-scroll-pl-5\.5 {
    scroll-padding-left: 22px;
}

.\!k-scroll-pl-5\.5 {
    scroll-padding-left: 22px !important;
}

.k-scroll-pl-6 {
    scroll-padding-left: 24px;
}

.\!k-scroll-pl-6 {
    scroll-padding-left: 24px !important;
}

.k-scroll-pl-6\.5 {
    scroll-padding-left: 26px;
}

.\!k-scroll-pl-6\.5 {
    scroll-padding-left: 26px !important;
}

.k-scroll-pl-7 {
    scroll-padding-left: 28px;
}

.\!k-scroll-pl-7 {
    scroll-padding-left: 28px !important;
}

.k-scroll-pl-7\.5 {
    scroll-padding-left: 30px;
}

.\!k-scroll-pl-7\.5 {
    scroll-padding-left: 30px !important;
}

.k-scroll-pl-8 {
    scroll-padding-left: 32px;
}

.\!k-scroll-pl-8 {
    scroll-padding-left: 32px !important;
}

.k-scroll-pl-9 {
    scroll-padding-left: 36px;
}

.\!k-scroll-pl-9 {
    scroll-padding-left: 36px !important;
}

.k-scroll-pl-10 {
    scroll-padding-left: 40px;
}

.\!k-scroll-pl-10 {
    scroll-padding-left: 40px !important;
}

.k-scroll-pl-11 {
    scroll-padding-left: 44px;
}

.\!k-scroll-pl-11 {
    scroll-padding-left: 44px !important;
}

.k-scroll-pl-12 {
    scroll-padding-left: 48px;
}

.\!k-scroll-pl-12 {
    scroll-padding-left: 48px !important;
}

.k-scroll-pl-13 {
    scroll-padding-left: 52px;
}

.\!k-scroll-pl-13 {
    scroll-padding-left: 52px !important;
}

.k-scroll-pl-14 {
    scroll-padding-left: 56px;
}

.\!k-scroll-pl-14 {
    scroll-padding-left: 56px !important;
}

.k-scroll-pl-15 {
    scroll-padding-left: 60px;
}

.\!k-scroll-pl-15 {
    scroll-padding-left: 60px !important;
}

.k-scroll-pl-16 {
    scroll-padding-left: 64px;
}

.\!k-scroll-pl-16 {
    scroll-padding-left: 64px !important;
}

.k-scroll-pl-17 {
    scroll-padding-left: 68px;
}

.\!k-scroll-pl-17 {
    scroll-padding-left: 68px !important;
}

.k-scroll-pl-18 {
    scroll-padding-left: 72px;
}

.\!k-scroll-pl-18 {
    scroll-padding-left: 72px !important;
}

.k-scroll-pl-19 {
    scroll-padding-left: 76px;
}

.\!k-scroll-pl-19 {
    scroll-padding-left: 76px !important;
}

.k-scroll-pl-20 {
    scroll-padding-left: 80px;
}

.\!k-scroll-pl-20 {
    scroll-padding-left: 80px !important;
}

.k-scroll-pl-21 {
    scroll-padding-left: 84px;
}

.\!k-scroll-pl-21 {
    scroll-padding-left: 84px !important;
}

.k-scroll-pl-22 {
    scroll-padding-left: 88px;
}

.\!k-scroll-pl-22 {
    scroll-padding-left: 88px !important;
}

.k-scroll-pl-23 {
    scroll-padding-left: 92px;
}

.\!k-scroll-pl-23 {
    scroll-padding-left: 92px !important;
}

.k-scroll-pl-24 {
    scroll-padding-left: 96px;
}

.\!k-scroll-pl-24 {
    scroll-padding-left: 96px !important;
}

.k-scroll-px-0 {
    scroll-padding-inline: 0;
}

.\!k-scroll-px-0 {
    scroll-padding-inline: 0 !important;
}

.k-scroll-px-1px {
    scroll-padding-inline: 1px;
}

.\!k-scroll-px-1px {
    scroll-padding-inline: 1px !important;
}

.k-scroll-px-\.5 {
    scroll-padding-inline: 2px;
}

.\!k-scroll-px-\.5 {
    scroll-padding-inline: 2px !important;
}

.k-scroll-px-1 {
    scroll-padding-inline: 4px;
}

.\!k-scroll-px-1 {
    scroll-padding-inline: 4px !important;
}

.k-scroll-px-1\.5 {
    scroll-padding-inline: 6px;
}

.\!k-scroll-px-1\.5 {
    scroll-padding-inline: 6px !important;
}

.k-scroll-px-2 {
    scroll-padding-inline: 8px;
}

.\!k-scroll-px-2 {
    scroll-padding-inline: 8px !important;
}

.k-scroll-px-2\.5 {
    scroll-padding-inline: 10px;
}

.\!k-scroll-px-2\.5 {
    scroll-padding-inline: 10px !important;
}

.k-scroll-px-3 {
    scroll-padding-inline: 12px;
}

.\!k-scroll-px-3 {
    scroll-padding-inline: 12px !important;
}

.k-scroll-px-3\.5 {
    scroll-padding-inline: 14px;
}

.\!k-scroll-px-3\.5 {
    scroll-padding-inline: 14px !important;
}

.k-scroll-px-4 {
    scroll-padding-inline: 16px;
}

.\!k-scroll-px-4 {
    scroll-padding-inline: 16px !important;
}

.k-scroll-px-4\.5 {
    scroll-padding-inline: 18px;
}

.\!k-scroll-px-4\.5 {
    scroll-padding-inline: 18px !important;
}

.k-scroll-px-5 {
    scroll-padding-inline: 20px;
}

.\!k-scroll-px-5 {
    scroll-padding-inline: 20px !important;
}

.k-scroll-px-5\.5 {
    scroll-padding-inline: 22px;
}

.\!k-scroll-px-5\.5 {
    scroll-padding-inline: 22px !important;
}

.k-scroll-px-6 {
    scroll-padding-inline: 24px;
}

.\!k-scroll-px-6 {
    scroll-padding-inline: 24px !important;
}

.k-scroll-px-6\.5 {
    scroll-padding-inline: 26px;
}

.\!k-scroll-px-6\.5 {
    scroll-padding-inline: 26px !important;
}

.k-scroll-px-7 {
    scroll-padding-inline: 28px;
}

.\!k-scroll-px-7 {
    scroll-padding-inline: 28px !important;
}

.k-scroll-px-7\.5 {
    scroll-padding-inline: 30px;
}

.\!k-scroll-px-7\.5 {
    scroll-padding-inline: 30px !important;
}

.k-scroll-px-8 {
    scroll-padding-inline: 32px;
}

.\!k-scroll-px-8 {
    scroll-padding-inline: 32px !important;
}

.k-scroll-px-9 {
    scroll-padding-inline: 36px;
}

.\!k-scroll-px-9 {
    scroll-padding-inline: 36px !important;
}

.k-scroll-px-10 {
    scroll-padding-inline: 40px;
}

.\!k-scroll-px-10 {
    scroll-padding-inline: 40px !important;
}

.k-scroll-px-11 {
    scroll-padding-inline: 44px;
}

.\!k-scroll-px-11 {
    scroll-padding-inline: 44px !important;
}

.k-scroll-px-12 {
    scroll-padding-inline: 48px;
}

.\!k-scroll-px-12 {
    scroll-padding-inline: 48px !important;
}

.k-scroll-px-13 {
    scroll-padding-inline: 52px;
}

.\!k-scroll-px-13 {
    scroll-padding-inline: 52px !important;
}

.k-scroll-px-14 {
    scroll-padding-inline: 56px;
}

.\!k-scroll-px-14 {
    scroll-padding-inline: 56px !important;
}

.k-scroll-px-15 {
    scroll-padding-inline: 60px;
}

.\!k-scroll-px-15 {
    scroll-padding-inline: 60px !important;
}

.k-scroll-px-16 {
    scroll-padding-inline: 64px;
}

.\!k-scroll-px-16 {
    scroll-padding-inline: 64px !important;
}

.k-scroll-px-17 {
    scroll-padding-inline: 68px;
}

.\!k-scroll-px-17 {
    scroll-padding-inline: 68px !important;
}

.k-scroll-px-18 {
    scroll-padding-inline: 72px;
}

.\!k-scroll-px-18 {
    scroll-padding-inline: 72px !important;
}

.k-scroll-px-19 {
    scroll-padding-inline: 76px;
}

.\!k-scroll-px-19 {
    scroll-padding-inline: 76px !important;
}

.k-scroll-px-20 {
    scroll-padding-inline: 80px;
}

.\!k-scroll-px-20 {
    scroll-padding-inline: 80px !important;
}

.k-scroll-px-21 {
    scroll-padding-inline: 84px;
}

.\!k-scroll-px-21 {
    scroll-padding-inline: 84px !important;
}

.k-scroll-px-22 {
    scroll-padding-inline: 88px;
}

.\!k-scroll-px-22 {
    scroll-padding-inline: 88px !important;
}

.k-scroll-px-23 {
    scroll-padding-inline: 92px;
}

.\!k-scroll-px-23 {
    scroll-padding-inline: 92px !important;
}

.k-scroll-px-24 {
    scroll-padding-inline: 96px;
}

.\!k-scroll-px-24 {
    scroll-padding-inline: 96px !important;
}

.k-scroll-py-0 {
    scroll-padding-block: 0;
}

.\!k-scroll-py-0 {
    scroll-padding-block: 0 !important;
}

.k-scroll-py-1px {
    scroll-padding-block: 1px;
}

.\!k-scroll-py-1px {
    scroll-padding-block: 1px !important;
}

.k-scroll-py-\.5 {
    scroll-padding-block: 2px;
}

.\!k-scroll-py-\.5 {
    scroll-padding-block: 2px !important;
}

.k-scroll-py-1 {
    scroll-padding-block: 4px;
}

.\!k-scroll-py-1 {
    scroll-padding-block: 4px !important;
}

.k-scroll-py-1\.5 {
    scroll-padding-block: 6px;
}

.\!k-scroll-py-1\.5 {
    scroll-padding-block: 6px !important;
}

.k-scroll-py-2 {
    scroll-padding-block: 8px;
}

.\!k-scroll-py-2 {
    scroll-padding-block: 8px !important;
}

.k-scroll-py-2\.5 {
    scroll-padding-block: 10px;
}

.\!k-scroll-py-2\.5 {
    scroll-padding-block: 10px !important;
}

.k-scroll-py-3 {
    scroll-padding-block: 12px;
}

.\!k-scroll-py-3 {
    scroll-padding-block: 12px !important;
}

.k-scroll-py-3\.5 {
    scroll-padding-block: 14px;
}

.\!k-scroll-py-3\.5 {
    scroll-padding-block: 14px !important;
}

.k-scroll-py-4 {
    scroll-padding-block: 16px;
}

.\!k-scroll-py-4 {
    scroll-padding-block: 16px !important;
}

.k-scroll-py-4\.5 {
    scroll-padding-block: 18px;
}

.\!k-scroll-py-4\.5 {
    scroll-padding-block: 18px !important;
}

.k-scroll-py-5 {
    scroll-padding-block: 20px;
}

.\!k-scroll-py-5 {
    scroll-padding-block: 20px !important;
}

.k-scroll-py-5\.5 {
    scroll-padding-block: 22px;
}

.\!k-scroll-py-5\.5 {
    scroll-padding-block: 22px !important;
}

.k-scroll-py-6 {
    scroll-padding-block: 24px;
}

.\!k-scroll-py-6 {
    scroll-padding-block: 24px !important;
}

.k-scroll-py-6\.5 {
    scroll-padding-block: 26px;
}

.\!k-scroll-py-6\.5 {
    scroll-padding-block: 26px !important;
}

.k-scroll-py-7 {
    scroll-padding-block: 28px;
}

.\!k-scroll-py-7 {
    scroll-padding-block: 28px !important;
}

.k-scroll-py-7\.5 {
    scroll-padding-block: 30px;
}

.\!k-scroll-py-7\.5 {
    scroll-padding-block: 30px !important;
}

.k-scroll-py-8 {
    scroll-padding-block: 32px;
}

.\!k-scroll-py-8 {
    scroll-padding-block: 32px !important;
}

.k-scroll-py-9 {
    scroll-padding-block: 36px;
}

.\!k-scroll-py-9 {
    scroll-padding-block: 36px !important;
}

.k-scroll-py-10 {
    scroll-padding-block: 40px;
}

.\!k-scroll-py-10 {
    scroll-padding-block: 40px !important;
}

.k-scroll-py-11 {
    scroll-padding-block: 44px;
}

.\!k-scroll-py-11 {
    scroll-padding-block: 44px !important;
}

.k-scroll-py-12 {
    scroll-padding-block: 48px;
}

.\!k-scroll-py-12 {
    scroll-padding-block: 48px !important;
}

.k-scroll-py-13 {
    scroll-padding-block: 52px;
}

.\!k-scroll-py-13 {
    scroll-padding-block: 52px !important;
}

.k-scroll-py-14 {
    scroll-padding-block: 56px;
}

.\!k-scroll-py-14 {
    scroll-padding-block: 56px !important;
}

.k-scroll-py-15 {
    scroll-padding-block: 60px;
}

.\!k-scroll-py-15 {
    scroll-padding-block: 60px !important;
}

.k-scroll-py-16 {
    scroll-padding-block: 64px;
}

.\!k-scroll-py-16 {
    scroll-padding-block: 64px !important;
}

.k-scroll-py-17 {
    scroll-padding-block: 68px;
}

.\!k-scroll-py-17 {
    scroll-padding-block: 68px !important;
}

.k-scroll-py-18 {
    scroll-padding-block: 72px;
}

.\!k-scroll-py-18 {
    scroll-padding-block: 72px !important;
}

.k-scroll-py-19 {
    scroll-padding-block: 76px;
}

.\!k-scroll-py-19 {
    scroll-padding-block: 76px !important;
}

.k-scroll-py-20 {
    scroll-padding-block: 80px;
}

.\!k-scroll-py-20 {
    scroll-padding-block: 80px !important;
}

.k-scroll-py-21 {
    scroll-padding-block: 84px;
}

.\!k-scroll-py-21 {
    scroll-padding-block: 84px !important;
}

.k-scroll-py-22 {
    scroll-padding-block: 88px;
}

.\!k-scroll-py-22 {
    scroll-padding-block: 88px !important;
}

.k-scroll-py-23 {
    scroll-padding-block: 92px;
}

.\!k-scroll-py-23 {
    scroll-padding-block: 92px !important;
}

.k-scroll-py-24 {
    scroll-padding-block: 96px;
}

.\!k-scroll-py-24 {
    scroll-padding-block: 96px !important;
}

.k-touch-action-none {
    touch-action: none;
}

.\!k-touch-action-none {
    touch-action: none !important;
}

.k-touch-action-auto {
    touch-action: auto;
}

.\!k-touch-action-auto {
    touch-action: auto !important;
}

.k-touch-action-pan-x {
    touch-action: pan-x;
}

.\!k-touch-action-pan-x {
    touch-action: pan-x !important;
}

.k-touch-action-pan-left {
    touch-action: pan-left;
}

.\!k-touch-action-pan-left {
    touch-action: pan-left !important;
}

.k-touch-action-pan-right {
    touch-action: pan-right;
}

.\!k-touch-action-pan-right {
    touch-action: pan-right !important;
}

.k-touch-action-pan-y {
    touch-action: pan-y;
}

.\!k-touch-action-pan-y {
    touch-action: pan-y !important;
}

.k-touch-action-pan-up {
    touch-action: pan-up;
}

.\!k-touch-action-pan-up {
    touch-action: pan-up !important;
}

.k-touch-action-pan-down {
    touch-action: pan-down;
}

.\!k-touch-action-pan-down {
    touch-action: pan-down !important;
}

.k-touch-action-pinch-zoom {
    touch-action: pinch-zoom;
}

.\!k-touch-action-pinch-zoom {
    touch-action: pinch-zoom !important;
}

.k-touch-action-manipulation {
    touch-action: manipulation;
}

.\!k-touch-action-manipulation {
    touch-action: manipulation !important;
}

.k-user-select-none {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.\!k-user-select-none {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    user-select: none !important;
}

.k-user-select-auto {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    user-select: auto;
}

.\!k-user-select-auto {
    -webkit-user-select: auto !important;
    -moz-user-select: auto !important;
    user-select: auto !important;
}

.k-user-select-text {
    -webkit-user-select: text;
    -moz-user-select: text;
    user-select: text;
}

.\!k-user-select-text {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    user-select: text !important;
}

.k-user-select-all {
    -webkit-user-select: all;
    -moz-user-select: all;
    user-select: all;
}

.\!k-user-select-all {
    -webkit-user-select: all !important;
    -moz-user-select: all !important;
    user-select: all !important;
}

.k-user-select-contain {
    -webkit-user-select: contain;
    -moz-user-select: contain;
    user-select: contain;
}

.\!k-user-select-contain {
    -webkit-user-select: contain !important;
    -moz-user-select: contain !important;
    user-select: contain !important;
}

.k-will-change-auto {
    will-change: auto;
}

.\!k-will-change-auto {
    will-change: auto !important;
}

.k-will-change-scroll {
    will-change: scroll-position;
}

.\!k-will-change-scroll {
    will-change: scroll-position !important;
}

.k-will-change-contents {
    will-change: contents;
}

.\!k-will-change-contents {
    will-change: contents !important;
}

.k-will-change-transform {
    will-change: transform;
}

.\!k-will-change-transform {
    will-change: transform !important;
}

@font-face {
    font-family: "WebComponentsIcons";
    font-style: normal;
    font-weight: normal;
    src: url("data:font/ttf; base64, AAEAAAALAIAAAwAwR1NVQiCLJXoAAAE4AAAAVE9TLzJWkk1xAAABjAAAAGBjbWFwbS0TigAADAwAACUcZ2x5ZktjGxwAADY8AAF0+GhlYWQi3hRPAAAA4AAAADZoaGVhB6kGSAAAALwAAAAkaG10eCAI/9oAAAHsAAAKIGxvY2GXSTvMAAAxKAAABRJtYXhwA9ABMAAAARgAAAAgbmFtZYGZmTgAAas0AAACcHBvc3TE+CbyAAGtpAAAJ4wAAQAAA8D/wAAABAD/5f//BAEAAQAAAAAAAAAAAAAAAAAAAogAAQAAAAEAAKZtPW1fDzz1AAsEAAAAAADf7GffAAAAAN/sZ9//5f+/BAED1QAAAAgAAgAAAAAAAAABAAACiAEkAD4AAAAAAAIAAAAKAAoAAAD/AAAAAAAAAAEAAAAKADAAPgACREZMVAAObGF0bgAaAAQAAAAAAAAAAQAAAAQAAAAAAAAAAQAAAAFsaWdhAAgAAAABAAAAAQAEAAQAAAABAAgAAQAGAAAAAQAAAAQEAAGQAAUAAAKJAswAAACPAokCzAAAAesAMgEIAAACAAUDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFBmRWQAwAAg6iEDwP/AAFwEHABBAAAAAQAAAAAAAAAAAAAAAAACBAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAD//wQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAD//wQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAD/5QQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAP/+BAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAD//gQA//4EAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAD//wQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAP//BAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAD//wQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAABQAAAAMAAAAsAAAABAAABrgAAQAAAAAFsgADAAEAAAAsAAMACgAABrgABAWGAAAAGgAQAAMACgAg4G/hXeIO4wrkA+VT5qHnBegs6U7qIf//AAAAIOAA4QDiAOMA5ADlAOYA5wDoAOkA6gD//wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABABoAGgD4AbIBzgHiAegCjgPQA9oEMgTOAAAAAQACAAMABAAFAAYABwAIAAkACgALAAwADQAOAA8AEAARABIAEwAUABUAFgAXABgAGQAaABsAHAAdAB4AHwAgACEAIgAjACQAJQAmACcAKAApACoAKwAsAC0ALgAvADAAMQAyADMANAA1ADYANwA4ADkAOgA7ADwAPQA+AD8AQABBAEIAQwBEAEUARgBHAEgASQBKAEsATABNAE4ATwBQAFEAUgBTAFQAVQBWAFcAWABZAFoAWwBcAF0AXgBfAGAAYQBiAGMAZABlAGYAZwBoAGkAagBrAGwAbQBuAG8AcABxAHIAcwB0AHUAdgB3AHgAeQB6AHsAfAB9AH4AfwCAAIEAggCDAIQAhQCGAIcAiACJAIoAiwCMAI0AjgCPAJAAkQCSAJMAlACVAJYAlwCYAJkAmgCbAJwAnQCeAJ8AoAChAKIAowCkAKUApgCnAKgAqQCqAKsArACtAK4ArwCwALEAsgCzALQAtQC2ALcAuAC5ALoAuwC8AL0AvgC/AMAAwQDCAMMAxADFAMYAxwDIAMkAygDLAMwAzQDOAM8A0ADRANIA0wDUANUA1gDXANgA2QDaANsA3ADdAN4A3wDgAOEA4gDjAOQA5QDmAOcA6ADpAOoA6wDsAO0A7gDvAPAA8QDyAPMA9AD1APYA9wD4APkA+gD7APwA/QD+AP8BAAEBAQIBAwEEAQUBBgEHAQgBCQEKAQsBDAENAQ4BDwEQAREBEgETARQBFQEWARcBGAEZARoBGwEcAR0BHgEfASABIQEiASMBJAElASYBJwEoASkBKgErASwBLQEuAS8BMAExATIBMwE0ATUBNgE3ATgBOQE6ATsBPAE9AT4BPwFAAUEBQgFDAUQBRQFGAUcBSAFJAUoBSwFMAU0BTgFPAVABUQFSAVMBVAFVAVYBVwFYAVkBWgFbAVwBXQFeAV8BYAFhAWIBYwFkAWUBZgFnAWgBaQFqAWsBbAFtAW4BbwFwAXEBcgFzAXQBdQF2AXcBeAF5AXoBewF8AX0BfgF/AYABgQGCAYMBhAGFAYYBhwGIAYkBigGLAYwBjQGOAY8BkAGRAZIBkwGUAZUBlgGXAZgBmQGaAZsBnAGdAZ4BnwGgAaEBogGjAaQBpQGmAacBqAGpAaoBqwGsAa0BrgGvAbABsQGyAbMBtAG1AbYBtwG4AbkBugG7AbwBvQG+Ab8BwAHBAcIBwwHEAcUBxgHHAcgByQHKAcsBzAHNAc4BzwHQAdEB0gHTAdQB1QHWAdcB2AHZAdoB2wHcAd0B3gHfAeAB4QHiAeMB5AHlAeYB5wHoAekB6gHrAewB7QHuAe8B8AHxAfIB8wH0AfUB9gH3AfgB+QH6AfsB/AH9Af4B/wIAAgECAgIDAgQCBQIGAgcCCAIJAgoCCwIMAg0CDgIPAhACEQISAhMCFAIVAhYCFwIYAhkCGgIbAhwCHQIeAh8CIAIhAiICIwIkAiUCJgInAigCKQIqAisCLAItAi4CLwIwAjECMgIzAjQCNQI2AjcCOAI5AjoCOwI8Aj0CPgI/AkACQQJCAkMCRAJFAkYCRwJIAkkCSgJLAkwCTQJOAk8CUAJRAlICUwJUAlUCVgJXAlgCWQJaAlsCXAJdAl4CXwJgAmECYgJjAmQCZQJmAmcCaAJpAmoCawJsAm0CbgJvAnACcQJy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AADlJAAAARIAAOUlAADlJQAAARMAAOUmAADlJgAAARQAAOUnAADlJwAAARUAAOUoAADlKAAAARYAAOUpAADlKQAAARcAAOUqAADlKgAAARgAAOUrAADlKwAAARkAAOUsAADlLAAAARoAAOUtAADlLQAAARsAAOUuAADlLgAAARwAAOUvAADlLwAAAR0AAOUwAADlMAAAAR4AAOUxAADlMQAAAR8AAOUyAADlMgAAASAAAOUzAADlMwAAASEAAOU0AADlNAAAASIAAOU1AADlNQAAASMAAOU2AADlNgAAASQAAOU3AADlNwAAASUAAOU4AADlOAAAASYAAOU5AADlOQAAAScAAOU6AADlOgAAASgAAOU7AADlOwAAASkAAOU8AADlPAAAASoAAOU9AADlPQAAASsAAOU+AADlPgAAASwAAOU/AADlPwAAAS0AAOVAAADlQAAAAS4AAOVBAADlQQAAAS8AAOVCAADlQgAAATAAAOVDAADlQwAAATEAAOVEAADlRAAAATIAAOVFAADlRQAAATMAAOVGAADlRgAAATQAAOVHAADlRwAAATUAAOVIAADlSAAAATYAAOVJAADlSQAAATcAAOVKAADlSgAAATgAAOVLAADlSwAAATkAAOVMAADlTAAAAToAAOVNAADlTQAAATsAAOVOAADlTgAAATwAAOVPAADlTwAAAT0AAOVQAADlUAAAAT4AAOVRAADlUQAAAT8AAOVSAADlUgAAAUAAAOVTAADlUwAAAUEAAOYAAADmAAAAAUIAAOYBAADmAQAAAUMAAOYCAADmAgAAAUQAAOYDAADmAwAAAUUAAOYEAADmBAAAAUYAAOYFAADmBQAAAUcAAOYGAADmBgAAAUgAAOYHAADmBwAAAUkAAOYIAADmCAAAAUoAAOYJAADmCQAAAUsAAOYKAADmCgAAAUwAAOYLAADmCwAAAU0AAOYMAADmDAAAAU4AAOYNAADmDQAAAU8AAOYOAADmDgAAAVAAAOYPAADmDwAAAVEAAOYQAADmEAAAAVIAAOYRAADmEQAAAVMAAOYSAADmEgAAAVQAAOYTAADmEwAAAVUAAOYUAADmFAAAAVYAAOYVAADmFQAAAVcAAOYWAADmFgAAAVgAAOYXAADmFwAAAVkAAOYYAADmGAAAAVoAAOYZAADmGQAAAVsAAOYaAADmGgAAAVwAAOYb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ExElAREFESEVIRUhFSERIRUhFSEVIUABQP7AAUACQP3AAkD9wAJA/cACQP3AA4D+gMD9QAGAwAKAQIBA/wBAgEAAAAAACQAAAAADwAOAAAMABwALAA8AEwAXABsAHwAjAAATIREhASERIQEhESE1IREhASERIQERIREBIREhJSERIQEhESFAAQD/AAFAAQD/AP7AAQD/AAEA/wABQAEA/wABQAEA/wABAP8A/sABAP8AAUABAP8AA4D/AP2AAQD/AAEAQAEA/wABAAFA/wABAP3AAQBAAQD8gAEAAAAGAAAAAAPAA4AAAwAHAAsADwATABcAABMzFSMlFSE1ATM1IwUhNSEBMzUjBSE1IUDAwAEAAoD8gMDAAQACgP2A/wDAwAEAAoD9gAOAwMDAwP4AwMDA/gDAwMAAAAQAAAAAA4ADgAADAAcACwAPAAATIREhESERIQEhESEZASERQAGA/oABgP6AAcABgP6AAYABwP6AAcABgPzAAYABwP6AAYAAAAQAAAAAA4ADgAADAAcACwAPAAATIREhEyERIQEhESEDESERQAGA/oBAAQD/AAHAAQD/AEABgAHA/oACAAEA/UABAAIA/oABgAAAAAACAAAAAAKAA0AAAwAHAAABMxEjExEzEQFAgIDAgANA/QADAP0AAwAABgAAAAADgAPAAAMABwALAA8AEwAXAAAlIRUhNSE1IQEhESEFITUhESE1IQEVITUBgAIA/gACAP4A/sABAP8AAUACAP4AAgD+AP7AA0CAgMCA/sACwICA/sCAAcDAwAAABQAAAAADgAPAAAMABwALAA8AEwAAEyERIQEVITUBITUhESE1IREhNSFAAYD+gAHAAYD+gAGA/oABgP6AAYD+gAPA/EADwMDA/kDA/kDA/kDAAAAABAAAAAADgAPAAAMABwALAA8AABMhESEBIREhASERIQEhESFAAYD+gAHAAYD+gP5AAYD+gAHAAYD+gAIAAcD+QAHA/EABwP5AAcAAAAQAAAAAA4ADwAADAAcACwAPAAA3IRUhESE1ITUhNSERFSE1QANA/MADQPzAA0D8wANAwMABAMBAwAEAwMAAAAAFAAAAAAOAA8AAAwAHAAsADwATAAATIRUhESE1ISUhNSEBESERASE1IUABgP6AAYD+gAHAAYD+gP5AA0D+gAGA/oABwMD/AMBAwAIA/kAB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/wDAgP8AAUDA/sCA/wABAMCAAAAAAgAAAAADgANAAAcADQAAAREhESERIREXIxUjFSEDgP4A/wACAMDAwAGAAkD+AAEAAgD/AEDAwAADAAAAAAOAA0AAAwAHAA0AAAERIREDIREhAyERMxEhAYACAED+gAGAwP4AwAFAAkD+AAIA/kABgAFA/gABQAAABAAAAAADfgOAAAMABwALAA8AABMzESMBIREhBREhEQUhFSE+QEACQP5AAcABAP1AAoD9wAJAA4D8gAMA/wCA/wABAECAAAAAAgAAAAADPgOAABMAFwAAATUzESM1IxUjETMVIREhFTM1IREHITUhAf7AwEDAwP7AAUBAAUBA/cACQAGAgAEAgID/AID/AICAAQDAgAAAAAAEAAAAAAPAA4AAAwAHAAsADwAANyERIRchFSETIREhAREjEYACwP1AQAJA/cDAAcD+QAJAQIABAECAAkD/AAGA/IADgAAAAAAEAAAAAAO+A4AAAwAHAAsADwAAEyERIQEhESE3MxEjJRUhNb4BAP8AAYABAP8AQICA/cADgAMA/kABwP1AQAJAwEBAAAIAAAAAA74DQAATABgAAAERIREjNSEVIxUzFSE1MxEhETM1IxEjETMDPv8AgP8AgIABAIABAIDAgIACAAFA/sDAwEDAwP7AAUBA/sACQAAABAAA//4DvgM+AAMABwALAA8AACUVITUBIREpAhEhByMRMwO+/IABgP8AAQABgP8AAQBAgIA+QEACAP5AAsBA/cAAAAAEAAAAAAOAA4AAAwAHAAsADwAAATMVIyUzFSMlMxUjFSERIQLAwMD+wMDA/sDAwANA/MADgMDAwMDAgP4AAAAABAAAAAADgAOAAAMABwALAA8AAAEzFSMRMxUjETMVIyUhESECwMDAwMDAwP2AAgD+AAEAwAIAwAIAwMD8wAAAAAQAAAAAA4ADgAADAAcACwAPAAABMxUjJTMVIyUzFSMRIREhAsDAwP7AwMD+wMDAA0D8wAEAwMDAwMADQP4AAAAEAAAAAAOAA4AAAwAHAAsADwAAExUzNTMRIREBFTM1AxUzNUDAgAIA/MDAwMADgMDA/MADQP7AwMD+wMDAAAAABAAAAAAEAAOAAAUACwARABcAABEhFSMVIxMjESE1IwEVMxUzEQMjFSERIwFAwICAgAFAwAJAwICAwAFAgAOA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AAABITUhByEVIRchFSEDwPyAA4CA/YACgID8gAOAAQBAgEBAQAAAAAAGAAAAAAOAA0AAAwAHAAsADwATABcAAAEhNSEHIRUhFyEVIQchFSEXIRUhByEVIQOA/QADAMD9wAJAwP0AAwDA/cACQMD9AAMAwP3AAkADAECAQEBAQEBAQEBAAAYAAAAAA4ADQAADAAcACwAPABMAFwAAASE1IQchNSEXITUhByE1IRchNSEHITUhA4D9AAMAgP4AAgCA/QADAID+AAIAgP0AAwCA/gACAAMAQMBAwEDAQMBAwEAABgAAAAADgANAAAMABwALAA8AEwAXAAATIRUhATUhFRchNSEDFSE1JSE1IREVITWAAwD9AAMA/QDAAkD9wMADAP3AAkD9wAJAAkBAAQBAQIBA/oBAQEBA/wBAQAAGAAAAAAOAA0AAAwAHAAsADwATABcAAAEhNSE1IRUhASE1ITUhNSE1ITUhESE1IQOA/QADAP0AAwD9AAMA/QADAP0AAwD9AAMA/QACgECAQP4AQEBAQED+QEAAAAUAAAAAA8ADgAADAAcACwAPACsAABMXIzUVMycjFSEnIR0BIScFNyczNSMnMzUjJyE1ISchNSEnITUhJyE1IScHnkBe3kCeAV5A/uIB3kABdS1TE1NAk9NAARP+rUABk/4tQAIT/a1AApP9LUAtAkBAQMBAwECAQEDALVNAQEBAQEBAQEBAQEAtAAAABgAAAAADwAOAAAMABwALAA8AEwAbAAABFSE1AREhEQUhESEDIRUhFTUhFQMhNSERITUhA8D9AAIA/YACQP4AAgBA/oABgP6AQAJA/YACgP3AAwBAQP7A/kABwED+wAEAQIBAQALAQP7AQAAABQAAAAADwANAAAMABwALAA8AEwAAASE1IRchFSEXIRUhBSEVIRchFSECgP3AAkDA/QADAID8gAOA/sD9wAJAwP0AAwADAECAQICAgEBAQAAFAAAAAAPAA8AAAwAHAAsADwATAAAzESERAREhEQUhNSEVITUhFSE1IUADgPzAAwD9QAGA/oACgP2AAYD+gAPA/EADgPzAA0CAQMBAwEAAAAUAAAAAA8ADwAADAAcACwAPABMAADMRIREBESERByEVIRchFSEHIRUhQAOA/MADAMD+gAGAgP2AAoCA/oABgAPA/EADgPzAA0BAQEBAQEAABQAAAAADwAPAAAMABwALAA8AEwAAMxEhEQERIREHIRUhFSEVIRUhFSFAA4D8wAMAQP6AAYD9gAKA/oABgAPA/EADgPzAA0BAQEBAQEAAAAAFAAAAAAPAA8AAAwAHAAsADwATAAAzESERAREhEQEhNSEVITUhFSE1IUADgPzAAwD9QAGA/oACgP2AAYD+gAPA/EADgPzAA0D+wEDAQMBAAAUAAAAAA8ADwAADAAcACwAPABMAADMRIREBESERAyEVIRchFSEHIRUhQAOA/MADAMD+gAGAgP2AAoCA/oABgAPA/EADgPzAA0D/AEBAQEBAAAAAAAUAAAAAA8ADwAADAAcACwAPABMAADMRIREBESERAyEVIRUhFSEVIRUhQAOA/MADAED+gAGA/YACgP6AAYADwPxAA4D8wANA/wBAQEBAQAAABQAAAAADwAPAAAMABwALAA8AEwAAMxEhEQERIREBITUhFSE1IRUhNSFAA4D8wAMA/UABgP6AAoD9gAGA/oADwPxAA4D8wANA/gBAwEDAQAAFAAAAAAPAA8AAAwAHAAsADwATAAAzESERAREhEQMhFSEXIRUhByEVIUADgPzAAwDA/oABgID9gAKAgP6AAYADwPxAA4D8wANA/kBAQEBAQAAAAAAFAAAAAAPAA8AAAwAHAAsADwATAAAzESERAREhEQMhFSEVIRUhFSEVIUADgPzAAwBA/oABgP2AAoD+gAGAA8D8QAOA/MADQP5AQEBAQEAAAAYAAAAAA8ADwAADAAcACwAPABMAJwAAExEhEQMhESEBFyM1FTMXIx8BITUDNxchFSEXIRUhFzMVIxczFSMXB0ADgED9AAMA/Yc8Q388u/Y8/s5ALTIB4f5bPAFp/tI88rY7ez9/LQPA/EADwPyAA0D+gEBAgEBAQEACCC01QEBAQEBAQIgtAAAFAAAAAAOAA4AAAwAHAAsADwATAAATESERBSERIRkBIREpAREhNSERIUADQP0AAUD+wAFAAYD+wAFA/sABQAOA/MADQED+wP6AAUD+wAFAQAFAAAALAAAAAAOAA4AAAwAHAAsADwATABcAGwAfACMAJwArAAABIzU7ASMVMzcjFTM1IxUzNSMVMxEjFTM1IxUzNyMVMzcjFTMTESERBSERIQEAQECAQECAQEBAQEBAQEBAQIBAQIBAQID8wAMA/UACwAHAQEBAQMBAwED+QEDAQMBAQEABwPzAA0BA/UAAABUAAAAAA4ADgAADAAcACwAPABMAFwAbAB8AIwAnACsALwAzADcAOwA/AEMARwBLAE8AWwAAEyM1MxUjFTMVIxUzFSMVMxUjFTMBIxUzFSMVMxUjFTMVIxUzASMVMzcjFTMBIxUzNyMVMzcjFTMlIxUzNyMVMzcjFTMBIxUzNyMVMzcjFTMRIREjESEVIREzESGAQEBAQEBAQEBAQAMAQEBAQEBAQED9gEBAgEBA/wBAQIBAQIBAQAEAQECAQECAQED/AEBAgEBAgEBA/oBA/oABgEABgANAQIBAQEDAQEBAAkBAQEDAQEBAAsBAQED9QEBAQEBAQEBAQEBAA0BAQEBAQP7AAYD+gED+gAGAAAAAGwAAAAADgAOAAAMABwALAA8AEwAXABsAHwAjACcAKwAvADMANwA7AD8AQwBHAEsATwBTAFcAWwBfAGMAZwBrAAABFSE1EyMVMxUjNTMVIzUzESM1MxUjNTMBIzUzFSM1MxEjNTMVIzUzASM1MxcjNTMXIzUzFSM1MxUjNTMRIzUzFSM1MxUjNTMhIxU7ASM1MxcjNTMhIxU7ASM1MxcjNTMBIxU7ASM1MxcjNTMDgPzAQEBAQEBAQEBAQEADAEBAQEBAQEBA/YBAQIBAQIBAQEBAQEBAQEBAQED+gEBAgEBAgEBAAQBAQIBAQIBAQP8AQECAQECAQEACAEBAAYBAgEDAQP7AQMBAAcBAwED+wEDAQAJAQEBAQEDAQMBA/sBAwEDAQEBAQEBAQEBAAwBAQEBAAAAbAAAAAAOAA4AAAwAHAAsADwATABcAGwAfACMAJwArAC8AMwA3ADsAPwBDAEcASwBPAFMAVwBbAF8AYwBnAGsAACUjETMFNSMVIzUzFSM1MxUhNTMVIzUzFQE1MxUjNTMVITUzFSM1MxUBNTMVBzUzFQc1MxUjNTMVIzUzFSE1MxUjNTMVIzUzFRE1Ix0BNTMVBzUzFRE1Ix0BNTMVBzUzFQE1Ix0BNTMVBzUzFQIAQEABgECAQMBA/sBAwEABwEDAQP7AQMBAAkBAQEBAQMBAwED+wEDAQMBAQEBAQEBAQEADAEBAQEBAA0BAQEBAQEBAQEBAQP0AQEBAQEBAQEACgEBAgEBAgEBAQEBAQEBAQEBAQAGAQECAQECAQED/AEBAgEBAgEBAAQBAQIBAQIBAQAAAABsAAAAAA4ADgAADAAcACwAPABMAFwAbAB8AIwAnACsALwAzADcAOwA/AEMARwBLAE8AUwBXAFsAXwBjAGcAawAAARUhNRcjFTMVIzUzFSM1MxUjNTMVIzUzASM1MxUjNTMVIzUzFSM1MyUjNTMXIzUzNyM1MxUjNTMVIzUzFSM1MxUjNTMVIzUzISMVOwEjNTMXIzUzISMVOwEjNTMXIzUzASMVOwEjNTM3IzUzA4D8wEBAQEBAQEBAQEBAAwBAQEBAQEBAQP2AQECAQECAQEBAQEBAQEBAQEBA/oBAQIBAQIBAQAEAQECAQECAQED/AEBAgEBAgEBAA4BAQIBAgEDAQMBAwEABQEDAQMBAwEDAQEBAwEDAQMBAwEDAQMBAQEBAQEBAQEABgEBAwEAAAAAbAAAAAAOAA4AAAwAHAAsADwATABcAGwAfACMAJwArAC8AMwA3ADsAPwBDAEcASwBPAFMAVwBbAF8AYwBnAGsAADc1IRUlIxUzNSM1MzUjNTM1IzUzNSM1MwEjNTM1IzUzNSM1MzUjNTMBIzUzFyM1MxMjNTM1IzUzNSM1MzUjNTM1IzUzNSM1MyEjFTsBIzUzFyM1MyEjFTsBIzUzFyM1MwEjFTsBIzUzEyM1M0ADQP0AQEBAQEBAQEBAQAMAQEBAQEBAQED9gEBAgEBAgEBAQEBAQEBAQEBAQP6AQECAQECAQEABAEBAgEBAgEBA/wBAQIBAQIBAQEBAQMBAgEBAQEBAQED+QEBAQEBAQED+wEBAQP7AQEBAQEBAQEBAQEBAQEBAQEBAQP6AQED+wEAAGwAAAAADgAOAAAMABwALAA8AEwAXABsAHwAjACcAKwAvADMANwA7AD8AQwBHAEsATwBTAFcAWwBfAGMAZwBrAAATMxEjEzUjFTM1MxUzNTMVMzUzFTM1MxUBNTMVMzUzFTM1MxUzNTMVATUzFQc1MxUFNTMVMzUzFTM1MxUzNTMVMzUzFTM1MxURNSMdATUzFQc1MxURNSMdATUzFQc1MxUBNSMdATUzFQU1MxVAQEDAQIBAQEBAQEBA/kBAQEBAQEBA/sBAQED+wEBAQEBAQEBAQEBAQEBAQEBAQED+gEBA/sBAA4D8wAMAQEBAQEBAQEBAQP0AQEBAQEBAQEACgEBAgEBAgEBAQEBAQEBAQEBAQAGAQECAQECAQED/AEBAgEBAgEBAAQBAQIBAQIBAQAAAAAAbAAAAAAOAA4AAAwAHAAsADwATABcAGwAfACMAJwArAC8AMwA3ADsAPwBDAEcASwBPAFMAVwBbAF8AYwBnAGsAACUjETMHNSMVIzUzFSM1MxUjNTMVIzUzFQE1MxUjNTMVIzUzFSM1MxUTNTMVBzUzFRc1MxUjNTMVIzUzFSM1MxUjNTMVIzUzFRE1Ix0BNTMVBzUzFRE1Ix0BNTMVBzUzFQE1Ix0BNTMVFzUzFQOAQECAQIBAwEDAQMBAAUBAwEDAQMBAwEBAQMBAwEDAQMBAwEDAQEBAQEBAQEBAAYBAQMBAQANAQEBAQEBAQEBAQED9AEBAQEBAQEBAAoBAQIBAQIBAQEBAQEBAQEBAQEABgEBAgEBAgEBA/wBAQIBAQIBAQAEAQECAQECAQEAAAAAAIQAAAAADgAOAAAMABwALAA8AEwAXABsAHwAjACcAKwAvADMANwA7AD8AQwBHAEsATwBTAFcAWwBfAGMAZwBrAG8AcwB3AHsAfwCDAAABNSMVIzUzFSM1MxUjNTMVIzUzFQE1MxUjNTMVIzUzFSM1MxUTNTMVBzUzFRc1MxUjNTMVIzUzFSM1MxUjNTMVIzUzFRE1Ix0BNTMVBzUzFRE1Ix0BNTMVBzUzFQE1MxURNSMdATUzFQc1MxURNSMdATUzFQc1MxUBNSMdATUzFRc1MxUDAECAQMBAwEDAQAFAQMBAwEDAQMBAQEDAQMBAwEDAQMBAwEBAQEBAQEBAQALAQEBAQEBAQEBA/oBAQMBAA0BAQEBAQEBAQEBA/QBAQEBAQEBAQAKAQECAQECAQEBAQEBAQEBAQEBAAYBAQIBAQIBAQP8AQECAQECAQEABgEBAAYBAQIBAQIBAQP8AQECAQECAQEABAEBAgEBAgEBAAAAHAAAAAAPAA4AACQAPABMAFwAbAB8AJQAANyEVIREhESM1IQEjFTM1IyU1IxUhMzUjBTUjFQMjFTMRATcXAReAAQD+wAOAQP0AAwCAwED9wIABAICAAUBAgICA/wBapgEmWkBAA4D/AMD9AEDAwICAgEBAQAFAgP2AAQBapgEmWgAAAAAGAAAAAAPAA8AAYwBnAGsAbwBzAHcAAAE1IxUjNSMVIzUjFSM1IxUjNSMVIzUjFSMVIxUzFSMVMxUjFTMVIxUzFSMVMxUjFTMVMxUzNTMVMzUzFTM1MxUzNTMVMzUzFTM1MzUzNSM1MzUjNTM1IzUzNSM1MzUjNTM1IzUDIREhEzUzFREjNTMBMxUjExUjNQNAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQED9QALAQEBAQPxAQEBAQAOAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQED9AALA/MBAQAOAQPyAQAPAQEAADgAAAAADwAPAAGMAZwBrAG8AcwB3AHsAfwCDAIcAiwCPAJMAlwAAATUjFSM1IxUjNSMVIzUjFSM1IxUjNSMVIxUjFTMVIxUzFSMVMxUjFTMVIxUzFSMVMxUzFTM1MxUzNTMVMzUzFTM1MxUzNTMVMzUzNTM1IzUzNSM1MzUjNTM1IzUzNSM1MzUjNQMhESETNTMVESM1MwEzFSMTFSM1ASMVMyUhFSEVIRUhFSEVIRUhFSElIxUzNSMVMzUjFTMDQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBA/UACwEBAQED8QEBAQEABgMDAAYD+wAFA/sABQP7AAUD+wAFA/oDAwMDAwMADgEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBA/QACwPzAQEADgED8gEADwEBA/wBAQEBAQEBAQEBAQMBAwEAAAAgAAAAAA8ADwABjAGgAbABwAHYAfACAAIQAAAE1IxUjNSMVIzUjFSM1IxUjNSMVIzUjFSMVIxUzFSMVMxUjFTMVIxUzFSMVMxUjFTMVMxUzNTMVMzUzFTM1MxUzNTMVMzUzFTM1MzUzNSM1MzUjNTM1IzUzNSM1MzUjNTM1IzUDESERISUVIzURMxUjAQcXByc3IRcHJzcnASM1MwM1MxUDQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBA/UACwP0AQEBAAY1yci2goAEAoKAtc3MBjUBAQEADgEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBA/gD/AALAgEBA/IBAAlNzcy2g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Fg7BwAJ+wMEbJSUb/wCBwcGBChIXDQIADRgRCkD+AAIAQCUb/gAbJQFAAYS8vP58AAMAAAAAA8ADgAAFAAsAFgAANyEVIREzAQcVIREJARcFJwcVNxcBFzWAA0D8gEABAMADAP6AAQAc/uTAwMDAAV0jQEADgP5AwIACAP7AAgAc5IDAgMCAASMjgAAAAgAAAAADwAOAAAsADwAAAREjESERIxEjESERASMRMwKAQP7AgEADgP5AwMADAP1AAUD+wANA/IADAP1AAQAAAAMAAAAAA8ADgAALAA8AEwAAAREjESERIxEjESERAREzETM1MxUCgED+wIBAA4D9gMDAwAJA/gACwP1AA0D8gAJA/gABgP6AwMAAAAADAAAAAAPAA4AACwAPABMAAAERIxEhESMRIxEhEQERMxEzETMRAoBA/sCAQAOA/YDAwMADgPzAA0D8wANA/IADgPzAAgD+AAFA/sAABAAAAAADwAOAAAUACQANABEAACUVIREzEQEjETMTESERJSERIQPA/IBAAYDAwED+wALA/sABQEBAA4D8wAKA/kACAP3AAkCA/kAAAAIAAAAAA8ADgAALAA8AADc1IREhNSERIREhNQEVITWAAUD+wALA/QADgP3A/wBAgAFAQAFA/IBAAYDAwAAAAAADAAAAAAPAA4AACwAPABMAADc1IREhNSERIREhNQEzFSMFFSE1gALA/UACAP3AA4D8wMDAAYD+gECAAUBAAUD8gEADAMDAwMAAAAAAAwAAAAADwAOAAAsADwATAAABESERITUhNSERITUFFSE1ESEVIQPA/IADgPzAA0D8wAIA/gABQP7AAkABQPyAQIABQECAwMABgMAAAAQAAAAAA8ADgAAFAAkADQARAAAlFSERMxEBIRUhExEhEQEhESEDwPyAQAKA/kABwED9wALA/kABwEBAA4D8wAGAwAEA/sABQAGA/sAAAAAAAwAAAAADwAOAAAoADgARAAABJwcnByc1IxEhEQUXByclFwcDK7C3REu1QAOA/sCFhY7+joyMAi+x5ERatOb8gAMAgIW7jnKMpwAAAAIAAAAAA8ADgAAHAA8AAAElAREjESERAwkCNQEXNwKA/wD/AEADgED/AP8A/wABDfz3AnWA/wABi/yAA4D+5v6aAQD+zc4BDH7OAAACAAAAAAPAA4AAAwAJAAATESER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AG8AbgBzAFYAZQByAHMAaQBvAG4AIAAxAC4AMABXAGUAYgBDAG8AbQBwAG8AbgBlAG4AdABzAEkAYwBvAG4AcwBHAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAHMAdgBnADIAdAB0AGYAIABmAHIAbwBtACAARgBvAG4AdABlAGwAbABvACAAcAByAG8AagBlAGMAdAAuAGgAdAB0AHAAOgAvAC8AZgBvAG4AdABlAGwAbABvAC4AYwBvAG0AAgAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKIAQIBAwEEAQUBBgEHAQgBCQEKAQsBDAENAQ4BDwEQAREBEgETARQBFQEWARcBGAEZARoBGwEcAR0BHgEfASABIQEiASMBJAElASYBJwEoASkBKgErASwBLQEuAS8BMAExATIBMwE0ATUBNgE3ATgBOQE6ATsBPAE9AT4BPwFAAUEBQgFDAUQBRQFGAUcBSAFJAUoBSwFMAU0BTgFPAVABUQFSAVMBVAFVAVYBVwFYAVkBWgFbAVwBXQFeAV8BYAFhAWIBYwFkAWUBZgFnAWgBaQFqAWsBbAFtAW4BbwFwAXEBcgFzAXQBdQF2AXcBeAF5AXoBewF8AX0BfgF/AYABgQGCAYMBhAGFAYYBhwGIAYkBigGLAYwBjQGOAY8BkAGRAZIBkwGUAZUBlgGXAZgBmQGaAZsBnAGdAZ4BnwGgAaEBogGjAaQBpQGmAacBqAGpAaoBqwGsAa0BrgGvAbABsQGyAbMBtAG1AbYBtwG4AbkBugG7AbwBvQG+Ab8BwAHBAcIBwwHEAcUBxgHHAcgByQHKAcsBzAHNAc4BzwHQAdEB0gHTAdQB1QHWAdcB2AHZAdoB2wHcAd0B3gHfAeAB4QHiAeMB5AHlAeYB5wHoAekB6gHrAewB7QHuAe8B8AHxAfIB8wH0AfUB9gH3AfgB+QH6AfsB/AH9Af4B/wIAAgECAgIDAgQCBQIGAgcCCAIJAgoCCwIMAg0CDgIPAhACEQISAhMCFAIVAhYCFwIYAhkCGgIbAhwCHQIeAh8CIAIhAiICIwIkAiUCJgInAigCKQIqAisCLAItAi4CLwIwAjECMgIzAjQCNQI2AjcCOAI5AjoCOwI8Aj0CPgI/AkACQQJCAkMCRAJFAkYCRwJIAkkCSgJLAkwCTQJOAk8CUAJRAlICUwJUAlUCVgJXAlgCWQJaAlsCXAJdAl4CXwJgAmECYgJjAmQCZQJmAmcCaAJpAmoCawJsAm0CbgJvAnACcQJyAnMCdAJ1AnYCdwJ4AnkCegJ7AnwCfQJ+An8CgAKBAoICgwKEAoUChgKHAogCiQKKAosCjAKNAo4CjwKQApECkgKTApQClQKWApcCmAKZApoCmwKcAp0CngKfAqACoQKiAqMCpAKlAqYCpwKoAqkCqgKrAqwCrQKuAq8CsAKxArICswK0ArUCtgK3ArgCuQK6ArsCvAK9Ar4CvwLAAsECwgLDAsQCxQLGAscCyALJAsoCywLMAs0CzgLPAtAC0QLSAtMC1ALVAtYC1wLYAtkC2gLbAtwC3QLeAt8C4ALhAuIC4wLkAuUC5gLnAugC6QLqAusC7ALtAu4C7wLwAvEC8gLzAvQC9QL2AvcC+AL5AvoC+wL8Av0C/gL/AwADAQMCAwMDBAMFAwYDBwMIAwkDCgMLAwwDDQMOAw8DEAMRAxIDEwMUAxUDFgMXAxgDGQMaAxsDHAMdAx4DHwMgAyEDIgMjAyQDJQMmAycDKAMpAyoDKwMsAy0DLgMvAzADMQMyAzMDNAM1AzYDNwM4AzkDOgM7AzwDPQM+Az8DQANBA0IDQwNEA0UDRgNHA0gDSQNKA0sDTANNA04DTwNQA1EDUgNTA1QDVQNWA1cDWANZA1oDWwNcA10DXgNfA2ADYQNiA2MDZANlA2YDZwNoA2kDagNrA2wDbQNuA28DcANxA3IDcwN0A3UDdgN3A3gDeQN6A3sDfAN9A34DfwOAA4EDggODA4QDhQOGA4cDiAOJAAAIY2FyZXQtdHIIY2FyZXQtYnIIY2FyZXQtYmwIY2FyZXQtdGwMY2FyZXQtYWx0LXVwD2NhcmV0LWFsdC1yaWdodA5jYXJldC1hbHQtZG93bg5jYXJldC1hbHQtbGVmdBBjYXJldC1hbHQtdG8tdG9wEmNhcmV0LWFsdC10by1yaWdodBNjYXJldC1hbHQtdG8tYm90dG9tEWNhcmV0LWFsdC10by1sZWZ0E2NhcmV0LWRvdWJsZS1hbHQtdXAWY2FyZXQtZG91YmxlLWFsdC1yaWdodBVjYXJldC1kb3VibGUtYWx0LWRvd24VY2FyZXQtZG91YmxlLWFsdC1sZWZ0EGNhcmV0LWFsdC1leHBhbmQQYXJyb3dzLW5vLWNoYW5nZRNhcnJvdy1vdmVyZmxvdy1kb3duCmNoZXZyb24tdXANY2hldnJvbi1yaWdodAxjaGV2cm9uLWRvd24MY2hldnJvbi1sZWZ0CGFycm93LXVwC2Fycm93LXJpZ2h0CmFycm93LWRvd24KYXJyb3ctbGVmdApsZXZlbC1kb3duCGxldmVsLXVwDGxldmVsLXRvLXRvcApjb2wtcmVzaXplC2Fycm93cy1heGVzC2Fycm93cy1zd2FwDWRyYWctYW5kLWRyb3AKY2F0ZWdvcml6ZQRncmlkC2dyaWQtbGF5b3V0BWdyb3VwB3VuZ3JvdXALaGFuZGxlLWRyYWcGbGF5b3V0DWxheW91dC0xLWJ5LTQNbGF5b3V0LTItYnktMhNsYXlvdXQtc2lkZS1ieS1zaWRlDmxheW91dC1zdGFja2VkB2NvbHVtbnMEcm93cwdyZW9yZGVyBG1lbnUNbW9yZS12ZXJ0aWNhbA9tb3JlLWhvcml6b250YWwHb3ZlcmxhcARob21lEWFycm93cy1sZWZ0LXJpZ2h0EWFycm93cy10b3AtYm90dG9tGWJvcmRlci1yYWRpdXMtYm90dG9tLWxlZnQaYm9yZGVyLXJhZGl1cy1ib3R0b20tcmlnaHQWYm9yZGVyLXJhZGl1cy10b3AtbGVmdBdib3JkZXItcmFkaXVzLXRvcC1yaWdodA1ib3JkZXItcmFkaXVzE2JvcmRlci1zdHlsZS1ib3R0b20RYm9yZGVyLXN0eWxlLWxlZnQSYm9yZGVyLXN0eWxlLXJpZ2h0EGJvcmRlci1zdHlsZS10b3AMYm9yZGVyLXN0eWxlCmJveC1zaXppbmcTY2hldnJvbi1kb3VibGUtZG93bhNjaGV2cm9uLWRvdWJsZS1sZWZ0FGNoZXZyb24tZG91YmxlLXJpZ2h0EWNoZXZyb24tZG91YmxlLXVwCGRhdGEtb2RzFGRpc3BsYXktSW5saW5lLWJsb2NrDWRpc3BsYXktYmxvY2sMZGlzcGxheS1mbGV4E2Rpc3BsYXktaW5saW5lLWZsZXgOZHJvcGxldC1zbGlkZXILZmlsZS1yZXBvcnQKZ2FwLWNvbHVtbgdnYXAtcm93EWhhbmRsZS1yZXNpemUtYWx0DWhhbmRsZS1yZXNpemUGaW1hZ2VzDGxldHRlci1zcGFjZQtsaW5lLWhlaWdodA5saXN0LWxhdGluLWJpZxBsaXN0LWxhdGluLXNtYWxsDmxpc3Qtcm9tYW4tYmlnEGxpc3Qtcm9tYW4tc21hbGwWbGlzdC11bm9yZGVyZWQtb3V0bGluZRVsaXN0LXVub3JkZXJlZC1zcXVhcmUKbWF4LWhlaWdodAltYXgtd2lkdGgKbWluLWhlaWdodAltaW4td2lkdGgOb3V0bGluZS1vZmZzZXQNb3V0bGluZS13aWR0aA5wYWRkaW5nLWJvdHRvbQxwYWRkaW5nLWxlZnQNcGFkZGluZy1yaWdodAtwYWRkaW5nLXRvcAdwYWRkaW5nD3Bvc2l0aW9uLWJvdHRvbQ1wb3NpdGlvbi1sZWZ0DnBvc2l0aW9uLXJpZ2h0DHBvc2l0aW9uLXRvcBJyZWd1bGFyLWV4cHJlc3Npb24LcmVwbGFjZS1hbGwOcmVwbGFjZS1zaW5nbGUOcmVwb3J0LWVsZW1lbnQTcmlnaHQtZG91YmxlLXF1b3Rlcwp3aG9sZS13b3JkCGRhdGEtc2RzBHVuZG8EcmVkbxBhcnJvdy1yb3RhdGUtY2N3D2Fycm93LXJvdGF0ZS1jdxBhcnJvd3Mtbm8tcmVwZWF0FmFycm93LXJvdGF0ZS1jY3ctc21hbGwVYXJyb3ctcm90YXRlLWN3LXNtYWxsBWNsb2NrCGNhbGVuZGFyBHNhdmUFcHJpbnQGcGVuY2lsBXRyYXNoCXBhcGVyY2xpcA1wYXBlcmNsaXAtYWx0BGxpbmsGdW5saW5rDWxpbmstdmVydGljYWwPdW5saW5rLXZlcnRpY2FsBGxvY2sGdW5sb2NrBmNhbmNlbA5jYW5jZWwtb3V0bGluZQ1jYW5jZWwtY2lyY2xlBWNoZWNrDWNoZWNrLW91dGxpbmUMY2hlY2stY2lyY2xlAXgJeC1vdXRsaW5lCHgtY2lyY2xlBHBsdXMMcGx1cy1vdXRsaW5lC3BsdXMtY2lyY2xlBW1pbnVzDW1pbnVzLW91dGxpbmUMbWludXMtY2lyY2xlCHNvcnQtYXNjCXNvcnQtZGVzYwpzb3J0LWNsZWFyDnNvcnQtYXNjLXNtYWxsD3NvcnQtZGVzYy1zbWFsbAZmaWx0ZXIMZmlsdGVyLWNsZWFyDGZpbHRlci1zbWFsbBVmaWx0ZXItc29ydC1hc2Mtc21hbGwWZmlsdGVyLXNvcnQtZGVzYy1zbWFsbBVmaWx0ZXItYWRkLWV4cHJlc3Npb24QZmlsdGVyLWFkZC1ncm91cAVsb2dpbgZsb2dvdXQIZG93bmxvYWQGdXBsb2FkDmh5cGVybGluay1vcGVuEWh5cGVybGluay1vcGVuLXNtBmxhdW5jaAZ3aW5kb3cOd2luZG93LXJlc3RvcmUPd2luZG93LW1pbmltaXplBGdlYXIFZ2VhcnMGd3JlbmNoA2V5ZQZzZWFyY2gHem9vbS1pbgh6b29tLW91dAthcnJvd3MtbW92ZQpjYWxjdWxhdG9yBGNhcnQJY29ubmVjdG9yB3BsdXMtc20IbWludXMtc20Pa3BpLXN0YXR1cy1kZW55D2twaS1zdGF0dXMtaG9sZA9rcGktc3RhdHVzLW9wZW4FZXF1YWwJbm90LWVxdWFsDWxlc3Mtb3ItZXF1YWwQZ3JlYXRlci1vci1lcXVhbAZkaXZpZGUNYWNjZXNzaWJpbGl0eQ9iYXJjb2RlLW91dGxpbmUHYmFyY29kZQ9iYXJjb2RlLXNjYW5uZXIPcXItY29kZS1vdXRsaW5lB3FyLWNvZGUPcXItY29kZS1zY2FubmVyF2JhcmNvZGUtcXItY29kZS1zY2FubmVyCXNpZ25hdHVyZQRoYW5kB3BvaW50ZXIFc3RpY2sHdW5zdGljaxNzZXQtY29sdW1uLXBvc2l0aW9uEmNsb2NrLWFycm93LXJvdGF0ZQRwbGF5BXBhdXNlBHN0b3AGcmV3aW5kB2ZvcndhcmQLdm9sdW1lLWRvd24Jdm9sdW1lLXVwC3ZvbHVtZS1tdXRlAmhkD2Nsb3NlZC1jYXB0aW9ucwhwbGF5bGlzdAttdXNpYy1ub3RlcwdwbGF5LXNtCHBhdXNlLXNtB3N0b3Atc20NaGVhcnQtb3V0bGluZQVoZWFydAxzdGFyLW91dGxpbmUEc3RhcghjaGVja2JveBBjaGVja2JveC1jaGVja2VkFmNoZWNrYm94LWluZGV0ZXJtaW5hdGUNY2hlY2tib3gtbnVsbAZjaXJjbGULcmFkaW9idXR0b24TcmFkaW9idXR0b24tY2hlY2tlZARiZWxsC2luZm8tY2lyY2xlD3F1ZXN0aW9uLWNpcmNsZRJleGNsYW1hdGlvbi1jaXJjbGUGY2FtZXJhBWltYWdlDGltYWdlLWV4cG9ydBB6b29tLWFjdHVhbC1zaXplDXpvb20tYmVzdC1maXQMaW1hZ2UtcmVzaXplBGNyb3AGbWlycm9yD2ZsaXAtaG9yaXpvbnRhbA1mbGlwLXZlcnRpY2FsBnJvdGF0ZQxyb3RhdGUtcmlnaHQLcm90YXRlLWxlZnQFYnJ1c2gHcGFsZXR0ZQdkcm9wbGV0CnNoYXBlLWxpbmUTYnJpZ2h0bmVzcy1jb250cmFzdAdzbGlkZXJzDWludmVydC1jb2xvcnMMdHJhbnNwYXJlbmN5CWdyYXlzY2FsZQRibHVyB3NoYXJwZW4Gc2hhcGVzDXJvdW5kLWNvcm5lcnMOYnJpbmctdG8tZnJvbnQNYnJpbmctdG8tYmFjaw1icmluZy1mb3J3YXJkDmJyaW5nLWJhY2t3YXJkEGFsaWduLXNlbGYtc3RhcnQRYWxpZ24tc2VsZi1jZW50ZXIOYWxpZ24tc2VsZi1lbmQUYWxpZ24tc2VsZi1zdGFydC1hbHQVYWxpZ24tc2VsZi1jZW50ZXItYWx0EmFsaWduLXNlbGYtZW5kLWFsdA10aHVtYm5haWxzLXVwEHRodW1ibmFpbHMtcmlnaHQPdGh1bWJuYWlscy1kb3duD3RodW1ibmFpbHMtbGVmdApmdWxsc2NyZWVuD2Z1bGxzY3JlZW4tZXhpdA1kcm9wbGV0LXNsYXNoBnBob3Rvcw1hbGlnbi10by1ncmlkDHNpemUtdG8tZ3JpZA5tYWtlLXNhbWUtc2l6ZQ9tYWtlLXNhbWUtd2lkdGgQbWFrZS1zYW1lLWhlaWdodB1tYWtlLWhvcml6b250YWwtc3BhY2luZy1lcXVhbBtpbmNyZWFzZS1ob3Jpem9udGFsLXNwYWNpbmcbZGVjcmVhc2UtaG9yaXpvbnRhbC1zcGFjaW5nGXJlbW92ZS1ob3Jpem9udGFsLXNwYWNpbmcbbWFrZS12ZXJ0aWNhbC1zcGFjaW5nLWVxdWFsGWluY3JlYXNlLXZlcnRpY2FsLXNwYWNpbmcZZGVjcmVhc2UtdmVydGljYWwtc3BhY2luZxdyZW1vdmUtdmVydGljYWwtc3BhY2luZwpleWVkcm9wcGVyCXNuYXAtZ3JpZBFzbmFwLXRvLWdyaWRsaW5lcxFzbmFwLXRvLXNuYXBsaW5lcwpkaW1lbnNpb25zEmFsaWduLXNlbGYtc3RyZXRjaBZhbGlnbi1zZWxmLXN0cmV0Y2gtYWx0EWFsaWduLWl0ZW1zLXN0YXJ0EmFsaWduLWl0ZW1zLWNlbnRlcg9hbGlnbi1pdGVtcy1lbmQTYWxpZ24taXRlbXMtc3RyZXRjaBRhbGlnbi1pdGVtcy1iYXNlbGluZRVhbGlnbi1pdGVtcy1zdGFydC1hbHQWYWxpZ24taXRlbXMtY2VudGVyLWFsdBNhbGlnbi1pdGVtcy1lbmQtYWx0F2FsaWduLWl0ZW1zLXN0cmV0Y2gtYWx0GGFsaWduLWl0ZW1zLWJhc2VsaW5lLWFsdBVqdXN0aWZ5LWNvbnRlbnQtc3RhcnQWanVzdGlmeS1jb250ZW50LWNlbnRlchNqdXN0aWZ5LWNvbnRlbnQtZW5kF2p1c3RpZnktY29udGVudC1iZXR3ZWVuFmp1c3RpZnktY29udGVudC1hcm91bmQZanVzdGlmeS1jb250ZW50LXN0YXJ0LWFsdBpqdXN0aWZ5LWNvbnRlbnQtY2VudGVyLWFsdBdqdXN0aWZ5LWNvbnRlbnQtZW5kLWFsdBtqdXN0aWZ5LWNvbnRlbnQtYmV0d2Vlbi1hbHQaanVzdGlmeS1jb250ZW50LWFyb3VuZC1hbHQLZmlsZS13cmVuY2gEYm9sZAZpdGFsaWMJdW5kZXJsaW5lC2ZvbnQtZmFtaWx5EGZvcmVncm91bmQtY29sb3IRY29udmVydC1sb3dlcmNhc2URY29udmVydC11cHBlcmNhc2UNc3RyaWtldGhyb3VnaAlzdWJzY3JpcHQJc3Vwc2NyaXB0A2RpdgNhbGwCaDECaDICaDMCaDQCaDUCaDYMbGlzdC1vcmRlcmVkDmxpc3QtdW5vcmRlcmVkBmluZGVudAdvdXRkZW50Cmluc2VydC10b3ANaW5zZXJ0LW1pZGRsZQ1pbnNlcnQtYm90dG9tCWFsaWduLXRvcAxhbGlnbi1taWRkbGUMYWxpZ24tYm90dG9tCmFsaWduLWxlZnQMYWxpZ24tY2VudGVyC2FsaWduLXJpZ2h0DWFsaWduLWp1c3RpZnkMYWxpZ24tcmVtb3ZlCXRleHQtd3JhcA9ob3Jpem9udGFsLXJ1bGUUdGFibGUtYWxpZ24tdG9wLWxlZnQWdGFibGUtYWxpZ24tdG9wLWNlbnRlchV0YWJsZS1hbGlnbi10b3AtcmlnaHQXdGFibGUtYWxpZ24tbWlkZGxlLWxlZnQZdGFibGUtYWxpZ24tbWlkZGxlLWNlbnRlchh0YWJsZS1hbGlnbi1taWRkbGUtcmlnaHQXdGFibGUtYWxpZ24tYm90dG9tLWxlZnQZdGFibGUtYWxpZ24tYm90dG9tLWNlbnRlchh0YWJsZS1hbGlnbi1ib3R0b20tcmlnaHQSdGFibGUtYWxpZ24tcmVtb3ZlC2JvcmRlcnMtYWxsD2JvcmRlcnMtb3V0c2lkZQ5ib3JkZXJzLWluc2lkZRlib3JkZXJzLWluc2lkZS1ob3Jpem9udGFsF2JvcmRlcnMtaW5zaWRlLXZlcnRpY2FsCmJvcmRlci10b3ANYm9yZGVyLWJvdHRvbQtib3JkZXItbGVmdAxib3JkZXItcmlnaHQMYm9yZGVycy1ub25lEWJvcmRlcnMtc2hvdy1oaWRlBGZvcm0MZm9ybS1lbGVtZW50DGNvZGUtc25pcHBldApzZWxlY3QtYWxsBmJ1dHRvbgpzZWxlY3QtYm94DWNhbGVuZGFyLWRhdGUJZ3JvdXAtYm94CHRleHRhcmVhB3RleHRib3gOdGV4dGJveC1oaWRkZW4IcGFzc3dvcmQNcGFyYWdyYXBoLWFkZAplZGl0LXRvb2xzEHRlbXBsYXRlLW1hbmFnZXIPY2hhbmdlLW1hbnVhbGx5DXRyYWNrLWNoYW5nZXMUdHJhY2stY2hhbmdlcy1lbmFibGUUdHJhY2stY2hhbmdlcy1hY2NlcHQYdHJhY2stY2hhbmdlcy1hY2NlcHQtYWxsFHRyYWNrLWNoYW5nZXMtcmVqZWN0GHRyYWNrLWNoYW5nZXMtcmVqZWN0LWFsbBBkb2N1bWVudC1tYW5hZ2VyC2N1c3RvbS1pY29uBGJvb2sJaW1hZ2UtYWRkCmltYWdlLWVkaXQQaW1hZ2UtbWFwLWVkaXRvcgdjb21tZW50DmNvbW1lbnQtcmVtb3ZlD2NvbW1lbnRzLXJlbW92ZQtzaWx2ZXJsaWdodA1tZWRpYS1tYW5hZ2VyDnZpZGVvLWV4dGVybmFsDWZsYXNoLW1hbmFnZXIKYmlub2N1bGFycwRjb3B5A2N1dAljbGlwYm9hcmQOY2xpcGJvYXJkLWNvZGUOY2xpcGJvYXJkLXdvcmQSY2xpcGJvYXJkLXdvcmQtYWx0DmNsaXBib2FyZC1odG1sEmNsaXBib2FyZC1tYXJrZG93bg5jbGlwYm9hcmQtdGV4dAxhcHBseS1mb3JtYXQJY2xlYXItY3NzC2NvcHktZm9ybWF0FHN0cmlwLWFsbC1mb3JtYXR0aW5nEHN0cmlwLWNzcy1mb3JtYXQTc3RyaXAtZm9udC1lbGVtZW50cxNzdHJpcC1zcGFuLWVsZW1lbnRzFXN0cmlwLXdvcmQtZm9ybWF0dGluZxFmb3JtYXQtY29kZS1ibG9jaw9idWlsZGluZy1ibG9ja3MMcHV6emxlLXBpZWNlCGxpbmstYWRkCmdsb2JlLWxpbmsMZ2xvYmUtdW5saW5rDGVudmVsb3AtbGluawZhbmNob3IJdGFibGUtYWRkBXRhYmxlEHRhYmxlLXByb3BlcnRpZXMKdGFibGUtY2VsbBV0YWJsZS1jZWxsLXByb3BlcnRpZXMYdGFibGUtY29sdW1uLWluc2VydC1sZWZ0GXRhYmxlLWNvbHVtbi1pbnNlcnQtcmlnaHQWdGFibGUtcm93LWluc2VydC1hYm92ZRZ0YWJsZS1yb3ctaW5zZXJ0LWJlbG93E3RhYmxlLWNvbHVtbi1kZWxldGUQdGFibGUtcm93LWRlbGV0ZRF0YWJsZS1jZWxsLWRlbGV0ZQx0YWJsZS1kZWxldGULY2VsbHMtbWVyZ2UYY2VsbHMtbWVyZ2UtaG9yaXpvbnRhbGx5FmNlbGxzLW1lcmdlLXZlcnRpY2FsbHkXY2VsbC1zcGxpdC1ob3Jpem9udGFsbHkVY2VsbC1zcGxpdC12ZXJ0aWNhbGx5DXRhYmxlLXVubWVyZ2ULcGFuZS1mcmVlemUKcm93LWZyZWV6ZQ1jb2x1bW4tZnJlZXplDXRvb2xiYXItZmxvYXQNc3BlbGwtY2hlY2tlchB2YWxpZGF0aW9uLXhodG1sD3ZhbGlkYXRpb24tZGF0YRd0b2dnbGUtZnVsbC1zY3JlZW4tbW9kZQpmb3JtdWxhLWZ4A3N1bQZzeW1ib2wGZG9sbGFyB3BlcmNlbnQNY3VzdG9tLWZvcm1hdBBkZWNpbWFsLWluY3JlYXNlEGRlY2ltYWwtZGVjcmVhc2UJZm9udC1zaXplF2ltYWdlLWFic29sdXRlLXBvc2l0aW9uDHRhYmxlLXdpemFyZAhjcm9zc3RhYg9jcm9zc3RhYi13aXphcmQKdGFibGUtYm9keRN0YWJsZS1jb2x1bW4tZ3JvdXBzDHRhYmxlLWNvcm5lchB0YWJsZS1yb3ctZ3JvdXBzDWdsb2JlLW91dGxpbmUFZ2xvYmUKbWFwLW1hcmtlchFtYXAtbWFya2VyLXRhcmdldANwaW4FdW5waW4Fc2hhcmUEdXNlcgVpbmJveAdibG9nZ2VyC2Jsb2dnZXItYm94CWRlbGljaW91cw1kZWxpY2lvdXMtYm94BGRpZ2cIZGlnZy1ib3gHZW52ZWxvcAtlbnZlbG9wLWJveAhmYWNlYm9vawxmYWNlYm9vay1ib3gGZ29vZ2xlCmdvb2dsZS1ib3gLZ29vZ2xlLXBsdXMPZ29vZ2xlLXBsdXMtYm94CGxpbmtlZGluDGxpbmtlZGluLWJveAdteXNwYWNlC215c3BhY2UtYm94CXBpbnRlcmVzdA1waW50ZXJlc3QtYm94BnJlZGRpdApyZWRkaXQtYm94DHN0dW1ibGUtdXBvbhBzdHVtYmxlLXVwb24tYm94DXRlbGwtYS1mcmllbmQRdGVsbC1hLWZyaWVuZC1ib3gGdHVtYmxyCnR1bWJsci1ib3gHdHdpdHRlcgt0d2l0dGVyLWJveAZ5YW1tZXIKeWFtbWVyLWJveAdiZWhhbmNlC2JlaGFuY2UtYm94CGRyaWJiYmxlDGRyaWJiYmxlLWJveANyc3MHcnNzLWJveAV2aW1lbwl2aW1lby1ib3gHeW91dHViZQt5b3V0dWJlLWJveAZmb2xkZXILZm9sZGVyLW9wZW4KZm9sZGVyLWFkZAlmb2xkZXItdXALZm9sZGVyLW1vcmUQYWdncmVnYXRlLWZpZWxkcwRmaWxlCGZpbGUtYWRkCGZpbGUtdHh0CGZpbGUtY3N2CmZpbGUtZXhjZWwJZmlsZS13b3JkCGZpbGUtbWRiCGZpbGUtcHB0CGZpbGUtcGRmCGZpbGUtcHNkCmZpbGUtZmxhc2gLZmlsZS1jb25maWcJZmlsZS1hc2N4CGZpbGUtYmFjCGZpbGUtemlwBGZpbG0EY3NzMwVodG1sNQRjb2RlA2NzcwJqcwNleGUGY3Nwcm9qBnZicHJvagJjcwJ2YgNzbG4FY2xvdWQPZmlsZS1ob3Jpem9udGFsCXN1YnJlcG9ydARkYXRhC2ZpbGUtaGVhZGVyC2ZpbGUtZm9vdGVyFGdyb3VwLWhlYWRlci1zZWN0aW9uFGdyb3VwLWZvb3Rlci1zZWN0aW9uE3BhZ2UtaGVhZGVyLXNlY3Rpb24TcGFnZS1mb290ZXItc2VjdGlvbg5kZXRhaWwtc2VjdGlvbgt0b2Mtc2VjdGlvbg1ncm91cC1zZWN0aW9uCnBhcmFtZXRlcnMIZGF0YS1jc3YJZGF0YS1qc29uCGRhdGEtc3FsCGRhdGEtd2ViEGdyb3VwLWNvbGxlY3Rpb24RcGFyYW1ldGVyLWJvb2xlYW4TcGFyYW1ldGVyLWRhdGUtdGltZQ9wYXJhbWV0ZXItZmxvYXQRcGFyYW1ldGVyLWludGVnZXIQcGFyYW1ldGVyLXN0cmluZxF0b2Mtc2VjdGlvbi1sZXZlbAlpbmhlcml0ZWQKZmlsZS12aWRlbwpmaWxlLWF1ZGlvCmZpbGUtaW1hZ2URZmlsZS1wcmVzZW50YXRpb24JZmlsZS1kYXRhD2ZpbGUtZGlzYy1pbWFnZRBmaWxlLXByb2dyYW1taW5nFXBhcmFtZXRlcnMtYnl0ZS1hcnJheRJwYXJhbWV0ZXJzLXVua25vd24KZmlsZS1lcnJvcgtmaWxlcy1lcnJvcglkYXRhLXJlc3QPZmlsZS10eXBlc2NyaXB0FHRhYmxlLXBvc2l0aW9uLXN0YXJ0FXRhYmxlLXBvc2l0aW9uLWNlbnRlchJ0YWJsZS1wb3NpdGlvbi1lbmQQbGlzdC1yb21hbi11cHBlchBsaXN0LXJvbWFuLWxvd2VyBmltcG9ydAZleHBvcnQFZ3JhcGgWY2hhcnQtY29sdW1uLWNsdXN0ZXJlZBRjaGFydC1jb2x1bW4tc3RhY2tlZBdjaGFydC1jb2x1bW4tc3RhY2tlZDEwMBJjaGFydC1jb2x1bW4tcmFuZ2UTY2hhcnQtYmFyLWNsdXN0ZXJlZBFjaGFydC1iYXItc3RhY2tlZBRjaGFydC1iYXItc3RhY2tlZDEwMA9jaGFydC1iYXItcmFuZ2UUY2hhcnQtYXJlYS1jbHVzdGVyZWQSY2hhcnQtYXJlYS1zdGFja2VkFWNoYXJ0LWFyZWEtc3RhY2tlZDEwMBBjaGFydC1hcmVhLXJhbmdlCmNoYXJ0LWxpbmUSY2hhcnQtbGluZS1zdGFja2VkFWNoYXJ0LWxpbmUtc3RhY2tlZDEwMBJjaGFydC1saW5lLW1hcmtlcnMaY2hhcnQtbGluZS1zdGFja2VkLW1hcmtlcnMdY2hhcnQtbGluZS1zdGFja2VkMTAwLW1hcmtlcnMJY2hhcnQtcGllDmNoYXJ0LWRvdWdobnV0DWNoYXJ0LXNjYXR0ZXIiY2hhcnQtc2NhdHRlci1zbW9vdGgtbGluZXMtbWFya2VycxpjaGFydC1zY2F0dGVyLXNtb290aC1saW5lcyRjaGFydC1zY2F0dGVyLXN0cmFpZ2h0LWxpbmVzLW1hcmtlcnMcY2hhcnQtc2NhdHRlci1zdHJhaWdodC1saW5lcwxjaGFydC1idWJibGURY2hhcnQtY2FuZGxlc3RpY2sKY2hhcnQtb2hsYwtjaGFydC1yYWRhchNjaGFydC1yYWRhci1tYXJrZXJzEmNoYXJ0LXJhZGFyLWZpbGxlZApjaGFydC1yb3NlEGNoYXJ0LWNob3JvcGxldGgAAA==") format("truetype");
}

.k-icon {
    width: 1em;
    height: 1em;
    outline: 0;
    font-size: 16px;
    font-family: "WebComponentsIcons";
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    speak: none;
    text-transform: none;
    text-decoration: none;
    flex-shrink: 0;
    display: inline-flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    position: relative;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

    .k-icon:hover, .k-icon:focus {
        text-decoration: none;
    }

.k-svg-icon {
    width: 16px;
    height: 16px;
    outline: 0;
    line-height: 1;
    display: inline-flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    position: relative;
}

    .k-svg-icon > svg {
        fill: currentColor;
        flex: 1 1 auto;
    }

.k-i-none::before {
    display: none !important;
}

.k-icon-xs {
    font-size: 12px;
}

    .k-icon-xs.k-svg-icon {
        width: 12px;
        height: 12px;
    }

.k-icon-sm {
    font-size: 14px;
}

    .k-icon-sm.k-svg-icon {
        width: 14px;
        height: 14px;
    }

.k-icon-md {
    font-size: 16px;
}

    .k-icon-md.k-svg-icon {
        width: 16px;
        height: 16px;
    }

.k-icon-lg {
    font-size: 20px;
}

    .k-icon-lg.k-svg-icon {
        width: 20px;
        height: 20px;
    }

.k-icon-xl {
    font-size: 24px;
}

    .k-icon-xl.k-svg-icon {
        width: 24px;
        height: 24px;
    }

.k-icon-xxl {
    font-size: 32px;
}

    .k-icon-xxl.k-svg-icon {
        width: 32px;
        height: 32px;
    }

.k-icon-xxxl {
    font-size: 48px;
}

    .k-icon-xxxl.k-svg-icon {
        width: 48px;
        height: 48px;
    }

.k-flip-h.k-svg-icon, .k-svg-icon.k-flip-x, .k-flip-v.k-svg-icon, .k-svg-icon.k-flip-y, .k-flip-h.k-flip-v.k-svg-icon, .k-flip-v.k-svg-icon.k-flip-x, .k-svg-icon.k-flip-x.k-flip-y, .k-flip-h.k-svg-icon.k-flip-y {
    transform: none;
}

.k-flip-h, .k-flip-x {
    transform: scaleX(-1);
}

    .k-flip-h > svg, .k-flip-x > svg {
        transform: scaleX(-1);
    }

.k-flip-v, .k-flip-y {
    transform: scaleY(-1);
}

    .k-flip-v > svg, .k-flip-y > svg {
        transform: scaleY(-1);
    }

    .k-flip-h.k-flip-v, .k-flip-v.k-flip-x, .k-flip-x.k-flip-y, .k-flip-h.k-flip-y, .k-flip-both {
        transform: scale(-1, -1);
    }

        .k-flip-h.k-flip-v > svg, .k-flip-v.k-flip-x > svg, .k-flip-x.k-flip-y > svg, .k-flip-h.k-flip-y > svg, .k-flip-both > svg {
            transform: scale(-1, -1);
        }

.k-rotate-0 {
    transform: rotate(0deg);
}

    .k-rotate-0.k-svg-icon {
        transform: none;
    }

    .k-rotate-0 > svg {
        transform: rotate(0deg);
    }

.k-rotate-45 {
    transform: rotate(45deg);
}

    .k-rotate-45.k-svg-icon {
        transform: none;
    }

    .k-rotate-45 > svg {
        transform: rotate(45deg);
    }

.k-rotate-90 {
    transform: rotate(90deg);
}

    .k-rotate-90.k-svg-icon {
        transform: none;
    }

    .k-rotate-90 > svg {
        transform: rotate(90deg);
    }

.k-rotate-135 {
    transform: rotate(135deg);
}

    .k-rotate-135.k-svg-icon {
        transform: none;
    }

    .k-rotate-135 > svg {
        transform: rotate(135deg);
    }

.k-rotate-180 {
    transform: rotate(180deg);
}

    .k-rotate-180.k-svg-icon {
        transform: none;
    }

    .k-rotate-180 > svg {
        transform: rotate(180deg);
    }

.k-rotate-225 {
    transform: rotate(225deg);
}

    .k-rotate-225.k-svg-icon {
        transform: none;
    }

    .k-rotate-225 > svg {
        transform: rotate(225deg);
    }

.k-rotate-270 {
    transform: rotate(270deg);
}

    .k-rotate-270.k-svg-icon {
        transform: none;
    }

    .k-rotate-270 > svg {
        transform: rotate(270deg);
    }

.k-rotate-315 {
    transform: rotate(315deg);
}

    .k-rotate-315.k-svg-icon {
        transform: none;
    }

    .k-rotate-315 > svg {
        transform: rotate(315deg);
    }

.k-i-caret-tr::before {
    content: "\e000"
}

.k-i-arrow-45-up-right::before {
    content: "\e000"
}

.k-i-collapse-ne::before {
    content: "\e000"
}

.k-i-resize-ne::before {
    content: "\e000"
}

.k-i-caret-br::before {
    content: "\e001"
}

.k-i-arrow-45-down-right::before {
    content: "\e001"
}

.k-i-collapse-se::before {
    content: "\e001"
}

.k-i-resize-se::before {
    content: "\e001"
}

.k-i-caret-bl::before {
    content: "\e002"
}

.k-i-arrow-45-down-left::before {
    content: "\e002"
}

.k-i-collapse-sw::before {
    content: "\e002"
}

.k-i-resize-sw::before {
    content: "\e002"
}

.k-i-caret-tl::before {
    content: "\e003"
}

.k-i-arrow-45-up-left::before {
    content: "\e003"
}

.k-i-collapse-nw::before {
    content: "\e003"
}

.k-i-resize-nw::before {
    content: "\e003"
}

.k-i-caret-alt-up::before {
    content: "\e004"
}

.k-i-arrow-60-up::before {
    content: "\e004"
}

.k-i-arrow-n::before {
    content: "\e004"
}

.k-i-kpi-trend-increase::before {
    content: "\e004"
}

.k-i-expand-n::before {
    content: "\e004"
}

.k-i-sarrow-n::before {
    content: "\e004"
}

.k-i-caret-alt-right::before {
    content: "\e005"
}

.k-i-arrow-60-right::before {
    content: "\e005"
}

.k-i-arrow-e::before {
    content: "\e005"
}

.k-i-expand::before {
    content: "\e005"
}

.k-i-expand-e::before {
    content: "\e005"
}

.k-i-sarrow-e::before {
    content: "\e005"
}

.k-i-caret-alt-down::before {
    content: "\e006"
}

.k-i-arrow-60-down::before {
    content: "\e006"
}

.k-i-arrow-s::before {
    content: "\e006"
}

.k-i-kpi-trend-decrease::before {
    content: "\e006"
}

.k-i-expand-s::before {
    content: "\e006"
}

.k-i-collapse::before {
    content: "\e006"
}

.k-i-sarrow-s::before {
    content: "\e006"
}

.k-i-caret-alt-left::before {
    content: "\e007"
}

.k-i-arrow-60-left::before {
    content: "\e007"
}

.k-i-arrow-w::before {
    content: "\e007"
}

.k-i-expand-w::before {
    content: "\e007"
}

.k-i-sarrow-w::before {
    content: "\e007"
}

.k-i-caret-alt-to-top::before {
    content: "\e008"
}

.k-i-arrow-end-up::before {
    content: "\e008"
}

.k-i-seek-n::before {
    content: "\e008"
}

.k-i-caret-alt-to-right::before {
    content: "\e009"
}

.k-i-arrow-end-right::before {
    content: "\e009"
}

.k-i-seek-e::before {
    content: "\e009"
}

.k-i-caret-alt-to-bottom::before {
    content: "\e00a"
}

.k-i-arrow-end-down::before {
    content: "\e00a"
}

.k-i-seek-s::before {
    content: "\e00a"
}

.k-i-caret-alt-to-left::before {
    content: "\e00b"
}

.k-i-arrow-end-left::before {
    content: "\e00b"
}

.k-i-seek-w::before {
    content: "\e00b"
}

.k-i-caret-double-alt-up::before {
    content: "\e00c"
}

.k-i-arrow-double-60-up::before {
    content: "\e00c"
}

.k-i-arrow-seek-up::before {
    content: "\e00c"
}

.k-i-caret-double-alt-right::before {
    content: "\e00d"
}

.k-i-arrow-double-60-right::before {
    content: "\e00d"
}

.k-i-arrow-seek-right::before {
    content: "\e00d"
}

.k-i-forward-sm::before {
    content: "\e00d"
}

.k-i-caret-double-alt-down::before {
    content: "\e00e"
}

.k-i-arrow-double-60-down::before {
    content: "\e00e"
}

.k-i-arrow-seek-down::before {
    content: "\e00e"
}

.k-i-caret-double-alt-left::before {
    content: "\e00f"
}

.k-i-arrow-double-60-left::before {
    content: "\e00f"
}

.k-i-arrow-seek-left::before {
    content: "\e00f"
}

.k-i-rewind-sm::before {
    content: "\e00f"
}

.k-i-caret-alt-expand::before {
    content: "\e010"
}

.k-i-arrows-kpi::before {
    content: "\e010"
}

.k-i-kpi::before {
    content: "\e010"
}

.k-i-caret-alt-sort::before {
    content: "\e010"
}

.k-i-arrows-no-change::before {
    content: "\e011"
}

.k-i-arrow-overflow-down::before {
    content: "\e012"
}

.k-i-chevron-up::before {
    content: "\e013"
}

.k-i-arrow-chevron-up::before {
    content: "\e013"
}

.k-i-arrowhead-n::before {
    content: "\e013"
}

.k-i-chevron-right::before {
    content: "\e014"
}

.k-i-arrow-chevron-right::before {
    content: "\e014"
}

.k-i-arrowhead-e::before {
    content: "\e014"
}

.k-i-chevron-down::before {
    content: "\e015"
}

.k-i-arrow-chevron-down::before {
    content: "\e015"
}

.k-i-arrowhead-s::before {
    content: "\e015"
}

.k-i-chevron-left::before {
    content: "\e016"
}

.k-i-arrow-chevron-left::before {
    content: "\e016"
}

.k-i-arrowhead-w::before {
    content: "\e016"
}

.k-i-arrow-up::before {
    content: "\e017"
}

.k-i-arrow-right::before {
    content: "\e018"
}

.k-i-arrow-down::before {
    content: "\e019"
}

.k-i-arrow-left::before {
    content: "\e01a"
}

.k-i-level-down::before {
    content: "\e01b"
}

.k-i-arrow-drill::before {
    content: "\e01b"
}

.k-i-level-up::before {
    content: "\e01c"
}

.k-i-arrow-parent::before {
    content: "\e01c"
}

.k-i-level-to-top::before {
    content: "\e01d"
}

.k-i-arrow-root::before {
    content: "\e01d"
}

.k-i-level-root::before {
    content: "\e01d"
}

.k-i-col-resize::before {
    content: "\e01e"
}

.k-i-arrows-resizing::before {
    content: "\e01e"
}

.k-i-arrows-axes::before {
    content: "\e01f"
}

.k-i-arrows-dimensions::before {
    content: "\e01f"
}

.k-i-dimension::before {
    content: "\e01f"
}

.k-i-arrows-swap::before {
    content: "\e020"
}

.k-i-drag-and-drop::before {
    content: "\e021"
}

.k-i-categorize::before {
    content: "\e022"
}

.k-i-grid::before {
    content: "\e023"
}

.k-i-grid-layout::before {
    content: "\e024"
}

.k-i-group::before {
    content: "\e025"
}

.k-i-ungroup::before {
    content: "\e026"
}

.k-i-handle-drag::before {
    content: "\e027"
}

.k-i-handler-drag::before {
    content: "\e027"
}

.k-i-layout::before {
    content: "\e028"
}

.k-i-layout-1-by-4::before {
    content: "\e029"
}

.k-i-layout-2-by-2::before {
    content: "\e02a"
}

.k-i-page-layout::before {
    content: "\e02a"
}

.k-i-layout-side-by-side::before {
    content: "\e02b"
}

.k-i-layout-stacked::before {
    content: "\e02c"
}

.k-i-columns::before {
    content: "\e02d"
}

.k-i-rows::before {
    content: "\e02e"
}

.k-i-reorder::before {
    content: "\e02f"
}

.k-i-menu::before {
    content: "\e030"
}

.k-i-hamburger::before {
    content: "\e030"
}

.k-i-more-vertical::before {
    content: "\e031"
}

.k-i-more-v::before {
    content: "\e031"
}

.k-i-vbars::before {
    content: "\e031"
}

.k-i-more-horizontal::before {
    content: "\e032"
}

.k-i-more-h::before {
    content: "\e032"
}

.k-i-hbars::before {
    content: "\e032"
}

.k-i-overlap::before {
    content: "\e033"
}

.k-i-home::before {
    content: "\e034"
}

.k-i-root::before {
    content: "\e034"
}

.k-i-arrows-left-right::before {
    content: "\e035"
}

.k-i-arrows-top-bottom::before {
    content: "\e036"
}

.k-i-border-radius-bottom-left::before {
    content: "\e037"
}

.k-i-border-radius-bottom-right::before {
    content: "\e038"
}

.k-i-border-radius-top-left::before {
    content: "\e039"
}

.k-i-border-radius-top-right::before {
    content: "\e03a"
}

.k-i-border-radius::before {
    content: "\e03b"
}

.k-i-border-style-bottom::before {
    content: "\e03c"
}

.k-i-border-style-left::before {
    content: "\e03d"
}

.k-i-border-style-right::before {
    content: "\e03e"
}

.k-i-border-style-top::before {
    content: "\e03f"
}

.k-i-border-style::before {
    content: "\e040"
}

.k-i-box-sizing::before {
    content: "\e041"
}

.k-i-chevron-double-down::before {
    content: "\e042"
}

.k-i-chevron-double-left::before {
    content: "\e043"
}

.k-i-chevron-double-right::before {
    content: "\e044"
}

.k-i-chevron-double-up::before {
    content: "\e045"
}

.k-i-data-ods::before {
    content: "\e046"
}

.k-i-display-Inline-block::before {
    content: "\e047"
}

.k-i-display-block::before {
    content: "\e048"
}

.k-i-display-flex::before {
    content: "\e049"
}

.k-i-display-inline-flex::before {
    content: "\e04a"
}

.k-i-droplet-slider::before {
    content: "\e04b"
}

.k-i-color-canvas::before {
    content: "\e04b"
}

.k-i-file-report::before {
    content: "\e04c"
}

.k-i-gap-column::before {
    content: "\e04d"
}

.k-i-gap-row::before {
    content: "\e04e"
}

.k-i-handle-resize-alt::before {
    content: "\e04f"
}

.k-i-handle-resize::before {
    content: "\e050"
}

.k-i-images::before {
    content: "\e051"
}

.k-i-letter-space::before {
    content: "\e052"
}

.k-i-line-height::before {
    content: "\e053"
}

.k-i-list-latin-big::before {
    content: "\e054"
}

.k-i-list-latin-small::before {
    content: "\e055"
}

.k-i-list-roman-big::before {
    content: "\e056"
}

.k-i-list-roman-small::before {
    content: "\e057"
}

.k-i-list-unordered-outline::before {
    content: "\e058"
}

.k-i-list-unordered-square::before {
    content: "\e059"
}

.k-i-max-height::before {
    content: "\e05a"
}

.k-i-max-width::before {
    content: "\e05b"
}

.k-i-min-height::before {
    content: "\e05c"
}

.k-i-min-width::before {
    content: "\e05d"
}

.k-i-outline-offset::before {
    content: "\e05e"
}

.k-i-outline-width::before {
    content: "\e05f"
}

.k-i-padding-bottom::before {
    content: "\e060"
}

.k-i-padding-left::before {
    content: "\e061"
}

.k-i-padding-right::before {
    content: "\e062"
}

.k-i-padding-top::before {
    content: "\e063"
}

.k-i-padding::before {
    content: "\e064"
}

.k-i-position-bottom::before {
    content: "\e065"
}

.k-i-position-left::before {
    content: "\e066"
}

.k-i-position-right::before {
    content: "\e067"
}

.k-i-position-top::before {
    content: "\e068"
}

.k-i-regular-expression::before {
    content: "\e069"
}

.k-i-replace-all::before {
    content: "\e06a"
}

.k-i-replace-single::before {
    content: "\e06b"
}

.k-i-report-element::before {
    content: "\e06c"
}

.k-i-right-double-quotes::before {
    content: "\e06d"
}

.k-i-blockquote::before {
    content: "\e06d"
}

.k-i-whole-word::before {
    content: "\e06e"
}

.k-i-data-sds::before {
    content: "\e06f"
}

.k-i-undo::before {
    content: "\e100"
}

.k-i-undo-large::before {
    content: "\e100"
}

.k-i-redo::before {
    content: "\e101"
}

.k-i-redo-large::before {
    content: "\e101"
}

.k-i-arrow-rotate-ccw::before {
    content: "\e102"
}

.k-i-reset::before {
    content: "\e102"
}

.k-i-arrow-rotate-cw::before {
    content: "\e103"
}

.k-i-reload::before {
    content: "\e103"
}

.k-i-refresh::before {
    content: "\e103"
}

.k-i-recurrence::before {
    content: "\e103"
}

.k-i-arrows-repeat::before {
    content: "\e103"
}

.k-i-arrows-no-repeat::before {
    content: "\e104"
}

.k-i-non-recurrence::before {
    content: "\e104"
}

.k-i-refresh-clear::before {
    content: "\e104"
}

.k-i-arrow-rotate-ccw-small::before {
    content: "\e105"
}

.k-i-reset-sm::before {
    content: "\e105"
}

.k-i-arrow-rotate-cw-small::before {
    content: "\e106"
}

.k-i-reload-sm::before {
    content: "\e106"
}

.k-i-refresh-sm::before {
    content: "\e106"
}

.k-i-recurrence-sm::before {
    content: "\e106"
}

.k-i-arrows-repeat-sm::before {
    content: "\e106"
}

.k-i-clock::before {
    content: "\e107"
}

.k-i-calendar::before {
    content: "\e108"
}

.k-i-save::before {
    content: "\e109"
}

.k-i-floppy::before {
    content: "\e109"
}

.k-i-print::before {
    content: "\e10a"
}

.k-i-printer::before {
    content: "\e10a"
}

.k-i-pencil::before {
    content: "\e10b"
}

.k-i-edit::before {
    content: "\e10b"
}

.k-i-trash::before {
    content: "\e10c"
}

.k-i-delete::before {
    content: "\e10c"
}

.k-i-paperclip::before {
    content: "\e10d"
}

.k-i-attachment::before {
    content: "\e10d"
}

.k-i-clip::before {
    content: "\e10d"
}

.k-i-paperclip-alt::before {
    content: "\e10e"
}

.k-i-attachment-45::before {
    content: "\e10e"
}

.k-i-clip-45::before {
    content: "\e10e"
}

.k-i-link::before {
    content: "\e10f"
}

.k-i-link-horizontal::before {
    content: "\e10f"
}

.k-i-hyperlink::before {
    content: "\e10f"
}

.k-i-link-h::before {
    content: "\e10f"
}

.k-i-unlink::before {
    content: "\e110"
}

.k-i-unlink-horizontal::before {
    content: "\e110"
}

.k-i-hyperlink-remove::before {
    content: "\e110"
}

.k-i-unlink-h::before {
    content: "\e110"
}

.k-i-link-vertical::before {
    content: "\e111"
}

.k-i-link-v::before {
    content: "\e111"
}

.k-i-unlink-vertical::before {
    content: "\e112"
}

.k-i-unlink-v::before {
    content: "\e112"
}

.k-i-lock::before {
    content: "\e113"
}

.k-i-unlock::before {
    content: "\e114"
}

.k-i-cancel::before {
    content: "\e115"
}

.k-i-cancel-outline::before {
    content: "\e116"
}

.k-i-deny::before {
    content: "\e116"
}

.k-i-cancel-circle::before {
    content: "\e117"
}

.k-i-check::before {
    content: "\e118"
}

.k-i-checkmark::before {
    content: "\e118"
}

.k-i-tick::before {
    content: "\e118"
}

.k-i-check-outline::before {
    content: "\e119"
}

.k-i-checkmark-outline::before {
    content: "\e119"
}

.k-i-success::before {
    content: "\e119"
}

.k-i-check-circle::before {
    content: "\e11a"
}

.k-i-checkmark-circle::before {
    content: "\e11a"
}

.k-i-x::before {
    content: "\e11b"
}

.k-i-close::before {
    content: "\e11b"
}

.k-i-clear::before {
    content: "\e11b"
}

.k-i-times::before {
    content: "\e11b"
}

.k-i-group-delete::before {
    content: "\e11b"
}

.k-i-x-outline::before {
    content: "\e11c"
}

.k-i-close-outline::before {
    content: "\e11c"
}

.k-i-clear-outline::before {
    content: "\e11c"
}

.k-i-times-outline::before {
    content: "\e11c"
}

.k-i-error::before {
    content: "\e11c"
}

.k-i-x-circle::before {
    content: "\e11d"
}

.k-i-close-circle::before {
    content: "\e11d"
}

.k-i-clear-circle::before {
    content: "\e11d"
}

.k-i-times-circle::before {
    content: "\e11d"
}

.k-i-plus::before {
    content: "\e11e"
}

.k-i-add::before {
    content: "\e11e"
}

.k-i-plus-outline::before {
    content: "\e11f"
}

.k-i-add-outline::before {
    content: "\e11f"
}

.k-i-plus-circle::before {
    content: "\e120"
}

.k-i-add-circle::before {
    content: "\e120"
}

.k-i-minus::before {
    content: "\e121"
}

.k-i-kpi-trend-equal::before {
    content: "\e121"
}

.k-i-minus-outline::before {
    content: "\e122"
}

.k-i-minus-circle::before {
    content: "\e123"
}

.k-i-sort-asc::before {
    content: "\e124"
}

.k-i-sort-desc::before {
    content: "\e125"
}

.k-i-sort-clear::before {
    content: "\e126"
}

.k-i-unsort::before {
    content: "\e126"
}

.k-i-sort-asc-small::before {
    content: "\e127"
}

.k-i-sort-asc-sm::before {
    content: "\e127"
}

.k-i-sort-desc-small::before {
    content: "\e128"
}

.k-i-sort-desc-sm::before {
    content: "\e128"
}

.k-i-filter::before {
    content: "\e129"
}

.k-i-filter-clear::before {
    content: "\e12a"
}

.k-i-filter-small::before {
    content: "\e12b"
}

.k-i-filter-sm::before {
    content: "\e12b"
}

.k-i-filter-sort-asc-small::before {
    content: "\e12c"
}

.k-i-filter-sort-asc-sm::before {
    content: "\e12c"
}

.k-i-filter-sort-desc-small::before {
    content: "\e12d"
}

.k-i-filter-sort-desc-sm::before {
    content: "\e12d"
}

.k-i-filter-add-expression::before {
    content: "\e12e"
}

.k-i-filter-add-group::before {
    content: "\e12f"
}

.k-i-login::before {
    content: "\e130"
}

.k-i-sign-in::before {
    content: "\e130"
}

.k-i-logout::before {
    content: "\e131"
}

.k-i-sign-out::before {
    content: "\e131"
}

.k-i-download::before {
    content: "\e132"
}

.k-i-upload::before {
    content: "\e133"
}

.k-i-hyperlink-open::before {
    content: "\e134"
}

.k-i-hyperlink-open-sm::before {
    content: "\e135"
}

.k-i-launch::before {
    content: "\e136"
}

.k-i-window::before {
    content: "\e137"
}

.k-i-window-maximize::before {
    content: "\e137"
}

.k-i-maximize::before {
    content: "\e137"
}

.k-i-window-restore::before {
    content: "\e138"
}

.k-i-windows::before {
    content: "\e138"
}

.k-i-tiles::before {
    content: "\e138"
}

.k-i-restore::before {
    content: "\e138"
}

.k-i-window-minimize::before {
    content: "\e139"
}

.k-i-minimize::before {
    content: "\e139"
}

.k-i-gear::before {
    content: "\e13a"
}

.k-i-cog::before {
    content: "\e13a"
}

.k-i-custom::before {
    content: "\e13a"
}

.k-i-gears::before {
    content: "\e13b"
}

.k-i-cogs::before {
    content: "\e13b"
}

.k-i-wrench::before {
    content: "\e13c"
}

.k-i-settings::before {
    content: "\e13c"
}

.k-i-eye::before {
    content: "\e13d"
}

.k-i-preview::before {
    content: "\e13d"
}

.k-i-search::before {
    content: "\e13e"
}

.k-i-zoom::before {
    content: "\e13e"
}

.k-i-zoom-in::before {
    content: "\e13f"
}

.k-i-zoom-out::before {
    content: "\e140"
}

.k-i-arrows-move::before {
    content: "\e141"
}

.k-i-pan::before {
    content: "\e141"
}

.k-i-move::before {
    content: "\e141"
}

.k-i-calculator::before {
    content: "\e142"
}

.k-i-cart::before {
    content: "\e143"
}

.k-i-shopping-cart::before {
    content: "\e143"
}

.k-i-connector::before {
    content: "\e144"
}

.k-i-plus-sm::before {
    content: "\e145"
}

.k-i-splus::before {
    content: "\e145"
}

.k-i-minus-sm::before {
    content: "\e146"
}

.k-i-sminus::before {
    content: "\e146"
}

.k-i-kpi-status-deny::before {
    content: "\e147"
}

.k-i-kpi-status-hold::before {
    content: "\e148"
}

.k-i-kpi-status-open::before {
    content: "\e149"
}

.k-i-equal::before {
    content: "\e14a"
}

.k-i-not-equal::before {
    content: "\e14b"
}

.k-i-less-or-equal::before {
    content: "\e14c"
}

.k-i-greater-or-equal::before {
    content: "\e14d"
}

.k-i-divide::before {
    content: "\e14e"
}

.k-i-accessibility::before {
    content: "\e14f"
}

.k-i-barcode-outline::before {
    content: "\e150"
}

.k-i-barcode::before {
    content: "\e151"
}

.k-i-barcode-scanner::before {
    content: "\e152"
}

.k-i-qr-code-outline::before {
    content: "\e153"
}

.k-i-qr-code::before {
    content: "\e154"
}

.k-i-qr-code-scanner::before {
    content: "\e155"
}

.k-i-barcode-qr-code-scanner::before {
    content: "\e156"
}

.k-i-signature::before {
    content: "\e157"
}

.k-i-hand::before {
    content: "\e158"
}

.k-i-pointer::before {
    content: "\e159"
}

.k-i-cursor::before {
    content: "\e159"
}

.k-i-stick::before {
    content: "\e15a"
}

.k-i-unstick::before {
    content: "\e15b"
}

.k-i-set-column-position::before {
    content: "\e15c"
}

.k-i-clock-arrow-rotate::before {
    content: "\e15d"
}

.k-i-play::before {
    content: "\e200"
}

.k-i-pause::before {
    content: "\e201"
}

.k-i-stop::before {
    content: "\e202"
}

.k-i-rewind::before {
    content: "\e203"
}

.k-i-forward::before {
    content: "\e204"
}

.k-i-volume-down::before {
    content: "\e205"
}

.k-i-volume-low::before {
    content: "\e205"
}

.k-i-volume-up::before {
    content: "\e206"
}

.k-i-volume-high::before {
    content: "\e206"
}

.k-i-volume-mute::before {
    content: "\e207"
}

.k-i-volume-off::before {
    content: "\e207"
}

.k-i-hd::before {
    content: "\e208"
}

.k-i-closed-captions::before {
    content: "\e209"
}

.k-i-subtitles::before {
    content: "\e209"
}

.k-i-playlist::before {
    content: "\e20a"
}

.k-i-music-notes::before {
    content: "\e20b"
}

.k-i-audio::before {
    content: "\e20b"
}

.k-i-play-sm::before {
    content: "\e20c"
}

.k-i-pause-sm::before {
    content: "\e20d"
}

.k-i-stop-sm::before {
    content: "\e20e"
}

.k-i-heart-outline::before {
    content: "\e300"
}

.k-i-fav-outline::before {
    content: "\e300"
}

.k-i-favorite-outline::before {
    content: "\e300"
}

.k-i-heart::before {
    content: "\e301"
}

.k-i-fav::before {
    content: "\e301"
}

.k-i-favorite::before {
    content: "\e301"
}

.k-i-star-outline::before {
    content: "\e302"
}

.k-i-bookmark-outline::before {
    content: "\e302"
}

.k-i-star::before {
    content: "\e303"
}

.k-i-bookmark::before {
    content: "\e303"
}

.k-i-checkbox::before {
    content: "\e304"
}

.k-i-shape-rect::before {
    content: "\e304"
}

.k-i-checkbox-checked::before {
    content: "\e305"
}

.k-i-checkbox-indeterminate::before {
    content: "\e306"
}

.k-i-tri-state-indeterminate::before {
    content: "\e306"
}

.k-i-checkbox-null::before {
    content: "\e307"
}

.k-i-tri-state-null::before {
    content: "\e307"
}

.k-i-circle::before {
    content: "\e308"
}

.k-i-radiobutton::before {
    content: "\e309"
}

.k-i-shape-circle::before {
    content: "\e309"
}

.k-i-radiobutton-checked::before {
    content: "\e30a"
}

.k-i-bell::before {
    content: "\e400"
}

.k-i-notification::before {
    content: "\e400"
}

.k-i-info-circle::before {
    content: "\e401"
}

.k-i-information::before {
    content: "\e401"
}

.k-i-info::before {
    content: "\e401"
}

.k-i-note::before {
    content: "\e401"
}

.k-i-question-circle::before {
    content: "\e402"
}

.k-i-question::before {
    content: "\e402"
}

.k-i-help::before {
    content: "\e402"
}

.k-i-exclamation-circle::before {
    content: "\e403"
}

.k-i-warning::before {
    content: "\e403"
}

.k-i-exception::before {
    content: "\e403"
}

.k-i-camera::before {
    content: "\e500"
}

.k-i-photo-camera::before {
    content: "\e500"
}

.k-i-image::before {
    content: "\e501"
}

.k-i-photo::before {
    content: "\e501"
}

.k-i-image-export::before {
    content: "\e502"
}

.k-i-photo-export::before {
    content: "\e502"
}

.k-i-zoom-actual-size::before {
    content: "\e503"
}

.k-i-zoom-best-fit::before {
    content: "\e504"
}

.k-i-image-resize::before {
    content: "\e505"
}

.k-i-crop::before {
    content: "\e506"
}

.k-i-mirror::before {
    content: "\e507"
}

.k-i-flip-horizontal::before {
    content: "\e508"
}

.k-i-flip-h::before {
    content: "\e508"
}

.k-i-flip-vertical::before {
    content: "\e509"
}

.k-i-flip-v::before {
    content: "\e509"
}

.k-i-rotate::before {
    content: "\e50a"
}

.k-i-rotate-right::before {
    content: "\e50b"
}

.k-i-rotate-cw::before {
    content: "\e50b"
}

.k-i-rotate-left::before {
    content: "\e50c"
}

.k-i-rotate-ccw::before {
    content: "\e50c"
}

.k-i-brush::before {
    content: "\e50d"
}

.k-i-palette::before {
    content: "\e50e"
}

.k-i-droplet::before {
    content: "\e50f"
}

.k-i-paint::before {
    content: "\e50f"
}

.k-i-background::before {
    content: "\e50f"
}

.k-i-shape-line::before {
    content: "\e510"
}

.k-i-line::before {
    content: "\e510"
}

.k-i-brightness-contrast::before {
    content: "\e511"
}

.k-i-sliders::before {
    content: "\e512"
}

.k-i-saturation::before {
    content: "\e512"
}

.k-i-invert-colors::before {
    content: "\e513"
}

.k-i-transparency::before {
    content: "\e514"
}

.k-i-opacity::before {
    content: "\e514"
}

.k-i-grayscale::before {
    content: "\e515"
}

.k-i-blur::before {
    content: "\e516"
}

.k-i-sharpen::before {
    content: "\e517"
}

.k-i-shapes::before {
    content: "\e518"
}

.k-i-shape::before {
    content: "\e518"
}

.k-i-round-corners::before {
    content: "\e519"
}

.k-i-bring-to-front::before {
    content: "\e51a"
}

.k-i-front-element::before {
    content: "\e51a"
}

.k-i-bring-to-back::before {
    content: "\e51b"
}

.k-i-back-element::before {
    content: "\e51b"
}

.k-i-bring-forward::before {
    content: "\e51c"
}

.k-i-forward-element::before {
    content: "\e51c"
}

.k-i-bring-backward::before {
    content: "\e51d"
}

.k-i-backward-element::before {
    content: "\e51d"
}

.k-i-align-self-start::before {
    content: "\e51e"
}

.k-i-align-left-element::before {
    content: "\e51e"
}

.k-i-align-self-center::before {
    content: "\e51f"
}

.k-i-align-center-element::before {
    content: "\e51f"
}

.k-i-align-self-end::before {
    content: "\e520"
}

.k-i-align-right-element::before {
    content: "\e520"
}

.k-i-align-self-start-alt::before {
    content: "\e521"
}

.k-i-align-top-element::before {
    content: "\e521"
}

.k-i-align-self-center-alt::before {
    content: "\e522"
}

.k-i-align-middle-element::before {
    content: "\e522"
}

.k-i-align-self-end-alt::before {
    content: "\e523"
}

.k-i-align-bottom-element::before {
    content: "\e523"
}

.k-i-thumbnails-up::before {
    content: "\e524"
}

.k-i-thumbnails-right::before {
    content: "\e525"
}

.k-i-thumbnails-down::before {
    content: "\e526"
}

.k-i-thumbnails-left::before {
    content: "\e527"
}

.k-i-fullscreen::before {
    content: "\e528"
}

.k-i-full-screen::before {
    content: "\e528"
}

.k-i-fullscreen-enter::before {
    content: "\e528"
}

.k-i-fullscreen-exit::before {
    content: "\e529"
}

.k-i-full-screen-exit::before {
    content: "\e529"
}

.k-i-droplet-slash::before {
    content: "\e52a"
}

.k-i-reset-color::before {
    content: "\e52a"
}

.k-i-paint-remove::before {
    content: "\e52a"
}

.k-i-background-remove::before {
    content: "\e52a"
}

.k-i-photos::before {
    content: "\e52b"
}

.k-i-images::before {
    content: "\e52b"
}

.k-i-gallery::before {
    content: "\e52b"
}

.k-i-align-to-grid::before {
    content: "\e52c"
}

.k-i-size-to-grid::before {
    content: "\e52d"
}

.k-i-make-same-size::before {
    content: "\e52e"
}

.k-i-make-same-width::before {
    content: "\e52f"
}

.k-i-make-same-height::before {
    content: "\e530"
}

.k-i-make-horizontal-spacing-equal::before {
    content: "\e531"
}

.k-i-increase-horizontal-spacing::before {
    content: "\e532"
}

.k-i-decrease-horizontal-spacing::before {
    content: "\e533"
}

.k-i-remove-horizontal-spacing::before {
    content: "\e534"
}

.k-i-make-vertical-spacing-equal::before {
    content: "\e535"
}

.k-i-increase-vertical-spacing::before {
    content: "\e536"
}

.k-i-decrease-vertical-spacing::before {
    content: "\e537"
}

.k-i-remove-vertical-spacing::before {
    content: "\e538"
}

.k-i-eyedropper::before {
    content: "\e539"
}

.k-i-snap-grid::before {
    content: "\e53a"
}

.k-i-snap-to-gridlines::before {
    content: "\e53b"
}

.k-i-snap-to-snaplines::before {
    content: "\e53c"
}

.k-i-dimensions::before {
    content: "\e53d"
}

.k-i-align-self-stretch::before {
    content: "\e53e"
}

.k-i-align-stretch-element-horizontal::before {
    content: "\e53e"
}

.k-i-align-self-stretch-alt::before {
    content: "\e53f"
}

.k-i-align-stretch-element-vertical::before {
    content: "\e53f"
}

.k-i-align-items-start::before {
    content: "\e540"
}

.k-i-align-left-elements::before {
    content: "\e540"
}

.k-i-align-items-center::before {
    content: "\e541"
}

.k-i-align-center-elements::before {
    content: "\e541"
}

.k-i-align-items-end::before {
    content: "\e542"
}

.k-i-align-right-elements::before {
    content: "\e542"
}

.k-i-align-items-stretch::before {
    content: "\e543"
}

.k-i-align-stretch-elements-horizontal::before {
    content: "\e543"
}

.k-i-align-items-baseline::before {
    content: "\e544"
}

.k-i-align-baseline-horizontal::before {
    content: "\e544"
}

.k-i-align-items-start-alt::before {
    content: "\e545"
}

.k-i-align-top-elements::before {
    content: "\e545"
}

.k-i-align-items-center-alt::before {
    content: "\e546"
}

.k-i-align-middle-elements::before {
    content: "\e546"
}

.k-i-align-items-end-alt::before {
    content: "\e547"
}

.k-i-align-bottom-elements::before {
    content: "\e547"
}

.k-i-align-items-stretch-alt::before {
    content: "\e548"
}

.k-i-align-stretch-elements-vertical::before {
    content: "\e548"
}

.k-i-align-items-baseline-alt::before {
    content: "\e549"
}

.k-i-align-baseline-vertical::before {
    content: "\e549"
}

.k-i-justify-content-start::before {
    content: "\e54a"
}

.k-i-justify-start-horizontal::before {
    content: "\e54a"
}

.k-i-justify-content-center::before {
    content: "\e54b"
}

.k-i-justify-center-horizontal::before {
    content: "\e54b"
}

.k-i-justify-content-end::before {
    content: "\e54c"
}

.k-i-justify-end-horizontal::before {
    content: "\e54c"
}

.k-i-justify-content-between::before {
    content: "\e54d"
}

.k-i-justify-between-horizontal::before {
    content: "\e54d"
}

.k-i-justify-content-around::before {
    content: "\e54e"
}

.k-i-justify-around-horizontal::before {
    content: "\e54e"
}

.k-i-justify-content-start-alt::before {
    content: "\e54f"
}

.k-i-justify-start-vertical::before {
    content: "\e54f"
}

.k-i-justify-content-center-alt::before {
    content: "\e550"
}

.k-i-justify-center-vertical::before {
    content: "\e550"
}

.k-i-justify-content-end-alt::before {
    content: "\e551"
}

.k-i-justify-end-vertical::before {
    content: "\e551"
}

.k-i-justify-content-between-alt::before {
    content: "\e552"
}

.k-i-justify-between-vertical::before {
    content: "\e552"
}

.k-i-justify-content-around-alt::before {
    content: "\e553"
}

.k-i-justify-around-vertical::before {
    content: "\e553"
}

.k-i-file-wrench::before {
    content: "\e600"
}

.k-i-page-properties::before {
    content: "\e600"
}

.k-i-bold::before {
    content: "\e601"
}

.k-i-italic::before {
    content: "\e602"
}

.k-i-underline::before {
    content: "\e603"
}

.k-i-font-family::before {
    content: "\e604"
}

.k-i-foreground-color::before {
    content: "\e605"
}

.k-i-text::before {
    content: "\e605"
}

.k-i-convert-lowercase::before {
    content: "\e606"
}

.k-i-convert-uppercase::before {
    content: "\e607"
}

.k-i-strikethrough::before {
    content: "\e608"
}

.k-i-strike-through::before {
    content: "\e608"
}

.k-i-subscript::before {
    content: "\e609"
}

.k-i-sub-script::before {
    content: "\e609"
}

.k-i-supscript::before {
    content: "\e60a"
}

.k-i-sup-script::before {
    content: "\e60a"
}

.k-i-superscript::before {
    content: "\e60a"
}

.k-i-div::before {
    content: "\e60b"
}

.k-i-all::before {
    content: "\e60c"
}

.k-i-h1::before {
    content: "\e60d"
}

.k-i-h2::before {
    content: "\e60e"
}

.k-i-h3::before {
    content: "\e60f"
}

.k-i-h4::before {
    content: "\e610"
}

.k-i-h5::before {
    content: "\e611"
}

.k-i-h6::before {
    content: "\e612"
}

.k-i-list-ordered::before {
    content: "\e613"
}

.k-i-list-numbered::before {
    content: "\e613"
}

.k-i-insert-ordered-list::before {
    content: "\e613"
}

.k-i-list-unordered::before {
    content: "\e614"
}

.k-i-list-bulleted::before {
    content: "\e614"
}

.k-i-insert-unordered-list::before {
    content: "\e614"
}

.k-i-indent::before {
    content: "\e615"
}

.k-i-indent-increase::before {
    content: "\e615"
}

.k-i-outdent::before {
    content: "\e616"
}

.k-i-indent-decrease::before {
    content: "\e616"
}

.k-i-insert-top::before {
    content: "\e617"
}

.k-i-insert-up::before {
    content: "\e617"
}

.k-i-insert-n::before {
    content: "\e617"
}

.k-i-insert-middle::before {
    content: "\e618"
}

.k-i-insert-m::before {
    content: "\e618"
}

.k-i-insert-bottom::before {
    content: "\e619"
}

.k-i-insert-down::before {
    content: "\e619"
}

.k-i-insert-s::before {
    content: "\e619"
}

.k-i-align-top::before {
    content: "\e61a"
}

.k-i-align-middle::before {
    content: "\e61b"
}

.k-i-align-bottom::before {
    content: "\e61c"
}

.k-i-align-left::before {
    content: "\e61d"
}

.k-i-justify-left::before {
    content: "\e61d"
}

.k-i-align-center::before {
    content: "\e61e"
}

.k-i-justify-center::before {
    content: "\e61e"
}

.k-i-align-right::before {
    content: "\e61f"
}

.k-i-justify-left::before {
    content: "\e61f"
}

.k-i-align-justify::before {
    content: "\e620"
}

.k-i-justify-full::before {
    content: "\e620"
}

.k-i-align-remove::before {
    content: "\e621"
}

.k-i-justify-clear::before {
    content: "\e621"
}

.k-i-text-wrap::before {
    content: "\e622"
}

.k-i-horizontal-rule::before {
    content: "\e623"
}

.k-i-rule-horizontal::before {
    content: "\e623"
}

.k-i-hr::before {
    content: "\e623"
}

.k-i-table-align-top-left::before {
    content: "\e624"
}

.k-i-table-align-top-center::before {
    content: "\e625"
}

.k-i-table-align-top-right::before {
    content: "\e626"
}

.k-i-table-align-middle-left::before {
    content: "\e627"
}

.k-i-table-align-middle-center::before {
    content: "\e628"
}

.k-i-table-align-middle-right::before {
    content: "\e629"
}

.k-i-table-align-bottom-left::before {
    content: "\e62a"
}

.k-i-table-align-bottom-center::before {
    content: "\e62b"
}

.k-i-table-align-bottom-right::before {
    content: "\e62c"
}

.k-i-table-align-remove::before {
    content: "\e62d"
}

.k-i-borders-all::before {
    content: "\e62e"
}

.k-i-all-borders::before {
    content: "\e62e"
}

.k-i-borders-outside::before {
    content: "\e62f"
}

.k-i-outside-borders::before {
    content: "\e62f"
}

.k-i-borders-inside::before {
    content: "\e630"
}

.k-i-inside-borders::before {
    content: "\e630"
}

.k-i-borders-inside-horizontal::before {
    content: "\e631"
}

.k-i-border-inside-h::before {
    content: "\e631"
}

.k-i-inside-horizontal-borders::before {
    content: "\e631"
}

.k-i-borders-inside-vertical::before {
    content: "\e632"
}

.k-i-borders-inside-v::before {
    content: "\e632"
}

.k-i-inside-vertical-borders::before {
    content: "\e632"
}

.k-i-border-top::before {
    content: "\e633"
}

.k-i-top-border::before {
    content: "\e633"
}

.k-i-border-bottom::before {
    content: "\e634"
}

.k-i-bottom-border::before {
    content: "\e634"
}

.k-i-border-left::before {
    content: "\e635"
}

.k-i-left-border::before {
    content: "\e635"
}

.k-i-border-right::before {
    content: "\e636"
}

.k-i-right-border::before {
    content: "\e636"
}

.k-i-borders-none::before {
    content: "\e637"
}

.k-i-border-no::before {
    content: "\e637"
}

.k-i-no-borders::before {
    content: "\e637"
}

.k-i-borders-show-hide::before {
    content: "\e638"
}

.k-i-form::before {
    content: "\e639"
}

.k-i-border::before {
    content: "\e639"
}

.k-i-form-element::before {
    content: "\e63a"
}

.k-i-code-snippet::before {
    content: "\e63b"
}

.k-i-select-all::before {
    content: "\e63c"
}

.k-i-button::before {
    content: "\e63d"
}

.k-i-select-box::before {
    content: "\e63e"
}

.k-i-calendar-date::before {
    content: "\e63f"
}

.k-i-group-box::before {
    content: "\e640"
}

.k-i-textarea::before {
    content: "\e641"
}

.k-i-textbox::before {
    content: "\e642"
}

.k-i-textbox-hidden::before {
    content: "\e643"
}

.k-i-password::before {
    content: "\e644"
}

.k-i-paragraph-add::before {
    content: "\e645"
}

.k-i-edit-tools::before {
    content: "\e646"
}

.k-i-template-manager::before {
    content: "\e647"
}

.k-i-change-manually::before {
    content: "\e648"
}

.k-i-track-changes::before {
    content: "\e649"
}

.k-i-track-changes-enable::before {
    content: "\e64a"
}

.k-i-track-changes-accept::before {
    content: "\e64b"
}

.k-i-track-changes-accept-all::before {
    content: "\e64c"
}

.k-i-track-changes-reject::before {
    content: "\e64d"
}

.k-i-track-changes-reject-all::before {
    content: "\e64e"
}

.k-i-document-manager::before {
    content: "\e64f"
}

.k-i-custom-icon::before {
    content: "\e650"
}

.k-i-book::before {
    content: "\e651"
}

.k-i-dictionary-add::before {
    content: "\e651"
}

.k-i-image-add::before {
    content: "\e652"
}

.k-i-image-light-dialog::before {
    content: "\e652"
}

.k-i-image-insert::before {
    content: "\e652"
}

.k-i-insert-image::before {
    content: "\e652"
}

.k-i-image-edit::before {
    content: "\e653"
}

.k-i-image-map-editor::before {
    content: "\e654"
}

.k-i-comment::before {
    content: "\e655"
}

.k-i-comment-remove::before {
    content: "\e656"
}

.k-i-comments-remove::before {
    content: "\e657"
}

.k-i-comments-remove-all::before {
    content: "\e657"
}

.k-i-silverlight::before {
    content: "\e658"
}

.k-i-media-manager::before {
    content: "\e659"
}

.k-i-video-external::before {
    content: "\e65a"
}

.k-i-flash-manager::before {
    content: "\e65b"
}

.k-i-binoculars::before {
    content: "\e65c"
}

.k-i-find-and-replace::before {
    content: "\e65c"
}

.k-i-find::before {
    content: "\e65c"
}

.k-i-copy::before {
    content: "\e65d"
}

.k-i-files::before {
    content: "\e65d"
}

.k-i-cut::before {
    content: "\e65e"
}

.k-i-clipboard::before {
    content: "\e65f"
}

.k-i-paste::before {
    content: "\e65f"
}

.k-i-clipboard-code::before {
    content: "\e660"
}

.k-i-paste-as-html::before {
    content: "\e660"
}

.k-i-clipboard-word::before {
    content: "\e661"
}

.k-i-paste-from-word::before {
    content: "\e661"
}

.k-i-clipboard-word-alt::before {
    content: "\e662"
}

.k-i-paste-from-word-strip-file::before {
    content: "\e662"
}

.k-i-clipboard-html::before {
    content: "\e663"
}

.k-i-paste-html::before {
    content: "\e663"
}

.k-i-clipboard-markdown::before {
    content: "\e664"
}

.k-i-paste-markdown::before {
    content: "\e664"
}

.k-i-clipboard-text::before {
    content: "\e665"
}

.k-i-paste-plain-text::before {
    content: "\e665"
}

.k-i-apply-format::before {
    content: "\e666"
}

.k-i-clear-css::before {
    content: "\e667"
}

.k-i-clearformat::before {
    content: "\e667"
}

.k-i-copy-format::before {
    content: "\e668"
}

.k-i-strip-all-formatting::before {
    content: "\e669"
}

.k-i-strip-css-format::before {
    content: "\e66a"
}

.k-i-strip-font-elements::before {
    content: "\e66b"
}

.k-i-strip-span-elements::before {
    content: "\e66c"
}

.k-i-strip-word-formatting::before {
    content: "\e66d"
}

.k-i-format-code-block::before {
    content: "\e66e"
}

.k-i-building-blocks::before {
    content: "\e66f"
}

.k-i-style-builder::before {
    content: "\e66f"
}

.k-i-puzzle-piece::before {
    content: "\e670"
}

.k-i-module-manager::before {
    content: "\e670"
}

.k-i-puzzle::before {
    content: "\e670"
}

.k-i-link-add::before {
    content: "\e671"
}

.k-i-hyperlink-light-dialog::before {
    content: "\e671"
}

.k-i-hyperlink-insert::before {
    content: "\e671"
}

.k-i-globe-link::before {
    content: "\e672"
}

.k-i-hyperlink-globe::before {
    content: "\e672"
}

.k-i-globe-unlink::before {
    content: "\e673"
}

.k-i-hyperlink-globe-remove::before {
    content: "\e673"
}

.k-i-envelop-link::before {
    content: "\e674"
}

.k-i-hyperlink-email::before {
    content: "\e674"
}

.k-i-anchor::before {
    content: "\e675"
}

.k-i-table-add::before {
    content: "\e676"
}

.k-i-table-light-dialog::before {
    content: "\e676"
}

.k-i-table-insert::before {
    content: "\e676"
}

.k-i-create-table::before {
    content: "\e676"
}

.k-i-table::before {
    content: "\e677"
}

.k-i-table-properties::before {
    content: "\e678"
}

.k-i-table-cell::before {
    content: "\e679"
}

.k-i-table-cell-properties::before {
    content: "\e67a"
}

.k-i-table-column-insert-left::before {
    content: "\e67b"
}

.k-i-add-column-left::before {
    content: "\e67b"
}

.k-i-table-column-insert-right::before {
    content: "\e67c"
}

.k-i-add-column-right::before {
    content: "\e67c"
}

.k-i-table-row-insert-above::before {
    content: "\e67d"
}

.k-i-add-row-above::before {
    content: "\e67d"
}

.k-i-table-row-insert-below::before {
    content: "\e67e"
}

.k-i-add-row-below::before {
    content: "\e67e"
}

.k-i-table-column-delete::before {
    content: "\e67f"
}

.k-i-delete-column::before {
    content: "\e67f"
}

.k-i-table-row-delete::before {
    content: "\e680"
}

.k-i-delete-row::before {
    content: "\e680"
}

.k-i-table-cell-delete::before {
    content: "\e681"
}

.k-i-table-delete::before {
    content: "\e682"
}

.k-i-cells-merge::before {
    content: "\e683"
}

.k-i-merge-cells::before {
    content: "\e683"
}

.k-i-cells-merge-horizontally::before {
    content: "\e684"
}

.k-i-cells-merge-h::before {
    content: "\e684"
}

.k-i-merge-horizontally::before {
    content: "\e684"
}

.k-i-cells-merge-vertically::before {
    content: "\e685"
}

.k-i-cells-merge-v::before {
    content: "\e685"
}

.k-i-merge-vertically::before {
    content: "\e685"
}

.k-i-cell-split-horizontally::before {
    content: "\e686"
}

.k-i-cells-split-h::before {
    content: "\e686"
}

.k-i-cell-split-vertically::before {
    content: "\e687"
}

.k-i-cells-split-v::before {
    content: "\e687"
}

.k-i-table-unmerge::before {
    content: "\e688"
}

.k-i-normal-layout::before {
    content: "\e688"
}

.k-i-pane-freeze::before {
    content: "\e689"
}

.k-i-freeze-pane::before {
    content: "\e689"
}

.k-i-row-freeze::before {
    content: "\e68a"
}

.k-i-freeze-row::before {
    content: "\e68a"
}

.k-i-column-freeze::before {
    content: "\e68b"
}

.k-i-col-freeze::before {
    content: "\e68b"
}

.k-i-freeze-col::before {
    content: "\e68b"
}

.k-i-toolbar-float::before {
    content: "\e68c"
}

.k-i-spell-checker::before {
    content: "\e68d"
}

.k-i-validation-xhtml::before {
    content: "\e68e"
}

.k-i-validation-data::before {
    content: "\e68f"
}

.k-i-toggle-full-screen-mode::before {
    content: "\e690"
}

.k-i-formula-fx::before {
    content: "\e691"
}

.k-i-fx::before {
    content: "\e691"
}

.k-i-sum::before {
    content: "\e692"
}

.k-i-symbol::before {
    content: "\e693"
}

.k-i-dollar::before {
    content: "\e694"
}

.k-i-currency::before {
    content: "\e694"
}

.k-i-percent::before {
    content: "\e695"
}

.k-i-custom-format::before {
    content: "\e696"
}

.k-i-format-number::before {
    content: "\e696"
}

.k-i-decimal-increase::before {
    content: "\e697"
}

.k-i-increace-decimal::before {
    content: "\e697"
}

.k-i-decimal-decrease::before {
    content: "\e698"
}

.k-i-decrease-decimal::before {
    content: "\e698"
}

.k-i-font-size::before {
    content: "\e699"
}

.k-i-image-absolute-position::before {
    content: "\e69a"
}

.k-i-table-wizard::before {
    content: "\e69b"
}

.k-i-crosstab::before {
    content: "\e69c"
}

.k-i-crosstab-wizard::before {
    content: "\e69d"
}

.k-i-table-body::before {
    content: "\e69e"
}

.k-i-table-column-groups::before {
    content: "\e69f"
}

.k-i-table-corner::before {
    content: "\e6a0"
}

.k-i-table-row-groups::before {
    content: "\e6a1"
}

.k-i-globe-outline::before {
    content: "\e700"
}

.k-i-globe::before {
    content: "\e701"
}

.k-i-map-marker::before {
    content: "\e702"
}

.k-i-marker-pin::before {
    content: "\e702"
}

.k-i-map-marker-target::before {
    content: "\e703"
}

.k-i-marker-pin-target::before {
    content: "\e703"
}

.k-i-pin::before {
    content: "\e704"
}

.k-i-unpin::before {
    content: "\e705"
}

.k-i-share::before {
    content: "\e800"
}

.k-i-user::before {
    content: "\e801"
}

.k-i-inbox::before {
    content: "\e802"
}

.k-i-blogger::before {
    content: "\e803"
}

.k-i-blogger-box::before {
    content: "\e804"
}

.k-i-delicious::before {
    content: "\e805"
}

.k-i-delicious-box::before {
    content: "\e806"
}

.k-i-digg::before {
    content: "\e807"
}

.k-i-digg-box::before {
    content: "\e808"
}

.k-i-envelop::before {
    content: "\e809"
}

.k-i-email::before {
    content: "\e809"
}

.k-i-letter::before {
    content: "\e809"
}

.k-i-envelop-box::before {
    content: "\e80a"
}

.k-i-email-box::before {
    content: "\e80a"
}

.k-i-letter-box::before {
    content: "\e80a"
}

.k-i-facebook::before {
    content: "\e80b"
}

.k-i-facebook-box::before {
    content: "\e80c"
}

.k-i-google::before {
    content: "\e80d"
}

.k-i-google-box::before {
    content: "\e80e"
}

.k-i-google-plus::before {
    content: "\e80f"
}

.k-i-google-plus-box::before {
    content: "\e810"
}

.k-i-linkedin::before {
    content: "\e811"
}

.k-i-linkedin-box::before {
    content: "\e812"
}

.k-i-myspace::before {
    content: "\e813"
}

.k-i-myspace-box::before {
    content: "\e814"
}

.k-i-pinterest::before {
    content: "\e815"
}

.k-i-pinterest-box::before {
    content: "\e816"
}

.k-i-reddit::before {
    content: "\e817"
}

.k-i-reddit-box::before {
    content: "\e818"
}

.k-i-stumble-upon::before {
    content: "\e819"
}

.k-i-stumble-upon-box::before {
    content: "\e81a"
}

.k-i-tell-a-friend::before {
    content: "\e81b"
}

.k-i-tell-a-friend-box::before {
    content: "\e81c"
}

.k-i-tumblr::before {
    content: "\e81d"
}

.k-i-tumblr-box::before {
    content: "\e81e"
}

.k-i-twitter::before {
    content: "\e81f"
}

.k-i-twitter-box::before {
    content: "\e820"
}

.k-i-yammer::before {
    content: "\e821"
}

.k-i-yammer-box::before {
    content: "\e822"
}

.k-i-behance::before {
    content: "\e823"
}

.k-i-behance-box::before {
    content: "\e824"
}

.k-i-dribbble::before {
    content: "\e825"
}

.k-i-dribbble-box::before {
    content: "\e826"
}

.k-i-rss::before {
    content: "\e827"
}

.k-i-rss-box::before {
    content: "\e828"
}

.k-i-vimeo::before {
    content: "\e829"
}

.k-i-vimeo-box::before {
    content: "\e82a"
}

.k-i-youtube::before {
    content: "\e82b"
}

.k-i-youtube-box::before {
    content: "\e82c"
}

.k-i-folder::before {
    content: "\e900"
}

.k-i-folder-open::before {
    content: "\e901"
}

.k-i-folder-add::before {
    content: "\e902"
}

.k-i-folder-up::before {
    content: "\e903"
}

.k-i-folder-more::before {
    content: "\e904"
}

.k-i-fields-more::before {
    content: "\e904"
}

.k-i-aggregate-fields::before {
    content: "\e905"
}

.k-i-file::before {
    content: "\e906"
}

.k-i-file-vertical::before {
    content: "\e906"
}

.k-i-page-portrait::before {
    content: "\e906"
}

.k-i-file-v::before {
    content: "\e906"
}

.k-i-file-add::before {
    content: "\e907"
}

.k-i-insert-file::before {
    content: "\e907"
}

.k-i-file-txt::before {
    content: "\e908"
}

.k-i-txt::before {
    content: "\e908"
}

.k-i-file-csv::before {
    content: "\e909"
}

.k-i-csv::before {
    content: "\e909"
}

.k-i-file-excel::before {
    content: "\e90a"
}

.k-i-file-xls::before {
    content: "\e90a"
}

.k-i-excel::before {
    content: "\e90a"
}

.k-i-xls::before {
    content: "\e90a"
}

.k-i-xlsa::before {
    content: "\e90a"
}

.k-i-file-word::before {
    content: "\e90b"
}

.k-i-file-doc::before {
    content: "\e90b"
}

.k-i-word::before {
    content: "\e90b"
}

.k-i-doc::before {
    content: "\e90b"
}

.k-i-file-mdb::before {
    content: "\e90c"
}

.k-i-mdb::before {
    content: "\e90c"
}

.k-i-file-ppt::before {
    content: "\e90d"
}

.k-i-ppt::before {
    content: "\e90d"
}

.k-i-file-pdf::before {
    content: "\e90e"
}

.k-i-pdf::before {
    content: "\e90e"
}

.k-i-pdfa::before {
    content: "\e90e"
}

.k-i-file-psd::before {
    content: "\e90f"
}

.k-i-psd::before {
    content: "\e90f"
}

.k-i-file-flash::before {
    content: "\e910"
}

.k-i-flash::before {
    content: "\e910"
}

.k-i-file-config::before {
    content: "\e911"
}

.k-i-config::before {
    content: "\e911"
}

.k-i-file-ascx::before {
    content: "\e912"
}

.k-i-ascx::before {
    content: "\e912"
}

.k-i-file-bac::before {
    content: "\e913"
}

.k-i-bac::before {
    content: "\e913"
}

.k-i-file-zip::before {
    content: "\e914"
}

.k-i-zip::before {
    content: "\e914"
}

.k-i-film::before {
    content: "\e915"
}

.k-i-css3::before {
    content: "\e916"
}

.k-i-html5::before {
    content: "\e917"
}

.k-i-code::before {
    content: "\e918"
}

.k-i-html::before {
    content: "\e918"
}

.k-i-source-code::before {
    content: "\e918"
}

.k-i-view-source::before {
    content: "\e918"
}

.k-i-css::before {
    content: "\e919"
}

.k-i-js::before {
    content: "\e91a"
}

.k-i-exe::before {
    content: "\e91b"
}

.k-i-csproj::before {
    content: "\e91c"
}

.k-i-vbproj::before {
    content: "\e91d"
}

.k-i-cs::before {
    content: "\e91e"
}

.k-i-vb::before {
    content: "\e91f"
}

.k-i-sln::before {
    content: "\e920"
}

.k-i-cloud::before {
    content: "\e921"
}

.k-i-file-horizontal::before {
    content: "\e922"
}

.k-i-page-landscape::before {
    content: "\e922"
}

.k-i-file-h::before {
    content: "\e922"
}

.k-i-subreport::before {
    content: "\e923"
}

.k-i-data::before {
    content: "\e924"
}

.k-i-file-header::before {
    content: "\e925"
}

.k-i-report-header-section::before {
    content: "\e925"
}

.k-i-file-footer::before {
    content: "\e926"
}

.k-i-report-footer-section::before {
    content: "\e926"
}

.k-i-group-header-section::before {
    content: "\e927"
}

.k-i-group-footer-section::before {
    content: "\e928"
}

.k-i-page-header-section::before {
    content: "\e929"
}

.k-i-page-footer-section::before {
    content: "\e92a"
}

.k-i-detail-section::before {
    content: "\e92b"
}

.k-i-toc-section::before {
    content: "\e92c"
}

.k-i-group-section::before {
    content: "\e92d"
}

.k-i-parameters::before {
    content: "\e92e"
}

.k-i-data-csv::before {
    content: "\e92f"
}

.k-i-data-json::before {
    content: "\e930"
}

.k-i-data-sql::before {
    content: "\e931"
}

.k-i-data-web::before {
    content: "\e932"
}

.k-i-group-collection::before {
    content: "\e933"
}

.k-i-parameter-boolean::before {
    content: "\e934"
}

.k-i-parameter-date-time::before {
    content: "\e935"
}

.k-i-parameter-float::before {
    content: "\e936"
}

.k-i-parameter-integer::before {
    content: "\e937"
}

.k-i-parameter-string::before {
    content: "\e938"
}

.k-i-toc-section-level::before {
    content: "\e939"
}

.k-i-inherited::before {
    content: "\e93a"
}

.k-i-file-video::before {
    content: "\e93b"
}

.k-i-file-audio::before {
    content: "\e93c"
}

.k-i-file-image::before {
    content: "\e93d"
}

.k-i-file-presentation::before {
    content: "\e93e"
}

.k-i-file-data::before {
    content: "\e93f"
}

.k-i-file-disc-image::before {
    content: "\e940"
}

.k-i-file-programming::before {
    content: "\e941"
}

.k-i-parameters-byte-array::before {
    content: "\e942"
}

.k-i-parameters-unknown::before {
    content: "\e943"
}

.k-i-file-error::before {
    content: "\e944"
}

.k-i-file-validation::before {
    content: "\e944"
}

.k-i-files-error::before {
    content: "\e945"
}

.k-i-files-validation::before {
    content: "\e945"
}

.k-i-data-rest::before {
    content: "\e946"
}

.k-i-file-typescript::before {
    content: "\e947"
}

.k-i-table-position-start::before {
    content: "\e948"
}

.k-i-table-position-left::before {
    content: "\e948"
}

.k-i-table-position-center::before {
    content: "\e949"
}

.k-i-table-position-end::before {
    content: "\e94a"
}

.k-i-table-position-right::before {
    content: "\e94a"
}

.k-i-list-roman-upper::before {
    content: "\e94b"
}

.k-i-list-roman-lower::before {
    content: "\e94c"
}

.k-i-import::before {
    content: "\e94d"
}

.k-i-export::before {
    content: "\e94e"
}

.k-i-graph::before {
    content: "\ea00"
}

.k-i-chart-column-clustered::before {
    content: "\ea01"
}

.k-i-chart-column-stacked::before {
    content: "\ea02"
}

.k-i-chart-column-stacked100::before {
    content: "\ea03"
}

.k-i-chart-column-range::before {
    content: "\ea04"
}

.k-i-chart-bar-clustered::before {
    content: "\ea05"
}

.k-i-chart-bar-stacked::before {
    content: "\ea06"
}

.k-i-chart-bar-stacked100::before {
    content: "\ea07"
}

.k-i-chart-bar-range::before {
    content: "\ea08"
}

.k-i-chart-area-clustered::before {
    content: "\ea09"
}

.k-i-chart-area-stacked::before {
    content: "\ea0a"
}

.k-i-chart-area-stacked100::before {
    content: "\ea0b"
}

.k-i-chart-area-range::before {
    content: "\ea0c"
}

.k-i-chart-line::before {
    content: "\ea0d"
}

.k-i-chart-line-stacked::before {
    content: "\ea0e"
}

.k-i-chart-line-stacked100::before {
    content: "\ea0f"
}

.k-i-chart-line-markers::before {
    content: "\ea10"
}

.k-i-chart-line-stacked-markers::before {
    content: "\ea11"
}

.k-i-chart-line-stacked100-markers::before {
    content: "\ea12"
}

.k-i-chart-pie::before {
    content: "\ea13"
}

.k-i-chart-doughnut::before {
    content: "\ea14"
}

.k-i-chart-scatter::before {
    content: "\ea15"
}

.k-i-chart-scatter-smooth-lines-markers::before {
    content: "\ea16"
}

.k-i-chart-scatter-smooth-lines::before {
    content: "\ea17"
}

.k-i-chart-scatter-straight-lines-markers::before {
    content: "\ea18"
}

.k-i-chart-scatter-straight-lines::before {
    content: "\ea19"
}

.k-i-chart-bubble::before {
    content: "\ea1a"
}

.k-i-chart-candlestick::before {
    content: "\ea1b"
}

.k-i-chart-ohlc::before {
    content: "\ea1c"
}

.k-i-chart-radar::before {
    content: "\ea1d"
}

.k-i-chart-radar-markers::before {
    content: "\ea1e"
}

.k-i-chart-radar-filled::before {
    content: "\ea1f"
}

.k-i-chart-rose::before {
    content: "\ea20"
}

.k-i-chart-choropleth::before {
    content: "\ea21"
}

.k-icon-wrap {
    flex: none;
    display: inline-flex;
    flex-flow: row nowrap;
    gap: 0;
    align-items: center;
    align-self: flex-start;
    vertical-align: middle;
    position: relative;
}

    .k-icon-wrap::before {
        content: "\200b";
        width: 0;
        overflow: hidden;
        flex: none;
        display: inline-block;
        vertical-align: top;
    }

.k-icon-wrapper-host {
    display: contents;
}

.k-icon-with-modifier {
    position: relative;
    margin: .25em;
}

.k-icon-modifier {
    position: absolute;
    font-size: .5em;
    bottom: 0;
    right: 0;
    margin: 0 -.5em -.5em 0;
}

.k-i-none::before {
    content: "";
    display: none;
}

.k-icon-action {
    padding: 4px;
    cursor: pointer;
}

.k-rtl .k-i-indent-increase, .k-rtl .k-i-indent-decrease, .k-rtl .k-i-expand, .k-rtl .k-i-collapse, [dir="rtl"] .k-i-expand, [dir="rtl"] .k-i-collapse {
    transform: scaleX(-1);
}

.k-sprite {
    display: inline-block;
    width: 16px;
    height: 16px;
    overflow: hidden;
    background-repeat: no-repeat;
    font-size: 0;
    line-height: 0;
    text-align: center;
}

.k-image {
    display: inline-block;
}

.k-messagebox {
    margin: 0 0 16px 0;
    padding: 4px 8px;
    border-width: 0 0 0 4px;
    border-style: solid;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 1.4285714286;
}

    .k-messagebox a {
        color: inherit;
        font-style: italic;
        text-decoration: underline;
    }

.k-messagebox-primary {
    border-color: #cbd4f4;
    color: #243570;
    background-color: #dae0f7;
}

.k-messagebox-secondary {
    border-color: #d8d8d8;
    color: #3d3d3d;
    background-color: #e3e3e3;
}

.k-messagebox-tertiary {
    border-color: #b8e7fc;
    color: #02587f;
    background-color: #cdeefd;
}

.k-messagebox-info {
    border-color: #b8d0f9;
    color: #002e79;
    background-color: #ccdefb;
}

.k-messagebox-success {
    border-color: #d1ebd1;
    color: #306030;
    background-color: #def1de;
}

.k-messagebox-warning {
    border-color: #fce6b8;
    color: #7f5600;
    background-color: #fdedcc;
}

.k-messagebox-error {
    border-color: #f6cfc7;
    color: #742c1d;
    background-color: #f9ddd7;
}

.k-messagebox-dark {
    border-color: #cacaca;
    color: #222;
    background-color: #d9d9d9;
}

.k-messagebox-light {
    border-color: #f9f9f9;
    color: #7a7a7a;
    background-color: #fbfbfb;
}

.k-messagebox-inverse {
    border-color: #cacaca;
    color: #222;
    background-color: #d9d9d9;
}

.k-drag-clue {
    border-radius: 4px;
    padding: 4px 8px;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    font-size: 14px;
    font-family: inherit;
    line-height: 1.4285714286;
    display: inline-flex;
    flex-flow: row nowrap;
    align-items: center;
    align-content: center;
    white-space: nowrap;
    overflow: hidden;
    position: absolute;
    z-index: 20000;
    cursor: move;
}

    .k-drag-status, .k-drag-clue .k-drag-status {
        margin: 0;
        margin-right: .4ex;
    }

.k-drop-hint {
    display: flex;
    gap: 4px;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    z-index: 1000;
    transform: translate(-50%, -50%);
}

.k-drop-hint-start, .k-drop-hint-end {
    flex-shrink: 0;
    border-width: 4px;
    border-style: solid;
    border-color: transparent;
}

.k-drop-hint-line {
    flex-grow: 1;
    background-color: var(--themecolor);
}

.k-drop-hint-h .k-drop-hint-start {
    border-left-width: 6.9282032304px;
    border-left-color: var(--themecolor);
    border-right-width: 0;
}

.k-drop-hint-h .k-drop-hint-line {
    width: 20px;
    height: 1px;
}

.k-drop-hint-h .k-drop-hint-end {
    border-right-width: 6.9282032304px;
    border-right-color: var(--themecolor);
    border-left-width: 0;
}

.k-drop-hint-v {
    flex-direction: column;
}

    .k-drop-hint-v .k-drop-hint-start {
        border-top-width: 6.9282032304px;
        border-top-color: var(--themecolor);
        border-bottom-width: 0;
    }

    .k-drop-hint-v .k-drop-hint-line {
        width: 1px;
        height: 20px;
    }

    .k-drop-hint-v .k-drop-hint-end {
        border-bottom-width: 6.9282032304px;
        border-bottom-color: var(--themecolor);
        border-top-width: 0;
    }

.k-reorder-cue {
    position: absolute;
}

    .k-reorder-cue::before, .k-reorder-cue::after {
        content: "";
        width: 0;
        height: 0;
        border: 3px solid transparent;
        position: absolute;
        transform: translateX(-50%);
    }

    .k-reorder-cue::before {
        border-bottom-width: 0;
        border-top-color: currentColor;
        top: -4px;
    }

    .k-reorder-cue::after {
        border-top-width: 0;
        border-bottom-color: currentColor;
        bottom: -4px;
    }

.k-drag-clue {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fafafa;
}

.k-checkbox {
    margin: 0;
    padding: 0;
    line-height: initial;
    border-width: 1px;
    border-style: solid;
    outline: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    flex: none;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
    -webkit-appearance: none;
}

    .k-checkbox:checked, .k-checkbox.k-checked {
        background-image: url("data:image/svg+xml, %3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='square' stroke-linejoin='square' stroke-width='2' d='M3, 8 l3, 3 l7-7'/%3e%3c/svg%3e");
    }

    .k-checkbox:indeterminate, .k-checkbox.k-indeterminate {
        background-image: url("data:image/svg+xml, %3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%234566d8' stroke-linecap='square' stroke-linejoin='square' stroke-width='2' d='M4, 8 h8'/%3e%3c/svg%3e");
    }

    .k-checkbox:disabled, .k-checkbox.k-disabled {
        outline: none;
        cursor: default;
        opacity: .6;
        filter: grayscale(0.1);
        pointer-events: none;
        box-shadow: none;
    }

.k-checkbox-wrap {
    flex: none;
    display: inline-flex;
    flex-flow: row nowrap;
    gap: 0;
    align-items: center;
    align-self: flex-start;
    vertical-align: middle;
    position: relative;
}

    .k-checkbox-wrap::before {
        content: "\200b";
        width: 0px;
        overflow: hidden;
        flex: none;
        display: inline-block;
        vertical-align: top;
    }

.k-checkbox-label {
    margin: 0;
    padding: 0;
    display: inline-flex;
    align-items: flex-start;
    gap: 4px;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
}

    .k-checkbox-label .k-ripple {
        visibility: hidden !important;
    }

.k-checkbox + .k-label, .k-checkbox-wrap + .k-label, .k-checkbox + .k-checkbox-label, .k-checkbox-wrap + .k-checkbox-label {
    display: inline;
    -webkit-margin-start: 4px;
    margin-inline-start: 4px;
}

.k-checkbox-label:empty {
    display: none !important;
}

.k-checkbox-label.k-no-text {
    min-width: 1px;
}

.k-checkbox-list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-flow: column nowrap;
    gap: 0;
    list-style: none;
}

.k-checkbox-item, .k-checkbox-list-item {
    padding: 4px 0px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    align-content: center;
    gap: 4px;
}

    .k-checkbox-item .k-checkbox-label, .k-checkbox-list-item .k-checkbox-label {
        margin: 0;
    }

.k-checkbox-list-horizontal, .k-checkbox-list.k-list-horizontal {
    display: flex;
    flex-flow: row wrap;
    gap: 16px;
}

.k-ripple-container .k-checkbox::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 100%;
    z-index: -1;
    transition: opacity 100ms linear, transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(-50%, -50%) scale(0);
    transform-origin: center center;
}

.k-ripple-container .k-checkbox:focus, .k-ripple-container .k-checkbox.k-focus {
    box-shadow: none !important;
}

.k-ripple-container .k-checkbox:disabled::after, .k-ripple-container .k-checkbox.k-disabled::after {
    display: none;
}

.k-checkbox-sm {
    width: 12px;
    height: 12px;
}

    .k-checkbox-sm::before {
        font-size: 10px;
    }

.k-ripple-container .k-checkbox-sm::after {
    width: 300%;
    height: 300%
}

.k-checkbox-md {
    width: 16px;
    height: 16px;
}

    .k-checkbox-md::before {
        font-size: 14px;
    }

.k-ripple-container .k-checkbox-md::after {
    width: 300%;
    height: 300%
}

.k-checkbox-lg {
    width: 20px;
    height: 20px;
}

    .k-checkbox-lg::before {
        font-size: 18px;
    }

.k-ripple-container .k-checkbox-lg::after {
    width: 300%;
    height: 300%
}

.k-checkbox {
    border-color: var(--kendo-border-color);
    background-color: #fff;
}

    .k-checkbox:focus, .k-checkbox.k-focus {
        box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.06);
    }

    .k-checkbox:indeterminate, .k-checkbox.k-indeterminate {
        border-color: var(--kendo-border-color);
        color: var(--themecolor);
        background-color: #fff;
    }

    .k-checkbox:checked, .k-checkbox.k-checked {
        border-color: var(--themecolor);
        color: #fff;
        background-color: var(--themecolor);
    }

        .k-checkbox:checked:focus, .k-checkbox.k-checked.k-focus {
            box-shadow: 0 0 0 2px rgba(69, 102, 216, 0.3);
        }

    .k-checkbox.k-invalid {
        border-color: #df5438;
    }

        .k-checkbox.k-invalid + .k-checkbox-label {
            color: #df5438;
        }

.k-checkbox-wrap .k-ripple-blob {
    color: var(--themecolor);
    opacity: .25;
}

.k-ripple-container .k-checkbox::after {
    background: var(--themecolor);
    opacity: .25;
}

.k-list-container {
    display: flex;
    flex-flow: column nowrap;
}

    .k-list-container > .k-list {
        flex: 1;
        height: 100%
    }

.k-list {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-flow: column nowrap;
    outline: none;
    position: relative;
    overflow: hidden;
}

    .k-list *, .k-list *::before, .k-list *::after {
        box-sizing: border-box;
    }

.k-popup > .k-list {
    height: 100%;
    border-width: 0;
}

.k-list-group-sticky-header {
    border-width: 0;
    border-width: 0 0 1px;
    border-style: solid;
    white-space: nowrap;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    flex: none;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

.k-list-content {
    border-color: inherit;
    flex: 1 1 auto;
    overflow: hidden;
    overflow-y: auto;
    position: relative;
}

.k-list-ul {
    margin: 0;
    padding: 0;
    border-width: 0;
    border-color: inherit;
    height: auto;
    list-style: none;
}

.k-list-item, .k-list-optionlabel {
    border: 0;
    outline: none;
    cursor: pointer;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    align-content: center;
    gap: 4px;
    position: relative;
    transition-property: color, background-color, outline-color, box-shadow;
    transition-duration: 200ms;
    transition-timing-function: ease;
}

    .k-list-item.k-first::before, .k-first.k-list-optionlabel::before {
        content: "";
        border-width: 1px 0 0;
        border-style: solid;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
    }

    .k-list-item-text::before, .k-list-optionlabel::before {
        content: "\200b";
        width: 0px;
        overflow: hidden;
    }

.k-list-group-item {
    border-width: 0;
    border-width: 1px 0 0;
    border-style: solid;
    cursor: default;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    align-content: center;
    gap: 4px;
    position: relative;
}

.k-list-item-group-label {
    padding: 0 .5em;
    font-size: .75em;
    position: absolute;
    top: 0;
    inset-inline-end: 0;
}

.k-virtual-content, .k-virtual-list .k-list-content {
    overflow-y: scroll;
}

    .k-virtual-list .k-list-item, .k-virtual-list .k-list-optionlabel, .k-virtual-list .k-list-group-item, .k-virtual-content .k-list-item, .k-virtual-content .k-list-optionlabel, .k-virtual-content .k-list-group-item {
        position: absolute;
        width: 100%
    }

.k-virtual-list .k-list-item-text, .k-virtual-list .k-list-header-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.k-virtual-list .k-list-optionlabel {
    position: relative;
}

.k-list-filter {
    display: block;
    position: relative;
    padding: 8px;
    box-sizing: border-box;
    flex: none;
}

.k-list-sm {
    font-size: 14px;
    line-height: 1.4285714286;
}

    .k-list-sm .k-list-group-sticky-header {
        padding: 2px 8px;
    }

    .k-list-sm .k-list-item, .k-list-sm .k-list-optionlabel {
        padding: 2px 8px;
    }

    .k-list-sm .k-list-group-item {
        padding: 2px 8px;
    }

.k-list-md {
    font-size: 14px;
    line-height: 1.4285714286;
}

    .k-list-md .k-list-group-sticky-header {
        padding: 4px 8px;
    }

    .k-list-md .k-list-item, .k-list-md .k-list-optionlabel {
        padding: 4px 8px;
    }

    .k-list-md .k-list-group-item {
        padding: 4px 8px;
    }

.k-list-lg {
    font-size: 16px;
    line-height: 1.5;
}

    .k-list-lg .k-list-group-sticky-header {
        padding: 6px 8px;
    }

    .k-list-lg .k-list-item, .k-list-lg .k-list-optionlabel {
        padding: 8px 12px;
    }

    .k-list-lg .k-list-group-item {
        padding: 6px 8px;
    }

.k-no-data, .k-nodata {
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: lighter;
    text-align: center;
    white-space: normal;
}

.k-list {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

.k-list-group-sticky-header {
    border-color: inherit;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.06);
}

.k-list-item:hover, .k-list-optionlabel:hover, .k-list-item.k-hover, .k-hover.k-list-optionlabel {
    color: #424242;
    background-color: #ececec;
}

.k-list-item:focus, .k-list-optionlabel:focus, .k-list-item.k-focus, .k-focus.k-list-optionlabel {
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12);
}

.k-list-item.k-selected, .k-selected.k-list-optionlabel {
    color: #fff;
    background-color: var(--themecolor);
}

    .k-list-item.k-selected:hover, .k-selected.k-list-optionlabel:hover, .k-list-item.k-selected.k-hover, .k-selected.k-hover.k-list-optionlabel {
        color: #fff;
        background-color: #3f5ec7;
    }

.k-list-group-item {
    border-color: inherit;
}

.k-list-item-group-label {
    color: #fff;
    background-color: #424242;
}

.k-no-data, .k-nodata {
    color: #666;
}

.k-listgroup {
    border-radius: 4px;
    margin: 0;
    padding: 0;
    border-width: 1px;
    border-style: solid;
    font-size: 14px;
    line-height: 1.4285714286;
    list-style: none;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

    .k-listgroup > ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        flex-direction: column;
    }

    .k-listgroup .k-listgroup-item + .k-listgroup-item {
        border-top-width: 1px;
    }

.k-listgroup-flush {
    border-radius: 0;
    border-left-width: 0;
    border-right-width: 0;
}

.k-listgroup-item {
    padding: 8px 8px;
    border-width: 0;
    border-style: solid;
    border-color: inherit;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex: 0 0 auto;
    position: relative;
}

    .k-listgroup-item > .k-link {
        margin: -8px -8px;
        padding: 8px 8px;
        color: inherit;
        text-decoration: none;
        outline: 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        flex: 1 1 auto;
        position: relative;
    }

        .k-listgroup-item > .k-link > .k-select {
            padding: 8px;
            display: flex;
            align-items: center;
            flex: 0 0 auto;
            position: absolute;
            top: 50%;
            right: 0;
            transform: translateY(-50%);
        }

.k-listgroup-item-segmented {
    align-items: stretch;
}

    .k-listgroup-item-segmented > .k-link {
        margin-right: 0;
    }

    .k-listgroup-item-segmented > .k-select {
        margin: -8px -8px -8px 0;
        padding: 8px;
        border-width: 0 0 0 1px;
        border-style: solid;
        border-color: inherit;
        cursor: pointer;
    }

.k-listgroup-form-row {
    margin: -8px -8px;
    padding: 8px 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex: 1 1 auto;
    position: relative;
}

    .k-listgroup-form-row .k-listgroup-form-field-label {
        width: 40%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .k-listgroup-form-row .k-listgroup-form-field-wrapper {
        width: 50%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        text-align: end;
        position: relative;
    }

        .k-listgroup-form-row .k-listgroup-form-field-wrapper select, .k-listgroup-form-row .k-listgroup-form-field-wrapper input[type="text"], .k-listgroup-form-row .k-listgroup-form-field-wrapper input[type="password"], .k-listgroup-form-row .k-listgroup-form-field-wrapper input[type="date"], .k-listgroup-form-row .k-listgroup-form-field-wrapper input[type="time"], .k-listgroup-form-row .k-listgroup-form-field-wrapper input[type="datetime-local"], .k-listgroup-form-row .k-listgroup-form-field-wrapper input[type="number"], .k-listgroup-form-row .k-listgroup-form-field-wrapper textarea {
            width: 100%;
            box-sizing: border-box;
            flex: 1 1 100%
        }

        .k-listgroup-form-row .k-listgroup-form-field-wrapper textarea {
            min-height: 4em;
            resize: vertical;
        }

.k-listgroup-item.k-listgroup-form-row {
    margin: 0;
}

[dir="rtl"] .k-listgroup-item > .k-link > .k-select {
    right: auto;
    left: 0;
}

    [dir="rtl"] .k-listgroup-item > .k-link > .k-select .k-icon {
        transform: scaleX(-1);
    }

[dir="rtl"] .k-listgroup-item-segmented > .k-link {
    margin-right: -8px;
    margin-left: 0;
}

[dir="rtl"] .k-listgroup-item-segmented > .k-select {
    margin-right: 0;
    margin-left: -8px;
    border-right-width: 1px;
    border-left-width: 0;
}

    [dir="rtl"] .k-listgroup-item-segmented > .k-select .k-icon {
        transform: scaleX(-1);
    }

.k-noflexbox .k-listgroup, .k-noflexbox .k-listgroup > ul .k-listgroup-item, .k-noflexbox .k-listgroup-item > .k-link {
    display: block;
}

.k-listgroup {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

.k-overlay {
    width: 100%;
    height: 100%;
    opacity: .5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10001;
}

.k-overlay {
    background-color: #000;
}

.k-overlay-primary {
    background-color: var(--themecolor);
}

.k-overlay-secondary {
    background-color: #757575;
}

.k-overlay-tertiary {
    background-color: #03a9f4;
}

.k-overlay-info {
    background-color: #0058E9;
}

.k-overlay-success {
    background-color: #5cb85c;
}

.k-overlay-warning {
    background-color: #F5A600;
}

.k-overlay-error {
    background-color: #df5438;
}

.k-overlay-dark {
    background-color: #424242;
}

.k-overlay-light {
    background-color: #ebebeb;
}

.k-overlay-inverse {
    background-color: #424242;
}

.k-popup {
    margin: 0;
    padding: 0;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 1.4285714286;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

    .k-popup .k-item {
        outline: none;
    }

.k-animation-container {
    border-radius: 0 0 4px 4px;
}

.k-animation-container-shown {
    overflow: visible;
}

.k-popup > .k-colorpalette {
    padding: 8px 8px;
}

.k-popup.k-popup-transparent {
    border-width: 0;
    background-color: transparent;
}

.k-popup.k-popup-flush {
    padding: 0;
}

.k-popup > .k-widget, .k-popup > .k-coloreditor {
    border-width: 0;
}

.k-shadow {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.03), 0 4px 5px 0 rgba(0, 0, 0, 0.04);
}

.k-popup {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.03), 0 4px 5px 0 rgba(0, 0, 0, 0.04);
}

.k-animation-container {
    border-radius: 0 0 4px 4px;
}

.k-ripple-target {
    position: relative;
}

.k-ripple {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.k-ripple-blob {
    pointer-events: none;
    position: absolute;
    border-radius: 50%;
    padding: 0;
    transform: translate(-50%, -50%) scale(0);
    transition: opacity 100ms linear, transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
    opacity: .1;
    background-color: currentColor;
}

.k-primary .k-ripple-blob {
    opacity: .2;
}

.k-ripple-focus::after {
    visibility: visible;
    animation: ripple 600ms ease-out;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0);
    }

    20% {
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
    }
}

.k-table {
    width: 100%;
    max-width: none;
    border-width: 1px;
    border-style: solid;
    text-align: left;
    border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
    outline: none;
}

.k-data-table {
    border-width: 1px;
    border-style: solid;
}

    .k-data-table .k-table {
        table-layout: fixed;
    }

.k-table-thead, .k-table-tbody, .k-table-tfoot, .k-table-row, .k-table-alt-row {
    border-color: inherit;
    text-align: inherit;
}

.k-table-th, .k-table-td {
    border-width: 0 0 0px 1px;
    border-style: solid;
    border-color: inherit;
    box-sizing: border-box;
    font-weight: normal;
    text-align: inherit;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: table-cell;
    overflow: hidden;
    position: relative;
}

    .k-table-th:first-child, .k-table-td:first-child {
        border-left-width: 0;
    }

.k-table-th {
    border-bottom-width: 1px;
}

.k-table-header {
    -webkit-padding-end: var(--kendo-scrollbar-width);
    padding-inline-end: var(--kendo-scrollbar-width);
    border-width: 0 0 1px 0;
    border-style: solid;
    box-sizing: border-box;
}

    .k-table-header .k-table {
        border-width: 0;
    }

.k-table-header-wrap {
    margin-right: -1px;
    width: 100%;
    border-width: 0 1px 0 0;
    border-style: solid;
    border-color: inherit;
    overflow: hidden;
}

    .k-table-header > .k-table, .k-table-header-wrap > .k-table {
        margin-bottom: -1px;
    }

.k-table-group-sticky-header {
    flex: none;
}

    .k-table-group-sticky-header .k-table-th {
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        align-content: center;
    }

.k-table-list {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: none;
    border-width: 0;
    display: table;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
    empty-cells: show;
    list-style: none;
    outline: none;
}

    .k-table-list .k-table-row, .k-table-list .k-table-group-row {
        width: 100%;
        box-sizing: border-box;
        display: table-row;
        position: relative;
    }

        .k-table-list .k-table-row.k-first {
            border-top: 1px solid currentColor;
        }

    .k-table-list .k-table-th, .k-table-list .k-table-td {
        vertical-align: middle;
    }

    .k-table-list .k-table-group-row::before {
        content: "\200b";
        padding: 0;
        width: 0;
        display: block;
        overflow: hidden;
    }

    .k-table-list .k-table-group-row .k-table-th {
        width: 100%;
        border-color: inherit;
        color: inherit;
        background-color: inherit;
        position: absolute;
        top: 0;
    }

    .k-table-list .k-table-spacer-td {
        padding: 0 !important;
        width: 0 !important;
        border-left-width: 0 !important;
        border-right-width: 0 !important;
    }

    .k-table-list .k-table-group-td {
        padding: 0 !important;
        width: 0 !important;
        border-left-width: 0 !important;
        border-right-width: 0 !important;
        overflow: visible;
    }

        .k-table-list .k-table-group-td > span {
            font-size: .75em;
            position: absolute;
            top: 0;
            right: 0;
        }

.k-virtual-table .k-table-row, .k-virtual-table .k-table-group-row {
    position: absolute;
    width: 100%
}

.k-table-scroller {
    position: relative;
    overflow: auto;
}

    .k-table-scroller > .k-table {
        border-width: 0;
    }

.k-table-footer {
    -webkit-padding-end: var(--kendo-scrollbar-width);
    padding-inline-end: var(--kendo-scrollbar-width);
    border-width: 1px 0 0 0;
    border-style: solid;
    box-sizing: border-box;
}

    .k-table-footer .k-table {
        border-width: 0;
    }

.k-table-footer-wrap {
    margin-right: -1px;
    width: 100%;
    border-width: 0 1px 0 0;
    border-style: solid;
    border-color: inherit;
    overflow: hidden;
}

.k-table-sm {
    font-size: 14px;
    line-height: 1.4285714286;
}

    .k-table-sm .k-table-th, .k-table-sm .k-table-td {
        padding: 4px 8px;
    }

    .k-table-sm .k-table-list .k-table-group-td > span {
        padding-block: 0;
        padding-inline: 4px;
    }

    .k-table-sm .k-table-list .k-table-group-row::before {
        padding-block: 4px;
        padding-inline: 0;
    }

.k-table-md {
    font-size: 14px;
    line-height: 1.4285714286;
}

    .k-table-md .k-table-th, .k-table-md .k-table-td {
        padding: 8px 12px;
    }

    .k-table-md .k-table-list .k-table-group-td > span {
        padding-block: 0;
        padding-inline: 6px;
    }

    .k-table-md .k-table-list .k-table-group-row::before {
        padding-block: 8px;
        padding-inline: 0;
    }

.k-table-lg {
    font-size: 14px;
    line-height: 1.4285714286;
}

    .k-table-lg .k-table-th, .k-table-lg .k-table-td {
        padding: 10px 8px;
    }

    .k-table-lg .k-table-list .k-table-group-td > span {
        padding-block: 0;
        padding-inline: 4px;
    }

    .k-table-lg .k-table-list .k-table-group-row::before {
        padding-block: 10px;
        padding-inline: 0;
    }

.k-rtl.k-table, .k-rtl .k-table, [dir="rtl"].k-table, [dir="rtl"] .k-table {
    text-align: right;
}

    .k-rtl.k-table .k-table-th, .k-rtl.k-table .k-table-td, .k-rtl .k-table .k-table-th, .k-rtl .k-table .k-table-td, [dir="rtl"].k-table .k-table-th, [dir="rtl"].k-table .k-table-td, [dir="rtl"] .k-table .k-table-th, [dir="rtl"] .k-table .k-table-td {
        border-left-width: 0;
        border-right-width: 1px;
    }

        .k-rtl.k-table .k-table-th:first-child, .k-rtl.k-table .k-table-td:first-child, .k-rtl .k-table .k-table-th:first-child, .k-rtl .k-table .k-table-td:first-child, [dir="rtl"].k-table .k-table-th:first-child, [dir="rtl"].k-table .k-table-td:first-child, [dir="rtl"] .k-table .k-table-th:first-child, [dir="rtl"] .k-table .k-table-td:first-child {
            border-right-width: 0;
        }

    .k-rtl.k-table .k-table-header-wrap, .k-rtl.k-table .k-table-footer-wrap, .k-rtl .k-table .k-table-header-wrap, .k-rtl .k-table .k-table-footer-wrap, [dir="rtl"].k-table .k-table-header-wrap, [dir="rtl"].k-table .k-table-footer-wrap, [dir="rtl"] .k-table .k-table-header-wrap, [dir="rtl"] .k-table .k-table-footer-wrap {
        margin-right: 0;
        margin-left: -1px;
        border-left-width: 1px;
        border-right-width: 0;
    }

.k-rtl .k-table-list .k-table-group-td > span, [dir="rtl"] .k-table-list .k-table-group-td > span {
    left: 0;
    right: auto;
}

.k-table, .k-data-table {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

.k-table-thead, .k-table-header, .k-table-group-sticky-header {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fafafa;
}

.k-table-tfoot, .k-table-footer {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fafafa;
}

.k-table-group-row {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fafafa;
}

.k-table-group-td > span {
    color: #fff;
    background-color: #424242;
}

.k-table-alt-row {
    background-color: rgba(0, 0, 0, 0.04);
}

.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: #ededed;
}

.k-table-tbody .k-table-row.k-focus, .k-table-tbody .k-table-row:focus, .k-table-list .k-table-row.k-focus, .k-table-list .k-table-row:focus, .k-table-tbody .k-table-td.k-focus, .k-table-tbody .k-table-td:focus, .k-table-list .k-table-td.k-focus, .k-table-list .k-table-td:focus {
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12);
}

.k-table-tbody .k-table-row.k-selected > .k-table-td, .k-table-list .k-table-row.k-selected {
    background-color: rgba(69, 102, 216, 0.25);
}

.k-virtual-scroller {
    width: 100%;
    height: 100%;
    flex: 1 1 auto;
    overflow: auto;
    position: relative;
}

.k-virtual-scroller-wrap {
    position: relative;
    z-index: 1;
}

.k-virtual-scroller-content {
    position: absolute;
    width: 100%;
    top: 0;
    inset-inline-start: 0;
}

.k-virtual-scroller-size {
    position: relative;
    z-index: 0;
}

.k-avatar {
    border-width: 0;
    border-style: solid;
    box-sizing: border-box;
    vertical-align: middle;
    display: inline-flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    overflow: hidden;
}

    .k-avatar *, .k-avatar *::before, .k-avatar *::after {
        box-sizing: border-box;
    }

.k-avatar-text, .k-avatar-initials {
    font-size: 14px;
    font-family: inherit;
    line-height: 1.4285714286;
}

.k-avatar-icon {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.k-avatar-image {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

    .k-avatar-image > img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        vertical-align: top;
    }

.k-avatar-sm {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
}

.k-avatar-md {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
}

.k-avatar-lg {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
}

.k-avatar-bordered {
    border-width: 1px;
}

.k-avatar-solid-primary {
    border-color: var(--themecolor);
    color: #fff;
    background-color: var(--themecolor);
}

.k-avatar-solid-secondary {
    border-color: #757575;
    color: #fff;
    background-color: #757575;
}

.k-avatar-solid-tertiary {
    border-color: #03a9f4;
    color: #fff;
    background-color: #03a9f4;
}

.k-avatar-solid-info {
    border-color: #0058E9;
    color: #fff;
    background-color: #0058E9;
}

.k-avatar-solid-success {
    border-color: #5cb85c;
    color: #fff;
    background-color: #5cb85c;
}

.k-avatar-solid-warning {
    border-color: #F5A600;
    color: #fff;
    background-color: #F5A600;
}

.k-avatar-solid-error {
    border-color: #df5438;
    color: #fff;
    background-color: #df5438;
}

.k-avatar-solid-dark {
    border-color: #424242;
    color: #fff;
    background-color: #424242;
}

.k-avatar-solid-light {
    border-color: #ebebeb;
    color: #000;
    background-color: #ebebeb;
}

.k-avatar-solid-inverse {
    border-color: #424242;
    color: #fff;
    background-color: #424242;
}

.k-avatar-outline {
    border-color: currentColor;
}

.k-avatar-outline-primary {
    color: var(--themecolor);
}

.k-avatar-outline-secondary {
    color: #757575;
}

.k-avatar-outline-tertiary {
    color: #03a9f4;
}

.k-avatar-outline-info {
    color: #0058E9;
}

.k-avatar-outline-success {
    color: #5cb85c;
}

.k-avatar-outline-warning {
    color: #F5A600;
}

.k-avatar-outline-error {
    color: #df5438;
}

.k-avatar-outline-dark {
    color: #424242;
}

.k-avatar-outline-light {
    color: #ebebeb;
}

.k-avatar-outline-inverse {
    color: #424242;
}

.k-badge {
    padding: 0;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    box-sizing: border-box;
    color: inherit;
    background-color: transparent;
    font: inherit;
    text-align: center;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .k-badge *, .k-badge *::before, .k-badge *::after {
        box-sizing: border-box;
    }

    .k-badge > * {
        color: inherit;
    }

    a.k-badge, .k-badge > a {
        text-decoration: none;
    }

        a.k-badge:hover, .k-badge > a:hover {
            text-decoration: underline;
        }

.k-badge-icon {
    max-width: 1em;
    max-height: 1em;
    font-size: inherit;
}

    .k-badge-icon.k-svg-icon svg {
        fill: currentColor;
    }

.k-badge-sm {
    padding: 2px 2px;
    font-size: 10px;
    line-height: 1;
    min-width: calc(1em + 6px);
}

    .k-badge-sm:empty {
        padding: 2px;
        min-width: auto;
    }

.k-badge-md {
    padding: 4px 4px;
    font-size: 10px;
    line-height: 1;
    min-width: calc(1em + 10px);
}

    .k-badge-md:empty {
        padding: 4px;
        min-width: auto;
    }

.k-badge-lg {
    padding: 6px 6px;
    font-size: 10px;
    line-height: 1;
    min-width: calc(1em + 14px);
}

    .k-badge-lg:empty {
        padding: 6px;
        min-width: auto;
    }

kendo-badge-container {
    display: inline-block;
}

.k-badge-container {
    position: relative;
    overflow: visible;
}

.k-badge-inside {
    position: absolute;
    z-index: 9999;
}

.k-badge-edge {
    position: absolute;
    z-index: 9999;
}

    .k-badge-edge.k-top-start {
        transform: translate(-50%, -50%);
    }

    .k-badge-edge.k-top-end {
        transform: translate(50%, -50%);
    }

    .k-badge-edge.k-bottom-start {
        transform: translate(-50%, 50%);
    }

    .k-badge-edge.k-bottom-end {
        transform: translate(50%, 50%);
    }

.k-rtl .k-badge-edge.k-top-start, [dir="rtl"].k-badge-edge.k-top-start, [dir="rtl"] .k-badge-edge.k-top-start {
    transform: translate(50%, -50%);
}

.k-rtl .k-badge-edge.k-top-end, [dir="rtl"].k-badge-edge.k-top-end, [dir="rtl"] .k-badge-edge.k-top-end {
    transform: translate(-50%, -50%);
}

.k-rtl .k-badge-edge.k-bottom-start, [dir="rtl"].k-badge-edge.k-bottom-start, [dir="rtl"] .k-badge-edge.k-bottom-start {
    transform: translate(50%, 50%);
}

.k-rtl .k-badge-edge.k-bottom-end, [dir="rtl"].k-badge-edge.k-bottom-end, [dir="rtl"] .k-badge-edge.k-bottom-end {
    transform: translate(-50%, 50%);
}

.k-badge-outside {
    position: absolute;
    z-index: 9999;
}

    .k-badge-outside.k-top-start {
        transform: translate(-100%, -100%);
    }

    .k-badge-outside.k-top-end {
        transform: translate(100%, -100%);
    }

    .k-badge-outside.k-bottom-start {
        transform: translate(-100%, 100%);
    }

    .k-badge-outside.k-bottom-end {
        transform: translate(100%, 100%);
    }

.k-rtl .k-badge-outside.k-top-start, [dir="rtl"].k-badge-outside.k-top-start, [dir="rtl"] .k-badge-outside.k-top-start {
    transform: translate(100%, -100%);
}

.k-rtl .k-badge-outside.k-top-end, [dir="rtl"].k-badge-outside.k-top-end, [dir="rtl"] .k-badge-outside.k-top-end {
    transform: translate(-100%, -100%);
}

.k-rtl .k-badge-outside.k-bottom-start, [dir="rtl"].k-badge-outside.k-bottom-start, [dir="rtl"] .k-badge-outside.k-bottom-start {
    transform: translate(100%, 100%);
}

.k-rtl .k-badge-outside.k-bottom-end, [dir="rtl"].k-badge-outside.k-bottom-end, [dir="rtl"] .k-badge-outside.k-bottom-end {
    transform: translate(-100%, 100%);
}

.k-badge-border-cutout {
    box-shadow: 0 0 0 2px #fff;
}

.k-badge-solid-primary {
    border-color: var(--themecolor);
    color: #fff;
    background-color: var(--themecolor);
}

.k-badge-solid-secondary {
    border-color: #757575;
    color: #fff;
    background-color: #757575;
}

.k-badge-solid-tertiary {
    border-color: #03a9f4;
    color: #fff;
    background-color: #03a9f4;
}

.k-badge-solid-info {
    border-color: #0058E9;
    color: #fff;
    background-color: #0058E9;
}

.k-badge-solid-success {
    border-color: #5cb85c;
    color: #fff;
    background-color: #5cb85c;
}

.k-badge-solid-warning {
    border-color: #F5A600;
    color: #fff;
    background-color: #F5A600;
}

.k-badge-solid-error {
    border-color: #df5438;
    color: #fff;
    background-color: #df5438;
}

.k-badge-solid-dark {
    border-color: #424242;
    color: #fff;
    background-color: #424242;
}

.k-badge-solid-light {
    border-color: #ebebeb;
    color: #000;
    background-color: #ebebeb;
}

.k-badge-solid-inverse {
    border-color: #424242;
    color: #fff;
    background-color: #424242;
}

.k-badge-outline {
    border-color: currentColor;
    background-color: #fff;
}

.k-badge-outline-primary {
    color: var(--themecolor);
}

.k-badge-outline-secondary {
    color: #757575;
}

.k-badge-outline-tertiary {
    color: #03a9f4;
}

.k-badge-outline-info {
    color: #0058E9;
}

.k-badge-outline-success {
    color: #5cb85c;
}

.k-badge-outline-warning {
    color: #F5A600;
}

.k-badge-outline-error {
    color: #df5438;
}

.k-badge-outline-dark {
    color: #424242;
}

.k-badge-outline-light {
    color: #ebebeb;
}

.k-badge-outline-inverse {
    color: #424242;
}

.k-chip {
    padding: 4px 4px;
    border-width: 1px;
    border-style: solid;
    outline: 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 1;
    display: inline-flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    gap: 4px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

    .k-chip *, .k-chip *::before, .k-chip *::after {
        box-sizing: border-box;
    }

    .k-chip .k-selected-icon-wrapper {
        display: none !important;
    }

.k-chip-content {
    padding: .5em 0;
    margin: -.5em 0;
    min-width: 0;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    overflow: hidden;
    flex: 1 1 auto;
}

    .k-chip-content:first-child {
        -webkit-margin-start: 4px;
        margin-inline-start: 4px;
    }

    .k-chip-content:last-child {
        -webkit-margin-end: 4px;
        margin-inline-end: 4px;
    }

.k-chip-text, .k-chip-label {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    flex: 1 1 auto;
}

.k-chip-avatar {
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    flex: none;
}

.k-chip-icon {
    font-size: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.k-chip-actions {
    margin: -5em 0;
    flex: none;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    align-self: center;
}

.k-chip-action {
    flex: none;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    align-self: center;
}

.k-remove-icon {
    font-size: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.k-chip-list {
    min-width: 0px;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}

.k-chip-sm {
    padding: 2px 4px;
    font-size: 14px;
    line-height: 1;
}

.k-chip-avatar {
    width: 1em;
    height: 1em;
    flex-basis: 1em;
}

.k-chip-md {
    padding: 4px 4px;
    font-size: 14px;
    line-height: 1;
}

.k-chip-avatar {
    width: 1em;
    height: 1em;
    flex-basis: 1em;
}

.k-chip-lg {
    padding: 6px 4px;
    font-size: 14px;
    line-height: 1;
}

.k-chip-avatar {
    width: 1em;
    height: 1em;
    flex-basis: 1em;
}

.k-chip-list-sm {
    gap: 4px;
}

.k-chip-list-md {
    gap: 4px;
}

.k-chip-list-lg {
    gap: 4px;
}

.k-chip-solid-base {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #f5f5f5;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
}

    .k-chip-solid-base:focus, .k-chip-solid-base.k-focus {
        box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
    }

    .k-chip-solid-base:hover, .k-chip-solid-base.k-hover {
        background-color: #ebebeb;
    }

    .k-chip-solid-base.k-selected {
        background-color: #d8d8d8;
    }

.k-chip-solid-error {
    border-color: #e77f6a;
    color: #4e1d14;
    background-color: #f9ddd7;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
}

    .k-chip-solid-error:focus, .k-chip-solid-error.k-focus {
        box-shadow: 0 0 0 2px rgba(223, 84, 56, 0.16);
    }

    .k-chip-solid-error:hover, .k-chip-solid-error.k-hover {
        background-color: #f4c3b9;
    }

    .k-chip-solid-error.k-selected {
        background-color: #efaa9c;
    }

.k-chip-solid-info {
    border-color: #4082ef;
    color: #001f52;
    background-color: #ccdefb;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
}

    .k-chip-solid-info:focus, .k-chip-solid-info.k-focus {
        box-shadow: 0 0 0 2px rgba(0, 88, 233, 0.16);
    }

    .k-chip-solid-info:hover, .k-chip-solid-info.k-hover {
        background-color: #a6c5f7;
    }

    .k-chip-solid-info.k-selected {
        background-color: #80acf4;
    }

.k-chip-solid-warning {
    border-color: #f8bc40;
    color: #563a00;
    background-color: #fdedcc;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
}

    .k-chip-solid-warning:focus, .k-chip-solid-warning.k-focus {
        box-shadow: 0 0 0 2px rgba(245, 166, 0, 0.16);
    }

    .k-chip-solid-warning:hover, .k-chip-solid-warning.k-hover {
        background-color: #fce0a6;
    }

    .k-chip-solid-warning.k-selected {
        background-color: #fad380;
    }

.k-chip-solid-success {
    border-color: #85ca85;
    color: #204020;
    background-color: #def1de;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
}

    .k-chip-solid-success:focus, .k-chip-solid-success.k-focus {
        box-shadow: 0 0 0 2px rgba(92, 184, 92, 0.16);
    }

    .k-chip-solid-success:hover, .k-chip-solid-success.k-hover {
        background-color: #c6e6c6;
    }

    .k-chip-solid-success.k-selected {
        background-color: #aedcae;
    }

.k-chip-outline-base {
    border-color: #424242;
    color: #424242;
    background-color: #fff;
}

    .k-chip-outline-base:focus, .k-chip-outline-base.k-focus {
        box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
    }

    .k-chip-outline-base:hover, .k-chip-outline-base.k-hover {
        color: #fff;
        background-color: #424242;
    }

    .k-chip-outline-base.k-selected {
        color: #fff;
        background-color: #424242;
    }

.k-chip-outline-error {
    border-color: #a73f2a;
    color: #a73f2a;
    background-color: #fff;
}

    .k-chip-outline-error:focus, .k-chip-outline-error.k-focus {
        box-shadow: 0 0 0 2px rgba(223, 84, 56, 0.16);
    }

    .k-chip-outline-error:hover, .k-chip-outline-error.k-hover {
        color: #fff;
        background-color: #a73f2a;
    }

    .k-chip-outline-error.k-selected {
        color: #fff;
        background-color: #a73f2a;
    }

.k-chip-outline-info {
    border-color: #0042af;
    color: #0042af;
    background-color: #fff;
}

    .k-chip-outline-info:focus, .k-chip-outline-info.k-focus {
        box-shadow: 0 0 0 2px rgba(0, 88, 233, 0.16);
    }

    .k-chip-outline-info:hover, .k-chip-outline-info.k-hover {
        color: #fff;
        background-color: #0042af;
    }

    .k-chip-outline-info.k-selected {
        color: #fff;
        background-color: #0042af;
    }

.k-chip-outline-warning {
    border-color: #F5A600;
    color: #424242;
    background-color: #fff;
}

    .k-chip-outline-warning:focus, .k-chip-outline-warning.k-focus {
        box-shadow: 0 0 0 2px rgba(245, 166, 0, 0.16);
    }

    .k-chip-outline-warning:hover, .k-chip-outline-warning.k-hover {
        color: #312100;
        background-color: #F5A600;
    }

    .k-chip-outline-warning.k-selected {
        color: #312100;
        background-color: #F5A600;
    }

.k-chip-outline-success {
    border-color: #458a45;
    color: #458a45;
    background-color: #fff;
}

    .k-chip-outline-success:focus, .k-chip-outline-success.k-focus {
        box-shadow: 0 0 0 2px rgba(92, 184, 92, 0.16);
    }

    .k-chip-outline-success:hover, .k-chip-outline-success.k-hover {
        color: #fff;
        background-color: #458a45;
    }

    .k-chip-outline-success.k-selected {
        color: #fff;
        background-color: #458a45;
    }

.k-color-preview {
    width: 100%;
    height: 100%;
    border-width: 1px;
    border-radius: 4px;
    box-sizing: border-box;
    border-style: solid;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    position: relative;
    overflow: hidden;
}

    .k-color-preview *, .k-color-preview *::before, .k-color-preview *::after {
        box-sizing: border-box;
    }

.k-coloreditor-current-color {
    cursor: pointer;
}

.k-icon-color-preview {
    border-width: 0;
    border-radius: 0;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

    .k-icon-color-preview .k-color-preview-mask {
        width: 14px;
        height: 2px;
    }

.k-color-preview-mask {
    width: 100%;
    height: 100%;
    position: relative;
}

    .k-color-preview-mask::before {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        background: url("data:image/png; base64, iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAuSURBVHgBxYyxDQAwDMJIL+YT+DjtzFRliUfLcklqBCRT4eCTxbD6kdL2/LgYXqpvCbs3kBv/AAAAAElFTkSuQmCC"); background-size: contain;
        background-position: 0 0;
    }

.k-no-color .k-color-preview-mask::before {
    content: "";
    background-color: #fff;
    background-image: url("data:image/svg+xml, %3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' version='1.1'%3e%3cline x1='0' x2='20' y1='0' y2='20' stroke='%23df5438' stroke-width='1'/%3e%3c/svg%3e");
    background-size: 100% 100%;
    background-position: 0 0;
}

.k-color-preview {
    border-color: var(--kendo-border-color);
}

    .k-color-preview:hover, .k-color-preview.k-hover {
        border-color: var(--kendo-border-color);
    }

.k-loader {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box;
    line-height: 0;
}

.k-loader-canvas {
    display: flex;
    position: relative;
}

.k-loader-segment {
    border-radius: 50%;
    background-color: currentColor;
    position: absolute;
}

.k-loader-sm {
    padding: 2px;
}

    .k-loader-sm .k-loader-segment {
        width: 4px;
        height: 4px;
    }

.k-loader-md {
    padding: 4px;
}

    .k-loader-md .k-loader-segment {
        width: 8px;
        height: 8px;
    }

.k-loader-lg {
    padding: 8px;
}

    .k-loader-lg .k-loader-segment {
        width: 16px;
        height: 16px;
    }

@keyframes pulsing-2-segment {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }

    100% {
        transform: scale(1);
    }
}

.k-loader-pulsing-2 .k-loader-canvas {
    align-items: center;
}

.k-loader-pulsing-2 .k-loader-segment:nth-child(1) {
    left: 0;
    transform: scale(1.5);
    transform-origin: 0 50%;
    animation: pulsing-2-segment 1s ease infinite;
    animation-delay: -.5s;
}

.k-loader-pulsing-2 .k-loader-segment:nth-child(2) {
    right: 0;
    transform-origin: 100% 50%;
    animation: pulsing-2-segment 1s ease infinite;
}

.k-loader-pulsing-2.k-loader-sm .k-loader-canvas {
    width: 12px;
    height: 6px;
}

.k-loader-pulsing-2.k-loader-md .k-loader-canvas {
    width: 24px;
    height: 12px;
}

.k-loader-pulsing-2.k-loader-lg .k-loader-canvas {
    width: 48px;
    height: 24px;
}

@keyframes spinner-3-segment {
    0% {
        top: 0;
        left: 50%
    }

    33.3333% {
        top: 100%;
        left: 0;
    }

    66.6666% {
        top: 100%;
        left: 100%
    }

    100% {
        top: 0;
        left: 50%
    }
}

.k-loader-spinner-3 .k-loader-segment {
    transform: translate(-50%, -50%);
}

    .k-loader-spinner-3 .k-loader-segment:nth-child(1) {
        top: 0;
        left: 50%;
        animation: spinner-3-segment 2s ease infinite;
    }

    .k-loader-spinner-3 .k-loader-segment:nth-child(2) {
        top: 100%;
        left: 0;
        animation: spinner-3-segment 2s ease infinite;
        animation-delay: -0.6666666667s;
    }

    .k-loader-spinner-3 .k-loader-segment:nth-child(3) {
        top: 100%;
        left: 100%;
        animation: spinner-3-segment 2s ease infinite;
        animation-delay: -1.3333333333s;
    }

.k-loader-spinner-3.k-loader-sm .k-loader-canvas {
    margin: 2px;
    width: 12px;
    height: 9.8564064608px;
}

.k-loader-spinner-3.k-loader-md .k-loader-canvas {
    margin: 4px;
    width: 24px;
    height: 19.7128129216px;
}

.k-loader-spinner-3.k-loader-lg .k-loader-canvas {
    margin: 8px;
    width: 48px;
    height: 39.4256258432px;
}

@keyframes spinner-4-segment-1 {
    0% {
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }

    33.3% {
        top: 0;
        left: 0;
        transform: translateX(0) translateY(0);
    }

    66.6% {
        top: 0;
        left: 0;
        transform: translateX(0) translateY(0);
    }

    100% {
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }
}

@keyframes spinner-4-segment-2 {
    0% {
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }

    33.3% {
        top: 0;
        left: 100%;
        transform: translateX(-100%) translateY(0);
    }

    66.6% {
        top: 0;
        left: 100%;
        transform: translateX(-100%) translateY(0);
    }

    100% {
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }
}

@keyframes spinner-4-segment-3 {
    0% {
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }

    33.3% {
        top: 100%;
        left: 100%;
        transform: translateX(-100%) translateY(-100%);
    }

    66.6% {
        top: 100%;
        left: 100%;
        transform: translateX(-100%) translateY(-100%);
    }

    100% {
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }
}

@keyframes spinner-4-segment-4 {
    0% {
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }

    33.3% {
        top: 100%;
        left: 0;
        transform: translateX(0) translateY(-100%);
    }

    66.6% {
        top: 100%;
        left: 0;
        transform: translateX(0) translateY(-100%);
    }

    100% {
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }
}

@keyframes spinner-4 {
    0% {
        transform: rotate(0);
    }

    33.3% {
        transform: rotate(0);
    }

    66.6% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(180deg);
    }
}

.k-loader-spinner-4 .k-loader-canvas {
    animation: spinner-4 1.833s ease infinite;
}

.k-loader-spinner-4 .k-loader-segment {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

    .k-loader-spinner-4 .k-loader-segment:nth-child(1) {
        animation: spinner-4-segment-1 1.833s ease infinite;
    }

    .k-loader-spinner-4 .k-loader-segment:nth-child(2) {
        animation: spinner-4-segment-2 1.833s ease infinite;
    }

    .k-loader-spinner-4 .k-loader-segment:nth-child(3) {
        animation: spinner-4-segment-3 1.833s ease infinite;
    }

    .k-loader-spinner-4 .k-loader-segment:nth-child(4) {
        animation: spinner-4-segment-4 1.833s ease infinite;
    }

.k-loader-spinner-4.k-loader-sm .k-loader-canvas {
    width: 16px;
    height: 16px;
}

.k-loader-spinner-4.k-loader-md .k-loader-canvas {
    width: 32px;
    height: 32px;
}

.k-loader-spinner-4.k-loader-lg .k-loader-canvas {
    width: 64px;
    height: 64px;
}

.k-loader-container {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2001;
}

    .k-loader-container .k-loader {
        padding: 0;
    }

.k-loader-container, .k-loader-container-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.k-loader-container-overlay {
    opacity: .5;
}

.k-loader-container-inner {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.k-loader-container-panel {
    border-width: 1px;
    border-style: solid;
    border-radius: 4px;
}

.k-loader-container-sm .k-loader-container-inner {
    padding: 16px;
    gap: 4px;
}

.k-loader-container-sm .k-loader-container-label {
    font-size: 12px;
}

.k-loader-container-md .k-loader-container-inner {
    padding: 20px;
    gap: 8px;
}

.k-loader-container-md .k-loader-container-label {
    font-size: 14px;
}

.k-loader-container-lg .k-loader-container-inner {
    padding: 24px;
    gap: 12px;
}

.k-loader-container-lg .k-loader-container-label {
    font-size: 16px;
}

.k-loader-top .k-loader-container-inner {
    flex-direction: column;
    text-align: center;
}

.k-loader-end .k-loader-container-label {
    order: -1;
}

.k-loading-mask, .k-loading-image, .k-loading-color {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
}

    .k-loading-mask *, .k-loading-mask *::before, .k-loading-mask *::after, .k-loading-mask::before, .k-loading-mask::after, .k-loading-image *, .k-loading-image *::before, .k-loading-image *::after, .k-loading-image::before, .k-loading-image::after, .k-loading-color *, .k-loading-color *::before, .k-loading-color *::after, .k-loading-color::before, .k-loading-color::after {
        box-sizing: border-box;
    }

.k-loading-mask {
    z-index: 100;
}

    .k-loading-mask.k-opaque .k-loading-color {
        opacity: 1;
    }

.k-loading-text {
    text-indent: -4000px;
    text-align: center;
    position: absolute;
    color: currentColor;
}

.k-loading-image {
    z-index: 2;
    color: currentColor;
}

.k-loading-color {
    background-color: #fff;
    opacity: .3;
}

.k-i-loading {
    position: relative;
    background-color: transparent;
    box-sizing: border-box;
    color: currentColor;
}

    .k-i-loading::before, .k-i-loading::after {
        box-sizing: border-box;
    }

    .k-i-loading::before, .k-i-loading::after, .k-loading-image::before, .k-loading-image::after {
        position: absolute;
        top: 50%;
        left: 50%;
        display: inline-block;
        content: "";
        box-sizing: inherit;
        border-radius: 50%;
        border-width: .05em;
        border-style: solid;
        border-color: currentColor;
        border-top-color: transparent;
        border-bottom-color: transparent;
        background-color: transparent;
    }

.k-icon.k-i-loading::before, .k-icon.k-i-loading::after {
    content: ""
}

.k-i-loading::before, .k-loading-image::before {
    margin-top: -.5em;
    margin-left: -.5em;
    width: 1em;
    height: 1em;
    animation: k-loading-animation .7s linear infinite;
}

.k-i-loading::after, .k-loading-image::after {
    margin-top: -.25em;
    margin-left: -.25em;
    width: .5em;
    height: .5em;
    animation: k-loading-animation reverse 1.4s linear infinite;
}

.k-loading-image::before, .k-loading-image::after {
    content: "";
    border-width: 1px;
    border-width: clamp(0.015em, 1px, 1px);
    font-size: 4em;
}

@keyframes loading {
    0% {
        stroke-dasharray: 0 251;
        stroke-dashoffset: 502;
    }

    50% {
        stroke-dasharray: 250 1;
    }

    100% {
        stroke-dasharray: 0 251;
        stroke-dashoffset: 0;
    }
}

@keyframes k-loading-animation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.k-loader-primary {
    color: var(--themecolor);
}

.k-loader-secondary {
    color: #656565;
}

.k-loader-tertiary {
    color: #03a9f4;
}

.k-loader-info {
    color: #0058E9;
}

.k-loader-success {
    color: #5cb85c;
}

.k-loader-warning {
    color: #F5A600;
}

.k-loader-error {
    color: #df5438;
}

.k-loader-dark {
    color: #424242;
}

.k-loader-light {
    color: #ebebeb;
}

.k-loader-inverse {
    color: #424242;
}

.k-loader-container-panel {
    background-color: #fff;
    border-color: var(--kendo-border-color);
}

.k-loader-container-inner .k-text-secondary, .k-loader-container-inner .\!k-text-secondary {
    color: #656565 !important;
}

.k-skeleton, .k-placeholder-line {
    display: block;
}

.k-skeleton-text, .k-placeholder-line {
    border-radius: 4px;
    transform: scale(1, 0.6);
}

    .k-skeleton-text:empty::before, .k-placeholder-line:empty::before {
        content: "\200b"
    }

.k-skeleton-rect {
    border-radius: 0;
}

.k-skeleton-circle {
    border-radius: 9999px;
}

@keyframes k-skeleton-wave {
    0% {
        transform: translateX(-100%);
    }

    60% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.k-skeleton-wave .k-skeleton, .k-skeleton-wave .k-placeholder-line, .k-skeleton-wave.k-skeleton, .k-skeleton-wave.k-placeholder-line {
    position: relative;
    overflow: hidden;
}

    .k-skeleton-wave .k-skeleton::after, .k-skeleton-wave .k-placeholder-line::after, .k-skeleton-wave.k-skeleton::after, .k-skeleton-wave.k-placeholder-line::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        transform: translateX(-100%);
        animation: k-skeleton-wave 1.6s linear .5s infinite;
    }

@keyframes k-skeleton-pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: .4;
    }

    100% {
        opacity: 1;
    }
}

.k-skeleton-pulse .k-skeleton, .k-skeleton-pulse .k-placeholder-line, .k-skeleton-pulse.k-skeleton, .k-skeleton-pulse.k-placeholder-line {
    animation: k-skeleton-pulse 1.5s ease-in-out .5s infinite;
}

.k-skeleton, .k-placeholder-line {
    background-color: rgba(66, 66, 66, 0.2);
}

.k-skeleton-wave .k-skeleton::after, .k-skeleton-wave .k-placeholder-line::after, .k-skeleton-wave.k-skeleton::after, .k-skeleton-wave.k-placeholder-line::after {
    background-image: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.04), transparent);
}

.k-button {
    box-sizing: border-box;
    border-width: 1px;
    border-style: solid;
    color: inherit;
    background: none;
    font-family: inherit;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    position: relative;
    transition: color 0.2s ease-in-out;
}

    .k-button *, .k-button *::before, .k-button *::after {
        box-sizing: border-box;
    }

    .k-button:disabled, .k-button.k-disabled {
        outline: none;
        cursor: default;
        opacity: .6;
        filter: grayscale(0.1);
        pointer-events: none;
        box-shadow: none;
    }

    .k-button::-moz-focus-inner {
        padding: 0;
        border: 0;
        outline: 0;
    }

    .k-button:hover, .k-button:focus {
        text-decoration: none;
        outline: 0;
    }

.k-icon-button {
    gap: 0;
}

    .k-icon-button .k-icon {
        display: inline-flex;
    }

.k-button-icon {
    color: inherit;
    align-self: center;
    position: relative;
}

.k-button-sm {
    padding: 2px 8px;
    font-size: 14px;
    line-height: 1.4285714286;
}

    .k-button-sm.k-icon-button {
        padding: 2px;
    }

        .k-button-sm.k-icon-button .k-button-icon {
            min-width: 20.0000000004px;
            min-height: 20.0000000004px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

            .k-button-sm.k-icon-button .k-button-icon.k-svg-icon > svg, .k-button-sm.k-icon-button .k-button-icon.k-icon-md > svg {
                width: 16px;
                height: 16px;
            }

            .k-button-sm.k-icon-button .k-button-icon.k-icon-xs > svg {
                width: 12px;
                height: 12px;
            }

            .k-button-sm.k-icon-button .k-button-icon.k-icon-sm > svg {
                width: 14px;
                height: 14px;
            }

            .k-button-sm.k-icon-button .k-button-icon.k-icon-lg > svg {
                width: 20px;
                height: 20px;
            }

            .k-button-sm.k-icon-button .k-button-icon.k-icon-xl > svg {
                width: 24px;
                height: 24px;
            }

            .k-button-sm.k-icon-button .k-button-icon.k-icon-xxl > svg {
                width: 32px;
                height: 32px;
            }

            .k-button-sm.k-icon-button .k-button-icon.k-icon-xxxl > svg {
                width: 48px;
                height: 48px;
            }

.k-button-md {
    padding: 4px 8px;
    font-size: 14px;
    line-height: 1.4285714286;
}

    .k-button-md.k-icon-button {
        padding: 4px;
    }

        .k-button-md.k-icon-button .k-button-icon {
            min-width: 20.0000000004px;
            min-height: 20.0000000004px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

            .k-button-md.k-icon-button .k-button-icon.k-svg-icon > svg, .k-button-md.k-icon-button .k-button-icon.k-icon-md > svg {
                width: 16px;
                height: 16px;
            }

            .k-button-md.k-icon-button .k-button-icon.k-icon-xs > svg {
                width: 12px;
                height: 12px;
            }

            .k-button-md.k-icon-button .k-button-icon.k-icon-sm > svg {
                width: 14px;
                height: 14px;
            }

            .k-button-md.k-icon-button .k-button-icon.k-icon-lg > svg {
                width: 20px;
                height: 20px;
            }

            .k-button-md.k-icon-button .k-button-icon.k-icon-xl > svg {
                width: 24px;
                height: 24px;
            }

            .k-button-md.k-icon-button .k-button-icon.k-icon-xxl > svg {
                width: 32px;
                height: 32px;
            }

            .k-button-md.k-icon-button .k-button-icon.k-icon-xxxl > svg {
                width: 48px;
                height: 48px;
            }

.k-button-lg {
    padding: 8px 12px;
    font-size: 16px;
    line-height: 1.5;
}

    .k-button-lg.k-icon-button {
        padding: 8px;
    }

        .k-button-lg.k-icon-button .k-button-icon {
            min-width: 24px;
            min-height: 24px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

            .k-button-lg.k-icon-button .k-button-icon.k-svg-icon > svg, .k-button-lg.k-icon-button .k-button-icon.k-icon-md > svg {
                width: 16px;
                height: 16px;
            }

            .k-button-lg.k-icon-button .k-button-icon.k-icon-xs > svg {
                width: 12px;
                height: 12px;
            }

            .k-button-lg.k-icon-button .k-button-icon.k-icon-sm > svg {
                width: 14px;
                height: 14px;
            }

            .k-button-lg.k-icon-button .k-button-icon.k-icon-lg > svg {
                width: 20px;
                height: 20px;
            }

            .k-button-lg.k-icon-button .k-button-icon.k-icon-xl > svg {
                width: 24px;
                height: 24px;
            }

            .k-button-lg.k-icon-button .k-button-icon.k-icon-xxl > svg {
                width: 32px;
                height: 32px;
            }

            .k-button-lg.k-icon-button .k-button-icon.k-icon-xxxl > svg {
                width: 48px;
                height: 48px;
            }

.k-button-square {
    aspect-ratio: 1;
}

.k-button-group {
    margin: 0;
    padding: 0;
    border-width: 0;
    box-sizing: border-box;
    list-style: none;
    outline: 0;
    display: inline-flex;
    flex-flow: row nowrap;
    vertical-align: middle;
    position: relative;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-button-group > .k-button + .k-button {
        -webkit-margin-start: -1px;
        margin-inline-start: -1px;
    }

    .k-button-group > .k-button:hover, .k-button-group > .k-button.k-hover, .k-button-group > .k-button:focus, .k-button-group > .k-button.k-focus, .k-button-group > .k-button:active, .k-button-group > .k-button.k-active, .k-button-group > .k-button.k-selected {
        z-index: 2;
    }

    .k-button-group .k-button:not(:first-child):not(:last-child) {
        border-start-end-radius: 0;
        border-end-end-radius: 0;
        border-start-start-radius: 0;
        border-end-start-radius: 0;
    }

    .k-button-group > .k-button:first-child:not(:only-child) {
        border-start-end-radius: 0;
        border-end-end-radius: 0;
    }

    .k-button-group > .k-button:last-child:not(:only-child) {
        border-start-start-radius: 0;
        border-end-start-radius: 0;
    }

    .k-button-group:disabled, .k-button-group[disabled], .k-button-group.k-disabled {
        opacity: 1;
        filter: none;
    }

.k-button-group-stretched {
    width: 100%
}

    .k-button-group-stretched > * {
        flex: 1 0 0%;
        overflow: hidden;
    }

.k-button-flat {
    border-color: transparent !important;
    color: inherit;
    background: none !important;
    box-shadow: none !important;
}

    .k-button-flat::before {
        display: block !important;
    }

    .k-button-flat::after {
        box-shadow: inset 0 0 0 2px currentColor;
        display: block !important;
    }

    .k-button-flat:focus::after, .k-button-flat.k-focus::after {
        opacity: .12;
    }

.k-button-outline {
    border-color: currentColor;
    color: inherit;
    background: none;
}

.k-button-link {
    border-color: transparent;
    color: inherit;
    text-decoration: none;
    background: none;
}

    .k-button-link:hover, .k-button-link.k-hover {
        text-decoration: underline;
    }

.k-button-clear {
    border-color: transparent !important;
    color: inherit;
    background: none !important;
    box-shadow: none !important;
}

.k-button-overlay, .k-button::before {
    border-radius: inherit;
    content: "";
    background: currentColor;
    opacity: 0;
    display: none;
    pointer-events: none;
    position: absolute;
    left: -1px;
    right: -1px;
    top: -1px;
    bottom: -1px;
    z-index: 0;
    transition: opacity .2s ease-in-out;
}

.k-button:hover::before, .k-button.k-hover::before {
    opacity: .04;
}

.k-button.k-no-focus:not(:hover)::before, .k-button.k-no-focus:not(.k-hover)::before {
    opacity: 0;
}

.k-button:active::before, .k-button.k-active::before {
    opacity: .16;
}

.k-button.k-selected::before {
    opacity: .2;
}

.k-button::after {
    border-radius: inherit;
    content: "";
    opacity: 0;
    display: none;
    pointer-events: none;
    position: absolute;
    left: -1px;
    right: -1px;
    top: -1px;
    bottom: -1px;
    z-index: 0;
    transition: opacity .2s ease-in-out;
}

.k-button-solid-base {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #f5f5f5;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
}

    .k-button-solid-base:hover, .k-button-solid-base.k-hover {
        background-color: #ebebeb;
    }

    .k-button-solid-base:focus, .k-button-solid-base.k-focus {
        box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
    }

    .k-button-solid-base:active, .k-button-solid-base.k-active {
        background-color: #d8d8d8;
    }

    .k-button-solid-base.k-selected {
        border-color: var(--themecolor);
        color: #fff;
        background-color: var(--themecolor);
    }

.k-button-solid-primary {
    border-color: var(--themecolor);
    color: #fff;
    background-color: var(--themecolor);
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
}

    .k-button-solid-primary:hover, .k-button-solid-primary.k-hover {
        border-color: #4262cf;
        background-color: #4262cf;
    }

    .k-button-solid-primary:focus, .k-button-solid-primary.k-focus {
        box-shadow: 0 0 0px 2px rgba(69, 102, 216, 0.3);
    }

    .k-button-solid-primary:active, .k-button-solid-primary.k-active {
        border-color: #3d5abe;
        background-color: #3d5abe;
    }

    .k-button-solid-primary.k-selected {
        border-color: #3d5abe;
        background-color: #3d5abe;
    }

.k-button-solid-secondary {
    border-color: #757575;
    color: #fff;
    background-color: #757575;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
}

    .k-button-solid-secondary:hover, .k-button-solid-secondary.k-hover {
        border-color: #707070;
        background-color: #707070;
    }

    .k-button-solid-secondary:focus, .k-button-solid-secondary.k-focus {
        box-shadow: 0 0 0px 2px rgba(117, 117, 117, 0.3);
    }

    .k-button-solid-secondary:active, .k-button-solid-secondary.k-active {
        border-color: #676767;
        background-color: #676767;
    }

    .k-button-solid-secondary.k-selected {
        border-color: #676767;
        background-color: #676767;
    }

.k-button-solid-tertiary {
    border-color: #03a9f4;
    color: #fff;
    background-color: #03a9f4;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
}

    .k-button-solid-tertiary:hover, .k-button-solid-tertiary.k-hover {
        border-color: #03a2ea;
        background-color: #03a2ea;
    }

    .k-button-solid-tertiary:focus, .k-button-solid-tertiary.k-focus {
        box-shadow: 0 0 0px 2px rgba(3, 169, 244, 0.3);
    }

    .k-button-solid-tertiary:active, .k-button-solid-tertiary.k-active {
        border-color: #0395d7;
        background-color: #0395d7;
    }

    .k-button-solid-tertiary.k-selected {
        border-color: #0395d7;
        background-color: #0395d7;
    }

.k-button-solid-info {
    border-color: #0058E9;
    color: #fff;
    background-color: #0058E9;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
}

    .k-button-solid-info:hover, .k-button-solid-info.k-hover {
        border-color: #0054e0;
        background-color: #0054e0;
    }

    .k-button-solid-info:focus, .k-button-solid-info.k-focus {
        box-shadow: 0 0 0px 2px rgba(0, 88, 233, 0.3);
    }

    .k-button-solid-info:active, .k-button-solid-info.k-active {
        border-color: #004dcd;
        background-color: #004dcd;
    }

    .k-button-solid-info.k-selected {
        border-color: #004dcd;
        background-color: #004dcd;
    }

.k-button-solid-success {
    border-color: #5cb85c;
    color: #fff;
    background-color: #5cb85c;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
}

    .k-button-solid-success:hover, .k-button-solid-success.k-hover {
        border-color: #58b158;
        background-color: #58b158;
    }

    .k-button-solid-success:focus, .k-button-solid-success.k-focus {
        box-shadow: 0 0 0px 2px rgba(92, 184, 92, 0.3);
    }

    .k-button-solid-success:active, .k-button-solid-success.k-active {
        border-color: #51a251;
        background-color: #51a251;
    }

    .k-button-solid-success.k-selected {
        border-color: #51a251;
        background-color: #51a251;
    }

.k-button-solid-warning {
    border-color: #F5A600;
    color: #fff;
    background-color: #F5A600;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
}

    .k-button-solid-warning:hover, .k-button-solid-warning.k-hover {
        border-color: #eb9f00;
        background-color: #eb9f00;
    }

    .k-button-solid-warning:focus, .k-button-solid-warning.k-focus {
        box-shadow: 0 0 0px 2px rgba(245, 166, 0, 0.3);
    }

    .k-button-solid-warning:active, .k-button-solid-warning.k-active {
        border-color: #d89200;
        background-color: #d89200;
    }

    .k-button-solid-warning.k-selected {
        border-color: #d89200;
        background-color: #d89200;
    }

.k-button-solid-error {
    border-color: #df5438;
    color: #fff;
    background-color: #df5438;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
}

    .k-button-solid-error:hover, .k-button-solid-error.k-hover {
        border-color: #d65136;
        background-color: #d65136;
    }

    .k-button-solid-error:focus, .k-button-solid-error.k-focus {
        box-shadow: 0 0 0px 2px rgba(223, 84, 56, 0.3);
    }

    .k-button-solid-error:active, .k-button-solid-error.k-active {
        border-color: #c44a31;
        background-color: #c44a31;
    }

    .k-button-solid-error.k-selected {
        border-color: #c44a31;
        background-color: #c44a31;
    }

.k-button-solid-dark {
    border-color: #424242;
    color: #fff;
    background-color: #424242;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
}

    .k-button-solid-dark:hover, .k-button-solid-dark.k-hover {
        border-color: #3f3f3f;
        background-color: #3f3f3f;
    }

    .k-button-solid-dark:focus, .k-button-solid-dark.k-focus {
        box-shadow: 0 0 0px 2px rgba(66, 66, 66, 0.3);
    }

    .k-button-solid-dark:active, .k-button-solid-dark.k-active {
        border-color: #3a3a3a;
        background-color: #3a3a3a;
    }

    .k-button-solid-dark.k-selected {
        border-color: #3a3a3a;
        background-color: #3a3a3a;
    }

.k-button-solid-light {
    border-color: #ebebeb;
    color: #000;
    background-color: #ebebeb;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
}

    .k-button-solid-light:hover, .k-button-solid-light.k-hover {
        border-color: #e2e2e2;
        background-color: #e2e2e2;
    }

    .k-button-solid-light:focus, .k-button-solid-light.k-focus {
        box-shadow: 0 0 0px 2px rgba(235, 235, 235, 0.3);
    }

    .k-button-solid-light:active, .k-button-solid-light.k-active {
        border-color: #cfcfcf;
        background-color: #cfcfcf;
    }

    .k-button-solid-light.k-selected {
        border-color: #cfcfcf;
        background-color: #cfcfcf;
    }

.k-button-solid-inverse {
    border-color: #424242;
    color: #fff;
    background-color: #424242;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
}

    .k-button-solid-inverse:hover, .k-button-solid-inverse.k-hover {
        border-color: #3f3f3f;
        background-color: #3f3f3f;
    }

    .k-button-solid-inverse:focus, .k-button-solid-inverse.k-focus {
        box-shadow: 0 0 0px 2px rgba(66, 66, 66, 0.3);
    }

    .k-button-solid-inverse:active, .k-button-solid-inverse.k-active {
        border-color: #3a3a3a;
        background-color: #3a3a3a;
    }

    .k-button-solid-inverse.k-selected {
        border-color: #3a3a3a;
        background-color: #3a3a3a;
    }

.k-button-outline-primary {
    box-shadow: none;
    border-color: currentColor;
    color: var(--themecolor);
    background-color: transparent;
}

    .k-button-outline-primary:hover, .k-button-outline-primary.k-hover {
        border-color: var(--themecolor);
        color: #fff;
        background-color: var(--themecolor);
    }

    .k-button-outline-primary:focus, .k-button-outline-primary.k-focus {
        box-shadow: 0 0 0px 2px rgba(69, 102, 216, 0.3);
    }

    .k-button-outline-primary:active, .k-button-outline-primary.k-active {
        border-color: var(--themecolor);
        color: #fff;
        background-color: var(--themecolor);
    }

    .k-button-outline-primary.k-selected {
        border-color: var(--themecolor);
        color: #fff;
        background-color: var(--themecolor);
    }

.k-button-outline-secondary {
    box-shadow: none;
    border-color: currentColor;
    color: #757575;
    background-color: transparent;
}

    .k-button-outline-secondary:hover, .k-button-outline-secondary.k-hover {
        border-color: #757575;
        color: #fff;
        background-color: #757575;
    }

    .k-button-outline-secondary:focus, .k-button-outline-secondary.k-focus {
        box-shadow: 0 0 0px 2px rgba(117, 117, 117, 0.3);
    }

    .k-button-outline-secondary:active, .k-button-outline-secondary.k-active {
        border-color: #757575;
        color: #fff;
        background-color: #757575;
    }

    .k-button-outline-secondary.k-selected {
        border-color: #757575;
        color: #fff;
        background-color: #757575;
    }

.k-button-outline-tertiary {
    box-shadow: none;
    border-color: currentColor;
    color: #03a9f4;
    background-color: transparent;
}

    .k-button-outline-tertiary:hover, .k-button-outline-tertiary.k-hover {
        border-color: #03a9f4;
        color: #fff;
        background-color: #03a9f4;
    }

    .k-button-outline-tertiary:focus, .k-button-outline-tertiary.k-focus {
        box-shadow: 0 0 0px 2px rgba(3, 169, 244, 0.3);
    }

    .k-button-outline-tertiary:active, .k-button-outline-tertiary.k-active {
        border-color: #03a9f4;
        color: #fff;
        background-color: #03a9f4;
    }

    .k-button-outline-tertiary.k-selected {
        border-color: #03a9f4;
        color: #fff;
        background-color: #03a9f4;
    }

.k-button-outline-info {
    box-shadow: none;
    border-color: currentColor;
    color: #0058E9;
    background-color: transparent;
}

    .k-button-outline-info:hover, .k-button-outline-info.k-hover {
        border-color: #0058E9;
        color: #fff;
        background-color: #0058E9;
    }

    .k-button-outline-info:focus, .k-button-outline-info.k-focus {
        box-shadow: 0 0 0px 2px rgba(0, 88, 233, 0.3);
    }

    .k-button-outline-info:active, .k-button-outline-info.k-active {
        border-color: #0058E9;
        color: #fff;
        background-color: #0058E9;
    }

    .k-button-outline-info.k-selected {
        border-color: #0058E9;
        color: #fff;
        background-color: #0058E9;
    }

.k-button-outline-success {
    box-shadow: none;
    border-color: currentColor;
    color: #5cb85c;
    background-color: transparent;
}

    .k-button-outline-success:hover, .k-button-outline-success.k-hover {
        border-color: #5cb85c;
        color: #fff;
        background-color: #5cb85c;
    }

    .k-button-outline-success:focus, .k-button-outline-success.k-focus {
        box-shadow: 0 0 0px 2px rgba(92, 184, 92, 0.3);
    }

    .k-button-outline-success:active, .k-button-outline-success.k-active {
        border-color: #5cb85c;
        color: #fff;
        background-color: #5cb85c;
    }

    .k-button-outline-success.k-selected {
        border-color: #5cb85c;
        color: #fff;
        background-color: #5cb85c;
    }

.k-button-outline-warning {
    box-shadow: none;
    border-color: currentColor;
    color: #F5A600;
    background-color: transparent;
}

    .k-button-outline-warning:hover, .k-button-outline-warning.k-hover {
        border-color: #F5A600;
        color: #fff;
        background-color: #F5A600;
    }

    .k-button-outline-warning:focus, .k-button-outline-warning.k-focus {
        box-shadow: 0 0 0px 2px rgba(245, 166, 0, 0.3);
    }

    .k-button-outline-warning:active, .k-button-outline-warning.k-active {
        border-color: #F5A600;
        color: #fff;
        background-color: #F5A600;
    }

    .k-button-outline-warning.k-selected {
        border-color: #F5A600;
        color: #fff;
        background-color: #F5A600;
    }

.k-button-outline-error {
    box-shadow: none;
    border-color: currentColor;
    color: #df5438;
    background-color: transparent;
}

    .k-button-outline-error:hover, .k-button-outline-error.k-hover {
        border-color: #df5438;
        color: #fff;
        background-color: #df5438;
    }

    .k-button-outline-error:focus, .k-button-outline-error.k-focus {
        box-shadow: 0 0 0px 2px rgba(223, 84, 56, 0.3);
    }

    .k-button-outline-error:active, .k-button-outline-error.k-active {
        border-color: #df5438;
        color: #fff;
        background-color: #df5438;
    }

    .k-button-outline-error.k-selected {
        border-color: #df5438;
        color: #fff;
        background-color: #df5438;
    }

.k-button-outline-dark {
    box-shadow: none;
    border-color: currentColor;
    color: #424242;
    background-color: transparent;
}

    .k-button-outline-dark:hover, .k-button-outline-dark.k-hover {
        border-color: #424242;
        color: #fff;
        background-color: #424242;
    }

    .k-button-outline-dark:focus, .k-button-outline-dark.k-focus {
        box-shadow: 0 0 0px 2px rgba(66, 66, 66, 0.3);
    }

    .k-button-outline-dark:active, .k-button-outline-dark.k-active {
        border-color: #424242;
        color: #fff;
        background-color: #424242;
    }

    .k-button-outline-dark.k-selected {
        border-color: #424242;
        color: #fff;
        background-color: #424242;
    }

.k-button-outline-light {
    box-shadow: none;
    border-color: currentColor;
    color: #ebebeb;
    background-color: transparent;
}

    .k-button-outline-light:hover, .k-button-outline-light.k-hover {
        border-color: #ebebeb;
        color: #000;
        background-color: #ebebeb;
    }

    .k-button-outline-light:focus, .k-button-outline-light.k-focus {
        box-shadow: 0 0 0px 2px rgba(235, 235, 235, 0.3);
    }

    .k-button-outline-light:active, .k-button-outline-light.k-active {
        border-color: #ebebeb;
        color: #000;
        background-color: #ebebeb;
    }

    .k-button-outline-light.k-selected {
        border-color: #ebebeb;
        color: #000;
        background-color: #ebebeb;
    }

.k-button-outline-inverse {
    box-shadow: none;
    border-color: currentColor;
    color: #424242;
    background-color: transparent;
}

    .k-button-outline-inverse:hover, .k-button-outline-inverse.k-hover {
        border-color: #424242;
        color: #fff;
        background-color: #424242;
    }

    .k-button-outline-inverse:focus, .k-button-outline-inverse.k-focus {
        box-shadow: 0 0 0px 2px rgba(66, 66, 66, 0.3);
    }

    .k-button-outline-inverse:active, .k-button-outline-inverse.k-active {
        border-color: #424242;
        color: #fff;
        background-color: #424242;
    }

    .k-button-outline-inverse.k-selected {
        border-color: #424242;
        color: #fff;
        background-color: #424242;
    }

.k-button-outline-base {
    box-shadow: none;
    border-color: currentColor;
    color: #424242;
    background-color: transparent;
}

    .k-button-outline-base:hover, .k-button-outline-base.k-hover {
        border-color: #424242;
        color: #fff;
        background-color: #424242;
    }

    .k-button-outline-base:focus, .k-button-outline-base.k-focus {
        box-shadow: 0 0 0px 2px rgba(66, 66, 66, 0.3);
    }

    .k-button-outline-base:active, .k-button-outline-base.k-active {
        border-color: #424242;
        color: #fff;
        background-color: #424242;
    }

    .k-button-outline-base.k-selected {
        border-color: #424242;
        color: #fff;
        background-color: #424242;
    }

.k-button-flat-primary {
    color: var(--themecolor);
}

.k-button-flat-secondary {
    color: #757575;
}

.k-button-flat-tertiary {
    color: #03a9f4;
}

.k-button-flat-info {
    color: #0058E9;
}

.k-button-flat-success {
    color: #5cb85c;
}

.k-button-flat-warning {
    color: #F5A600;
}

.k-button-flat-error {
    color: #df5438;
}

.k-button-flat-dark {
    color: #424242;
}

.k-button-flat-light {
    color: #ebebeb;
}

.k-button-flat-inverse {
    color: #424242;
}

.k-button-flat-base {
    color: inherit;
}

.k-button-link-primary {
    color: var(--themecolor);
}

    .k-button-link-primary:hover, .k-button-link-primary.k-hover {
        color: #3a56b5;
    }

    .k-button-link-primary:focus, .k-button-link-primary.k-focus {
        box-shadow: 0 0 0px 2px rgba(69, 102, 216, 0.3);
    }

    .k-button-link-primary:active, .k-button-link-primary.k-active {
        color: #3a56b5;
    }

    .k-button-link-primary.k-selected {
        color: #3a56b5;
    }

.k-button-link-secondary {
    color: #757575;
}

    .k-button-link-secondary:hover, .k-button-link-secondary.k-hover {
        color: #626262;
    }

    .k-button-link-secondary:focus, .k-button-link-secondary.k-focus {
        box-shadow: 0 0 0px 2px rgba(117, 117, 117, 0.3);
    }

    .k-button-link-secondary:active, .k-button-link-secondary.k-active {
        color: #626262;
    }

    .k-button-link-secondary.k-selected {
        color: #626262;
    }

.k-button-link-tertiary {
    color: #03a9f4;
}

    .k-button-link-tertiary:hover, .k-button-link-tertiary.k-hover {
        color: #038ecd;
    }

    .k-button-link-tertiary:focus, .k-button-link-tertiary.k-focus {
        box-shadow: 0 0 0px 2px rgba(3, 169, 244, 0.3);
    }

    .k-button-link-tertiary:active, .k-button-link-tertiary.k-active {
        color: #038ecd;
    }

    .k-button-link-tertiary.k-selected {
        color: #038ecd;
    }

.k-button-link-info {
    color: #0058E9;
}

    .k-button-link-info:hover, .k-button-link-info.k-hover {
        color: #004ac4;
    }

    .k-button-link-info:focus, .k-button-link-info.k-focus {
        box-shadow: 0 0 0px 2px rgba(0, 88, 233, 0.3);
    }

    .k-button-link-info:active, .k-button-link-info.k-active {
        color: #004ac4;
    }

    .k-button-link-info.k-selected {
        color: #004ac4;
    }

.k-button-link-success {
    color: #5cb85c;
}

    .k-button-link-success:hover, .k-button-link-success.k-hover {
        color: #4d9b4d;
    }

    .k-button-link-success:focus, .k-button-link-success.k-focus {
        box-shadow: 0 0 0px 2px rgba(92, 184, 92, 0.3);
    }

    .k-button-link-success:active, .k-button-link-success.k-active {
        color: #4d9b4d;
    }

    .k-button-link-success.k-selected {
        color: #4d9b4d;
    }

.k-button-link-warning {
    color: #F5A600;
}

    .k-button-link-warning:hover, .k-button-link-warning.k-hover {
        color: #ce8b00;
    }

    .k-button-link-warning:focus, .k-button-link-warning.k-focus {
        box-shadow: 0 0 0px 2px rgba(245, 166, 0, 0.3);
    }

    .k-button-link-warning:active, .k-button-link-warning.k-active {
        color: #ce8b00;
    }

    .k-button-link-warning.k-selected {
        color: #ce8b00;
    }

.k-button-link-error {
    color: #df5438;
}

    .k-button-link-error:hover, .k-button-link-error.k-hover {
        color: #bb472f;
    }

    .k-button-link-error:focus, .k-button-link-error.k-focus {
        box-shadow: 0 0 0px 2px rgba(223, 84, 56, 0.3);
    }

    .k-button-link-error:active, .k-button-link-error.k-active {
        color: #bb472f;
    }

    .k-button-link-error.k-selected {
        color: #bb472f;
    }

.k-button-link-dark {
    color: #424242;
}

    .k-button-link-dark:hover, .k-button-link-dark.k-hover {
        color: #373737;
    }

    .k-button-link-dark:focus, .k-button-link-dark.k-focus {
        box-shadow: 0 0 0px 2px rgba(66, 66, 66, 0.3);
    }

    .k-button-link-dark:active, .k-button-link-dark.k-active {
        color: #373737;
    }

    .k-button-link-dark.k-selected {
        color: #373737;
    }

.k-button-link-light {
    color: #ebebeb;
}

    .k-button-link-light:hover, .k-button-link-light.k-hover {
        color: #c5c5c5;
    }

    .k-button-link-light:focus, .k-button-link-light.k-focus {
        box-shadow: 0 0 0px 2px rgba(235, 235, 235, 0.3);
    }

    .k-button-link-light:active, .k-button-link-light.k-active {
        color: #c5c5c5;
    }

    .k-button-link-light.k-selected {
        color: #c5c5c5;
    }

.k-button-link-inverse {
    color: #424242;
}

    .k-button-link-inverse:hover, .k-button-link-inverse.k-hover {
        color: #373737;
    }

    .k-button-link-inverse:focus, .k-button-link-inverse.k-focus {
        box-shadow: 0 0 0px 2px rgba(66, 66, 66, 0.3);
    }

    .k-button-link-inverse:active, .k-button-link-inverse.k-active {
        color: #373737;
    }

    .k-button-link-inverse.k-selected {
        color: #373737;
    }

.k-button-link-base {
    color: #424242;
}

    .k-button-link-base:hover, .k-button-link-base.k-hover {
        color: #373737;
    }

    .k-button-link-base:focus, .k-button-link-base.k-focus {
        box-shadow: 0 0 0px 2px rgba(66, 66, 66, 0.3);
    }

    .k-button-link-base:active, .k-button-link-base.k-active {
        color: #373737;
    }

    .k-button-link-base.k-selected {
        color: #373737;
    }

.k-button-clear-primary {
    color: var(--themecolor);
}

    .k-button-clear-primary:focus::after, .k-button-clear-primary.k-focus::after, .k-button-clear-primary:active::after {
        background-color: currentColor;
        opacity: .1;
        display: block;
    }

.k-button-clear-secondary {
    color: #757575;
}

    .k-button-clear-secondary:focus::after, .k-button-clear-secondary.k-focus::after, .k-button-clear-secondary:active::after {
        background-color: currentColor;
        opacity: .1;
        display: block;
    }

.k-button-clear-tertiary {
    color: #03a9f4;
}

    .k-button-clear-tertiary:focus::after, .k-button-clear-tertiary.k-focus::after, .k-button-clear-tertiary:active::after {
        background-color: currentColor;
        opacity: .1;
        display: block;
    }

.k-button-clear-info {
    color: #0058E9;
}

    .k-button-clear-info:focus::after, .k-button-clear-info.k-focus::after, .k-button-clear-info:active::after {
        background-color: currentColor;
        opacity: .1;
        display: block;
    }

.k-button-clear-success {
    color: #5cb85c;
}

    .k-button-clear-success:focus::after, .k-button-clear-success.k-focus::after, .k-button-clear-success:active::after {
        background-color: currentColor;
        opacity: .1;
        display: block;
    }

.k-button-clear-warning {
    color: #F5A600;
}

    .k-button-clear-warning:focus::after, .k-button-clear-warning.k-focus::after, .k-button-clear-warning:active::after {
        background-color: currentColor;
        opacity: .1;
        display: block;
    }

.k-button-clear-error {
    color: #df5438;
}

    .k-button-clear-error:focus::after, .k-button-clear-error.k-focus::after, .k-button-clear-error:active::after {
        background-color: currentColor;
        opacity: .1;
        display: block;
    }

.k-button-clear-dark {
    color: #424242;
}

    .k-button-clear-dark:focus::after, .k-button-clear-dark.k-focus::after, .k-button-clear-dark:active::after {
        background-color: currentColor;
        opacity: .1;
        display: block;
    }

.k-button-clear-light {
    color: #ebebeb;
}

    .k-button-clear-light:focus::after, .k-button-clear-light.k-focus::after, .k-button-clear-light:active::after {
        background-color: currentColor;
        opacity: .1;
        display: block;
    }

.k-button-clear-inverse {
    color: #424242;
}

    .k-button-clear-inverse:focus::after, .k-button-clear-inverse.k-focus::after, .k-button-clear-inverse:active::after {
        background-color: currentColor;
        opacity: .1;
        display: block;
    }

.k-button-clear-base {
    color: #424242;
}

    .k-button-clear-base:focus::after, .k-button-clear-base.k-focus::after, .k-button-clear-base:active::after {
        background-color: currentColor;
        opacity: .1;
        display: block;
    }

.k-menu-bar, .k-menu {
    border-width: 0px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4285714286;
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    position: relative;
    cursor: default;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-menu-bar *, .k-menu *, .k-menu-bar *::before, .k-menu *::before, .k-menu-bar *::after, .k-menu *::after {
        box-sizing: border-box;
    }

.k-menu-item {
    border-width: 0;
    outline: 0;
    display: flex;
    flex-flow: column nowrap;
    flex: none;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.k-menu-item-content {
    display: block;
    height: auto;
    overflow: visible;
}

    .k-menu-item-content .k-actions, .k-menu-item-content .k-edit-buttons, .k-menu-item-content .k-action-buttons, .k-menu-item-content .k-columnmenu-actions, .k-menu-item-content .k-form-buttons {
        margin-top: 0;
    }

.k-menu-link {
    padding: 6px 12px;
    outline: 0;
    color: inherit;
    display: flex;
    flex-flow: row nowrap;
    flex: 1 1 auto;
    gap: 4px;
    align-items: center;
    position: relative;
    white-space: nowrap;
    cursor: pointer;
}

.k-menu-link-text {
    display: flex;
    flex-flow: row nowrap;
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
}

.k-menu-expand-arrow {
    -webkit-margin-end: -4px;
    margin-inline-end: -4px;
    display: inline-flex;
    flex-flow: row wrap;
    align-items: center;
    flex: none;
    position: relative;
}

.k-menu-horizontal {
    flex-direction: row;
}

    .k-menu-horizontal > .k-menu-item + .k-menu-item {
        margin-left: 0;
    }

    .k-menu-horizontal > .k-separator {
        margin: 0 4px;
        width: 0;
        height: auto;
        border-width: 0 0 0 1px;
        border-style: solid;
    }

.k-menu-vertical {
    flex-direction: column;
}

    .k-menu-vertical > .k-menu-item + .k-menu-item {
        margin-top: 0;
    }

    .k-menu-vertical > .k-menu-item > .k-menu-link {
        padding: 4px 8px;
        padding-right: 32px;
    }

        .k-menu-vertical > .k-menu-item > .k-menu-link > .k-menu-expand-arrow {
            -webkit-margin-start: 8px;
            margin-inline-start: 8px;
            -webkit-margin-end: -28px;
            margin-inline-end: -28px;
        }

    .k-menu-vertical > .k-separator {
        margin: 4px 0;
        height: 0;
        border-width: 1px 0 0;
        border-style: solid;
        border-color: var(--kendo-border-color);
        display: block;
    }

.k-menu-popup {
    box-sizing: border-box;
    border-width: 1px;
    border-style: solid;
    overflow: auto;
    max-height: 80vh;
}

    .k-menu-popup *, .k-menu-popup *::before, .k-menu-popup *::after {
        box-sizing: border-box;
    }

.k-menu-group {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-flow: column nowrap;
    position: absolute;
}

    .k-menu-group .k-menu-item + .k-menu-item {
        margin-top: 0px;
    }

    .k-menu-group .k-separator {
        margin: 4px 0;
        height: 0;
        border-width: 1px 0 0;
        border-style: solid;
        border-color: var(--kendo-border-color);
        display: block;
    }

.k-menu-popup .k-menu-group {
    position: relative;
}

.k-menu-group-sm {
    font-size: 14px;
    line-height: 1.4285714286;
}

    .k-menu-group-sm .k-menu-item {
        font-size: 14px;
        line-height: 1.4285714286;
    }

    .k-menu-group-sm .k-menu-link {
        padding: 2px 8px;
        -webkit-padding-end: 32px;
        padding-inline-end: 32px;
    }

    .k-menu-group-sm .k-menu-expand-arrow {
        -webkit-margin-start: 8px;
        margin-inline-start: 8px;
        -webkit-margin-end: -28px;
        margin-inline-end: -28px;
    }

.k-menu-group-md {
    font-size: 14px;
    line-height: 1.4285714286;
}

    .k-menu-group-md .k-menu-item {
        font-size: 14px;
        line-height: 1.4285714286;
    }

    .k-menu-group-md .k-menu-link {
        padding: 4px 8px;
        -webkit-padding-end: 32px;
        padding-inline-end: 32px;
    }

    .k-menu-group-md .k-menu-expand-arrow {
        -webkit-margin-start: 8px;
        margin-inline-start: 8px;
        -webkit-margin-end: -28px;
        margin-inline-end: -28px;
    }

.k-menu-group-lg {
    font-size: 14px;
    line-height: 1.4285714286;
}

    .k-menu-group-lg .k-menu-item {
        font-size: 14px;
        line-height: 1.4285714286;
    }

    .k-menu-group-lg .k-menu-link {
        padding: 6px 8px;
        -webkit-padding-end: 32px;
        padding-inline-end: 32px;
    }

    .k-menu-group-lg .k-menu-expand-arrow {
        -webkit-margin-start: 8px;
        margin-inline-start: 8px;
        -webkit-margin-end: -28px;
        margin-inline-end: -28px;
    }

.k-popups-wrapper {
    position: relative;
    border: 0;
    margin: 0;
    padding: 0;
}

.k-context-menu {
    margin: 0;
    border-width: 1px;
    border-style: solid;
}

    .k-context-menu.k-menu-horizontal {
    }

.k-animation-container .k-context-menu.k-menu-horizontal {
    display: flex !important;
    flex-wrap: nowrap;
}

.k-context-menu-popup {
    z-index: 12000;
}

    .k-context-menu-popup .k-context-menu {
        border-width: 0;
    }

    .k-popup .k-context-menu, .k-context-menu-popup .k-context-menu {
        border-width: 0;
    }

.k-menu-scroll-wrapper {
    margin: 0;
    padding: 0;
    border: 0;
    position: relative;
}

    .k-menu-scroll-wrapper .k-menu {
        overflow: hidden;
        flex-wrap: nowrap;
    }

    .k-menu-scroll-wrapper .k-menu-scroll-button {
        border-radius: 0;
        padding: 0;
        border-width: 0;
        border-color: inherit;
        color: inherit;
        background: inherit;
        position: absolute;
    }

        .k-menu-scroll-wrapper .k-menu-scroll-button.k-scroll-left {
            top: 0;
            left: 0;
            height: 100%;
            width: 16px;
            border-right-width: 1px;
        }

        .k-menu-scroll-wrapper .k-menu-scroll-button.k-scroll-right {
            top: 0;
            right: 0;
            height: 100%;
            width: 16px;
            border-left-width: 1px;
        }

        .k-menu-scroll-wrapper .k-menu-scroll-button.k-scroll-up {
            top: 0;
            left: 0;
            width: 100%;
            height: 16px;
            border-bottom-width: 1px;
        }

        .k-menu-scroll-wrapper .k-menu-scroll-button.k-scroll-down {
            bottom: 0;
            left: 0;
            width: 100%;
            height: 16px;
            border-top-width: 1px;
        }

.k-rtl .k-menu-horizontal > .k-menu-item + .k-menu-item, [dir="rtl"] .k-menu-horizontal > .k-menu-item + .k-menu-item {
    margin-right: 0;
    margin-left: 0;
}

.k-rtl .k-menu-vertical > .k-menu-item > .k-menu-link, [dir="rtl"] .k-menu-vertical > .k-menu-item > .k-menu-link {
    padding-right: 8px;
    padding-left: 32px;
}

.k-rtl .k-menu-group .k-menu-link, [dir="rtl"] .k-menu-group .k-menu-link {
    padding-right: 8px;
    padding-left: 32px;
}

.k-menu:not(.k-context-menu) {
    color: #424242;
    background-color: rgba(0, 0, 0, 0);
}

    .k-menu:not(.k-context-menu) > .k-item {
        color: var(--themecolor);
    }

        .k-menu:not(.k-context-menu) > .k-item:hover, .k-menu:not(.k-context-menu) > .k-item.k-hover {
            color: #0f6190;
        }

        .k-menu:not(.k-context-menu) > .k-item:active, .k-menu:not(.k-context-menu) > .k-item.k-active {
            color: #424242;
        }

        .k-menu:not(.k-context-menu) > .k-item:focus, .k-menu:not(.k-context-menu) > .k-item.k-focus {
            box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12);
        }

.k-menu-group, .k-menu.k-context-menu {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

    .k-menu-group .k-item > .k-link:hover, .k-menu-group .k-item > .k-link.k-hover, .k-menu.k-context-menu .k-item > .k-link:hover, .k-menu.k-context-menu .k-item > .k-link.k-hover {
        color: #424242;
        background-color: #ececec;
    }

    .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: #fff;
        background-color: var(--themecolor);
    }

    .k-menu-group .k-item:focus > .k-link, .k-menu-group .k-item.k-focus > .k-link, .k-menu.k-context-menu .k-item:focus > .k-link, .k-menu.k-context-menu .k-item.k-focus > .k-link {
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12);
    }

.k-menu-scroll-wrapper .k-menu-scroll-button {
    border-color: var(--kendo-border-color);
    color: var(--themecolor);
    background-color: #fff;
}

    .k-menu-scroll-wrapper .k-menu-scroll-button:hover {
        color: #0f6190;
    }

        .k-menu-scroll-wrapper .k-menu-scroll-button:hover::before {
            opacity: 0;
        }

.k-toolbar {
    margin: 0;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4285714286;
    list-style: none;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-toolbar::before {
        content: "";
        height: calc(1.4285714286em + 10px);
    }

    .k-toolbar.k-toolbar-resizable {
        flex-wrap: nowrap;
    }

    .k-toolbar > * {
        flex-shrink: 0;
        display: inline-flex;
        align-content: center;
        vertical-align: middle;
    }

        .k-toolbar > * > label {
            align-self: center;
        }

    .k-toolbar .k-input, .k-toolbar .k-picker {
        width: 10em;
    }

    .k-toolbar .k-color-picker, .k-toolbar .k-colorpicker {
        width: -moz-min-content;
        width: min-content;
    }

    .k-toolbar .k-toolbar-overflow-button {
        -webkit-margin-start: auto;
        margin-inline-start: auto;
    }

    .k-toolbar .k-separator, .k-toolbar .k-toolbar-separator {
        width: 0;
        height: 1.4285714286em;
        border-width: 0 0 0 1px;
        border-style: solid;
        align-self: center;
    }

    .k-toolbar .k-toolbar-spacer {
        height: 1.4285714286em;
        flex: 1 0 0%
    }

    .k-toolbar .k-toolbar-item:focus, .k-toolbar .k-toolbar-item.k-focus {
        text-decoration: none;
        outline: 0;
    }

.k-toolbar-group {
    display: flex;
    flex-direction: inherit;
    flex-wrap: nowrap;
    gap: inherit;
}

.k-toolbar-renderer {
    display: inline-block;
    border-color: inherit;
}

.k-toolbar-sm {
    padding: 4px 4px;
    gap: 6px;
}

    .k-toolbar-sm::before {
        -webkit-margin-start: -6px;
        margin-inline-start: -6px;
    }

    .k-toolbar-sm > * > label {
        -webkit-margin-end: 6px;
        margin-inline-end: 6px;
    }

.k-toolbar-md {
    padding: 8px 8px;
    gap: 8px;
}

    .k-toolbar-md::before {
        -webkit-margin-start: -8px;
        margin-inline-start: -8px;
    }

    .k-toolbar-md > * > label {
        -webkit-margin-end: 8px;
        margin-inline-end: 8px;
    }

.k-toolbar-lg {
    padding: 10px 10px;
    gap: 10px;
}

    .k-toolbar-lg::before {
        -webkit-margin-start: -10px;
        margin-inline-start: -10px;
    }

    .k-toolbar-lg > * > label {
        -webkit-margin-end: 10px;
        margin-inline-end: 10px;
    }

.k-toolbar-sm::before {
    height: calc(1.4285714286em + 6px);
}

.k-toolbar-md::before {
    height: calc(1.4285714286em + 10px);
}

.k-toolbar-lg::before {
    height: calc(1.5em + 18px);
}

.k-floating-toolbar, .editorToolbarWindow.k-window-content {
    padding: 8px 8px !important;
    border-width: 1px;
    border-style: solid;
    display: flex;
    flex-flow: row nowrap;
    gap: 8px;
    align-items: center;
}

    .k-floating-toolbar .k-toolbar, .editorToolbarWindow.k-window-content .k-toolbar {
        padding: 0;
        border-width: 0;
        flex-shrink: 1;
        color: inherit;
        background: none;
    }

.k-editortoolbar-dragHandle {
    cursor: move;
    display: flex;
    align-items: center;
    align-self: stretch;
    flex-shrink: 0;
}

.k-overflow-container {
    font-size: 14px;
    line-height: 1.4285714286;
}

    .k-overflow-container > .k-item {
        border-color: inherit;
    }

    .k-overflow-container .k-separator {
        margin: 4px 0;
    }

    .k-overflow-container .k-overflow-tool-group {
        display: block;
    }

    .k-overflow-container .k-overflow-button {
        padding: 4px 8px;
        width: 100%;
        height: auto;
        border-width: 0;
        border-radius: 0;
        aspect-ratio: auto;
        color: inherit;
        background-color: transparent;
        background-image: none;
        font: inherit;
        cursor: pointer;
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        align-content: center;
        gap: 4px;
        justify-content: flex-start;
        position: relative;
    }

    .k-overflow-container .k-button-group {
        box-shadow: none;
        display: flex;
        flex-flow: column nowrap;
    }

        .k-overflow-container .k-button-group .k-button {
            margin: 0;
        }

    .k-overflow-container .k-split-button {
        display: flex;
        flex-direction: column;
    }

    .k-overflow-container .k-overflow-hidden {
        display: none;
    }

.k-toolbar {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fafafa;
}

    .k-toolbar .k-separator, .k-toolbar .k-toolbar-separator {
        border-color: inherit;
    }

    .k-toolbar .k-toolbar-item:focus, .k-toolbar .k-toolbar-item.k-focus {
        box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
    }

.k-floating-toolbar, .editorToolbarWindow.k-window-content {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fafafa;
}

.k-overflow-container .k-button:hover, .k-overflow-container .k-button.k-hover {
    color: #424242;
    background: #ececec;
}

.k-overflow-container .k-button:focus, .k-overflow-container .k-button.k-focus {
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12);
}

.k-overflow-container .k-button:active, .k-overflow-container .k-button.k-active {
    color: #424242;
    background: #ececec;
}

.k-overflow-container .k-button.k-selected {
    color: #fff;
    background: var(--themecolor);
}

.k-overflow-container .k-button:disabled, .k-overflow-container .k-button.k-disabled {
    color: inherit;
}

.k-actions, .k-edit-buttons, .k-action-buttons, .k-columnmenu-actions, .k-form-buttons {
    padding: 8px 8px;
    box-sizing: border-box;
    border-width: 0px 0 0 0;
    border-style: solid;
    border-color: inherit;
    flex-shrink: 0;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    clear: both;
}

    .k-actions *, .k-edit-buttons *, .k-action-buttons *, .k-columnmenu-actions *, .k-form-buttons *, .k-actions *::before, .k-edit-buttons *::before, .k-action-buttons *::before, .k-columnmenu-actions *::before, .k-form-buttons *::before, .k-actions *::after, .k-edit-buttons *::after, .k-action-buttons *::after, .k-columnmenu-actions *::after, .k-form-buttons *::after {
        box-sizing: border-box;
    }

.k-popup .k-actions, .k-popup .k-edit-buttons, .k-popup .k-action-buttons, .k-popup .k-columnmenu-actions, .k-popup .k-form-buttons {
    margin-top: 16px;
}

.k-actions-start {
    justify-content: flex-start;
}

.k-actions-center {
    justify-content: center;
}

.k-actions-end {
    justify-content: flex-end;
}

.k-actions-stretched > * {
    flex: 1 0 0%
}

.k-actions-horizontal {
    width: 100%;
    flex-flow: row nowrap;
}

.k-actions-vertical {
    flex-flow: column nowrap;
}

.k-form, .k-form-inline {
    font-size: 14px;
    line-height: 1.4285714286;
}

.k-fieldset {
    margin: 30px;
    border-width: 1px 0 0;
    border-style: solid;
    padding: 25px 0 0;
}

    .k-fieldset > legend {
        margin-left: 0;
        padding: 0 8px 0 0;
        text-transform: uppercase;
    }

kendo-label > .k-label {
    margin: 0;
}

.k-label-optional {
    margin-left: 6px;
    font-size: 12px;
    font-style: italic;
    align-self: center;
}

.k-label-empty::before {
    content: "";
    display: inline-block;
}

.k-input-label {
    margin-right: 10px;
    z-index: 1;
}

    .k-input-label:dir(rtl), .k-rtl .k-input-label, .k-input-label.k-rtl, [dir="rtl"] .k-input-label, .k-input-label[dir="rtl"] {
        margin-right: 0;
        margin-left: 10px;
    }

.k-form {
    border: 0;
}

    .k-form .k-label, .k-form kendo-label, .k-form .k-form-label {
        margin-bottom: 0px;
        display: flex;
        flex-flow: row nowrap;
    }

        .k-form .k-label + .k-radio {
            margin-left: 0;
        }

    .k-form .k-form-fieldset {
        margin: 2em 0 0;
        padding: 0px;
        border: 0;
    }

        .k-form .k-form-fieldset > *:not(.k-hidden):first-child, .k-form .k-form-fieldset > *.k-hidden + :not(.k-hidden) {
            margin-top: 0;
        }

    .k-form .k-form-legend {
        margin: 0 0 1em;
        padding: 0px;
        border-width: 0 0 2px;
        border-style: solid;
        width: 100%;
        font-size: 14px;
        text-transform: uppercase;
    }

    .k-form .k-form-group {
        padding: 0;
    }

    .k-form > *:not(.k-hidden):first-child, .k-form > *.k-hidden + :not(.k-hidden) {
        margin-top: 0;
    }

    .k-form .k-form-field, .k-form .k-form-field-wrap {
        display: block;
    }

    .k-form .k-form-field-disabled .k-label, .k-form .k-form-field-disabled .k-form-label {
        outline: none;
        cursor: default;
        opacity: .6;
        filter: grayscale(0.1);
        pointer-events: none;
        box-shadow: none;
    }

    .k-form .k-alert-error {
        font-size: 12px;
        margin-top: 8px;
    }

    .k-form .k-field-info {
        display: inline-block;
        font-size: 10px;
        line-height: 1;
        margin: 0 8px;
    }

    .k-form .k-multiselect, .k-form .k-floating-label-container, .k-form .k-daterangepicker .k-dateinput, .k-form .k-signature {
        display: inline-flex;
        width: 100%
    }

.k-form-buttons {
    padding: 0;
    overflow: visible;
}

.k-form-hint, .k-form-error {
    margin-top: 4px;
    display: flex;
    font-size: 12px;
    font-style: italic;
}

.k-text-start, .k-buttons-start {
    justify-content: flex-start;
}

.k-text-end, .k-buttons-end {
    justify-content: flex-end;
}

.k-form-separator {
    margin: 14px 0 0;
    border-width: 1px 0 0;
    border-style: solid;
    display: block;
    flex: 0 0 auto;
}

.k-form-horizontal .k-form-field {
    display: flex;
}

    .k-form-horizontal .k-form-field > .k-label, .k-form-horizontal .k-form-field > kendo-label, .k-form-horizontal .k-form-field > .k-form-label {
        margin-right: 10px;
        padding-top: 5px;
        width: 25%;
        text-align: end;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-start;
    }

    .k-form-horizontal .k-form-field .k-label-optional {
        margin: 0;
        align-self: inherit;
    }

.k-form-horizontal .k-form-field-wrap {
    max-width: calc(75% - 10px);
    flex: 1 1 auto;
}

.k-form [dir="rtl"] .k-label-optional, .k-rtl .k-form .k-label-optional {
    margin-left: 0;
    margin-right: 6px;
}

.k-form-horizontal [dir="rtl"].k-form-field > .k-label, .k-form-horizontal [dir="rtl"].k-form-field > kendo-label, .k-form-horizontal [dir="rtl"].k-form-field > .k-form-label, .k-form-horizontal [dir="rtl"] .k-form-field > .k-label, .k-form-horizontal [dir="rtl"] .k-form-field > kendo-label, .k-form-horizontal [dir="rtl"] .k-form-field > .k-form-label, .k-rtl .k-form-horizontal.k-form-field > .k-label, .k-rtl .k-form-horizontal.k-form-field > kendo-label, .k-rtl .k-form-horizontal.k-form-field > .k-form-label, .k-rtl .k-form-horizontal .k-form-field > .k-label, .k-rtl .k-form-horizontal .k-form-field > kendo-label, .k-rtl .k-form-horizontal .k-form-field > .k-form-label {
    margin-right: 0;
    margin-left: 10px;
}

.k-form-sm .k-form-field, .k-form-sm .k-form-buttons {
    margin-top: 10px;
}

.k-form-md .k-form-field, .k-form-md .k-form-buttons {
    margin-top: 14px;
}

.k-form-lg .k-form-field, .k-form-lg .k-form-buttons {
    margin-top: 18px;
}

.k-form-inline {
    padding: 16px;
}

    .k-form-inline fieldset {
        border-width: 1px 0 0;
        border-style: solid;
        margin: 32px 0;
        padding: 0;
    }

        .k-form-inline fieldset:first-child:first-of-type {
            margin-top: 0;
        }

        .k-form-inline fieldset:last-child:last-of-type {
            margin-bottom: 0;
        }

    .k-form-inline legend {
        font-size: 12px;
        text-align: left;
        font-weight: 600;
        line-height: 1;
        margin-bottom: 12px;
        text-transform: uppercase;
        padding: 0 8px 0 0;
        width: auto;
    }

    .k-form-inline .k-form-field {
        display: flex;
        align-items: flex-start;
        text-align: left;
        margin-bottom: 12px;
    }

        .k-form-inline .k-form-field > span:not(.k-widget) {
            width: 25%;
            text-align: right;
            line-height: 1.4285714286;
            padding: 5px 0;
            padding-right: 12px;
            align-self: center;
        }

        .k-form-inline .k-form-field > input {
            align-self: center;
        }

            .k-form-inline .k-form-field > input:not(.k-checkbox):not(.k-radio) {
                flex: 1 1 auto;
            }

        .k-form-inline .k-form-field .k-alert-error {
            font-size: 12px;
            margin-top: 8px;
        }

        .k-form-inline .k-form-field .k-field-info {
            display: block;
            font-size: 10px;
            line-height: 1;
            margin: 0;
        }

        .k-form-inline .k-form-field:last-child {
            margin-bottom: 0;
        }

.k-edit-form-container {
    width: 400px;
    min-width: 400px;
    border-color: inherit;
    position: relative;
}

    .k-popup-edit-form > .k-actions, .k-popup-edit-form > .k-edit-buttons, .k-popup-edit-form > .k-action-buttons, .k-popup-edit-form > .k-columnmenu-actions, .k-popup-edit-form > .k-form-buttons, .k-edit-form-container .k-actions, .k-edit-form-container .k-edit-buttons, .k-edit-form-container .k-action-buttons, .k-edit-form-container .k-columnmenu-actions, .k-edit-form-container .k-form-buttons {
        margin: 16px -16px -16px;
    }

.k-edit-label {
    margin: 0 0 16px 0;
    padding: 5px 0;
    width: 30%;
    line-height: 1.4285714286;
    text-align: right;
    float: left;
    clear: both;
}

.k-edit-field {
    margin: 0 0 16px 0;
    width: 65%;
    float: right;
    clear: right;
    position: relative;
}

    .k-edit-field.k-no-editor {
        padding: 5px 0;
    }

    .k-edit-field > .k-widget {
        width: 100%;
        box-sizing: border-box;
    }

    .k-edit-field input[type="radio"]:not(.k-radio), .k-edit-field input[type="checkbox"]:not(.k-checkbox) {
        margin-right: .4ex;
    }

    .k-edit-field .k-radio-label, .k-edit-field .k-checkbox-label {
        margin-right: 16px;
    }

    .k-edit-field > .k-reset > li + li {
        margin-top: 8px;
    }

    .k-edit-field .k-reset .k-widget {
        margin: 0 .4ex 0 1ex;
    }

.k-form, .k-form-inline {
    color: #424242;
}

    .k-form fieldset legend, .k-form-inline fieldset legend {
        color: #373737;
    }

    .k-form .k-form-legend, .k-form-inline .k-form-legend {
        border-color: var(--kendo-border-color);
    }

    .k-form .k-field-info, .k-form-inline .k-field-info {
        color: #666;
    }

    .k-form .k-alert-error, .k-form-inline .k-alert-error {
        color: #df5438;
    }

.k-form-error, .k-text-error, .k-form-field-error .k-label {
    color: #df5438;
}

.k-form-separator {
    border-color: var(--kendo-border-color);
}

.k-tooltip {
    border-radius: 4px;
    margin: 0;
    padding: 4px 8px;
    border-width: 0px;
    border-style: solid;
    box-sizing: border-box;
    background-repeat: repeat-x;
    outline: 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.25;
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    position: absolute;
    z-index: 12000;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-tooltip *, .k-tooltip *::before, .k-tooltip *::after {
        box-sizing: border-box;
    }

.k-tooltip-icon {
    -webkit-margin-end: 4px;
    margin-inline-end: 4px;
    flex-shrink: 0;
}

.k-tooltip-title {
    margin-bottom: .25em;
    font-size: 17.5px;
    line-height: 1;
}

.k-tooltip-content {
    align-self: stretch;
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
}

.k-tooltip-button {
    -webkit-margin-start: 4px;
    margin-inline-start: 4px;
    flex-shrink: 0;
}

    .k-tooltip-button .k-icon {
        color: inherit;
        vertical-align: top;
    }

.k-callout {
    width: 12px;
    height: 12px;
    border-width: 6px;
    border-style: solid;
    border-color: transparent;
    position: absolute;
    pointer-events: none;
}

.k-callout-n {
    margin-left: -6px;
    border-bottom-color: currentColor;
    top: -12px;
    left: 50%;
    pointer-events: none;
}

.k-callout-e {
    margin-top: -6px;
    border-left-color: currentColor;
    top: 50%;
    right: -12px;
    pointer-events: none;
}

.k-callout-s {
    margin-left: -6px;
    border-top-color: currentColor;
    bottom: -12px;
    left: 50%;
    pointer-events: none;
}

.k-callout-w {
    margin-top: -6px;
    border-right-color: currentColor;
    top: 50%;
    left: -12px;
    pointer-events: none;
}

.k-tooltip-wrapper .k-tooltip {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.03), 0 4px 5px 0 rgba(0, 0, 0, 0.04);
}

.k-tooltip {
    border-color: rgba(0, 0, 0, 0.75);
    color: #fff;
    background-color: rgba(0, 0, 0, 0.75);
}

    .k-tooltip .k-callout {
        color: rgba(0, 0, 0, 0.75);
    }

.k-tooltip-primary {
    border-color: var(--themecolor);
    color: #fff;
    background-color: var(--themecolor);
}

    .k-tooltip-primary .k-callout {
        color: var(--themecolor);
    }

.k-tooltip-info {
    border-color: #0058E9;
    color: #fff;
    background-color: #0058E9;
}

    .k-tooltip-info .k-callout {
        color: #0058E9;
    }

.k-tooltip-success {
    border-color: #5cb85c;
    color: #fff;
    background-color: #5cb85c;
}

    .k-tooltip-success .k-callout {
        color: #5cb85c;
    }

.k-tooltip-warning {
    border-color: #F5A600;
    color: #fff;
    background-color: #F5A600;
}

    .k-tooltip-warning .k-callout {
        color: #F5A600;
    }

.k-tooltip-error {
    border-color: #df5438;
    color: #fff;
    background-color: #df5438;
}

    .k-tooltip-error .k-callout {
        color: #df5438;
    }

.k-validator-tooltip {
    margin-top: 6px;
    width: auto;
    white-space: normal;
    display: flex;
    align-items: center;
    z-index: 9999;
}

.k-grid .k-validator-tooltip {
    max-width: 300px;
}

.k-input, .k-picker {
    margin: 0;
    padding: 0;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    border-width: 1px;
    border-style: solid;
    outline: 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4285714286;
    font-weight: normal;
    text-align: start;
    box-shadow: none;
    display: inline-flex;
    flex-flow: row nowrap;
    align-items: stretch;
    vertical-align: middle;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-appearance: none;
}

    .k-input *, .k-input *::before, .k-input *::after, .k-picker *, .k-picker *::before, .k-picker *::after {
        box-sizing: border-box;
    }

    .k-input .k-input, .k-input .k-picker, .k-picker .k-input, .k-picker .k-picker {
        border-width: 0 !important;
        color: inherit;
        background: none;
        font: inherit;
        outline: 0;
        box-shadow: none;
    }

    .k-input > *, .k-picker > * {
        margin: 0;
    }

    .k-input::-moz-placeholder, .k-picker::-moz-placeholder {
        color: #666;
        opacity: 1;
        -moz-user-select: none;
        user-select: none;
    }

    .k-input::placeholder, .k-picker::placeholder {
        color: #666;
        opacity: 1;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
    }

input.k-input, textarea.k-textarea {
    padding: 4px 8px;
}

    input.k-input:disabled, input.k-input[disabled], textarea.k-textarea:disabled, textarea.k-textarea[disabled] {
        outline: none;
        cursor: default;
        opacity: .6;
        filter: grayscale(0.1);
        pointer-events: none;
        box-shadow: none;
    }

[disabled] input.k-input:disabled, .k-disabled input.k-input:disabled, [disabled] input.k-input[disabled], .k-disabled input.k-input[disabled], [disabled] textarea.k-textarea:disabled, .k-disabled textarea.k-textarea:disabled, [disabled] textarea.k-textarea[disabled], .k-disabled textarea.k-textarea[disabled] {
    opacity: 1;
    filter: grayscale(0);
}

textarea.k-textarea {
    overflow: auto;
}

.k-picker {
    cursor: pointer;
}

select.k-picker {
    padding: 4px 8px;
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
}

    select.k-picker:disabled, select.k-picker[disabled] {
        outline: none;
        cursor: default;
        opacity: .6;
        filter: grayscale(0.1);
        pointer-events: none;
        box-shadow: none;
    }

[disabled] select.k-picker:disabled, .k-disabled select.k-picker:disabled, [disabled] select.k-picker[disabled], .k-disabled select.k-picker[disabled] {
    opacity: 1;
    filter: grayscale(0);
}

.k-input-inner {
    padding: 4px 8px;
    width: 100%;
    border: 0;
    outline: 0;
    color: inherit;
    background: none;
    font: inherit;
    flex: 1;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-appearance: none;
}

    .k-input-inner::-moz-placeholder {
        color: #666;
        opacity: 1;
        -moz-user-select: none;
        user-select: none;
    }

    .k-input-inner::placeholder {
        color: #666;
        opacity: 1;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
    }

    .k-input-inner:invalid {
        box-shadow: none;
    }

span.k-input-inner {
    white-space: nowrap;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

textarea.k-input-inner {
    margin: 0;
}

.k-input-value-icon {
    flex: none;
}

.k-input-value-text {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .k-input-value-text::before {
        content: "\200b";
        width: 0px;
        overflow: hidden;
        flex: none;
        display: inline-block;
        vertical-align: top;
    }

.k-input-values {
    min-width: 0px;
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    cursor: text;
}

    .k-input-values .k-chip-list {
        display: contents;
    }

.k-icon-picker .k-input-inner {
    padding: 4px;
    justify-content: center;
}

.k-input-prefix, .k-input-suffix {
    border-color: inherit;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    flex: none;
}

    .k-input-prefix > *, .k-input-suffix > * {
        flex-shrink: 0;
    }

.k-input-separator {
    margin: 0;
    width: 0;
    height: 16px;
    border-width: 0 0 0 1px;
    border-style: solid;
    border-color: inherit;
    align-self: center;
}

.k-input-icon, .k-input-validation-icon, .k-input-loading-icon, .k-input-prefix > .k-icon, .k-input-suffix > .k-icon {
    flex: none;
    align-self: center;
    display: inline-flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
}

    .k-input-icon.k-svg-icon > svg, .k-input-icon.k-icon-md > svg, .k-input-validation-icon.k-svg-icon > svg, .k-input-validation-icon.k-icon-md > svg, .k-input-loading-icon.k-svg-icon > svg, .k-input-loading-icon.k-icon-md > svg {
        width: 16px;
        height: 16px;
    }

    .k-input-icon.k-icon-xs > svg, .k-input-validation-icon.k-icon-xs > svg, .k-input-loading-icon.k-icon-xs > svg {
        width: 12px;
        height: 12px;
    }

    .k-input-icon.k-icon-sm > svg, .k-input-validation-icon.k-icon-sm > svg, .k-input-loading-icon.k-icon-sm > svg {
        width: 14px;
        height: 14px;
    }

    .k-input-icon.k-icon-lg > svg, .k-input-validation-icon.k-icon-lg > svg, .k-input-loading-icon.k-icon-lg > svg {
        width: 20px;
        height: 20px;
    }

    .k-input-icon.k-icon-xl > svg, .k-input-validation-icon.k-icon-xl > svg, .k-input-loading-icon.k-icon-xl > svg {
        width: 24px;
        height: 24px;
    }

    .k-input-icon.k-icon-xxl > svg, .k-input-validation-icon.k-icon-xxl > svg, .k-input-loading-icon.k-icon-xxl > svg {
        width: 32px;
        height: 32px;
    }

    .k-input-icon.k-icon-xxxl > svg, .k-input-validation-icon.k-icon-xxxl > svg, .k-input-loading-icon.k-icon-xxxl > svg {
        width: 48px;
        height: 48px;
    }

.k-clear-value {
    outline: 0;
    flex: none;
    align-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: .5;
}

    .k-clear-value:hover, .k-clear-value.k-hover {
        opacity: 1;
    }

    .k-clear-value:focus-visible {
        outline: 1px dotted;
        outline-offset: -1px;
    }

.k-input-button {
    width: calc(1.4285714286em + 8px);
    border-width: 0;
    border-inline-start-width: 1px;
    flex: none;
    aspect-ratio: auto;
    box-shadow: none;
}

    .k-input-button > .k-button-icon {
        min-width: auto !important;
    }

    .k-input-button:focus {
        box-shadow: none;
    }

.k-picker .k-input-button {
    color: inherit;
    background: none;
    border-color: transparent;
}

.k-input-spinner {
    width: calc(1.4285714286em + 8px);
    flex: none;
    display: flex;
    flex-flow: column nowrap;
}

    .k-input-spinner .k-spinner-increase, .k-input-spinner .k-spinner-decrease {
        border-width: 0;
        border-inline-start-width: 1px;
        flex: 1 1 50%;
        box-shadow: none;
        position: relative;
        aspect-ratio: auto;
    }

        .k-input-spinner .k-spinner-increase .k-button-icon, .k-input-spinner .k-spinner-decrease .k-button-icon {
            margin: -1em 0;
            min-width: auto !important;
            min-height: auto !important;
        }

        .k-input-spinner .k-spinner-increase .k-icon {
            bottom: auto;
        }

        .k-input-spinner .k-spinner-decrease .k-icon {
            top: auto;
        }

.k-searchbar {
    flex: 1 1 auto;
    display: flex;
    flex-flow: row nowrap;
}

.k-picker-wrap, .k-dropdown-wrap, .k-dateinput-wrap, .k-multiselect-wrap, .k-numeric-wrap {
    width: 100%;
    border-width: 0;
    border-color: inherit;
    box-sizing: border-box;
    flex: 1 1 auto;
    display: flex;
    flex-flow: row nowrap;
    overflow: hidden;
    position: relative;
}

.k-input-flat, .k-picker-flat {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-width: 1px 0;
    border-top-color: transparent !important;
    background-image: none !important;
}

.k-input-outline {
    background: none !important;
}

.k-input-sm, .k-picker-sm {
    font-size: 14px;
    line-height: 1.4285714286;
}

    .k-input-sm .k-input-values, .k-picker-sm .k-input-values {
        padding: 1px;
        gap: 1px;
    }

        .k-input-sm .k-input-values > .k-searchbar, .k-input-sm .k-input-values > .k-input-inner, .k-picker-sm .k-input-values > .k-searchbar, .k-picker-sm .k-input-values > .k-input-inner {
            margin: -1px;
        }

    .k-input-sm .k-input-inner, .k-picker-sm .k-input-inner {
        padding: 2px 8px;
    }

    .k-input-sm .k-input-button, .k-input-sm .k-spinner-increase, .k-input-sm .k-spinner-decrease, .k-picker-sm .k-input-button, .k-picker-sm .k-spinner-increase, .k-picker-sm .k-spinner-decrease {
        padding: 2px 2px;
    }

    .k-input-sm .k-input-icon, .k-input-sm .k-input-validation-icon, .k-input-sm .k-input-loading-icon, .k-input-sm .k-clear-value, .k-input-sm .k-input-prefix > .k-icon, .k-input-sm .k-input-suffix > .k-icon, .k-picker-sm .k-input-icon, .k-picker-sm .k-input-validation-icon, .k-picker-sm .k-input-loading-icon, .k-picker-sm .k-clear-value, .k-picker-sm .k-input-prefix > .k-icon, .k-picker-sm .k-input-suffix > .k-icon {
        width: 20px;
        height: 20px;
    }

    .k-input-sm.k-icon-picker .k-input-inner, .k-picker-sm.k-icon-picker .k-input-inner {
        width: 1.4285714286em;
        height: 1.4285714286em;
        padding: 2px;
        box-sizing: content-box;
    }

.k-dropdown-operator.k-picker-sm .k-input-button {
    padding: 2px;
}

select.k-picker-sm {
    padding: 2px 8px;
}

.k-input-md, .k-picker-md {
    font-size: 14px;
    line-height: 1.4285714286;
}

    .k-input-md .k-input-values, .k-picker-md .k-input-values {
        padding: 2px;
        gap: 2px;
    }

        .k-input-md .k-input-values > .k-searchbar, .k-input-md .k-input-values > .k-input-inner, .k-picker-md .k-input-values > .k-searchbar, .k-picker-md .k-input-values > .k-input-inner {
            margin: -2px;
        }

    .k-input-md .k-input-inner, .k-picker-md .k-input-inner {
        padding: 4px 8px;
    }

    .k-input-md .k-input-button, .k-input-md .k-spinner-increase, .k-input-md .k-spinner-decrease, .k-picker-md .k-input-button, .k-picker-md .k-spinner-increase, .k-picker-md .k-spinner-decrease {
        padding: 4px 4px;
    }

    .k-input-md .k-input-icon, .k-input-md .k-input-validation-icon, .k-input-md .k-input-loading-icon, .k-input-md .k-clear-value, .k-input-md .k-input-prefix > .k-icon, .k-input-md .k-input-suffix > .k-icon, .k-picker-md .k-input-icon, .k-picker-md .k-input-validation-icon, .k-picker-md .k-input-loading-icon, .k-picker-md .k-clear-value, .k-picker-md .k-input-prefix > .k-icon, .k-picker-md .k-input-suffix > .k-icon {
        width: 24px;
        height: 24px;
    }

    .k-input-md.k-icon-picker .k-input-inner, .k-picker-md.k-icon-picker .k-input-inner {
        width: 1.4285714286em;
        height: 1.4285714286em;
        padding: 4px;
        box-sizing: content-box;
    }

.k-dropdown-operator.k-picker-md .k-input-button {
    padding: 4px;
}

select.k-picker-md {
    padding: 4px 8px;
}

.k-input-lg, .k-picker-lg {
    font-size: 16px;
    line-height: 1.5;
}

    .k-input-lg .k-input-values, .k-picker-lg .k-input-values {
        padding: 4px;
        gap: 4px;
    }

        .k-input-lg .k-input-values > .k-searchbar, .k-input-lg .k-input-values > .k-input-inner, .k-picker-lg .k-input-values > .k-searchbar, .k-picker-lg .k-input-values > .k-input-inner {
            margin: -4px;
        }

    .k-input-lg .k-input-inner, .k-picker-lg .k-input-inner {
        padding: 8px 12px;
    }

    .k-input-lg .k-input-button, .k-input-lg .k-spinner-increase, .k-input-lg .k-spinner-decrease, .k-picker-lg .k-input-button, .k-picker-lg .k-spinner-increase, .k-picker-lg .k-spinner-decrease {
        padding: 8px 8px;
    }

    .k-input-lg .k-input-icon, .k-input-lg .k-input-validation-icon, .k-input-lg .k-input-loading-icon, .k-input-lg .k-clear-value, .k-input-lg .k-input-prefix > .k-icon, .k-input-lg .k-input-suffix > .k-icon, .k-picker-lg .k-input-icon, .k-picker-lg .k-input-validation-icon, .k-picker-lg .k-input-loading-icon, .k-picker-lg .k-clear-value, .k-picker-lg .k-input-prefix > .k-icon, .k-picker-lg .k-input-suffix > .k-icon {
        width: 32px;
        height: 32px;
    }

    .k-input-lg.k-icon-picker .k-input-inner, .k-picker-lg.k-icon-picker .k-input-inner {
        width: 1.5em;
        height: 1.5em;
        padding: 8px;
        box-sizing: content-box;
    }

.k-dropdown-operator.k-picker-lg .k-input-button {
    padding: 8px;
}

select.k-picker-lg {
    padding: 8px 12px;
}

.k-input > kendo-popup, .k-picker > kendo-popup {
    position: fixed;
}

@keyframes autoFillStart {
    from {
    }

    to {
    }
}

@keyframes autoFillEnd {
    from {
    }

    to {
    }
}

.k-autofill: -webkit-autofill {
    animation-name: autoFillStart;
}

.k-autofill:not(:-webkit-autofill) {
    animation-name: autoFillEnd;
}

.k-input:-webkit-autofill {
    animation-name: autoFillStart;
}

.k-input:not(:-webkit-autofill) {
    animation-name: autoFillEnd;
}

.k-input-solid {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

    .k-input-solid:hover, .k-input-solid.k-hover {
        border-color: rgba(0, 0, 0, 0.16);
    }

    .k-input-solid:focus, .k-input-solid.k-focus {
        border-color: rgba(0, 0, 0, 0.16);
        box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
    }

    .k-input-solid:focus-within {
        border-color: rgba(0, 0, 0, 0.16);
        box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
    }

    .k-input-solid.k-invalid, .k-input-solid.ng-invalid.ng-touched, .k-input-solid.ng-invalid.ng-dirty {
        border-color: #df5438;
    }

        .k-input-solid.k-invalid .k-input-validation-icon, .k-input-solid.ng-invalid.ng-touched .k-input-validation-icon, .k-input-solid.ng-invalid.ng-dirty .k-input-validation-icon {
            color: #df5438;
        }

.k-picker-solid {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #f5f5f5;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
}

    .k-picker-solid:hover, .k-picker-solid.k-hover {
        background-color: #ebebeb;
    }

    .k-picker-solid:focus, .k-picker-solid.k-focus {
        box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
    }

    .k-picker-solid:focus-within {
        box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
    }

    .k-picker-solid.k-invalid, .k-picker-solid.ng-invalid.ng-touched, .k-picker-solid.ng-invalid.ng-dirty {
        border-color: #df5438;
    }

        .k-picker-solid.k-invalid .k-input-validation-icon, .k-picker-solid.ng-invalid.ng-touched .k-input-validation-icon, .k-picker-solid.ng-invalid.ng-dirty .k-input-validation-icon {
            color: #df5438;
        }

.k-input-outline {
    border-color: rgba(66, 66, 66, 0.5);
    color: #424242;
}

    .k-input-outline > .k-input-button {
        border-color: inherit;
    }

    .k-input-outline > .k-input-spinner {
        border-color: inherit;
    }

        .k-input-outline > .k-input-spinner > .k-spinner-increase, .k-input-outline > .k-input-spinner > .k-spinner-decrease {
            border-color: inherit;
        }

    .k-input-outline:hover, .k-input-outline.k-hover {
        border-color: rgba(66, 66, 66, 0.8);
    }

    .k-input-outline:focus, .k-input-outline.k-focus {
        box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
    }

    .k-input-outline:focus-within {
        box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
    }

    .k-input-outline.k-invalid, .k-input-outline.ng-invalid.ng-touched, .k-input-outline.ng-invalid.ng-dirty {
        border-color: #df5438;
    }

        .k-input-outline.k-invalid .k-input-validation-icon, .k-input-outline.ng-invalid.ng-touched .k-input-validation-icon, .k-input-outline.ng-invalid.ng-dirty .k-input-validation-icon {
            color: #df5438;
        }

.k-picker-outline {
    border-color: rgba(66, 66, 66, 0.5);
    color: #424242;
}

    .k-picker-outline:hover, .k-picker-outline.k-hover {
        border-color: #424242;
        color: #fff;
        background-color: #424242;
    }

    .k-picker-outline:focus, .k-picker-outline.k-focus {
        box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
    }

    .k-picker-outline:focus-within {
        box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
    }

    .k-picker-outline.k-invalid, .k-picker-outline.ng-invalid.ng-touched, .k-picker-outline.ng-invalid.ng-dirty {
        border-color: #df5438;
    }

        .k-picker-outline.k-invalid .k-input-validation-icon, .k-picker-outline.ng-invalid.ng-touched .k-input-validation-icon, .k-picker-outline.ng-invalid.ng-dirty .k-input-validation-icon {
            color: #df5438;
        }

.k-input-flat {
    border-color: var(--kendo-border-color);
    color: #424242;
}

    .k-input-flat:hover, .k-input-flat.k-hover {
        border-color: rgba(0, 0, 0, 0.16);
    }

    .k-input-flat:focus, .k-input-flat.k-focus {
        box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
    }

    .k-input-flat:focus-within {
        box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
    }

    .k-input-flat.k-invalid, .k-input-flat.ng-invalid.ng-touched, .k-input-flat.ng-invalid.ng-dirty {
        border-color: #df5438;
    }

        .k-input-flat.k-invalid .k-input-validation-icon, .k-input-flat.ng-invalid.ng-touched .k-input-validation-icon, .k-input-flat.ng-invalid.ng-dirty .k-input-validation-icon {
            color: #df5438;
        }

.k-picker-flat {
    border-color: var(--kendo-border-color);
    color: #424242;
}

    .k-picker-flat:hover, .k-picker-flat.k-hover {
        border-color: rgba(0, 0, 0, 0.16);
        background-color: rgba(66, 66, 66, 0.04);
    }

    .k-picker-flat:focus, .k-picker-flat.k-focus {
        box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
    }

    .k-picker-flat:focus-within {
        box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
    }

    .k-picker-flat.k-invalid, .k-picker-flat.ng-invalid.ng-touched, .k-picker-flat.ng-invalid.ng-dirty {
        border-color: #df5438;
    }

        .k-picker-flat.k-invalid .k-input-validation-icon, .k-picker-flat.ng-invalid.ng-touched .k-input-validation-icon, .k-picker-flat.ng-invalid.ng-dirty .k-input-validation-icon {
            color: #df5438;
        }

.k-floating-label-container {
    padding-top: 20.0000000004px;
    box-sizing: border-box;
    display: inline-flex;
    vertical-align: middle;
    position: relative;
    flex-direction: column;
    justify-content: stretch;
}

    .k-floating-label-container *, .k-floating-label-container *::before, .k-floating-label-container *::after {
        box-sizing: border-box;
    }

    .k-floating-label-container > .k-label {
        max-width: 90%;
        font-size: 14px;
        line-height: 1.4285714286;
        white-space: nowrap;
        text-overflow: ellipsis;
        position: absolute;
        top: 25.0000000004px;
        left: 9px;
        overflow: hidden;
        cursor: text;
        transform-origin: left center;
        transition: transform 0.2s ease-out, color 0.2s ease-out, top 0.2s ease-out, left 0.2s ease-out;
    }

    .k-floating-label-container > .k-widget {
        flex: 1 1 auto;
        width: auto;
    }

    .k-floating-label-container.k-empty > .k-label {
        top: 25.0000000004px;
        left: 9px;
        transform: scale(1);
        pointer-events: none;
    }

    .k-floating-label-container > .k-label, .k-floating-label-container.k-focus > .k-label {
        top: 0;
        left: 0;
        transform: scale(1);
    }

    .k-floating-label-container:focus-within > .k-label {
        top: 0;
        left: 0;
        transform: scale(1);
    }

    .k-floating-label-container.k-empty:not(.k-focus):not(:focus-within) ::-moz-placeholder {
        color: transparent;
    }

    .k-floating-label-container.k-empty:not(.k-focus):not(:focus-within) ::placeholder {
        color: transparent;
    }

    [dir="rtl"] .k-floating-label-container > .k-label, .k-rtl .k-floating-label-container > .k-label, .k-floating-label-container[dir="rtl"] > .k-label {
        transform-origin: right center;
        transition: transform 0.2s ease-out, color 0.2s ease-out, top 0.2s ease-out, right 0.2s ease-out;
    }

    [dir="rtl"] .k-floating-label-container.k-empty > .k-label, .k-rtl .k-floating-label-container.k-empty > .k-label, .k-floating-label-container[dir="rtl"].k-empty > .k-label {
        left: auto;
        right: 9px;
    }

    [dir="rtl"] .k-floating-label-container > .k-label, [dir="rtl"] .k-floating-label-container.k-focus > .k-label, .k-rtl .k-floating-label-container > .k-label, .k-rtl .k-floating-label-container.k-focus > .k-label, .k-floating-label-container[dir="rtl"] > .k-label, .k-floating-label-container[dir="rtl"].k-focus > .k-label {
        left: auto;
        right: 0;
    }

    [dir="rtl"] .k-floating-label-container:focus-within > .k-label, .k-rtl .k-floating-label-container:focus-within > .k-label, .k-floating-label-container[dir="rtl"]:focus-within > .k-label {
        left: auto;
        right: 0;
    }

.k-split-button .k-split-button-arrow {
    padding: 4px 4px;
    width: auto;
    aspect-ratio: auto;
    flex: none;
}

    .k-split-button .k-split-button-arrow.k-button-sm {
        padding: 2px 2px;
    }

    .k-split-button .k-split-button-arrow.k-button-md {
        padding: 4px 4px;
    }

    .k-split-button .k-split-button-arrow.k-button-lg {
        padding: 8px 8px;
    }

    .k-split-button .k-split-button-arrow .k-button-icon {
        min-width: 0;
    }

.k-split-button:focus, .k-split-button.k-focus {
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
}

.k-menu-button, .k-dropdown-button {
    aspect-ratio: auto;
    outline: 0;
    display: inline-flex;
    flex-flow: row nowrap;
    vertical-align: middle;
}

    .k-menu-button > .k-button-arrow, .k-dropdown-button > .k-button-arrow {
        -webkit-margin-start: -4px;
        margin-inline-start: -4px;
        -webkit-margin-end: -8px;
        margin-inline-end: -8px;
        padding-left: 4px;
        padding-right: 4px;
        flex: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .k-menu-button.k-icon-button > .k-button-arrow, .k-dropdown-button.k-icon-button > .k-button-arrow {
        -webkit-margin-start: 0;
        margin-inline-start: 0;
        -webkit-margin-end: -4px;
        margin-inline-end: -4px;
    }

.k-listbox {
    width: 10em;
    height: 200px;
    border-width: 0;
    outline: 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4285714286;
    vertical-align: top;
    background-color: transparent;
    display: inline-flex;
    gap: 8px;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-listbox .k-listbox-actions {
        display: flex;
        gap: 8px;
    }

    .k-listbox.k-listbox-actions-left, .k-listbox.k-listbox-actions-right {
        flex-direction: row;
    }

        .k-listbox.k-listbox-actions-left .k-listbox-actions, .k-listbox.k-listbox-actions-right .k-listbox-actions {
            flex-direction: column;
        }

    .k-listbox.k-listbox-actions-right {
        flex-direction: row-reverse;
    }

    .k-listbox.k-listbox-actions-top, .k-listbox.k-listbox-actions-bottom {
        flex-direction: column;
    }

        .k-listbox.k-listbox-actions-top .k-listbox-actions, .k-listbox.k-listbox-actions-bottom .k-listbox-actions {
            flex-direction: row;
        }

    .k-listbox.k-listbox-actions-bottom {
        flex-direction: column-reverse;
    }

    .k-listbox .k-list-scroller {
        width: 100%;
        height: inherit;
        border-width: 1px;
        border-style: solid;
        box-sizing: border-box;
    }

        .k-listbox .k-list-scroller .k-list-scroller {
            border-width: 0;
        }

        .k-listbox .k-list-scroller .k-list {
            height: inherit;
            background: transparent;
        }

    .k-listbox .k-drop-hint {
        border-top-width: 1px;
        border-top-style: solid;
    }

    .k-listbox .k-ghost {
        opacity: .5;
    }

    .k-rtl .k-listbox.k-listbox-actions-left .k-listbox-actions, .k-rtl .k-listbox.k-listbox-actions-right .k-listbox-actions, .k-listbox[dir="rtl"].k-listbox-actions-left .k-listbox-actions, .k-listbox[dir="rtl"].k-listbox-actions-right .k-listbox-actions, [dir="rtl"] .k-listbox.k-listbox-actions-left .k-listbox-actions, [dir="rtl"] .k-listbox.k-listbox-actions-right .k-listbox-actions {
        transform: scaleX(-1);
    }

.k-item {
    cursor: default;
}

.k-listbox .k-list-scroller {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

.k-listbox .k-drop-hint {
    border-top-color: var(--themecolor);
}

.k-progressbar {
    border-radius: 4px;
    --kendo-progressbar-value: 0;
    border-width: 0px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: inherit;
    font-size: 12px;
    line-height: 1;
    display: inline-grid;
    vertical-align: middle;
    position: relative;
    overflow: hidden;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-progressbar *, .k-progressbar *::before, .k-progressbar *::after {
        box-sizing: border-box;
    }

    .k-progressbar > .k-progressbar-value {
        border-width: 0;
        border-style: solid;
        display: flex;
        overflow: hidden;
        grid-column: 1 / -1;
        grid-row: 1 / -1;
    }

    .k-progressbar > .k-progressbar-chunks {
        border-width: inherit;
        border-style: inherit;
        white-space: nowrap;
        display: flex;
        align-items: stretch;
        flex: 1;
        gap: 1px;
        grid-column: 1 / -1;
        grid-row: 1 / -1;
    }

    .k-progressbar .k-progressbar-chunk {
        display: block;
        border-width: 0;
        flex: 1;
    }

.k-progress-status-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    grid-column: 1 / -1;
    grid-row: 1 / -1;
}

    .k-progress-status-wrap.k-progress-start {
        justify-content: flex-start;
    }

    .k-progress-status-wrap.k-progress-center {
        justify-content: center;
    }

    .k-progress-status-wrap.k-progress-end {
        justify-content: flex-end;
    }

.k-progress-status {
    padding-block: 0;
    padding-inline: 8px;
    min-width: 10px;
    text-align: center;
    display: inline-block;
    white-space: nowrap;
}

.k-progressbar-horizontal {
    width: 100%;
    height: var(--kendo-progressbar-height, 22px);
    grid-template-columns: 1fr;
    grid-template-rows: 100%
}

    .k-progressbar-horizontal .k-progress-status-wrap {
        flex-direction: row;
    }

    .k-progressbar-horizontal > .k-progressbar-value {
        width: calc(var( --kendo-progressbar-value, 0 )*1%);
        flex-direction: row;
    }

        .k-progressbar-horizontal > .k-progressbar-value > .k-progress-status-wrap {
            width: calc(100%*100/var( --kendo-progressbar-value, 1 ));
        }

    .k-progressbar-horizontal > .k-progressbar-chunks {
        flex-direction: row;
    }

    .k-progressbar-horizontal.k-progressbar-reverse > .k-progressbar-value {
        flex-direction: row-reverse;
        justify-self: flex-end;
    }

    .k-progressbar-horizontal.k-progressbar-reverse > .k-progressbar-chunks {
        flex-direction: row-reverse;
    }

.k-progressbar-vertical {
    width: var(--kendo-progressbar-height, 22px);
    height: 27em;
    grid-template-columns: 100%;
    grid-template-rows: 1fr;
}

    .k-progressbar-vertical .k-progress-status-wrap {
        flex-direction: column-reverse;
    }

    .k-progressbar-vertical .k-progress-status {
        writing-mode: vertical-lr;
    }

    .k-progressbar-vertical > .k-progressbar-value {
        height: calc(var( --kendo-progressbar-value, 0 )*1%);
        flex-direction: column-reverse;
        align-self: flex-end;
        align-items: flex-end;
    }

        .k-progressbar-vertical > .k-progressbar-value > .k-progress-status-wrap {
            height: calc(100%*100/var( --kendo-progressbar-value, 1 ));
        }

    .k-progressbar-vertical > .k-progressbar-chunks {
        flex-direction: column-reverse;
    }

    .k-progressbar-vertical.k-progressbar-reverse {
        flex-direction: column;
    }

        .k-progressbar-vertical.k-progressbar-reverse > .k-progressbar-value {
            flex-direction: column;
            align-self: flex-start;
        }

        .k-progressbar-vertical.k-progressbar-reverse > .k-progressbar-chunks {
            flex-direction: column;
        }

.k-progressbar-indeterminate .k-progress-status-wrap, .k-progressbar-indeterminate .k-progressbar-value, .k-progressbar-indeterminate .k-progressbar-chunk {
    display: none;
}

.telerik-blazor.k-progressbar-horizontal > .k-progressbar-value, .telerik-blazor.k-progressbar-horizontal > .k-progressbar-value > .k-progress-status-wrap {
    transition: width .1s ease-in-out;
}

.k-rtl .k-progressbar, .k-progressbar[dir="rtl"] {
    direction: rtl;
}

.k-circular-progressbar {
    display: inline-block;
    text-align: left;
    position: relative;
}

.k-circular-progressbar-surface {
    height: 100%
}

    .k-circular-progressbar-surface > div {
        width: 100%;
        height: 100%
    }

    .k-circular-progressbar-surface svg {
        width: 100%;
        height: 100%
    }

.k-circular-progressbar-scale {
    fill: none;
}

.k-circular-progressbar-arc {
    transform-box: fill-box;
    transform-origin: center center;
    transform: rotate(-90deg);
    stroke-linecap: round;
    fill: none;
}

.k-circular-progressbar-label {
    position: absolute;
    text-align: center;
    padding: 0;
    margin: 0;
}

@keyframes kendo-progressbar-indeterminate-animation {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 22px 0;
    }
}

.k-progressbar {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #ebebeb;
}

    .k-progressbar .k-selected {
        border-color: #3f5ec7;
        color: #fff;
        background-color: var(--themecolor);
    }

.k-chunk-progressbar {
    background-color: transparent;
}

.k-progressbar-chunk {
    background-color: #ebebeb;
}

    .k-progressbar-chunk .k-selected {
        background-color: var(--themecolor);
    }

.k-progressbar-indeterminate {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #ebebeb;
    background-image: linear-gradient(45deg, #d8d8d8 25%, transparent 25%, transparent 50%, #d8d8d8 50%, #d8d8d8 75%, transparent 75%, transparent);
    background-size: 22px 22px;
    animation: kendo-progressbar-indeterminate-animation 1s linear infinite;
}

.k-circular-progressbar-scale {
    stroke: #ebebeb;
}

.k-circular-progressbar-arc {
    stroke: var(--themecolor);
    transition: stroke .5s ease;
}

.k-radio {
    border-radius: 50%;
    margin: 0;
    padding: 0;
    line-height: initial;
    border-width: 1px;
    border-style: solid;
    outline: 0;
    box-sizing: border-box;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    flex: none;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
    -webkit-appearance: none;
}

    .k-radio:checked, .k-radio.k-checked {
        background-image: url("data:image/svg+xml, %3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3e%3ccircle cx='50%25' cy='50%25' r='4' fill='%23fff'/%3e%3c/svg%3e");
    }

    .k-radio:disabled, .k-radio.k-disabled {
        outline: none;
        cursor: default;
        opacity: .6;
        filter: grayscale(0.1);
        pointer-events: none;
        box-shadow: none;
    }

.k-radio-wrap {
    flex: none;
    display: inline-flex;
    flex-flow: row nowrap;
    gap: 0;
    align-items: center;
    align-self: start;
    vertical-align: middle;
    position: relative;
}

    .k-radio-wrap::before {
        content: "\200b";
        width: 0px;
        overflow: hidden;
        flex: none;
        display: inline-block;
        vertical-align: top;
    }

.k-radio-label {
    margin: 0;
    padding: 0;
    display: inline-flex;
    align-items: flex-start;
    gap: 4px;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
}

    .k-radio-label .k-ripple {
        visibility: hidden !important;
    }

.k-radio + .k-label, .k-radio-wrap + .k-label, .k-radio + .k-radio-label, .k-radio-wrap + .k-radio-label {
    display: inline;
    -webkit-margin-start: 4px;
    margin-inline-start: 4px;
}

.k-radio-label:empty {
    display: none !important;
}

.k-radio-label.k-no-text {
    min-width: 1px;
}

.k-radio-list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-flow: column nowrap;
    gap: 0;
    list-style: none;
}

.k-radio-item, .k-radio-list-item {
    padding: 4px 0px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    align-content: center;
    gap: 4px;
}

    .k-radio-item .k-radio-label, .k-radio-list-item .k-radio-label {
        margin: 0;
    }

.k-radio-list-horizontal, .k-radio-list.k-list-horizontal {
    display: flex;
    flex-flow: row wrap;
    gap: 16px;
}

.k-ripple-container .k-radio::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 100%;
    z-index: -1;
    transition: opacity 100ms linear, transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(-50%, -50%) scale(0);
    transform-origin: center center;
}

.k-ripple-container .k-radio:focus, .k-ripple-container .k-radio.k-focus {
    box-shadow: none !important;
}

.k-ripple-container .k-radio:disabled::after, .k-ripple-container .k-radio.k-disabled::after {
    display: none;
}

.k-ripple-container .k-radio:disabled::after, .k-ripple-container .k-radio.k-disabled::after {
    display: none;
}

.k-radio-sm {
    width: 12px;
    height: 12px;
}

    .k-radio-sm::before {
        font-size: 10px;
    }

.k-ripple-container .k-radio-sm::after {
    width: 300%;
    height: 300%
}

.k-radio-md {
    width: 16px;
    height: 16px;
}

    .k-radio-md::before {
        font-size: 14px;
    }

.k-ripple-container .k-radio-md::after {
    width: 300%;
    height: 300%
}

.k-radio-lg {
    width: 20px;
    height: 20px;
}

    .k-radio-lg::before {
        font-size: 18px;
    }

.k-ripple-container .k-radio-lg::after {
    width: 300%;
    height: 300%
}

.k-radio {
    border-color: var(--kendo-border-color);
    background-color: #fff;
}

    .k-radio:focus, .k-radio.k-focus {
        box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.06);
    }

    .k-radio.k-invalid, .k-radio.ng-invalid.ng-touched, .k-radio.ng-invalid.ng-dirty {
        border-color: #df5438;
    }

        .k-radio.k-invalid + .k-radio-label, .k-radio.ng-invalid.ng-touched + .k-radio-label, .k-radio.ng-invalid.ng-dirty + .k-radio-label {
            color: #df5438;
        }

    .k-radio:checked, .k-radio.k-checked {
        border-color: var(--themecolor);
        color: #fff;
        background-color: var(--themecolor);
    }

        .k-radio:checked:focus, .k-radio.k-checked.k-focus {
            box-shadow: 0 0 0 2px rgba(69, 102, 216, 0.3);
        }

.k-ripple-container .k-radio::after {
    background: var(--themecolor);
    opacity: .25;
}

.k-slider {
    border: 0;
    box-sizing: border-box;
    outline: 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4285714286;
    background: none;
    display: inline-flex;
    align-items: center;
    position: relative;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-slider *, .k-slider *::before, .k-slider *::after {
        box-sizing: border-box;
    }

    .k-slider .k-label {
        width: auto;
        font-size: .92em;
        line-height: 1;
        white-space: nowrap;
        position: absolute;
    }

    .k-slider .k-tick, .k-slider .k-slider-track {
        cursor: pointer;
    }

    .k-slider .k-tick {
        background-color: transparent;
        background-position: center center;
        background-repeat: no-repeat;
        margin: 0;
        padding: 0;
        position: relative;
    }

    .k-slider.k-disabled .k-tick, .k-slider.k-disabled .k-slider-track, .k-slider.k-disabled .k-draghandle {
        cursor: default;
    }

    .k-rtl .k-slider .k-slider-selection, .k-slider.k-rtl .k-slider-selection, [dir="rtl"] .k-slider .k-slider-selection, .k-slider[dir="rtl"] .k-slider-selection {
        left: auto;
        right: 0;
    }

.k-slider-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: inherit;
    align-items: inherit;
    gap: inherit;
    position: relative;
}

.k-slider {
    width: -moz-min-content;
    width: min-content;
    height: -moz-min-content;
    height: min-content;
    gap: 7px;
}

    .k-slider .k-button {
        flex: none;
    }

    .k-slider .k-slider-track-wrap {
        flex: 1 1 auto;
        display: flex;
        flex-flow: inherit;
        position: relative;
        touch-action: none;
    }

        .k-slider .k-slider-track-wrap .k-slider-items {
            margin: 0;
            padding: 0;
            list-style: none;
            flex: 1 1 100%;
            display: flex;
            flex-flow: inherit;
            justify-content: space-between;
            -webkit-user-select: none;
            -moz-user-select: none;
            user-select: none;
        }

        .k-slider .k-slider-track-wrap .k-tick {
            flex: 0 0 1px;
        }

        .k-slider .k-slider-track-wrap .k-tick-horizontal {
            width: 1px;
            min-height: 100%
        }

        .k-slider .k-slider-track-wrap .k-tick-vertical {
            width: 100%;
            min-height: 1px;
        }

        .k-slider .k-slider-track-wrap .k-draghandle {
            position: absolute;
        }

.k-slider-horizontal .k-slider-track-wrap {
    height: 26px;
}

    .k-slider-horizontal .k-slider-track-wrap .k-slider-track {
        width: 100%
    }

    .k-slider-horizontal .k-slider-track-wrap .k-draghandle {
        top: 50%;
        transform: translate(-50%, -50%);
    }

        .k-slider-horizontal .k-slider-track-wrap .k-draghandle:focus, .k-slider-horizontal .k-slider-track-wrap .k-draghandle:active {
            transform: translate(-50%, -50%) scale(1);
        }

    .k-slider-horizontal .k-slider-track-wrap .k-slider-selection {
        width: calc((var(--kendo-slider-end,  0) - var(--kendo-slider-start,  0))*1%);
        left: calc(var(--kendo-slider-start, 0)*1%);
    }

    .k-slider-horizontal .k-slider-track-wrap .k-draghandle-start {
        left: calc(var(--kendo-slider-start, 0)*1%);
    }

    .k-slider-horizontal .k-slider-track-wrap .k-draghandle-end {
        left: calc(var(--kendo-slider-end, 0)*1%);
    }

[dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-slider-selection {
    left: unset;
    right: calc(var(--kendo-slider-start, 0)*1%);
}

[dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-draghandle-start {
    left: unset;
    right: calc(var(--kendo-slider-start, 0)*1%);
}

[dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-draghandle-end {
    left: unset;
    right: calc(var(--kendo-slider-end, 0)*1%);
}

[dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-draghandle {
    transform: translate(50%, -50%);
}

    [dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-draghandle:focus, [dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-draghandle:active {
        transform: translate(50%, -50%) scale(1);
    }

.k-slider-vertical .k-slider-track-wrap {
    width: 26px;
}

    .k-slider-vertical .k-slider-track-wrap .k-slider-track {
        height: 100%
    }

    .k-slider-vertical .k-slider-track-wrap .k-draghandle {
        left: 50%;
        transform: translate(-50%, 50%);
    }

        .k-slider-vertical .k-slider-track-wrap .k-draghandle:focus, .k-slider-vertical .k-slider-track-wrap .k-draghandle:active {
            transform: translate(-50%, 50%) scale(1);
        }

    .k-slider-vertical .k-slider-track-wrap .k-slider-selection {
        bottom: calc(var(--kendo-slider-start, 0)*1%);
        height: calc((var(--kendo-slider-end,  0) - var(--kendo-slider-start,  0))*1%);
    }

    .k-slider-vertical .k-slider-track-wrap .k-draghandle-start {
        bottom: calc(var(--kendo-slider-start, 0)*1%);
    }

    .k-slider-vertical .k-slider-track-wrap .k-draghandle-end {
        bottom: calc(var(--kendo-slider-end, 0)*1%);
    }

.k-slider-vertical {
    height: 200px;
    flex-flow: column-reverse nowrap;
}

    .k-slider-vertical .k-tick {
        text-align: right;
        margin-left: 2px;
    }

    .k-slider-vertical .k-slider-topleft .k-tick {
        text-align: left;
    }

    .k-slider-vertical .k-tick {
        background-position: -94px center;
    }

    .k-slider-vertical .k-slider-topleft .k-tick {
        background-position: -124px center;
    }

    .k-slider-vertical .k-slider-bottomright .k-tick {
        background-position: -154px center;
    }

    .k-slider-vertical .k-tick-large {
        display: flex;
        align-items: center;
        background-position: -4px center;
    }

    .k-slider-vertical .k-slider-topleft .k-tick-large {
        background-position: -34px center;
    }

    .k-slider-vertical .k-slider-bottomright .k-tick-large {
        background-position: -64px center;
    }

    .k-slider-vertical .k-first {
        background-position: -94px 100%
    }

    .k-slider-vertical .k-tick-large.k-first {
        background-position: -4px 100%
    }

    .k-slider-vertical .k-slider-topleft .k-first {
        background-position: -124px 100%
    }

    .k-slider-vertical .k-slider-topleft .k-tick-large.k-first {
        background-position: -34px 100%
    }

    .k-slider-vertical .k-slider-bottomright .k-first {
        background-position: -154px 100%
    }

    .k-slider-vertical .k-slider-bottomright .k-tick-large.k-first {
        background-position: -64px 100%
    }

    .k-slider-vertical .k-last {
        background-position: -94px 0;
    }

    .k-slider-vertical .k-tick-large.k-last {
        background-position: -4px 0;
    }

    .k-slider-vertical .k-slider-topleft .k-last {
        background-position: -124px 0;
    }

    .k-slider-vertical .k-slider-topleft .k-tick-large.k-last {
        background-position: -34px 0;
    }

    .k-slider-vertical .k-slider-bottomright .k-last {
        background-position: -154px 0;
    }

    .k-slider-vertical .k-slider-bottomright .k-tick-large.k-last {
        background-position: -64px 0;
    }

    .k-slider-vertical .k-label {
        text-align: left;
        left: 120%;
        top: 50%;
        transform: translateY(-50%);
    }

    .k-slider-vertical .k-first .k-label {
        top: 100%
    }

    .k-slider-vertical .k-last .k-label {
        top: 0;
    }

    .k-slider-vertical .k-slider-topleft .k-label {
        left: auto;
        right: 120%
    }

    .k-rtl .k-slider-vertical .k-label, .k-slider-vertical.k-rtl .k-label, [dir="rtl"] .k-slider-vertical .k-label, .k-slider-vertical[dir="rtl"] .k-label {
        left: auto;
        right: 120%
    }

    .k-rtl .k-slider-vertical .k-slider-topleft .k-label, .k-slider-vertical.k-rtl .k-slider-topleft .k-label, [dir="rtl"] .k-slider-vertical .k-slider-topleft .k-label, .k-slider-vertical[dir="rtl"] .k-slider-topleft .k-label {
        left: 120%;
        right: auto;
    }

.k-slider-horizontal {
    width: 200px;
    flex-flow: row nowrap;
}

    .k-slider-horizontal .k-tick {
        background-position: center -92px;
    }

    .k-slider-horizontal .k-slider-topleft .k-tick {
        background-position: center -122px;
    }

    .k-slider-horizontal .k-slider-bottomright .k-tick {
        background-position: center -152px;
    }

    .k-slider-horizontal .k-tick-large {
        background-position: center -2px;
    }

    .k-slider-horizontal .k-slider-topleft .k-tick-large {
        background-position: center -32px;
    }

    .k-slider-horizontal .k-slider-bottomright .k-tick-large {
        background-position: center -62px;
    }

    .k-slider-horizontal .k-first {
        background-position: 0 -92px;
    }

    .k-slider-horizontal .k-tick-large.k-first {
        background-position: 0 -2px;
    }

    .k-slider-horizontal .k-slider-topleft .k-first {
        background-position: 0 -122px;
    }

    .k-slider-horizontal .k-slider-topleft .k-tick-large.k-first {
        background-position: 0 -32px;
    }

    .k-slider-horizontal .k-slider-bottomright .k-first {
        background-position: 0 -152px;
    }

    .k-slider-horizontal .k-slider-bottomright .k-tick-large.k-first {
        background-position: 0 -62px;
    }

    .k-slider-horizontal .k-last {
        background-position: 100% -92px;
    }

    .k-slider-horizontal .k-tick-large.k-last {
        background-position: 100% -2px;
    }

    .k-slider-horizontal .k-slider-topleft .k-last {
        background-position: 100% -122px;
    }

    .k-slider-horizontal .k-slider-topleft .k-tick-large.k-last {
        background-position: 100% -32px;
    }

    .k-slider-horizontal .k-slider-bottomright .k-last {
        background-position: 100% -152px;
    }

    .k-slider-horizontal .k-slider-bottomright .k-tick-large.k-last {
        background-position: 100% -62px;
    }

    .k-slider-horizontal .k-label {
        left: 50%;
        bottom: -1.2em;
        transform: translateX(-50%);
    }

    .k-slider-horizontal .k-first .k-label {
        left: 0;
    }

    .k-slider-horizontal .k-last .k-label {
        left: 100%
    }

    .k-slider-horizontal .k-slider-topleft .k-label {
        top: -1.2em;
    }

    .k-rtl .k-slider-horizontal .k-slider-track, .k-rtl .k-slider-horizontal .k-slider-selection, .k-slider-horizontal.k-rtl .k-slider-track, .k-slider-horizontal.k-rtl .k-slider-selection, [dir="rtl"] .k-slider-horizontal .k-slider-track, [dir="rtl"] .k-slider-horizontal .k-slider-selection, .k-slider-horizontal[dir="rtl"] .k-slider-track, .k-slider-horizontal[dir="rtl"] .k-slider-selection {
        right: 0;
        left: auto;
    }

    .k-rtl .k-slider-horizontal .k-button-increase .k-icon, .k-rtl .k-slider-horizontal .k-button-decrease .k-icon, .k-slider-horizontal.k-rtl .k-button-increase .k-icon, .k-slider-horizontal.k-rtl .k-button-decrease .k-icon, [dir="rtl"] .k-slider-horizontal .k-button-increase .k-icon, [dir="rtl"] .k-slider-horizontal .k-button-decrease .k-icon, .k-slider-horizontal[dir="rtl"] .k-button-increase .k-icon, .k-slider-horizontal[dir="rtl"] .k-button-decrease .k-icon {
        transform: scaleX(-1);
    }

.k-slider-track, .k-slider-selection {
    margin: 0;
    padding: 0;
    position: absolute;
}

.k-slider-horizontal .k-slider-track, .k-slider-horizontal .k-slider-selection {
    height: 4px;
    left: 0;
    margin-top: -2px;
    top: 50%
}

.k-slider-vertical .k-slider-track, .k-slider-vertical .k-slider-selection {
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    width: 4px;
}

.k-draghandle {
    background-color: transparent;
    background-repeat: no-repeat;
    border-style: solid;
    border-width: 1px;
    outline: 0;
    position: absolute;
    text-align: center;
    text-decoration: none;
    width: 14px;
    height: 14px;
}

.k-slider-transitions.k-slider-horizontal .k-draghandle {
    transition: left .3s ease-out, background-color .3s ease-out, transform .4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.k-slider-transitions.k-slider-vertical .k-draghandle {
    transition: bottom .3s ease-out, background-color .3s ease-out, transform .4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.k-draghandle.k-pressed {
    transition: none;
}

.k-slider-transitions.k-slider-horizontal .k-slider-selection {
    transition: width .3s ease-out;
}

.k-slider-transitions.k-slider-vertical .k-slider-selection {
    transition: height .3s ease-out;
}

.k-slider-selection.k-pressed {
    transition: none;
}

.k-slider.k-readonly .k-button, .k-slider.k-readonly .k-slider-track, .k-slider.k-readonly .k-tick, .k-slider.k-readonly .k-draghandle {
    pointer-events: none;
}

.k-slider-tooltip .k-callout-n, .k-slider-tooltip .k-callout-s {
    margin-left: -3px;
}

.k-slider-tooltip .k-callout-w, .k-slider-tooltip .k-callout-e {
    margin-top: -3px;
}

.k-slider kendo-resize-sensor {
    position: absolute;
}

.k-slider-horizontal .k-slider-wrap:not(.k-slider-buttons) {
    padding-left: 7px;
    padding-right: 7px;
}

.k-slider-vertical .k-slider-wrap:not(.k-slider-buttons) {
    padding-top: 7px;
    padding-bottom: 7px;
}

.k-slider {
    color: #424242;
}

    .k-slider .k-slider-track, .k-slider .k-slider-selection {
        border-radius: 4px;
    }

    .k-slider .k-slider-track {
        background-color: #ebebeb;
    }

    .k-slider .k-slider-selection {
        background-color: var(--themecolor);
    }

    .k-slider .k-draghandle {
        border-color: var(--themecolor);
        color: #fff;
        background-color: var(--themecolor);
        border-radius: 50%
    }

        .k-slider .k-draghandle:hover {
            border-color: var(--themecolor);
            background-color: #4262cf;
        }

        .k-slider .k-draghandle:active, .k-slider .k-draghandle.k-pressed {
            border-color: #3d5abe;
            background-color: #3d5abe;
        }

        .k-slider .k-draghandle:focus, .k-slider .k-draghandle.k-focus {
            box-shadow: 0 0 0 2px rgba(69, 102, 216, 0.3);
        }

    .k-slider.k-focus .k-draghandle {
        box-shadow: 0 0 0 2px rgba(69, 102, 216, 0.3);
    }

.k-slider-horizontal .k-tick {
    background-image: url(data:image/gif; base64, R0lGODlhAQC0AIABALi4uAAAACH5BAEAAAEALAAAAAABALQAAAIWjIGJxqzazlux2ovlzND2rAHgSIZWAQA7);
}

.k-slider-vertical .k-tick {
    background-image: url(data:image/gif; base64, R0lGODlhtAABAIABALi4uAAAACH5BAEAAAEALAAAAAC0AAEAAAIWjIGJxqzazlux2ovlzND2rAHgSIZWAQA7);
}

.k-calendar {
    inline-size: var(--INTERNAL--kendo-calendar-width, -moz-min-content);
    inline-size: var(--INTERNAL--kendo-calendar-width, min-content);
    block-size: var(--INTERNAL--kendo-calendar-height, -moz-min-content);
    block-size: var(--INTERNAL--kendo-calendar-height, min-content);
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4285714286;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    flex-flow: column nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-calendar > .k-calendar {
        border: 0;
    }

.k-calendar-table {
    margin: 0 auto;
    border-width: 0;
    border-color: inherit;
    border-spacing: 0;
    border-collapse: separate;
    table-layout: fixed;
    text-align: center;
    outline: 0;
    display: table;
    position: relative;
    z-index: 1;
}

.k-calendar-caption, .k-calendar-caption.k-calendar-th, .k-calendar .k-meta-header, .k-calendar .k-month-header {
    padding: 4px 8px;
    height: 32px;
    box-sizing: border-box;
    text-transform: none;
    text-align: left;
    font-weight: bold;
    cursor: default;
}

.k-calendar-th, .k-calendar-td {
    border-width: 0;
    padding: 0;
    text-align: center;
    border-style: solid;
    border-color: inherit;
    font-weight: normal;
    cursor: default;
}

.k-calendar-th {
    width: 32px;
    height: 32px;
    font-size: 12px;
    line-height: 2;
    text-transform: uppercase;
}

.k-calendar-td {
    border-radius: 4px;
    inline-size: var(--INTERNAL--kendo-calendar-cell-size, -moz-min-content);
    inline-size: var(--INTERNAL--kendo-calendar-cell-size, min-content);
    block-size: var(--INTERNAL--kendo-calendar-cell-size, -moz-min-content);
    block-size: var(--INTERNAL--kendo-calendar-cell-size, min-content);
    border-color: transparent;
}

.k-calendar .k-calendar-cell-inner, .k-calendar .k-link {
    border-radius: 4px;
    padding: .25em .25em;
    padding-inline: var(--INTERNAL--kendo-calendar-cell-padding-x, .25em);
    padding-block: var(--INTERNAL--kendo-calendar-cell-padding-y, .25em);
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    white-space: normal;
    position: relative;
    overflow: hidden;
}

.k-calendar .k-header {
    padding: 4px 4px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    position: relative;
    z-index: 2;
}

.k-calendar-header {
    padding: 4px 4px;
    min-width: 256px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 0 0 auto;
}

    .k-calendar-header .k-title, .k-calendar-header .k-calendar-title {
        font-weight: bold;
    }

    .k-calendar-header .k-calendar-nav {
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
    }

.k-calendar-footer, .k-calendar .k-footer {
    padding: 8px 16px;
    text-align: center;
    clear: both;
}

.k-calendar-view {
    margin: auto;
    padding: 0 4px;
    width: 256px;
    inline-size: var(--INTERNAL--kendo-calendar-view-width, 256px);
    min-height: 224px;
    box-sizing: content-box;
    gap: 16px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.k-month-calendar .k-calendar-td, .k-calendar-monthview .k-calendar-td {
    width: 32px;
    height: 32px;
    inline-size: var(--INTERNAL--kendo-calendar-cell-size, 32px);
    block-size: var(--INTERNAL--kendo-calendar-cell-size, 32px);
}

.k-year-calendar .k-calendar-td, .k-calendar-yearview .k-calendar-td {
    width: 64px;
    height: 64px;
    inline-size: var(--INTERNAL--kendo-calendar-cell-size, 64px);
    block-size: var(--INTERNAL--kendo-calendar-cell-size, 64px);
}

.k-decade-calendar .k-calendar-td, .k-calendar-decadeview .k-calendar-td {
    width: 64px;
    height: 64px;
    inline-size: var(--INTERNAL--kendo-calendar-cell-size, 64px);
    block-size: var(--INTERNAL--kendo-calendar-cell-size, 64px);
}

.k-century-calendar .k-calendar-td, .k-calendar-centuryview .k-calendar-td {
    width: 64px;
    height: 64px;
    inline-size: var(--INTERNAL--kendo-calendar-cell-size, 64px);
    block-size: var(--INTERNAL--kendo-calendar-cell-size, 64px);
}

.k-century-calendar .k-calendar-cell-inner, .k-century-calendar .k-link, .k-calendar-centuryview .k-calendar-cell-inner, .k-calendar-centuryview .k-link {
    text-align: left;
}

.k-popup .k-calendar {
    height: 100%
}

.k-calendar-container, .k-datetime-container {
    padding: 0;
}

    .k-calendar-container .k-calendar, .k-datetime-container .k-calendar {
        border-width: 0;
    }

.k-calendar .k-content.k-scrollable, .k-calendar .k-calendar-content.k-scrollable {
    box-sizing: content-box;
    overflow-x: hidden;
    overflow-y: auto;
    display: block;
    padding-right: 100px;
    padding-left: 100px;
    margin-left: -100px;
    margin-right: calc(-100px - var(--kendo-scrollbar-width, 17px));
}

.k-calendar .k-scrollable-placeholder {
    position: absolute;
    z-index: -1;
    width: 1px;
    top: 0;
    right: 0;
}

.k-calendar-sm {
    --INTERNAL--kendo-calendar-view-width: 224px;
    --INTERNAL--kendo-calendar-cell-padding-x: var( --kendo-calendar-sm-cell-padding-x, 2px );
    --INTERNAL--kendo-calendar-cell-padding-y: var( --kendo-calendar-sm-cell-padding-y, 2px );
    font-size: 14px;
    line-height: 1.4285714286;
}

    .k-calendar-sm.k-month-calendar, .k-calendar-sm .k-calendar-monthview {
        --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-sm-month-cell-size, 28px );
    }

    .k-calendar-sm.k-year-calendar, .k-calendar-sm .k-calendar-yearview {
        --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-sm-year-cell-size, 56px );
    }

    .k-calendar-sm.k-decade-calendar, .k-calendar-sm .k-calendar-decadeview {
        --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-sm-decade-cell-size, 56px );
    }

    .k-calendar-sm.k-century-calendar, .k-calendar-sm .k-calendar-centuryview {
        --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-sm-century-cell-size, 56px );
    }

.k-calendar-md {
    --INTERNAL--kendo-calendar-view-width: 256px;
    --INTERNAL--kendo-calendar-cell-padding-x: var( --kendo-calendar-md-cell-padding-x, 4px );
    --INTERNAL--kendo-calendar-cell-padding-y: var( --kendo-calendar-md-cell-padding-y, 4px );
    font-size: 14px;
    line-height: 1.4285714286;
}

    .k-calendar-md.k-month-calendar, .k-calendar-md .k-calendar-monthview {
        --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-md-month-cell-size, 32px );
    }

    .k-calendar-md.k-year-calendar, .k-calendar-md .k-calendar-yearview {
        --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-md-year-cell-size, 64px );
    }

    .k-calendar-md.k-decade-calendar, .k-calendar-md .k-calendar-decadeview {
        --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-md-decade-cell-size, 64px );
    }

    .k-calendar-md.k-century-calendar, .k-calendar-md .k-calendar-centuryview {
        --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-md-century-cell-size, 64px );
    }

.k-calendar-lg {
    --INTERNAL--kendo-calendar-view-width: 320px;
    --INTERNAL--kendo-calendar-cell-padding-x: var( --kendo-calendar-lg-cell-padding-x, 8px );
    --INTERNAL--kendo-calendar-cell-padding-y: var( --kendo-calendar-lg-cell-padding-y, 8px );
    font-size: 16px;
    line-height: 1.5;
}

    .k-calendar-lg.k-month-calendar, .k-calendar-lg .k-calendar-monthview {
        --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-lg-month-cell-size, 40px );
    }

    .k-calendar-lg.k-year-calendar, .k-calendar-lg .k-calendar-yearview {
        --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-lg-year-cell-size, 80px );
    }

    .k-calendar-lg.k-decade-calendar, .k-calendar-lg .k-calendar-decadeview {
        --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-lg-decade-cell-size, 80px );
    }

    .k-calendar-lg.k-century-calendar, .k-calendar-lg .k-calendar-centuryview {
        --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-lg-century-cell-size, 80px );
    }

.k-calendar-infinite {
    box-sizing: content-box;
    display: inline-flex;
    flex-flow: row nowrap;
}

    .k-calendar-infinite .k-calendar-view {
        padding: 0px 16px;
        height: 288px;
        flex: 0 0 auto;
        display: flex;
        flex-flow: column nowrap;
        gap: 0;
        overflow: hidden;
    }

        .k-calendar-infinite .k-calendar-view .k-content.k-scrollable {
            position: relative;
        }

        .k-calendar-infinite .k-calendar-view::after {
            display: block;
            position: absolute;
            bottom: 0;
            content: "\200b";
            height: 0;
            line-height: 0;
            z-index: 1;
            width: 150%;
            left: -25%;
            box-shadow: 0 0 32px 16px #fff;
        }

    .k-calendar-infinite .k-calendar-header {
        margin-left: -16px;
        margin-right: -16px;
        padding: 8px 16px;
        width: auto;
        min-width: 0;
    }

    .k-calendar-infinite .k-calendar-weekdays {
        flex: 0 0 auto;
    }

.k-calendar-navigation {
    width: 5em;
    text-align: center;
    flex: 0 0 auto;
    display: block;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

    .k-calendar-navigation::before, .k-calendar-navigation::after {
        display: block;
        position: absolute;
        content: "\200b";
        height: 0;
        line-height: 0;
        z-index: 1;
        width: 200%;
        left: -50%;
        box-shadow: 0 0 6em 3em #fafafa;
    }

    .k-calendar-navigation::before {
        top: 0;
    }

    .k-calendar-navigation::after {
        bottom: 0;
    }

    .k-calendar-navigation .k-content, .k-calendar-navigation .k-calendar-content {
        background: transparent;
        height: auto;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    }

        .k-calendar-navigation .k-content ul, .k-calendar-navigation .k-calendar-content ul {
            width: 5em;
        }

        .k-calendar-navigation .k-content li, .k-calendar-navigation .k-calendar-content li {
            height: 2em;
            line-height: 2em;
            cursor: pointer;
            padding: 0 1em;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: clip;
        }

    .k-calendar-navigation .k-calendar-navigation-marker {
        font-weight: bold;
    }

    .k-calendar-navigation .k-calendar-navigation-highlight {
        width: 100%;
        border-width: 1px 0;
        border-style: solid;
        height: 2em;
        box-sizing: border-box;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
    }

.k-calendar-range {
    width: auto;
}

    .k-calendar-range .k-calendar-view {
        width: auto;
        white-space: nowrap;
    }

        .k-calendar-range .k-calendar-view::after {
            display: none;
        }

        .k-calendar-range .k-calendar-view:focus {
            outline: 0;
        }

    .k-calendar-range .k-range-start {
        border-color: inherit;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .k-calendar-range .k-range-end {
        border-color: inherit;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .k-calendar-range .k-range-mid {
        border-color: inherit;
        border-radius: 0;
    }

.k-rtl .k-calendar .k-calendar-nav-prev, .k-rtl .k-calendar .k-calendar-nav-next, .k-calendar[dir="rtl"] .k-calendar-nav-prev, .k-calendar[dir="rtl"] .k-calendar-nav-next {
    transform: scaleX(-1);
}

.k-rtl .k-calendar .k-content.k-scrollable, .k-rtl .k-calendar .k-calendar-content.k-scrollable, .k-calendar[dir="rtl"] .k-content.k-scrollable, .k-calendar[dir="rtl"] .k-calendar-content.k-scrollable {
    padding-right: 100px;
    padding-left: 100px;
    margin-left: calc(-100px - var(--kendo-scrollbar-width, 17px));
    margin-right: -100px;
}

.k-rtl .k-calendar tbody th, .k-rtl .k-calendar .k-calendar-tbody .k-calendar-th, .k-calendar[dir="rtl"] tbody th, .k-calendar[dir="rtl"] .k-calendar-tbody .k-calendar-th {
    text-align: right;
}

.k-calendar {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

    .k-calendar .k-header {
        border-color: inherit;
        color: #424242;
        background-color: #fafafa;
        box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1);
    }

    .k-calendar .k-calendar-th, .k-calendar .k-calendar-caption, .k-calendar .k-meta-header, .k-calendar .k-month-header {
        color: #666;
    }

    .k-calendar .k-calendar-view .k-today {
        color: var(--themecolor);
    }

    .k-calendar .k-other-month {
        color: #666;
    }

    .k-calendar .k-alt {
        background-color: transparent;
        color: #666;
    }

    .k-calendar .k-out-of-range {
        pointer-events: none;
    }

    .k-calendar .k-calendar-td:hover .k-calendar-cell-inner, .k-calendar .k-calendar-td:hover .k-link, .k-calendar .k-calendar-td.k-hover .k-calendar-cell-inner, .k-calendar .k-calendar-td.k-hover .k-link {
        border-color: var(--kendo-border-color);
        color: #424242;
        background-color: #ececec;
    }

    .k-calendar .k-calendar-td.k-selected .k-calendar-cell-inner, .k-calendar .k-calendar-td.k-selected .k-link {
        border-color: var(--kendo-border-color);
        color: #fff;
        background-color: var(--themecolor);
    }

    .k-calendar .k-calendar-td.k-selected:hover .k-calendar-cell-inner, .k-calendar .k-calendar-td.k-selected:hover .k-link, .k-calendar .k-calendar-td.k-selected.k-hover .k-calendar-cell-inner, .k-calendar .k-calendar-td.k-selected.k-hover .k-link {
        color: #fff;
        background-color: #4262cf;
    }

    .k-calendar .k-calendar-td:focus .k-calendar-cell-inner, .k-calendar .k-calendar-td:focus .k-link, .k-calendar .k-calendar-td.k-focus .k-calendar-cell-inner, .k-calendar .k-calendar-td.k-focus .k-link {
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.08);
    }

    .k-calendar .k-calendar-td.k-selected:focus .k-calendar-cell-inner, .k-calendar .k-calendar-td.k-selected:focus .k-link, .k-calendar .k-calendar-td.k-selected.k-focus .k-calendar-cell-inner, .k-calendar .k-calendar-td.k-selected.k-focus .k-link {
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.08);
    }

    .k-calendar .k-calendar-navigation {
        color: #424242;
        background-color: #fafafa;
        box-shadow: inset -1px 0 rgba(0, 0, 0, 0.08);
    }

        .k-calendar .k-calendar-navigation li:hover, .k-calendar .k-calendar-navigation li.k-hover {
            color: #0f6190;
        }

    .k-calendar .k-calendar-navigation-highlight {
        border-color: var(--kendo-border-color);
        color: #424242;
        background-color: #fff;
    }

    .k-calendar[dir="rtl"] .k-calendar-navigation, .k-rtl .k-calendar .k-calendar-navigation {
        box-shadow: inset 1px 0 rgba(0, 0, 0, 0.08);
    }

    .k-calendar.k-invalid, .k-calendar.k-invalid:hover, .k-calendar.ng-invalid.ng-touched, .k-calendar.ng-invalid.ng-dirty {
        border-color: #df5438;
    }

.k-scheduler .k-calendar .k-other-month {
    color: #666;
    background-color: rgba(0, 0, 0, 0);
}

.k-calendar .k-range-start, .k-calendar .k-range-end, .k-calendar .k-range-mid {
    background-color: rgba(69, 102, 216, 0.25);
}

    .k-calendar .k-range-start.k-range-end {
        background-image: none;
        background-color: transparent;
    }

    .k-calendar .k-range-start .k-calendar-cell-inner, .k-calendar .k-range-start .k-link, .k-calendar .k-range-end .k-calendar-cell-inner, .k-calendar .k-range-end .k-link {
        background-color: var(--themecolor);
    }

    .k-calendar .k-range-start.k-active .k-calendar-cell-inner, .k-calendar .k-range-start.k-active .k-link, .k-calendar .k-range-end.k-active .k-calendar-cell-inner, .k-calendar .k-range-end.k-active .k-link {
        box-shadow: inset 0 0 2px 2px rgba(0, 0, 0, 0.2);
    }

.k-calendar .k-range-split-start, .k-calendar .k-range-split-end {
    position: relative;
}

    .k-calendar .k-range-split-start::after, .k-calendar .k-range-split-end::after {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        width: 5px;
    }

    .k-calendar .k-range-split-start::after {
        left: -5px;
        right: auto;
        background-image: linear-gradient(to left, rgba(69, 102, 216, 0.25), transparent 100%);
    }

    .k-calendar .k-range-split-end::after {
        right: -5px;
        left: auto;
        background-image: linear-gradient(to right, rgba(69, 102, 216, 0.25), transparent 100%);
    }

.k-timeselector {
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4285714286;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-flow: column nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-popup > .k-timeselector {
    border-width: 0;
}

.k-time-header, .k-time-selector-header {
    padding: 8px 8px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 0 0 auto;
}

    .k-time-header .k-title, .k-time-header .k-time-selector-header-title, .k-time-selector-header .k-title, .k-time-selector-header .k-time-selector-header-title {
        padding: 4px 8px;
        font-weight: bold;
        display: inline-block;
    }

    .k-time-header .k-time-now, .k-time-selector-header .k-time-now {
        border-width: 0;
        line-height: inherit;
        cursor: pointer;
    }

.k-actions.k-time-fast-selection, .k-time-fast-selection.k-edit-buttons, .k-time-fast-selection.k-action-buttons, .k-time-fast-selection.k-columnmenu-actions, .k-time-fast-selection.k-form-buttons {
    margin-top: 0;
}

.k-time-list-container {
    display: flex;
    position: relative;
    flex: 1 1 auto;
    overflow: hidden;
}

.k-time-highlight, .k-time-list-highlight {
    width: 100%;
    height: 28.0000000004px;
    border-width: 1px 0px;
    border-style: solid;
    box-sizing: border-box;
    position: absolute;
    top: calc(50% + 9px);
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 1;
}

.k-time-list-wrapper {
    min-width: 4em;
    height: 240px;
    box-sizing: content-box;
    display: inline-flex;
    flex-flow: column nowrap;
    align-items: stretch;
    overflow: hidden;
    position: relative;
    text-align: center;
    flex: 1 1 auto;
}

    .k-time-list-wrapper .k-title {
        font-size: 12px;
        line-height: 1.5;
        font-weight: bold;
        text-align: center;
        text-transform: capitalize;
        display: block;
    }

    .k-time-list-wrapper.k-focus::before, .k-time-list-wrapper.k-focus::after {
        display: block;
        content: "\200b";
        position: absolute;
        width: 100%;
        left: 0;
        pointer-events: none;
        height: calc(50% - 14.0000000002px);
        box-sizing: border-box;
        border-width: 0;
        border-style: solid;
    }

    .k-time-list-wrapper.k-focus::before {
        top: 18px;
    }

    .k-time-list-wrapper.k-focus::after {
        bottom: 0;
    }

.k-time-list {
    display: flex;
    flex-flow: row nowrap;
    align-items: stretch;
    flex: 1;
    position: relative;
    z-index: 1;
    outline: 0;
    overflow: hidden;
}

    .k-time-list::before, .k-time-list::after {
        display: block;
        position: absolute;
        content: "\200b";
        height: 0;
        line-height: 0;
        z-index: 1;
        width: 200%;
        left: -50%
    }

    .k-time-list::before {
        top: 0;
    }

    .k-time-list::after {
        bottom: 0;
    }

.k-time-container, .k-time-list-content {
    position: relative;
    flex: 1 1 auto;
    display: block;
    overflow-x: hidden;
    overflow-y: scroll;
    padding-right: 100px;
    padding-left: 100px;
    margin-left: -100px;
    margin-right: calc(-100px - var(--kendo-scrollbar-width, 17px));
}

    .k-time-container > ul, .k-time-list-content > ul {
        height: auto;
        width: 4em;
        margin: auto;
    }

    .k-time-container .k-scrollable-placeholder, .k-time-list-content .k-scrollable-placeholder {
        position: absolute;
        width: 1px;
        top: 0;
        right: 0;
    }

.k-time-list-item, .k-time-list .k-item {
    padding: 4px 8px;
}

.k-time-separator {
    width: 0;
    height: 28.0000000004px;
    align-self: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 11;
    top: 9px;
}

.k-timeselector-sm {
    font-size: 14px;
    line-height: 1.4285714286;
}

    .k-timeselector-sm .k-time-highlight, .k-timeselector-sm .k-time-list-highlight {
        height: 24.0000000004px;
    }

    .k-timeselector-sm .k-time-separator {
        height: 24.0000000004px;
    }

    .k-timeselector-sm .k-time-list-item, .k-timeselector-sm .k-time-list .k-item {
        padding: 2px 8px;
    }

.k-timeselector-md {
    font-size: 14px;
    line-height: 1.4285714286;
}

    .k-timeselector-md .k-time-highlight, .k-timeselector-md .k-time-list-highlight {
        height: 28.0000000004px;
    }

    .k-timeselector-md .k-time-separator {
        height: 28.0000000004px;
    }

    .k-timeselector-md .k-time-list-item, .k-timeselector-md .k-time-list .k-item {
        padding: 4px 8px;
    }

.k-timeselector-lg {
    font-size: 16px;
    line-height: 1.5;
}

    .k-timeselector-lg .k-time-highlight, .k-timeselector-lg .k-time-list-highlight {
        height: 40px;
    }

    .k-timeselector-lg .k-time-separator {
        height: 40px;
    }

    .k-timeselector-lg .k-time-list-item, .k-timeselector-lg .k-time-list .k-item {
        padding: 8px 12px;
    }

.k-rtl .k-time-container, .k-rtl .k-time-list-content, [dir="rtl"] .k-time-container, [dir="rtl"] .k-time-list-content {
    padding-right: 100px;
    padding-left: 100px;
    margin-left: calc(-100px - var(--kendo-scrollbar-width, 17px));
    margin-right: -100px;
}

.k-timeselector {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

.k-time-header .k-time-now, .k-time-selector-header .k-time-now {
    color: var(--themecolor);
}

    .k-time-header .k-time-now:hover, .k-time-selector-header .k-time-now:hover {
        color: #0f6190;
    }

.k-time-list-wrapper .k-title {
    color: #666;
}

.k-time-list-wrapper.k-focus .k-title {
    color: #424242;
}

.k-time-list-wrapper.k-focus::before, .k-time-list-wrapper.k-focus::after {
    background-color: rgba(0, 0, 0, 0.04);
}

.k-time-list::before, .k-time-list::after {
    box-shadow: 0 0 3em 1.5em #fff;
}

.k-time-list .k-item:hover {
    color: var(--themecolor);
}

.k-time-container {
    background: transparent;
}

.k-time-highlight {
    border-color: var(--kendo-border-color);
    background-color: #fff;
}

.k-captcha {
    width: 280px;
    box-sizing: border-box;
    font-size: 14px;
    font-family: inherit;
    line-height: 1.4285714286;
    display: flex;
    flex-flow: column nowrap;
    gap: 8px;
}

    .k-captcha *, .k-captcha *::before, .k-captcha *::after {
        box-sizing: border-box;
    }

.k-captcha-image-wrap {
    position: relative;
    gap: 8px;
}

.k-captcha-image-controls {
    position: relative;
    gap: 8px;
}

.k-captcha-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    .k-captcha-image > img {
        width: 100%;
        height: 100%;
        display: block;
        -o-object-fit: cover;
        object-fit: cover;
    }

.k-captcha-loading .k-captcha-image {
    height: auto;
}

.k-captcha-volume-control {
    height: 100%
}

.k-captcha-validation-message {
    margin-top: 4px;
    font-size: 12px;
    font-style: italic;
}

.k-captcha {
    border-color: #fff;
    color: #fff;
    background-color: #fff;
}

.k-colorpalette {
    border-width: 0;
    box-sizing: border-box;
    outline: 0;
    font-size: 14px;
    font-family: inherit;
    line-height: 0;
    display: inline-flex;
    position: relative;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-colorpalette *, .k-colorpalette *::before, .k-colorpalette *::after {
        box-sizing: border-box;
    }

.k-colorpalette-table {
    width: 100%;
    height: 100%;
    border-collapse: collapse;
    position: relative;
}

.k-colorpalette-tile {
    width: 24px;
    height: 24px;
    box-sizing: border-box;
    overflow: hidden;
    cursor: pointer;
}

    .k-colorpalette-tile:hover, .k-colorpalette-tile.k-hover {
        position: relative;
        z-index: 101;
    }

    .k-colorpalette-tile:focus, .k-colorpalette-tile.k-focus, .k-colorpalette-tile.k-selected, .k-colorpalette-tile.k-selected:hover {
        position: relative;
        z-index: 100;
    }

    .k-colorpalette-tile:focus, .k-colorpalette-tile.k-focus {
        box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    }

    .k-colorpalette-tile:hover, .k-colorpalette-tile.k-hover {
        box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
    }

    .k-colorpalette-tile.k-selected, .k-colorpalette-tile.k-selected:hover {
        box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.3), inset 0 0 0 1px #fff;
    }

.k-colorgradient {
    border-radius: 4px;
    width: 272px;
    padding: 12px 12px;
    border-style: solid;
    border-width: 1px;
    box-sizing: border-box;
    outline: 0;
    font-size: 14px;
    font-family: inherit;
    line-height: 1.4285714286;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-colorgradient *, .k-colorgradient *::before, .k-colorgradient *::after {
        box-sizing: border-box;
    }

.k-colorgradient-canvas {
    gap: 12px;
}

    .k-colorgradient-canvas .k-hsv-rectangle {
        border-radius: 4px;
        position: relative;
        flex: 1 1 auto;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
    }

    .k-colorgradient-canvas .k-hsv-gradient {
        border-radius: 4px;
        height: 180px;
    }

    .k-colorgradient-canvas .k-hsv-draghandle {
        margin-top: -7px;
        margin-left: -7px;
        position: absolute;
        top: 50%;
        left: 50%;
        z-index: 1;
        cursor: pointer;
    }

    .k-colorgradient-canvas .k-hsv-controls {
        position: relative;
        flex-shrink: 0;
        gap: 12px;
    }

.k-colorgradient .k-draghandle {
    border-radius: 50%;
    width: 14px;
    height: 14px;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
}

.k-colorgradient-slider.k-slider-vertical {
    width: 10px;
    height: 180px;
    flex: 0 0 10px;
}

    .k-colorgradient-slider.k-slider-vertical .k-slider-track {
        width: 10px;
        border-radius: 10px;
        margin-left: -5px;
    }

.k-colorgradient-slider.k-slider-horizontal {
    width: 100%;
    height: 10px;
    flex: 0 0 10px;
}

    .k-colorgradient-slider.k-slider-horizontal .k-slider-track {
        height: 10px;
        border-radius: 10px;
        margin-top: -5px;
    }

.k-colorgradient-slider.k-alpha-slider .k-slider-track::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 10px;
    position: relative;
    z-index: -1;
}

.k-colorgradient-slider .k-slider-wrap, .k-colorgradient-slider .k-slider-track-wrap {
    z-index: 1;
}

.k-colorgradient-slider .k-slider-selection {
    display: none;
}

.k-colorgradient-slider .k-draghandle {
    border-width: 3px;
}

.k-colorgradient-inputs {
    gap: 8px;
}

    .k-colorgradient-inputs .k-colorgradient-input-label {
        text-transform: uppercase;
    }

    .k-colorgradient-inputs > .k-vstack, .k-colorgradient-inputs > .k-vbox {
        gap: 4px;
    }

    .k-colorgradient-inputs .k-numerictextbox {
        width: 46px;
    }

    .k-colorgradient-inputs .k-input-inner {
        -webkit-padding-start: 2px;
        padding-inline-start: 2px;
        -webkit-padding-end: 2px;
        padding-inline-end: 2px;
        text-align: center;
        text-overflow: clip;
    }

.k-colorgradient-color-contrast > div {
    display: flex;
    flex-flow: row nowrap;
    gap: 8px;
}

.k-colorgradient-color-contrast .k-contrast-ratio {
    margin-bottom: 8px;
}

.k-colorgradient-color-contrast .k-contrast-ratio-text {
    font-weight: 700;
}

.k-colorgradient-color-contrast .k-contrast-validation {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

    .k-colorgradient-color-contrast .k-contrast-validation .k-icon {
        vertical-align: middle;
    }

        .k-colorgradient-color-contrast .k-contrast-validation .k-icon + .k-icon, .k-colorgradient-color-contrast .k-contrast-validation .k-icon-wrapper-host + .k-icon-wrapper-host .k-icon {
            -webkit-margin-start: -13px;
            margin-inline-start: -13px;
        }

.k-color-contrast-svg {
    position: absolute;
    top: 0;
    left: 0;
    overflow: visible;
    pointer-events: none;
}

.k-colorgradient {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

    .k-colorgradient:focus, .k-colorgradient.k-focus {
        box-shadow: 1px 1px 7px 1px rgba(0, 0, 0, 0.3);
    }

.k-colorgradient-canvas .k-hsv-gradient {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), black), linear-gradient(to right, white, rgba(255, 255, 255, 0));
}

.k-colorgradient .k-draghandle {
    border-color: rgba(255, 255, 255, 0.8);
    background-color: rgba(0, 0, 0, 0);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

    .k-colorgradient .k-draghandle:focus, .k-colorgradient .k-draghandle.k-focus {
        border-color: #fff;
        background-color: rgba(0, 0, 0, 0);
        box-shadow: 0 1px 4px black;
    }

    .k-colorgradient .k-draghandle:hover, .k-colorgradient .k-draghandle.k-hover, .k-colorgradient .k-draghandle.k-active, .k-colorgradient .k-draghandle:active {
        border-color: #fff;
        background-color: rgba(0, 0, 0, 0);
        box-shadow: 0 1px 4px black;
    }

.k-colorgradient-slider.k-hue-slider.k-slider-horizontal .k-slider-track {
    background: linear-gradient(to right, red, #ff0, lime, cyan, blue, #f0f, red);
}

.k-colorgradient-slider.k-hue-slider.k-slider-vertical .k-slider-track {
    background: linear-gradient(to top, red, #ff0, lime, cyan, blue, #f0f, red);
}

.k-colorgradient-slider.k-alpha-slider .k-slider-track::before {
    background: url("data:image/png; base64, iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAuSURBVHgBxYyxDQAwDMJIL+YT+DjtzFRliUfLcklqBCRT4eCTxbD6kdL2/LgYXqpvCbs3kBv/AAAAAElFTkSuQmCC") center repeat;
}

.k-colorgradient-input-label {
    color: #666;
}

.k-rtl .k-colorgradient .k-hue-slider.k-slider-horizontal .k-slider-track, [dir="rtl"] .k-colorgradient .k-hue-slider.k-slider-horizontal .k-slider-track {
    background: linear-gradient(to left, red, #ff0, lime, cyan, blue, #f0f, red);
}

.k-coloreditor {
    border-radius: 4px;
    min-width: 272px;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-size: 14px;
    font-family: inherit;
    line-height: 1.4285714286;
    display: inline-flex;
    flex-direction: column;
    align-items: stretch;
}

    .k-coloreditor *, .k-coloreditor *::before, .k-coloreditor *::after {
        box-sizing: border-box;
    }

.k-coloreditor-header {
    padding: 12px 12px 0;
}

.k-coloreditor-header-actions {
    gap: 8px;
}

.k-coloreditor-preview {
    display: flex;
    flex-flow: column nowrap;
    align-items: stretch;
    justify-content: center;
    gap: 4px;
    position: relative;
    z-index: 1;
}

    .k-coloreditor-preview .k-color-preview {
        width: 32px;
        height: 12px;
    }

.k-coloreditor-views {
    min-width: calc(var(--kendo-color-preview-width, 24px)*var(--kendo-color-preview-columns, 10));
    padding: 12px 12px;
    gap: 12px;
}

    .k-coloreditor-views .k-colorgradient {
        padding: 0;
        width: auto;
        border-width: 0;
    }

        .k-coloreditor-views .k-colorgradient:focus, .k-coloreditor-views .k-colorgradient.k-focus {
            outline: 2px dotted;
            outline-offset: 4px;
            border-radius: 0;
        }

    .k-coloreditor-views .k-colorpalette {
        align-self: center;
    }

    .k-coloreditor-views .k-colorpalette-tile {
        width: var(--kendo-color-preview-width, 24px);
        height: var(--kendo-color-preview-height, 24px);
    }

.k-coloreditor-footer.k-actions, .k-coloreditor-footer.k-edit-buttons, .k-coloreditor-footer.k-action-buttons, .k-coloreditor-footer.k-columnmenu-actions, .k-coloreditor-footer.k-form-buttons {
    margin: 0;
}

.k-coloreditor {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

    .k-coloreditor:focus, .k-coloreditor.k-focus {
        box-shadow: 1px 1px 7px 1px rgba(0, 0, 0, 0.3);
    }

    .k-coloreditor .k-colorgradient:focus, .k-coloreditor .k-colorgradient.k-focus {
        box-shadow: none;
        outline-color: rgba(0, 0, 0, 0.3);
    }

.k-color-picker, .k-colorpicker {
    width: -moz-min-content;
    width: min-content;
}

.k-datetime-selector {
    display: flex;
    transition: transform .2s;
}

.k-datetime-wrap {
    width: 288px;
    overflow: hidden;
}

    .k-datetime-wrap .k-datetime-buttongroup {
        padding: 8px 8px;
    }

    .k-datetime-wrap .k-calendar, .k-datetime-wrap .k-timeselector {
        width: 100%;
        border-width: 0;
    }

.k-datetime-calendar-wrap, .k-datetime-time-wrap {
    text-align: center;
    flex: 0 0 288px;
}

.k-date-tab .k-datetime-selector {
    transform: translateX(0);
}

.k-time-tab .k-datetime-selector {
    transform: translateX(-100%);
}

.k-datetimepicker[dir="rtl"] .k-time-tab .k-datetime-selector, .k-rtl .k-datetimepicker .k-time-tab .k-datetime-selector {
    transform: translateX(100%);
}

.k-daterange-picker, .k-daterangepicker {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-end;
    gap: 8px;
}

    .k-daterange-picker *, .k-daterangepicker *, .k-daterange-picker *::before, .k-daterangepicker *::before, .k-daterange-picker *::after, .k-daterangepicker *::after {
        box-sizing: border-box;
    }

    .k-daterange-picker .k-dateinput, .k-daterangepicker .k-dateinput {
        width: 10em;
    }

.k-daterangepicker-wrap {
    display: inherit;
    flex-flow: inherit;
    align-items: inherit;
    gap: inherit;
}

.k-dropdowngrid-popup {
    overflow: hidden;
}

    .k-dropdowngrid-popup > .k-data-table {
        border-width: 0;
    }

.k-dropdown-operator {
    width: -moz-min-content;
    width: min-content;
    flex: none;
    aspect-ratio: 1;
}

    .k-dropdown-operator .k-input-button {
        border-width: 0;
        width: -moz-min-content;
        width: min-content;
    }

        .k-dropdown-operator .k-input-button .k-button-icon {
            width: auto;
            aspect-ratio: 1;
        }

    .k-dropdown-operator .k-input-inner {
        display: none;
    }

.k-treeview {
    padding: 0;
    border-width: 0;
    background: none;
    box-sizing: border-box;
    outline: 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4285714286;
    display: block;
    cursor: default;
    overflow: auto;
    white-space: nowrap;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-treeview *, .k-treeview *::before, .k-treeview *::after {
        box-sizing: border-box;
    }

.k-treeview-filter {
    padding: 8px;
    display: block;
    position: relative;
    flex: none;
}

.k-treeview-group {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    outline: 0;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-treeview-group.ng-animating {
        overflow: hidden;
    }

.k-treeview-top, .k-treeview-mid, .k-treeview-bot {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
}

.k-treeview-item {
    outline-style: none;
    margin: 0;
    padding: 0 0 0 16px;
    border-width: 0;
    display: block;
}

.k-treeview-toggle {
    margin-left: -16px;
    flex: none;
    display: inline-flex;
    flex-flow: row nowrap;
    align-items: center;
    cursor: pointer;
}

.k-treeview-loading {
    margin-right: 4px;
}

.k-treeview .k-checkbox-wrap, .k-treeview .k-checkbox-wrapper {
    margin-left: 4px;
    margin-right: 4px;
    align-self: center;
}

.k-treeview-leaf {
    border-radius: 4px;
    padding: 4px 8px;
    border: 0px solid transparent;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    align-content: center;
    vertical-align: middle;
    position: relative;
}

    .k-treeview-leaf .k-icon, .k-treeview-leaf .k-image, .k-treeview-leaf .k-sprite {
        margin-right: 4px;
    }

    .k-treeview-leaf.k-focus {
        z-index: 1;
    }

.k-treeview .k-treeview-load-more-button {
    cursor: pointer;
}

    .k-treeview .k-treeview-load-more-button:hover, .k-treeview .k-treeview-load-more-button.k-hover, .k-treeview .k-treeview-load-more-button:focus, .k-treeview .k-treeview-load-more-button.k-focus {
        text-decoration: underline;
    }

.k-rtl .k-treeview .k-treeview-item, .k-treeview[dir="rtl"] .k-treeview-item {
    padding-left: 0;
    padding-right: 16px;
}

.k-rtl .k-treeview .k-treeview-toggle, .k-treeview[dir="rtl"] .k-treeview-toggle {
    margin-left: 0;
    margin-right: -16px;
}

.k-rtl .k-treeview .k-treeview-loading, .k-treeview[dir="rtl"] .k-treeview-loading {
    margin-right: 0;
    margin-left: 4px;
}

.k-rtl .k-treeview .k-treeview-leaf .k-icon, .k-rtl .k-treeview .k-treeview-leaf .k-image, .k-rtl .k-treeview .k-treeview-leaf .k-sprite, .k-rtl .k-treeview .k-in .k-icon, .k-rtl .k-treeview .k-in .k-image, .k-rtl .k-treeview .k-in .k-sprite, .k-treeview[dir="rtl"] .k-treeview-leaf .k-icon, .k-treeview[dir="rtl"] .k-treeview-leaf .k-image, .k-treeview[dir="rtl"] .k-treeview-leaf .k-sprite, .k-treeview[dir="rtl"] .k-in .k-icon, .k-treeview[dir="rtl"] .k-in .k-image, .k-treeview[dir="rtl"] .k-in .k-sprite {
    margin-right: 0;
    margin-left: 4px;
}

.k-treeview-sm {
    font-size: 14px;
    line-height: 1.4285714286;
}

    .k-treeview-sm .k-treeview-leaf {
        padding: 2px 8px;
    }

.k-treeview-md {
    font-size: 14px;
    line-height: 1.4285714286;
}

    .k-treeview-md .k-treeview-leaf {
        padding: 4px 8px;
    }

.k-treeview-lg {
    font-size: 16px;
    line-height: 1.5;
}

    .k-treeview-lg .k-treeview-leaf {
        padding: 8px 12px;
    }

.k-treeview {
    color: #424242;
}

.k-treeview-leaf:hover, .k-treeview-leaf.k-hover {
    color: #424242;
    background-color: #ececec;
}

.k-treeview-leaf:focus, .k-treeview-leaf.k-focus {
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.13);
}

.k-treeview-leaf.k-selected {
    color: #fff;
    background-color: var(--themecolor);
}

.k-treeview .k-treeview-load-more-button {
    color: var(--themecolor);
    background-color: rgba(0, 0, 0, 0);
}

    .k-treeview .k-treeview-load-more-button:hover, .k-treeview .k-treeview-load-more-button.k-hover {
        color: #0f6190;
        background-color: rgba(0, 0, 0, 0);
    }

    .k-treeview .k-treeview-load-more-button:focus, .k-treeview .k-treeview-load-more-button.k-focus {
        color: #0f6190;
        background-color: rgba(0, 0, 0, 0);
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.13);
    }

.k-popup-dropdowntree {
    padding: 0;
}

    .k-popup-dropdowntree .k-check-all {
        padding: 8px 8px 0;
    }

    .k-popup-dropdowntree .k-treeview {
        padding: 8px 8px;
    }

.k-rating {
    margin: 0;
    padding: 0;
    border-width: 0;
    box-sizing: border-box;
    outline: 0;
    background: none;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4285714286;
    display: inline-flex;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-rating *, .k-rating *::before, .k-rating *::after {
        box-sizing: border-box;
    }

    .k-rating.k-readonly {
        pointer-events: none;
    }

.k-rating-container {
    flex: 0 1 auto;
    position: relative;
    margin: 0 4px;
}

    .k-rating-container .k-rating-item {
        display: inline-flex;
        position: relative;
        padding: 4px 4px;
        align-items: center;
        vertical-align: middle;
        margin: 0;
        outline: 0;
        overflow: hidden;
        transition: color 200ms ease-out 0s;
    }

        .k-rating-container .k-rating-item * {
            pointer-events: none;
        }

        .k-rating-container .k-rating-item .k-icon {
            font-size: 24px;
        }

        .k-rating-container .k-rating-item .k-rating-precision-part, .k-rating-container .k-rating-item .k-rating-precision-complement {
            display: inherit;
            position: absolute;
            top: 4px;
            left: 4px;
            overflow: hidden;
        }

        .k-rating-container .k-rating-item .k-rating-precision-complement {
            direction: rtl;
        }

        .k-rating-container .k-rating-item svg {
            fill: currentColor;
        }

.k-rating-label {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    line-height: 1.5;
    margin: 4px 8px;
}

.k-rtl .k-rating-precision-part, [dir="rtl"] .k-rating-precision-part {
    left: auto;
    right: 4px;
}

.k-rtl .k-rating-item .k-rating-precision-complement, [dir="rtl"] .k-rating-item .k-rating-precision-complement {
    direction: ltr;
}

.k-rating {
    color: #424242;
}

    .k-rating:focus .k-rating-item > .k-icon, .k-rating.k-focus .k-rating-item > .k-icon {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .k-rating:focus .k-rating-item.k-selected > .k-icon, .k-rating.k-focus .k-rating-item.k-selected > .k-icon {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

.k-rating-item {
    color: #424242;
}

    .k-rating-item.k-selected {
        color: var(--themecolor);
    }

        .k-rating-item.k-selected:focus, .k-rating-item.k-selected.k-focus {
            color: var(--themecolor);
        }

    .k-rating-item:hover, .k-rating-item.k-hover {
        color: var(--themecolor);
        cursor: pointer;
    }

.k-switch {
    box-sizing: border-box;
    outline: 0;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    line-height: 1;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-switch *, .k-switch *::before, .k-switch *::after {
        box-sizing: border-box;
    }

    .k-switch [type="checkbox"] {
        display: none;
    }

    .k-switch[aria-readonly="true"] {
        pointer-events: none;
    }

    .k-switch.k-readonly {
        pointer-events: none;
    }

.k-switch-track {
    border-width: 1px;
    border-style: solid;
    outline: 0;
    display: flex;
    flex-flow: row nowrap;
    flex: 1 0 auto;
    position: relative;
    transition: background-color 200ms ease-in-out;
}

.k-switch-thumb-wrap {
    width: 0;
    height: 0;
    overflow: visible;
    position: absolute;
    transition: left 200ms ease-in-out;
    top: 50%
}

.k-switch-thumb {
    border-width: 1px;
    border-style: solid;
    display: block;
    position: absolute;
    transform: translate(-50%, -50%);
}

.k-switch-label-on, .k-switch-label-off {
    text-transform: uppercase;
    display: inline;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    overflow: hidden;
}

.k-switch-sm {
    width: 52px;
    height: 26px;
    font-size: 10px;
}

    .k-switch-sm .k-switch-track {
        width: 52px;
        height: 26px;
    }

    .k-switch-sm .k-switch-label-on {
        left: 4px;
    }

    .k-switch-sm .k-switch-label-off {
        right: 4px;
    }

    .k-switch-sm .k-switch-thumb {
        width: 26px;
        height: 26px;
    }

    .k-switch-sm.k-switch-on .k-switch-thumb-wrap {
        left: calc(100% - 13px);
    }

    .k-switch-sm.k-switch-off .k-switch-thumb-wrap {
        left: 13px;
    }

    .k-switch-sm[dir="rtl"] .k-switch-label-on, [dir="rtl"] .k-switch-sm .k-switch-label-on, .k-rtl .k-switch-sm .k-switch-label-on {
        left: auto;
        right: 4px;
    }

    .k-switch-sm[dir="rtl"] .k-switch-label-off, [dir="rtl"] .k-switch-sm .k-switch-label-off, .k-rtl .k-switch-sm .k-switch-label-off {
        right: auto;
        left: 4px;
    }

    .k-switch-sm[dir="rtl"].k-switch-on .k-switch-thumb-wrap, [dir="rtl"] .k-switch-sm.k-switch-on .k-switch-thumb-wrap, .k-rtl .k-switch-sm.k-switch-on .k-switch-thumb-wrap {
        left: 13px;
    }

    .k-switch-sm[dir="rtl"].k-switch-off .k-switch-thumb-wrap, [dir="rtl"] .k-switch-sm.k-switch-off .k-switch-thumb-wrap, .k-rtl .k-switch-sm.k-switch-off .k-switch-thumb-wrap {
        left: calc(100% - 13px);
    }

.k-switch-md {
    width: 60px;
    height: 30px;
    font-size: 10px;
}

    .k-switch-md .k-switch-track {
        width: 60px;
        height: 30px;
    }

    .k-switch-md .k-switch-label-on {
        left: 6px;
    }

    .k-switch-md .k-switch-label-off {
        right: 6px;
    }

    .k-switch-md .k-switch-thumb {
        width: 30px;
        height: 30px;
    }

    .k-switch-md.k-switch-on .k-switch-thumb-wrap {
        left: calc(100% - 15px);
    }

    .k-switch-md.k-switch-off .k-switch-thumb-wrap {
        left: 15px;
    }

    .k-switch-md[dir="rtl"] .k-switch-label-on, [dir="rtl"] .k-switch-md .k-switch-label-on, .k-rtl .k-switch-md .k-switch-label-on {
        left: auto;
        right: 6px;
    }

    .k-switch-md[dir="rtl"] .k-switch-label-off, [dir="rtl"] .k-switch-md .k-switch-label-off, .k-rtl .k-switch-md .k-switch-label-off {
        right: auto;
        left: 6px;
    }

    .k-switch-md[dir="rtl"].k-switch-on .k-switch-thumb-wrap, [dir="rtl"] .k-switch-md.k-switch-on .k-switch-thumb-wrap, .k-rtl .k-switch-md.k-switch-on .k-switch-thumb-wrap {
        left: 15px;
    }

    .k-switch-md[dir="rtl"].k-switch-off .k-switch-thumb-wrap, [dir="rtl"] .k-switch-md.k-switch-off .k-switch-thumb-wrap, .k-rtl .k-switch-md.k-switch-off .k-switch-thumb-wrap {
        left: calc(100% - 15px);
    }

.k-switch-lg {
    width: 68px;
    height: 34px;
    font-size: 10px;
}

    .k-switch-lg .k-switch-track {
        width: 68px;
        height: 34px;
    }

    .k-switch-lg .k-switch-label-on {
        left: 8px;
    }

    .k-switch-lg .k-switch-label-off {
        right: 8px;
    }

    .k-switch-lg .k-switch-thumb {
        width: 34px;
        height: 34px;
    }

    .k-switch-lg.k-switch-on .k-switch-thumb-wrap {
        left: calc(100% - 17px);
    }

    .k-switch-lg.k-switch-off .k-switch-thumb-wrap {
        left: 17px;
    }

    .k-switch-lg[dir="rtl"] .k-switch-label-on, [dir="rtl"] .k-switch-lg .k-switch-label-on, .k-rtl .k-switch-lg .k-switch-label-on {
        left: auto;
        right: 8px;
    }

    .k-switch-lg[dir="rtl"] .k-switch-label-off, [dir="rtl"] .k-switch-lg .k-switch-label-off, .k-rtl .k-switch-lg .k-switch-label-off {
        right: auto;
        left: 8px;
    }

    .k-switch-lg[dir="rtl"].k-switch-on .k-switch-thumb-wrap, [dir="rtl"] .k-switch-lg.k-switch-on .k-switch-thumb-wrap, .k-rtl .k-switch-lg.k-switch-on .k-switch-thumb-wrap {
        left: 17px;
    }

    .k-switch-lg[dir="rtl"].k-switch-off .k-switch-thumb-wrap, [dir="rtl"] .k-switch-lg.k-switch-off .k-switch-thumb-wrap, .k-rtl .k-switch-lg.k-switch-off .k-switch-thumb-wrap {
        left: calc(100% - 17px);
    }

.k-switch[dir="rtl"] .k-switch-thumb, [dir="rtl"] .k-switch .k-switch-thumb, .k-switch.k-rtl .k-switch-thumb, .k-rtl .k-switch .k-switch-thumb {
    transform: translate(50%, -50%);
}

.k-switch-off .k-switch-track {
    border-color: #ebebeb;
    color: #424242;
    background-color: #fff;
}

.k-switch-off .k-switch-thumb {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fafafa;
}

.k-switch-off:focus .k-switch-track, .k-switch-off.k-focus .k-switch-track {
    outline: 2px solid rgba(0, 0, 0, 0.08);
}

.k-switch-off .k-switch-label-on {
    color: transparent;
}

.k-switch-on .k-switch-track {
    border-color: var(--themecolor);
    color: #fff;
    background-color: var(--themecolor);
}

.k-switch-on .k-switch-thumb {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fafafa;
}

.k-switch-on:focus .k-switch-track, .k-switch-on.k-focus .k-switch-track {
    outline: 2px solid rgba(69, 102, 216, 0.25);
}

.k-switch-on .k-switch-label-off {
    color: transparent;
}

.k-external-dropzone {
    height: 220px;
    display: flex;
    flex-flow: row nowrap;
}

.k-dropzone-inner {
    padding: 8px 8px;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    font-size: 14px;
    font-family: inherit;
    line-height: 1.4285714286;
    flex: 1 1 auto;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

    .k-dropzone-inner > .k-icon, .k-dropzone-inner .k-dropzone-icon {
        margin-bottom: 24px;
        font-size: 48px;
    }

    .k-dropzone-inner .k-dropzone-hint {
        margin-bottom: 8px;
    }

    .k-dropzone-inner .k-dropzone-note {
        font-size: 12px;
    }

.k-dropzone-inner {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fafafa;
}

    .k-dropzone-inner > .k-icon, .k-dropzone-inner .k-dropzone-icon {
        color: #7e7e7e;
    }

    .k-dropzone-inner .k-dropzone-note {
        color: #666;
    }

.k-external-dropzone-hover .k-icon, .k-external-dropzone-hover .k-dropzone-icon {
    color: var(--themecolor);
}

.k-upload {
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4285714286;
    position: relative;
    display: block;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-upload *, .k-upload *::before, .k-upload *::after {
        box-sizing: border-box;
    }

    .k-upload .k-upload-button {
        min-width: 7em;
    }

    .k-upload .k-dropzone, .k-upload .k-upload-dropzone {
        padding: 8px 8px;
        border-width: 0;
        text-align: end;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        background-color: transparent;
    }

        .k-upload .k-dropzone .k-dropzone-hint, .k-upload .k-upload-dropzone .k-dropzone-hint {
            font-style: normal;
            font-weight: normal;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            position: relative;
            flex: 1;
        }

        .k-upload .k-dropzone .k-upload-status, .k-upload .k-upload-dropzone .k-upload-status {
            font-weight: normal;
            display: flex;
            align-items: center;
            position: relative;
        }

            .k-upload .k-dropzone .k-upload-status > .k-icon, .k-upload .k-upload-dropzone .k-upload-status > .k-icon {
                -webkit-margin-end: 4px;
                margin-inline-end: 4px;
            }

            .k-upload .k-dropzone .k-upload-status + .k-dropzone-hint, .k-upload .k-upload-dropzone .k-upload-status + .k-dropzone-hint {
                display: none;
            }

    .k-upload .k-dropzone-active .k-upload-status {
        display: none;
    }

        .k-upload .k-dropzone-active .k-upload-status + .k-dropzone-hint {
            display: block;
        }

    .k-upload .k-upload-files {
        max-height: 300px;
        overflow-y: auto;
        margin: 0;
        padding: 0;
        border-width: 1px 0 0;
        border-style: solid;
        border-color: inherit;
        list-style: none;
    }

        .k-upload .k-upload-files .k-file-multiple, .k-upload .k-upload-files .k-file-single {
            width: 100%;
            display: flex;
            justify-content: space-between;
        }

        .k-upload .k-upload-files .k-file-single {
            align-items: center;
        }

        .k-upload .k-upload-files .k-file-multiple {
            align-items: flex-start;
        }

        .k-upload .k-upload-files .k-file {
            padding: 8px 8px 10px;
            border-width: 0 0 1px;
            border-style: solid;
            outline: none;
            display: flex;
            align-items: flex-start;
            position: relative;
        }

            .k-upload .k-upload-files .k-file:last-child {
                border-width: 0;
            }

        .k-upload .k-upload-files .k-filename {
            margin-left: 16px;
            flex: 1;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            position: relative;
        }

        .k-upload .k-upload-files .k-upload-pct {
            margin: 0 4px;
            font-weight: normal;
            vertical-align: middle;
        }

        .k-upload .k-upload-files ~ .k-clear-selected, .k-upload .k-upload-files ~ .k-upload-selected {
            margin-top: -4px;
            border-width: 0;
        }

        .k-upload .k-upload-files ~ .k-upload-selected {
            border-left-width: 1px;
            border-left-style: solid;
            margin-left: -1px;
        }

        .k-upload .k-upload-files .k-file-name, .k-upload .k-upload-files .k-file-size, .k-upload .k-upload-files .k-file-validation-message, .k-upload .k-upload-files .k-file-summary {
            display: block;
        }

        .k-upload .k-upload-files .k-file-name {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            position: relative;
        }

        .k-upload .k-upload-files .k-file-size, .k-upload .k-upload-files .k-file-summary, .k-upload .k-upload-files .k-file-validation-message {
            font-size: 11px;
            line-height: 1;
        }

        .k-upload .k-upload-files .k-file-icon-wrapper .k-file-icon {
            font-size: 32px;
        }

        .k-upload .k-upload-files .k-file-icon-wrapper .k-file-state {
            position: absolute;
        }

        .k-upload .k-upload-files .k-file-state {
            visibility: hidden;
        }

        .k-upload .k-upload-files .k-file-info {
            min-height: 32px;
            display: block;
            overflow: hidden;
            flex: 1 0 0;
        }

    .k-upload .k-multiple-files-wrapper, .k-upload .k-file-single > .k-file-info {
        -webkit-margin-start: 8px;
        margin-inline-start: 8px;
        min-height: 32px;
        display: block;
        overflow: hidden;
        flex: 1 0 0;
    }

        .k-upload .k-multiple-files-wrapper .k-file-info {
            margin-bottom: 12px;
            display: block;
        }

        .k-upload .k-multiple-files-wrapper .k-file-summary {
            margin-top: -4px;
        }

    .k-upload .k-progressbar {
        --kendo-progressbar-height: 2px;
        position: absolute;
        left: 8px;
        right: 8px;
        bottom: 4px;
        width: auto;
    }

    .k-upload .k-actions, .k-upload .k-edit-buttons, .k-upload .k-action-buttons, .k-upload .k-columnmenu-actions, .k-upload .k-form-buttons {
        border-top-width: 1px;
    }

.k-upload-button-wrap {
    position: relative;
    direction: ltr;
}

    .k-upload-button-wrap input {
        font: 170px monospace !important;
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: 1;
    }

        .k-upload-button-wrap input[disabled], .k-upload-button-wrap input.k-disabled {
            visibility: hidden;
        }

.k-upload {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

    .k-upload .k-dropzone, .k-upload .k-upload-dropzone {
        border-color: var(--kendo-border-color);
        color: #424242;
        background-color: #fafafa;
    }

        .k-upload .k-dropzone.k-hover, .k-upload .k-upload-dropzone.k-hover {
            background-color: #ececec;
        }

        .k-upload .k-dropzone .k-dropzone-hint, .k-upload .k-upload-dropzone .k-dropzone-hint {
            color: #666;
        }

    .k-upload .k-upload-files, .k-upload .k-file {
        border-color: var(--kendo-border-color);
    }

        .k-upload .k-file.k-focus {
            box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.13);
        }

        .k-upload .k-file .k-upload-action.k-focus {
            box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.13);
        }

    .k-upload .k-upload-status {
        color: #666;
    }

    .k-upload .k-file-progress .k-progressbar .k-selected {
        background-color: #0058E9;
    }

    .k-upload .k-file-success .k-file-validation-message {
        color: #5cb85c;
    }

    .k-upload .k-file-success .k-progressbar .k-selected {
        background-color: #5cb85c;
    }

    .k-upload .k-file-error .k-file-validation-message {
        color: #df5438;
    }

    .k-upload .k-file-error .k-progressbar .k-selected {
        background-color: #df5438;
    }

    .k-upload .k-file-icon-wrapper {
        color: #666;
        border-color: #666;
    }

    .k-upload .k-file-size, .k-upload .k-file-validation-message, .k-upload .k-file-summary {
        color: #666;
    }

    .k-upload .k-multiple-files-wrapper .k-file-summary {
        color: #424242;
    }

    .k-upload.k-invalid, .k-upload.ng-invalid.ng-touched, .k-upload.ng-invalid.ng-dirty {
        border-color: #df5438;
    }

.k-appbar {
    padding: 8px 8px;
    border-width: 0px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4285714286;
    list-style: none;
    display: flex;
    gap: 8px;
    flex-flow: row wrap;
    align-items: center;
    overflow: hidden;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-appbar *, .k-appbar *::before, .k-appbar *::after {
        box-sizing: border-box;
    }

    .k-appbar > * {
        flex-shrink: 0;
    }

    .k-appbar .k-appbar-section {
        display: inline-flex;
        flex-wrap: nowrap;
        align-items: center;
    }

    .k-appbar .k-appbar-spacer {
        flex: 1 0 auto;
    }

    .k-appbar .k-appbar-spacer-sized {
        flex-grow: 0;
    }

    .k-appbar .k-appbar-separator {
        margin: 0;
        width: 0;
        min-height: 1em;
        border-style: solid;
        border-width: 0 0 0 1px;
        display: inline-block;
    }

    .k-appbar .k-input, .k-appbar .k-picker {
        width: 10em;
    }

    .k-appbar .k-color-picker, .k-appbar .k-colorpicker {
        width: -moz-min-content;
        width: min-content;
    }

.k-appbar-static {
    position: static;
}

.k-appbar-sticky {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.k-appbar-fixed {
    width: 100%;
    position: fixed;
    z-index: 1;
}

.k-appbar-top {
    top: 0;
    bottom: auto;
}

.k-appbar-bottom {
    top: auto;
    bottom: 0;
}

    .k-appbar-bottom.k-appbar-fixed {
        bottom: 0;
    }

.k-appbar {
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.16);
}

.k-appbar-bottom {
    box-shadow: 0px -1px 1px rgba(0, 0, 0, 0.16);
}

.k-appbar-primary {
    color: #fff;
    background-color: var(--themecolor);
}

.k-appbar-secondary {
    color: #fff;
    background-color: #757575;
}

.k-appbar-tertiary {
    color: #fff;
    background-color: #03a9f4;
}

.k-appbar-info {
    color: #fff;
    background-color: #0058E9;
}

.k-appbar-success {
    color: #fff;
    background-color: #5cb85c;
}

.k-appbar-warning {
    color: #fff;
    background-color: #F5A600;
}

.k-appbar-error {
    color: #fff;
    background-color: #df5438;
}

.k-appbar-dark {
    color: #fff;
    background-color: #424242;
}

.k-appbar-light {
    color: #000;
    background-color: #ebebeb;
}

.k-appbar-inverse {
    color: #fff;
    background-color: #424242;
}

.k-fab {
    padding: 0;
    border-width: 0;
    border-style: solid;
    border-color: transparent;
    box-sizing: border-box;
    color: inherit;
    background-color: transparent;
    font-size: 14px;
    line-height: 1.4285714286;
    font-family: inherit;
    text-align: center;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    outline: none;
}

    .k-fab *, .k-fab *::before, .k-fab *::after {
        box-sizing: border-box;
    }

    .k-fab:focus {
        outline: none;
    }

.k-fab-icon {
    width: 20px;
    height: 20px;
}

    .k-fab-icon:not(:only-child) {
        margin-right: 2px;
        margin-left: -2px;
    }

.k-fab-sm {
    padding: 8px 8px;
}

.k-fab-md {
    padding: 16px 16px;
}

.k-fab-lg {
    padding: 24px 24px;
}

.k-fab-items {
    margin: 0;
    padding: 16px 0px;
    display: flex;
}

.k-fab-items-bottom {
    flex-direction: column;
}

    .k-fab-items-bottom .k-fab-item:last-child {
        margin-bottom: 0;
    }

.k-fab-items-top {
    flex-direction: column-reverse;
}

    .k-fab-items-top .k-fab-item:first-child {
        margin-bottom: 0;
    }

.k-fab-item {
    list-style-type: none;
    margin-bottom: 8px;
    outline: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
}

    .k-fab-item.k-text-right {
        flex-direction: row;
    }

        .k-fab-item.k-text-right .k-fab-item-text {
            margin-right: 8px;
        }

    .k-fab-item.k-text-left {
        flex-direction: row-reverse;
    }

        .k-fab-item.k-text-left .k-fab-item-text {
            margin-left: 8px;
        }

.k-fab-item-text {
    padding: 4px 4px;
    border-width: 1px;
    border-radius: 2px;
    font-size: 10px;
    line-height: 1.2;
}

.k-fab-item-icon {
    width: 20px;
    height: 20px;
    padding: 8px 8px;
    border-width: 0;
    border-radius: 50%;
    box-sizing: content-box;
    outline: none;
}

.k-rtl .k-fab, .k-fab[dir="rtl"], [dir="rtl"] .k-fab {
    direction: rtl;
}

    .k-rtl .k-fab .k-fab-icon:not(:only-child), .k-fab[dir="rtl"] .k-fab-icon:not(:only-child), [dir="rtl"] .k-fab .k-fab-icon:not(:only-child) {
        margin-right: -4px;
        margin-left: 4px;
    }

.k-rtl .k-fab-popup .k-fab-item.k-text-left, [dir="rtl"] .k-fab-popup .k-fab-item.k-text-left {
    flex-direction: row;
}

.k-rtl .k-fab-popup .k-fab-item.k-text-right, [dir="rtl"] .k-fab-popup .k-fab-item.k-text-right {
    flex-direction: row-reverse;
}

.k-fab-solid-primary {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.14), 0 1px 18px rgba(0, 0, 0, 0.12), 0 3px 5px rgba(0, 0, 0, 0.2);
    outline: 1px solid var(--themecolor);
    outline-offset: -1px;
    border-color: var(--themecolor);
    color: #fff;
    background-color: var(--themecolor);
}

.k-fab-solid-secondary {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.14), 0 1px 18px rgba(0, 0, 0, 0.12), 0 3px 5px rgba(0, 0, 0, 0.2);
    outline: 1px solid #757575;
    outline-offset: -1px;
    border-color: #757575;
    color: #fff;
    background-color: #757575;
}

.k-fab-solid-tertiary {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.14), 0 1px 18px rgba(0, 0, 0, 0.12), 0 3px 5px rgba(0, 0, 0, 0.2);
    outline: 1px solid #03a9f4;
    outline-offset: -1px;
    border-color: #03a9f4;
    color: #fff;
    background-color: #03a9f4;
}

.k-fab-solid-info {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.14), 0 1px 18px rgba(0, 0, 0, 0.12), 0 3px 5px rgba(0, 0, 0, 0.2);
    outline: 1px solid #0058E9;
    outline-offset: -1px;
    border-color: #0058E9;
    color: #fff;
    background-color: #0058E9;
}

.k-fab-solid-success {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.14), 0 1px 18px rgba(0, 0, 0, 0.12), 0 3px 5px rgba(0, 0, 0, 0.2);
    outline: 1px solid #5cb85c;
    outline-offset: -1px;
    border-color: #5cb85c;
    color: #fff;
    background-color: #5cb85c;
}

.k-fab-solid-warning {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.14), 0 1px 18px rgba(0, 0, 0, 0.12), 0 3px 5px rgba(0, 0, 0, 0.2);
    outline: 1px solid #F5A600;
    outline-offset: -1px;
    border-color: #F5A600;
    color: #fff;
    background-color: #F5A600;
}

.k-fab-solid-error {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.14), 0 1px 18px rgba(0, 0, 0, 0.12), 0 3px 5px rgba(0, 0, 0, 0.2);
    outline: 1px solid #df5438;
    outline-offset: -1px;
    border-color: #df5438;
    color: #fff;
    background-color: #df5438;
}

.k-fab-solid-dark {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.14), 0 1px 18px rgba(0, 0, 0, 0.12), 0 3px 5px rgba(0, 0, 0, 0.2);
    outline: 1px solid #424242;
    outline-offset: -1px;
    border-color: #424242;
    color: #fff;
    background-color: #424242;
}

.k-fab-solid-light {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.14), 0 1px 18px rgba(0, 0, 0, 0.12), 0 3px 5px rgba(0, 0, 0, 0.2);
    outline: 1px solid #ebebeb;
    outline-offset: -1px;
    border-color: #ebebeb;
    color: #000;
    background-color: #ebebeb;
}

.k-fab-solid-inverse {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.14), 0 1px 18px rgba(0, 0, 0, 0.12), 0 3px 5px rgba(0, 0, 0, 0.2);
    outline: 1px solid #424242;
    outline-offset: -1px;
    border-color: #424242;
    color: #fff;
    background-color: #424242;
}

.k-hover.k-fab-solid-primary, .k-fab-solid-primary:hover {
    border-color: #4262cf;
    background-color: #4262cf;
}

.k-hover.k-fab-solid-secondary, .k-fab-solid-secondary:hover {
    border-color: #707070;
    background-color: #707070;
}

.k-hover.k-fab-solid-tertiary, .k-fab-solid-tertiary:hover {
    border-color: #03a2ea;
    background-color: #03a2ea;
}

.k-hover.k-fab-solid-info, .k-fab-solid-info:hover {
    border-color: #0054e0;
    background-color: #0054e0;
}

.k-hover.k-fab-solid-success, .k-fab-solid-success:hover {
    border-color: #58b158;
    background-color: #58b158;
}

.k-hover.k-fab-solid-warning, .k-fab-solid-warning:hover {
    border-color: #eb9f00;
    background-color: #eb9f00;
}

.k-hover.k-fab-solid-error, .k-fab-solid-error:hover {
    border-color: #d65136;
    background-color: #d65136;
}

.k-hover.k-fab-solid-dark, .k-fab-solid-dark:hover {
    border-color: #3f3f3f;
    background-color: #3f3f3f;
}

.k-hover.k-fab-solid-light, .k-fab-solid-light:hover {
    border-color: #e2e2e2;
    background-color: #e2e2e2;
}

.k-hover.k-fab-solid-inverse, .k-fab-solid-inverse:hover {
    border-color: #3f3f3f;
    background-color: #3f3f3f;
}

.k-fab-solid-primary.k-focus, .k-fab-solid-primary:focus {
    outline-style: solid;
    outline-width: 2px;
    outline-color: rgba(69, 102, 216, 0.3);
}

.k-fab-solid-secondary.k-focus, .k-fab-solid-secondary:focus {
    outline-style: solid;
    outline-width: 2px;
    outline-color: rgba(117, 117, 117, 0.3);
}

.k-fab-solid-tertiary.k-focus, .k-fab-solid-tertiary:focus {
    outline-style: solid;
    outline-width: 2px;
    outline-color: rgba(3, 169, 244, 0.3);
}

.k-fab-solid-info.k-focus, .k-fab-solid-info:focus {
    outline-style: solid;
    outline-width: 2px;
    outline-color: rgba(0, 88, 233, 0.3);
}

.k-fab-solid-success.k-focus, .k-fab-solid-success:focus {
    outline-style: solid;
    outline-width: 2px;
    outline-color: rgba(92, 184, 92, 0.3);
}

.k-fab-solid-warning.k-focus, .k-fab-solid-warning:focus {
    outline-style: solid;
    outline-width: 2px;
    outline-color: rgba(245, 166, 0, 0.3);
}

.k-fab-solid-error.k-focus, .k-fab-solid-error:focus {
    outline-style: solid;
    outline-width: 2px;
    outline-color: rgba(223, 84, 56, 0.3);
}

.k-fab-solid-dark.k-focus, .k-fab-solid-dark:focus {
    outline-style: solid;
    outline-width: 2px;
    outline-color: rgba(66, 66, 66, 0.3);
}

.k-fab-solid-light.k-focus, .k-fab-solid-light:focus {
    outline-style: solid;
    outline-width: 2px;
    outline-color: rgba(235, 235, 235, 0.3);
}

.k-fab-solid-inverse.k-focus, .k-fab-solid-inverse:focus {
    outline-style: solid;
    outline-width: 2px;
    outline-color: rgba(66, 66, 66, 0.3);
}

.k-active.k-fab-solid-primary, .k-selected.k-fab-solid-primary, .k-fab-solid-primary:active {
    border-color: #3d5abe;
    background-color: #3d5abe;
}

.k-active.k-fab-solid-secondary, .k-selected.k-fab-solid-secondary, .k-fab-solid-secondary:active {
    border-color: #676767;
    background-color: #676767;
}

.k-active.k-fab-solid-tertiary, .k-selected.k-fab-solid-tertiary, .k-fab-solid-tertiary:active {
    border-color: #0395d7;
    background-color: #0395d7;
}

.k-active.k-fab-solid-info, .k-selected.k-fab-solid-info, .k-fab-solid-info:active {
    border-color: #004dcd;
    background-color: #004dcd;
}

.k-active.k-fab-solid-success, .k-selected.k-fab-solid-success, .k-fab-solid-success:active {
    border-color: #51a251;
    background-color: #51a251;
}

.k-active.k-fab-solid-warning, .k-selected.k-fab-solid-warning, .k-fab-solid-warning:active {
    border-color: #d89200;
    background-color: #d89200;
}

.k-active.k-fab-solid-error, .k-selected.k-fab-solid-error, .k-fab-solid-error:active {
    border-color: #c44a31;
    background-color: #c44a31;
}

.k-active.k-fab-solid-dark, .k-selected.k-fab-solid-dark, .k-fab-solid-dark:active {
    border-color: #3a3a3a;
    background-color: #3a3a3a;
}

.k-active.k-fab-solid-light, .k-selected.k-fab-solid-light, .k-fab-solid-light:active {
    border-color: #cfcfcf;
    background-color: #cfcfcf;
}

.k-active.k-fab-solid-inverse, .k-selected.k-fab-solid-inverse, .k-fab-solid-inverse:active {
    border-color: #3a3a3a;
    background-color: #3a3a3a;
}

.k-disabled.k-fab-solid-primary, .k-fab-solid-primary:disabled {
    box-shadow: 0 6px 10px rgba(91, 91, 91, 0.1744), 0 1px 18px rgba(101, 101, 101, 0.1552), 0 3px 5px rgba(70, 70, 70, 0.232);
    background-color: #8fa3e8;
    color: #fff;
    opacity: 1;
}

.k-disabled.k-fab-solid-secondary, .k-fab-solid-secondary:disabled {
    box-shadow: 0 6px 10px rgba(91, 91, 91, 0.1744), 0 1px 18px rgba(101, 101, 101, 0.1552), 0 3px 5px rgba(70, 70, 70, 0.232);
    background-color: #acacac;
    color: #fff;
    opacity: 1;
}

.k-disabled.k-fab-solid-tertiary, .k-fab-solid-tertiary:disabled {
    box-shadow: 0 6px 10px rgba(91, 91, 91, 0.1744), 0 1px 18px rgba(101, 101, 101, 0.1552), 0 3px 5px rgba(70, 70, 70, 0.232);
    background-color: #68cbf8;
    color: #fff;
    opacity: 1;
}

.k-disabled.k-fab-solid-info, .k-fab-solid-info:disabled {
    box-shadow: 0 6px 10px rgba(91, 91, 91, 0.1744), 0 1px 18px rgba(101, 101, 101, 0.1552), 0 3px 5px rgba(70, 70, 70, 0.232);
    background-color: #669bf2;
    color: #fff;
    opacity: 1;
}

.k-disabled.k-fab-solid-success, .k-fab-solid-success:disabled {
    box-shadow: 0 6px 10px rgba(91, 91, 91, 0.1744), 0 1px 18px rgba(101, 101, 101, 0.1552), 0 3px 5px rgba(70, 70, 70, 0.232);
    background-color: #9dd49d;
    color: #fff;
    opacity: 1;
}

.k-disabled.k-fab-solid-warning, .k-fab-solid-warning:disabled {
    box-shadow: 0 6px 10px rgba(91, 91, 91, 0.1744), 0 1px 18px rgba(101, 101, 101, 0.1552), 0 3px 5px rgba(70, 70, 70, 0.232);
    background-color: #f9ca66;
    color: #fff;
    opacity: 1;
}

.k-disabled.k-fab-solid-error, .k-fab-solid-error:disabled {
    box-shadow: 0 6px 10px rgba(91, 91, 91, 0.1744), 0 1px 18px rgba(101, 101, 101, 0.1552), 0 3px 5px rgba(70, 70, 70, 0.232);
    background-color: #ec9888;
    color: #fff;
    opacity: 1;
}

.k-disabled.k-fab-solid-dark, .k-fab-solid-dark:disabled {
    box-shadow: 0 6px 10px rgba(91, 91, 91, 0.1744), 0 1px 18px rgba(101, 101, 101, 0.1552), 0 3px 5px rgba(70, 70, 70, 0.232);
    background-color: #8e8e8e;
    color: #fff;
    opacity: 1;
}

.k-disabled.k-fab-solid-light, .k-fab-solid-light:disabled {
    box-shadow: 0 6px 10px rgba(91, 91, 91, 0.1744), 0 1px 18px rgba(101, 101, 101, 0.1552), 0 3px 5px rgba(70, 70, 70, 0.232);
    background-color: #f3f3f3;
    color: #666;
    opacity: 1;
}

.k-disabled.k-fab-solid-inverse, .k-fab-solid-inverse:disabled {
    box-shadow: 0 6px 10px rgba(91, 91, 91, 0.1744), 0 1px 18px rgba(101, 101, 101, 0.1552), 0 3px 5px rgba(70, 70, 70, 0.232);
    background-color: #8e8e8e;
    color: #fff;
    opacity: 1;
}

.k-fab-item-text {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.14), 0 1px 18px rgba(0, 0, 0, 0.12), 0 3px 5px rgba(0, 0, 0, 0.2);
}

.k-fab-item-icon {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #f5f5f5;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.14), 0 1px 18px rgba(0, 0, 0, 0.12), 0 3px 5px rgba(0, 0, 0, 0.2);
    outline: 1px solid rgba(0, 0, 0, 0.08);
    outline-offset: -1px;
}

.k-fab-item.k-hover .k-fab-item-icon, .k-fab-item:hover .k-fab-item-icon {
    border-color: rgba(0, 0, 0, 0.1168);
    background-color: #ebebeb;
}

.k-fab-item:focus .k-fab-item-text, .k-fab-item:focus .k-fab-item-icon, .k-fab-item.k-focus .k-fab-item-text, .k-fab-item.k-focus .k-fab-item-icon {
    outline-style: solid;
    outline-width: 2px;
    outline-color: rgba(0, 0, 0, 0.08);
}

.k-fab-item.k-active .k-fab-item-icon, .k-fab-item:active .k-fab-item-icon {
    border-color: rgba(0, 0, 0, 0.1536);
    background-color: #e1e1e1;
}

.k-fab-item.k-disabled, .k-fab-item:disabled {
    opacity: 1;
}

    .k-fab-item.k-disabled .k-fab-item-text, .k-fab-item.k-disabled .k-fab-item-icon, .k-fab-item:disabled .k-fab-item-text, .k-fab-item:disabled .k-fab-item-icon {
        box-shadow: 0 6px 10px rgba(91, 91, 91, 0.1744), 0 1px 18px rgba(101, 101, 101, 0.1552), 0 3px 5px rgba(70, 70, 70, 0.232);
        background-color: #fff;
        color: #8e8e8e;
    }

.k-animation-container > .k-fab-popup {
    box-shadow: none;
}

.k-actionsheet-container {
    width: 100%;
    height: 100%;
    max-width: clamp(100vw, 100%, 100%);
    max-height: clamp(100vh, 100%, 100%);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    overflow: hidden;
    transform: translateZ(0);
}

    .k-actionsheet-container > .k-overlay {
        position: absolute;
        z-index: 1;
    }

    .k-actionsheet-container > .k-animation-container {
        width: 100%;
        height: 100%;
        border-radius: 0;
        overflow: hidden;
        position: absolute;
        z-index: 2;
        top: 0;
        left: 0;
        pointer-events: none;
    }

        .k-actionsheet-container > .k-animation-container > .k-child-animation-container {
            position: absolute;
        }

    .k-actionsheet-container > .k-actionsheet {
        position: absolute;
        z-index: 2;
    }

    .k-actionsheet-container .k-actionsheet {
        pointer-events: all;
    }

.k-actionsheet {
    width: var(--kendo-actionsheet-width, 360px);
    height: var(--kendo-actionsheet-height, 60vh);
    max-width: var(--kendo-actionsheet-max-width, 100%);
    max-height: var(--kendo-actionsheet-max-height, 60vh);
    border-width: 0;
    border-style: solid;
    border-color: transparent;
    box-sizing: border-box;
    font-size: 14px;
    font-family: inherit;
    line-height: 1.4285714286;
    overflow: hidden;
    position: relative;
}

    .k-actionsheet *, .k-actionsheet *::before, .k-actionsheet *::after {
        box-sizing: border-box;
    }

.k-actionsheet-titlebar, .k-actionsheet-jq .k-actionsheet-header {
    padding: 8px 16px;
    border-width: 0;
    border-style: solid;
    border-color: transparent;
    flex: none;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    gap: 16px;
}

.k-actionsheet-titlebar-group {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    width: 100%
}

.k-actionsheet-title {
    flex: 1;
}

.k-actionsheet-subtitle {
    font-size: 12px;
    line-height: 1.25;
}

.k-actionsheet-actions {
    flex: none;
}

.k-actionsheet-content {
    flex: 1;
    overflow: auto;
    position: relative;
}

.k-actionsheet-footer {
    flex: none;
}

.k-actionsheet-items {
    margin: 0;
    padding: 0;
    list-style: none;
    flex: none;
}

.k-actionsheet-item {
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-flow: row nowrap;
    outline: none;
}

.k-actionsheet-action {
    margin: 0;
    padding: 8px 16px;
    min-height: 40px;
    box-sizing: border-box;
    color: inherit;
    text-decoration: none;
    outline: 0;
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    gap: 12px;
}

.k-actionsheet-item-text {
    display: flex;
    flex-flow: column nowrap;
}

.k-actionsheet-item-description {
    font-size: .875em;
}

.k-actionsheet > .k-hr {
    margin: 0;
    border-color: inherit;
    flex: none;
}

.k-actionsheet-top {
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-width: 0px;
    border-top-width: 0;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.k-actionsheet-bottom {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-width: 0px;
    border-bottom-width: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.k-actionsheet-left {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-width: 0px;
    border-left-width: 0;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.k-actionsheet-right {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-width: 0px;
    border-right-width: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.k-actionsheet-fullscreen {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    height: 100%
}

.k-animation-container > .k-actionsheet {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    transform: none;
}

.k-adaptive-actionsheet {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
}

    .k-adaptive-actionsheet .k-actionsheet-titlebar, .k-adaptive-actionsheet .k-actionsheet-jq .k-actionsheet-header, .k-actionsheet-jq .k-adaptive-actionsheet .k-actionsheet-header {
        padding: 16px 16px;
        border-bottom-width: 1px;
    }

    .k-adaptive-actionsheet .k-actionsheet-content {
        padding: 8px 16px;
    }

    .k-adaptive-actionsheet .k-actionsheet-footer {
        padding: 8px 16px;
    }

    .k-adaptive-actionsheet .k-actionsheet-filter {
        width: calc(min(100%, calc( 360px - 32px) ));
    }

    .k-adaptive-actionsheet .k-actionsheet-content, .k-adaptive-actionsheet .k-actionsheet-footer {
        margin-inline: auto;
        width: min(100%, 360px);
    }

    .k-adaptive-actionsheet .k-list-container, .k-adaptive-actionsheet .k-treeview {
        height: 100%
    }

    .k-adaptive-actionsheet .k-list-filter {
        width: 100%;
        padding-inline: 0;
    }

    .k-adaptive-actionsheet .k-calendar {
        margin-inline: auto;
        border-width: 0;
        display: flex;
    }

    .k-adaptive-actionsheet .k-timeselector {
        height: 100%;
        border-width: 0;
        overflow: hidden;
    }

        .k-adaptive-actionsheet .k-timeselector .k-time-part {
            display: contents;
        }

        .k-adaptive-actionsheet .k-timeselector .k-time-list-wrapper {
            height: 100%
        }

    .k-adaptive-actionsheet .k-datetime-wrap {
        width: 100%;
        height: 100%;
        display: flex;
        flex-flow: column nowrap;
    }

    .k-adaptive-actionsheet .k-datetime-selector {
        flex: 1 1 auto;
    }

    .k-adaptive-actionsheet .k-datetime-calendar-wrap {
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        flex: 0 0 100%
    }

    .k-adaptive-actionsheet .k-datetime-time-wrap {
        width: 100%;
        position: absolute;
        top: 0;
        left: 100%;
        bottom: 0;
        flex: 0 0 100%
    }

    .k-adaptive-actionsheet .k-scrollable-wrap {
        height: 100%;
        overflow-y: auto;
    }

    .k-adaptive-actionsheet .k-data-table {
        max-height: 100%;
        overflow: hidden;
        display: flex;
        flex-flow: column nowrap;
    }

.k-actionsheet-jq.k-actionsheet {
    height: auto;
}

.k-actionsheet-jq .k-actionsheet-header {
    align-items: flex-start;
}

.k-actionsheet-jq .k-actionsheet-action {
    align-items: center;
}

.k-actionsheet {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
    box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.2), 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12);
}

.k-actionsheet-subtitle {
    color: #666;
}

.k-actionsheet-item:hover, .k-actionsheet-item.k-hover {
    background-color: #ececec;
}

.k-actionsheet-item:focus, .k-actionsheet-item.k-focus {
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.13);
}

.k-actionsheet-item-description {
    color: #666;
}

.k-adaptive-actionsheet .k-actionsheet-titlebar, .k-adaptive-actionsheet .k-actionsheet-jq .k-actionsheet-header, .k-actionsheet-jq .k-adaptive-actionsheet .k-actionsheet-header {
    border-color: var(--kendo-border-color);
}

.k-window {
    border-radius: 0px;
    padding: 0;
    border-width: 0px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.25;
    display: inline-flex;
    flex-direction: column;
    position: absolute;
    z-index: 10002;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-window.k-window-maximized {
        max-width: 100vw;
        max-height: 100vh;
        box-shadow: none;
    }

.k-window-sm {
    width: 300px;
}

.k-window-md {
    width: 800px;
}

.k-window-lg {
    width: 1200px;
}

.k-window-titlebar {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    padding: 12px 16px;
    border-width: 0 0 1px;
    border-style: solid;
    white-space: nowrap;
    display: flex;
    flex-direction: row;
    flex-shrink: 0;
    align-items: center;
}

.k-window-minimized .k-window-titlebar {
    border-width: 0;
}

.k-window-title {
    padding: .5em 0;
    margin: -.5em 0;
    font-size: 16px;
    line-height: 1.25;
    text-overflow: ellipsis;
    overflow: hidden;
    cursor: default;
    flex: 1;
    display: flex;
    flex-flow: row nowrap;
}

    .k-window-title::before {
        content: "\200b"
    }

.k-window-titlebar-actions {
    margin: -5em 0;
    -webkit-margin-end: -4px;
    margin-inline-end: -4px;
    line-height: 1;
    display: flex;
    flex-flow: row nowrap;
    flex-shrink: 0;
    align-items: center;
    vertical-align: top;
}

.k-window-titlebar-action {
    flex-shrink: 0;
}

.k-window-content, .k-prompt-container {
    padding: 16px 16px;
    border-width: 0;
    border-color: inherit;
    color: inherit;
    background: none;
    outline: 0;
    overflow: auto;
    position: relative;
    flex: 1 1 auto;
}

    .k-window-content + .k-prompt-container {
        margin-top: -8px;
    }

    .k-window-content:first-child {
        padding-top: clamp(16px, 12px, 12px);
    }

    .k-window-content:last-child {
        padding-bottom: clamp(16px, 12px, 12px);
    }

.k-window-iframecontent {
    padding: 0;
    overflow: visible;
}

    .k-window-iframecontent .k-content-frame {
        vertical-align: top;
        border: 0;
        width: 100%;
        height: 100%
    }

.k-window-actions {
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    padding: 8px 8px;
    border-width: 1px 0 0;
    border-style: solid;
    border-color: inherit;
    flex: 0 0 auto;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    overflow: hidden;
}

.k-prompt-container > .k-textarea {
    width: 100%
}

.k-window .k-resize-n {
    top: 0;
}

.k-window .k-resize-e {
    right: 0;
}

.k-window .k-resize-s {
    bottom: 0;
}

.k-window .k-resize-w {
    left: 0;
}

.k-window {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.06);
}

    .k-window:focus, .k-window.k-focus {
        box-shadow: 1px 1px 7px 1px rgba(0, 0, 0, 0.3);
    }

.k-window-titlebar {
    border-color: inherit;
    color: #424242;
    background-color: #fafafa;
}

.k-window-primary .k-window-titlebar {
    color: #fff;
    background-color: var(--themecolor);
}

.k-window-light .k-window-titlebar {
    color: #000;
    background-color: #ebebeb;
}

.k-window-dark .k-window-titlebar {
    color: #fff;
    background-color: #424242;
}

.k-dialog-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    outline: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
}

    .k-dialog-wrapper .k-dialog {
        position: relative;
    }

.k-dialog {
    padding: 0;
    position: fixed;
    box-sizing: border-box;
}

    .k-dialog.k-dialog-centered {
        transform: translate(-50%, -50%);
        top: 50%;
        left: 50%
    }

    .k-dialog .k-multiselect {
        width: 100%
    }

.k-dialog-actions {
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    padding: 8px 8px;
    border-width: 1px 0 0;
    border-style: solid;
    border-color: inherit;
    flex: 0 0 auto;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    gap: 8px;
    overflow: hidden;
}

.k-dialog-titlebar {
    border-color: inherit;
    color: #424242;
    background-color: #fafafa;
}

.k-dialog-primary .k-dialog-titlebar {
    color: #fff;
    background-color: var(--themecolor);
}

.k-dialog-light .k-dialog-titlebar {
    color: #000;
    background-color: #ebebeb;
}

.k-dialog-dark .k-dialog-titlebar {
    color: #fff;
    background-color: #424242;
}

.k-drawer-container {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
}

kendo-drawer.k-drawer, kendo-drawer .k-drawer-wrapper {
    transition: none;
}

.k-drawer {
    height: 100%;
    max-width: 100%;
    border-width: 0;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4285714286;
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    transition: all 300ms ease-in-out;
    overflow: hidden;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-drawer *, .k-drawer *::before, .k-drawer *::after {
        box-sizing: border-box;
    }

.k-drawer-mini .k-drawer.k-drawer-start, .k-drawer-expanded .k-drawer.k-drawer-start, .k-drawer-left.k-drawer-mini .k-drawer, .k-drawer-left.k-drawer-expanded .k-drawer {
    border-right-width: 1px;
}

.k-drawer-mini .k-drawer.k-drawer-end, .k-drawer-expanded .k-drawer.k-drawer-end, .k-drawer-right.k-drawer-mini .k-drawer, .k-drawer-right.k-drawer-expanded .k-drawer {
    border-left-width: 1px;
}

.k-drawer.k-drawer-start, .k-drawer-left .k-drawer {
    top: 0;
    left: 0;
}

.k-drawer.k-drawer-end, .k-drawer-right .k-drawer {
    top: 0;
    right: 0;
}

.k-drawer-content {
    flex: 1 1 auto;
}

.k-drawer-overlay .k-drawer {
    max-width: 80vw;
    position: fixed;
    z-index: 10002;
    border: 0;
}

.k-drawer-overlay > .k-overlay {
    display: none;
}

.k-drawer-overlay.k-drawer-expanded > .k-overlay {
    display: block;
}

.k-drawer-push {
    display: flex;
    flex-direction: row;
}

    .k-drawer-push .k-drawer {
        height: auto;
        position: relative;
        align-self: stretch;
    }

        .k-drawer-push .k-drawer.k-drawer-end, .k-drawer-push.k-drawer-right .k-drawer {
            order: 1;
        }

.k-drawer-wrapper {
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
    transition: all 300ms ease-in-out;
}

    .k-drawer-wrapper::-webkit-scrollbar {
        width: 7px;
    }

    .k-drawer-wrapper::-webkit-scrollbar-thumb {
        border-radius: 20px;
    }

.k-drawer-items, .k-drawer-items ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.k-drawer-item {
    padding: 8px 16px;
    outline: 0;
    color: inherit;
    font-size: 16px;
    line-height: 1.5;
    display: flex;
    flex-flow: row nowrap;
    gap: 16px;
    cursor: pointer;
}

    .k-drawer-item > .k-drawer-link {
        margin: -8px -16px;
        padding: 8px 16px;
        color: inherit;
        display: flex;
        flex-flow: row nowrap;
        flex: 1 0 auto;
        gap: 16px;
    }

    .k-drawer-item .k-icon {
        height: auto;
        font-size: 16px;
        line-height: 1.5;
        flex-shrink: 0;
    }

        .k-drawer-item .k-icon.k-i-none {
            margin: 0;
        }

    .k-drawer-item .k-item-text {
        display: inline-block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .k-drawer-item .k-drawer-toggle {
        -webkit-margin-start: auto;
        margin-inline-start: auto;
        cursor: pointer;
        display: flex;
    }

    .k-drawer-item.k-level-1 {
        -webkit-padding-start: 32px;
        padding-inline-start: 32px;
    }

    .k-drawer-item.k-level-2 {
        -webkit-padding-start: 48px;
        padding-inline-start: 48px;
    }

    .k-drawer-item.k-level-3 {
        -webkit-padding-start: 64px;
        padding-inline-start: 64px;
    }

    .k-drawer-item.k-level-4 {
        -webkit-padding-start: 80px;
        padding-inline-start: 80px;
    }

    .k-drawer-item.k-level-5 {
        -webkit-padding-start: 96px;
        padding-inline-start: 96px;
    }

.k-drawer-separator {
    padding: 0;
    height: 1px;
}

.k-drawer-mini .k-drawer-wrapper {
    width: 48px;
}

.k-rtl.k-drawer-mini .k-drawer-start, .k-rtl .k-drawer-mini .k-drawer-start, .k-rtl .k-drawer-expanded .k-drawer-start, .k-rtl.k-drawer-expanded .k-drawer-start, [dir="rtl"].k-drawer-mini .k-drawer-start, [dir="rtl"] .k-drawer-mini .k-drawer-start, [dir="rtl"] .k-drawer-expanded .k-drawer-start, [dir="rtl"].k-drawer-expanded .k-drawer-start {
    border-left-width: 1px;
    border-right-width: 0;
}

.k-rtl.k-drawer-mini .k-drawer-end, .k-rtl .k-drawer-mini .k-drawer-end, .k-rtl.k-drawer-expanded .k-drawer-end .k-drawer-expanded .k-drawer-end, [dir="rtl"].k-drawer-mini .k-drawer-end, [dir="rtl"] .k-drawer-mini .k-drawer-end, [dir="rtl"].k-drawer-expanded .k-drawer-end .k-drawer-expanded .k-drawer-end {
    border-left-width: 0;
    border-right-width: 1px;
}

.k-rtl.k-drawer-overlay .k-drawer-start, .k-rtl .k-drawer-overlay .k-drawer-start, [dir="rtl"].k-drawer-overlay .k-drawer-start, [dir="rtl"] .k-drawer-overlay .k-drawer-start {
    left: auto;
    right: 0;
}

.k-rtl.k-drawer-overlay .k-drawer-end, .k-rtl .k-drawer-overlay .k-drawer-end, [dir="rtl"].k-drawer-overlay .k-drawer-end, [dir="rtl"] .k-drawer-overlay .k-drawer-end {
    left: 0;
    right: auto;
}

.k-rtl .k-drawer-left.k-drawer-push .k-drawer, [dir="rtl"] .k-drawer-left.k-drawer-push .k-drawer {
    order: 1;
}

.k-rtl .k-drawer-right.k-drawer-push .k-drawer, [dir="rtl"] .k-drawer-right.k-drawer-push .k-drawer {
    order: 0;
}

.k-drawer {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

.k-drawer-wrapper {
    scrollbar-color: rgba(156, 156, 156, 0.7) #dedede;
}

    .k-drawer-wrapper::-webkit-scrollbar-track {
        background: #dedede;
    }

    .k-drawer-wrapper::-webkit-scrollbar-thumb {
        background: rgba(156, 156, 156, 0.7);
    }

        .k-drawer-wrapper::-webkit-scrollbar-thumb:hover {
            background: #9c9c9c;
        }

.k-drawer-item:hover, .k-drawer-item.k-hover {
    color: #424242;
    background-color: #ececec;
}

.k-drawer-item:focus, .k-drawer-item.k-focus {
    background-color: #fff;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12);
}

    .k-drawer-item:focus:hover, .k-drawer-item:focus.k-hover, .k-drawer-item.k-focus:hover, .k-drawer-item.k-focus.k-hover {
        color: #424242;
        background-color: #ececec;
    }

.k-drawer-item.k-selected {
    color: #fff;
    background-color: var(--themecolor);
}

    .k-drawer-item.k-selected:hover, .k-drawer-item.k-selected.k-hover {
        color: #fff;
        background-color: #4262cf;
    }

.k-drawer-separator {
    background-color: rgba(0, 0, 0, 0.08);
}

.k-notification-group {
    max-height: 100%;
    display: inline-flex;
    flex-flow: column-reverse wrap;
    position: fixed;
    z-index: 1000;
}

.k-notification-container {
    margin-block: 2px;
    margin-inline: 0;
    display: inline-flex;
    vertical-align: top;
}

.k-notification-container-animating {
    overflow: hidden;
}

.k-notification {
    border-radius: 4px;
    padding: 4px 8px;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: inherit;
    font-size: 12px;
    line-height: 1.4285714286;
    cursor: default;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-notification *, .k-notification *::before, .k-notification *::after {
        box-sizing: border-box;
    }

    .k-notification > .k-notification-content {
        flex: 1 1 auto;
    }

.k-notification-actions {
    flex: none;
    display: flex;
    gap: 4px;
    flex-flow: row nowrap;
    align-items: center;
    align-self: center;
    cursor: pointer;
}

.k-notification-action {
    flex: none;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    align-self: center;
}

.k-notification {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.03), 0 4px 5px 0 rgba(0, 0, 0, 0.04);
}

.k-notification-inverse {
    border-color: #424242;
    color: #fff;
    background-color: #424242;
}

.k-notification-light {
    border-color: #ebebeb;
    color: #000;
    background-color: #ebebeb;
}

.k-notification-dark {
    border-color: #424242;
    color: #fff;
    background-color: #424242;
}

.k-notification-error {
    border-color: #df5438;
    color: #fff;
    background-color: #df5438;
}

.k-notification-warning {
    border-color: #F5A600;
    color: #fff;
    background-color: #F5A600;
}

.k-notification-success {
    border-color: #5cb85c;
    color: #fff;
    background-color: #5cb85c;
}

.k-notification-info {
    border-color: #0058E9;
    color: #fff;
    background-color: #0058E9;
}

.k-notification-tertiary {
    border-color: #03a9f4;
    color: #fff;
    background-color: #03a9f4;
}

.k-notification-secondary {
    border-color: #757575;
    color: #fff;
    background-color: #757575;
}

.k-notification-primary {
    border-color: var(--themecolor);
    color: #fff;
    background-color: var(--themecolor);
}

kendo-card, kendo-card-header, kendo-card-body, kendo-card-actions, kendo-card-footer {
    display: block;
}

.k-card {
    border-radius: 6px;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4285714286;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-card *, .k-card *::before, .k-card *::after {
        box-sizing: border-box;
    }

    .k-card > .k-card-inner {
        border-radius: 5px;
        display: flex;
        flex-direction: inherit;
        overflow: hidden;
        position: relative;
    }

.k-card-horizontal {
    flex-flow: row nowrap;
}

.k-card-vertical {
    flex-flow: column nowrap;
}

.k-card-header {
    padding: 12px 16px;
    border-width: 0 0 1px;
    border-style: solid;
    outline: 0;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

    .k-card-header .k-card-title, .k-card-header .k-card-subtitle {
        margin-bottom: 0;
    }

        .k-card-header .k-card-title + .k-card-subtitle, .k-card-header .k-card-subtitle + .k-card-subtitle {
            margin-top: 8px;
        }

.k-card-footer {
    padding: 12px 16px;
    border-width: 1px 0 0;
    border-style: solid;
    outline: 0;
    flex-shrink: 0;
}

.k-card-body {
    padding: 16px 16px;
    outline: 0;
    flex: 1 1 auto;
}

    .k-card-body p {
        margin: 0 0 14px;
    }

    .k-card-body > .k-last, .k-card-body > :last-child {
        margin-bottom: 0;
    }

    .k-card-body > .k-card-actions {
        padding: 0;
    }

.k-card-avatar, .k-card .k-avatar {
    margin-right: 16px;
    width: 45px;
    height: 45px;
    flex-basis: 45px;
}

.k-card-image, .k-card-media {
    border: 0;
    max-width: 100%;
    flex-shrink: 0;
    overflow: hidden;
}

    .k-card-image > img, .k-card-media > img {
        border: 0;
        max-width: 100%
    }

.k-card-horizontal .k-card-image, .k-card-horizontal .k-card-media {
    max-width: 100px;
    -o-object-fit: cover;
    object-fit: cover;
}

.k-card-title {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 400;
}

.k-card-subtitle {
    margin: 0 0 8px;
    font-size: 12px;
    line-height: normal;
    font-weight: 400;
}

.k-card-separator {
    margin: 0;
    border-width: 0;
    border-style: solid;
    border-color: inherit;
    display: block;
    flex: 0 0 auto;
    align-self: stretch;
}

    .k-card-separator.k-separator-vertical, .k-card-horizontal > .k-card-separator {
        border-left-width: 1px;
    }

    .k-card-separator.k-separator-horizontal, .k-card-vertical > .k-card-separator {
        border-top-width: 1px;
    }

.k-card > .k-hr {
    margin: 0;
    flex: 0 0 auto;
    border-color: inherit;
}

.k-card-actions {
    padding: 8px 8px;
    border-width: 0;
    border-style: solid;
    border-color: inherit;
    overflow: hidden;
    display: flex;
    flex-shrink: 0;
    flex-basis: auto;
    gap: 8px;
}

.k-card-actions-start {
    justify-content: flex-start;
}

.k-card-actions-end {
    justify-content: flex-end;
}

.k-card-actions-center {
    justify-content: center;
}

.k-card-actions-horizontal {
    flex-flow: row nowrap;
}

.k-card-actions-vertical {
    flex-flow: column nowrap;
}

.k-card-actions-stretched > * {
    flex: 1 1 auto;
}

.k-card-action {
    border-width: 0;
    border-style: solid;
    border-color: inherit;
    display: inline-flex;
}

.k-card-list {
    display: flex;
    flex-flow: column nowrap;
    align-items: stretch;
    gap: 16px;
    flex: 0 0 auto;
}

    .k-card-list .k-card {
        flex: 0 0 auto;
    }

.k-card-deck {
    display: flex;
    flex-flow: row nowrap;
    align-items: stretch;
    gap: 16px;
    flex: 0 0 auto;
}

    .k-card-deck .k-card {
        flex: 0 0 auto;
    }

.k-card-deck-scrollwrap {
    padding-bottom: 3px;
    width: 100%;
    box-sizing: content-box;
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    position: relative;
    overflow: hidden;
}

    .k-card-deck-scrollwrap > .k-button {
        border-radius: 0px;
        flex: 0 0 auto;
        position: absolute;
        z-index: 1;
    }

        .k-card-deck-scrollwrap > .k-button:first-child {
            left: -1px;
        }

        .k-card-deck-scrollwrap > .k-button:last-child {
            right: -1px;
        }

    .k-card-deck-scrollwrap > .k-card-deck {
        margin-bottom: -20px;
        padding-bottom: 20px;
        flex: 1 1 auto;
    }

.k-card-group {
    display: flex;
    flex-flow: row nowrap;
    align-items: stretch;
    flex: 0 0 auto;
}

    .k-card-group .k-card {
        border-radius: 0;
        flex: 0 0 auto;
    }

        .k-card-group .k-card + .k-card {
            -webkit-margin-start: 1px;
            margin-inline-start: 1px;
        }

        .k-card-group .k-card.k-first {
            border-top-left-radius: 6px;
            border-bottom-left-radius: 6px;
        }

        .k-card-group .k-card.k-last {
            border-top-right-radius: 6px;
            border-bottom-right-radius: 6px;
        }

        .k-card-group .k-card.k-only {
            border-radius: 6px;
        }

.k-card-with-callout {
    overflow: visible;
}

.k-card-callout {
    margin: 0;
    width: 20px;
    height: 20px;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    position: absolute;
}

    .k-card-callout.k-callout-n {
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .k-card-callout.k-callout-e {
        top: 50%;
        right: 0;
        transform: translate(50%, -50%) rotate(-45deg);
    }

    .k-card-callout.k-callout-s {
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 50%) rotate(45deg);
    }

    .k-card-callout.k-callout-w {
        top: 50%;
        left: 0;
        transform: translate(-50%, -50%) rotate(45deg);
    }

.k-card-flat {
    box-shadow: none;
}

.k-card {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

    .k-card .k-card-inner {
        background-color: inherit;
        border-color: inherit;
    }

    .k-card:focus, .k-card.k-focus {
        border-color: rgba(0, 0, 0, 0.15);
        box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.06);
    }

    .k-card.k-selected {
        box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.06);
    }

.k-card-actions {
    border-color: var(--kendo-border-color);
}

.k-card-header {
    border-color: var(--kendo-border-color);
    color: #424242;
}

.k-card-footer {
    border-color: var(--kendo-border-color);
    color: #424242;
}

.k-card-separator, .k-card .k-separator {
    border-color: var(--kendo-border-color);
}

.k-card-subtitle {
    color: #666;
}

.k-card-primary {
    background-color: #dae0f7;
    color: #243570;
    border-color: #cbd4f4;
}

    .k-card-primary .k-card-subtitle {
        color: inherit;
    }

.k-card-secondary {
    background-color: #e3e3e3;
    color: #3d3d3d;
    border-color: #d8d8d8;
}

    .k-card-secondary .k-card-subtitle {
        color: inherit;
    }

.k-card-tertiary {
    background-color: #cdeefd;
    color: #02587f;
    border-color: #b8e7fc;
}

    .k-card-tertiary .k-card-subtitle {
        color: inherit;
    }

.k-card-info {
    background-color: #ccdefb;
    color: #002e79;
    border-color: #b8d0f9;
}

    .k-card-info .k-card-subtitle {
        color: inherit;
    }

.k-card-success {
    background-color: #def1de;
    color: #306030;
    border-color: #d1ebd1;
}

    .k-card-success .k-card-subtitle {
        color: inherit;
    }

.k-card-warning {
    background-color: #fdedcc;
    color: #7f5600;
    border-color: #fce6b8;
}

    .k-card-warning .k-card-subtitle {
        color: inherit;
    }

.k-card-error {
    background-color: #f9ddd7;
    color: #742c1d;
    border-color: #f6cfc7;
}

    .k-card-error .k-card-subtitle {
        color: inherit;
    }

.k-card-dark {
    background-color: #d9d9d9;
    color: #222;
    border-color: #cacaca;
}

    .k-card-dark .k-card-subtitle {
        color: inherit;
    }

.k-card-light {
    background-color: #fbfbfb;
    color: #7a7a7a;
    border-color: #f9f9f9;
}

    .k-card-light .k-card-subtitle {
        color: inherit;
    }

.k-card-inverse {
    background-color: #d9d9d9;
    color: #222;
    border-color: #cacaca;
}

    .k-card-inverse .k-card-subtitle {
        color: inherit;
    }

.k-card-wrap:focus > .k-card, .k-card-wrap.k-focus > .k-card, .k-card-wrap.k-selected > .k-card {
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.06);
}

.k-card-callout {
    border-color: inherit;
    background-color: inherit;
    box-shadow: inherit;
}

.k-popover {
    border-radius: 6px;
    padding: 0;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-size: 14px;
    font-family: inherit;
    line-height: 1.4285714286;
    display: flex;
    flex-flow: column nowrap;
    z-index: 12000;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-popover *, .k-popover *::before, .k-popover *::after {
        box-sizing: border-box;
    }

.k-popover-inner {
    height: inherit;
    position: relative;
    border-radius: inherit;
    border-color: inherit;
}

.k-popover-header {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    padding: 12px 16px;
    border-width: 0 0 1px;
    border-style: solid;
    border-color: inherit;
}

.k-popover-body {
    padding: 16px 16px;
}

.k-popover-actions {
    border-width: 1px 0 0;
}

.k-popover-callout {
    margin: 0;
    width: 20px;
    height: 20px;
    border-width: 1px;
    border-style: solid;
    position: absolute;
}

    .k-popover-callout.k-callout-n {
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .k-popover-callout.k-callout-e {
        top: 50%;
        right: 0;
        transform: translate(50%, -50%) rotate(-45deg);
    }

    .k-popover-callout.k-callout-s {
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 50%) rotate(45deg);
    }

    .k-popover-callout.k-callout-w {
        top: 50%;
        left: 0;
        transform: translate(-50%, -50%) rotate(45deg);
    }

.k-popover {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.03), 0 4px 5px 0 rgba(0, 0, 0, 0.04);
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

.k-popover-inner {
    background-color: inherit;
    border-color: inherit;
}

.k-popover-header {
    border-color: var(--kendo-border-color);
    color: #424242;
}

.k-popover-callout {
    border-color: inherit;
    background-color: inherit;
    box-shadow: inherit;
}

.k-rpanel-left, .k-rpanel-right {
    position: fixed;
    display: block;
    overflow: auto;
    min-width: 320px;
    height: 100%;
    top: 0;
}

    .k-rpanel-left + *, .k-rpanel-right + * {
        overflow: auto;
    }

    .k-rpanel-left.k-rpanel-expanded, .k-rpanel-right.k-rpanel-expanded {
        transform: translateX(0) translateZ(0);
    }

.k-rpanel-left {
    transform: translateX(-100%) translateZ(0);
    left: 0;
}

.k-rpanel-right {
    transform: translateX(100%) translateZ(0);
    right: 0;
}

.k-rpanel-top {
    position: static;
    max-height: 0;
}

    .k-rpanel-top.k-rpanel-expanded {
        max-height: 568px;
        overflow: visible !important;
    }

.k-rpanel-toggle {
    touch-action: manipulation;
}

.k-bottom-nav {
    padding: 4px 4px;
    width: 100%;
    border-width: 0;
    border-style: solid;
    border-color: transparent;
    box-sizing: border-box;
    font-size: 14px;
    line-height: normal;
    font-family: inherit;
    letter-spacing: .2px;
    display: flex;
    flex-flow: row nowrap;
    white-space: nowrap;
    gap: 4px;
    overflow: hidden;
    outline: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-bottom-nav *, .k-bottom-nav *::before, .k-bottom-nav *::after {
        box-sizing: border-box;
    }

.k-bottom-nav-border {
    border-width: 1px 0px 0px 0px;
}

.k-bottom-nav-shadow {
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.12);
}

.k-bottom-nav-item {
    padding: 0 8px;
    min-width: 72px;
    min-height: 48px;
    border-width: 0;
    border-radius: 4px;
    box-sizing: border-box;
    font: inherit;
    display: inline-flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    gap: 0 4px;
    text-decoration: none;
    cursor: pointer;
    color: inherit;
    background-color: inherit;
    border-color: inherit;
    outline: none;
}

    .k-bottom-nav-item:focus {
        outline: none;
    }

    .k-bottom-nav-item:hover {
        color: inherit;
        text-decoration: none;
    }

    .k-bottom-nav-item > .k-bottom-nav-link {
        margin: 0 -8px;
        padding: 0 8px;
        width: 100%;
        color: inherit;
        display: flex;
        flex-flow: row nowrap;
        flex: 1 0 auto;
        align-items: center;
        justify-content: center;
        outline: 0;
    }

    .k-bottom-nav-item.k-disabled {
        background-color: initial;
    }

.k-bottom-nav-item-icon {
    font-size: 24px;
}

.k-bottom-nav-item-text {
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%
}

.k-bottom-nav-item-flow-horizontal .k-bottom-nav-item {
    flex-flow: row nowrap;
}

.k-bottom-nav-item-flow-vertical .k-bottom-nav-item {
    flex-direction: column;
}

.k-bottom-nav.k-pos-fixed, .k-bottom-nav.k-fixed {
    bottom: 0;
    z-index: 1;
}

.k-bottom-nav-solid.k-bottom-nav-primary {
    color: #bec9f1;
    background-color: var(--themecolor);
}

    .k-bottom-nav-solid.k-bottom-nav-primary .k-bottom-nav-item.k-focus, .k-bottom-nav-solid.k-bottom-nav-primary .k-bottom-nav-item:focus {
        background-color: rgba(190, 201, 241, 0.2);
    }

    .k-bottom-nav-solid.k-bottom-nav-primary .k-bottom-nav-item.k-selected {
        color: #fff;
    }

.k-bottom-nav-solid.k-bottom-nav-secondary {
    color: #cfcfcf;
    background-color: #757575;
}

    .k-bottom-nav-solid.k-bottom-nav-secondary .k-bottom-nav-item.k-focus, .k-bottom-nav-solid.k-bottom-nav-secondary .k-bottom-nav-item:focus {
        background-color: rgba(207, 207, 207, 0.2);
    }

    .k-bottom-nav-solid.k-bottom-nav-secondary .k-bottom-nav-item.k-selected {
        color: #fff;
    }

.k-bottom-nav-solid.k-bottom-nav-tertiary {
    color: #a7e1fb;
    background-color: #03a9f4;
}

    .k-bottom-nav-solid.k-bottom-nav-tertiary .k-bottom-nav-item.k-focus, .k-bottom-nav-solid.k-bottom-nav-tertiary .k-bottom-nav-item:focus {
        background-color: rgba(167, 225, 251, 0.2);
    }

    .k-bottom-nav-solid.k-bottom-nav-tertiary .k-bottom-nav-item.k-selected {
        color: #fff;
    }

.k-bottom-nav-solid.k-bottom-nav-info {
    color: #a6c5f7;
    background-color: #0058E9;
}

    .k-bottom-nav-solid.k-bottom-nav-info .k-bottom-nav-item.k-focus, .k-bottom-nav-solid.k-bottom-nav-info .k-bottom-nav-item:focus {
        background-color: rgba(166, 197, 247, 0.2);
    }

    .k-bottom-nav-solid.k-bottom-nav-info .k-bottom-nav-item.k-selected {
        color: #fff;
    }

.k-bottom-nav-solid.k-bottom-nav-success {
    color: #c6e6c6;
    background-color: #5cb85c;
}

    .k-bottom-nav-solid.k-bottom-nav-success .k-bottom-nav-item.k-focus, .k-bottom-nav-solid.k-bottom-nav-success .k-bottom-nav-item:focus {
        background-color: rgba(198, 230, 198, 0.2);
    }

    .k-bottom-nav-solid.k-bottom-nav-success .k-bottom-nav-item.k-selected {
        color: #fff;
    }

.k-bottom-nav-solid.k-bottom-nav-warning {
    color: #fce0a6;
    background-color: #F5A600;
}

    .k-bottom-nav-solid.k-bottom-nav-warning .k-bottom-nav-item.k-focus, .k-bottom-nav-solid.k-bottom-nav-warning .k-bottom-nav-item:focus {
        background-color: rgba(252, 224, 166, 0.2);
    }

    .k-bottom-nav-solid.k-bottom-nav-warning .k-bottom-nav-item.k-selected {
        color: #fff;
    }

.k-bottom-nav-solid.k-bottom-nav-error {
    color: #f4c3b9;
    background-color: #df5438;
}

    .k-bottom-nav-solid.k-bottom-nav-error .k-bottom-nav-item.k-focus, .k-bottom-nav-solid.k-bottom-nav-error .k-bottom-nav-item:focus {
        background-color: rgba(244, 195, 185, 0.2);
    }

    .k-bottom-nav-solid.k-bottom-nav-error .k-bottom-nav-item.k-selected {
        color: #fff;
    }

.k-bottom-nav-solid.k-bottom-nav-dark {
    color: #bdbdbd;
    background-color: #424242;
}

    .k-bottom-nav-solid.k-bottom-nav-dark .k-bottom-nav-item.k-focus, .k-bottom-nav-solid.k-bottom-nav-dark .k-bottom-nav-item:focus {
        background-color: rgba(189, 189, 189, 0.2);
    }

    .k-bottom-nav-solid.k-bottom-nav-dark .k-bottom-nav-item.k-selected {
        color: #fff;
    }

.k-bottom-nav-solid.k-bottom-nav-light {
    color: #525252;
    background-color: #ebebeb;
}

    .k-bottom-nav-solid.k-bottom-nav-light .k-bottom-nav-item.k-focus, .k-bottom-nav-solid.k-bottom-nav-light .k-bottom-nav-item:focus {
        background-color: rgba(82, 82, 82, 0.2);
    }

    .k-bottom-nav-solid.k-bottom-nav-light .k-bottom-nav-item.k-selected {
        color: #000;
    }

.k-bottom-nav-solid.k-bottom-nav-inverse {
    color: #bdbdbd;
    background-color: #424242;
}

    .k-bottom-nav-solid.k-bottom-nav-inverse .k-bottom-nav-item.k-focus, .k-bottom-nav-solid.k-bottom-nav-inverse .k-bottom-nav-item:focus {
        background-color: rgba(189, 189, 189, 0.2);
    }

    .k-bottom-nav-solid.k-bottom-nav-inverse .k-bottom-nav-item.k-selected {
        color: #fff;
    }

.k-bottom-nav-flat {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

    .k-bottom-nav-flat .k-bottom-nav-item.k-focus, .k-bottom-nav-flat .k-bottom-nav-item:focus {
        background-color: rgba(66, 66, 66, 0.05);
    }

    .k-bottom-nav-flat.k-bottom-nav-primary .k-bottom-nav-item.k-selected {
        color: var(--themecolor);
    }

    .k-bottom-nav-flat.k-bottom-nav-secondary .k-bottom-nav-item.k-selected {
        color: #595959;
    }

    .k-bottom-nav-flat.k-bottom-nav-tertiary .k-bottom-nav-item.k-selected {
        color: #03a9f4;
    }

    .k-bottom-nav-flat.k-bottom-nav-info .k-bottom-nav-item.k-selected {
        color: #0058E9;
    }

    .k-bottom-nav-flat.k-bottom-nav-success .k-bottom-nav-item.k-selected {
        color: #5cb85c;
    }

    .k-bottom-nav-flat.k-bottom-nav-warning .k-bottom-nav-item.k-selected {
        color: #F5A600;
    }

    .k-bottom-nav-flat.k-bottom-nav-error .k-bottom-nav-item.k-selected {
        color: #df5438;
    }

    .k-bottom-nav-flat.k-bottom-nav-dark .k-bottom-nav-item.k-selected {
        color: #424242;
    }

    .k-bottom-nav-flat.k-bottom-nav-light .k-bottom-nav-item.k-selected {
        color: #b3b3b3;
    }

    .k-bottom-nav-flat.k-bottom-nav-inverse .k-bottom-nav-item.k-selected {
        color: #424242;
    }

.k-breadcrumb {
    border-width: 0px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4285714286;
    display: flex;
    flex-direction: row;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-breadcrumb *, .k-breadcrumb *::before, .k-breadcrumb *::after {
        box-sizing: border-box;
    }

.k-breadcrumb-container, .k-breadcrumb-root-item-container {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-flow: row nowrap;
    overflow: hidden;
}

    .k-breadcrumb-container.k-flex-wrap {
        flex-wrap: wrap;
    }

.k-breadcrumb-root-item-container {
    align-items: flex-start;
    flex-shrink: 0;
}

.k-breadcrumb-item {
    vertical-align: middle;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    overflow: hidden;
}

.k-breadcrumb-root-item {
    flex-shrink: 0;
}

.k-breadcrumb-link, .k-breadcrumb-root-link {
    border-radius: 4px;
    padding: 6px 8px;
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
    outline: none;
    cursor: pointer;
    position: relative;
    display: inline-flex;
    align-items: center;
    align-self: stretch;
    overflow: hidden;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.k-breadcrumb-root-link {
    margin-right: 8px;
}

.k-breadcrumb-link > .k-image, .k-breadcrumb-icontext-link .k-icon {
    margin-right: 4px;
}

.k-breadcrumb-icon-link {
    padding: 8px 8px;
}

.k-breadcrumb-delimiter, .k-breadcrumb-delimiter-icon {
    color: inherit;
    font-size: 12px;
    opacity: .6;
}

.k-breadcrumb-input-container {
    width: 100%
}

    .k-breadcrumb-input-container .k-breadcrumb-input-container {
        border-color: transparent;
    }

.k-breadcrumb[dir="rtl"] .k-breadcrumb-root-link, .k-rtl .k-breadcrumb .k-breadcrumb-root-link {
    margin-right: 0;
    margin-left: 8px;
}

.k-breadcrumb[dir="rtl"] .k-breadcrumb-link > .k-image, .k-breadcrumb[dir="rtl"] .k-breadcrumb-icontext-link .k-icon, .k-rtl .k-breadcrumb .k-breadcrumb-link > .k-image, .k-rtl .k-breadcrumb .k-breadcrumb-icontext-link .k-icon {
    margin-right: 0;
    margin-left: 4px;
}

.k-breadcrumb {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

    .k-breadcrumb:focus, .k-breadcrumb.k-focus {
        box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.06);
    }

.k-breadcrumb-link {
    color: var(--themecolor);
}

    .k-breadcrumb-link:hover, .k-breadcrumb-link.k-hover {
        color: #0f6190;
        background-color: #fafafa;
    }

    .k-breadcrumb-link:focus, .k-breadcrumb-link.k-focus {
        color: var(--themecolor);
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.13);
    }

.k-breadcrumb-root-link:hover, .k-breadcrumb-root-link.k-hover {
    background-color: #fafafa;
}

.k-breadcrumb-root-link:focus, .k-breadcrumb-root-link.k-focus {
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.13);
}

.k-pager {
    padding: 0;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4285714286;
    white-space: nowrap;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    cursor: default;
    flex: 0 0 auto;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-pager *, .k-pager *::before, .k-pager *::after {
        box-sizing: border-box;
    }

    .k-rtl .k-pager .k-i-caret-alt-to-left, .k-rtl .k-pager .k-i-caret-alt-to-right, .k-rtl .k-pager .k-i-caret-alt-left, .k-rtl .k-pager .k-i-caret-alt-right, .k-rtl .k-pager .k-i-arrow-end-left, .k-rtl .k-pager .k-i-arrow-60-left, .k-rtl .k-pager .k-i-arrow-60-right, .k-rtl .k-pager .k-i-arrow-end-right, .k-rtl .k-pager .k-i-seek-w, .k-rtl .k-pager .k-i-arrow-w, .k-rtl .k-pager .k-i-arrow-e, .k-rtl .k-pager .k-i-seek-e, .k-pager[dir="rtl"] .k-i-caret-alt-to-left, .k-pager[dir="rtl"] .k-i-caret-alt-to-right, .k-pager[dir="rtl"] .k-i-caret-alt-left, .k-pager[dir="rtl"] .k-i-caret-alt-right, .k-pager[dir="rtl"] .k-i-arrow-end-left, .k-pager[dir="rtl"] .k-i-arrow-60-left, .k-pager[dir="rtl"] .k-i-arrow-60-right, .k-pager[dir="rtl"] .k-i-arrow-end-right, .k-pager[dir="rtl"] .k-i-seek-w, .k-pager[dir="rtl"] .k-i-arrow-w, .k-pager[dir="rtl"] .k-i-arrow-e, .k-pager[dir="rtl"] .k-i-seek-e, [dir="rtl"] .k-pager .k-i-caret-alt-to-left, [dir="rtl"] .k-pager .k-i-caret-alt-to-right, [dir="rtl"] .k-pager .k-i-caret-alt-left, [dir="rtl"] .k-pager .k-i-caret-alt-right, [dir="rtl"] .k-pager .k-i-arrow-end-left, [dir="rtl"] .k-pager .k-i-arrow-60-left, [dir="rtl"] .k-pager .k-i-arrow-60-right, [dir="rtl"] .k-pager .k-i-arrow-end-right, [dir="rtl"] .k-pager .k-i-seek-w, [dir="rtl"] .k-pager .k-i-arrow-w, [dir="rtl"] .k-pager .k-i-arrow-e, [dir="rtl"] .k-pager .k-i-seek-e {
        transform: scaleX(-1);
    }

.k-pager-input, .k-pager-sizes, .k-pager-info, .k-pager-mobile-sm .k-pager-numbers-wrap select.k-dropdown-list, .k-pager-mobile-sm .k-pager-numbers-wrap select.k-dropdown, .k-pager-mobile-sm .k-pager-numbers-wrap select.k-dropdownlist {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.k-pager-nav, .k-pager-refresh {
    color: inherit;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .k-pager-nav:hover, .k-pager-refresh:hover {
        z-index: 2;
    }

.k-disabled.k-pager-nav, .k-disabled.k-pager-refresh {
    color: inherit;
}

.k-pager-numbers-wrap {
    display: flex;
    flex-direction: row;
    position: relative;
}

    .k-pager-numbers-wrap select.k-dropdown-list, .k-pager-numbers-wrap select.k-dropdown, .k-pager-numbers-wrap select.k-dropdownlist {
        cursor: pointer;
        display: none;
    }

.k-pager-numbers {
    display: flex;
    flex-direction: row;
}

    .k-pager-numbers .k-selected {
        cursor: inherit;
        z-index: 2;
    }

.k-pager-input .k-textbox {
    margin: 0 1ex;
    width: 5em;
}

.k-pager-sizes .k-dropdown-list, .k-pager-sizes .k-dropdown, .k-pager-sizes .k-dropdownlist, .k-pager-sizes > select {
    margin-right: 1ex;
}

.k-pager-sizes .k-input-inner, .k-pager-sizes .k-input-value-text {
    text-overflow: clip;
}

.k-rtl .k-pager-sizes .k-dropdown-list, .k-rtl .k-pager-sizes .k-dropdown, .k-rtl .k-pager-sizes .k-dropdownlist, .k-rtl .k-pager-sizes > select, [dir="rtl"] .k-pager-sizes .k-dropdown-list, [dir="rtl"] .k-pager-sizes .k-dropdown, [dir="rtl"] .k-pager-sizes .k-dropdownlist, [dir="rtl"] .k-pager-sizes > select {
    margin-left: 1ex;
    margin-right: 0;
}

.k-pager-info {
    text-align: right;
    justify-content: flex-end;
    flex: 1 1 0%;
    order: 9;
}

.k-pager-refresh {
    margin-left: auto;
    order: 10;
}

.k-rtl .k-pager-refresh, [dir="rtl"] .k-pager-refresh {
    margin-left: 0;
    margin-right: auto;
}

.k-pager-mobile-sm {
    overflow: visible;
}

    .k-pager-mobile-sm .k-pager-numbers-wrap {
        border-color: inherit;
    }

        .k-pager-mobile-sm .k-pager-numbers-wrap select.k-dropdown-list, .k-pager-mobile-sm .k-pager-numbers-wrap select.k-dropdown, .k-pager-mobile-sm .k-pager-numbers-wrap select.k-dropdownlist {
            margin-left: 16px;
            margin-right: 16px;
            width: 5em;
        }

    .k-pager-mobile-md .k-pager-info, .k-pager-mobile-sm .k-pager-info, .k-pager-mobile-sm .k-pager-sizes, .k-pager-mobile-sm .k-pager-numbers {
        display: none;
    }

.k-pager-sm {
    padding-inline: 4px;
    padding-block: 4px;
    gap: 12px;
}

    .k-pager-sm .k-pager-numbers-wrap .k-button {
        min-width: calc(1.4285714286em + 6px);
    }

    .k-pager-sm .k-pager-numbers-wrap .k-pager-input {
        -webkit-margin-start: 12px;
        margin-inline-start: 12px;
        -webkit-margin-end: 12px;
        margin-inline-end: 12px;
    }

    .k-pager-sm .k-pager-sizes .k-dropdown-list, .k-pager-sm .k-pager-sizes .k-dropdown, .k-pager-sm .k-pager-sizes .k-dropdownlist, .k-pager-sm .k-pager-sizes > select {
        width: 5em;
    }

.k-pager-md {
    padding-inline: 8px;
    padding-block: 8px;
    gap: 14px;
}

    .k-pager-md .k-pager-numbers-wrap .k-button {
        min-width: calc(1.4285714286em + 10px);
    }

    .k-pager-md .k-pager-numbers-wrap .k-pager-input {
        -webkit-margin-start: 14px;
        margin-inline-start: 14px;
        -webkit-margin-end: 14px;
        margin-inline-end: 14px;
    }

    .k-pager-md .k-pager-sizes .k-dropdown-list, .k-pager-md .k-pager-sizes .k-dropdown, .k-pager-md .k-pager-sizes .k-dropdownlist, .k-pager-md .k-pager-sizes > select {
        width: 5em;
    }

.k-pager-lg {
    padding-inline: 10px;
    padding-block: 10px;
    gap: 16px;
}

    .k-pager-lg .k-pager-numbers-wrap .k-button {
        min-width: calc(1.5em + 18px);
    }

    .k-pager-lg .k-pager-numbers-wrap .k-pager-input {
        -webkit-margin-start: 16px;
        margin-inline-start: 16px;
        -webkit-margin-end: 16px;
        margin-inline-end: 16px;
    }

    .k-pager-lg .k-pager-sizes .k-dropdown-list, .k-pager-lg .k-pager-sizes .k-dropdown, .k-pager-lg .k-pager-sizes .k-dropdownlist, .k-pager-lg .k-pager-sizes > select {
        width: 5em;
    }

.k-pager {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fafafa;
}

    .k-pager:focus, .k-pager.k-focus {
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.13);
    }

.k-pager-refresh:hover, .k-hover.k-pager-refresh {
    color: #424242;
    background-color: #ececec;
}

.k-selected.k-pager-refresh {
    color: #fff;
    background-color: var(--themecolor);
}

.k-pager-refresh:focus, .k-focus.k-pager-refresh {
    background-color: rgba(0, 0, 0, 0);
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12);
}

.k-pager-md .k-pager-numbers.k-expanded, .k-pager-sm .k-pager-numbers.k-expanded {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.03), 0 4px 5px 0 rgba(0, 0, 0, 0.04);
}

.k-stepper {
    border-width: 0px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-size: 14px;
    line-height: 1.4285714286;
    font-family: inherit;
    display: block;
    position: relative;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    color: inherit;
    background: none;
}

    .k-stepper *, .k-stepper *::before, .k-stepper *::after {
        box-sizing: border-box;
    }

    .k-stepper .k-step-list {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        z-index: 1;
    }

    .k-stepper .k-step-link {
        outline: none;
        color: inherit;
        text-decoration: none;
        white-space: nowrap;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .k-stepper .k-step-indicator {
        border-radius: 50%;
        margin: 3px;
        width: 28px;
        height: 28px;
        border-width: 1px;
        border-style: solid;
        display: flex;
        align-items: center;
        justify-content: center;
        flex: none;
        position: relative;
        z-index: 1;
        overflow: visible;
        transition-property: color, background-color, border-color;
        transition-duration: .4s;
        transition-timing-function: ease-in-out;
    }

        .k-stepper .k-step-indicator::after {
            border-radius: 100%;
            content: "";
            border-width: 1px;
            border-style: solid;
            border-color: inherit;
            pointer-events: none;
            display: none;
            position: absolute;
            top: -4px;
            right: -4px;
            bottom: -4px;
            left: -4px;
            z-index: 2;
        }

    .k-stepper .k-step.k-focus .k-step-indicator::after, .k-stepper .k-step-link:focus .k-step-indicator::after {
        display: block;
    }

    .k-stepper .k-step-label {
        max-width: clamp(100%, 10em, 100%);
        display: inline-flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        z-index: 1;
    }

        .k-stepper .k-step-label:only-child {
            border-radius: 15px;
            padding: 5px 12px;
            border-width: 0;
        }

        .k-stepper .k-step-label .k-step-text {
            max-width: calc(10em - 20px);
            flex-grow: 1;
            white-space: nowrap;
            text-overflow: ellipsis;
            overflow: hidden;
        }

        .k-stepper .k-step-label .k-icon {
            margin-left: 4px;
        }

    .k-stepper .k-step-current .k-step-label {
        font-weight: bold;
    }

    .k-stepper .k-step-label-optional {
        flex-basis: 100%;
        font-style: italic;
    }

    .k-stepper .k-step-disabled, .k-stepper .k-step.k-disabled {
        opacity: 1;
        pointer-events: none;
    }

        .k-stepper .k-step-disabled .k-step-link, .k-stepper .k-step.k-disabled .k-step-link {
            cursor: default;
        }

        .k-stepper .k-step-disabled .k-step-label-optional, .k-stepper .k-step.k-disabled .k-step-label-optional {
            color: inherit;
        }

    .k-stepper .k-progressbar {
        pointer-events: none;
        z-index: 0;
        overflow: visible;
    }

    .k-stepper .k-progressbar-horizontal {
        grid-row: 1 / -1;
    }

    .k-stepper .k-progressbar-vertical {
        position: absolute;
    }

.k-step-list-horizontal {
    flex-direction: row;
    grid-row: 1;
}

    .k-step-list-horizontal .k-step {
        flex: 1 0 auto;
        text-align: center;
    }

    .k-step-list-horizontal .k-step-link {
        margin: auto;
        max-width: 10em;
        flex-direction: column;
    }

    .k-step-list-horizontal .k-step-label {
        text-align: center;
    }

    .k-step-list-horizontal .k-step-indicator + .k-step-label {
        margin-top: 5px;
    }

    .k-step-list-horizontal ~ .k-progressbar {
        width: 100%;
        height: 2px;
        top: 17px;
    }

.k-step-list-vertical {
    flex-direction: column;
}

    .k-step-list-vertical .k-step {
        min-height: 54px;
    }

    .k-step-list-vertical .k-step-label {
        justify-content: flex-start;
    }

    .k-step-list-vertical .k-step-indicator + .k-step-label {
        margin-left: 12px;
    }

    .k-step-list-vertical ~ .k-progressbar {
        width: 2px;
        height: 100%;
        min-height: 20px;
        left: 17px;
    }

    .k-step-list-vertical .k-step-content {
        height: 0;
        overflow: hidden;
        transition: height 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    }

    .k-step-list-vertical .k-step-current .k-step-content {
        height: auto;
        overflow: visible;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-left: 30px;
        padding: 20px 10px;
    }

.k-rtl .k-stepper, .k-stepper[dir="rtl"] {
    direction: rtl;
}

    .k-rtl .k-stepper .k-step-label .k-icon, .k-stepper[dir="rtl"] .k-step-label .k-icon {
        margin-left: 0;
        margin-right: 4px;
    }

    .k-rtl .k-stepper .k-step-list-vertical .k-step-indicator + .k-step-label, .k-stepper[dir="rtl"] .k-step-list-vertical .k-step-indicator + .k-step-label {
        margin-left: 0;
        margin-right: 12px;
    }

    .k-rtl .k-stepper .k-step-list-vertical ~ .k-progressbar, .k-stepper[dir="rtl"] .k-step-list-vertical ~ .k-progressbar {
        left: auto;
        right: 17px;
    }

.k-stepper {
    color: #424242;
}

    .k-stepper .k-step:hover .k-step-label, .k-stepper .k-step.k-hover .k-step-label, .k-stepper .k-step.k-step-hover .k-step-label {
        color: #373737;
    }

    .k-stepper .k-step:hover .k-step-indicator, .k-stepper .k-step.k-hover .k-step-indicator, .k-stepper .k-step.k-step-hover .k-step-indicator {
        background-color: #ebebeb;
    }

    .k-stepper .k-step.k-focus .k-step-label:only-child, .k-stepper .k-step .k-step-link:focus .k-step-label:only-child {
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.08);
    }

    .k-stepper .k-step.k-step-disabled .k-step-indicator, .k-stepper .k-step.k-disabled .k-step-indicator, .k-stepper .k-step:disabled .k-step-indicator {
        color: #8f8f8f;
    }

    .k-stepper .k-step.k-step-disabled .k-step-label, .k-stepper .k-step.k-disabled .k-step-label, .k-stepper .k-step:disabled .k-step-label {
        color: #8f8f8f;
    }

    .k-stepper .k-step-indicator {
        border-color: #ccc;
        color: #424242;
        background-color: #fff;
    }

        .k-stepper .k-step-indicator::after {
            box-shadow: inset 0 0 0 2px #fff;
        }

    .k-stepper .k-step-label:only-child {
        border-color: var(--kendo-border-color);
        color: #424242;
        background-color: #fff;
    }

    .k-stepper .k-step-done .k-step-indicator {
        border-color: var(--themecolor);
        color: #fff;
        background-color: var(--themecolor);
    }

    .k-stepper .k-step-done:hover .k-step-indicator, .k-stepper .k-step-done.k-hover .k-step-indicator, .k-stepper .k-step-done.k-step-hover .k-step-indicator {
        background-color: #3f5ec7;
    }

    .k-stepper .k-step-done.k-step-disabled .k-step-indicator, .k-stepper .k-step-done.k-disabled .k-step-indicator, .k-stepper .k-step-done:disabled .k-step-indicator {
        border-color: #8fa3e8;
        color: #fff;
        background-color: #8fa3e8;
    }

    .k-stepper .k-step-current .k-step-indicator {
        border-color: var(--themecolor);
        color: #fff;
        background-color: var(--themecolor);
    }

    .k-stepper .k-step-current:hover .k-step-indicator, .k-stepper .k-step-current.k-hover .k-step-indicator, .k-stepper .k-step-current.k-step-hover .k-step-indicator {
        background-color: #3f5ec7;
    }

    .k-stepper .k-step-current.k-step-disabled .k-step-indicator, .k-stepper .k-step-current.k-disabled .k-step-indicator, .k-stepper .k-step-current:disabled .k-step-indicator {
        border-color: #8fa3e8;
        color: #fff;
        background-color: #8fa3e8;
    }

    .k-stepper .k-step-success .k-step-label .k-icon {
        color: #5cb85c;
    }

    .k-stepper .k-step-error .k-step-label {
        color: #df5438;
    }

    .k-stepper .k-step-error .k-step-label {
        color: #df5438;
    }

    .k-stepper .k-step-error:hover .k-step-label, .k-stepper .k-step-error.k-hover .k-step-label, .k-stepper .k-step-error.k-step-hover .k-step-label {
        color: #df5438;
    }

    .k-stepper .k-step-label-optional {
        color: #666;
    }

.k-tabstrip-wrapper {
    padding: 0px 0px;
    box-sizing: border-box;
    border-width: 0px;
    border-style: solid;
    display: flex;
    flex-direction: column;
}

.k-tabstrip {
    border-width: 0;
    border-color: transparent;
    box-sizing: border-box;
    outline: 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4285714286;
    color: inherit;
    background-color: transparent;
    display: flex;
    flex-flow: column nowrap;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-tabstrip-wrapper > .k-tabstrip {
    flex: 1 1 auto;
}

.k-tabstrip-items-wrapper {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: inherit;
    position: relative;
}

.k-tabstrip-items {
    box-sizing: border-box;
    outline: 0;
    display: flex;
    flex-flow: row wrap;
    flex: 1 1 auto;
    gap: 0;
}

    .k-tabstrip-items *, .k-tabstrip-items *::before, .k-tabstrip-items *::after {
        box-sizing: border-box;
    }

    .k-tabstrip-items .k-item {
        margin: 0;
        padding: 0;
        border: 1px solid transparent;
        position: relative;
        flex-shrink: 0;
        display: flex;
        flex-direction: row;
        align-items: stretch;
        justify-items: stretch;
        outline: 0;
    }

    .k-tabstrip-items .k-tab-on-top {
        z-index: 1;
    }

    .k-tabstrip-items .k-link {
        padding: 6px 12px;
        color: inherit;
        cursor: pointer;
        display: inline-flex;
        vertical-align: middle;
        flex: 1 1 auto;
        flex-direction: row;
        align-content: center;
        align-items: center;
    }

.k-tabstrip-content, .k-tabstrip > .k-content {
    margin: 0 !important;
    padding: 16px 16px;
    box-sizing: border-box;
    border-width: 1px;
    border-style: solid;
    border-color: inherit;
    display: none;
    overflow: auto;
    flex: 1 1 auto;
    position: relative;
}

    .k-tabstrip-content.k-active, .k-tabstrip > .k-content.k-active {
        display: block;
    }

    .k-tabstrip-content:focus, .k-tabstrip-content.k-focus, .k-tabstrip > .k-content:focus, .k-tabstrip > .k-content.k-focus {
        outline-width: 1px;
        outline-style: dotted;
        outline-offset: -1px;
    }

.k-tabstrip-items .k-loading {
    width: 20%;
    height: 0;
    border: 0;
    border-top: 1px solid transparent;
    border-color: inherit;
    background: none;
    position: absolute;
    top: 0;
    left: 0;
    transition: width .2s linear;
    display: none;
}

    .k-tabstrip-items .k-loading.k-complete {
        width: 100%;
        border-top-width: 0;
    }

.k-tabstrip-scrollable > .k-tabstrip-items-wrapper > .k-tabstrip-items {
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: hidden;
}

.k-tabstrip-scrollable > .k-tabstrip-items-wrapper > .k-button {
    width: auto;
    height: auto;
    flex: none;
    align-self: stretch;
    aspect-ratio: auto;
}

    .k-tabstrip-scrollable > .k-tabstrip-items-wrapper > .k-button .k-button-icon {
        min-width: auto;
        min-height: auto;
    }

.k-tabstrip-scrollable > .k-tabstrip-items-wrapper.k-hstack > .k-button, .k-tabstrip-scrollable > .k-tabstrip-items-wrapper.k-hbox > .k-button {
    padding: 0 4px;
}

.k-tabstrip-scrollable > .k-tabstrip-items-wrapper.k-vstack > .k-button, .k-tabstrip-scrollable > .k-tabstrip-items-wrapper.k-vbox > .k-button {
    padding: 4px 0;
}

.k-tabstrip-top > .k-tabstrip-items-wrapper {
    border-bottom-width: 1px;
}

    .k-tabstrip-top > .k-tabstrip-items-wrapper .k-item {
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
        margin-bottom: -1px;
    }

        .k-tabstrip-top > .k-tabstrip-items-wrapper .k-item.k-active {
            border-bottom-color: transparent;
        }

.k-tabstrip-top > .k-content, .k-tabstrip-top > .k-tabstrip-content {
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    border-top-width: 0 !important;
}

.k-tabstrip-bottom > .k-tabstrip-items-wrapper {
    border-top-width: 1px;
}

    .k-tabstrip-bottom > .k-tabstrip-items-wrapper .k-item {
        border-bottom-right-radius: 4px;
        border-bottom-left-radius: 4px;
        margin-top: -1px;
    }

        .k-tabstrip-bottom > .k-tabstrip-items-wrapper .k-item.k-active {
            border-top-color: transparent;
        }

.k-tabstrip-bottom > .k-content, .k-tabstrip-bottom > .k-tabstrip-content {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-width: 0 !important;
}

.k-tabstrip-left {
    flex-direction: row;
}

    .k-tabstrip-left > .k-tabstrip-items-wrapper {
        border-right-width: 1px;
    }

        .k-tabstrip-left > .k-tabstrip-items-wrapper > .k-tabstrip-items {
            flex-direction: column;
        }

        .k-tabstrip-left > .k-tabstrip-items-wrapper .k-item {
            border-top-left-radius: 4px;
            border-bottom-left-radius: 4px;
            margin-right: -1px;
        }

            .k-tabstrip-left > .k-tabstrip-items-wrapper .k-item.k-active {
                border-right-color: transparent;
            }

    .k-tabstrip-left > .k-content, .k-tabstrip-left > .k-tabstrip-content {
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
        border-left-width: 0 !important;
    }

.k-tabstrip-right {
    flex-direction: row-reverse;
}

    .k-tabstrip-right > .k-tabstrip-items-wrapper {
        border-left-width: 1px;
    }

        .k-tabstrip-right > .k-tabstrip-items-wrapper > .k-tabstrip-items {
            flex-direction: column;
        }

        .k-tabstrip-right > .k-tabstrip-items-wrapper .k-item {
            border-top-right-radius: 4px;
            border-bottom-right-radius: 4px;
            margin-left: -1px;
        }

            .k-tabstrip-right > .k-tabstrip-items-wrapper .k-item.k-active {
                border-left-color: transparent;
            }

    .k-tabstrip-right > .k-content, .k-tabstrip-right > .k-tabstrip-content {
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
        border-right-width: 0;
    }

.k-tabstrip-items-start {
    justify-content: flex-start;
}

.k-tabstrip-items-center {
    justify-content: center;
}

.k-tabstrip-items-end {
    justify-content: flex-end;
}

.k-tabstrip-items-justify {
    justify-content: space-between;
}

.k-tabstrip-items-stretched > * {
    flex: 1 0 0;
}

.k-rtl .k-tabstrip.k-tabstrip-left > .k-tabstrip-items-wrapper, .k-rtl .k-tabstrip.k-tabstrip-right > .k-tabstrip-items-wrapper, .k-tabstrip[dir="rtl"].k-tabstrip-left > .k-tabstrip-items-wrapper, .k-tabstrip[dir="rtl"].k-tabstrip-right > .k-tabstrip-items-wrapper {
    order: 1;
}

.k-rtl .k-tabstrip.k-tabstrip-left > .k-content, .k-rtl .k-tabstrip.k-tabstrip-right > .k-content, .k-tabstrip[dir="rtl"].k-tabstrip-left > .k-content, .k-tabstrip[dir="rtl"].k-tabstrip-right > .k-content {
    order: 0;
}

.k-rtl .k-tabstrip.k-tabstrip-left > .k-tabstrip-content, .k-rtl .k-tabstrip.k-tabstrip-right > .k-tabstrip-content, .k-tabstrip[dir="rtl"].k-tabstrip-left > .k-tabstrip-content, .k-tabstrip[dir="rtl"].k-tabstrip-right > .k-tabstrip-content {
    order: 0;
}

.k-rtl .k-tabstrip .k-tabstrip-prev, .k-rtl .k-tabstrip .k-tabstrip-next, .k-tabstrip[dir="rtl"] .k-tabstrip-prev, .k-tabstrip[dir="rtl"] .k-tabstrip-next {
    transform: scaleX(-1);
}

.k-tabstrip-items-wrapper {
    border-color: var(--kendo-border-color);
    color: #424242;
}

    .k-tabstrip-items-wrapper .k-item {
        color: var(--themecolor);
    }

        .k-tabstrip-items-wrapper .k-item:hover, .k-tabstrip-items-wrapper .k-item.k-hover {
            color: #0f6190;
        }

        .k-tabstrip-items-wrapper .k-item:active, .k-tabstrip-items-wrapper .k-item.k-active, .k-tabstrip-items-wrapper .k-item.k-selected {
            border-color: var(--kendo-border-color);
            color: #424242;
            background-color: #fff;
        }

        .k-tabstrip-items-wrapper .k-item:focus, .k-tabstrip-items-wrapper .k-item.k-focus {
            box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12);
        }

        .k-tabstrip-items-wrapper .k-item.k-tabstrip-dragging {
            box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.15);
        }

.k-tabstrip-content, .k-tabstrip > .k-content {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

    .k-tabstrip-content:focus, .k-tabstrip-content.k-focus, .k-tabstrip > .k-content:focus, .k-tabstrip > .k-content.k-focus {
        outline-color: #424242;
    }

.k-wizard {
    padding: 20px 20px;
    border-width: 0px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-size: 14px;
    line-height: 1.4285714286;
    font-family: inherit;
    position: relative;
    color: inherit;
    background: none;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

    .k-wizard .k-wizard-steps {
        box-sizing: border-box;
        display: flex;
        overflow: hidden;
    }

    .k-wizard .k-wizard-step {
        box-sizing: border-box;
        padding: 10px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: space-between;
    }

        .k-wizard .k-wizard-step:focus, .k-wizard .k-wizard-step.k-focus {
            outline-width: 1px;
            outline-style: dotted;
            outline-offset: -1px;
        }

    .k-wizard .k-wizard-content {
        box-sizing: border-box;
        overflow-y: auto;
    }

    .k-wizard .k-wizard-buttons {
        margin-top: 32px;
        box-sizing: border-box;
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        flex-shrink: 0;
    }

        .k-wizard .k-wizard-buttons .k-button {
            margin-right: 10px;
        }

        .k-wizard .k-wizard-buttons .k-wizard-pager {
            vertical-align: middle;
        }

    .k-wizard .k-wizard-buttons-right .k-button:last-of-type {
        margin-right: 0;
    }

    .k-wizard .k-stepper .k-step-list-vertical .k-step {
        flex: 1 0 auto;
    }

    .k-wizard .k-stepper .k-step-indicator {
        flex-shrink: 0;
    }

.k-wizard-horizontal {
    flex-direction: column;
}

    .k-wizard-horizontal .k-wizard-steps {
        margin-top: 32px;
    }

    .k-wizard-horizontal .k-wizard-steps, .k-wizard-horizontal .k-wizard-content {
        flex: 1 1 auto;
    }

.k-wizard-vertical .k-wizard-steps {
    flex: 1 0 0%
}

.k-wizard-vertical .k-wizard-content {
    flex: 1 1 0%
}

.k-wizard-vertical .k-wizard-steps {
    margin-left: 32px;
}

.k-wizard-left {
    flex-direction: row-reverse;
}

    .k-wizard-left .k-wizard-steps {
        margin-right: 32px;
        margin-left: 0;
    }

.k-wizard-step:focus, .k-wizard-step.k-focus {
    outline-color: #656565;
}

.k-expander {
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    overflow: hidden;
    outline: 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4285714286;
    display: flex;
    flex-direction: column;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-expander *, .k-expander *::before, .k-expander *::after {
        box-sizing: border-box;
    }

    .k-rtl .k-expander .k-expander-indicator, .k-expander.k-rtl .k-expander-indicator, .k-expander[dir="rtl"] .k-expander-indicator {
        margin-left: 0;
        margin-right: 12px;
    }

.k-expander-header {
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.k-expander-spacer {
    flex: 1 1 auto;
}

.k-expander-title {
    text-transform: uppercase;
    font-weight: 500;
}

.k-expander-indicator {
    margin-left: 12px;
}

.k-expander-content {
    padding: 16px 16px;
}

.k-expander + .k-expander.k-expanded, .k-expander.k-expanded + .k-expander {
    margin-top: 8px;
}

.k-expander:not(.k-expanded) + .k-expander:not(.k-expanded) {
    border-top-width: 0;
}

.k-expander {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

    .k-expander.k-focus {
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12);
    }

.k-expander-header {
    color: #424242;
    background-color: rgba(0, 0, 0, 0);
    outline: none;
}

    .k-expander-header:hover, .k-expander-header.k-hover {
        background-color: rgba(0, 0, 0, 0.04);
    }

    .k-expander-header.k-focus {
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12);
    }

.k-expander-title {
    color: var(--themecolor);
}

.k-expander-sub-title {
    color: #666;
}

.k-panelbar {
    margin: 0;
    padding: 0;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4285714286;
    list-style: none;
    display: block;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-panelbar *, .k-panelbar *::before, .k-panelbar *::after {
        box-sizing: border-box;
    }

    .k-panelbar > .k-item, .k-panelbar > .k-panelbar-header {
        border-width: 0;
        border-style: solid;
        border-color: inherit;
        display: block;
    }

        .k-panelbar > .k-item > .k-link, .k-panelbar > .k-panelbar-header > .k-link {
            padding: 12px 16px;
            color: inherit;
            background: none;
            text-decoration: none;
            font-weight: 500;
            display: flex;
            flex-flow: row nowrap;
            gap: 4px;
            align-items: center;
            align-content: center;
            position: relative;
            -webkit-user-select: none;
            -moz-user-select: none;
            user-select: none;
            cursor: default;
            transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
        }

        .k-panelbar > .k-item + .k-item, .k-panelbar > .k-panelbar-header + .k-panelbar-header {
            border-top-width: 1px;
        }

    .k-panelbar .k-group, .k-panelbar .k-panelbar-group {
        margin: 0;
        padding: 0;
        border-width: 0;
        border-color: inherit;
        color: inherit;
        background-color: transparent;
        list-style: none;
    }

        .k-panelbar .k-group > .k-item, .k-panelbar .k-panelbar-group > .k-panelbar-item {
            display: block;
        }

            .k-panelbar .k-group > .k-item > .k-link, .k-panelbar .k-panelbar-group > .k-panelbar-item > .k-link {
                padding: 8px 16px;
                color: inherit;
                text-decoration: none;
                display: flex;
                flex-flow: row nowrap;
                gap: 4px;
                align-items: center;
                align-content: center;
                position: relative;
                -webkit-user-select: none;
                -moz-user-select: none;
                user-select: none;
                cursor: default;
                transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
            }

            .k-panelbar .k-group > .k-item.k-level-1 .k-link, .k-panelbar .k-panelbar-group > .k-panelbar-item.k-level-1 .k-link {
                padding-left: 16px;
            }

            .k-panelbar .k-group > .k-item.k-level-2 .k-link, .k-panelbar .k-panelbar-group > .k-panelbar-item.k-level-2 .k-link {
                padding-left: 32px;
            }

            .k-panelbar .k-group > .k-item.k-level-3 .k-link, .k-panelbar .k-panelbar-group > .k-panelbar-item.k-level-3 .k-link {
                padding-left: 48px;
            }

            .k-panelbar .k-group > .k-item.k-level-4 .k-link, .k-panelbar .k-panelbar-group > .k-panelbar-item.k-level-4 .k-link {
                padding-left: 64px;
            }

    .k-panelbar .k-panelbar-item {
        outline-style: none;
    }

    .k-panelbar .k-panelbar-content {
        display: flow-root;
    }

    .k-panelbar .k-panelbar-expand, .k-panelbar .k-panelbar-collapse, .k-panelbar .k-panelbar-toggle {
        -webkit-margin-start: auto;
        margin-inline-start: auto;
    }

    .k-panelbar .k-group .k-panelbar-expand, .k-panelbar .k-group .k-panelbar-collapse, .k-panelbar .k-panelbar-group .k-panelbar-toggle {
        -webkit-margin-end: 0px;
        margin-inline-end: 0px;
    }

    .k-rtl .k-panelbar .k-group > .k-item.k-level-1 .k-link, .k-rtl .k-panelbar .k-panelbar-group > .k-panelbar-item.k-level-1 .k-link, .k-panelbar.k-rtl .k-group > .k-item.k-level-1 .k-link, .k-panelbar.k-rtl .k-panelbar-group > .k-panelbar-item.k-level-1 .k-link, .k-panelbar[dir="rtl"] .k-group > .k-item.k-level-1 .k-link, .k-panelbar[dir="rtl"] .k-panelbar-group > .k-panelbar-item.k-level-1 .k-link {
        padding-left: 16px;
        padding-right: 16px;
    }

    .k-rtl .k-panelbar .k-group > .k-item.k-level-2 .k-link, .k-rtl .k-panelbar .k-panelbar-group > .k-panelbar-item.k-level-2 .k-link, .k-panelbar.k-rtl .k-group > .k-item.k-level-2 .k-link, .k-panelbar.k-rtl .k-panelbar-group > .k-panelbar-item.k-level-2 .k-link, .k-panelbar[dir="rtl"] .k-group > .k-item.k-level-2 .k-link, .k-panelbar[dir="rtl"] .k-panelbar-group > .k-panelbar-item.k-level-2 .k-link {
        padding-left: 16px;
        padding-right: 32px;
    }

    .k-rtl .k-panelbar .k-group > .k-item.k-level-3 .k-link, .k-rtl .k-panelbar .k-panelbar-group > .k-panelbar-item.k-level-3 .k-link, .k-panelbar.k-rtl .k-group > .k-item.k-level-3 .k-link, .k-panelbar.k-rtl .k-panelbar-group > .k-panelbar-item.k-level-3 .k-link, .k-panelbar[dir="rtl"] .k-group > .k-item.k-level-3 .k-link, .k-panelbar[dir="rtl"] .k-panelbar-group > .k-panelbar-item.k-level-3 .k-link {
        padding-left: 16px;
        padding-right: 48px;
    }

    .k-rtl .k-panelbar .k-group > .k-item.k-level-4 .k-link, .k-rtl .k-panelbar .k-panelbar-group > .k-panelbar-item.k-level-4 .k-link, .k-panelbar.k-rtl .k-group > .k-item.k-level-4 .k-link, .k-panelbar.k-rtl .k-panelbar-group > .k-panelbar-item.k-level-4 .k-link, .k-panelbar[dir="rtl"] .k-group > .k-item.k-level-4 .k-link, .k-panelbar[dir="rtl"] .k-panelbar-group > .k-panelbar-item.k-level-4 .k-link {
        padding-left: 16px;
        padding-right: 64px;
    }

.k-panelbar {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

    .k-panelbar > .k-item > .k-link, .k-panelbar > .k-panelbar-header > .k-link {
        color: var(--themecolor);
        background-color: #fff;
    }

        .k-panelbar > .k-item > .k-link .k-icon, .k-panelbar > .k-item > .k-link .k-panelbar-item-icon, .k-panelbar > .k-panelbar-header > .k-link .k-icon, .k-panelbar > .k-panelbar-header > .k-link .k-panelbar-item-icon {
            color: #424242;
        }

        .k-panelbar > .k-item > .k-link:hover, .k-panelbar > .k-item > .k-link.k-hover, .k-panelbar > .k-panelbar-header > .k-link:hover, .k-panelbar > .k-panelbar-header > .k-link.k-hover {
            background-color: #f5f5f5;
        }

        .k-panelbar > .k-item > .k-link:focus, .k-panelbar > .k-item > .k-link.k-focus, .k-panelbar > .k-panelbar-header > .k-link:focus, .k-panelbar > .k-panelbar-header > .k-link.k-focus {
            box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12);
        }

        .k-panelbar > .k-item > .k-link.k-selected, .k-panelbar > .k-panelbar-header > .k-link.k-selected {
            color: #fff;
            background-color: var(--themecolor);
        }

            .k-panelbar > .k-item > .k-link.k-selected .k-icon, .k-panelbar > .k-item > .k-link.k-selected .k-panelbar-item-icon, .k-panelbar > .k-panelbar-header > .k-link.k-selected .k-icon, .k-panelbar > .k-panelbar-header > .k-link.k-selected .k-panelbar-item-icon {
                color: inherit;
            }

            .k-panelbar > .k-item > .k-link.k-selected:hover, .k-panelbar > .k-item > .k-link.k-selected.k-hover, .k-panelbar > .k-panelbar-header > .k-link.k-selected:hover, .k-panelbar > .k-panelbar-header > .k-link.k-selected.k-hover {
                background-color: #3f5ec7;
            }

    .k-panelbar .k-group > .k-item > .k-link:hover, .k-panelbar .k-group > .k-item > .k-link.k-hover, .k-panelbar .k-group > .k-panelbar-item > .k-link:hover, .k-panelbar .k-group > .k-panelbar-item > .k-link.k-hover, .k-panelbar .k-panelbar-group > .k-item > .k-link:hover, .k-panelbar .k-panelbar-group > .k-item > .k-link.k-hover, .k-panelbar .k-panelbar-group > .k-panelbar-item > .k-link:hover, .k-panelbar .k-panelbar-group > .k-panelbar-item > .k-link.k-hover {
        background-color: #f5f5f5;
    }

    .k-panelbar .k-group > .k-item > .k-link:focus, .k-panelbar .k-group > .k-item > .k-link.k-focus, .k-panelbar .k-group > .k-panelbar-item > .k-link:focus, .k-panelbar .k-group > .k-panelbar-item > .k-link.k-focus, .k-panelbar .k-panelbar-group > .k-item > .k-link:focus, .k-panelbar .k-panelbar-group > .k-item > .k-link.k-focus, .k-panelbar .k-panelbar-group > .k-panelbar-item > .k-link:focus, .k-panelbar .k-panelbar-group > .k-panelbar-item > .k-link.k-focus {
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12);
    }

    .k-panelbar .k-group > .k-item > .k-link.k-selected, .k-panelbar .k-group > .k-panelbar-item > .k-link.k-selected, .k-panelbar .k-panelbar-group > .k-item > .k-link.k-selected, .k-panelbar .k-panelbar-group > .k-panelbar-item > .k-link.k-selected {
        color: #fff;
        background-color: var(--themecolor);
    }

        .k-panelbar .k-group > .k-item > .k-link.k-selected:hover, .k-panelbar .k-group > .k-item > .k-link.k-selected.k-hover, .k-panelbar .k-group > .k-panelbar-item > .k-link.k-selected:hover, .k-panelbar .k-group > .k-panelbar-item > .k-link.k-selected.k-hover, .k-panelbar .k-panelbar-group > .k-item > .k-link.k-selected:hover, .k-panelbar .k-panelbar-group > .k-item > .k-link.k-selected.k-hover, .k-panelbar .k-panelbar-group > .k-panelbar-item > .k-link.k-selected:hover, .k-panelbar .k-panelbar-group > .k-panelbar-item > .k-link.k-selected.k-hover {
            background-color: #3f5ec7;
        }

.k-splitter {
    height: 300px;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4285714286;
    display: block;
    position: relative;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-splitter .k-pane {
        overflow: hidden;
    }

    .k-splitter .k-scrollable {
        overflow: auto;
    }

    .k-splitter .k-splitter-resizing {
        overflow: hidden;
    }

.k-pane > .k-splitter {
    border-width: 0;
    overflow: hidden;
}

.k-splitter .k-pane-loading {
    position: static;
    top: 50%;
    left: 50%
}

.k-ghost-splitbar, .k-splitbar {
    border-style: solid;
    outline: 0;
    position: absolute;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .k-ghost-splitbar .k-collapse-prev, .k-ghost-splitbar .k-collapse-next, .k-splitbar .k-collapse-prev, .k-splitbar .k-collapse-next {
        cursor: pointer;
    }

    .k-ghost-splitbar .k-icon, .k-splitbar .k-icon {
        font-size: 10px;
    }

.k-splitbar-draggable-horizontal {
    cursor: col-resize;
}

.k-splitbar-draggable-vertical {
    cursor: row-resize;
}

.k-ghost-splitbar-horizontal, .k-splitbar-horizontal {
    width: 8px;
    border-width: 0;
    background-repeat: repeat-y;
    flex-direction: column;
    top: 0;
}

.k-ghost-splitbar-vertical, .k-splitbar-vertical {
    height: 8px;
    border-width: 0;
    background-repeat: repeat-x;
    flex-direction: row;
    left: 0;
}

.k-splitbar-static-horizontal {
    width: 1px;
}

.k-splitbar-static-vertical {
    height: 1px;
}

.k-splitbar-draggable-horizontal .k-resize-handle {
    width: 2px;
    height: 20px;
    position: static;
    z-index: 1;
}

.k-splitbar .k-resize-handle {
    display: none;
    background-color: currentColor;
}

.k-splitbar-draggable-horizontal .k-resize-handle, .k-splitbar-draggable-vertical .k-resize-handle {
    display: block;
}

.k-splitbar-horizontal .k-collapse-prev {
    margin-bottom: 7px;
}

.k-splitbar-horizontal .k-collapse-next {
    margin-top: 7px;
}

.k-splitbar-vertical .k-collapse-prev {
    margin-right: 7px;
    padding: 10px;
}

.k-splitbar-vertical .k-collapse-next {
    margin-left: 7px;
    padding: 10px;
}

.k-splitbar-vertical .k-collapse-next .k-icon-xs.k-svg-icon{
    width: 30px;
    height: 30px;
}

.k-splitbar-draggable-vertical .k-resize-handle {
    width: 30px;
    height: 2px;
    position: static;
    z-index: 1;
}

.k-pane > .k-splitter-overlay {
    opacity: 0;
    position: absolute;
}

.k-splitter-flex {
    display: flex;
    width: 100%;
    height: auto;
}

    .k-splitter-flex .k-pane {
        position: relative;
        flex: 1 1 auto;
        min-width: 0;
        max-width: 100%;
        min-height: 0;
        max-height: 100%;
        height: 100%
    }

    .k-splitter-flex .k-pane-static {
        flex-grow: 0;
        flex-shrink: 0;
    }

    .k-splitter-flex .k-pane-flex {
        display: flex;
    }

    .k-splitter-flex .k-splitbar {
        position: static;
        flex: 0 0 auto;
    }

    .k-splitter-flex .k-pane.k-hidden, .k-splitter-flex .k-pane[hidden], .k-splitter-flex .k-pane-flex.k-hidden, .k-splitter-flex .k-pane-flex[hidden] {
        flex: 0 1 0% !important;
        overflow: hidden !important;
        display: block !important;
    }

    .k-splitter-flex.k-splitter-horizontal {
        flex-direction: row;
    }

        .k-splitter-flex.k-splitter-horizontal[dir="rtl"] > .k-splitbar > .k-collapse-next, .k-splitter-flex.k-splitter-horizontal[dir="rtl"] > .k-splitbar > .k-collapse-prev {
            transform: scaleX(-1);
        }

    .k-splitter-flex.k-splitter-vertical {
        flex-direction: column;
    }

.k-splitter {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

.k-splitbar {
    color: #424242;
    background-color: #fafafa;
}

    .k-splitbar:hover, .k-splitbar.k-hover, .k-splitbar-horizontal-hover, .k-splitbar-vertical-hover {
        color: #424242;
        background-color: #f0f0f0;
    }

    .k-splitbar:focus, .k-splitbar.k-focus {
        color: #fff;
        background: var(--themecolor);
    }

.k-ghost-splitbar {
    background-color: #f0f0f0;
}

.k-tilelayout {
    border-width: 0px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    display: grid;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-tilelayout .k-card {
        box-shadow: none;
        border-width: 1px;
    }

.k-tilelayout-item {
    position: relative;
    z-index: 0;
}

.k-layout-item-hint {
    border-radius: 6px;
    border-width: 1px;
    border-style: solid;
    position: relative;
}

    .k-layout-item-hint.k-layout-item-hint-resize {
        z-index: 3;
    }

.k-tilelayout-item-header.k-card-header {
    z-index: 0;
}

.k-tilelayout-item-body {
    min-height: 0;
}

.k-tilelayout {
    background-color: #fafafa;
}

.k-tilelayout-item:focus, .k-tilelayout-item.k-focus {
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.06);
}

.k-layout-item-hint {
    border-color: var(--kendo-border-color);
    background-color: rgba(255, 255, 255, 0.2);
}

.k-pane-wrapper {
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4285714286;
    display: block;
    position: relative;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-pane-wrapper .k-pane {
        width: 100%;
        height: 100%;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
        box-sizing: border-box;
        font-family: sans-serif;
        overflow-x: hidden;
    }

    .k-pane-wrapper .k-view {
        top: 0;
        left: 0;
        position: relative;
        border: 0;
        box-sizing: border-box;
        outline: 0;
        font-family: inherit;
        font-size: 14px;
        line-height: 1.4285714286;
        display: flex;
        height: 100%;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        align-content: stretch;
        vertical-align: top;
        -webkit-touch-callout: none;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    }

    .k-pane-wrapper .k-content {
        min-height: 1px;
        flex: 1;
        align-items: stretch;
        display: block;
        width: auto;
        overflow: hidden;
        position: relative;
    }

    .k-pane-wrapper > div.k-pane {
        box-shadow: none;
        font-weight: normal;
    }

    .k-pane-wrapper .k-popup-edit-form .k-content, .k-pane-wrapper .k-grid-edit-form .k-content, .k-pane-wrapper .k-grid-header-menu .k-content, .k-pane-wrapper .k-grid-filter-menu .k-content {
        overflow-y: auto;
    }

        .k-pane-wrapper .k-popup-edit-form .k-content > .k-scroll-container, .k-pane-wrapper .k-grid-edit-form .k-content > .k-scroll-container, .k-pane-wrapper .k-grid-header-menu .k-content > .k-scroll-container, .k-pane-wrapper .k-grid-filter-menu .k-content > .k-scroll-container {
            position: absolute;
            width: 100%;
            min-height: 100%;
            box-sizing: border-box;
        }

    .k-pane-wrapper .k-grid-edit-form .k-popup-edit-form, .k-pane-wrapper .k-grid-edit-form .k-edit-form-container {
        width: auto;
        min-width: auto;
    }

.k-grid.k-grid-mobile {
    border-width: 0;
}

.k-grid-mobile .k-resize-handle-inner::before {
    content: "\e01e";
    position: absolute;
    font: 16px/1 "WebComponentsIcons";
    top: calc(50% - 1px);
    left: 50%;
    transform: translate(-50%, -50%);
    padding: .2em;
}

.k-grid-mobile .k-header a {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.k-pane-wrapper .k-scheduler-edit-form .k-recur-view {
    padding: 0;
    flex-direction: column;
    align-items: stretch;
}

    .k-pane-wrapper .k-scheduler-edit-form .k-recur-view > .k-listgroup-form-row {
        margin: 0;
    }

.k-pane-wrapper .k-scheduler-edit-form .k-recur-items-wrap {
    width: 100%;
    margin: -1px 0;
}

.k-pane-wrapper .k-scheduler-edit-form .k-scheduler-recur-end-wrap {
    white-space: nowrap;
}

.k-scheduler.k-scheduler-mobile {
    border-width: 0;
}

.k-scheduler-mobile th {
    font-weight: normal;
}

.k-scheduler-mobile .k-event:hover .k-resize-handle {
    visibility: hidden;
}

.k-scheduler-mobile .k-scheduler-toolbar {
    padding: 8px 8px;
}

    .k-scheduler-mobile .k-scheduler-toolbar > * {
        margin: 0;
    }

    .k-scheduler-mobile .k-scheduler-toolbar::before {
        display: none;
    }

    .k-scheduler-mobile .k-scheduler-toolbar .k-scheduler-navigation {
        width: 100%;
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
        margin: 0;
    }

        .k-scheduler-mobile .k-scheduler-toolbar .k-scheduler-navigation .k-nav-current {
            line-height: 1;
            display: flex;
            flex-flow: column nowrap;
            align-items: center;
            justify-content: space-evenly;
            gap: 0;
        }

    .k-scheduler-mobile .k-scheduler-toolbar .k-scheduler-views-wrapper .k-views-dropdown {
        display: inline-block;
    }

.k-scheduler-mobile .k-scheduler-footer {
    padding: 8px 8px;
    display: flex;
    justify-content: space-between;
}

    .k-scheduler-mobile .k-scheduler-footer > * {
        margin: 0;
    }

    .k-scheduler-mobile .k-scheduler-footer::before {
        display: none;
    }

.k-scheduler-mobile .k-scheduler-monthview .k-hidden {
    height: 40px;
}

.k-scheduler-mobile .k-scheduler-monthview .k-scheduler-table td {
    height: 40px;
    vertical-align: top;
    text-align: center;
}

.k-scheduler-mobile .k-scheduler-monthview .k-events-container {
    position: absolute;
    text-align: center;
    height: 6px;
    line-height: 6px;
}

.k-scheduler-mobile .k-scheduler-monthview .k-event {
    position: static;
    padding: 4px;
    border-radius: 50%;
    display: inline-block;
    width: 4px;
    height: 4px;
    min-height: 0;
    margin: 1px;
}

.k-scheduler-mobile .k-scheduler-dayview .k-mobile-header.k-mobile-horizontal-header .k-scheduler-times table tr:first-child {
    display: none;
}

.k-scheduler-mobile .k-scheduler-dayview .k-mobile-header .k-scheduler-header .k-scheduler-date-group {
    display: none;
}

.k-scheduler-mobile .k-scheduler-header-wrap > div {
    overflow: visible;
}

.k-scheduler-mobile .k-scheduler-agendaview .k-mobile-header {
    display: none;
}

.k-scheduler-mobile .k-scheduler-agendaview .k-scheduler-table {
    table-layout: auto;
}

    .k-scheduler-mobile .k-scheduler-agendaview .k-scheduler-table .k-scheduler-groupcolumn {
        width: 1%
    }

    .k-scheduler-mobile .k-scheduler-agendaview .k-scheduler-table td {
        white-space: normal;
    }

.k-scheduler-mobile .k-mobile-header .k-scheduler-table td, .k-scheduler-mobile .k-mobile-header .k-scheduler-table th {
    height: 1.5em;
}

.k-scheduler-mobile .k-time-text, .k-scheduler-mobile .k-time-period {
    display: block;
    line-height: 1;
}

.k-scheduler-mobile .k-time-period {
    font-size: .7em;
}

.k-scheduler-mobile .k-scheduler-table td, .k-scheduler-mobile .k-scheduler-table th {
    height: 2em;
    vertical-align: middle;
}

.k-scheduler-mobile .k-scheduler-datecolumn-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.k-scheduler-mobile .k-task {
    display: flex;
    align-items: center;
}

    .k-scheduler-mobile .k-task .k-scheduler-mark {
        border-radius: 50%
    }

    .k-scheduler-mobile .k-task .k-i-reload, .k-scheduler-mobile .k-task .k-i-arrow-rotate-cw {
        font-size: 1em;
        margin-right: .5em;
    }

    .k-scheduler-mobile .k-task .k-scheduler-task-text {
        flex: 1 1 0%
    }

.k-scheduler-mobile .k-scheduler-times .k-scheduler-group-cell, .k-scheduler-mobile .k-scheduler-times .k-scheduler-groupcolumn, .k-scheduler-mobile .k-scheduler-agenda .k-scheduler-group-cell, .k-scheduler-mobile .k-scheduler-agenda .k-scheduler-groupcolumn {
    vertical-align: top;
}

    .k-scheduler-mobile .k-scheduler-times .k-scheduler-group-cell .k-scheduler-group-text, .k-scheduler-mobile .k-scheduler-times .k-scheduler-groupcolumn .k-scheduler-group-text, .k-scheduler-mobile .k-scheduler-agenda .k-scheduler-group-cell .k-scheduler-group-text, .k-scheduler-mobile .k-scheduler-agenda .k-scheduler-groupcolumn .k-scheduler-group-text {
        writing-mode: vertical-lr;
        transform: rotate(180deg);
        white-space: nowrap;
    }

.k-scheduler-mobile .k-scrollbar-h tr + tr .k-scheduler-times {
    border-bottom-width: 0;
}

.k-pane-wrapper .k-appbar {
    padding: 4px;
}

.k-pane-wrapper .k-list-title, .k-pane-wrapper .k-filter-help-text {
    padding: 8px 8px;
    display: block;
}

.k-pane-wrapper .k-listgroup-title {
    padding: 8px 8px;
    font-weight: bold;
    text-transform: uppercase;
}

.k-pane-wrapper .k-listgroup .k-listgroup-item {
    border-color: inherit;
}

.k-pane-wrapper .k-listgroup + .k-listgroup {
    margin-top: 16px;
}

.k-pane-wrapper .k-column-menu {
    padding: 8px;
    display: flex;
    flex-flow: column nowrap;
    gap: 8px;
}

    .k-pane-wrapper .k-column-menu .k-filter-item .k-filterable * {
        pointer-events: none;
    }

    .k-pane-wrapper .k-column-menu .k-list-title, .k-pane-wrapper .k-column-menu .k-listgroup-title {
        padding: 0;
    }

    .k-pane-wrapper .k-column-menu .k-listgroup {
        margin-inline: -8px;
    }

.k-pane-wrapper .k-filter-menu {
    padding: 8px;
    display: flex;
    flex-flow: column nowrap;
    gap: 8px;
}

    .k-pane-wrapper .k-filter-menu .k-list-title {
        padding: 0;
    }

    .k-pane-wrapper .k-filter-menu .k-list-filter {
        padding: 0;
        display: flex;
        flex-flow: column nowrap;
        gap: inherit;
    }

    .k-pane-wrapper .k-filter-menu .k-filter-tools {
        display: flex;
        flex-flow: row nowrap;
        gap: inherit;
    }

    .k-pane-wrapper .k-filter-menu .k-listgroup {
        margin-inline: -8px;
    }

.k-pane-wrapper .k-popup-edit-form .k-recur-editor-wrap {
    display: flex;
}

.k-pane-wrapper .k-popup-edit-form .k-mobiletimezoneeditor {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    flex: 1 1 auto;
}

.k-pane-wrapper .k-multicheck-wrap.k-listgroup {
    overflow-y: auto;
}

.k-pane-wrapper .k-pager-wrap.k-pager-sm, .k-pane-wrapper .k-pager.k-pager-sm {
    justify-content: center;
}

    .k-pane-wrapper .k-pager-wrap.k-pager-sm .k-pager-refresh, .k-pane-wrapper .k-pager.k-pager-sm .k-pager-refresh {
        display: none;
    }

.k-rtl .k-pane-wrapper .k-header-cancel .k-i-arrow-chevron-left, .k-rtl .k-pane-wrapper .k-listgroup-item .k-select .k-i-arrow-chevron-right, .k-pane-wrapper[dir="rtl"] .k-header-cancel .k-i-arrow-chevron-left, .k-pane-wrapper[dir="rtl"] .k-listgroup-item .k-select .k-i-arrow-chevron-right, [dir="rtl"] .k-pane-wrapper .k-header-cancel .k-i-arrow-chevron-left, [dir="rtl"] .k-pane-wrapper .k-listgroup-item .k-select .k-i-arrow-chevron-right {
    transform: scaleX(-1);
}

.k-rtl .k-pane-wrapper .k-scheduler-mobile .k-scheduler-toolbar > ul > li, .k-pane-wrapper[dir="rtl"] .k-scheduler-mobile .k-scheduler-toolbar > ul > li, [dir="rtl"] .k-pane-wrapper .k-scheduler-mobile .k-scheduler-toolbar > ul > li {
    border: 0;
}

.k-rtl .k-pane-wrapper .k-scheduler-mobile .k-scheduler-toolbar .k-nav-prev, .k-rtl .k-pane-wrapper .k-scheduler-mobile .k-scheduler-toolbar .k-nav-next, .k-pane-wrapper[dir="rtl"] .k-scheduler-mobile .k-scheduler-toolbar .k-nav-prev, .k-pane-wrapper[dir="rtl"] .k-scheduler-mobile .k-scheduler-toolbar .k-nav-next, [dir="rtl"] .k-pane-wrapper .k-scheduler-mobile .k-scheduler-toolbar .k-nav-prev, [dir="rtl"] .k-pane-wrapper .k-scheduler-mobile .k-scheduler-toolbar .k-nav-next {
    transform: scaleX(-1);
}

.k-rtl .k-pane-wrapper .k-scheduler-mobile .k-task .k-i-reload, .k-pane-wrapper[dir="rtl"] .k-scheduler-mobile .k-task .k-i-reload, [dir="rtl"] .k-pane-wrapper .k-scheduler-mobile .k-task .k-i-reload {
    margin-left: .5em;
    margin-right: 0;
}

.k-pane-wrapper, .k-view {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

    .k-pane-wrapper .k-pane > .k-view > .k-content {
        background-position: 50% 50%;
        background-color: #fafafa;
    }

    .k-pane-wrapper .k-pane .k-grid-mobile .k-column-active + th.k-header {
        border-left-color: #424242;
    }

    .k-pane-wrapper .k-pane .k-grid-mobile .k-resize-handle-inner::before {
        background-color: #fafafa;
    }

    .k-pane-wrapper .k-pane .k-scheduler-mobile .k-nav-current {
        color: var(--themecolor);
    }

    .k-pane-wrapper .k-pane .k-scheduler-mobile .k-scheduler-times, .k-pane-wrapper .k-pane .k-scheduler-mobile .k-scheduler-header, .k-pane-wrapper .k-pane .k-scheduler-mobile .k-scheduler-groupcolumn, .k-pane-wrapper .k-pane .k-scheduler-mobile .k-mobile-scheduler-agendadate {
        color: inherit;
    }

    .k-pane-wrapper .k-pane .k-scheduler-mobile .k-time-period, .k-pane-wrapper .k-pane .k-scheduler-mobile .k-mobile-scheduler-agendaweekday {
        color: #666;
    }

    .k-pane-wrapper .k-pane .k-scheduler-mobile .k-scheduler-times, .k-pane-wrapper .k-pane .k-scheduler-mobile .k-scheduler-header, .k-pane-wrapper .k-pane .k-scheduler-mobile .k-scheduler-header-wrap, .k-pane-wrapper .k-pane .k-scheduler-mobile .k-scheduler-datecolumn, .k-pane-wrapper .k-pane .k-scheduler-mobile .k-scheduler-groupcolumn, .k-pane-wrapper .k-pane .k-scheduler-mobile .k-scheduler-group-cell, .k-pane-wrapper .k-pane .k-scheduler-mobile .k-scheduler-header-all-day {
        background-color: #fafafa;
    }

    .k-pane-wrapper .k-pane .k-scheduler-mobile .k-scheduler-toolbar .k-scheduler-tools > li {
        display: inline-block;
        background-color: inherit;
    }

    .k-pane-wrapper .k-pane .k-grid-edit-form .k-item, .k-pane-wrapper .k-pane .k-grid-edit-form .k-link, .k-pane-wrapper .k-pane .k-grid-header-menu .k-item, .k-pane-wrapper .k-pane .k-grid-header-menu .k-link, .k-pane-wrapper .k-pane .k-grid-filter-menu .k-item, .k-pane-wrapper .k-pane .k-grid-filter-menu .k-link, .k-pane-wrapper .k-pane .k-scheduler-edit-form .k-item, .k-pane-wrapper .k-pane .k-scheduler-edit-form .k-link {
        color: #424242;
    }

    .k-pane-wrapper .k-pane .k-grid-edit-form .k-clear, .k-pane-wrapper .k-pane .k-grid-edit-form .k-select-all, .k-pane-wrapper .k-pane .k-grid-edit-form .k-scheduler-delete, .k-pane-wrapper .k-pane .k-grid-edit-form .k-scheduler-resetSeries, .k-pane-wrapper .k-pane .k-grid-header-menu .k-clear, .k-pane-wrapper .k-pane .k-grid-header-menu .k-select-all, .k-pane-wrapper .k-pane .k-grid-header-menu .k-scheduler-delete, .k-pane-wrapper .k-pane .k-grid-header-menu .k-scheduler-resetSeries, .k-pane-wrapper .k-pane .k-grid-filter-menu .k-clear, .k-pane-wrapper .k-pane .k-grid-filter-menu .k-select-all, .k-pane-wrapper .k-pane .k-grid-filter-menu .k-scheduler-delete, .k-pane-wrapper .k-pane .k-grid-filter-menu .k-scheduler-resetSeries, .k-pane-wrapper .k-pane .k-scheduler-edit-form .k-clear, .k-pane-wrapper .k-pane .k-scheduler-edit-form .k-select-all, .k-pane-wrapper .k-pane .k-scheduler-edit-form .k-scheduler-delete, .k-pane-wrapper .k-pane .k-scheduler-edit-form .k-scheduler-resetSeries {
        color: var(--themecolor);
    }

    .k-pane-wrapper .k-pane .k-column-menu .k-listgroup-item.k-selected {
        color: var(--themecolor);
        background: none;
    }

        .k-pane-wrapper .k-pane .k-column-menu .k-listgroup-item.k-selected .k-link {
            color: inherit;
        }

.k-grid {
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4285714286;
    display: flex;
    flex-direction: column;
    position: relative;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-grid.k-grid-display-block {
        display: block;
    }

    .k-grid .k-grid-container {
        display: flex;
        flex: 1 1 auto;
        overflow: hidden;
        position: relative;
    }

    .k-grid .k-grid-aria-root {
        border-color: inherit;
        display: flex;
        flex-direction: column;
        flex: 1 1 auto;
        overflow: hidden;
    }

    .k-grid .k-table {
        margin: 0;
        width: 100%;
        max-width: none;
        border-width: 0;
        border-color: inherit;
        border-collapse: separate;
        border-spacing: 0;
        box-sizing: content-box;
        empty-cells: show;
        outline: 0;
    }

    .k-grid .k-grid-header .k-table, .k-grid .k-grid-content .k-table, .k-grid .k-grid-footer .k-table {
        table-layout: fixed;
    }

    .k-grid .k-table-thead, .k-grid .k-table-tbody, .k-grid .k-table-tfoot {
        text-align: start;
        border-color: inherit;
    }

    .k-grid .k-table-row {
        border-color: inherit;
    }

    .k-grid .k-table-th, .k-grid td, .k-grid .k-table-td {
        border-width: 0;
        border-inline-start-width: 1px;
        border-style: solid;
        border-color: inherit;
        outline: 0;
        font-weight: inherit;
        text-align: inherit;
        position: static;
        overflow: hidden;
        text-overflow: ellipsis;
        box-sizing: content-box;
    }

        .k-grid .k-table-th:first-child, .k-grid td:first-child, .k-grid .k-table-td:first-child {
            border-inline-start-width: 0;
        }

        .k-grid .k-table-th:focus, .k-grid td:focus, .k-grid .k-table-td:focus {
            outline: none;
        }

        .k-grid .k-table-th .k-placeholder-line, .k-grid td .k-placeholder-line, .k-grid .k-table-td .k-placeholder-line {
            width: 80%
        }

        .k-grid .k-table-th > .k-radio, .k-grid .k-table-th > .k-radio-wrap, .k-grid .k-table-th > .k-checkbox, .k-grid .k-table-th > .k-checkbox-wrap, .k-grid td > .k-radio, .k-grid td > .k-radio-wrap, .k-grid td > .k-checkbox, .k-grid td > .k-checkbox-wrap, .k-grid .k-table-td > .k-radio, .k-grid .k-table-td > .k-radio-wrap, .k-grid .k-table-td > .k-checkbox, .k-grid .k-table-td > .k-checkbox-wrap {
            vertical-align: top;
        }

    .k-grid .k-table-th {
        border-block-end-width: 1px;
        white-space: nowrap;
    }

    .k-grid td, .k-grid .k-table-td {
        border-block-end-width: 0px;
        white-space: unset;
        vertical-align: middle;
    }

    .k-grid a {
        color: inherit;
        text-decoration: none;
    }

        .k-grid a:hover {
            text-decoration: none;
        }

    .k-grid .k-grid-header-wrap {
        box-sizing: content-box;
    }

    .k-grid .k-grid-header {
        border-bottom-width: 1px;
    }

        .k-grid .k-grid-header .k-table {
            margin-bottom: -1px;
        }

        .k-grid .k-grid-header.k-grid-draggable-header {
            -webkit-user-select: none;
            -moz-user-select: none;
            user-select: none;
            touch-action: none;
        }

        .k-grid .k-grid-header .k-table-th {
            position: relative;
            vertical-align: bottom;
            cursor: default;
        }

            .k-grid .k-grid-header .k-table-th:first-child {
                border-inline-start-width: 0;
            }

            .k-grid .k-grid-header .k-table-th.k-first {
                border-inline-start-width: 1px;
            }

            .k-grid .k-grid-header .k-table-th > .k-link {
                line-height: inherit;
                display: block;
                overflow: hidden;
                text-overflow: ellipsis;
                outline: 0;
            }

                .k-grid .k-grid-header .k-table-th > .k-link:focus {
                    text-decoration: none;
                }

        .k-grid .k-grid-header .k-grid-filter, .k-grid .k-grid-header .k-header-column-menu, .k-grid .k-grid-header .k-grid-header-menu {
            box-sizing: border-box;
            outline: 0;
            display: flex;
            align-items: center;
            align-content: center;
            justify-content: center;
            position: absolute;
            inset-inline-end: 4px;
            z-index: 1;
        }

            .k-grid .k-grid-header .k-grid-filter:hover, .k-grid .k-grid-header .k-header-column-menu:hover, .k-grid .k-grid-header .k-grid-header-menu:hover {
                cursor: pointer;
            }

        .k-grid .k-grid-header .k-cell-inner > .k-link > .k-sort-icon {
            vertical-align: text-top;
            -webkit-margin-start: 7px;
            margin-inline-start: 7px;
        }

            .k-grid .k-grid-header .k-cell-inner > .k-link > .k-sort-icon .k-icon {
                display: flex;
            }

        .k-grid .k-grid-header .k-sort-order {
            display: inline-block;
            vertical-align: top;
            height: 16px;
            font-size: 12px;
            margin-top: 2px;
            -webkit-margin-start: -2px;
            margin-inline-start: -2px;
        }

        .k-grid .k-grid-header .k-filterable > .k-cell-inner .k-link {
            -webkit-padding-end: 0;
            padding-inline-end: 0;
        }

    .k-grid .k-cell-inner {
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        justify-content: inherit;
        overflow: hidden;
    }

        .k-grid .k-cell-inner > .k-link {
            width: auto;
            display: flex;
            flex-flow: row nowrap;
            align-items: center;
            justify-content: inherit;
            flex: 1;
            overflow: hidden;
        }

            .k-grid .k-cell-inner > .k-link > .k-sort-icon {
                -webkit-margin-start: 0;
                margin-inline-start: 0;
                display: inline-block;
                flex-shrink: 0;
            }

        .k-grid .k-cell-inner .k-sort-order {
            flex-shrink: 0;
            line-height: normal;
        }

        .k-grid .k-cell-inner .k-grid-filter, .k-grid .k-cell-inner .k-header-column-menu, .k-grid .k-cell-inner .k-grid-header-menu {
            position: static;
            -webkit-margin-end: 4px;
            margin-inline-end: 4px;
        }

    .k-grid .k-group-col, .k-grid .k-hierarchy-col {
        padding: 0;
        width: 32px;
    }

    .k-grid .k-grouping-row p {
        margin: 0;
        display: flex;
        align-items: center;
        align-content: center;
    }

    .k-grid .k-grouping-row td, .k-grid .k-grouping-row .k-table-td {
        overflow: visible;
    }

    .k-grid .k-grouping-row + .k-table-row td, .k-grid .k-grouping-row + .k-table-row .k-table-td {
        border-top-width: 1px;
    }

    .k-grid .k-grouping-row .k-group-cell, .k-grid .k-grouping-row + .k-table-row .k-group-cell {
        border-top-width: 0;
        text-overflow: clip;
    }

    .k-grid .k-grouping-row .k-icon {
        -webkit-margin-start: -4px;
        margin-inline-start: -4px;
        -webkit-margin-end: 8px;
        margin-inline-end: 8px;
        text-decoration: none;
    }

    .k-grid .k-table .k-group-footer td, .k-grid .k-table .k-group-footer .k-table-td {
        border-style: solid;
        border-width: 1px 0;
    }

    .k-grid .k-group-footer .k-group-cell + td, .k-grid .k-group-footer .k-group-cell + .k-table-td {
        border-inline-start-width: 1px;
    }

    .k-grid .k-hierarchy-cell, .k-grid .k-drag-cell {
        text-align: center;
        overflow: visible;
    }

        .k-grid .k-hierarchy-cell > .k-icon, .k-grid .k-drag-cell > .k-icon {
            padding: 8px 0;
            width: 100%;
            height: 100%;
            display: inline-block;
            outline: 0;
        }

        .k-grid .k-hierarchy-cell + .k-grid-content-sticky {
            border-inline-start-width: 1px;
        }

    .k-grid .k-detail-row .k-detail-cell {
        border-inline-start-width: 0;
    }

    .k-grid .k-dirty-cell {
        position: relative;
    }

        .k-grid .k-dirty-cell.k-edit-cell {
            position: static;
        }

        .k-grid .k-dirty-cell.k-grid-content-sticky {
            position: sticky;
        }

    .k-grid .k-dirty {
        border-width: 5px;
        border-color: transparent;
        border-block-start-color: currentColor;
        border-inline-start-color: currentColor;
        inset-inline-start: 0;
        inset-inline-end: auto;
    }

    .k-grid .k-grid-content-locked + .k-grid-content {
        box-sizing: content-box;
    }

    .k-grid .k-grid-content-expander {
        position: absolute;
        visibility: hidden;
        height: 1px;
        bottom: 1px;
    }

    .k-grid .k-grid-filter, .k-grid .k-header-column-menu, .k-grid .k-grid-header-menu, .k-grid .k-hierarchy-cell .k-icon {
        border-width: 0;
    }

    .k-grid .k-drag-col {
        padding: 0;
        width: 36px;
    }

    .k-grid .k-drag-cell {
        cursor: move;
    }

.k-grid-toolbar {
    border-width: 0 0 1px;
    flex-shrink: 0;
}

.k-grid-toolbar-bottom {
    border-width: 1px 0 0;
}

.k-grouping-header {
    border-width: 0 0 1px;
    border-style: solid;
    border-color: inherit;
    white-space: normal;
    display: flex;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
}

    .k-grouping-header::before {
        content: "";
        height: calc(1em + 10px);
        display: inline-block;
        vertical-align: middle;
    }

    .k-grouping-header .k-chip-list {
        flex-grow: 0;
        display: contents;
    }

    .k-grouping-header > .k-grouping-drop-container {
        flex-grow: 1;
        padding-block: 8px;
        margin-block: -8px;
        display: inline-flex;
        align-self: stretch;
        align-items: center;
    }

.k-grouping-dropclue {
    width: 12px;
    position: absolute;
    top: 3px;
    box-sizing: content-box;
}

    .k-grouping-dropclue::before, .k-grouping-dropclue::after {
        display: inline-block;
        content: "";
        position: absolute;
    }

    .k-grouping-dropclue::before {
        border-width: 6px;
        border-style: solid;
        border-left-color: transparent;
        border-right-color: transparent;
        border-bottom-color: transparent;
        top: 0;
    }

    .k-grouping-dropclue::after {
        width: 2px;
        height: calc(100% - 6px);
        top: 6px;
        inset-inline-start: 5px;
    }

.k-grid-header-wrap, .k-grid-footer-wrap {
    -webkit-margin-end: -1px;
    margin-inline-end: -1px;
    width: 100%;
    border-width: 0;
    border-inline-end-width: 1px;
    border-style: solid;
    border-color: inherit;
    position: relative;
    overflow: hidden;
}

.k-grid-header-locked + .k-grid-header-wrap.k-auto-scrollable {
    -webkit-margin-end: 0;
    margin-inline-end: 0;
}

.k-grid-header, .k-grid-footer {
    -webkit-padding-start: 0;
    padding-inline-start: 0;
    -webkit-padding-end: var(--kendo-scrollbar-width, 17px);
    padding-inline-end: var(--kendo-scrollbar-width, 17px);
    border-width: 0;
    border-style: solid;
    border-color: inherit;
    flex: 0 0 auto;
}

div.k-grid-header, div.k-grid-footer {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.k-column-resizer {
    width: .5em;
    height: 1000%;
    display: block;
    position: absolute;
    top: 0;
    inset-inline-end: 0;
    cursor: col-resize;
}

.k-grid-footer {
    border-top-width: 1px;
}

    .k-grid-footer td, .k-grid-footer .k-table-td {
        height: 1.4285714286em;
    }

    .k-grid-footer td, .k-group-footer td, .k-grouping-row td, .k-grid-footer .k-table-td, .k-group-footer .k-table-td, .k-grouping-row .k-table-td {
        font-weight: bold;
    }

.k-grid-filter-popup {
    min-width: 200px;
}

.k-grid-column-menu-standalone a.k-grid-filter {
    position: initial;
    display: inline-block;
    margin: -4px 0;
    padding: 4px 8px;
}

.k-filter-row {
    line-height: 1.4285714286;
}

    .k-filter-row td, .k-filter-row .k-table-td, .k-filter-row .k-table-th {
        border-width: 0;
        border-block-end-width: 1px;
        border-inline-start-width: 1px;
        white-space: nowrap;
    }

        .k-filter-row td:first-child, .k-filter-row .k-table-td:first-child {
            border-inline-start-width: 0;
        }

    .k-filter-row .k-multiselect {
        height: auto;
    }

.k-filtercell {
    width: auto;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

    .k-filtercell > span, .k-filtercell .k-filtercell-wrapper {
        width: 100%;
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        flex: 1 1 auto;
    }

        .k-filtercell > span > .k-button, .k-filtercell .k-filtercell-wrapper > .k-button {
            flex: none;
        }

    .k-filtercell .k-input, .k-filtercell .k-picker {
        width: auto;
        flex: 1 1 auto;
    }

    .k-filtercell .k-color-picker, .k-filtercell .k-colorpicker, .k-filtercell .k-dropdown-operator {
        width: -moz-min-content;
        width: min-content;
        flex: none;
    }

.k-grid-content, .k-grid-content-locked {
    border-color: inherit;
    outline: 0;
}

    .k-grid-content .k-table-row:last-child > td, .k-grid-content .k-table-row:last-child > .k-table-td, .k-grid-content-locked .k-table-row:last-child > td, .k-grid-content-locked .k-table-row:last-child > .k-table-td {
        border-bottom-width: 0;
    }

.k-grid-content {
    width: 100%;
    min-height: 0;
    overflow: auto;
    overflow-x: auto;
    overflow-y: scroll;
    position: relative;
    flex: 1;
}

.k-virtual-scrollable-wrap {
    height: 100%;
    overflow-y: hidden;
    position: relative;
}

.k-grid .k-edit-cell, .k-grid .k-command-cell, .k-grid .k-grid-edit-row td, .k-grid .k-grid-edit-row .k-table-td {
    text-overflow: clip;
}

    .k-grid .k-edit-cell > input:not([type="checkbox"]):not([type="radio"]), .k-grid .k-edit-cell > select, .k-grid .k-edit-cell > .k-widget:not(.k-switch), .k-grid .k-grid-edit-row td > input:not([type="checkbox"]):not([type="radio"]), .k-grid .k-grid-edit-row td > select, .k-grid .k-grid-edit-row td > .k-widget:not(.k-switch), .k-grid .k-grid-edit-row .k-table-td > input:not([type="checkbox"]):not([type="radio"]), .k-grid .k-grid-edit-row .k-table-td > select, .k-grid .k-grid-edit-row .k-table-td > .k-widget:not(.k-switch) {
        width: 100%;
        vertical-align: middle;
        box-sizing: border-box;
    }

    .k-grid .k-edit-cell > .k-radio, .k-grid .k-edit-cell > .k-checkbox, .k-grid .k-edit-cell > .k-radio-wrap, .k-grid .k-edit-cell > .k-checkbox-wrap, .k-grid .k-grid-edit-row td > .k-radio, .k-grid .k-grid-edit-row td > .k-checkbox, .k-grid .k-grid-edit-row td > .k-radio-wrap, .k-grid .k-grid-edit-row td > .k-checkbox-wrap, .k-grid .k-grid-edit-row .k-table-td > .k-radio, .k-grid .k-grid-edit-row .k-table-td > .k-checkbox, .k-grid .k-grid-edit-row .k-table-td > .k-radio-wrap, .k-grid .k-grid-edit-row .k-table-td > .k-checkbox-wrap {
        vertical-align: middle;
    }

    .k-grid .k-command-cell > .k-button {
        vertical-align: middle;
    }

        .k-grid .k-command-cell > .k-button + .k-button {
            -webkit-margin-end: unset;
            margin-inline-end: unset;
            -webkit-margin-start: 8px;
            margin-inline-start: 8px;
        }

.k-grid > .k-resize-handle, .k-grid-header .k-resize-handle {
    height: 25px;
    cursor: col-resize;
    position: absolute;
    z-index: 2;
}

.k-grid-pager {
    border-width: 1px 0 0;
    border-color: inherit;
    font-size: inherit;
}

.k-grid-pager-top {
    border-width: 0 0 1px;
}

.k-pager-input .k-numerictextbox {
    margin-block: 0;
    margin-inline: 7px;
    width: 3em;
}

.k-grid-virtual .k-grid-content .k-grid-table-wrap {
    float: left;
    width: 100%
}

.k-grid-virtual .k-grid-content .k-grid-table {
    position: relative;
    float: left;
    z-index: 1;
}

.k-grid-virtual .k-grid-content > .k-height-container {
    position: relative;
    float: left;
}

.k-grid-virtual .k-grid-content::after {
    content: "";
    display: block;
    clear: both;
}

.k-width-container {
    position: absolute;
    visibility: hidden;
}

    .k-width-container div {
        height: 1px;
    }

.k-grid-add-row td, .k-grid-add-row .k-table-td {
    border-bottom-style: solid;
    border-bottom-width: 1px;
}

.k-grid-lockedcolumns {
    white-space: nowrap;
}

.k-grid-content, .k-grid-content-locked {
    white-space: normal;
}

.k-grid-content-locked, .k-grid-footer-locked, .k-grid-header-locked {
    flex: 0 0 auto;
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
    position: relative;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    box-sizing: content-box;
}

    .k-grid-content-locked + .k-grid-content.k-auto-scrollable, .k-grid-footer-locked + .k-grid-content.k-auto-scrollable, .k-grid-header-locked + .k-grid-content.k-auto-scrollable {
        display: inline-block;
    }

    .k-grid-content-locked .k-table, .k-grid-footer-locked .k-table, .k-grid-header-locked .k-table {
        border-width: 0;
    }

.k-grid-content, .k-grid-footer-wrap, .k-grid-header-wrap {
    flex: 1 1 auto;
    display: inline-block;
    vertical-align: top;
}

    .k-grid-content.k-auto-scrollable, .k-grid-footer-wrap.k-auto-scrollable, .k-grid-header-wrap.k-auto-scrollable {
        display: block;
    }

    .k-grid-header-locked > .k-grid-header-table, .k-grid-header-wrap > .k-grid-header-table {
        margin-bottom: -1px;
    }

.k-grid-header .k-table-th.k-grid-header-sticky, .k-grid-header .k-filter-row .k-grid-header-sticky, .k-grid .k-grid-content-sticky, .k-grid .k-grid-row-sticky, .k-grid .k-grid-footer-sticky {
    position: sticky;
    z-index: 2;
}

    .k-grid-header .k-table-th.k-grid-header-sticky.k-edit-cell, .k-grid-header .k-filter-row .k-grid-header-sticky.k-edit-cell, .k-grid .k-grid-content-sticky.k-edit-cell, .k-grid .k-grid-row-sticky.k-edit-cell, .k-grid .k-grid-footer-sticky.k-edit-cell {
        overflow: visible;
        z-index: 3;
    }

kendo-grid .k-table-row.k-grid-row-sticky {
    border: 0;
    position: static;
    z-index: auto;
}

kendo-grid .k-grid-row-sticky td, kendo-grid .k-grid-row-sticky .k-table-td {
    border-bottom-width: 1px;
    border-top-width: 1px;
    position: sticky;
    top: inherit;
    bottom: inherit;
    z-index: 2;
}

    kendo-grid .k-grid-row-sticky td.k-grid-content-sticky, kendo-grid .k-grid-row-sticky.k-alt td.k-grid-content-sticky, kendo-grid .k-grid-row-sticky .k-table-td.k-grid-content-sticky, kendo-grid .k-grid-row-sticky.k-alt .k-table-td.k-grid-content-sticky {
        z-index: 3;
    }

kendo-grid .k-grid-header-locked .k-table-th.k-grid-header-sticky:last-child, kendo-grid .k-grid-content-locked .k-table-row .k-grid-content-sticky:last-child {
    -webkit-border-end: 0;
    border-inline-end: 0;
}

kendo-grid .k-grid-header .k-grid-column-menu, kendo-grid .k-grid-header .k-grid-header-menu {
    z-index: 1;
}

.k-grid-content-sticky.k-grid-row-sticky {
    z-index: 3;
}

.k-grid .k-table .k-grid-header-sticky, .k-grid .k-table .k-grid-content-sticky, .k-grid .k-table .k-grid-footer-sticky {
    border-inline-end-width: 1px;
}

    .k-grid .k-table .k-grid-header-sticky:not([style*="display: none"]) + td, .k-grid .k-table .k-grid-header-sticky:not([style*="display: none"]) + .k-table-td, .k-grid .k-table .k-grid-header-sticky:not([style*="display: none"]) + .k-table-th, .k-grid .k-table .k-grid-content-sticky:not([style*="display: none"]) + td, .k-grid .k-table .k-grid-content-sticky:not([style*="display: none"]) + .k-table-td, .k-grid .k-table .k-grid-content-sticky:not([style*="display: none"]) + .k-table-th, .k-grid .k-table .k-grid-footer-sticky:not([style*="display: none"]) + td, .k-grid .k-table .k-grid-footer-sticky:not([style*="display: none"]) + .k-table-td, .k-grid .k-table .k-grid-footer-sticky:not([style*="display: none"]) + .k-table-th {
        border-inline-start-width: 0;
    }

.k-grid .k-grid-row-sticky {
    border-bottom-width: 1px;
    border-top-width: 1px;
}

.k-grid-header-sticky.k-table-th.k-grid-no-left-border.k-first {
    border-inline-start-width: 0;
}

.k-grid.k-grid-no-scrollbar .k-grid-header-wrap, .k-grid.k-grid-no-scrollbar .k-grid-footer-wrap {
    margin: 0;
    border-width: 0;
}

.k-grid.k-grid-no-scrollbar .k-grid-header, .k-grid.k-grid-no-scrollbar .k-grid-footer {
    padding: 0;
}

.k-grid.k-grid-no-scrollbar .k-grid-content {
    overflow-y: auto;
}

.k-grid-norecords {
    text-align: center;
}

div.k-grid-norecords {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.k-grid-norecords-template {
    box-sizing: border-box;
    margin: 0 auto;
    width: 20em;
    height: 4em;
    border: 1px solid;
    line-height: 4em;
}

.k-column-title {
    min-width: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex-shrink: 1;
    overflow: hidden;
}

.k-grid-sm .k-table-th {
    padding: 4px 8px;
}

.k-grid-sm td, .k-grid-sm .k-table-td {
    padding: 4px 8px;
}

.k-grid-sm .k-grouping-header {
    padding: 4px 8px;
    gap: 4px;
}

    .k-grid-sm .k-grouping-header::before {
        -webkit-margin-start: -4px;
        margin-inline-start: -4px;
    }

.k-grid-sm .k-grid-header .k-table-th > .k-link {
    margin: -4px -8px;
    padding: 4px 8px;
}

.k-grid-sm .k-grid-header .k-grid-filter, .k-grid-sm .k-grid-header .k-header-column-menu, .k-grid-sm .k-grid-header .k-grid-header-menu {
    padding: 2px;
    width: calc(1.4285714286em + 6px);
    height: calc(1.4285714286em + 6px);
    bottom: 0px;
}

.k-grid-sm .k-table-th > .k-cell-inner {
    margin: -4px -8px;
}

    .k-grid-sm .k-table-th > .k-cell-inner > .k-link {
        padding: 4px 8px;
    }

.k-grid-sm .k-grouping-row .k-icon {
    -webkit-margin-start: 0px;
    margin-inline-start: 0px;
}

.k-grid-sm .k-grouping-dropclue {
    height: calc(1em + 12px);
}

.k-grid-sm .k-hierarchy-cell, .k-grid-sm .k-drag-cell {
    padding: 0;
}

    .k-grid-sm .k-hierarchy-cell > .k-icon, .k-grid-sm .k-drag-cell > .k-icon {
        padding: 4px 0;
    }

.k-grid-sm .k-edit-cell, .k-grid-sm .k-command-cell, .k-grid-sm .k-grid-edit-row td, .k-grid-sm .k-grid-edit-row .k-table-td {
    padding: 2px 8px;
}

.k-grid-sm .k-filter-row td, .k-grid-sm .k-filter-row .k-table-td, .k-grid-sm .k-filter-row .k-table-th {
    padding: 6px 6px;
}

.k-grid-sm .k-filtercell > span, .k-grid-sm .k-filtercell .k-filtercell-wrapper {
    gap: 2px;
}

.k-grid-md .k-table-th {
    padding: 8px 12px;
}

.k-grid-md td, .k-grid-md .k-table-td {
    padding: 8px 12px;
}

.k-grid-md .k-grouping-header {
    padding: 8px 8px;
    gap: 8px;
}

    .k-grid-md .k-grouping-header::before {
        -webkit-margin-start: -8px;
        margin-inline-start: -8px;
    }

.k-grid-md .k-grid-header .k-table-th > .k-link {
    margin: -8px -12px;
    padding: 8px 12px;
}

.k-grid-md .k-grid-header .k-grid-filter, .k-grid-md .k-grid-header .k-header-column-menu, .k-grid-md .k-grid-header .k-grid-header-menu {
    padding: 4px;
    width: calc(1.4285714286em + 10px);
    height: calc(1.4285714286em + 10px);
    bottom: 4px;
}

.k-grid-md .k-table-th > .k-cell-inner {
    margin: -8px -12px;
}

    .k-grid-md .k-table-th > .k-cell-inner > .k-link {
        padding: 8px 12px;
    }

.k-grid-md .k-grouping-row .k-icon {
    -webkit-margin-start: -4px;
    margin-inline-start: -4px;
}

.k-grid-md .k-grouping-dropclue {
    height: calc(1em + 16px);
}

.k-grid-md .k-hierarchy-cell, .k-grid-md .k-drag-cell {
    padding: 0;
}

    .k-grid-md .k-hierarchy-cell > .k-icon, .k-grid-md .k-drag-cell > .k-icon {
        padding: 8px 0;
    }

.k-grid-md .k-edit-cell, .k-grid-md .k-command-cell, .k-grid-md .k-grid-edit-row td, .k-grid-md .k-grid-edit-row .k-table-td {
    padding: 3px 12px;
}

.k-grid-md .k-filter-row td, .k-grid-md .k-filter-row .k-table-td, .k-grid-md .k-filter-row .k-table-th {
    padding: 8px 8px;
}

.k-grid-md .k-filtercell > span, .k-grid-md .k-filtercell .k-filtercell-wrapper {
    gap: 4px;
}

.k-loading-pdf-mask {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

    .k-loading-pdf-mask > .k-i-loading {
        position: absolute;
        top: 50%;
        left: 50%;
        font-size: 64px;
    }

    .k-loading-pdf-mask .k-loading-pdf-progress {
        margin: auto;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }

.k-pdf-export .k-loading-pdf-mask {
    display: none;
}

.k-grid-pdf-export-element {
    position: absolute;
    left: -10000px;
    top: -10000px;
}

    .k-grid-pdf-export-element .k-filter-row {
        display: none;
    }

.k-pdf-export-shadow .k-grid {
    float: left;
    width: auto !important;
}

.k-pdf-export-shadow .k-grid, .k-pdf-export-shadow .k-grid-content, .k-pdf-export-shadow .k-grid-content-locked {
    height: auto !important;
    overflow: visible;
}

.k-pdf-export-shadow .k-grid-header-locked + .k-grid-header-wrap, .k-pdf-export-shadow .k-grid-header-locked + .k-grid-content, .k-pdf-export-shadow .k-grid-header-locked + .k-grid-footer-wrap {
    width: auto !important;
}

.k-pdf-export-shadow .k-grid-header, .k-pdf-export-shadow .k-grid[data-role="grid"] .k-grid-footer {
    padding: 0 !important;
}

.k-filter-menu-popup {
    width: 230px;
}

.k-filter-menu {
    box-sizing: border-box;
}

.k-filter-menu-container {
    padding: 8px;
    box-sizing: border-box;
    display: flex;
    flex-flow: column nowrap;
    align-items: stretch;
    gap: 8px;
}

    .k-filter-menu-container .k-filter-and {
        width: -moz-min-content;
        width: min-content;
        align-self: start;
    }

    .k-filter-menu-container .k-actions, .k-filter-menu-container .k-edit-buttons, .k-filter-menu-container .k-action-buttons, .k-filter-menu-container .k-columnmenu-actions, .k-filter-menu-container .k-form-buttons {
        margin: 0;
        padding: 0;
    }

    .k-filter-menu-container kendo-numeric-filter-menu, .k-filter-menu-container kendo-grid-string-filter-menu, .k-filter-menu-container kendo-grid-date-filter-menu, .k-filter-menu-container kendo-grid-numeric-filter-menu, .k-filter-menu-container kendo-grid-filter-menu-input-wrapper {
        display: flex;
        flex-flow: column nowrap;
        align-items: stretch;
        gap: 8px;
    }

.k-filter-menu.k-popup .k-filter-menu-container, .k-grid-filter-popup.k-popup .k-filter-menu-container {
    width: 230px;
}

.k-popup .k-multicheck-wrap {
    margin: 0;
    padding: 0;
    max-height: 300px;
    white-space: nowrap;
    overflow: auto;
    list-style: none;
}

    .k-popup .k-multicheck-wrap .k-item, .k-popup .k-multicheck-wrap .k-check-all-wrap {
        padding: 4px 8px;
        display: flex;
        flex-flow: row nowrap;
    }

.k-filter-selected-items {
    font-weight: bold;
    line-height: normal;
    white-space: nowrap;
}

.k-autofitting {
    width: auto !important;
    table-layout: auto !important;
}

    .k-autofitting .k-table-th, .k-autofitting td, .k-autofitting .k-table-td {
        white-space: nowrap !important;
    }

    .k-autofitting .k-detail-row {
        display: none !important;
    }

.k-column-menu-popup, .k-grid-columnmenu-popup {
    width: 230px;
    box-sizing: border-box;
}

    .k-column-menu-popup.k-popup, .k-grid-columnmenu-popup.k-popup {
    }

.k-popup > .k-column-menu-popup, .k-popup > .k-grid-columnmenu-popup {
    max-width: 100%
}

.k-column-menu-popup .k-actions, .k-column-menu-popup .k-edit-buttons, .k-column-menu-popup .k-action-buttons, .k-column-menu-popup .k-columnmenu-actions, .k-column-menu-popup .k-form-buttons, .k-grid-columnmenu-popup .k-actions, .k-grid-columnmenu-popup .k-edit-buttons, .k-grid-columnmenu-popup .k-action-buttons, .k-grid-columnmenu-popup .k-columnmenu-actions, .k-grid-columnmenu-popup .k-form-buttons {
    margin: 0;
}

.k-column-menu {
    box-sizing: border-box;
}

    .k-column-menu .k-menu:not(.k-context-menu) {
        font-weight: 400;
    }

    .k-column-menu .k-expander {
        border: 0;
        background: inherit;
    }

        .k-column-menu .k-expander .k-columnmenu-item {
            display: flex;
            align-items: center;
        }

.k-column-list {
    padding: 0;
    margin: 0;
    list-style: none;
    max-height: 200px;
    overflow-x: hidden;
    overflow-y: auto;
}

.k-column-chooser-title, .k-column-list-item {
    padding: 4px 8px;
}

.k-column-list-item {
    margin: 0;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    position: relative;
}

    .k-column-list-item .k-checkbox-label {
        margin: 0;
    }

.k-columns-items-wrap {
    padding: 6px 0;
}

.k-columnmenu-item {
    padding: 4px 8px;
    outline: 0;
    cursor: pointer;
}

    .k-columnmenu-item > .k-icon {
        -webkit-margin-end: 4px;
        margin-inline-end: 4px;
    }

.k-columnmenu-item-wrapper + .k-columnmenu-item-wrapper {
    border-top: 1px solid;
    border-top-color: rgba(0, 0, 0, 0.08);
}

.k-columnmenu-item-content {
    overflow: hidden;
}

.k-column-menu-group-header {
    padding: 4px 8px;
    display: flex;
    flex: 0 0 auto;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.k-column-menu-group-header-text {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    font-size: 12px;
    line-height: 1.4285714286;
    font-weight: bold;
    text-transform: uppercase;
    flex: 1 1 auto;
}

.k-grid-header, .k-grid-header-wrap, .k-grouping-header, .k-grid .k-table-th, .k-grid td, .k-grid .k-table-td, .k-grid-footer, .k-grid-footer-wrap, .k-grid-content-locked, .k-grid-footer-locked, .k-grid-header-locked, .k-filter-row > .k-table-th, .k-filter-row > td, .k-filter-row > .k-table-td {
    border-color: var(--kendo-border-color);
}

.k-grid-header, .k-grouping-header, .k-grid-add-row, .k-grid-footer {
    color: #424242;
    background-color: #fafafa;
}

.k-grid .k-table {
    background-color: inherit;
}

.k-grid-toolbar {
    border-color: inherit;
    box-shadow: none;
}

.k-grid-content {
    background-color: #fff;
}

.k-group-footer td, .k-grouping-row td, .k-group-footer .k-table-td, .k-grouping-row .k-table-td, .k-table-tbody .k-group-cell {
    color: #424242;
    background-color: #fafafa;
}

.k-grouping-dropclue::before {
    border-color: #424242 transparent transparent;
}

.k-grouping-dropclue::after {
    background-color: #424242;
}

.k-grid {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

    .k-grid .k-table-row.k-table-alt-row {
        background-color: rgba(0, 0, 0, 0.04);
    }

    .k-grid .k-table-tbody > .k-table-row:not(.k-detail-row):hover, .k-grid .k-table-tbody > .k-table-row:not(.k-detail-row).k-hover {
        background-color: #ededed;
    }

    .k-grid td.k-selected, .k-grid .k-table-row.k-selected > td, .k-grid .k-table-td.k-selected, .k-grid .k-table-row.k-selected > .k-table-td {
        background-color: rgba(69, 102, 216, 0.25);
    }

    .k-grid .k-table-th:focus, .k-grid .k-table-th.k-focus, .k-grid td:focus, .k-grid td.k-focus, .k-grid .k-table-td:focus, .k-grid .k-table-td.k-focus, .k-grid .k-master-row > td:focus, .k-grid .k-master-row > td.k-focus, .k-grid .k-grouping-row > td:focus, .k-grid .k-grouping-row > td.k-focus, .k-grid .k-detail-row > td:focus, .k-grid .k-detail-row > td.k-focus, .k-grid .k-group-footer > td:focus, .k-grid .k-group-footer > td.k-focus, .k-grid .k-master-row > .k-table-td:focus, .k-grid .k-master-row > .k-table-td.k-focus, .k-grid .k-grouping-row > .k-table-td:focus, .k-grid .k-grouping-row > .k-table-td.k-focus, .k-grid .k-detail-row > .k-table-td:focus, .k-grid .k-detail-row > .k-table-td.k-focus, .k-grid .k-group-footer > .k-table-td:focus, .k-grid .k-group-footer > .k-table-td.k-focus, .k-grid .k-grid-pager:focus, .k-grid .k-grid-pager.k-focus {
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12);
    }

    .k-grid .k-grid-filter, .k-grid .k-header-column-menu, .k-grid .k-grid-header-menu, .k-grid .k-hierarchy-cell .k-icon {
        color: #424242;
    }

    .k-grid .k-grouping-row {
        background-color: #fafafa;
    }

        .k-grid .k-grouping-row .k-icon {
            color: #424242;
        }

        .k-grid .k-grouping-row .k-grid-content-sticky {
            border-color: rgba(0, 0, 0, 0.3);
            border-top-color: rgba(0, 0, 0, 0.08);
        }

    .k-grid .k-grid-header-locked, .k-grid .k-grid-content-locked, .k-grid .k-grid-header-locked .k-table-th, .k-grid .k-grid-content-locked td, .k-grid .k-grid-content-locked .k-table-td {
        border-color: rgba(0, 0, 0, 0.3);
    }

        .k-grid .k-grid-content-locked .k-group-footer td, .k-grid .k-grid-content-locked .k-group-footer .k-table-td, .k-grid .k-grid-content-locked .k-group-cell {
            border-color: var(--kendo-border-color);
        }

        .k-grid .k-grid-content-locked .k-grouping-row + .k-table-row td, .k-grid .k-grid-content-locked .k-grouping-row + .k-table-row .k-table-td {
            border-top-color: rgba(0, 0, 0, 0.08);
        }

        .k-grid .k-grid-content-locked .k-selected td, .k-grid .k-grid-content-locked .k-selected .k-table-td {
            background-color: #d1d9f5;
        }

        .k-grid .k-grid-content-locked .k-selected.k-table-alt-row td, .k-grid .k-grid-content-locked .k-selected.k-table-alt-row .k-table-td {
            background-color: #cad2ed;
        }

        .k-grid .k-grid-content-locked .k-selected:hover td, .k-grid .k-grid-content-locked .k-selected.k-hover td, .k-grid .k-grid-content-locked .k-selected:hover .k-table-td, .k-grid .k-grid-content-locked .k-selected.k-hover .k-table-td {
            background-color: #c5cde7;
        }

        .k-grid .k-grid-header-locked .k-table-th {
            border-bottom-color: rgba(0, 0, 0, 0.08);
        }

col.k-sorted, .k-table-th.k-sorted {
    background-color: rgba(0, 0, 0, 0.02);
}

.k-grid-header .k-sort-icon, .k-grid-header .k-sort-order {
    color: var(--themecolor);
}

.k-grid-header .k-grid-filter:hover, .k-grid-header .k-header-column-menu:hover, .k-grid-header .k-grid-header-menu:hover, .k-grid-header .k-hierarchy-cell .k-icon:hover {
    background-color: #ebebeb;
}

.k-grid-header .k-grid-filter:focus, .k-grid-header .k-grid-filter.k-focus, .k-grid-header .k-header-column-menu:focus, .k-grid-header .k-header-column-menu.k-focus, .k-grid-header .k-grid-header-menu:focus, .k-grid-header .k-grid-header-menu.k-focus, .k-grid-header .k-hierarchy-cell .k-icon:focus, .k-grid-header .k-hierarchy-cell .k-icon.k-focus {
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.k-grid-header .k-grid-filter.k-active, .k-grid-header .k-header-column-menu.k-active, .k-grid-header .k-grid-header-menu.k-active, .k-grid-header .k-hierarchy-cell .k-icon.k-active {
    color: #fff;
    background-color: var(--themecolor);
}

.k-grid-header .k-table-th.k-grid-header-sticky, .k-grid-header td.k-grid-header-sticky, .k-grid-header .k-table-td.k-grid-header-sticky, .k-grid-header .k-grid-header-sticky.k-sorted {
    color: #424242;
    background-color: #fafafa;
    border-right-color: rgba(0, 0, 0, 0.3);
    border-left-color: rgba(0, 0, 0, 0.3);
}

.k-grid-footer {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fafafa;
}

    .k-grid-footer .k-grid-footer-sticky {
        border-left-color: rgba(0, 0, 0, 0.3);
        border-right-color: rgba(0, 0, 0, 0.3);
        background-color: #fafafa;
    }

.k-master-row .k-grid-content-sticky {
    border-color: rgba(0, 0, 0, 0.3);
    border-top-color: rgba(0, 0, 0, 0.08);
    background-color: #fff;
}

.k-master-row .k-grid-row-sticky {
    border-top-color: rgba(0, 0, 0, 0.3);
    border-bottom-color: rgba(0, 0, 0, 0.3);
    background-color: #fff;
}

.k-master-row.k-table-alt-row .k-grid-content-sticky, .k-master-row.k-table-alt-row .k-grid-row-sticky {
    background-color: #f6f6f6;
}

.k-master-row.k-selected .k-grid-content-sticky, .k-master-row.k-selected .k-grid-row-sticky, .k-master-row td.k-grid-content-sticky.k-selected, .k-master-row .k-table-td.k-grid-content-sticky.k-selected {
    background-color: #d1d9f5;
}

.k-master-row.k-selected.k-table-alt-row .k-grid-content-sticky, .k-master-row.k-selected.k-table-alt-row .k-grid-row-sticky, .k-master-row.k-table-alt-row td.k-grid-content-sticky.k-selected, .k-master-row.k-table-alt-row .k-table-td.k-grid-content-sticky.k-selected {
    background-color: #cad2ed;
}

.k-master-row:hover .k-grid-content-sticky, .k-master-row:hover .k-grid-row-sticky, .k-master-row.k-hover .k-grid-content-sticky, .k-master-row.k-hover .k-grid-row-sticky {
    background-color: #ebebeb;
}

.k-master-row.k-selected:hover .k-grid-content-sticky, .k-master-row.k-selected:hover .k-grid-row-sticky, .k-master-row.k-selected.k-hover .k-grid-content-sticky, .k-master-row.k-selected.k-hover .k-grid-row-sticky, .k-master-row:hover td.k-grid-content-sticky.k-selected, .k-master-row.k-hover td.k-grid-content-sticky.k-selected, .k-master-row:hover .k-table-td.k-grid-content-sticky.k-selected, .k-master-row.k-hover .k-table-td.k-grid-content-sticky.k-selected {
    background-color: #c5cde7;
}

kendo-grid.k-grid .k-grid-content-sticky {
    border-top-color: rgba(0, 0, 0, 0.08);
    border-left-color: rgba(0, 0, 0, 0.3);
    border-right-color: rgba(0, 0, 0, 0.3);
    background-color: #fff;
}

    kendo-grid.k-grid .k-grid-content-sticky:hover, kendo-grid.k-grid .k-grid-content-sticky.k-hover {
        background-color: #ebebeb;
    }

kendo-grid.k-grid .k-grid-row-sticky td, kendo-grid.k-grid .k-grid-row-sticky .k-table-td {
    border-top-color: rgba(0, 0, 0, 0.3);
    border-bottom-color: rgba(0, 0, 0, 0.3);
    background-color: #fff;
}

kendo-grid.k-grid .k-grid-row-sticky:hover td, kendo-grid.k-grid .k-grid-row-sticky.k-hover td, kendo-grid.k-grid .k-grid-row-sticky:hover .k-table-td, kendo-grid.k-grid .k-grid-row-sticky.k-hover .k-table-td {
    background-color: #ebebeb;
}

kendo-grid.k-grid .k-table-alt-row .k-grid-content-sticky, kendo-grid.k-grid .k-grid-row-sticky.k-table-alt-row td, kendo-grid.k-grid .k-grid-row-sticky.k-table-alt-row .k-table-td {
    background-color: #f6f6f6;
}

kendo-grid.k-grid .k-table-row.k-selected .k-grid-content-sticky, kendo-grid.k-grid .k-selected.k-grid-row-sticky td, kendo-grid.k-grid .k-grid-row-sticky td.k-selected, kendo-grid.k-grid .k-selected.k-grid-row-sticky .k-table-td, kendo-grid.k-grid .k-grid-row-sticky .k-table-td.k-selected, kendo-grid.k-grid .k-selected.k-grid-content-sticky {
    background-color: #d1d9f5;
}

kendo-grid.k-grid .k-table-row.k-selected.k-table-alt-row .k-grid-content-sticky, kendo-grid.k-grid .k-selected.k-table-alt-row.k-grid-row-sticky td, kendo-grid.k-grid .k-selected.k-table-alt-row.k-grid-row-sticky .k-table-td, kendo-grid.k-grid .k-table-alt-row .k-selected.k-grid-content-sticky {
    background-color: #cad2ed;
}

kendo-grid.k-grid .k-table-row:hover .k-grid-content-sticky, kendo-grid.k-grid .k-table-row.k-hover .k-grid-content-sticky, kendo-grid.k-grid .k-grid-row-sticky:hover td, kendo-grid.k-grid .k-grid-row-sticky.k-hover td, kendo-grid.k-grid .k-grid-row-sticky.k-table-alt-row:hover td, kendo-grid.k-grid .k-grid-row-sticky.k-table-alt-row.k-hover td, kendo-grid.k-grid .k-grid-row-sticky:hover .k-table-td, kendo-grid.k-grid .k-grid-row-sticky.k-hover .k-table-td, kendo-grid.k-grid .k-grid-row-sticky.k-table-alt-row:hover .k-table-td, kendo-grid.k-grid .k-grid-row-sticky.k-table-alt-row.k-hover .k-table-td, kendo-grid.k-grid .k-table-alt-row:hover .k-grid-content-sticky, kendo-grid.k-grid .k-table-alt-row.k-hover .k-grid-content-sticky {
    background-color: #ebebeb;
}

    kendo-grid.k-grid .k-table-row.k-selected:hover .k-grid-content-sticky, kendo-grid.k-grid .k-table-row.k-selected.k-hover .k-grid-content-sticky, kendo-grid.k-grid .k-selected.k-grid-row-sticky:hover td, kendo-grid.k-grid .k-selected.k-grid-row-sticky.k-hover td, kendo-grid.k-grid .k-selected.k-table-alt-row.k-grid-row-sticky:hover td, kendo-grid.k-grid .k-selected.k-table-alt-row.k-grid-row-sticky.k-hover td, kendo-grid.k-grid .k-selected.k-grid-row-sticky:hover .k-table-td, kendo-grid.k-grid .k-selected.k-grid-row-sticky.k-hover .k-table-td, kendo-grid.k-grid .k-selected.k-table-alt-row.k-grid-row-sticky:hover .k-table-td, kendo-grid.k-grid .k-selected.k-table-alt-row.k-grid-row-sticky.k-hover .k-table-td, kendo-grid.k-grid .k-table-row.k-selected.k-table-alt-row:hover .k-grid-content-sticky, kendo-grid.k-grid .k-table-row.k-selected.k-table-alt-row.k-hover .k-grid-content-sticky, kendo-grid.k-grid .k-grid-row-sticky:hover td.k-selected, kendo-grid.k-grid .k-grid-row-sticky.k-hover td.k-selected, kendo-grid.k-grid .k-grid-row-sticky:hover .k-table-td.k-selected, kendo-grid.k-grid .k-grid-row-sticky.k-hover .k-table-td.k-selected, kendo-grid.k-grid .k-table-row:hover .k-grid-content-sticky.k-selected, kendo-grid.k-grid .k-table-row.k-hover .k-grid-content-sticky.k-selected {
        background-color: #c5cde7;
    }

.k-grouping-row .k-grid-content-sticky {
    background-color: #fafafa;
}

.k-grouping-row:hover .k-grid-content-sticky, .k-grouping-row.k-hover .k-grid-content-sticky {
    background-color: #ebebeb;
}

.k-column-list-item:hover, .k-columnmenu-item:hover {
    color: #424242;
    background-color: #ececec;
}

.k-columnmenu-item:focus, .k-columnmenu-item.k-focus {
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12);
}

.k-columnmenu-item.k-selected {
    color: #fff;
    background-color: var(--themecolor);
}

.k-column-menu .k-menu:not(.k-context-menu) {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

    .k-column-menu .k-menu:not(.k-context-menu) .k-item:hover, .k-column-menu .k-menu:not(.k-context-menu) .k-item.k-hover {
        color: #424242;
        background-color: #ececec;
    }

    .k-column-menu .k-menu:not(.k-context-menu) .k-item.k-selected {
        color: #fff;
        background-color: var(--themecolor);
    }

    .k-column-menu .k-menu:not(.k-context-menu) .k-item:focus, .k-column-menu .k-menu:not(.k-context-menu) .k-item.k-focus {
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12);
    }

.k-column-menu-group-header-text {
    border-color: var(--kendo-border-color);
    color: #424242;
}

.k-check-all-wrap {
    border-color: var(--kendo-border-color);
}

.k-grid-norecords-template {
    background-color: #fff;
    border-color: var(--kendo-border-color);
}

.k-listview {
    margin: 0;
    padding: 0;
    border-width: 0;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4285714286;
    flex-flow: column nowrap;
    position: relative;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

.k-listview-bordered {
    border-width: 1px;
}

.k-listview-header {
    border-width: 0;
    border-style: solid;
    border-color: inherit;
}

.k-listview-bordered > .k-listview-header {
    border-bottom-width: 1px;
}

.k-listview-content {
    margin: 0;
    padding: 0;
    outline: 0;
    flex-grow: 1;
    position: relative;
    overflow: auto;
}

    .k-listview-content::after {
        height: 0;
        clear: both;
        display: block;
    }

    .k-listview-content.k-d-flex::after, .k-listview-content.k-d-flex-row::after, .k-listview-content.k-d-flex-col::after, .k-listview-content.k-d-grid::after {
        display: none;
    }

.k-listview-content-padding-rectangle {
    padding: 4px 4px;
}

.k-listview-content-padding-square {
    padding: 4px;
}

.k-listview-item {
    padding: 0;
    border-width: 0;
    outline: 0;
    border-style: solid;
    box-sizing: border-box;
    flex-shrink: 0;
}

.k-listview-item-padding-rectangle {
    padding: 4px 4px;
}

    .k-listview-item-padding-rectangle .k-listview-link {
        margin: -4px -4px;
        padding: 4px 4px;
    }

.k-listview-item-padding-square {
    padding: 4px;
}

    .k-listview-item-padding-square .k-listview-link {
        margin: -4px;
        padding: 4px;
    }

.k-listview-footer {
    border-width: 0;
    border-style: solid;
    border-color: inherit;
}

.k-listview-bordered > .k-listview-footer {
    border-top-width: 1px;
}

.k-listview-pager {
    border-width: 0;
    border-color: inherit;
}

.k-listview-bordered > .k-listview-pager-top {
    border-block-end-width: var(--kendo-listview-border-width, 1px);
}

.k-listview-bordered > .k-listview-pager-bottom {
    border-block-start-width: var(--kendo-listview-border-width, 1px);
}

.k-listview-borders-all .k-listview-item {
    border-width: 1px;
}

.k-listview-borders-horizontal .k-listview-item {
    border-top-width: 1px;
}

    .k-listview-borders-horizontal .k-listview-item:first-child {
        border-top-width: 0;
    }

.k-listview-borders-vertical .k-listview-item {
    border-left-width: 1px;
}

    .k-listview-borders-vertical .k-listview-item:first-child {
        border-left-width: 0;
    }

.k-listview {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

.k-listview-content > .k-focus {
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.13);
}

.k-listview-content > .k-selected {
    background-color: rgba(69, 102, 216, 0.25);
}

.k-listview-item {
    border-color: var(--kendo-border-color);
}

.k-spreadsheet {
    width: 800px;
    height: 600px;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4285714286;
    display: flex;
    flex-direction: column;
    cursor: default;
    position: relative;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-spreadsheet .k-vertical-align-center {
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }

    .k-spreadsheet .k-vertical-align-bottom {
        position: relative;
        top: 100%;
        transform: translateY(-100%);
    }

    .k-spreadsheet .k-tabstrip-wrapper {
        border-width: 0 0 1px;
        border-style: solid;
        border-color: inherit;
        position: relative;
    }

.k-spreadsheet-quick-access-toolbar {
    padding: 8px;
    display: inline-flex;
    flex-direction: row;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
}

.k-spreadsheet-tabstrip {
    padding-top: 8px;
    position: relative;
    z-index: 1;
}

    .k-spreadsheet-tabstrip .k-tabstrip-items-wrapper {
        margin: 0;
    }

    .k-spreadsheet-tabstrip .k-loading {
        display: none;
    }

    .k-spreadsheet-tabstrip .k-content, .k-spreadsheet-tabstrip .k-tabstrip-content {
        border-radius: 0;
        padding: 0;
        border-width: 0;
        overflow: hidden;
    }

.k-spreadsheet-toolbar {
    border-width: 0;
}

    .k-spreadsheet-toolbar [data-tool="backgroundColor"], .k-spreadsheet-toolbar [data-tool="textColor"], .k-spreadsheet-toolbar [data-tool="borders"], .k-spreadsheet-toolbar [data-tool="alignment"], .k-spreadsheet-toolbar [data-tool="merge"], .k-spreadsheet-toolbar [data-tool="freeze"] {
        width: auto;
        min-width: 1.4285714286em;
    }

    .k-spreadsheet-toolbar .k-color-picker, .k-spreadsheet-toolbar .k-colorpicker {
        width: -moz-min-content;
        width: min-content;
    }

.k-spreadsheet-action-bar {
    border-width: 0 0 1px;
    border-style: solid;
    border-color: inherit;
    font-size: 12px;
    font-family: Arial, Verdana, sans-serif;
    position: relative;
    display: flex;
    flex-direction: row;
}

.k-spreadsheet-name-editor {
    width: 10em;
    border-width: 0 1px 0 0;
    border-style: solid;
    border-color: inherit;
}

.k-spreadsheet-formula-bar {
    border-color: inherit;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 1;
}

    .k-spreadsheet-formula-bar > .k-i-formula-fx {
        padding: 0 4px;
        box-sizing: content-box;
        border-width: 0 1px 0 0;
        border-style: solid;
        border-color: inherit;
        flex-shrink: 0;
    }

    .k-spreadsheet-formula-bar .k-tooltip, .k-spreadsheet-formula-bar .k-group-header, .k-spreadsheet-formula-bar .k-list-scroller {
        display: none;
    }

    .k-spreadsheet-formula-bar .k-spreadsheet-formula-input {
        padding: 4px 8px;
        line-height: 1.4285714286;
    }

        .k-spreadsheet-formula-bar .k-spreadsheet-formula-input.k-spreadsheet-array-formula::before {
            content: " { "; font-weight: 700;
        }

        .k-spreadsheet-formula-bar .k-spreadsheet-formula-input.k-spreadsheet-array-formula::after {
            content: "} "; font-weight: 700;
        }

.k-spreadsheet-formula-input {
    outline: 0;
    white-space: pre;
    flex: 1;
    box-sizing: border-box;
}

    .k-spreadsheet-formula-input > .k-syntax-func.k-syntax-at-point, .k-spreadsheet-formula-input > .k-syntax-bool.k-syntax-at-point, .k-spreadsheet-formula-input > .k-syntax-ref.k-syntax-at-point, .k-spreadsheet-formula-input > .k-syntax-str.k-syntax-at-point, .k-spreadsheet-formula-input > .k-syntax-num.k-syntax-at-point {
        text-decoration: underline;
    }

    .k-spreadsheet-formula-input > .k-series-a, .k-spreadsheet-formula-input > .k-series-b, .k-spreadsheet-formula-input > .k-series-c, .k-spreadsheet-formula-input > .k-series-d {
        background-color: transparent;
    }

.k-spreadsheet-formula-list {
    min-width: 100px;
}

    .k-spreadsheet-formula-list .k-item {
        padding: 4px 8px;
    }

.k-syntax-func, .k-syntax-startexp {
    font-weight: bold;
}

.k-spreadsheet-cell-editor {
    padding: 0 3px;
    line-height: 20px;
    display: none;
    overflow: hidden;
    position: absolute;
    z-index: 2000;
}

.k-spreadsheet-sheets-bar {
    padding: 0 0 4px 4px;
    border-width: 1px 0 0;
    border-style: solid;
    border-color: inherit;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    position: relative;
}

.k-spreadsheet-sheets-bar-add {
    align-self: center;
}

    .k-spreadsheet-sheets-bar-add:not(:hover) {
        border-color: transparent;
        color: inherit;
        background: none;
    }

.k-spreadsheet-sheets-items {
    flex: 1;
    overflow: hidden;
}

    .k-spreadsheet-sheets-items .k-tabstrip-items-wrapper {
        margin: 0;
        border-width: 0;
    }

    .k-spreadsheet-sheets-items .k-item .k-link {
        display: inline-block;
    }

    .k-spreadsheet-sheets-items .k-item .k-spreadsheet-sheets-remove {
        margin-right: 8px;
        margin-left: -8px;
        padding: 0;
        line-height: 1;
        display: inline-flex;
        flex-direction: row;
        vertical-align: middle;
        align-self: center;
    }

.k-spreadsheet-view {
    height: auto !important;
    border-color: inherit;
    font-size: 12px;
    font-family: Arial, Verdana, Sans-serif;
    flex: 1;
    position: relative;
    overflow: hidden;
}

    .k-spreadsheet-view .k-disabled {
        pointer-events: auto;
    }

.k-spreadsheet-fixed-container {
    width: 100%;
    height: 100%;
    border-color: inherit;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    position: absolute;
    z-index: 2;
    overflow: hidden;
}

.k-spreadsheet-overflow {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    border-color: inherit;
}

.k-spreadsheet-pane {
    padding: 0 1px 0 0;
    border-width: 2px 0 0 2px;
    border-style: solid;
    border-color: inherit;
    box-sizing: border-box;
    position: absolute;
    overflow: hidden;
}

    .k-spreadsheet-pane.k-top {
        border-top-width: 0;
    }

    .k-spreadsheet-pane.k-left {
        border-left-width: 0;
    }

.k-spreadsheet-top-corner {
    border-width: 0 1px 1px 0;
    border-style: solid;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10000;
}

    .k-spreadsheet-top-corner::after {
        content: "";
        display: block;
        width: 0;
        height: 0;
        overflow: hidden;
        position: absolute;
        bottom: 0;
        right: 0;
        border: 6px solid transparent;
        border-right-color: inherit;
        border-bottom-color: inherit;
    }

.k-spreadsheet-scroller {
    width: 100%;
    height: 100%;
    overflow: scroll;
    position: absolute;
    z-index: 1;
}

@media (hover: none), (pointer: coarse) {
    .k-spreadsheet-scroller {
        z-index: 3;
    }
}

.k-spreadsheet-haxis, .k-spreadsheet-vaxis {
    border: 0 solid;
    border-color: inherit;
    position: absolute;
}

.k-spreadsheet-haxis {
    border-width: 1px 0 0;
    left: 0;
}

.k-spreadsheet-vaxis {
    border-width: 0 0 0 1px;
    top: 0;
}

.k-spreadsheet-row-header, .k-spreadsheet-column-header {
    text-align: center;
    z-index: 100;
}

    .k-spreadsheet-row-header > div, .k-spreadsheet-column-header > div {
        position: relative;
        box-sizing: border-box;
        border-width: 0;
        border-style: solid;
        border-color: inherit;
    }

        .k-spreadsheet-row-header > div::after, .k-spreadsheet-column-header > div::after {
            content: "";
            border-width: 0;
            border-style: solid;
            border-color: inherit;
            display: none;
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
        }

.k-spreadsheet-row-header {
    position: relative;
}

.k-spreadsheet-column-header {
    position: absolute;
}

.k-spreadsheet-row-header > div {
    border-top-width: 1px;
}

    .k-spreadsheet-row-header > div:first-child {
        border-top-width: 0;
    }

.k-spreadsheet-row-header > .k-selection-partial::after, .k-spreadsheet-row-header > .k-selection-full::after {
    border-right-width: 2px;
    display: block;
}

.k-spreadsheet-column-header > div {
    border-left-width: 1px;
}

    .k-spreadsheet-column-header > div:first-child {
        border-left-width: 0;
    }

.k-spreadsheet-column-header > .k-selection-partial::after, .k-spreadsheet-column-header > .k-selection-full::after {
    border-bottom-width: 2px;
    display: block;
}

.k-spreadsheet-data {
    border-color: inherit;
    cursor: cell;
    position: relative;
}

.k-spreadsheet-cell {
    padding: 1px;
    box-sizing: border-box;
    position: absolute;
    line-height: normal;
    white-space: pre;
    overflow: hidden;
}

.k-spreadsheet-merged-cells-wrapers {
    position: relative;
}

.k-spreadsheet-disabled-mask {
    position: absolute;
}

.k-spreadsheet .k-selection-wrapper {
    position: relative;
    cursor: cell;
}

.k-spreadsheet .k-spreadsheet-selection {
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    position: absolute;
}

.k-spreadsheet .k-spreadsheet-selection-highlight {
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    position: absolute;
}

.k-spreadsheet .k-selection-wrapper .k-spreadsheet-editor-button {
    position: absolute;
    padding: 0;
    z-index: 60;
}

    .k-spreadsheet .k-selection-wrapper .k-spreadsheet-editor-button.k-spreadsheet-last-column {
        transform: translateX(-100%);
    }

.k-spreadsheet-active-cell {
    outline-color: transparent !important;
    z-index: 10;
}

.k-spreadsheet .k-auto-fill-wrapper {
    position: relative;
}

.k-spreadsheet .k-auto-fill, .k-spreadsheet .k-auto-fill-punch, .k-spreadsheet .k-auto-fill-br-hint {
    box-sizing: border-box;
    position: absolute;
}

.k-spreadsheet .k-auto-fill {
    border-width: 1px;
    border-style: solid;
    cursor: crosshair;
}

.k-spreadsheet .k-single-selection::after {
    content: "";
    margin-bottom: -4px;
    margin-right: -4px;
    width: 6px;
    height: 6px;
    border-width: 1px;
    border-style: solid;
    border-radius: 50%;
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 100;
    cursor: crosshair;
}

.k-spreadsheet .k-selection-full::after, .k-spreadsheet .k-selection-partial::after {
    display: none;
}

.k-spreadsheet .k-autofill-wrapper {
    position: relative;
    cursor: cell;
}

.k-spreadsheet-vborder {
    position: absolute;
    border-left-style: solid;
    border-left-width: 1px;
}

.k-spreadsheet-hborder {
    position: absolute;
    border-top-style: solid;
    border-top-width: 1px;
}

.k-spreadsheet-has-comment::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    border-width: 3px;
    border-style: solid;
}

.k-dirty {
    left: 0;
    right: auto;
}

.k-spreadsheet .k-filter-wrapper {
    position: relative;
    z-index: 50;
}

.k-spreadsheet .k-filter-range {
    border-width: 1px;
    border-style: solid;
    position: absolute;
    box-sizing: border-box;
}

.k-spreadsheet-filter {
    border-radius: 4px;
    line-height: 1;
    position: absolute;
    cursor: pointer;
}

    .k-spreadsheet-filter .k-icon {
        vertical-align: middle;
    }

.k-spreadsheet-filter-menu {
    width: 280px;
}

    .k-spreadsheet-filter-menu .k-animation-container {
        position: relative;
    }

    .k-spreadsheet-filter-menu > .k-menu, .k-spreadsheet-filter-menu > .k-menu.k-menu-vertical {
        border-width: 0;
    }

        .k-spreadsheet-filter-menu > .k-menu .k-item, .k-spreadsheet-filter-menu > .k-menu.k-menu-vertical .k-item {
            color: inherit;
        }

        .k-spreadsheet-filter-menu > .k-menu .k-link, .k-spreadsheet-filter-menu > .k-menu.k-menu-vertical .k-link {
            padding-left: 24px;
        }

        .k-spreadsheet-filter-menu > .k-menu .k-icon, .k-spreadsheet-filter-menu > .k-menu.k-menu-vertical .k-icon {
            margin-left: -20px;
            margin-right: 4px;
        }

    .k-spreadsheet-filter-menu .k-spreadsheet-value-treeview-wrapper {
        height: 200px;
        border-width: 1px;
        border-style: solid;
        overflow-y: scroll;
        overflow-x: auto;
    }

        .k-spreadsheet-filter-menu .k-spreadsheet-value-treeview-wrapper .k-treeview {
            padding: 4px;
            overflow: visible;
        }

    .k-spreadsheet-filter-menu .k-details, .k-spreadsheet-filter-menu .k-expander {
        padding: 0;
        border-width: 1px 0 0;
        border-style: solid;
        border-color: inherit;
    }

    .k-spreadsheet-filter-menu .k-expander {
        border: 0;
        background: inherit;
    }

    .k-spreadsheet-filter-menu .k-details-summary, .k-spreadsheet-filter-menu .k-columnmenu-item {
        padding: 4px 8px;
        display: flex;
        align-items: center;
        cursor: pointer;
    }

        .k-spreadsheet-filter-menu .k-details-summary > .k-icon, .k-spreadsheet-filter-menu .k-columnmenu-item > .k-icon {
            margin-right: 4px;
        }

    .k-spreadsheet-filter-menu .k-details-content, .k-spreadsheet-filter-menu .k-columnmenu-item-content {
        padding: 8px;
        display: flex;
        flex-flow: column nowrap;
        gap: 8px;
    }

        .k-spreadsheet-filter-menu .k-details-content .k-filter-and, .k-spreadsheet-filter-menu .k-columnmenu-item-content .k-filter-and {
            width: -moz-min-content;
            width: min-content;
            align-self: flex-start;
        }

    .k-spreadsheet-filter-menu .k-actions, .k-spreadsheet-filter-menu .k-edit-buttons, .k-spreadsheet-filter-menu .k-action-buttons, .k-spreadsheet-filter-menu .k-columnmenu-actions, .k-spreadsheet-filter-menu .k-form-buttons {
        margin: 0;
        padding: 0;
    }

.k-spreadsheet-popup {
    padding: 0;
}

    .k-spreadsheet-popup .k-separator {
        display: block;
    }

    .k-spreadsheet-popup .k-reset-color, .k-spreadsheet-popup .k-custom-color {
        border-radius: 0;
        width: 100%;
        border-width: 0;
        box-sizing: border-box;
        display: flex;
    }

    .k-spreadsheet-popup .k-reset-color {
        border-bottom-width: 1px;
    }

    .k-spreadsheet-popup .k-custom-color {
        border-top-width: 1px;
    }

    .k-spreadsheet-popup .k-spreadsheet-border-type-palette {
        width: 12.5rem;
        height: 5rem;
        display: flex;
        flex-flow: row wrap;
        align-content: space-around;
        justify-content: space-around;
    }

.k-spreadsheet-format-popup .k-item {
    justify-content: space-between;
}

.k-spreadsheet-format-popup .k-spreadsheet-sample {
    order: 1;
}

.k-spreadsheet-sample {
    opacity: .7;
}

.k-spreadsheet-clipboard, .k-spreadsheet-clipboard-paste {
    margin: 0;
    padding: 0;
    width: 1px;
    height: 1px;
    border: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.k-spreadsheet-window .k-edit-form-container {
    width: auto;
    min-width: 0;
}

.k-spreadsheet-format-cells .k-spreadsheet-preview {
    margin-top: 8px;
    text-align: center;
}

.k-spreadsheet-format-cells .k-list-scroller {
    margin-top: 8px;
    height: 210px;
    border-width: 1px;
    border-style: solid;
    border-color: inherit;
}

.k-export-config {
    clear: both;
    position: relative;
}

    .k-export-config::after {
        content: "";
        clear: both;
        display: block;
    }

    .k-export-config .k-edit-field {
        margin-left: 5%;
        width: 45%;
        float: left;
    }

    .k-export-config .k-page-orientation {
        position: absolute;
        right: 0;
        top: 8px;
    }

        .k-export-config .k-page-orientation .k-icon {
            font-size: 6em;
        }

.k-spreadsheet-insert-comment textarea {
    height: auto;
}

.k-spreadsheet-insert-image-dialog {
    border-radius: 4px;
    border-style: dashed;
    border-width: 2px;
}

    .k-spreadsheet-insert-image-dialog label {
        display: flex;
        justify-content: center;
        min-width: 100%;
        width: 355px;
        height: 230px;
        background-image: url("data:image/png; base64, iVBORw0KGgoAAAANSUhEUgAAAcwAAAGQCAYAAAAjl1AKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA4ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ1IDc5LjE2MzQ5OSwgMjAxOC8wOC8xMy0xNjo0MDoyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDphMGVmMzZmZi04YmI1LTRlN2YtOTcwMS04OTU5ZTg1N2ZhY2MiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MDNDOTBDNUQ2OUJGMTFFOTkwMzY4RTI3NjZBQTdENkMiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MDNDOTBDNUM2OUJGMTFFOTkwMzY4RTI3NjZBQTdENkMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpjMmZmZjM0Mi05NjEyLTQwM2YtYWZhYS01MTE1ZjQ2NThmMWMiIHN0UmVmOmRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDphYjlhMmUwMy1kNmIwLTY3NGMtODc4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"); background-size: auto 70%;
        background-position: 50% 30%;
        background-repeat: no-repeat;
    }

        .k-spreadsheet-insert-image-dialog label div {
            display: flex;
            align-self: flex-end;
            margin-bottom: 30px;
            pointer-events: none;
        }

        .k-spreadsheet-insert-image-dialog label input {
            display: none;
        }

    .k-spreadsheet-insert-image-dialog .k-spreadsheet-has-image {
        background-size: auto 90%;
        background-position: 50% 50%
    }

        .k-spreadsheet-insert-image-dialog .k-spreadsheet-has-image:hover div, .k-spreadsheet-insert-image-dialog .k-spreadsheet-has-image.k-hover div {
            margin: 0;
            align-self: center;
            opacity: 1;
        }

        .k-spreadsheet-insert-image-dialog .k-spreadsheet-has-image div {
            opacity: 0;
        }

.k-spreadsheet-drawing {
    position: absolute;
    box-sizing: border-box;
    z-index: 101;
}

    .k-spreadsheet-drawing.k-spreadsheet-active-drawing {
        outline-style: solid;
        outline-width: 2px;
    }

    .k-spreadsheet-drawing .k-spreadsheet-drawing-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-position: 50% 50%;
        background-size: 100% 100%;
        background-repeat: no-repeat;
        cursor: move;
    }

    .k-spreadsheet-drawing .k-spreadsheet-drawing-handle {
        width: 6px;
        height: 6px;
        border-style: solid;
        border-width: 1px;
        border-radius: 6px;
        position: absolute;
        transform: translate(-50%, -50%);
    }

        .k-spreadsheet-drawing .k-spreadsheet-drawing-handle.N {
            left: 50%;
            top: 0;
            cursor: ns-resize;
        }

        .k-spreadsheet-drawing .k-spreadsheet-drawing-handle.NE {
            left: 100%;
            top: 0;
            cursor: nesw-resize;
        }

        .k-spreadsheet-drawing .k-spreadsheet-drawing-handle.E {
            left: 100%;
            top: 50%;
            cursor: ew-resize;
        }

        .k-spreadsheet-drawing .k-spreadsheet-drawing-handle.SE {
            left: 100%;
            top: 100%;
            cursor: nwse-resize;
        }

        .k-spreadsheet-drawing .k-spreadsheet-drawing-handle.S {
            left: 50%;
            top: 100%;
            cursor: ns-resize;
        }

        .k-spreadsheet-drawing .k-spreadsheet-drawing-handle.SW {
            left: 0;
            top: 100%;
            cursor: nesw-resize;
        }

        .k-spreadsheet-drawing .k-spreadsheet-drawing-handle.W {
            left: 0;
            top: 50%;
            cursor: ew-resize;
        }

        .k-spreadsheet-drawing .k-spreadsheet-drawing-handle.NW {
            left: 0;
            top: 0;
            cursor: nwse-resize;
        }

    .k-spreadsheet-drawing .k-spreadsheet-insert-image-dialog .k-spreadsheet-has-image:hover, .k-spreadsheet-drawing .k-spreadsheet-insert-image-dialog .k-spreadsheet-has-image.k-hover {
        border-radius: 4px;
    }

.k-rtl .k-spreadsheet .k-dirty, .k-spreadsheet[dir="rtl"] .k-dirty {
    right: 0;
    left: auto;
}

.k-rtl .k-spreadsheet .k-spreadsheet-has-comment::after, .k-spreadsheet[dir="rtl"] .k-spreadsheet-has-comment::after {
    left: 0;
    right: auto;
}

.k-spreadsheet {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

.k-spreadsheet-top-corner, .k-spreadsheet-row-header, .k-spreadsheet-column-header {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fafafa;
}

.k-syntax-ref {
    color: #ff8822;
}

.k-syntax-num {
    color: #0099ff;
}

.k-syntax-str {
    color: #38b714;
}

.k-syntax-error {
    color: red;
}

.k-syntax-bool {
    color: #a9169c;
}

.k-syntax-paren-match {
    background-color: #caf200;
}

.k-spreadsheet-cell-editor {
    color: #424242;
    background-color: #fff;
}

.k-spreadsheet-merged-cell {
    background-color: #fff;
}

.k-spreadsheet-disabled-mask {
    background-color: #fff;
}

.k-spreadsheet .k-selection-full, .k-spreadsheet .k-selection-partial {
    background-color: rgba(69, 102, 216, 0.25);
}

.k-spreadsheet-selection {
    border-color: var(--themecolor);
    background-color: rgba(69, 102, 216, 0.25);
    box-shadow: inset 0 0 0 1px var(--themecolor);
}

.k-spreadsheet .k-single-selection::after {
    border-color: #fff;
    background-color: var(--themecolor);
}

.k-spreadsheet-active-cell {
    box-shadow: inset 0 0 0 1px var(--themecolor);
    background-color: #fff;
}

    .k-spreadsheet-active-cell.k-right {
        box-shadow: inset 0 0 0 1px var(--themecolor), inset -1px 0 0 1px var(--themecolor);
    }

    .k-spreadsheet-active-cell.k-bottom {
        box-shadow: inset 0 0 0 1px var(--themecolor), inset 0 -1px 0 1px var(--themecolor);
    }

        .k-spreadsheet-active-cell.k-bottom.k-right {
            box-shadow: inset 0 0 0 1px var(--themecolor), inset -1px -1px 0 1px var(--themecolor);
        }

.k-spreadsheet .k-auto-fill {
    border-color: var(--themecolor);
    background-color: rgba(69, 102, 216, 0.25);
    box-shadow: inset 0 0 0 1px var(--themecolor);
}

.k-spreadsheet .k-auto-fill-punch {
    background-color: rgba(255, 255, 255, 0.5);
}

.k-spreadsheet .k-resize-handle, .k-spreadsheet .k-resize-hint-handle, .k-spreadsheet .k-resize-hint-marker {
    background-color: var(--themecolor);
}

.k-spreadsheet-has-comment::after {
    border-color: var(--themecolor) var(--themecolor) transparent transparent;
}

.k-dirty {
    border-color: #df5438 transparent transparent #df5438;
}

.k-spreadsheet .k-filter-range {
    border-color: var(--themecolor);
}

.k-spreadsheet-filter {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #f5f5f5;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

    .k-spreadsheet-filter:hover {
        background-color: #ebebeb;
    }

    .k-spreadsheet-filter.k-active {
        background-color: #d8d8d8;
    }

.k-spreadsheet-filter-menu > .k-menu .k-item:hover, .k-spreadsheet-filter-menu > .k-menu .k-item.k-hover, .k-spreadsheet-filter-menu > .k-menu:not(.k-context-menu) .k-item:hover, .k-spreadsheet-filter-menu > .k-menu:not(.k-context-menu) .k-item.k-hover {
    color: #424242;
    background-color: #ececec;
}

.k-spreadsheet-filter-menu .k-spreadsheet-value-treeview-wrapper {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

.k-spreadsheet-popup .k-button:hover, .k-spreadsheet-popup .k-button.k-hover {
    color: #424242;
    background-color: #ececec;
}

.k-spreadsheet-popup .k-button:active, .k-spreadsheet-popup .k-button.k-active, .k-spreadsheet-popup .k-button.k-selected {
    color: #fff;
    background-color: var(--themecolor);
}

.k-spreadsheet-insert-image-dialog {
    border-color: var(--kendo-border-color);
}

    .k-spreadsheet-insert-image-dialog .k-spreadsheet-has-image:hover, .k-spreadsheet-insert-image-dialog .k-spreadsheet-has-image.k-hover {
        box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.5);
    }

        .k-spreadsheet-insert-image-dialog .k-spreadsheet-has-image:hover div, .k-spreadsheet-insert-image-dialog .k-spreadsheet-has-image.k-hover div {
            color: #fff;
        }

.k-spreadsheet-drawing.k-spreadsheet-active-drawing {
    outline-color: var(--themecolor);
}

.k-spreadsheet-drawing .k-spreadsheet-drawing-handle {
    border-color: var(--themecolor);
    background-color: var(--themecolor);
}

.k-spreadsheet-drawing-anchor-cell {
    background: rgba(69, 102, 216, 0.25);
}

.k-rtl .k-spreadsheet .k-spreadsheet-has-comment::after, .k-spreadsheet[dir="rtl"] .k-spreadsheet-has-comment::after, [dir="rtl"] .k-spreadsheet .k-spreadsheet-has-comment::after {
    border-color: var(--themecolor) transparent transparent var(--themecolor);
}

.k-rtl .k-spreadsheet .k-dirty, .k-spreadsheet[dir="rtl"] .k-dirty, [dir="rtl"] .k-spreadsheet .k-dirty {
    border-color: #df5438 #df5438 transparent transparent;
}

.k-pivotgrid {
    border-width: 1px;
    border-style: solid;
    box-sizing: content-box;
    font-size: 14px;
    font-family: inherit;
    line-height: 1.4285714286;
    text-align: left;
    vertical-align: top;
    display: grid;
    grid-template-columns: 300px auto;
    grid-template-rows: 75px auto;
    position: relative;
}

    .k-pivotgrid table {
        margin: 0;
        width: 100%;
        max-width: none;
        border-width: 0;
        border-color: inherit;
        border-collapse: separate;
        border-spacing: 0;
        outline: 0;
        empty-cells: show;
    }

    .k-pivotgrid thead, .k-pivotgrid tbody, .k-pivotgrid th, .k-pivotgrid tr, .k-pivotgrid td {
        border-color: inherit;
    }

.k-pivotgrid-table {
    table-layout: fixed;
}

    .k-pivotgrid-table th {
        font-weight: 400;
        text-transform: initial;
    }

    .k-pivotgrid-table .k-pivotgrid-header-root {
        font-weight: 600;
        text-transform: uppercase;
    }

.k-pivotgrid-empty-cell {
    border-right-style: solid;
    border-right-width: 1px;
    border-bottom-style: solid;
    border-bottom-width: 1px;
}

    .k-pivotgrid-empty-cell:focus {
        outline: none;
    }

.k-pivotgrid-column-headers {
    overflow: hidden;
}

    .k-pivotgrid-column-headers .k-pivotgrid-table {
        -webkit-padding-start: 0;
        padding-inline-start: 0;
        -webkit-padding-end: var(--kendo-scrollbar-width, 17px);
        padding-inline-end: var(--kendo-scrollbar-width, 17px);
    }

    .k-pivotgrid-column-headers .k-pivotgrid-cell {
        border-bottom-style: solid;
        border-bottom-width: 1px;
        border-left-style: solid;
        border-left-width: 1px;
    }

        .k-pivotgrid-column-headers .k-pivotgrid-cell:first-child {
            border-left-width: 0;
        }

        .k-pivotgrid-column-headers .k-pivotgrid-cell.k-first {
            border-left-width: 1px;
        }

.k-pivotgrid-row-headers {
    overflow: hidden;
}

    .k-pivotgrid-row-headers .k-pivotgrid-table {
        padding-bottom: var(--kendo-scrollbar-width, 17px);
    }

    .k-pivotgrid-row-headers .k-pivotgrid-cell {
        border-right-style: solid;
        border-right-width: 1px;
        border-bottom-style: solid;
        border-bottom-width: 1px;
        white-space: nowrap;
    }

.k-pivotgrid-values {
    border-color: inherit;
    overflow: scroll;
}

    .k-pivotgrid-values .k-pivotgrid-cell {
        border-bottom-style: solid;
        border-bottom-width: 1px;
        border-left-style: solid;
        border-left-width: 1px;
    }

        .k-pivotgrid-values .k-pivotgrid-cell:first-child {
            border-left-width: 0;
        }

.k-pivotgrid-cell {
    padding: 8px 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: top;
    overflow: hidden;
}

    .k-pivotgrid-cell:focus {
        outline: none;
    }

    .k-pivotgrid-cell .k-icon {
        cursor: pointer;
        -webkit-padding-end: 8px;
        padding-inline-end: 8px;
    }

.k-pivotgrid-total {
    font-weight: 600;
}

.k-column-menu .k-treeview {
    padding: 0px 8px;
    overflow: auto;
}

.k-pivotgrid-configurator {
    display: flex;
}

.k-pivotgrid-configurator-panel {
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 2;
}

.k-pivotgrid-configurator-button {
    padding: 4px 4px;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.k-flex-row .k-pivotgrid-configurator-button, .k-d-flex-row .k-pivotgrid-configurator-button, .k-flex-row-reverse .k-pivotgrid-configurator-button {
    display: flex;
    align-items: center;
}

    .k-flex-row .k-pivotgrid-configurator-button span, .k-d-flex-row .k-pivotgrid-configurator-button span, .k-flex-row-reverse .k-pivotgrid-configurator-button span {
        writing-mode: vertical-rl;
    }

    .k-flex-row .k-pivotgrid-configurator-button .k-icon, .k-d-flex-row .k-pivotgrid-configurator-button .k-icon, .k-flex-row-reverse .k-pivotgrid-configurator-button .k-icon {
        vertical-align: baseline;
    }

    .k-flex-row-reverse .k-pivotgrid-configurator-button > span {
        transform: rotate(-180deg);
    }

.k-flex-col .k-pivotgrid-configurator-button, .k-d-flex-col .k-pivotgrid-configurator-button, .k-flex-column .k-pivotgrid-configurator-button, .k-flex-col-reverse .k-pivotgrid-configurator-button, .k-flex-column-reverse .k-pivotgrid-configurator-button {
    text-align: center;
}

.k-pivotgrid-configurator-overlay {
    position: absolute;
    overflow: hidden;
    z-index: 2;
}

.k-flex-row .k-pivotgrid-configurator-overlay, .k-d-flex-row .k-pivotgrid-configurator-overlay {
    right: calc(1.4285714286em + 10px);
}

.k-flex-row-reverse .k-pivotgrid-configurator-overlay {
    left: calc(1.4285714286em + 10px);
}

.k-flex-col .k-pivotgrid-configurator-overlay, .k-d-flex-col .k-pivotgrid-configurator-overlay, .k-flex-column .k-pivotgrid-configurator-overlay {
    bottom: calc(1.4285714286em + 10px);
}

.k-flex-col-reverse .k-pivotgrid-configurator-overlay, .k-flex-column-reverse .k-pivotgrid-configurator-overlay {
    top: calc(1.4285714286em + 10px);
}

.k-pivotgrid-configurator-header {
    padding: 12px 16px;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.k-pivotgrid-configurator-header-text {
    word-break: normal;
    overflow-wrap: anywhere;
}

.k-pivotgrid-configurator-content {
    padding: 2px 16px;
    flex: 1 1 auto;
    overflow: auto;
}

    .k-pivotgrid-configurator-content .k-form .k-label {
        font-size: 16px;
        font-weight: 500;
        align-items: flex-start;
    }

    .k-pivotgrid-configurator-content .k-form .k-dropdown-list, .k-pivotgrid-configurator-content .k-form .k-dropdown, .k-pivotgrid-configurator-content .k-form .k-dropdownlist {
        max-width: 90px;
    }

    .k-pivotgrid-configurator-content .k-form .k-textbox {
        flex-basis: 50%
    }

    .k-pivotgrid-configurator-content .k-row-fields, .k-pivotgrid-configurator-content .k-column-fields, .k-pivotgrid-configurator-content .k-filter-fields {
        margin-top: 8px;
        flex-wrap: wrap;
    }

    .k-pivotgrid-configurator-content .k-value-fields {
        margin: 8px 0px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .k-pivotgrid-configurator-content .k-select-all .k-checkbox {
        -webkit-margin-end: 4px;
        margin-inline-end: 4px;
    }

    .k-pivotgrid-configurator-content .k-fields-list-wrapper {
        max-height: 200px;
        border-width: 1px;
        border-style: solid;
        flex: 1 1 auto;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .k-pivotgrid-configurator-content .k-settings-description {
        margin-top: 16px;
        text-align: center;
    }

    .k-pivotgrid-configurator-content .k-treeview {
        padding: 0px 8px;
        overflow: auto;
    }

.k-calculated-field {
    padding: 16px 16px;
    border-width: 1px;
    border-radius: 4px;
    border-style: solid;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.k-calculated-field-header {
    display: flex;
    flex-direction: row;
    align-items: center;
}

    .k-calculated-field-header .k-textbox {
        min-width: 200px;
    }

.k-calculated-field-header-text {
    margin-right: 5px;
    word-break: normal;
    overflow-wrap: anywhere;
}

.k-calculated-field-header-actions {
    flex-shrink: 0;
    align-self: flex-start;
}

.k-calculated-field-content .k-textbox {
    width: 100%
}

.k-calculated-field-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
}

    .k-calculated-field-actions .k-icon {
        margin-right: 8px;
    }

    .k-calculated-field-actions .k-dropdown-list, .k-calculated-field-actions .k-dropdown, .k-calculated-field-actions .k-dropdownlist {
        max-width: 100px;
    }

.k-filter-menu .k-calculated-item {
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.k-pivotgrid-configurator-vertical {
    min-width: 320px;
}

.k-flex-row .k-pivotgrid-configurator-vertical.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel, .k-d-flex-row .k-pivotgrid-configurator-vertical.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel, .k-flex-row-reverse .k-pivotgrid-configurator-vertical.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel {
    border-right-width: 0;
    border-left-width: 0;
}

.k-pivotgrid-configurator-horizontal {
    width: 100%;
    height: 420px;
}

    .k-pivotgrid-configurator-horizontal .k-pivotgrid-configurator-content .k-form {
        display: flex;
        flex-direction: row;
    }

    .k-pivotgrid-configurator-horizontal .k-pivotgrid-configurator-content .k-form-field-wrapper {
        padding-left: 16px;
    }

        .k-pivotgrid-configurator-horizontal .k-pivotgrid-configurator-content .k-form-field-wrapper > *:first-child {
            margin-top: 0;
        }

        .k-pivotgrid-configurator-horizontal .k-pivotgrid-configurator-content .k-form-field-wrapper:first-child {
            padding-left: 0;
            flex: 1 1 30%
        }

        .k-pivotgrid-configurator-horizontal .k-pivotgrid-configurator-content .k-form-field-wrapper:nth-child(2) {
            flex: 1 1 30%
        }

        .k-pivotgrid-configurator-horizontal .k-pivotgrid-configurator-content .k-form-field-wrapper:last-child {
            border-left-width: 1px;
            border-left-style: solid;
            flex: 1 1 40%
        }

    .k-pivotgrid-configurator-horizontal .k-pivotgrid-configurator-content .k-row-fields, .k-pivotgrid-configurator-horizontal .k-pivotgrid-configurator-content .k-column-fields, .k-pivotgrid-configurator-horizontal .k-pivotgrid-configurator-content .k-filter-fields {
        max-height: 100px;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .k-pivotgrid-configurator-horizontal .k-pivotgrid-configurator-content .k-value-fields {
        max-height: 250px;
        flex-flow: row wrap;
        overflow-x: hidden;
        overflow-y: auto;
    }

.k-flex-col .k-pivotgrid-configurator-horizontal.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel, .k-d-flex-col .k-pivotgrid-configurator-horizontal.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel, .k-flex-column .k-pivotgrid-configurator-horizontal.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel, .k-flex-col-reverse .k-pivotgrid-configurator-horizontal.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel, .k-flex-column-reverse .k-pivotgrid-configurator-horizontal.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel {
    border-top-width: 0;
    border-bottom-width: 0;
}

.k-pdf-export-shadow .k-pivotgrid {
    height: auto !important;
}

.k-pdf-export-shadow .k-pivotgrid-values {
    height: auto;
    overflow: visible;
}

.k-pdf-export-shadow .k-pivotgrid-column-headers .k-pivotgrid-table {
    -webkit-padding-end: 0;
    padding-inline-end: 0;
}

.k-pivot {
    border-width: 1px;
    border-style: solid;
    position: relative;
}

    .k-pivot .k-grid td {
        white-space: nowrap;
    }

    .k-pivot .k-grid-content {
        flex: 1 1 auto;
    }

.k-pivot-toolbar {
    border-width: 0 0 1px;
    border-style: solid;
    align-items: flex-start;
    flex-wrap: wrap;
    box-shadow: none;
}

    .k-pivot-toolbar > * {
        max-width: 100%
    }

    .k-pivot-toolbar::before {
        display: none;
    }

.k-pivot-layout {
    border-spacing: 0;
    table-layout: auto;
}

    .k-pivot-layout .k-grid-footer, .k-pivot-layout .k-grid .k-alt {
        font-weight: bold;
    }

    .k-pivot-layout > tbody, .k-pivot td {
        vertical-align: top;
    }

        .k-pivot-layout > tbody > tr > td {
            padding: 0;
        }

.k-pivot-rowheaders > .k-grid, .k-pivot-table > .k-grid {
    border-width: 0;
    color: inherit;
    background: none;
}

    .k-pivot-rowheaders > .k-grid td:first-child, .k-pivot-table .k-grid-header .k-header.k-first {
        border-left-width: 1px;
    }

    .k-pivot-rowheaders > .k-grid td.k-first {
        border-left-width: 0;
    }

.k-pivot-rowheaders > .k-grid {
    overflow: hidden;
}

.k-pivot-table {
    border-left-width: 1px;
    border-left-style: solid;
}

    .k-pivot-table .k-grid-header-wrap {
        margin-right: -1px;
    }

        .k-pivot-table .k-grid-header-wrap > table {
            height: 100%
        }

.k-pivot .k-grid-header .k-header {
    vertical-align: top;
}

.k-pivot .k-grid tr .k-grid-footer {
    border-bottom-width: 0;
}

.k-pivot .k-grid tr:last-child:not(.k-grid-footer) td:not(.k-grid-footer) {
    border-bottom-width: 1px;
}

.k-pivot-layout .k-grid td {
    border-bottom-width: 1px;
}

.k-pivot-layout .k-grid-footer > td {
    border-top-width: 0;
}

.k-pivot-filter-window .k-treeview {
    max-height: 600px;
}

.k-pivotgrid-wrapper {
    box-sizing: border-box;
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    gap: 8px;
}

    .k-pivotgrid-wrapper > .k-pivotgrid-configurator-panel {
        max-width: 320px;
        flex: none;
    }

    .k-pivotgrid-wrapper > .k-pivot {
        flex: 1;
    }

.k-pivotgrid-configurator-panel.kendo-jquery {
    box-sizing: border-box;
    display: inline-flex;
}

    .k-pivotgrid-configurator-panel.kendo-jquery .k-pivotgrid-configurator {
        height: 100%
    }

    .k-pivotgrid-configurator-panel.kendo-jquery .k-pivotgrid-configurator-content {
        padding: 16px;
        max-height: 100%;
        display: flex;
        flex-flow: column nowrap;
        gap: 16px;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .k-pivotgrid-configurator-panel.kendo-jquery .k-pivotgrid-targets {
        display: flex;
        flex-flow: column nowrap;
        gap: 16px;
    }

    .k-pivotgrid-configurator-panel.kendo-jquery .k-pivotgrid-configurator-section {
        display: flex;
        flex-flow: column nowrap;
        gap: 8px;
    }

    .k-pivotgrid-configurator-panel.kendo-jquery .k-column-fields {
        margin: 0;
        padding: 4px;
        max-height: 200px;
        border-width: 1px;
        border-style: solid;
        display: flex;
        flex-flow: row wrap;
        gap: 4px;
        overflow-x: hidden;
        overflow-y: auto;
    }

        .k-pivotgrid-configurator-panel.kendo-jquery .k-column-fields > * {
            margin: 0;
        }

.k-pivotgrid {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

.k-pivotgrid-column-headers, .k-pivotgrid-row-headers, .k-pivotgrid-empty-cell {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fafafa;
}

.k-pivotgrid-empty-cell {
    border-color: rgba(0, 0, 0, 0.2272);
}

.k-pivotgrid-row-headers .k-pivotgrid-row .k-pivotgrid-cell:last-child {
    border-right-color: rgba(0, 0, 0, 0.2272);
}

.k-pivotgrid-column-headers .k-pivotgrid-column-total:nth-last-of-type(2) .k-pivotgrid-cell:not(.k-pivotgrid-expanded), .k-pivotgrid-column-headers .k-pivotgrid-row:last-child {
    border-bottom-color: rgba(0, 0, 0, 0.2272);
}

.k-pivotgrid-header-total, .k-pivotgrid-total {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #ebebeb;
}

.k-pivotgrid-row-headers tbody > .k-pivotgrid-row:hover, .k-pivotgrid-row-headers tbody > .k-pivotgrid-row.k-hover, .k-pivotgrid-column-headers tbody > .k-pivotgrid-row:hover, .k-pivotgrid-column-headers tbody > .k-pivotgrid-row.k-hover, .k-pivotgrid-values tbody > .k-pivotgrid-row:hover, .k-pivotgrid-values tbody > .k-pivotgrid-row.k-hover {
    background-color: #ededed;
}

.k-pivotgrid-cell:focus, .k-pivotgrid-cell.k-focus, .k-pivotgrid-empty-cell:focus, .k-pivotgrid-empty-cell.k-focus, .k-master-row > .k-pivotgrid-cell:focus, .k-grouping-row > .k-pivotgrid-cell:focus, .k-detail-row > .k-pivotgrid-cell:focus, .k-group-footer > .k-pivotgrid-cell:focus {
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12);
}

.k-pivotgrid-cell.k-selected, .k-pivotgrid-row.k-selected > .k-pivotgrid-cell {
    background-color: rgba(69, 102, 216, 0.25);
}

.k-pivotgrid-configurator-button, .k-pivotgrid-configurator-panel {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

.k-pivotgrid-configurator-header {
    color: #424242;
}

.k-pivotgrid-configurator-content .k-fields-list-wrapper {
    border-color: var(--kendo-border-color);
}

.k-calculated-field {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

.k-calculated-field-header {
    color: #424242;
}

.k-filter-menu .k-calculated-item {
    border-color: var(--kendo-border-color);
}

.k-pivotgrid-configurator-content .k-form-field-wrapper {
    border-color: var(--kendo-border-color);
}

.k-flex-row .k-pivotgrid-configurator-overlay, .k-d-flex-row .k-pivotgrid-configurator-overlay {
    box-shadow: -3px 0px 6px rgba(0, 0, 0, 0.16);
}

.k-flex-row-reverse .k-pivotgrid-configurator-overlay {
    box-shadow: 3px 0px 6px rgba(0, 0, 0, 0.16);
}

.k-flex-col .k-pivotgrid-configurator-overlay, .k-d-flex-col .k-pivotgrid-configurator-overlay, .k-flex-column .k-pivotgrid-configurator-overlay {
    box-shadow: 0px -3px 6px rgba(0, 0, 0, 0.16);
}

.k-flex-col-reverse .k-pivotgrid-configurator-overlay, .k-flex-column-reverse .k-pivotgrid-configurator-overlay {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.k-pivot {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

.k-pivot-table {
    border-color: var(--kendo-border-color);
}

.k-pivot-rowheaders {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fafafa;
}

.k-pivot-toolbar {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fafafa;
}

    .k-pivot-toolbar .k-empty {
        color: #666;
    }

.k-alt {
    background-color: #fafafa;
}

.k-pivot-toolbar, .k-pivot-table, .k-pivot-rowheaders > .k-grid td:first-child, .k-pivot-table .k-grid-header .k-header.k-first {
    border-color: var(--kendo-border-color);
}

.k-header.k-alt {
    background-color: #ebebeb;
}

.k-pivot-layout .k-grid-footer {
    color: #424242;
    background-color: #fafafa;
}

.k-i-kpi-trend-increase, .k-i-kpi-trend-decrease, .k-i-kpi-trend-equal {
    color: inherit;
}

.k-i-kpi-status-hold {
    color: #F5A600;
}

.k-i-kpi-status-deny {
    color: #df5438;
}

.k-i-kpi-status-open {
    color: #5cb85c;
}

.k-pivotgrid-configurator-panel.kendo-jquery .k-column-fields {
    border-color: var(--kendo-border-color);
}

.k-treelist.k-grid-display-block.k-grid-lockedcolumns {
    display: block;
}

.k-treelist .k-status {
    padding: .4em .6em;
    line-height: 1.6em;
}

    .k-treelist .k-status .k-loading {
        vertical-align: baseline;
        margin-right: 5px;
        display: none;
    }

.k-treelist tr.k-hidden {
    display: none;
}

.k-treelist .k-treelist-dragging, .k-treelist .k-treelist-dragging .k-hover {
    cursor: default;
}

.k-treelist .k-drop-hint {
    transform: translate(0, -50%);
}

.k-treelist .k-table-row.k-footer td, .k-treelist .k-table-row.k-footer-template td, .k-treelist .k-table-row.k-footer .k-table-td, .k-treelist .k-table-row.k-footer-template .k-table-td {
    border-width: 1px 0;
    border-style: solid;
    font-weight: bold;
}

.k-treelist .k-table-row.k-footer + .k-table-row.k-footer td, .k-treelist .k-table-row.k-footer + .k-table-row.k-footer .k-table-td {
    border-top-width: 0;
}

.k-treelist-scrollable > .k-table, .k-treelist-scrollable .k-grid-header .k-table-row, .k-treelist-scrollable .k-grid-header .k-table-th {
    background-color: inherit;
}

.k-treelist-scrollable .k-grid-toolbar {
    position: sticky;
    z-index: 3;
    top: 0;
    left: 0;
}

.k-treelist-scrollable .k-grid-header .k-table-th {
    position: sticky;
    z-index: 1;
}

    .k-treelist-scrollable .k-grid-header .k-table-th.k-grid-header-sticky {
        z-index: 3;
    }

.k-treelist-scrollable thead.k-grid-header {
    padding-right: 0;
}

.k-treelist-scrollable .k-table-row.k-group-footer + .k-table-row.k-group-footer td {
    border-top-width: 0;
}

.k-treelist-scrollable[dir="rtl"] thead.k-grid-header, .k-rtl .k-treelist-scrollable thead.k-grid-header {
    padding-left: 0;
}

.k-drag-separator {
    display: inline-block;
    border-right: 1px solid;
    height: 1em;
    vertical-align: top;
    margin: 0 .5em;
}

.k-treelist tr.k-footer, .k-treelist tr.k-footer-template {
    background-color: #ededed;
}

.k-filter {
    box-sizing: border-box;
    border-width: 0;
    display: inline-block;
    background-color: transparent;
}

    .k-filter *, .k-filter *::before, .k-filter *::after {
        box-sizing: border-box;
    }

    .k-filter ul {
        padding: 0;
    }

        .k-filter ul li {
            list-style-type: none;
        }

    .k-filter .k-filter-container, .k-filter .k-filter-preview {
        margin-bottom: 30px;
    }

    .k-filter .k-filter-lines, .k-filter .k-filter-item {
        padding-left: 8px;
    }

    .k-filter .k-filter-toolbar {
        display: inline-flex;
        position: relative;
        padding: 4px 0;
    }

        .k-filter .k-filter-toolbar::before {
            content: "";
            position: absolute;
            width: 8px;
            height: 1px;
            top: 50%;
            left: -8px;
        }

        .k-filter .k-filter-toolbar .k-toolbar {
            border-style: solid;
        }

    .k-filter .k-filter-operator .k-dropdown-list, .k-filter .k-filter-operator .k-dropdown, .k-filter .k-filter-operator .k-dropdownlist {
        width: 15em;
    }

    .k-filter .k-filter-item {
        position: relative;
    }

        .k-filter .k-filter-item::before {
            content: "";
            position: absolute;
            width: 1px;
            height: 100%;
            top: -4px;
            left: 0;
        }

    .k-filter .k-filter-lines .k-filter-item:last-child > .k-filter-toolbar::after, .k-filter .k-filter-lines .k-filter-item:last-child > * > .k-filter-toolbar::after {
        content: "";
        position: absolute;
        width: 1px;
        top: -5px;
        bottom: 50%;
        left: -8px;
    }

    .k-filter .k-filter-group-main::before, .k-filter .k-filter-group-main > .k-filter-toolbar::before, .k-filter .k-filter-group-main > .k-filter-toolbar::after, .k-filter .k-filter-group-main > * > .k-filter-toolbar::before, .k-filter .k-filter-group-main > * > .k-filter-toolbar::after, .k-filter .k-filter-lines .k-filter-item:last-child::before {
        display: none;
    }

    .k-rtl .k-filter .k-filter-lines, .k-rtl .k-filter .k-filter-item, .k-filter[dir="rtl"] .k-filter-lines, .k-filter[dir="rtl"] .k-filter-item, [dir="rtl"] .k-filter .k-filter-lines, [dir="rtl"] .k-filter .k-filter-item {
        padding-left: 0;
        padding-right: 8px;
    }

    .k-rtl .k-filter .k-filter-toolbar::before, .k-filter[dir="rtl"] .k-filter-toolbar::before, [dir="rtl"] .k-filter .k-filter-toolbar::before {
        left: auto;
        right: -8px;
    }

    .k-rtl .k-filter .k-filter-item::before, .k-filter[dir="rtl"] .k-filter-item::before, [dir="rtl"] .k-filter .k-filter-item::before {
        left: auto;
        right: 0;
    }

    .k-rtl .k-filter .k-filter-lines .k-filter-item:last-child > .k-filter-toolbar::after, .k-rtl .k-filter .k-filter-lines .k-filter-item:last-child > * > .k-filter-toolbar::after, .k-filter[dir="rtl"] .k-filter-lines .k-filter-item:last-child > .k-filter-toolbar::after, .k-filter[dir="rtl"] .k-filter-lines .k-filter-item:last-child > * > .k-filter-toolbar::after, [dir="rtl"] .k-filter .k-filter-lines .k-filter-item:last-child > .k-filter-toolbar::after, [dir="rtl"] .k-filter .k-filter-lines .k-filter-item:last-child > * > .k-filter-toolbar::after {
        left: auto;
        right: -8px;
    }

.k-filter {
    color: #424242;
}

    .k-filter .k-filter-preview-field {
        color: var(--themecolor);
    }

    .k-filter .k-filter-preview-operator {
        color: #666;
    }

    .k-filter .k-filter-item::before, .k-filter .k-filter-toolbar::before, .k-filter .k-filter-lines .k-filter-item:last-child > .k-filter-toolbar::after, .k-filter .k-filter-lines .k-filter-item:last-child > * > .k-filter-toolbar::after {
        background-color: rgba(0, 0, 0, 0.08);
    }

    .k-filter .k-toolbar:focus, .k-filter .k-toolbar.k-focus {
        box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
    }

.k-filemanager {
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4285714286;
    display: flex;
    flex-flow: column nowrap;
}

.k-filemanager-header {
    border-color: inherit;
}

.k-filemanager-toolbar {
    border-width: 0;
    border-bottom-width: 1px;
    border-color: inherit;
    flex-shrink: 0;
}

.k-filemanager-content-container {
    border-color: inherit;
    box-sizing: border-box;
    flex: 1 1 0%;
    display: flex;
    flex-flow: row nowrap;
    align-items: stretch;
    overflow: hidden;
}

.k-filemanager-navigation {
    padding: 16px 16px;
    width: 20%;
    border-width: 0;
    border-right-width: 1px;
    border-style: solid;
    border-color: inherit;
    box-sizing: border-box;
    flex-shrink: 0;
    overflow: auto;
}

.k-filemanager-treeview {
    overflow: visible;
}

.k-filemanager-content {
    border-color: inherit;
    flex: 1 1 0%;
    display: flex;
    flex-flow: column nowrap;
    align-items: stretch;
    overflow: hidden;
}

.k-filemanager-view {
    overflow: auto;
}

.k-filemanager-breadcrumb {
    border-width: 0;
    border-bottom-width: 1px;
    padding: 8px 8px;
    flex-shrink: 0;
}

.k-filemanager-listview {
    border-width: 0;
    flex: 1 1 0%
}

    .k-filemanager-listview .k-listview-item {
        padding: 16px 16px;
        width: 120px;
        height: 120px;
        text-align: center;
    }

    .k-filemanager-listview .k-file-preview {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .k-filemanager-listview .k-file-icon {
        font-size: 48px;
    }

    .k-filemanager-listview .k-file-name {
        margin-top: 8px;
        display: block;
        text-align: center;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .k-filemanager-listview .k-file-edit-input input {
        width: 100%
    }

.k-filemanager-grid {
    border-width: 0;
    flex: 1 1 0%
}

    .k-filemanager-grid .k-file-preview {
        margin-right: 4px;
        display: inline-flex;
        flex-direction: row;
        vertical-align: middle;
    }

    .k-filemanager-grid .k-file-name {
        display: inline-flex;
        flex-direction: row;
        vertical-align: middle;
    }

.k-filemanager-preview {
    padding: 48px 16px 16px;
    width: 20%;
    min-height: 304px;
    border-width: 0;
    border-left-width: 1px;
    border-style: solid;
    border-color: inherit;
    box-sizing: border-box;
    text-align: center;
    overflow-y: auto;
    flex-shrink: 0;
}

    .k-filemanager-preview .k-file-preview {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .k-filemanager-preview .k-file-icon {
        font-size: 96px;
    }

    .k-filemanager-preview .k-file-name {
        margin-top: 16px;
        display: block;
    }

    .k-filemanager-preview .k-single-file-selected {
        font-weight: bold;
    }

    .k-filemanager-preview .k-multiple-files-selected {
        font-weight: bold;
    }

    .k-filemanager-preview .k-file-meta {
        margin: 16px 0 0;
        box-sizing: border-box;
        text-align: start;
        display: flex;
        flex-flow: row wrap;
        grid-column-gap: 4px;
    }

    .k-filemanager-preview .k-file-meta-label {
        display: inline-block;
    }

    .k-filemanager-preview .k-file-meta-value {
        margin: 0;
    }

    .k-filemanager-preview .k-file-type {
        text-transform: capitalize;
    }

    .k-filemanager-preview .k-line-break {
        margin: 16px 0 0;
        width: 100%;
        flex: 1 1 100%;
        flex-flow: row nowrap;
    }

.k-filemanager .k-splitbar {
    flex-shrink: 0;
    display: inline-flex;
    position: relative;
    border-width: 0 1px;
    border-style: solid;
    border-color: inherit;
}

.k-filemanager-upload-dialog .k-upload-files {
    max-height: 200px;
    overflow-y: auto;
}

.k-filemanager-drag-hint {
    display: flex;
    flex-direction: row;
    align-items: center;
}

    .k-filemanager-drag-hint .k-icon {
        margin-right: 4px;
    }

.k-filemanager {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

.k-filemanager-breadcrumb {
    background-color: #fafafa;
}

.k-filemanager-listview .k-listview-item .k-file-icon {
    color: #7e7e7e;
}

.k-filemanager-listview .k-listview-item.k-selected .k-file-icon {
    border-color: rgba(0, 0, 0, 0);
    color: inherit;
    background-color: rgba(0, 0, 0, 0);
}

.k-filemanager-preview .k-file-icon {
    color: #7e7e7e;
}

.k-taskboard {
    box-sizing: border-box;
    font-size: 14px;
    font-family: inherit;
    line-height: 1.4285714286;
    display: flex;
    flex-direction: column;
    position: relative;
}

    .k-taskboard *, .k-taskboard *::before, .k-taskboard *::after {
        box-sizing: border-box;
    }

.k-taskboard-toolbar {
    padding: 16px 16px;
    border-width: 0;
    box-shadow: none;
    background: none;
}

.k-taskboard-content {
    padding: 0 16px 16px;
    display: flex;
    position: relative;
    flex: 1 1 auto;
    overflow-x: auto;
}

.k-taskboard-columns-container {
    outline: none;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    gap: 16px;
    overflow-x: visible;
}

.k-taskboard-column {
    width: 320px;
    border-width: 1px;
    border-radius: 4px;
    border-style: solid;
    outline: none;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    overflow: hidden;
}

.k-taskboard-column-header {
    padding: 8px 8px;
    font-weight: 500;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
}

.k-taskboard-column-header-actions {
    display: inline-flex;
    flex-shrink: 0;
    align-self: flex-start;
    gap: 8px;
}

.k-taskboard-column-cards-container {
    margin-bottom: 8px;
    padding: 0px 8px;
    outline: none;
    overflow: auto;
    flex: 1 1 auto;
}

.k-taskboard-column-cards {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px 0;
}

.k-taskboard-column-new .k-taskboard-column-header, .k-taskboard-column-edit .k-taskboard-column-header {
    font-weight: inherit;
}

.k-taskboard-column-new .k-taskboard-column-header-text, .k-taskboard-column-edit .k-taskboard-column-header-text {
    flex: 1 1 100%
}

.k-taskboard-pane {
    width: 320px;
    border-width: 1px;
    border-style: solid;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 2;
}

.k-taskboard-pane-header {
    padding: 12px 16px;
    font-weight: 500;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.k-taskboard-pane-header-text {
    word-break: normal;
    overflow-wrap: anywhere;
}

.k-taskboard-pane-header-actions {
    flex-shrink: 0;
    align-self: flex-start;
}

.k-taskboard-pane-content {
    padding: 0px 16px;
    overflow: auto;
    flex: 1 1 auto;
}

.k-taskboard-pane-actions {
    padding: 12px 16px;
}

.k-taskboard-pane-start {
    right: auto;
    left: 0;
}

.k-taskboard-card {
    border-radius: 4px;
    border-width: 1px;
}

    .k-taskboard-card.k-taskboard-card-category {
        border-left-width: 4px;
    }

    .k-taskboard-card .k-card-header .k-card-body, .k-taskboard-card .k-card-footer {
        padding: 16px 16px;
    }

    .k-taskboard-card .k-card-header {
        align-items: center;
    }

    .k-taskboard-card .k-card-title {
        font-size: inherit;
        font-weight: inherit;
        word-break: normal;
        overflow-wrap: anywhere;
    }

        .k-taskboard-card .k-card-title:focus, .k-taskboard-card .k-card-title.k-focus, .k-taskboard-card .k-card-title:hover, .k-taskboard-card .k-card-title.k-hover {
            text-decoration: underline;
        }

    .k-taskboard-card .k-card-header-actions {
        align-self: flex-start;
    }

.k-taskboard-drag-placeholder {
    border-radius: 4px;
    border-width: 1px;
    border-style: solid;
    position: relative;
}

.k-rtl .k-taskboard-card.k-taskboard-card-category, .k-taskboard-card.k-taskboard-card-category.k-rtl, [dir="rtl"] .k-taskboard-card.k-taskboard-card-category, .k-taskboard-card.k-taskboard-card-category[dir="rtl"] {
    border-left-width: 1px;
    border-right-width: 4px;
}

.k-taskboard-column {
    border-color: rgba(0, 0, 0, 0);
    background-color: #fafafa;
}

    .k-taskboard-column:focus, .k-taskboard-column.k-focus {
        border-color: rgba(0, 0, 0, 0.264);
    }

.k-taskboard-column-header {
    color: #424242;
}

.k-taskboard-pane {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

.k-taskboard-pane-header {
    color: #424242;
}

.k-taskboard-card {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

    .k-taskboard-card .k-card-title {
        color: var(--themecolor);
    }

        .k-taskboard-card .k-card-title:focus, .k-taskboard-card .k-card-title.k-focus {
            color: #3a56b5;
        }

        .k-taskboard-card .k-card-title:hover, .k-taskboard-card .k-card-title.k-hover {
            color: #3a56b5;
        }

    .k-taskboard-card:focus, .k-taskboard-card.k-focus {
        box-shadow: none;
        border-color: rgba(0, 0, 0, 0.2456);
    }

    .k-taskboard-card:hover, .k-taskboard-card.k-hover {
        border-color: rgba(0, 0, 0, 0.172);
    }

    .k-taskboard-card.k-selected {
        border-color: #a1b2eb;
        box-shadow: none;
    }

    .k-taskboard-card.k-disabled {
        outline: none;
        cursor: default;
        opacity: .6;
        filter: grayscale(0.1);
        pointer-events: none;
        box-shadow: none;
    }

.k-taskboard-drag-placeholder {
    border-color: var(--kendo-border-color);
    background-color: rgba(255, 255, 255, 0.2);
}

.k-editor {
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4285714286;
    display: flex;
    flex-flow: column nowrap;
    position: relative;
    z-index: 1;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-editor.k-readonly .k-editor-content {
        pointer-events: auto;
    }

        .k-editor.k-readonly .k-editor-content.k-focus {
            outline-width: 1px;
            outline-style: dashed;
        }

.k-editor-inline {
    border-radius: 4px;
    padding: 2px 4px;
    border: 1px solid transparent;
    word-wrap: break-word;
    overflow: auto;
    background: none;
}

.k-editor-resizable {
    resize: both;
    overflow: auto;
}

.k-editor-resize-handles-wrapper {
    position: absolute;
    visibility: hidden;
}

.k-editor-resize-handle {
    width: 8px;
    height: 8px;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    position: absolute;
    visibility: visible;
    z-index: 100;
}

    .k-editor-resize-handle.northwest {
        top: 0;
        left: 0;
        transform: translate(-50%, -50%);
        cursor: nw-resize;
    }

    .k-editor-resize-handle.north {
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        cursor: n-resize;
    }

    .k-editor-resize-handle.northeast {
        top: 0;
        right: 0;
        transform: translate(50%, -50%);
        cursor: ne-resize;
    }

    .k-editor-resize-handle.southwest {
        left: 0;
        bottom: 0;
        transform: translate(-50%, 50%);
        cursor: sw-resize;
    }

    .k-editor-resize-handle.south {
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 50%);
        cursor: s-resize;
    }

    .k-editor-resize-handle.southeast {
        right: 0;
        bottom: 0;
        transform: translate(50%, 50%);
        cursor: se-resize;
    }

    .k-editor-resize-handle.west {
        top: 50%;
        left: 0;
        transform: translate(-50%, -50%);
        cursor: w-resize;
    }

    .k-editor-resize-handle.east {
        top: 50%;
        right: 0;
        transform: translate(50%, -50%);
        cursor: e-resize;
    }

.ProseMirror-selectednode {
    outline-width: 2px;
    outline-style: solid;
}

.ProseMirror-hideselection {
    caret-color: transparent;
}

    .ProseMirror-hideselection *::-moz-selection {
        background: transparent;
    }

    .ProseMirror-hideselection *::selection, .ProseMirror-hideselection *::-moz-selection {
        background: transparent;
    }

.k-editor-toolbar {
    border-width: 0 0 1px 0;
    flex-shrink: 0;
}

    .k-editor-toolbar .k-editor-export .k-icon {
        margin-right: .25em;
    }

    .k-editor-toolbar .k-editor-export .k-icon, .k-editor-toolbar .k-editor-export .k-export-tool-text {
        vertical-align: middle;
    }

.k-editor-content {
    flex: 1 1 auto;
    overflow-y: auto;
}

    .k-editor-content > .k-iframe {
        width: 100%;
        height: 100%;
        border-width: 0;
        display: block;
    }

    .k-editor-content > .ProseMirror {
        padding: 8px;
        width: 100%;
        height: 100%;
        position: relative;
        box-sizing: border-box;
        outline: none;
        white-space: pre-wrap;
        overflow: auto;
    }

        .k-editor-content > .ProseMirror table {
            white-space: pre-wrap;
        }

        .k-editor-content > .ProseMirror .k-placeholder::before {
            content: attr(data-placeholder);
            height: 0;
            color: #666;
            float: left;
            opacity: 1;
            cursor: text;
            -webkit-user-select: none;
            -moz-user-select: none;
            user-select: none;
        }

        .k-editor-content > .ProseMirror[contenteditable="false"] {
            cursor: unset !important;
        }

            .k-editor-content > .ProseMirror[contenteditable="false"] .k-editor-resize-handles-wrapper, .k-editor-content > .ProseMirror[contenteditable="false"] .k-editor-resize-handle, .k-editor-content > .ProseMirror[contenteditable="false"] .row-resize-handle, .k-editor-content > .ProseMirror[contenteditable="false"] .column-resize-handle {
                display: none;
            }

            .k-editor-content > .ProseMirror[contenteditable="false"] img, .k-editor-content > .ProseMirror[contenteditable="false"] table {
                pointer-events: none;
            }

            .k-editor-content > .ProseMirror[contenteditable="false"] .ProseMirror-selectednode {
                outline: none;
            }

    .k-editor-content p {
        margin: 0 0 1rem;
    }

    .k-editor-content td p, .k-editor-content th p, .k-editor-content li p {
        margin: 0;
    }

    .k-editor-content table {
        margin: 0;
        border-collapse: collapse;
        table-layout: fixed;
        width: 100%;
        overflow: hidden;
    }

    .k-editor-content td, .k-editor-content th {
        min-width: 1em;
        border: 1px solid;
        padding: 3px 5px;
        vertical-align: top;
        box-sizing: border-box;
        position: relative;
    }

    .k-editor-content th {
        font-weight: bold;
        text-align: left;
    }

    .k-editor-content .selectedCell::after {
        z-index: 2;
        position: absolute;
        content: "";
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        pointer-events: none;
    }

.k-edit-form-content {
    flex: 1 1 auto;
    overflow: auto;
    margin: -16px -16px;
    padding: 16px 16px;
}

.k-ct-popup {
    box-sizing: border-box;
    width: 190px;
    padding: 5px;
}

    .k-ct-popup .k-button {
        width: 100%
    }

    .k-ct-popup .k-ct-cell {
        margin: 1px;
        width: 20px;
        height: 20px;
        box-sizing: border-box;
        border: 1px solid;
        border-color: inherit;
        display: inline-block;
        vertical-align: top;
        overflow: hidden;
        opacity: .7;
        pointer-events: all;
    }

.k-editor .k-resize-handle {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 13px 13px;
    border-color: transparent;
    border-bottom-color: inherit;
    cursor: se-resize;
}

    .k-editor .k-resize-handle .k-i-arrow-45-down-right, .k-editor .k-resize-handle .k-i-caret-br {
        display: none;
    }

.k-editor-find-replace .k-content {
    position: relative;
}

.k-editor-find-replace .k-actions, .k-editor-find-replace .k-edit-buttons, .k-editor-find-replace .k-action-buttons, .k-editor-find-replace .k-columnmenu-actions, .k-editor-find-replace .k-form-buttons {
    padding: 0;
}

.k-editor-find-replace .k-search-options {
    display: flex;
    flex-direction: column;
    padding: 10px 0 40px;
}

.k-editor-find-replace .k-matches-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.k-textarea.k-editor-textarea {
    width: 100%;
    height: 100%;
    resize: none;
}

.k-filebrowser {
    max-width: 100%
}

    .k-filebrowser .k-floatwrap {
        display: flex;
    }

        .k-filebrowser .k-floatwrap::after {
            display: none;
        }

    .k-filebrowser .k-breadcrumbs {
        flex: 1;
    }

    .k-filebrowser .k-search-wrap {
        margin: 0 0 0 16px;
        width: 150px;
        display: flex;
        align-items: center;
    }

        .k-filebrowser .k-search-wrap .k-input {
            flex: 1;
            width: 100px;
        }

        .k-filebrowser .k-search-wrap .k-icon {
            margin: 0;
            position: static;
        }

    .k-filebrowser .k-filebrowser-toolbar {
        margin: 16px 0 0 0;
    }

    .k-filebrowser .k-upload {
        padding: 0;
        border-width: 0;
        background: none;
    }

        .k-filebrowser .k-upload .k-upload-button {
            margin: 0;
        }

        .k-filebrowser .k-upload .k-upload-status {
            display: none;
        }

    .k-filebrowser .k-upload-files {
        display: none;
    }

    .k-filebrowser .k-tiles {
        display: flex;
        flex-flow: row wrap;
        height: 390px;
        max-height: 50vh;
        margin: 0 0 16px 0;
        padding: 4px 8px;
        border-top-width: 0;
        overflow: auto;
    }

    .k-filebrowser .k-tile {
        width: 33%;
        height: 90px;
        padding: 4px 8px;
        box-sizing: border-box;
        white-space: nowrap;
        overflow: hidden;
        cursor: pointer;
        border-radius: 4px;
    }

        .k-filebrowser .k-tile .k-i-file, .k-filebrowser .k-tile .k-i-folder {
            font-size: 4em;
        }

        .k-filebrowser .k-tile input {
            width: 100px;
        }

        .k-filebrowser .k-tile strong {
            display: block;
            font-weight: 400;
            overflow: hidden;
            text-overflow: ellipsis;
        }

    .k-filebrowser .k-tile-empty {
        display: block;
        margin: auto;
    }

        .k-filebrowser .k-tile-empty.k-selected {
            color: inherit;
            border-width: 0;
            background-image: none;
            background-color: transparent;
        }

        .k-filebrowser .k-tile-empty strong {
            opacity: .5;
            font-size: 3em;
            font-weight: 400;
        }

    .k-filebrowser .k-thumb {
        float: left;
        margin-right: 4px;
    }

    .k-filebrowser .k-breadcrumbs-wrap {
        position: absolute;
        left: 8px;
        top: 4px;
    }

        .k-filebrowser .k-breadcrumbs-wrap .k-icon {
            position: static;
            margin-top: 0;
        }

.k-editor-table-wizard-window .k-tabstrip-wrapper {
    display: flex;
    flex: 1 1 auto;
    overflow: auto;
}

    .k-editor-table-wizard-window .k-tabstrip-wrapper .k-tabstrip.k-root-tabs {
        flex: 1 1 auto;
        margin-bottom: 0;
    }

.k-editor-table-wizard-window .k-numerictextbox {
    width: 10em;
}

    .k-editor-table-wizard-window .k-numerictextbox + .k-dropdown-list, .k-editor-table-wizard-window .k-numerictextbox + .k-dropdown, .k-editor-table-wizard-window .k-numerictextbox + .k-dropdownlist {
        width: 5em;
    }

    .k-editor-table-wizard-window .k-numerictextbox + .k-color-picker, .k-editor-table-wizard-window .k-numerictextbox + .k-colorpicker, .k-editor-table-wizard-window .k-numerictextbox + .k-dropdown-list, .k-editor-table-wizard-window .k-numerictextbox + .k-dropdown, .k-editor-table-wizard-window .k-numerictextbox + .k-dropdownlist {
        margin-left: 8px;
    }

.k-editor-table-wizard-window .k-color-picker, .k-editor-table-wizard-window .k-colorpicker {
    vertical-align: middle;
}

.k-editor-table-wizard-window .k-edit-field > .k-checkbox {
    position: relative;
}

.k-editor-inline .k-table {
    width: 100%;
    border-spacing: 0;
    margin: 0 0 1em;
}

    .k-editor-inline .k-table, .k-editor-inline .k-table td {
        outline: 0;
        border-width: 1px;
        border-style: dotted;
    }

        .k-editor-inline .k-table td {
            min-width: 1px;
            padding: 2px 4px;
        }

.k-editor-inline .k-element-resize-handle-wrapper {
    position: absolute;
    width: 5px;
    height: 5px;
    border-width: 1px;
    border-style: solid;
    z-index: 100;
}

    .k-editor-inline .k-element-resize-handle-wrapper .k-element-resize-handle {
        width: 100%;
        height: 100%
    }

        .k-editor-inline .k-element-resize-handle-wrapper .k-element-resize-handle.k-resize-east {
            cursor: e-resize;
        }

        .k-editor-inline .k-element-resize-handle-wrapper .k-element-resize-handle.k-resize-north {
            cursor: n-resize;
        }

        .k-editor-inline .k-element-resize-handle-wrapper .k-element-resize-handle.k-resize-northeast {
            cursor: ne-resize;
        }

        .k-editor-inline .k-element-resize-handle-wrapper .k-element-resize-handle.k-resize-northwest {
            cursor: nw-resize;
        }

        .k-editor-inline .k-element-resize-handle-wrapper .k-element-resize-handle.k-resize-south {
            cursor: s-resize;
        }

        .k-editor-inline .k-element-resize-handle-wrapper .k-element-resize-handle.k-resize-southeast {
            cursor: se-resize;
        }

        .k-editor-inline .k-element-resize-handle-wrapper .k-element-resize-handle.k-resize-southwest {
            cursor: sw-resize;
        }

        .k-editor-inline .k-element-resize-handle-wrapper .k-element-resize-handle.k-resize-west {
            cursor: w-resize;
        }

.k-editor-inline .k-column-resize-handle-wrapper {
    position: absolute;
    height: 10px;
    width: 10px;
    cursor: col-resize;
    z-index: 2;
}

    .k-editor-inline .k-column-resize-handle-wrapper .k-column-resize-handle {
        width: 100%;
        height: 100%
    }

        .k-editor-inline .k-column-resize-handle-wrapper .k-column-resize-handle .k-column-resize-marker {
            width: 2px;
            height: 100%;
            margin: 0 auto;
            display: none;
            opacity: .8;
        }

.k-editor-inline .k-row-resize-handle-wrapper {
    position: absolute;
    z-index: 2;
    cursor: row-resize;
    width: 10px;
    height: 10px;
}

    .k-editor-inline .k-row-resize-handle-wrapper .k-row-resize-handle {
        display: table;
        width: 100%;
        height: 100%
    }

    .k-editor-inline .k-row-resize-handle-wrapper .k-row-resize-marker-wrapper {
        display: table-cell;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        vertical-align: middle;
    }

    .k-editor-inline .k-row-resize-handle-wrapper .k-row-resize-marker {
        display: none;
        margin: 0;
        padding: 0;
        width: 100%;
        height: 2px;
        opacity: .8;
    }

.k-editor {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

    .k-editor.k-readonly .k-editor-content.k-focus {
        outline-color: #424242;
    }

.k-editor-inline .k-table, .k-editor-inline .k-table td {
    border-color: #cccccc;
}

.k-editor-inline .k-element-resize-handle-wrapper {
    background-color: #ffffff;
    border-color: #000000;
}

.k-editor-inline .k-column-resize-handle-wrapper .k-column-resize-handle .k-column-resize-marker {
    background-color: #00b0ff;
}

.k-editor-inline .k-row-resize-handle-wrapper .k-row-resize-marker {
    background-color: #00b0ff;
}

.k-editor-inline:hover, .k-editor-inline.k-hover, .k-editor-inline.k-active {
    border-color: var(--kendo-border-color);
}

.k-editor-resize-handle {
    background-color: #fff;
    border-color: #000;
}

.ProseMirror-selectednode {
    outline-color: #8cf;
}

.k-ct-popup .k-selected {
    border-color: var(--kendo-border-color);
    color: #fff;
    background-color: var(--themecolor);
    background-image: none;
}

.k-editor-content::-moz-selection {
    color: #fff;
    background-color: var(--themecolor);
}

.k-editor-content .k-text-selected, .k-editor-content::selection {
    color: #fff;
    background-color: var(--themecolor);
}

.k-editor-content .k-text-highlighted {
    background-color: #dae0f7;
}

.k-editor-content td, .k-editor-content th {
    border-color: #dddddd;
}

.k-editor-content .selectedCell::after {
    background-color: rgba(200, 200, 255, 0.4);
}

.k-imageeditor {
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4285714286;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-imageeditor *, .k-imageeditor *::before, .k-imageeditor *::after {
        box-sizing: border-box;
    }

.k-imageeditor-toolbar {
    border-width: 0;
    border-bottom-width: 1px;
}

.k-imageeditor-content {
    border-width: 0;
    border-style: solid;
    border-color: inherit;
    display: flex;
    flex-flow: row nowrap;
}

.k-imageeditor-canvas-container {
    flex: 1 1 100%;
    display: flex;
    flex-flow: row nowrap;
    overflow: auto;
}

.k-imageeditor-canvas {
    margin: auto;
    display: flex;
    flex-direction: column;
    position: relative;
}

.k-imageeditor-action-pane {
    padding: 32px 16px;
    width: 241px;
    border-width: 0;
    border-left-width: 1px;
    border-style: solid;
    border-color: inherit;
    box-sizing: border-box;
    flex: none;
    overflow-y: auto;
}

    .k-imageeditor-action-pane .k-input-inner, .k-imageeditor-action-pane .k-input-value-text {
        text-overflow: clip;
    }

.k-imageeditor-crop-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.k-imageeditor-crop {
    width: 100%;
    height: 100%;
    border-width: 1px;
    border-style: dashed;
    box-sizing: border-box;
    position: absolute;
}

    .k-imageeditor-crop .k-resize-handle {
        margin: 1px 1px;
        border-style: solid;
        border-width: 0 2px 2px 0;
    }

    .k-imageeditor-crop .k-resize-sw, .k-imageeditor-crop .k-resize-se, .k-imageeditor-crop .k-resize-nw, .k-imageeditor-crop .k-resize-ne {
        width: 15px;
        height: 15px;
    }

    .k-imageeditor-crop .k-resize-n, .k-imageeditor-crop .k-resize-s {
        left: calc(50% - 7.5px);
        width: 15px;
        height: 0;
    }

    .k-imageeditor-crop .k-resize-w, .k-imageeditor-crop .k-resize-e {
        top: calc(50% - 7.5px);
        width: 0;
        height: 15px;
    }

    .k-imageeditor-crop .k-resize-ne {
        transform: rotate(-90deg);
    }

    .k-imageeditor-crop .k-resize-nw {
        transform: rotate(-180deg);
    }

    .k-imageeditor-crop .k-resize-sw {
        transform: rotate(90deg);
    }

    .k-imageeditor-crop .k-resize-n {
        top: 0;
    }

    .k-imageeditor-crop .k-resize-s {
        bottom: 0;
    }

    .k-imageeditor-crop .k-resize-w {
        left: 0;
    }

    .k-imageeditor-crop .k-resize-e {
        right: 0;
    }

.k-imageeditor {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

.k-imageeditor-content {
    background-color: #c6c6c6;
}

.k-imageeditor-canvas {
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.09) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.09) 75%, rgba(0, 0, 0, 0.09)), linear-gradient(45deg, rgba(0, 0, 0, 0.09) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.09) 75%, rgba(0, 0, 0, 0.09)), #fff;
    background-repeat: repeat, repeat;
    background-position: 0px 0px, 5px 5px;
    transform-origin: 0 0 0;
    background-origin: padding-box, padding-box;
    background-size: 10px 10px, 10px 10px;
    box-shadow: none;
    text-shadow: none;
    transition: none;
    transform: scaleX(1) scaleY(1) scaleZ(1);
}

.k-imageeditor-action-pane {
    background-color: #fafafa;
}

.k-imageeditor-crop {
    border-color: #fff;
}

.k-imageeditor-crop-overlay {
    background-color: rgba(0, 0, 0, 0.3);
}

.k-gantt {
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4285714286;
    display: flex;
    flex-flow: column nowrap;
    position: relative;
    white-space: nowrap;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-gantt .k-table-td {
        white-space: nowrap;
    }

    .k-gantt td {
        overflow: hidden;
        white-space: nowrap;
        vertical-align: top;
    }

    .k-gantt .k-grid-header tr {
        height: calc(1.4285714286em + 17px);
    }

    .k-gantt .k-grid-header .k-header {
        position: static;
    }

    .k-gantt .k-treelist .k-grid-header .k-header {
        position: relative;
    }

    .k-gantt .k-grid-content tr {
        height: calc(1.4285714286em + 16px);
    }

    .k-gantt.k-gantt-planned .k-grid-content tr {
        height: calc(2.4285714286em + 16px);
    }

    .k-gantt .k-gantt-layout {
        white-space: normal;
        vertical-align: top;
        display: inline-block;
    }

    .k-gantt .k-splitbar {
        position: relative;
        display: inline-flex;
    }

    .k-gantt .k-treelist-scrollable {
        width: 100%;
        border-width: 0;
        overflow: auto;
    }

        .k-gantt .k-treelist-scrollable .k-grid-header .k-header {
            position: sticky;
        }

        .k-gantt .k-treelist-scrollable .k-grid-header th, .k-gantt .k-treelist-scrollable .k-grid-content-sticky {
            z-index: 4;
        }

            .k-gantt .k-treelist-scrollable .k-grid-header th.k-grid-header-sticky {
                z-index: 5;
            }

        .k-gantt .k-treelist-scrollable .k-grid-header tr:first-child th:last-child, .k-gantt .k-treelist-scrollable tbody td:last-child {
            padding: 0;
            vertical-align: top;
        }

        .k-gantt .k-treelist-scrollable .k-grid-header th:last-child .k-header {
            padding: 8px 12px;
            border-width: 0 0 1px 1px;
            white-space: nowrap;
        }

        .k-gantt .k-treelist-scrollable tr.k-selected > td:last-child {
            background: transparent;
        }

        .k-gantt .k-treelist-scrollable .k-task {
            display: inline-flex;
            flex-flow: row nowrap;
            white-space: nowrap;
            z-index: 3;
        }

            .k-gantt .k-treelist-scrollable .k-task:hover .k-task-start, .k-gantt .k-treelist-scrollable .k-task:hover .k-task-end {
                display: block;
            }

            .k-gantt .k-treelist-scrollable .k-task:hover .k-task-draghandle {
                visibility: visible;
            }

        .k-gantt .k-treelist-scrollable .k-task-content {
            padding: 4px 8px;
            display: block;
            line-height: normal;
            flex: 1 1 auto;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .k-gantt .k-treelist-scrollable .k-task-actions {
            flex-shrink: 0;
        }

        .k-gantt .k-treelist-scrollable .k-task-milestone {
            border: 0;
            transform: none;
            background: none;
        }

            .k-gantt .k-treelist-scrollable .k-task-milestone .k-task-milestone-content {
                width: 100%;
                height: 100%;
                border-width: 1px;
                border-style: solid;
                box-sizing: border-box;
                transform: rotate(45deg);
            }

        .k-gantt .k-treelist-scrollable .k-task-summary {
            height: 15px;
            -webkit-clip-path: polygon(-20px 0, calc(100% + 20px) 0, calc(100% + 20px) 100%, 100% 100%, calc(100% - 8px) calc(100% - 5px), 8px calc(100% - 5px), 0 100%, -20px 100%);
            clip-path: polygon(-20px 0, calc(100% + 20px) 0, calc(100% + 20px) 100%, 100% 100%, calc(100% - 8px) calc(100% - 5px), 8px calc(100% - 5px), 0 100%, -20px 100%);
        }

        .k-gantt .k-treelist-scrollable .k-task-summary-complete {
            width: 100%;
            height: 15px;
        }

        .k-gantt .k-treelist-scrollable .k-task-start {
            transform: translateX(-140%) translateY(-50%);
        }

        .k-gantt .k-treelist-scrollable .k-task-end {
            transform: translateX(140%) translateY(-50%);
        }

        .k-gantt .k-treelist-scrollable .k-master-row:hover .k-task-dot {
            display: block;
        }

        .k-gantt .k-treelist-scrollable .k-gantt-columns {
            background: transparent;
            pointer-events: none;
            table-layout: fixed;
        }

    .k-gantt .k-gantt-dependencies-svg {
        position: absolute;
        top: 0;
        left: 0;
        overflow: visible;
        pointer-events: none;
        z-index: 2;
    }

        .k-gantt .k-gantt-dependencies-svg polyline {
            stroke-width: 2px;
        }

.k-gantt-header {
    border-width: 0 0 1px;
    flex-shrink: 0;
    z-index: 6;
}

.k-gantt-footer {
    border-width: 1px 0 0;
    flex-shrink: 0;
}

.k-gantt-toggle {
    display: none;
}

.k-gantt-views-wrapper {
    margin-left: auto;
}

    .k-gantt-views-wrapper .k-views-dropdown {
        width: auto;
        font-size: inherit;
        display: none;
        cursor: pointer;
    }

@media (max-width: 480px) {
    .k-gantt-toolbar .k-gantt-toggle {
        display: inline-flex;
    }

    .k-gantt-toolbar .k-gantt-pdf, .k-gantt-toolbar .k-gantt-create {
        padding: 4px;
        width: calc(1.4285714286em + 10px);
        height: calc(1.4285714286em + 10px);
    }

        .k-gantt-toolbar .k-gantt-pdf .k-button-text, .k-gantt-toolbar .k-gantt-create .k-button-text {
            display: none;
        }
}

@media (max-width: 1024px) {
    .k-gantt-views-wrapper .k-gantt-views {
        display: none;
    }

    .k-gantt-views-wrapper .k-views-dropdown {
        display: flex;
    }
}

.k-gantt-content {
    display: flex;
    flex-flow: row nowrap;
    align-items: stretch;
    flex: 1 1 auto;
    overflow: hidden;
}

.k-gantt-treelist .k-treelist {
    height: 100%;
    border-width: 0;
}

.k-gantt-treelist .k-grid-header, .k-gantt-treelist .k-grid-footer {
    padding: 0 !important;
}

    .k-gantt-treelist .k-grid-header tr {
        height: calc(2.8571428572em + 34px);
        vertical-align: bottom;
    }

.k-gantt-treelist .k-grid-content {
    overflow: hidden;
    overflow-x: scroll;
}

    .k-gantt-treelist .k-grid-content td {
        vertical-align: middle;
    }

.k-gantt-treelist .k-gantt-treelist-nested-columns .k-grid-header tr {
    height: calc(1.4285714286em + 17px);
}

.k-gantt-treelist.k-gantt-treelist-scrollable .k-grid-content {
    overflow: scroll;
}

.k-gantt-timeline .k-timeline {
    height: 100%;
    border-width: 0;
    display: flex;
}

.k-gantt-timeline .k-grid-content {
    overflow-x: scroll;
}

.k-gantt-timeline .k-header {
    padding: 8px 12px;
    border-width: 0 0 1px 1px;
    white-space: nowrap;
}

.k-gantt-tables {
    position: relative;
    border-color: inherit;
}

.k-gantt-rows, .k-gantt-columns {
    border-color: inherit;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
}

.k-gantt-dependencies {
    opacity: .7;
    position: absolute;
    top: 0;
    left: 0;
}

    .k-gantt-dependencies .k-arrow-e, .k-gantt-dependencies .k-arrow-w {
        width: 0;
        height: 0;
        border: 5px solid transparent;
        position: absolute;
        top: -4px;
    }

    .k-gantt-dependencies .k-arrow-e {
        border-left-color: currentColor;
        right: -6px;
    }

    .k-gantt-dependencies .k-arrow-w {
        border-right-color: currentColor;
        left: -6px;
    }

.k-gantt-line {
    background-color: currentColor;
    border-color: currentColor;
    position: absolute;
}

    .k-gantt-line.k-selected {
        z-index: 3;
    }

.k-gantt-line-h {
    height: 2px;
}

.k-gantt-line-v {
    width: 2px;
}

.k-gantt-dependency-hint {
    z-index: 4;
}

.k-gantt-tasks {
    position: relative;
}

    .k-gantt-tasks td, .k-gantt-tasks .k-table-td {
        padding: 0;
        border-width: 0;
        position: relative;
        vertical-align: middle;
    }

        .k-gantt-tasks td::after {
            content: "\200b"
        }

.k-task-wrap {
    margin: 0 -21px;
    padding: 5px 21px;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    z-index: 2;
}

    .k-task-wrap.k-drag-hint {
        position: absolute;
    }

.k-task {
    position: relative;
    flex: 1 1 auto;
}

.k-task-dot {
    width: 16px;
    height: 16px;
    line-height: 1;
    cursor: pointer;
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.k-task-wrap:hover .k-task-dot, .k-task-wrap.k-origin .k-task-dot {
    display: block;
}

.k-task-dot::before {
    content: "";
    width: 8px;
    height: 8px;
    border-width: 0;
    border-style: solid;
    border-radius: 100%;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.k-task-dot:hover::before, .k-task-dot.k-hover::before {
    border-width: 1px;
}

.k-task-start {
    left: 0;
}

.k-task-end {
    right: 0;
}

.k-task-draghandle {
    margin-left: 16px;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-top-width: 0;
    border-bottom-color: inherit;
    position: absolute;
    bottom: 0;
    cursor: e-resize;
    visibility: hidden;
}

.k-task-wrap:hover .k-task-draghandle {
    visibility: visible;
}

.k-milestone-wrap {
    margin: 0 -2em;
}

.k-task-milestone {
    width: 1em;
    height: 1em;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    transform: rotate(45deg);
}

.k-task-summary {
    height: 10px;
    display: inline-block;
    vertical-align: top;
}

.k-task-summary, .k-task-summary-complete {
    background-color: currentColor;
}

    .k-task-summary::before, .k-task-summary::after, .k-task-summary-complete::before, .k-task-summary-complete::after {
        content: "";
        width: 0;
        height: 0;
        border: 8px solid transparent;
        position: absolute;
        top: 0;
        display: none;
    }

    .k-task-summary::before, .k-task-summary-complete::before {
        border-left-color: currentColor;
        left: 0;
    }

    .k-task-summary::after, .k-task-summary-complete::after {
        border-right-color: currentColor;
        right: 0;
    }

.k-task-summary-complete {
    height: 10px;
    position: relative;
    z-index: 2;
}

.k-task-summary-progress {
    height: 15px;
    overflow: hidden;
}

.k-task-single {
    border-radius: 4px;
    border-width: 0px;
    border-style: solid;
    box-sizing: border-box;
    cursor: default;
}

    .k-task-single .k-resize-handle {
        opacity: .5;
        z-index: 2;
        visibility: hidden;
    }

        .k-task-single .k-resize-handle::before {
            position: absolute;
            top: 2px;
            bottom: 2px;
        }

    .k-task-single .k-resize-w {
        left: 0;
    }

        .k-task-single .k-resize-w::before {
            left: 2px;
            border-left-width: 1px;
        }

    .k-task-single .k-resize-e {
        right: 0;
    }

        .k-task-single .k-resize-e::before {
            right: 2px;
            border-left-width: 1px;
        }

    .k-task-single:hover .k-resize-handle, .k-task-single:hover .k-task-actions {
        visibility: visible;
    }

.k-task-complete {
    border-radius: 4px;
    width: 20%;
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
}

.k-task-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    white-space: nowrap;
}

.k-task-template {
    padding: 4px 8px;
    line-height: normal;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.k-task-actions {
    padding: 2px;
    white-space: nowrap;
    display: flex;
    flex-direction: row;
    align-items: center;
    visibility: hidden;
    z-index: 1;
}

    .k-task-actions > .k-link {
        display: inline-flex;
    }

.k-resources-wrap {
    position: absolute;
    display: inline-block;
    z-index: 2;
    margin-left: 20px;
    margin-top: -2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

    .k-resources-wrap .k-resource {
        margin: 0 5px;
    }

.k-task-details {
    padding: 4px 8px;
    white-space: nowrap;
}

    .k-task-details strong {
        font-size: 16px;
        font-weight: normal;
        display: block;
    }

    .k-task-details .k-task-pct {
        font-size: 32px;
    }

    .k-task-details ul {
        line-height: normal;
    }

.k-gantt-planned .k-gantt-dependencies, .k-gantt-planned .k-task-dot, .k-gantt-planned .k-resources-wrap {
    margin-top: .55em;
}

.k-gantt-planned .k-task-wrap {
    flex-direction: column;
    align-items: flex-start;
}

.k-gantt-planned .k-task-inner-wrap {
    display: inline-flex;
}

.k-gantt-planned .k-task-wrap.k-drag-hint {
    top: 0;
}

.k-gantt-planned .k-summary-wrap.k-drag-hint {
    top: .5em;
}

.k-gantt-planned .k-milestone-wrap.k-drag-hint {
    top: .3em;
}

.k-task-planned {
    margin: 0 0 .35em;
    line-height: .75em;
    display: flex;
    align-items: center;
}

    .k-task-planned .k-task-moment {
        border-width: 2px;
        border-radius: 5px;
        border-style: solid;
        height: 6px;
        width: 6px;
    }

    .k-task-planned .k-task-duration {
        height: 2px;
    }

    .k-task-planned .k-task-moment.k-moment-left {
        margin-left: -4px;
    }

    .k-task-planned:hover .k-task-duration {
        height: 3px;
    }

.k-milestone-wrap .k-task-moment {
    margin-left: 3px;
}

.k-planned-tooltip .k-task-content {
    display: block;
}

.k-task-offset-wrap .k-task-content .k-resize-e {
    display: none;
}

.k-task-offset {
    flex-direction: row-reverse;
    display: flex;
}

    .k-task-offset .k-resize-handle {
        right: 0;
        z-index: 2;
        visibility: hidden;
        margin-right: 1.4em;
    }

        .k-task-offset .k-resize-handle::before {
            border-left-width: 1px;
            position: absolute;
            top: 50%;
            bottom: .5em;
            margin-right: 2px;
        }

    .k-task-single:hover + .k-task-offset .k-task-actions, .k-task-offset:hover .k-task-actions, .k-task-single:hover + .k-task-offset .k-resize-handle, .k-task-offset:hover .k-resize-handle {
        visibility: visible;
    }

.k-gantt-tooltip-validation {
    max-width: 200px;
    display: block;
}

    .k-gantt-tooltip-validation::before {
        content: "";
        width: 4px;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

.k-gantt-tooltip-validation-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.k-gantt-tooltip-validation-label {
    display: inline-flex;
    min-width: 50px;
}

.k-gantt-tooltip-validation-value {
    font-weight: 700;
}

.k-gantt-tooltip-validation-label, .k-gantt-tooltip-validation-value {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.k-pdf-export-shadow .k-gantt {
    float: left;
}

.k-pdf-export-shadow .k-gantt, .k-pdf-export-shadow .k-gantt-timeline, .k-pdf-export-shadow .k-gantt-dependencies {
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
}

.k-pdf-export-shadow .k-gantt-treelist .k-treelist {
    display: block;
}

.k-pdf-export-shadow .k-gantt-layout.k-splitbar {
    display: none;
}

.k-gantt-edit-form .k-gantt-delete {
    float: left;
}

.k-rtl .k-gantt-rows, .k-rtl .k-gantt-columns, [dir="rtl"] .k-gantt-rows, [dir="rtl"] .k-gantt-columns {
    left: auto;
    right: 0;
}

.k-rtl .k-task-wrap:not(.k-milestone-wrap), [dir="rtl"] .k-task-wrap:not(.k-milestone-wrap) {
    margin: 0 -26px;
}

.k-rtl .k-gantt-timeline .k-gantt-tasks tbody, [dir="rtl"] .k-gantt-timeline .k-gantt-tasks tbody {
    text-align: left;
}

.k-rtl .k-gantt-timeline .k-header, [dir="rtl"] .k-gantt-timeline .k-header {
    border-width: 0 1px 1px 0;
}

    .k-rtl .k-gantt-timeline .k-header:first-child, [dir="rtl"] .k-gantt-timeline .k-header:first-child {
        border-right-width: 0;
    }

.k-rtl .k-gantt-timeline .k-task-start, [dir="rtl"] .k-gantt-timeline .k-task-start {
    left: auto;
    right: 0;
}

.k-rtl .k-gantt-timeline .k-task-end, [dir="rtl"] .k-gantt-timeline .k-task-end {
    right: auto;
    left: 0;
}

.k-rtl .k-task-content, [dir="rtl"] .k-task-content {
    text-align: right;
}

.k-rtl .k-task-complete, [dir="rtl"] .k-task-complete {
    left: auto;
    right: 0;
}

.k-rtl .k-task-draghandle, [dir="rtl"] .k-task-draghandle {
    margin-left: 0;
    margin-right: 16px;
}

.k-rtl .k-gantt-dependencies, [dir="rtl"] .k-gantt-dependencies {
    left: auto;
    right: 0;
}

.k-rtl .k-gantt-delete, [dir="rtl"] .k-gantt-delete {
    float: right;
}

.k-rtl .k-task-offset-wrap .k-task-content .k-resize-e, [dir="rtl"] .k-task-offset-wrap .k-task-content .k-resize-e {
    display: block;
}

.k-rtl .k-task-offset-wrap .k-task-content .k-resize-w, [dir="rtl"] .k-task-offset-wrap .k-task-content .k-resize-w {
    display: none;
}

.k-rtl .k-milestone-wrap, [dir="rtl"] .k-milestone-wrap {
    margin-left: -2.4em;
}

    .k-rtl .k-milestone-wrap .k-task-moment, [dir="rtl"] .k-milestone-wrap .k-task-moment {
        margin-right: .2em;
    }

.k-rtl .k-gantt-timeline .k-milestone-wrap .k-task-start, [dir="rtl"] .k-gantt-timeline .k-milestone-wrap .k-task-start {
    right: -.1em;
}

.k-rtl .k-gantt-tooltip-validation::before, [dir="rtl"] .k-gantt-tooltip-validation::before {
    left: auto;
    right: 0;
}

.k-gantt {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

    .k-gantt .k-treelist-scrollable .k-task-milestone .k-task-milestone-content {
        border-color: var(--kendo-border-color);
        background-color: #424242;
    }

    .k-gantt .k-treelist-scrollable .k-task-milestone.k-selected .k-task-milestone-content {
        border-color: var(--kendo-border-color);
        background-color: var(--themecolor);
    }

    .k-gantt .k-gantt-dependencies-svg polyline {
        fill: none;
        stroke: #000;
    }

        .k-gantt .k-gantt-dependencies-svg polyline.k-selected {
            stroke: var(--themecolor);
        }

.k-gantt-footer {
    box-shadow: none;
}

.k-gantt-treelist .k-treelist, .k-gantt-treelist .k-grid-content {
    background-color: transparent;
}

.k-gantt .k-nonwork-hour {
    background-color: rgba(0, 0, 0, 0.025);
}

.k-task-dot::before {
    background-color: #424242;
}

.k-task-dot:hover::before, .k-task-dot.k-hover::before {
    border-color: #424242;
    background-color: #fff;
}

.k-task-milestone {
    border-color: var(--kendo-border-color);
    background-color: #424242;
}

    .k-task-milestone.k-task-delayed {
        background-image: repeating-linear-gradient(90deg, #fff, #fff 2px, #df5438 2px, #df5438 4px);
    }

    .k-task-milestone.k-task-advanced {
        background-color: #5cb85c;
    }

    .k-task-milestone.k-selected {
        background-image: none;
        border-color: var(--kendo-border-color);
        background-color: var(--themecolor);
    }

.k-task-summary {
    color: #515151;
}

    .k-task-summary.k-task-delayed {
        color: #ec9888;
    }

    .k-task-summary.k-task-advanced {
        color: #9dd49d;
    }

.k-task-summary-complete {
    color: #282828;
}

.k-task-delayed .k-task-summary-complete {
    color: #df5438;
}

.k-task-advanced .k-task-summary-complete {
    color: #5cb85c;
}

.k-task-summary.k-selected {
    color: #9eafeb;
}

    .k-task-summary.k-selected .k-task-summary-complete {
        color: var(--themecolor);
    }

.k-task-single {
    color: #fff;
    background-color: #606060;
}

    .k-task-single.k-task-delayed {
        background-color: #ec9888;
    }

    .k-task-single.k-task-advanced {
        background-color: #9dd49d;
    }

    .k-task-single .k-task-complete {
        background-color: #424242;
    }

.k-task-delayed .k-task-complete {
    background-color: #df5438;
}

.k-task-advanced .k-task-complete {
    background-color: #5cb85c;
}

.k-task-single.k-selected {
    color: #fff;
    background-color: #9eafeb;
}

    .k-task-single.k-selected .k-task-complete {
        background-color: var(--themecolor);
    }

.k-gantt-line {
    color: #000;
}

    .k-gantt-line.k-selected {
        color: var(--themecolor);
    }

.k-task-planned .k-task-moment {
    border-color: var(--themecolor);
    background-color: rgba(0, 0, 0, 0);
}

.k-task-planned .k-task-duration {
    background-color: var(--themecolor);
}

.k-task-planned:hover .k-task-moment {
    background-color: var(--themecolor);
}

.k-task-offset {
    background-image: repeating-linear-gradient(135deg, #fff, #fff 2px, #df5438 2px, #df5438 4px);
}

    .k-task-offset .k-resize-e::before {
        border-color: #000;
    }

    .k-task-offset .k-task-actions {
        color: #000;
    }

    .k-task-offset:hover {
        background-image: repeating-linear-gradient(135deg, #fff, #fff 2px, #ec9888 2px, #ec9888 4px);
    }

.k-pdf-export .k-task-offset {
    background-color: #df5438;
}

.k-offset-tooltip-delayed {
    background-color: #df5438;
}

.k-planned-tooltip {
    background-color: var(--themecolor);
}

.k-gantt-tooltip-validation::before {
    background-color: #656565;
}

.k-gantt-tooltip-valid::before {
    background-color: #5cb85c;
}

.k-gantt-tooltip-invalid::before {
    background-color: #df5438;
}

.k-scheduler {
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4285714286;
    display: flex;
    flex-direction: column;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-scheduler table, .k-scheduler thead, .k-scheduler tfoot, .k-scheduler tbody, .k-scheduler tr, .k-scheduler th, .k-scheduler td, .k-scheduler div, .k-scheduler > * {
        border-color: inherit;
    }

kendo-scheduler.k-scheduler {
    overflow: hidden;
}

    kendo-scheduler.k-scheduler.k-readonly-scheduler .k-event-delete {
        display: none;
    }

.k-scheduler-table {
    width: 100%;
    max-width: none;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
}

    .k-scheduler-table td, .k-scheduler-table th {
        padding: 8px 8px;
        height: 1.4285714286em;
        overflow: hidden;
        white-space: nowrap;
        border-style: solid;
        border-width: 0 0 1px 1px;
        vertical-align: top;
        box-sizing: content-box;
    }

        .k-scheduler-table td:first-child, .k-scheduler-table th:first-child {
            border-left-width: 0;
        }

    .k-scheduler-table .k-middle-row td {
        border-bottom-style: dotted;
    }

    .k-scheduler-table .k-link {
        cursor: pointer;
    }

.k-scheduler-layout-flex {
    overflow: auto;
}

    .k-scheduler-layout-flex .k-scheduler-head {
        position: sticky;
        top: 0;
        z-index: 3;
    }

    .k-scheduler-layout-flex .k-scheduler-body {
        position: relative;
    }

    .k-scheduler-layout-flex .k-scheduler-head, .k-scheduler-layout-flex .k-scheduler-body {
        display: flex;
        flex: 100%;
        flex-wrap: wrap;
    }

    .k-scheduler-layout-flex .k-scheduler-row {
        display: flex;
        flex: 1 1 100%;
        width: 100%;
        min-width: 0;
    }

    .k-scheduler-layout-flex .k-scheduler-group {
        display: flex;
        flex: 1 1 100%;
        width: 100%;
        min-width: 0;
        flex-wrap: wrap;
    }

        .k-scheduler-layout-flex .k-scheduler-group .k-group-cell {
            display: flex;
            flex: 1 1 auto;
            flex-wrap: wrap;
            overflow: auto;
        }

        .k-scheduler-layout-flex .k-scheduler-group .k-group-content {
            padding: 0;
            display: flex;
            flex: 1 1 100%;
            width: 100%;
            border-width: 0;
            flex-wrap: wrap;
        }

        .k-scheduler-layout-flex .k-scheduler-group.k-group-horizontal .k-group-cell {
            flex-basis: 100%;
            border-width: 0;
            padding: 0;
        }

    .k-scheduler-layout-flex.k-scheduler-timeline-view .k-scheduler-body .k-scheduler-cell {
        flex-basis: auto;
    }

    .k-scheduler-layout-flex .k-more-events {
        bottom: 2px;
        left: 0;
        width: 100%
    }

    .k-scheduler-layout-flex .k-scheduler-cell {
        display: flex;
        flex: 1 1 100%;
        padding: 8px 8px;
        min-height: 1.5em;
        overflow: hidden;
        white-space: nowrap;
        border-style: solid;
        border-width: 0 1px 1px 0;
        vertical-align: top;
        box-sizing: content-box;
    }

        .k-scheduler-layout-flex .k-scheduler-cell.k-slot-cell {
            position: relative;
        }

        .k-scheduler-layout-flex .k-scheduler-cell.k-heading-cell {
            justify-content: center;
            font-weight: bold;
        }

        .k-scheduler-layout-flex .k-scheduler-cell.k-side-cell {
            justify-content: flex-end;
            flex-grow: 0;
            flex-basis: auto;
            overflow: visible;
        }

        .k-scheduler-layout-flex .k-scheduler-cell.k-major-cell {
            border-bottom-width: 0;
        }

    .k-scheduler-layout-flex .k-middle-row .k-scheduler-cell {
        border-bottom-style: dotted;
    }

    .k-scheduler-layout-flex .k-resource-cell {
        flex: none;
        display: flex;
        flex-wrap: wrap;
        overflow: visible;
    }

    .k-scheduler-layout-flex .k-resource-content {
        display: flex;
        flex-wrap: wrap;
        padding: 0;
        border-width: 0;
    }

    .k-scheduler-layout-flex .k-sticky-cell {
        display: flex;
        flex-wrap: wrap;
        flex-basis: 0;
        position: sticky;
        left: 0;
        z-index: 3;
    }

.k-scheduler-toolbar {
    border-width: 0;
    border-bottom-width: 1px;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

    .k-scheduler-toolbar .k-widget {
        font-size: inherit;
    }

    .k-scheduler-toolbar .k-nav-current {
        color: inherit;
        outline: 0;
        text-decoration: none;
        display: inline-flex;
        flex-flow: row nowrap;
        align-items: center;
        gap: 4px;
        cursor: pointer;
    }

    .k-scheduler-toolbar .k-scheduler-search {
        display: inline-flex;
        flex-flow: row nowrap;
    }

.k-scheduler-views-wrapper .k-views-dropdown {
    width: auto;
    font: inherit;
    display: none;
}

@media (max-width: 1024px) {
    .k-scheduler-views-wrapper .k-scheduler-views {
        display: none;
    }

    .k-scheduler-views-wrapper .k-views-dropdown {
        display: inline-block;
    }
}

.k-scheduler-footer {
    box-shadow: none;
    border-width: 0;
    border-top-width: 1px;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
}

.k-scheduler-layout {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    flex: 1 1 auto;
    position: relative;
    z-index: 1;
}

    .k-scheduler-layout > tbody > tr > td {
        padding: 0;
        vertical-align: top;
    }

    .k-scheduler-layout td.k-selected, .k-scheduler-layout .k-scheduler-cell.k-selected {
        outline: none;
    }

    .k-scheduler-layout tr + tr .k-scheduler-times tr th, .k-scheduler-layout .k-scheduler-pane + .k-scheduler-pane .k-scheduler-times tr th {
        border-bottom-color: transparent;
    }

    .k-scheduler-layout tr + tr .k-scheduler-times tr .k-slot-cell, .k-scheduler-layout tr + tr .k-scheduler-times tr .k-scheduler-times-all-day, .k-scheduler-layout tr + tr .k-scheduler-times tr:last-child th, .k-scheduler-layout .k-scheduler-pane + .k-scheduler-pane .k-scheduler-times tr .k-slot-cell, .k-scheduler-layout .k-scheduler-pane + .k-scheduler-pane .k-scheduler-times tr .k-scheduler-times-all-day, .k-scheduler-layout .k-scheduler-pane + .k-scheduler-pane .k-scheduler-times tr:last-child th {
        border-bottom-color: inherit;
    }

    .k-scheduler-layout.k-scheduler-flex-layout {
        display: flex;
        flex-direction: column;
    }

        .k-scheduler-layout.k-scheduler-flex-layout.k-scheduler-weekview .k-scheduler-pane:first-child .k-scheduler-table, .k-scheduler-layout.k-scheduler-flex-layout.k-scheduler-dayview .k-scheduler-pane:first-child .k-scheduler-table {
            table-layout: fixed;
        }

.k-scheduler-header, .k-scheduler-view-header {
    -webkit-padding-end: var(--kendo-scrollbar-width, 17px);
    padding-inline-end: var(--kendo-scrollbar-width, 17px);
}

    .k-scheduler-header th {
        text-align: center;
    }

.k-scheduler-header, .k-scheduler-header-wrap, .k-scheduler-header-wrap > div {
    border-color: inherit;
    overflow: hidden;
}

.k-scheduler-header-wrap {
    border-width: 0;
    border-style: solid;
    position: relative;
}

.k-scheduler-times {
    border-color: inherit;
    position: relative;
    overflow: hidden;
}

    .k-scheduler-times .k-scheduler-table {
        table-layout: auto;
    }

    .k-scheduler-times th {
        border-width: 0 1px 1px 0;
        text-align: right;
    }

    .k-scheduler-times .k-slot-cell, .k-scheduler-times .k-scheduler-times-all-day {
        border-bottom-color: inherit;
    }

        .k-scheduler-times .k-slot-cell.k-last-resource {
            border-right: 0;
        }

        .k-scheduler-times .k-slot-cell.k-empty-slot {
            padding-left: 0;
            padding-right: 0;
        }

.k-scheduler-datecolumn {
    width: 12em;
}

.k-scheduler-timecolumn {
    width: 11em;
    white-space: nowrap;
}

.k-scheduler-content {
    border-color: inherit;
    position: relative;
    overflow: auto;
}

    .k-scheduler-content:focus {
        outline: none;
    }

kendo-scheduler .k-event, .k-event {
    border-radius: 4px;
    min-height: 25px;
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-radius: 4px;
    text-align: left;
    outline: 0;
    cursor: default;
    position: absolute;
    overflow: hidden;
    padding-right: 8px;
}

    kendo-scheduler .k-event > div, .k-event > div {
        position: relative;
        z-index: 2;
    }

    kendo-scheduler .k-event .k-event-template, .k-event .k-event-template {
        line-height: 17px;
        padding: 4px 8px;
    }

    kendo-scheduler .k-event .k-event-time, .k-event .k-event-time {
        padding-bottom: 0;
        font-size: .875em;
        white-space: nowrap;
        display: none;
    }

    kendo-scheduler .k-event .k-event-actions, .k-event .k-event-actions {
        white-space: nowrap;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 8px;
        z-index: 2;
    }

        kendo-scheduler .k-event .k-event-actions .k-event-delete, .k-event .k-event-actions .k-event-delete {
            opacity: .5;
            visibility: hidden;
        }

        kendo-scheduler .k-event .k-event-actions:hover .k-event-delete, kendo-scheduler .k-event .k-event-actions.k-hover .k-event-delete, .k-event .k-event-actions:hover .k-event-delete, .k-event .k-event-actions.k-hover .k-event-delete {
            opacity: 1;
        }

        kendo-scheduler .k-event .k-event-actions .k-icon, .k-event .k-event-actions .k-icon {
            line-height: normal;
            font-size: inherit;
        }

        kendo-scheduler .k-event .k-event-actions a, .k-event .k-event-actions a {
            color: inherit;
        }

        kendo-scheduler .k-event .k-event-actions:first-child, .k-event .k-event-actions:first-child {
            margin: 2px 0.4ex 0 4px;
            top: 0;
            right: 0;
            float: left;
            position: relative;
            opacity: 1;
            visibility: visible;
            line-height: normal;
        }

    kendo-scheduler .k-event .k-resize-handle, .k-event .k-resize-handle {
        z-index: 4;
        opacity: .5;
        visibility: hidden;
    }

        kendo-scheduler .k-event .k-resize-handle::before, .k-event .k-resize-handle::before {
            border-color: currentColor;
        }

    kendo-scheduler .k-event .k-resize-n, .k-event .k-resize-n {
        height: .5em;
        top: 0;
    }

    kendo-scheduler .k-event .k-resize-s, .k-event .k-resize-s {
        height: .5em;
        bottom: 0;
    }

        kendo-scheduler .k-event .k-resize-n::before, kendo-scheduler .k-event .k-resize-s::before, .k-event .k-resize-n::before, .k-event .k-resize-s::before {
            width: 32px;
            border-bottom-width: 1px;
        }

    kendo-scheduler .k-event .k-resize-w, .k-event .k-resize-w {
        width: .5em;
        left: 0;
    }

    kendo-scheduler .k-event .k-resize-e, .k-event .k-resize-e {
        width: .5em;
        right: 0;
    }

        kendo-scheduler .k-event .k-resize-w::before, kendo-scheduler .k-event .k-resize-e::before, .k-event .k-resize-w::before, .k-event .k-resize-e::before {
            height: 32px;
            border-left-width: 1px;
        }

    kendo-scheduler .k-event:hover .k-event-actions .k-event-delete, kendo-scheduler .k-event:hover .k-resize-handle, kendo-scheduler .k-event.k-hover .k-event-actions .k-event-delete, kendo-scheduler .k-event.k-hover .k-resize-handle, .k-event:hover .k-event-actions .k-event-delete, .k-event:hover .k-resize-handle, .k-event.k-hover .k-event-actions .k-event-delete, .k-event.k-hover .k-resize-handle {
        visibility: visible;
    }

    kendo-scheduler .k-event.k-event-drag-hint .k-event-time, .k-event.k-event-drag-hint .k-event-time {
        display: block;
    }

    kendo-scheduler .k-event .k-event-top-actions, kendo-scheduler .k-event .k-event-bottom-actions, .k-event .k-event-top-actions, .k-event .k-event-bottom-actions {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        text-align: center;
    }

    kendo-scheduler .k-event .k-event-bottom-actions, .k-event .k-event-bottom-actions {
        top: auto;
        bottom: 0;
    }

.k-scheduler-mark {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: middle;
}

.k-more-events {
    padding: 0;
    height: 13px;
    border-style: solid;
    border-width: 1px;
    overflow: hidden;
    position: absolute;
    justify-content: center;
}

    .k-more-events > .k-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

.k-current-time {
    position: absolute;
}

    .k-current-time.k-current-time-arrow-left, .k-current-time.k-current-time-arrow-right, .k-current-time.k-current-time-arrow-down {
        width: 0;
        height: 0;
        background: transparent;
        border: 4px solid transparent;
    }

.k-event-drag-hint {
    opacity: .5;
    z-index: 3;
}

    .k-event-drag-hint .k-event-actions, .k-event-drag-hint .k-event-top-actions, .k-event-drag-hint .k-event-bottom-actions, .k-event-drag-hint .k-resize-handle {
        display: none;
    }

    .k-event-drag-hint .k-event-time {
        display: block;
    }

.k-scheduler-marquee {
    border-width: 0;
    border-style: solid;
}

    .k-scheduler-marquee .k-label-top, .k-scheduler-marquee .k-label-bottom {
        font-size: .75em;
        position: absolute;
    }

    .k-scheduler-marquee .k-label-top {
        left: 4px;
        top: 2px;
    }

    .k-scheduler-marquee .k-label-bottom {
        right: 4px;
        bottom: 2px;
    }

    .k-scheduler-marquee.k-first::before, .k-scheduler-marquee.k-last::after {
        content: "";
        border-width: 3px;
        border-style: solid;
        position: absolute;
        width: 0;
        height: 0;
    }

    .k-scheduler-marquee.k-first::before {
        top: 0;
        left: 0;
        border-right-color: transparent;
        border-bottom-color: transparent;
    }

    .k-scheduler-marquee.k-last::after {
        bottom: 0;
        right: 0;
        border-left-color: transparent;
        border-top-color: transparent;
    }

.k-pdf-export-shadow .k-scheduler, .k-scheduler-pdf-export .k-scheduler-content, .k-scheduler-pdf-export .k-scheduler-times {
    height: auto !important;
    overflow: visible !important;
}

.k-scheduler-pdf-export {
    overflow: hidden;
}

    .k-scheduler-pdf-export .k-scheduler-header {
        padding: 0 !important;
    }

    .k-scheduler-pdf-export .k-scheduler-header-wrap {
        border-width: 0 !important;
    }

    .k-scheduler-pdf-export .k-scheduler-header .k-scheduler-table, .k-scheduler-pdf-export .k-scheduler-content .k-scheduler-table {
        width: 100% !important;
    }

.k-recurrence-editor {
    display: flex;
    flex-direction: column;
}

kendo-scheduler .k-recurrence-editor {
    display: block;
}

.k-scheduler-monthview .k-scheduler-table {
    height: 100%
}

    .k-scheduler-monthview .k-scheduler-table td {
        height: 80px;
        text-align: right;
    }

.k-scheduler-monthview .k-scheduler-body .k-scheduler-cell {
    min-height: 80px;
}

.k-scheduler-monthview .k-hidden {
    padding-left: 0 !important;
    padding-right: 0 !important;
    border-right-width: 0 !important;
}

.k-scheduler-monthview .k-scheduler-table-auto, .k-scheduler-monthview .k-scheduler-table-auto td, .k-scheduler-monthview .k-scheduler-content .k-scheduler-table-auto {
    height: auto;
}

.k-scheduler-monthview .k-scheduler-content {
    overflow-y: scroll;
}

.k-scheduler-monthview.k-scheduler-flex-layout .k-scheduler-content {
    overflow-y: auto;
}

.k-scheduler-agendaview .k-scheduler-mark {
    margin-right: .5em;
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: middle;
}

.k-scheduler-agendaview .k-scheduler-table th:first-child, .k-scheduler-agendaview .k-scheduler-table td:first-child {
    border-left-width: 1px;
}

.k-scheduler-agendaview .k-scheduler-table td.k-first {
    border-left-width: 0;
}

.k-scheduler-agendaview .k-task > .k-event-delete {
    color: inherit;
    position: absolute;
    top: 2px;
    right: 2px;
    opacity: .5;
    visibility: hidden;
}

.k-scheduler-agendaview .k-hover .k-task > .k-event-delete, .k-scheduler-agendaview .k-scheduler-content tr:hover .k-event-delete, .k-scheduler-agendaview .k-scheduler-content .k-scheduler-row:hover .k-event-delete, .k-scheduler-agendaview .k-scheduler-content .k-scheduler-row.k-hover .k-event-delete {
    visibility: visible;
}

.k-scheduler-agendaday {
    margin: 0 .2em 0 0;
    font-size: 3em;
    line-height: 1;
    font-weight: 400;
    float: left;
}

.k-scheduler-agendaweek {
    display: block;
    margin: .4em 0 0;
    line-height: 1;
    font-style: normal;
}

.k-scheduler-agendadate {
    font-size: .75em;
}

.k-scheduler-timelineview .k-slot-cell {
    overflow: hidden;
}

.k-scheduler-timelineview .k-scheduler-content {
    overflow: auto;
}

.k-scheduler-pane {
    display: flex;
    flex-direction: row;
}

    .k-scheduler-pane .k-scheduler-times {
        flex: 0 0 auto;
    }

        .k-scheduler-pane .k-scheduler-times .k-scheduler-table {
            height: 100%
        }

    .k-scheduler-pane .k-scheduler-header, .k-scheduler-pane .k-scheduler-content {
        flex: 1 1 auto;
    }

.k-scheduler-yearview .k-scheduler-body {
    padding: 12px 12px;
    justify-content: center;
}

.k-scheduler-yearview .k-calendar {
    width: 100%;
    border-width: 0;
}

    .k-scheduler-yearview .k-calendar .k-calendar-view {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .k-scheduler-yearview .k-calendar .k-content {
        flex: 0;
    }

    .k-scheduler-yearview .k-calendar .k-link {
        position: relative;
    }

    .k-scheduler-yearview .k-calendar td.k-selected {
        background-color: inherit;
    }

.k-scheduler-yearview .k-day-indicator {
    margin-top: calc(32px - 0.5em);
    width: 3px;
    height: 3px;
    border-radius: 50%;
    position: absolute;
    left: calc(50% - 1.5px);
}

.k-scheduler-tooltip {
    padding: 8px 8px;
    border-width: 0;
    color: inherit;
}

    .k-scheduler-tooltip .k-tooltip-title {
        margin-bottom: 12px;
    }

        .k-scheduler-tooltip .k-tooltip-title .k-month {
            font-size: 12px;
            text-transform: uppercase;
        }

        .k-scheduler-tooltip .k-tooltip-title .k-day {
            font-size: 24px;
        }

    .k-scheduler-tooltip .k-tooltip-events-container {
        overflow: auto;
    }

    .k-scheduler-tooltip .k-tooltip-events {
        max-height: 250px;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .k-scheduler-tooltip .k-tooltip-event {
        padding: 4px 8px;
        border-radius: 4px;
        box-sizing: border-box;
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-shrink: 0;
        position: relative;
        gap: 4px;
    }

        .k-scheduler-tooltip .k-tooltip-event .k-event-time {
            display: flex;
            flex-shrink: 0;
            font-size: inherit;
        }

    .k-scheduler-tooltip .k-no-data, .k-scheduler-tooltip .k-nodata {
        height: auto;
        min-height: auto;
        color: inherit;
    }

.k-scheduler-edit-dialog .k-dialog {
    max-height: 100vh;
}

.k-scheduler-edit-form .k-edit-form-container {
    width: 100%
}

.k-scheduler-edit-form .k-edit-label {
    width: 17%
}

.k-scheduler-edit-form .k-edit-field {
    width: 77%
}

    .k-scheduler-edit-form .k-edit-field > ul > li {
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
    }

.k-scheduler-edit-form .k-recurrence-editor .k-radio-list .k-radio-wrap, .k-scheduler-edit-form .k-recurrence-editor .k-checkbox-list .k-checkbox-wrap {
    align-self: center;
}

.k-scheduler-edit-form .k-recur-interval, .k-scheduler-edit-form .k-recur-count, .k-scheduler-edit-form .k-recur-monthday {
    width: 5em;
}

.k-scheduler-edit-form .k-recur-until, .k-scheduler-edit-form .k-recur-month, .k-scheduler-edit-form .k-recur-weekday, .k-scheduler-edit-form .k-recur-weekday-offset {
    width: 10em;
}

.k-scheduler-edit-form .k-scheduler-datetime-picker {
    display: flex;
    flex-flow: row nowrap;
    gap: 8px;
}

.k-rtl .k-scheduler-header th, .k-rtl .k-scheduler-table td {
    border-width: 0 1px 1px 0;
}

    .k-rtl .k-scheduler-table td:first-child, .k-rtl .k-scheduler-table th:first-child {
        border-right-width: 0;
    }

.k-rtl .k-scheduler-times th {
    border-width: 0 0 1px 1px;
}

.k-rtl .k-scheduler .k-scrollbar-v .k-scheduler-header-wrap {
    border-right-width: 0;
    border-left-width: 1px;
}

.k-rtl .k-event {
    text-align: right;
    padding-right: 0;
    padding-left: 8px;
}

    .k-rtl .k-event .k-resize-w {
        left: auto;
        right: 0;
    }

    .k-rtl .k-event .k-resize-e {
        right: auto;
        left: 0;
    }

    .k-rtl .k-event .k-event-actions {
        right: auto;
        left: 2px;
    }

        .k-rtl .k-event .k-event-actions:first-child {
            margin: 2px 4px 0 0.4ex;
            float: right;
        }

.k-rtl .k-scheduler-agendaview .k-task > .k-event-delete {
    left: 2px;
    right: auto;
}

.k-rtl .k-scheduler-agendaview .k-task .k-scheduler-mark {
    margin-left: .5em;
    margin-right: 0;
}

.k-rtl .k-scheduler-marquee .k-label-top {
    left: auto;
    right: 4px;
}

.k-rtl .k-scheduler-marquee .k-label-bottom {
    left: 4px;
    right: auto;
}

.k-rtl .k-scheduler-edit-form .k-scheduler-delete {
    float: right;
}

.k-rtl .k-scheduler .k-i-caret-alt-left, .k-rtl .k-scheduler .k-i-caret-alt-right, .k-rtl .k-scheduler .k-i-arrow-60-left, .k-rtl .k-scheduler .k-i-arrow-60-right, .k-rtl .k-scheduler .k-current-time-arrow-right, .k-rtl.k-scheduler .k-i-caret-alt-left, .k-rtl.k-scheduler .k-i-caret-alt-right, .k-rtl.k-scheduler .k-i-arrow-60-left, .k-rtl.k-scheduler .k-i-arrow-60-right, .k-rtl.k-scheduler .k-current-time-arrow-right {
    transform: scaleX(-1);
}

.k-rtl .k-scheduler .k-scheduler-header-wrap, .k-rtl.k-scheduler .k-scheduler-header-wrap {
    border-right-width: 0;
}

.k-rtl .k-scheduler .k-scheduler-agendaday, .k-rtl.k-scheduler .k-scheduler-agendaday {
    float: right;
    margin: 0 0 0 .2em;
}

.k-rtl .k-scheduler .k-scheduler-agendaview .k-scheduler-table td:first-child, .k-rtl .k-scheduler .k-scheduler-agendaview .k-scheduler-table th:first-child, .k-rtl.k-scheduler .k-scheduler-agendaview .k-scheduler-table td:first-child, .k-rtl.k-scheduler .k-scheduler-agendaview .k-scheduler-table th:first-child {
    border-left-width: 0;
}

.k-rtl .k-scheduler .k-scheduler-agendaview .k-scheduler-table tr + tr td:first-child, .k-rtl .k-scheduler .k-scheduler-agendaview .k-scheduler-table tr + tr th:first-child, .k-rtl.k-scheduler .k-scheduler-agendaview .k-scheduler-table tr + tr td:first-child, .k-rtl.k-scheduler .k-scheduler-agendaview .k-scheduler-table tr + tr th:first-child {
    border-right-width: 1px;
}

.k-safari .k-scheduler-tooltip .k-tooltip-event:not(:last-child) {
    margin-bottom: 4px;
}

.k-safari .k-scheduler-yearview .k-calendar-view .k-month {
    margin-block: 0;
    margin-inline: 6px;
}

.k-scheduler {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

.k-current-time {
    background: red;
}

    .k-current-time.k-current-time-arrow-left {
        border-right-color: red;
    }

    .k-current-time.k-current-time-arrow-right {
        border-left-color: red;
    }

    .k-current-time.k-current-time-arrow-down {
        border-top-color: red;
    }

.k-scheduler-toolbar {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fafafa;
}

.k-scheduler-footer {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fafafa;
}

.k-scheduler-header {
    background-color: #fafafa;
}

.k-scheduler-header-wrap {
    background-color: #fff;
}

.k-scheduler-nonwork, .k-scheduler .k-nonwork-hour {
    background-color: #f5f5f5;
}

.k-scheduler-other-month, .k-scheduler .k-other-month {
    background-color: #f5f5f5;
}

.k-scheduler-layout td.k-selected, .k-scheduler-layout .k-scheduler-cell.k-selected {
    background-color: rgba(69, 102, 216, 0.25);
}

.k-scheduler-layout-flex .k-scheduler-head, .k-scheduler-layout-flex .k-sticky-cell {
    background-color: #fff;
}

.k-event {
    color: #fff;
    background-color: #637ede;
}

    .k-event.k-selected {
        color: #fff;
        background-color: var(--themecolor);
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.13);
    }

.k-event-inverse {
    color: #000;
}

.k-event-ongoing {
    box-shadow: inset 0px 0px 0px 1px red;
}

.k-scheduler-marquee::before, .k-scheduler-marquee::after {
    border-color: var(--themecolor);
}

.k-scheduler-edit-dialog .k-dialog-actions {
    border-color: var(--kendo-border-color);
}

.k-scheduler-agendaview .k-scheduler-content tr:hover, .k-scheduler-agendaview .k-scheduler-content tr.k-hover, .k-scheduler-agendaview .k-scheduler-content .k-scheduler-row:hover, .k-scheduler-agendaview .k-scheduler-content .k-scheduler-row.k-hover {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #ececec;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
}

    .k-scheduler-agendaview .k-scheduler-content tr:hover .k-scheduler-datecolumn, .k-scheduler-agendaview .k-scheduler-content tr:hover .k-scheduler-groupcolumn, .k-scheduler-agendaview .k-scheduler-content tr.k-hover .k-scheduler-datecolumn, .k-scheduler-agendaview .k-scheduler-content tr.k-hover .k-scheduler-groupcolumn {
        border-color: var(--kendo-border-color);
        color: #424242;
        background-color: #fff;
    }

.k-scheduler-agendaview .k-scheduler-content tr.k-selected {
    background-color: rgba(69, 102, 216, 0.25);
}

    .k-scheduler-agendaview .k-scheduler-content tr.k-selected .k-scheduler-datecolumn, .k-scheduler-agendaview .k-scheduler-content tr.k-selected .k-scheduler-groupcolumn {
        background-color: #fff;
    }

.k-scheduler-yearview .k-day-indicator {
    background-color: var(--themecolor);
}

.k-scheduler-yearview .k-selected .k-day-indicator {
    background-color: #fff;
}

.k-tooltip.k-scheduler-tooltip {
    color: #424242;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

    .k-tooltip.k-scheduler-tooltip .k-callout {
        color: #fff;
    }

.k-chat {
    margin: auto;
    max-width: 500px;
    height: 600px;
    max-height: 100%;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4285714286;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-chat .k-message-list {
        display: flex;
        flex: 1 1 auto;
        flex-direction: column;
        align-items: flex-start;
        overflow-x: hidden;
        overflow-y: auto;
        scroll-behavior: smooth;
    }

    .k-chat .k-message-list-content {
        padding: 16px 16px;
        width: 100%;
        box-sizing: border-box;
        position: relative;
        flex: 0 0 auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        overflow: hidden;
    }

        .k-chat .k-message-list-content > * + * {
            margin-top: 16px;
        }

    .k-chat .k-message-group {
        max-width: 80%;
        background: none;
        box-sizing: border-box;
        display: flex;
        flex-shrink: 0;
        flex-direction: column;
        position: relative;
    }

        .k-chat .k-message-group:not(.k-alt) {
            align-items: flex-start;
            text-align: left;
        }

            .k-chat .k-message-group:not(.k-alt) .k-message-time {
                margin-left: 8px;
                left: 100%
            }

            .k-chat .k-message-group:not(.k-alt) .k-message-status {
                left: 0;
            }

            .k-chat .k-message-group:not(.k-alt) .k-first .k-bubble, .k-chat .k-message-group:not(.k-alt) .k-only .k-bubble {
                border-bottom-left-radius: 2px;
            }

            .k-chat .k-message-group:not(.k-alt) .k-middle .k-bubble, .k-chat .k-message-group:not(.k-alt) .k-last .k-bubble {
                border-top-left-radius: 2px;
                border-bottom-left-radius: 2px;
            }

        .k-chat .k-message-group.k-alt {
            align-self: flex-end;
            align-items: flex-end;
            text-align: right;
        }

            .k-chat .k-message-group.k-alt .k-message-time {
                margin-right: 8px;
                right: 100%
            }

            .k-chat .k-message-group.k-alt .k-message-status {
                right: 0;
            }

            .k-chat .k-message-group.k-alt .k-first .k-bubble, .k-chat .k-message-group.k-alt .k-only .k-bubble {
                border-bottom-right-radius: 2px;
            }

            .k-chat .k-message-group.k-alt .k-middle .k-bubble, .k-chat .k-message-group.k-alt .k-last .k-bubble {
                border-top-right-radius: 2px;
                border-bottom-right-radius: 2px;
            }

    .k-chat .k-message {
        max-width: 100%;
        margin: 2px 0 0;
        position: relative;
        transition: margin .2s ease-in-out;
        outline: none;
    }

    .k-chat .k-message-time, .k-chat .k-message-status {
        font-size: smaller;
        line-height: normal;
        white-space: nowrap;
        pointer-events: none;
        position: absolute;
    }

    .k-chat .k-message-time {
        opacity: 0;
        top: 50%;
        transform: translateY(-50%);
        transition: opacity .2s ease-in-out;
    }

    .k-chat .k-message-status {
        margin-top: 2px;
        height: 0;
        overflow: hidden;
        top: 100%;
        transition: height .2s ease-in-out;
    }

    .k-chat .k-bubble {
        border-radius: 12px;
        padding: 8px 12px;
        border-width: 1px;
        border-style: solid;
        line-height: 18px;
        word-wrap: break-word;
        white-space: pre-wrap;
    }

        .k-chat .k-bubble a {
            color: inherit;
            text-decoration: underline;
        }

    .k-chat .k-message.k-selected {
        margin-bottom: 16px;
        border: 0;
        color: inherit;
        background: none;
    }

        .k-chat .k-message.k-selected .k-message-time {
            opacity: 1;
        }

        .k-chat .k-message.k-selected .k-message-status {
            height: 1.2em;
        }

    .k-chat .k-message-error, .k-chat .k-message-sending {
        margin-bottom: 16px;
    }

        .k-chat .k-message-error .k-message-status, .k-chat .k-message-sending .k-message-status {
            height: 1.2em;
        }

    .k-chat .k-avatar {
        border-radius: 100%;
        margin: 0;
        width: 32px;
        height: 32px;
        position: absolute;
    }

.k-message-group:not(.k-alt) > .k-avatar {
    left: 0;
    bottom: 0;
}

.k-message-group.k-alt > .k-avatar {
    right: 0;
    bottom: 0;
}

.k-chat .k-avatars .k-message-group:not(.k-alt):not(.k-no-avatar) {
    padding-left: 40px;
}

.k-chat .k-avatars .k-message-group.k-alt:not(.k-no-avatar) {
    padding-right: 40px;
}

.k-author {
    margin: 0;
    font-size: smaller;
    line-height: normal;
}

.k-chat .k-author {
    margin: 0;
}

.k-chat .k-timestamp {
    font-size: smaller;
    text-transform: uppercase;
    text-align: center;
    align-self: stretch;
}

.k-quick-replies {
    display: block;
    max-width: 100%
}

.k-quick-reply {
    border-radius: 100px;
    margin-right: 8px;
    margin-bottom: 4px;
    padding: 8px 12px;
    border-width: 1px;
    border-style: solid;
    line-height: 18px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    display: inline-block;
    flex: 0 0 auto;
    transition-property: color, background-color, border-color;
    transition-duration: .2s;
    transition-timing-function: ease-in-out;
    outline: none;
}

.k-scrollable-quick-replies {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
    display: flex;
    flex-flow: row nowrap;
    flex: 0 0 auto;
    overflow-x: auto;
    overflow-y: hidden;
}

    .k-scrollable-quick-replies::-webkit-scrollbar {
        display: none;
    }

    .k-scrollable-quick-replies .k-quick-reply {
        margin: 0;
    }

        .k-scrollable-quick-replies .k-quick-reply + .k-quick-reply {
            margin-left: 8px;
        }

.k-message-box {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    border-width: 1px 0 0;
    border-style: solid;
    border-color: inherit !important;
    border-radius: 0 !important;
    flex: none;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

    .k-message-box:focus, .k-message-box.k-focus, .k-message-box:focus-within {
        outline: 0;
        box-shadow: none;
    }

    .k-message-box .k-button {
        border-width: 0;
        flex-shrink: 0;
    }

        .k-message-box .k-button svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
            display: inline-block;
        }

        .k-rtl .k-message-box .k-button, .k-message-box .k-button[dir="rtl"] {
            transform: scaleX(-1);
        }

.k-chat .k-card-list {
    margin: 2px 0 0;
}

.k-chat .k-card-deck {
    max-width: calc(100% + 32px);
    box-sizing: border-box;
    margin-left: -16px;
    margin-right: -16px;
    padding: 16px 16px 16px;
    overflow: hidden;
    overflow-x: auto;
    scroll-behavior: smooth;
}

    .k-chat .k-card-deck .k-card, .k-chat .k-card-deck .k-card-wrap {
        width: 200px;
    }

.k-chat .k-card-deck-scrollwrap {
    margin-right: -16px;
    margin-left: -16px;
    padding-left: 16px;
    padding-right: 16px;
}

    .k-chat .k-card-deck-scrollwrap > .k-card-deck {
        margin-bottom: -20px;
        padding-bottom: 20px;
    }

.k-chat .k-card-deck .k-card-wrap {
    display: flex;
    flex-flow: row nowrap;
    align-items: stretch;
    flex: 0 0 auto;
    padding-bottom: 5px;
}

    .k-chat .k-card-deck .k-card-wrap .k-card {
        flex: 0 0 auto;
    }

    .k-chat .k-card-deck .k-card-wrap.k-selected {
        background: none;
    }

.k-typing-indicator {
    padding: 0;
    border-radius: 50px;
    display: inline-flex;
    flex-flow: row nowrap;
}

    .k-typing-indicator span {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        flex: 0 0 8px;
        background-color: currentColor;
        opacity: .4;
    }

        .k-typing-indicator span:nth-of-type(1) {
            animation: 1s k-animation-blink infinite .3333s;
        }

        .k-typing-indicator span:nth-of-type(2) {
            animation: 1s k-animation-blink infinite .6666s;
        }

        .k-typing-indicator span:nth-of-type(3) {
            animation: 1s k-animation-blink infinite .9999s;
        }

        .k-typing-indicator span + span {
            margin-left: 5px;
        }

@keyframes k-animation-blink {
    50% {
        opacity: 1;
    }
}

.k-chat-toolbar, .k-chat .k-toolbar-box {
    padding: 8px 8px;
    width: 100%;
    border-width: 1px 0 0;
    box-sizing: border-box;
    flex: none;
    overflow: hidden;
    position: relative;
}

    .k-chat-toolbar::before, .k-chat .k-toolbar-box::before {
        display: none;
    }

    .k-chat-toolbar .k-button-list, .k-chat .k-toolbar-box .k-button-list {
        display: flex;
        flex-flow: row nowrap;
        overflow: hidden;
        scroll-behavior: smooth;
    }

    .k-chat-toolbar .k-button, .k-chat .k-toolbar-box .k-button {
        flex: none;
    }

    .k-chat-toolbar .k-scroll-button, .k-chat .k-toolbar-box .k-scroll-button {
        padding: 0 4px;
        height: 100%;
        aspect-ratio: auto;
        position: absolute;
        z-index: 2;
        top: 0;
    }

        .k-chat-toolbar .k-scroll-button .k-button-icon, .k-chat .k-toolbar-box .k-scroll-button .k-button-icon {
            min-width: auto;
            min-height: auto;
        }

    .k-chat-toolbar .k-scroll-button-left, .k-chat .k-toolbar-box .k-scroll-button-left {
        left: 0;
    }

    .k-chat-toolbar .k-scroll-button-right, .k-chat .k-toolbar-box .k-scroll-button-right {
        right: 0;
    }

.k-rtl .k-message-group:not(.k-alt), [dir="rtl"] .k-message-group:not(.k-alt) {
    text-align: right;
}

    .k-rtl .k-message-group:not(.k-alt) .k-message-time, [dir="rtl"] .k-message-group:not(.k-alt) .k-message-time {
        margin-left: 0;
        margin-right: 8px;
        left: auto;
        right: 100%
    }

    .k-rtl .k-message-group:not(.k-alt) .k-message-status, [dir="rtl"] .k-message-group:not(.k-alt) .k-message-status {
        left: auto;
        right: 0;
    }

.k-rtl .k-message-group.k-alt, [dir="rtl"] .k-message-group.k-alt {
    text-align: left;
}

    .k-rtl .k-message-group.k-alt .k-message-time, [dir="rtl"] .k-message-group.k-alt .k-message-time {
        margin-right: 0;
        margin-left: 8px;
        right: auto;
        left: 100%
    }

    .k-rtl .k-message-group.k-alt .k-message-status, [dir="rtl"] .k-message-group.k-alt .k-message-status {
        right: auto;
        left: 0;
    }

.k-rtl .k-message-group:not(.k-alt) > .k-avatar, [dir="rtl"] .k-message-group:not(.k-alt) > .k-avatar {
    left: auto;
    right: 0;
}

.k-rtl .k-message-group.k-alt > .k-avatar, [dir="rtl"] .k-message-group.k-alt > .k-avatar {
    right: auto;
    left: 0;
}

.k-rtl .k-avatars .k-message-group:not(.k-alt):not(.k-no-avatar), [dir="rtl"] .k-avatars .k-message-group:not(.k-alt):not(.k-no-avatar) {
    padding-left: 0;
    padding-right: 40px;
}

.k-rtl .k-avatars .k-message-group.k-alt:not(.k-no-avatar), [dir="rtl"] .k-avatars .k-message-group.k-alt:not(.k-no-avatar) {
    padding-right: 0;
    padding-left: 40px;
}

.k-rtl .k-chat .k-card-deck .k-card-wrap + .k-card-wrap, [dir="rtl"] .k-chat .k-card-deck .k-card-wrap + .k-card-wrap {
    margin-left: 0;
    margin-right: 16px;
}

.k-rtl .k-quick-reply, [dir="rtl"] .k-quick-reply {
    margin-right: 0;
    margin-left: 8px;
}

.k-chat {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fafafa;
}

    .k-chat .k-timestamp {
        color: #666;
    }

    .k-chat .k-author {
        font-weight: bold;
    }

    .k-chat .k-bubble {
        border-color: #fff;
        color: #424242;
        background-color: #fff;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
        transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
        order: -1;
    }

        .k-chat .k-bubble a {
            color: var(--themecolor);
        }

            .k-chat .k-bubble a:hover {
                color: #0f6190;
            }

        .k-chat .k-bubble:hover {
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.16);
        }

    .k-chat .k-selected .k-bubble {
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
    }

    .k-chat .k-alt .k-bubble {
        border-color: var(--themecolor);
        color: #fff;
        background-color: var(--themecolor);
        box-shadow: 0 1px 2px rgba(69, 102, 216, 0.2);
    }

        .k-chat .k-alt .k-bubble:hover {
            box-shadow: 0 1px 2px rgba(69, 102, 216, 0.2);
        }

    .k-chat .k-alt .k-selected .k-bubble {
        box-shadow: 0 3px 10px rgba(69, 102, 216, 0.4);
    }

    .k-chat .k-quick-reply {
        border-color: var(--themecolor);
        color: var(--themecolor);
        background-color: rgba(0, 0, 0, 0);
    }

        .k-chat .k-quick-reply:hover {
            border-color: var(--themecolor);
            color: #fff;
            background-color: var(--themecolor);
        }

    .k-chat-toolbar, .k-chat .k-toolbar-box {
        border-color: inherit;
        color: #424242;
        background-color: #fafafa;
    }

.k-mediaplayer {
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4285714286;
    display: block;
    position: relative;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-mediaplayer *, .k-mediaplayer *::before, .k-mediaplayer *::after {
        box-sizing: border-box;
    }

    .k-mediaplayer > iframe {
        width: 100%;
        height: 100%;
        border: 0;
        vertical-align: top;
    }

.k-mediaplayer-titlebar {
    padding: 8px 8px;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
}

.k-mediaplayer-toolbar-wrap {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    right: 0;
}

.k-mediaplayer-toolbar {
    border-width: 0;
    width: 100% !important;
    box-shadow: none;
}

    .k-mediaplayer-toolbar .k-dropdown-list, .k-mediaplayer-toolbar .k-dropdown, .k-mediaplayer-toolbar .k-dropdownlist {
        width: auto;
    }

.k-mediaplayer-time-wrap {
    flex: 1;
}

.k-mediaplayer-volume-wrap {
    padding: 0 7px;
    align-items: center;
}

.k-mediaplayer-volume {
    width: 100px;
}

.k-slider.k-mediaplayer-seekbar {
    width: 100%;
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    transform: translateY(-50%);
}

.k-mediaplayer-seekbar .k-slider-track {
    width: 100% !important;
    border-radius: 0;
}

.k-mediaplayer-seekbar .k-slider-selection {
    border-radius: 0;
}

.k-mediaplayer-fullscreen {
    z-index: 10000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

.k-mediaplayer {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

.k-mediaplayer-titlebar {
    color: #fff;
    background-image: linear-gradient(rgba(66, 66, 66, 0.7), rgba(66, 66, 66, 0));
    text-shadow: 0 0 2px rgba(66, 66, 66, 0.5);
}

.k-timeline {
    box-sizing: border-box;
    outline: 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4285714286;
    display: block;
    background-color: transparent;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-timeline *, .k-timeline *::before, .k-timeline *::after, .k-timeline::before, .k-timeline::after {
        box-sizing: border-box;
    }

    .k-timeline ul {
        margin: 0;
        padding: 0;
    }

        .k-timeline ul li {
            list-style-type: none;
        }

    .k-timeline .k-timeline-flag {
        display: inline-block;
        text-align: center;
        padding: 4px 8px;
        border-radius: 4px;
        line-height: 1.4285714286;
        min-width: 80px;
        max-width: 160px;
        position: relative;
        z-index: 1;
    }

    .k-timeline .k-timeline-circle {
        width: 16px;
        height: 16px;
        border-radius: 50%;
        flex-shrink: 0;
        position: relative;
        z-index: 1;
    }

    .k-timeline.k-timeline-dates-hidden .k-timeline-date {
        display: none;
    }

    .k-timeline .k-event-collapse {
        display: none;
    }

    .k-timeline.k-timeline-collapsible .k-card-header {
        cursor: pointer;
    }

    .k-timeline.k-timeline-collapsible .k-event-collapse {
        display: flex;
    }

.k-timeline-card .k-card {
    position: relative;
    overflow: visible;
}

    .k-timeline-card .k-card .k-card-header {
        overflow: visible;
        border-bottom: 0;
    }

        .k-timeline-card .k-card .k-card-header + .k-card-body {
            padding-top: 0;
        }

    .k-timeline-card .k-card .k-card-body {
        overflow-y: auto;
        scrollbar-width: thin;
    }

        .k-timeline-card .k-card .k-card-body::-webkit-scrollbar {
            width: 5px;
        }

        .k-timeline-card .k-card .k-card-body::-webkit-scrollbar-thumb {
            border-radius: 4px;
        }

.k-timeline-card .k-timeline-card-callout.k-callout-w, .k-timeline-card .k-timeline-card-callout.k-callout-e {
    top: 36px;
}

.k-timeline-vertical, .k-timeline-horizontal {
    padding: 0 40px;
    margin: 40px 0;
    width: 100%;
    position: relative;
    border: 0;
}

    .k-timeline-vertical::after, .k-timeline-horizontal .k-timeline-track-wrap::after {
        content: "";
        position: absolute;
        top: 0;
        border-width: 1px;
        border-style: solid;
    }

.k-timeline-vertical {
    padding-left: 127px;
}

    .k-timeline-vertical.k-timeline-dates-hidden {
        padding-left: 77px;
    }

    .k-timeline-vertical::after {
        height: 100%;
        width: 6px;
        transform: translateX(-50%);
        border-radius: 6px;
    }

    .k-timeline-vertical .k-timeline-flag-wrap {
        display: flex;
        align-items: center;
    }

        .k-timeline-vertical .k-timeline-flag-wrap:first-child {
            padding-top: 40px;
        }

    .k-timeline-vertical .k-timeline-flag {
        transform: translateX(-50%);
    }

    .k-timeline-vertical .k-timeline-date-wrap {
        position: absolute;
        padding-right: 16px;
        margin-top: 36px;
        transform: translate(-100%, -50%);
        text-align: right;
    }

    .k-timeline-vertical .k-timeline-event {
        display: flex;
        align-items: flex-start;
        padding: 40px 0;
    }

    .k-timeline-vertical .k-timeline-card {
        padding-left: 16px;
    }

        .k-timeline-vertical .k-timeline-card .k-card {
            margin-left: 16px;
            min-height: 70px;
            width: 400px;
            max-width: 100%
        }

            .k-timeline-vertical .k-timeline-card .k-card .k-card-header {
                border-radius: 6px;
            }

            .k-timeline-vertical .k-timeline-card .k-card .k-card-title {
                display: flex;
                justify-content: space-between;
            }

                .k-timeline-vertical .k-timeline-card .k-card .k-card-title .k-event-title {
                    white-space: nowrap;
                    text-overflow: ellipsis;
                    overflow: hidden;
                }

        .k-timeline-vertical .k-timeline-card .k-event-collapse {
            margin: -4px 0;
            transform: rotate(90deg);
            transition: transform .2s ease-in-out;
        }

        .k-timeline-vertical .k-timeline-card.k-collapsed .k-card-body, .k-timeline-vertical .k-timeline-card.k-collapsed .k-card-actions {
            display: none;
        }

        .k-timeline-vertical .k-timeline-card.k-collapsed .k-event-collapse {
            transform: rotate(0deg);
        }

    .k-timeline-vertical .k-timeline-circle {
        margin-top: 36px;
        transform: translate(-50%, -50%);
        margin-right: -8px;
    }

    .k-timeline-vertical.k-timeline-alternating {
        padding-left: 40px;
    }

        .k-timeline-vertical.k-timeline-alternating::after {
            left: 50%
        }

        .k-timeline-vertical.k-timeline-alternating .k-timeline-flag-wrap {
            justify-content: center;
        }

        .k-timeline-vertical.k-timeline-alternating .k-timeline-flag {
            transform: translateX(0);
        }

        .k-timeline-vertical.k-timeline-alternating .k-timeline-event {
            justify-content: space-between;
        }

            .k-timeline-vertical.k-timeline-alternating .k-timeline-event.k-reverse {
                flex-direction: row-reverse;
            }

                .k-timeline-vertical.k-timeline-alternating .k-timeline-event.k-reverse .k-timeline-date-wrap {
                    text-align: left;
                    padding-right: 0;
                    padding-left: 16px;
                }

                .k-timeline-vertical.k-timeline-alternating .k-timeline-event.k-reverse .k-timeline-card {
                    padding-left: 0;
                    padding-right: 16px;
                }

                    .k-timeline-vertical.k-timeline-alternating .k-timeline-event.k-reverse .k-timeline-card .k-card {
                        margin-right: 16px;
                        margin-left: auto;
                    }

        .k-timeline-vertical.k-timeline-alternating .k-timeline-card, .k-timeline-vertical.k-timeline-alternating .k-timeline-date-wrap {
            flex-basis: 50%;
            min-width: 0;
        }

        .k-timeline-vertical.k-timeline-alternating .k-timeline-date-wrap {
            position: static;
            transform: translateY(-50%);
        }

        .k-timeline-vertical.k-timeline-alternating .k-timeline-circle {
            transform: translateY(-50%);
            margin-right: 0;
        }

.k-timeline-horizontal .k-timeline-track-item {
    flex: 1 0 20%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    flex-direction: column;
}

    .k-timeline-horizontal .k-timeline-track-item:hover {
        cursor: pointer;
    }

    .k-timeline-horizontal .k-timeline-track-item.k-timeline-flag-wrap:hover {
        cursor: default;
    }

.k-timeline-horizontal .k-timeline-date-wrap {
    margin-top: auto;
    margin-bottom: 8px;
}

.k-timeline-horizontal .k-timeline-card {
    height: 100%
}

.k-timeline-horizontal .k-card {
    max-height: 100%
}

.k-timeline-horizontal .k-timeline-events-list {
    overflow-x: hidden;
    padding-top: 16px;
}

    .k-timeline-horizontal .k-timeline-events-list .k-timeline-scrollable-wrap {
        position: relative;
        height: 600px;
    }

        .k-timeline-horizontal .k-timeline-events-list .k-timeline-scrollable-wrap .k-timeline-event {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%
        }

.k-timeline-horizontal .k-timeline-track-wrap {
    position: relative;
    padding: 15px 0;
}

    .k-timeline-horizontal .k-timeline-track-wrap::after {
        top: auto;
        bottom: 18px;
        left: 28px;
        right: 28px;
        transform: translateY(-50%);
        height: 6px;
    }

    .k-timeline-horizontal .k-timeline-track-wrap .k-timeline-track {
        overflow: hidden;
        margin: 0 30px;
        position: relative;
        z-index: 2;
    }

        .k-timeline-horizontal .k-timeline-track-wrap .k-timeline-track .k-timeline-scrollable-wrap {
            transition: transform 1s ease-in-out;
        }

    .k-timeline-horizontal .k-timeline-track-wrap .k-timeline-flag {
        margin-bottom: 22px;
        position: relative;
        min-width: 60px;
    }

        .k-timeline-horizontal .k-timeline-track-wrap .k-timeline-flag::after {
            content: "";
            width: 10px;
            height: 10px;
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translate(-50%, 50%) rotate(45deg);
        }

.k-timeline-horizontal .k-timeline-scrollable-wrap {
    padding-bottom: 3px;
    display: flex;
    outline: 0;
}

.k-timeline-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    bottom: 11px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.k-timeline-arrow-left {
    left: 0;
}

.k-timeline-arrow-right {
    right: 0;
}

.k-timeline-mobile {
    padding: 0 16px;
    margin: 16px 0;
}

    .k-timeline-mobile .k-timeline-flag {
        max-width: 112px;
    }

    .k-timeline-mobile.k-timeline-horizontal .k-timeline-flag-wrap {
        display: none;
    }

    .k-timeline-mobile.k-timeline-vertical {
        padding-left: 103px;
    }

        .k-timeline-mobile.k-timeline-vertical.k-timeline-dates-hidden {
            padding-left: 53px;
        }

        .k-timeline-mobile.k-timeline-vertical.k-timeline-alternating {
            padding-left: 16px;
        }

        .k-timeline-mobile.k-timeline-vertical .k-timeline-card {
            width: 100%
        }

            .k-timeline-mobile.k-timeline-vertical .k-timeline-card .k-card {
                width: auto;
            }

.k-timeline .k-timeline-flag {
    color: #fff;
    background-color: var(--themecolor);
}

.k-timeline .k-timeline-circle {
    background-color: var(--themecolor);
}

.k-timeline .k-timeline-card .k-card-header {
    background-color: #fff;
    color: #424242;
}

.k-timeline .k-timeline-card .k-card-body {
    scrollbar-color: rgba(0, 0, 0, 0.08) #fff;
}

    .k-timeline .k-timeline-card .k-card-body::-webkit-scrollbar-track {
        background: #fff;
    }

    .k-timeline .k-timeline-card .k-card-body::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.08);
    }

        .k-timeline .k-timeline-card .k-card-body::-webkit-scrollbar-thumb:hover {
            background: rgba(0, 0, 0, 0.08);
        }

.k-timeline .k-timeline-date {
    color: #424242;
}

.k-timeline .k-timeline-arrow.k-disabled {
    opacity: 1;
    color: #848484;
    background-color: #f9f9f9;
    border-color: #f3f3f3;
}

.k-timeline-vertical::after, .k-timeline-horizontal .k-timeline-track-wrap::after {
    background-color: #f5f5f5;
    border-color: var(--kendo-border-color);
}

.k-timeline-horizontal .k-timeline-flag::after {
    background-color: var(--themecolor);
}

.k-timeline-track-item.k-focus .k-timeline-circle {
    box-shadow: 0 3px 4px 0 rgba(69, 102, 216, 0.4);
}

.k-pdf-viewer {
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    position: relative;
    outline: 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4285714286;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-pdf-viewer .k-toolbar {
        border-top-width: 0;
        border-right-width: 0;
        border-left-width: 0;
        border-color: inherit;
        flex: 0 0 auto;
        z-index: 2;
    }

        .k-pdf-viewer .k-toolbar .k-pager-wrap, .k-pdf-viewer .k-toolbar .k-pager {
            padding: 0;
            border-width: 0;
            color: inherit;
            background: none;
            overflow: visible;
        }

    .k-pdf-viewer .k-canvas {
        display: flex;
        flex-direction: column;
        flex: 1 1 auto;
        outline: none;
    }

        .k-pdf-viewer .k-canvas .k-enable-text-select, .k-pdf-viewer .k-canvas.k-enable-text-select {
            -webkit-user-select: text;
            -moz-user-select: text;
            user-select: text;
            cursor: text;
        }

        .k-pdf-viewer .k-canvas .k-enable-panning, .k-pdf-viewer .k-canvas.k-enable-panning {
            cursor: grab;
        }

            .k-pdf-viewer .k-canvas .k-enable-panning span::-moz-selection, .k-pdf-viewer .k-canvas.k-enable-panning span::-moz-selection {
                background-color: transparent;
            }

            .k-pdf-viewer .k-canvas .k-enable-panning span::selection, .k-pdf-viewer .k-canvas.k-enable-panning span::selection {
                background-color: transparent;
            }

    .k-pdf-viewer .k-pdf-viewer-pages {
        flex: 1 1 auto;
    }

    .k-pdf-viewer .k-page {
        position: relative;
        margin: 30px auto;
    }

        .k-pdf-viewer .k-page canvas {
            direction: ltr;
        }

        .k-pdf-viewer .k-page .k-text-layer {
            position: absolute;
            top: 0;
            left: 0;
            opacity: .2;
            overflow: hidden;
        }

            .k-pdf-viewer .k-page .k-text-layer > span {
                position: absolute;
                line-height: 1.25;
                transform-origin: 0% 0%;
                color: transparent;
            }

            .k-pdf-viewer .k-page .k-text-layer mark {
                color: transparent;
            }

            .k-pdf-viewer .k-page .k-text-layer .k-search-highlight-mark {
                color: transparent;
            }

    .k-pdf-viewer .k-blank-page {
        margin: 0;
        display: flex;
        flex-flow: column nowrap;
        width: 100%;
        height: 100%;
        align-items: center;
        justify-content: center;
        background-color: inherit !important;
    }

        .k-pdf-viewer .k-blank-page .k-upload, .k-pdf-viewer .k-blank-page .k-dropzone, .k-pdf-viewer .k-blank-page .k-dropzone-inner {
            border: 0;
            background: none;
        }

        .k-pdf-viewer .k-blank-page > .k-icon {
            font-size: 48px;
        }

.k-pdf-viewer-search-dialog {
    padding: 0 !important;
}

.k-search-panel, .k-search-container {
    padding: 16px 8px;
    display: flex;
    gap: 8px;
    flex-flow: row nowrap;
    flex: 0 0 auto;
    justify-content: flex-start;
    align-items: center;
}

    .k-search-panel .k-search-dialog-draghandle, .k-search-container .k-search-dialog-draghandle {
        cursor: move;
        margin-left: 0;
    }

    .k-search-panel .k-textbox, .k-search-container .k-textbox {
        width: 10em;
        flex: none;
    }

        .k-search-panel .k-textbox .k-button, .k-search-container .k-textbox .k-button {
            border-width: 0;
        }

    .k-search-panel .k-search-matches, .k-search-container .k-search-matches {
        display: inline-flex;
        gap: 4px;
    }

.k-pdf-viewer-canvas > .k-search-panel, .k-pdf-viewer-canvas > .k-search-container {
    width: -moz-max-content;
    width: max-content;
    margin-top: calc(-1.4285714286em + -44px);
    border-width: 1px;
    border-style: solid;
    border-radius: 0;
    z-index: 10;
}

.k-pdf-viewer {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

    .k-pdf-viewer .k-canvas {
        background-color: #fafafa;
    }

    .k-pdf-viewer .k-page {
        border-color: var(--kendo-border-color);
        color: #424242;
        background-color: #fff;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    }

    .k-pdf-viewer .k-blank-page > .k-icon {
        color: #7e7e7e;
    }

    .k-pdf-viewer .k-search-highlight {
        background-color: #424242;
    }

    .k-pdf-viewer .k-search-highlight-mark {
        background-color: #ff0;
    }

.k-pdf-viewer-canvas > .k-search-panel, .k-pdf-viewer-canvas > .k-search-container {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.06);
}

.km-scrollview, .km-scroll-container {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border-collapse: separate;
}

.km-scroll-wrapper {
    position: relative;
}

.km-scroll-header {
    position: absolute;
    z-index: 1001;
    width: 100%;
    top: 0;
    left: 0;
}

.km-scroller-pull {
    width: 100%;
    display: block;
    position: absolute;
    line-height: 3em;
    font-size: 1.4em;
    text-align: center;
    transform: translate3d(0, -3em, 0);
}

    .km-scroller-pull .km-template {
        display: inline-block;
        min-width: 200px;
        text-align: left;
    }

.km-load-more .km-icon, .km-widget .km-scroller-pull .km-icon {
    display: inline-block;
    height: 2rem;
    margin-right: 1rem;
    vertical-align: middle;
    width: 2rem;
    font-size: 2rem;
    transform: rotate(0deg);
    transition: transform 300ms linear;
}

.km-widget .km-scroller-release .km-icon {
    transform: rotate(180deg);
}

.km-widget .km-scroller-refresh .km-icon {
    transition: none;
}

.km-touch-scrollbar {
    position: absolute;
    visibility: hidden;
    z-index: 200000;
    height: .4em;
    width: .4em;
    opacity: 0;
    transform-origin: 0 0;
    transition: opacity .3s linear;
}

.k-map .km-touch-scrollbar, .k-diagram .km-touch-scrollbar {
    display: none;
}

.km-vertical-scrollbar {
    height: 100%;
    right: 2px;
    top: 0;
}

.km-horizontal-scrollbar {
    width: 100%;
    left: 0;
    bottom: 2px;
}

.km-touch-scrollbar {
    background-color: #333333;
}

kendo-scrollview.k-scrollview-wrap, kendo-scrollview.k-scrollview, .k-scrollview {
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4285714286;
    position: relative;
    overflow: hidden;
    display: block;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-scrollview-wrap .k-scrollview, .k-scrollview .k-scrollview-wrap {
        list-style-type: none;
        position: absolute;
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        cursor: default;
        white-space: nowrap;
    }

        .k-scrollview-wrap .k-scrollview img, .k-scrollview .k-scrollview-wrap img {
            -webkit-user-select: none;
            -moz-user-select: none;
            user-select: none;
        }

        .k-scrollview-wrap .k-scrollview > li, .k-scrollview .k-scrollview-wrap > li {
            display: inline-block;
            overflow: hidden;
            position: absolute;
            top: 0;
            left: 0;
        }

        .k-scrollview-wrap .k-scrollview > [data-role="page"], .k-scrollview .k-scrollview-wrap > [data-role="page"] {
            vertical-align: top;
            display: inline-block;
            min-height: 1px;
        }

.k-scrollview-wrap.k-scrollview-animate {
    display: flex;
    flex-flow: row nowrap;
    width: calc(var(--kendo-scrollview-views, 1)*100%);
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transform: translateX(calc(-100%/var(--kendo-scrollview-views, 1)*(var(--kendo-scrollview-current,  1) - 1)));
}

    .k-scrollview-wrap.k-scrollview-animate .k-scrollview-view {
        width: calc(100%/var(--kendo-scrollview-views, 1));
        flex: 0 0 calc(100%/var(--kendo-scrollview-views, 1));
    }

[dir="rtl"] .k-scrollview-wrap.k-scrollview-animate, .k-rtl .k-scrollview-wrap.k-scrollview-animate {
    transform: translateX(calc(100%/var(--kendo-scrollview-views, 1)*(var(--kendo-scrollview-current,  1) - 1)));
}

kendo-scrollview.k-scrollview-wrap kendo-scrollview-pager, kendo-scrollview.k-scrollview kendo-scrollview-pager, .k-scrollview-nav-wrap {
    padding: 0;
    margin: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50px;
    text-align: center;
}

kendo-scrollview.k-scrollview-wrap kendo-scrollview-pager, kendo-scrollview.k-scrollview kendo-scrollview-pager {
    pointer-events: none;
}

kendo-scrollview.k-scrollview-wrap .k-scrollview-nav, kendo-scrollview.k-scrollview .k-scrollview-nav {
    pointer-events: initial;
}

.k-scrollview-pageable, .k-scrollview-nav {
    margin: 0;
    padding: 20px;
    max-width: 100%;
    box-sizing: border-box;
    line-height: 0;
    text-align: center;
    white-space: nowrap;
    list-style: none;
    display: inline-flex;
    align-items: center;
    overflow-x: scroll;
    overflow-y: hidden;
    pointer-events: initial;
}

    .k-scrollview-pageable:focus, .k-scrollview-nav:focus {
        outline: none;
    }

    .k-scrollview-pageable > .k-button, .k-scrollview-nav > .k-link {
        margin-block: 0;
        margin-inline: 10px;
        padding: 0;
        width: 10px;
        height: 10px;
        border-width: 0px;
        border-style: solid;
        border-radius: 50%;
        box-sizing: content-box;
        display: inline-block;
        position: relative;
        flex: 0 0 auto;
        cursor: pointer;
        pointer-events: all;
        vertical-align: top;
    }

        .k-scrollview-pageable > .k-button::before, .k-scrollview-nav > .k-link::before {
            content: "";
            width: 30px;
            height: 30px;
            display: block;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: initial;
            border-radius: 0;
        }

.k-scrollview-next, .k-scrollview-prev {
    display: table;
    position: absolute;
    padding: 0;
    height: 60%;
    top: 20%;
    text-decoration: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    cursor: pointer;
}

    .k-scrollview-next .k-icon, .k-scrollview-prev .k-icon {
        display: table-cell;
        overflow: visible;
        margin: 0;
        padding: 0;
        vertical-align: middle;
        font-size: 4.5em;
        font-weight: normal;
    }

.k-scrollview-prev {
    left: 0;
}

.k-scrollview-next {
    right: 0;
}

.k-scrollview-animation {
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
}

@supports (-webkit-user-select: none) {
    kendo-scrollview.k-scrollview-wrap ul.k-scrollview li > *, kendo-scrollview.k-scrollview ul.k-scrollview-wrap li > *, div.k-scrollview ul.k-scrollview-wrap li > * {
        pointer-events: auto;
    }
}

@supports not (-webkit-user-select: none) {
    kendo-scrollview.k-scrollview-wrap ul.k-scrollview li > *, kendo-scrollview.k-scrollview ul.k-scrollview-wrap li > *, div.k-scrollview ul.k-scrollview-wrap li > * {
        pointer-events: none;
    }
}

kendo-scrollview.k-scrollview-wrap, kendo-scrollview.k-scrollview, div.k-scrollview {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

    kendo-scrollview.k-scrollview-wrap.k-scrollview-dark kendo-scrollview-pager, kendo-scrollview.k-scrollview-wrap.k-scrollview-dark .k-scrollview-nav-wrap, kendo-scrollview.k-scrollview.k-scrollview-dark kendo-scrollview-pager, kendo-scrollview.k-scrollview.k-scrollview-dark .k-scrollview-nav-wrap, div.k-scrollview.k-scrollview-dark kendo-scrollview-pager, div.k-scrollview.k-scrollview-dark .k-scrollview-nav-wrap {
        background-color: rgba(0, 0, 0, 0.4);
    }

    kendo-scrollview.k-scrollview-wrap.k-scrollview-dark .k-scrollview-next, kendo-scrollview.k-scrollview-wrap.k-scrollview-dark .k-scrollview-prev, kendo-scrollview.k-scrollview.k-scrollview-dark .k-scrollview-next, kendo-scrollview.k-scrollview.k-scrollview-dark .k-scrollview-prev, div.k-scrollview.k-scrollview-dark .k-scrollview-next, div.k-scrollview.k-scrollview-dark .k-scrollview-prev {
        color: rgba(0, 0, 0, 0.4);
    }

    kendo-scrollview.k-scrollview-wrap.k-scrollview-light kendo-scrollview-pager, kendo-scrollview.k-scrollview-wrap.k-scrollview-light .k-scrollview-nav-wrap, kendo-scrollview.k-scrollview.k-scrollview-light kendo-scrollview-pager, kendo-scrollview.k-scrollview.k-scrollview-light .k-scrollview-nav-wrap, div.k-scrollview.k-scrollview-light kendo-scrollview-pager, div.k-scrollview.k-scrollview-light .k-scrollview-nav-wrap {
        background-color: rgba(255, 255, 255, 0.4);
    }

.k-scrollview:focus, .k-scrollview-wrap:focus {
    outline: none;
}

.k-scrollview-elements {
    color: #fff;
}

.k-scrollview-next, .k-scrollview-prev {
    color: #fff;
    background-color: rgba(0, 0, 0, 0);
    text-shadow: rgba(0, 0, 0, 0.3) 0 0 15px;
    opacity: .7;
    outline-width: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-scrollview-next:focus, .k-scrollview-next.k-focus, .k-scrollview-prev:focus, .k-scrollview-prev.k-focus {
        color: #fff;
        opacity: 1;
    }

        .k-scrollview-next:focus .k-icon::before, .k-scrollview-next.k-focus .k-icon::before, .k-scrollview-prev:focus .k-icon::before, .k-scrollview-prev.k-focus .k-icon::before {
            box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.13);
        }

    .k-scrollview-next:hover, .k-scrollview-next.k-hover, .k-scrollview-prev:hover, .k-scrollview-prev.k-hover {
        color: #fff;
        opacity: 1;
    }

.k-scrollview-pageable > .k-button, .k-scrollview-nav > .k-link {
    background: #f5f5f5;
    border: rgba(0, 0, 0, 0.08);
}

    .k-scrollview-pageable > .k-button.k-primary, .k-scrollview-nav > .k-link.k-primary {
        background: var(--themecolor);
        border: var(--themecolor);
    }

    .k-scrollview-pageable > .k-button:focus, .k-scrollview-pageable > .k-button.k-focus, .k-scrollview-nav > .k-link:focus, .k-scrollview-nav > .k-link.k-focus {
        box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.13);
    }

    .k-scrollview-nav > .k-link:hover, .k-scrollview-nav > .k-link.k-hover {
        box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.13);
    }

.k-scrollview-pageable > .k-button {
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.08);
}

.k-barcode {
    display: inline-block;
}

    .k-barcode > div {
        height: 150px;
    }

.k-var--chart-font {
    font-size: 14px;
}

.k-var--chart-title-font {
    font-size: 1.143em;
}

.k-var--chart-pane-title-font {
    font-size: .857em;
    font-weight: 400;
}

.k-var--chart-label-font {
    font-size: .857em;
}

.k-chart, .k-sparkline, .k-stockchart {
    border-width: 0px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4285714286;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-chart, .k-stockchart {
    display: block;
    height: 400px;
}

.k-chart-surface {
    height: 100%
}

.k-chart .k-popup {
    border-width: 0;
}

.k-chart-tooltip-wrapper .k-animation-container-shown, .k-chart-tooltip-wrapper.k-animation-container-shown {
    transition: left 300ms cubic-bezier(0, 0.33, 0.19, 1), top 300ms cubic-bezier(0, 0.33, 0.19, 1);
}

.k-sparkline-tooltip-wrapper, .k-chart-tooltip-wrapper {
    z-index: 12000;
}

    .k-sparkline-tooltip-wrapper .k-popup, .k-chart-tooltip-wrapper .k-popup {
        padding: 0;
        border-width: 0;
        background: transparent;
    }

.k-chart-tooltip table {
    border-spacing: 0;
    border-collapse: collapse;
}

.k-chart-tooltip {
    border-radius: 4px;
    font-size: 13.006px;
    line-height: 1.4285714286;
    padding: 4px 8px;
}

    .k-chart-tooltip th {
        width: auto;
        text-align: center;
        padding: 1px;
    }

    .k-chart-tooltip td {
        width: auto;
        text-align: left;
        padding: 2px 4px;
        line-height: 1.4285714286;
        vertical-align: middle;
    }

.k-chart-crosshair-tooltip, .k-chart-shared-tooltip {
    border-width: 1px;
    border-style: solid;
}

    .k-chart-shared-tooltip .k-chart-shared-tooltip-marker {
        display: block;
        width: 15px;
        height: 3px;
        vertical-align: middle;
    }

.k-selector {
    position: absolute;
    transform: translateZ(0);
}

.k-selection {
    position: absolute;
    height: 100%;
    border-width: 1px;
    border-style: solid;
    border-bottom: 0;
}

.k-selection-bg {
    position: absolute;
    width: 100%;
    height: 100%
}

.k-handle {
    border-radius: 50%;
    width: 22px;
    height: 22px;
    border-width: 1px;
    border-style: solid;
    z-index: 1;
    position: absolute;
    box-sizing: content-box;
}

    .k-handle div {
        width: 100%;
        height: 100%
    }

.k-left-handle {
    left: -11px;
}

.k-right-handle {
    right: -11px;
}

.k-left-handle div {
    margin: -22px 0 0 -14.6666666667px;
    padding: 44px 29.3333333333px 0 0;
}

.k-right-handle div {
    margin: -22px 0 0 -14.6666666667px;
    padding: 44px 0 0 29.3333333333px;
}

.k-left-handle.k-handle-active div {
    margin-left: -44px;
    padding-left: 58.6666666667px;
}

.k-right-handle.k-handle-active div {
    margin-left: -44px;
    padding-right: 58.6666666667px;
}

.k-mask {
    position: absolute;
    height: 100%
}

.k-navigator-hint div {
    position: absolute;
}

.k-navigator-hint .k-scroll {
    border-radius: 4px;
    position: absolute;
    height: 4px;
}

.k-navigator-hint .k-tooltip {
    margin-top: 20px;
    min-width: 160px;
    opacity: 1;
    text-align: center;
}

.k-sparkline, .k-sparkline span {
    display: inline-block;
    vertical-align: top;
}

    .k-sparkline span {
        height: 100%;
        width: 100%
    }

.k-chart-dragging {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.k-chart-donut-center {
    position: absolute;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border-radius: 50%;
    text-align: center;
    border: 4px solid transparent;
    box-sizing: border-box;
}

.k-pdf-export .k-chart .k-animation-container, .k-pdf-export .k-sparkline .k-animation-container, .k-pdf-export .k-stockchart .k-animation-container {
    display: none;
}

.k-diagram {
    height: 600px;
}

    .k-diagram .km-scroll-wrapper {
        width: 100%;
        height: 100%;
        position: relative;
    }

    .k-diagram .km-scroll-wrapper {
        width: 100%;
        height: 100%;
        position: relative;
    }

.k-canvas-container {
    width: 100%;
    height: 100%
}

.k-treemap {
    height: 400px;
    box-sizing: border-box;
    border-width: 1px;
    border-style: solid;
    outline: 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4285714286;
    display: block;
    overflow: hidden;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .k-treemap .k-treemap-tile {
        margin: -1px 0 0 -1px;
        height: 100%;
        box-sizing: border-box;
        border: 1px solid;
        border-color: inherit;
        color: inherit;
        background-color: inherit;
        overflow: hidden;
        position: absolute;
    }

    .k-treemap > .k-treemap-tile {
        position: relative;
    }

    .k-treemap .k-treemap-title {
        padding: 2px 4px;
        border-width: 0 0 1px;
        border-style: solid;
        border-color: inherit;
        font-size: 14px;
        background-position: 0 0;
        background-repeat: repeat-x;
    }

    .k-treemap .k-treemap-title-vertical {
        padding: 4px 2px;
        width: 1.4285714286em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        position: absolute;
        top: 0;
        bottom: 0;
    }

        .k-treemap .k-treemap-title-vertical > div {
            transform-origin: right;
            transform: rotate(-90deg);
            position: absolute;
            top: 0;
            right: 1em;
        }

    .k-treemap .k-treemap-wrap {
        border-color: inherit;
        color: inherit;
        background-color: inherit;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    }

    .k-treemap .k-treemap-title + .k-treemap-wrap {
        top: 25.0000000004px;
    }

    .k-treemap .k-treemap-title-vertical + .k-treemap-wrap {
        left: 25.0000000004px;
    }

    .k-treemap .k-leaf {
        padding: 4px;
    }

.k-gauge {
    text-align: left;
    position: relative;
}

.k-arcgauge, .k-circulargauge {
    display: inline-block;
}

.k-arcgauge-label, .k-circulargauge-label {
    position: absolute;
    text-align: center;
    padding: 0;
    margin: 0;
}

.k-qrcode {
    display: inline-block;
}

    .k-qrcode > div {
        height: 150px;
    }

.k-var--primary {
    background-color: var(--themecolor);
}

.k-var--primary-contrast {
    background-color: #fff;
}

.k-var--base {
    background-color: #fafafa;
}

.k-var--background {
    background-color: #fff;
}

.k-var--border-radius {
    margin-top: 4px;
}

.k-var--normal-background {
    background-color: #fafafa;
}

.k-var--normal-text-color {
    background-color: #424242;
}

.k-var--hover-background {
    background-color: #ececec;
}

.k-var--hover-text-color {
    background-color: #424242;
}

.k-var--selected-background {
    background-color: var(--themecolor);
}

.k-var--selected-text-color {
    background-color: #fff;
}

.k-var--success {
    background-color: #5cb85c;
}

.k-var--info {
    background-color: #0058E9;
}

.k-var--warning {
    background-color: #F5A600;
}

.k-var--error {
    background-color: #df5438;
}

.k-var--series-a {
    background-color: #1274AC;
}

.k-var--series-b {
    background-color: #FFE162;
}

.k-var--series-c {
    background-color: #4CD180;
}

.k-var--series-d {
    background-color: #0074e6;
}

.k-var--series-e {
    background-color: #9B4FE6;
}

.k-var--series-f {
    background-color: #FF80AC;
}

.k-var--series-1 {
    background-color: #1274AC;
}

.k-var--series-2 {
    background-color: #FFE162;
}

.k-var--series-3 {
    background-color: #4CD180;
}

.k-var--series-4 {
    background-color: #0074e6;
}

.k-var--series-5 {
    background-color: #9B4FE6;
}

.k-var--series-6 {
    background-color: #FF80AC;
}

.k-var--series-7 {
    background-color: #4d97c1;
}

.k-var--series-8 {
    background-color: #ffe989;
}

.k-var--series-9 {
    background-color: #79dda0;
}

.k-var--series-10 {
    background-color: #4097ec;
}

.k-var--series-11 {
    background-color: #b47bec;
}

.k-var--series-12 {
    background-color: #ffa0c1;
}

.k-var--series-13 {
    background-color: #0e5781;
}

.k-var--series-14 {
    background-color: #bfa94a;
}

.k-var--series-15 {
    background-color: #399d60;
}

.k-var--series-16 {
    background-color: #0057ad;
}

.k-var--series-17 {
    background-color: #743bad;
}

.k-var--series-18 {
    background-color: #bf6081;
}

.k-var--series-19 {
    background-color: #89bad6;
}

.k-var--series-20 {
    background-color: #fff0b1;
}

.k-var--series-21 {
    background-color: #a6e8c0;
}

.k-var--series-22 {
    background-color: #80baf3;
}

.k-var--series-23 {
    background-color: #cda7f3;
}

.k-var--series-24 {
    background-color: #ffc0d6;
}

.k-var--series-25 {
    background-color: #093a56;
}

.k-var--series-26 {
    background-color: #807131;
}

.k-var--series-27 {
    background-color: #266940;
}

.k-var--series-28 {
    background-color: #003a73;
}

.k-var--series-29 {
    background-color: #4e2873;
}

.k-var--series-30 {
    background-color: #804056;
}

.k-var--gauge-pointer {
    background-color: var(--themecolor);
}

.k-var--gauge-track {
    background-color: #ebebeb;
}

.k-var--chart-inactive {
    background-color: rgba(66, 66, 66, 0.5);
}

.k-var--chart-major-lines {
    background-color: rgba(0, 0, 0, 0.08);
}

.k-var--chart-minor-lines {
    background-color: rgba(0, 0, 0, 0.04);
}

.k-var--chart-area-opacity {
    opacity: .6;
}

.k-var--chart-area-inactive-opacity {
    opacity: .1;
}

.k-var--chart-line-inactive-opacity {
    opacity: .3;
}

.k-var--chart-notes-background {
    background-color: rgba(0, 0, 0, 0.5);
}

.k-var--chart-notes-border {
    background-color: rgba(0, 0, 0, 0.5);
}

.k-var--chart-notes-lines {
    background-color: rgba(0, 0, 0, 0.5);
}

.k-var--chart-crosshair-background {
    background-color: rgba(0, 0, 0, 0.5);
}

.k-var--chart-error-bars-background {
    background-color: rgba(0, 0, 0, 0.5);
}

.k-chart, .k-sparkline, .k-stockchart {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: rgba(0, 0, 0, 0);
}

    .k-chart .k-popup, .k-sparkline .k-popup, .k-stockchart .k-popup {
        background: transparent;
    }

.k-chart-tooltip {
    color: #fff;
}

.k-chart-tooltip-inverse {
    color: #000;
}

.k-chart-crosshair-tooltip, .k-chart-shared-tooltip {
    color: #424242;
    background-color: #ebebeb;
    border-color: var(--kendo-border-color);
}

.k-selection {
    border-color: var(--kendo-border-color);
    box-shadow: inset 0 1px 7px rgba(0, 0, 0, 0.15);
}

.k-selection-bg {
    background-color: transparent;
}

.k-handle {
    cursor: e-resize;
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #f5f5f5;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
}

    .k-handle:hover {
        background-color: #ebebeb;
    }

    .k-handle div {
        background-color: transparent;
    }

.k-mask {
    background-color: #fff;
    opacity: .8;
}

.k-treemap {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

    .k-treemap .k-treemap-title {
        border-color: var(--kendo-border-color);
        color: #424242;
        background-color: #fafafa;
    }

    .k-treemap .k-leaf {
        color: #fff;
    }

        .k-treemap .k-leaf.k-inverse {
            color: #424242;
        }

        .k-treemap .k-leaf:hover, .k-treemap .k-leaf.k-hover {
            box-shadow: inset 0 0 0 3px rgba(0, 0, 0, 0.08);
        }

.k-map {
    height: 600px;
    box-sizing: border-box;
    border-width: 0px;
    border-style: solid;
    font-size: 14px;
    line-height: 1.4285714286;
    font-family: inherit;
}

    .k-map *, .k-map *::before, .k-map *::after {
        box-sizing: border-box;
    }

    .k-map .km-scroll-wrapper {
        width: 100%;
        height: 100%;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
        position: absolute;
    }

    .k-map .km-scroll-container {
        height: 100%
    }

    .k-map .k-touch-scrollbar {
        display: none;
    }

    .k-map .k-layer {
        position: absolute;
        left: 0;
        top: 0;
    }

    .k-map .k-marker {
        transform: translate(-50%, -100%);
        font-size: 32px;
        cursor: pointer;
        position: absolute;
        overflow: visible;
    }

    .k-map .k-attribution {
        padding: 2px 4px;
        border-width: 0;
        font-size: 10.5px;
        z-index: 1000;
    }

.k-map-controls {
    position: absolute;
    display: flex;
    align-items: center;
}

.k-navigator {
    margin: 16px;
    width: 52px;
    height: 52px;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    border-radius: 50%;
    position: relative;
}

.k-pdf-export .k-navigator {
    display: none;
}

.k-navigator .k-button {
    padding: 0;
    width: auto;
    height: auto;
    line-height: 1;
    box-shadow: none;
    position: absolute;
}

    .k-navigator .k-button .k-icon {
        min-width: 0;
        min-height: 0;
    }

.k-navigator .k-navigator-n, .k-navigator .k-navigator-up {
    transform: translateX(-50%);
    top: 2px;
    left: 50%
}

.k-navigator .k-navigator-e, .k-navigator .k-navigator-right {
    transform: translateY(-50%);
    right: 2px;
    top: 50%
}

.k-navigator .k-navigator-s, .k-navigator .k-navigator-down {
    transform: translateX(-50%);
    bottom: 2px;
    left: 50%
}

.k-navigator .k-navigator-w, .k-navigator .k-navigator-left {
    transform: translateY(-50%);
    left: 2px;
    top: 50%
}

.k-zoom-control {
    margin: 16px;
    border: 0;
    background: none;
    display: flex;
}

.k-pdf-export .k-zoom-control {
    display: none;
}

.k-map {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

    .k-map .k-navigator {
        border-color: var(--kendo-border-color);
        color: #424242;
        background-color: #f5f5f5;
        background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
    }

    .k-map .k-marker {
        color: var(--themecolor);
    }

    .k-map .k-attribution {
        background-color: rgba(255, 255, 255, 0.8);
    }

.k-orgchart {
    width: 100%;
    padding: 24px 24px;
    box-sizing: border-box;
    font-size: 14px;
    font-family: inherit;
    line-height: 1.4285714286;
    overflow: auto;
}

    .k-orgchart *, .k-orgchart *::before, .k-orgchart *::after {
        box-sizing: border-box;
    }

.k-orgchart-container {
    margin: 0 auto;
    width: 100%;
    height: 100%;
    position: relative;
}

.k-orgchart-group {
    gap: 24px;
}

    .k-orgchart-group.k-vstack > .k-orgchart-node-container, .k-orgchart-group.k-vbox > .k-orgchart-node-container {
        gap: 0;
    }

.k-orgchart-node-container {
    gap: 24px;
}

.k-orgchart-node-group-container {
    border-radius: 4px;
    padding: 24px 24px;
    border-width: 1px;
    border-style: solid;
    outline: 0;
}

.k-orgchart-node-group-title {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.25;
}

.k-orgchart-node-group-subtitle {
    margin: 0 0 24px;
    font-size: 14px;
}

.k-orgchart-card {
    width: 300px;
    border-width: 1px;
}

    .k-orgchart-card .k-card-title {
        margin: 0 0 0px;
    }

    .k-orgchart-card .k-card-subtitle {
        margin: 0 0 0px;
    }

    .k-orgchart-card .k-card-body {
        border-width: 2px 0 0;
        border-style: solid;
        flex-grow: 0;
    }

        .k-orgchart-card .k-card-body .k-card-title-wrap {
            margin: 0 12px 0 0;
            min-width: 0;
            min-height: 45px;
        }

.k-orgchart-line {
    background-color: currentColor;
}

.k-orgchart-line-h {
    height: 1px;
}

.k-orgchart-line-v {
    margin: 0 auto;
    width: 1px;
    height: 25px;
}

.k-orgchart-button {
    z-index: 1;
}

.k-orgchart {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fff;
}

.k-orgchart-card .k-card-body {
    border-color: rgba(0, 0, 0, 0);
}

.k-orgchart-card:focus, .k-orgchart-card.k-focus {
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.06);
}

.k-orgchart-node-group-container {
    border-color: var(--kendo-border-color);
    color: #424242;
    background-color: #fafafa;
}

    .k-orgchart-node-group-container:focus, .k-orgchart-node-group-container.k-focus {
        box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.06);
        border-color: rgba(0, 0, 0, 0.15);
    }

.k-orgchart-node-group-subtitle {
    color: #666;
}

.k-orgchart-line-h, .k-orgchart-line-v {
    color: rgba(0, 0, 0, 0.08);
}

.k-signature {
    width: 250px;
    min-height: 84px;
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .k-signature.k-signature-maximized {
        width: 750px;
        height: 252px;
    }

        .k-signature.k-signature-maximized > .k-signature-line {
            border-bottom-width: 3px;
        }

.k-signature-actions {
    display: flex;
    width: -moz-min-content;
    width: min-content;
    -webkit-margin-start: auto;
    margin-inline-start: auto;
    gap: 4px;
    z-index: 2;
}

.k-signature-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
    outline: none;
}

.k-signature-line {
    position: absolute;
    bottom: 33%;
    z-index: 2;
    pointer-events: none;
    border-bottom-width: 1px;
    border-bottom-style: dashed;
}

.k-signature-sm {
    padding-inline: 2px;
    padding-block: 2px;
}

    .k-signature-sm .k-signature-line {
        width: calc(100% - 4px);
    }

.k-signature-md {
    padding-inline: 4px;
    padding-block: 4px;
}

    .k-signature-md .k-signature-line {
        width: calc(100% - 8px);
    }

.k-signature-lg {
    padding-inline: 8px;
    padding-block: 8px;
}

    .k-signature-lg .k-signature-line {
        width: calc(100% - 16px);
    }

.k-signature-lg {
    min-height: 110px;
}

.k-signature .k-signature-line {
    border-bottom-color: rgba(0, 88, 233, 0.24);
}
