.k-theme-test-class,
.k-common-test-class {
    opacity: 0;
}

[hidden] {
    display: none !important;
}

script {
    display: none !important;
}

.k-hidden {
    display: none !important;
}

.k-rtl {
    direction: rtl;
}

.k-sr-only {
    position: absolute;
    left: -1px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.k-hbox,
.k-hstack {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
}

.k-vbox,
.k-vstack {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
}

.k-flex,
.k-spacer {
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
}

.k-flex-layout {
    display: -ms-flexbox;
    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;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
    -ms-flex-item-align: stretch;
    align-self: stretch;
}

.k-separator-horizontal,
.k-vstack > .k-separator {
    width: auto;
    height: 0;
    border-width: 1px 0 0;
}

.k-separator-vertical,
.k-hstack > .k-separator {
    width: 0;
    height: auto;
    border-width: 0 0 0 1px;
}

hr.k-separator {
    margin: 0;
    padding: 0;
}

.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%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -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 ::selection {
    background-color: #0d6efd;
    color: white;
}

.k-block,
.k-panel {
    border-radius: 0.25rem;
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
    padding: 1rem 1rem;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
}

    .k-block > .k-header,
    .k-panel > .k-header {
        border-top-left-radius: 0.25rem;
        border-top-right-radius: 0.25rem;
        border-color: #dee2e6;
        color: #212529;
        background-color: #f8f9fa;
        margin: -1rem -1rem 1rem;
        padding: 1rem 1rem;
    }

.k-content {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-disabled,
.k-widget[disabled],
.k-disabled {
    outline: none;
    cursor: default;
    opacity: 0.65;
    -webkit-filter: grayscale(0.1);
    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;
        -webkit-filter: grayscale(0);
        filter: grayscale(0);
    }

.k-hr {
    margin: 1rem auto;
    padding: 0;
    height: 0;
    border-width: 1px 0 0;
    border-style: solid;
    border-color: #dee2e6;
    display: block;
    float: none;
    clear: both;
}

.k-d-flex-row > .k-hr {
    margin: 0;
    width: 0;
    height: auto;
    border-width: 0 0 0 1px;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.k-d-flex-col > .k-hr {
    margin: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.k-dirty {
    margin: 0;
    padding: 0;
    width: 0;
    height: 0;
    border-width: 3px;
    border-style: solid;
    border-color: #dc3545 #dc3545 transparent transparent;
    position: absolute;
    top: 0;
    right: 0;
}

[dir="rtl"] .k-dirty,
.k-rtl .k-dirty {
    border-color: transparent transparent #dc3545 #dc3545;
    right: auto;
    left: 0;
}

.k-placeholder-line {
    width: 100%;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.k-drop-hint {
    display: -ms-flexbox;
    display: flex;
    gap: 4px;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    z-index: 1000;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.k-drop-hint-start,
.k-drop-hint-end {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-width: 4px;
    border-style: solid;
    border-color: transparent;
}

.k-drop-hint-line {
    -ms-flex-positive: 1;
    flex-grow: 1;
    background-color: #0d6efd;
}

.k-drop-hint-h .k-drop-hint-start {
    border-left-width: 6.9282032304px;
    border-left-color: #0d6efd;
    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: #0d6efd;
    border-left-width: 0;
}

.k-drop-hint-v {
    -ms-flex-direction: column;
    flex-direction: column;
}

    .k-drop-hint-v .k-drop-hint-start {
        border-top-width: 6.9282032304px;
        border-top-color: #0d6efd;
        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: #0d6efd;
        border-top-width: 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 {
    -webkit-transform: translate(-100%, 0);
    -ms-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
}

.k-push-right-enter-active, .k-push-right-appear-active {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    transition: -webkit-transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
}

.k-push-right-exit {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.k-push-right-exit-active {
    -webkit-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    transform: translate(100%, 0);
    transition: -webkit-transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
}

.k-push-left-enter, .k-push-left-appear {
    -webkit-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    transform: translate(100%, 0);
}

.k-push-left-enter-active, .k-push-left-appear-active {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    transition: -webkit-transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
}

.k-push-left-exit {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.k-push-left-exit-active {
    -webkit-transform: translate(-100%, 0);
    -ms-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
    transition: -webkit-transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
}

.k-push-down-enter, .k-push-down-appear {
    -webkit-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    transform: translate(0, -100%);
}

.k-push-down-enter-active, .k-push-down-appear-active {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    transition: -webkit-transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
}

.k-push-down-exit {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.k-push-down-exit-active {
    -webkit-transform: translate(0, 100%);
    -ms-transform: translate(0, 100%);
    transform: translate(0, 100%);
    transition: -webkit-transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
}

.k-push-up-enter, .k-push-up-appear {
    -webkit-transform: translate(0, 100%);
    -ms-transform: translate(0, 100%);
    transform: translate(0, 100%);
}

.k-push-up-enter-active, .k-push-up-appear-active {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    transition: -webkit-transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
}

.k-push-up-exit {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.k-push-up-exit-active {
    -webkit-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    transform: translate(0, -100%);
    transition: -webkit-transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
}

.k-expand-vertical-enter, .k-expand-vertical-appear {
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
}

.k-expand-vertical-enter-active, .k-expand-vertical-appear-active {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    transition: -webkit-transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
}

.k-expand-vertical-exit {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}

.k-expand-vertical-exit-active {
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    transition: -webkit-transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
}

.k-expand-horizontal-enter, .k-expand-horizontal-appear {
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
}

.k-expand-horizontal-enter-active, .k-expand-horizontal-appear-active {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    transition: -webkit-transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
}

.k-expand-horizontal-exit {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.k-expand-horizontal-exit-active {
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    transition: -webkit-transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out, -webkit-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;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.k-zoom-in-enter-active, .k-zoom-in-appear-active {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    transition: opacity 300ms ease-in-out, -webkit-transform;
    transition: transform, opacity 300ms ease-in-out;
    transition: transform, opacity 300ms ease-in-out, -webkit-transform;
}

.k-zoom-in-exit {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.k-zoom-in-exit-active {
    opacity: 0;
    -webkit-transform: scale(2);
    -ms-transform: scale(2);
    transform: scale(2);
    transition: opacity 300ms ease-in-out, -webkit-transform;
    transition: transform, opacity 300ms ease-in-out;
    transition: transform, opacity 300ms ease-in-out, -webkit-transform;
}

.k-zoom-out-enter, .k-zoom-out-appear {
    opacity: 0;
    -webkit-transform: scale(2);
    -ms-transform: scale(2);
    transform: scale(2);
}

.k-zoom-out-enter-active, .k-zoom-out-appear-active {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    transition: opacity 300ms ease-in-out, -webkit-transform;
    transition: transform, opacity 300ms ease-in-out;
    transition: transform, opacity 300ms ease-in-out, -webkit-transform;
}

.k-zoom-out-exit {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.k-zoom-out-exit-active {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    transition: opacity 300ms ease-in-out, -webkit-transform;
    transition: transform, opacity 300ms ease-in-out;
    transition: transform, opacity 300ms ease-in-out, -webkit-transform;
}

.k-slide-in-appear {
    opacity: .1;
    -webkit-transform: translate(0, -3em);
    -ms-transform: translate(0, -3em);
    transform: translate(0, -3em);
}

    .k-slide-in-appear .k-centered {
        -webkit-transform: translate(-50%, -60%);
        -ms-transform: translate(-50%, -60%);
        transform: translate(-50%, -60%);
    }

.k-slide-in-appear-active {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    transition: opacity 0.3s cubic-bezier(0.2, 1, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.2, 0.6, 0.4, 1);
    transition: transform 0.3s cubic-bezier(0.2, 0.6, 0.4, 1), opacity 0.3s cubic-bezier(0.2, 1, 0.2, 1);
    transition: transform 0.3s cubic-bezier(0.2, 0.6, 0.4, 1), opacity 0.3s cubic-bezier(0.2, 1, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.2, 0.6, 0.4, 1);
}

    .k-slide-in-appear-active .k-centered {
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

.k-slide-down-enter, .k-slide-down-appear {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}

.k-slide-down-enter-active, .k-slide-down-appear-active {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    transition: -webkit-transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
}

.k-slide-down-exit {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.k-slide-down-exit-active {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    transition: -webkit-transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
}

.k-slide-up-enter, .k-slide-up-appear {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}

.k-slide-up-enter-active, .k-slide-up-appear-active {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    transition: -webkit-transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
}

.k-slide-up-exit {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.k-slide-up-exit-active {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    transition: -webkit-transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
}

.k-slide-right-enter, .k-slide-right-appear {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}

.k-slide-right-enter-active, .k-slide-right-appear-active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    transition: -webkit-transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
}

.k-slide-right-exit {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.k-slide-right-exit-active {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    transition: -webkit-transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
}

.k-slide-left-enter, .k-slide-left-appear {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

.k-slide-left-enter-active, .k-slide-left-appear-active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    transition: -webkit-transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
}

.k-slide-left-exit {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.k-slide-left-exit-active {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    transition: -webkit-transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out, -webkit-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 {
    -webkit-transform: scale(0) !important;
    -ms-transform: scale(0) !important;
    transform: scale(0) !important;
}

.k-fx-zoom.k-fx-end .k-fx-next {
    -webkit-transform: scale(1) !important;
    -ms-transform: scale(1) !important;
    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 {
    -webkit-transform: scale(1) !important;
    -ms-transform: scale(1) !important;
    transform: scale(1) !important;
}

.k-fx-zoom.k-fx-reverse.k-fx-start .k-fx-current {
    -webkit-transform: scale(1) !important;
    -ms-transform: scale(1) !important;
    transform: scale(1) !important;
}

.k-fx-zoom.k-fx-reverse.k-fx-end .k-fx-current {
    -webkit-transform: scale(0) !important;
    -ms-transform: scale(0) !important;
    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;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    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 {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    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;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    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 {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    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 {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    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 {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    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 {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    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 {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    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 {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    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 {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    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 {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    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 {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.k-fx-tile.k-fx-start .k-fx-next {
    will-change: transform;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

.k-fx-tile.k-fx-end .k-fx-current {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}

.k-fx-tile.k-fx-reverse.k-fx-start .k-fx-current {
    will-change: transform;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.k-fx-tile.k-fx-reverse.k-fx-end .k-fx-current {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

.k-fx-tile.k-fx-reverse.k-fx-start .k-fx-next {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}

.k-fx-tile.k-fx-reverse.k-fx-end .k-fx-next {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.k-fx-tile.k-fx-right.k-fx-start .k-fx-next {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}

.k-fx-tile.k-fx-right.k-fx-end .k-fx-current {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

.k-fx-tile.k-fx-right.k-fx-reverse.k-fx-start .k-fx-current {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.k-fx-tile.k-fx-right.k-fx-reverse.k-fx-end .k-fx-current {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}

.k-fx-tile.k-fx-right.k-fx-reverse.k-fx-start .k-fx-next {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

.k-fx-tile.k-fx-right.k-fx-reverse.k-fx-end .k-fx-next {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    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;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

.k-fx.k-fx-overlay.k-fx-right.k-fx-start .k-fx-next {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}

.k-fx.k-fx-overlay.k-fx-up.k-fx-start .k-fx-next {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}

.k-fx.k-fx-overlay.k-fx-down.k-fx-start .k-fx-next {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}

.k-fx.k-fx-overlay.k-fx-reverse.k-fx-start .k-fx-next {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.k-fx.k-fx-overlay.k-fx-reverse.k-fx-start .k-fx-current {
    will-change: transform;
    -webkit-transform: none;
    -ms-transform: none;
    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 {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

.k-fx.k-fx-overlay.k-fx-reverse.k-fx-right.k-fx-end .k-fx-current {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}

.k-fx.k-fx-overlay.k-fx-reverse.k-fx-up.k-fx-end .k-fx-current {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}

.k-fx.k-fx-overlay.k-fx-reverse.k-fx-down.k-fx-end .k-fx-current {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}

.k-drag-clue {
    border-radius: 0.25rem;
    padding: 0.375rem 0.75rem;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    font-size: 1rem;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    line-height: 1.5;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: 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-drag-clue {
    border-color: #0c65e9;
    color: #ffffff;
    background-color: #0d6efd;
}

.k-reorder-cue {
    position: absolute;
}

    .k-reorder-cue::before, .k-reorder-cue::after {
        content: "";
        width: 0;
        height: 0;
        border: 3px solid transparent;
        position: absolute;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        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-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: #ffffff;
    opacity: 0.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;
    -webkit-animation: k-loading-animation .7s linear infinite;
    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;
}

@-webkit-keyframes loading {
    0% {
        stroke-dasharray: 0 251;
        stroke-dashoffset: 502;
    }

    50% {
        stroke-dasharray: 250 1;
    }

    100% {
        stroke-dasharray: 0 251;
        stroke-dashoffset: 0;
    }
}

@keyframes loading {
    0% {
        stroke-dasharray: 0 251;
        stroke-dashoffset: 502;
    }

    50% {
        stroke-dasharray: 250 1;
    }

    100% {
        stroke-dasharray: 0 251;
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes k-loading-animation {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes k-loading-animation {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.k-i-loading::before,
.k-loading-image::before {
    border-color: currentColor;
    border-right-color: transparent !important;
}

.k-i-loading::after,
.k-loading-image::after {
    display: none !important;
}

.k-loading-image::before {
    border-width: 0.25rem;
}

.k-resize-handle,
.k-resize-hint {
    position: absolute;
    border-color: inherit;
    z-index: 200;
}

.k-resize-handle {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .k-resize-handle::before {
        content: "";
        border: 0 solid;
        border-color: inherit;
    }

.k-resize-n {
    width: 100%;
    height: 6px;
    -ms-flex-direction: row;
    flex-direction: row;
    left: 0;
    top: -3px;
    cursor: n-resize;
}

.k-resize-s {
    width: 100%;
    height: 6px;
    -ms-flex-direction: row;
    flex-direction: row;
    left: 0;
    bottom: -3px;
    cursor: s-resize;
}

.k-resize-w {
    width: 6px;
    height: 100%;
    -ms-flex-direction: column;
    flex-direction: column;
    top: 0;
    left: -3px;
    cursor: w-resize;
}

.k-resize-e {
    width: 6px;
    height: 100%;
    -ms-flex-direction: column;
    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: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
}

    .k-resize-hint .k-resize-hint-handle {
        width: auto;
        height: 20px;
        -ms-flex-item-align: stretch;
        align-self: stretch;
    }

    .k-resize-hint .k-resize-hint-marker {
        width: 2px;
        height: auto;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }

.k-resize-hint-vertical {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: center;
    align-items: center;
}

    .k-resize-hint-vertical .k-resize-hint-handle {
        width: 20px;
        height: auto;
        -ms-flex-item-align: stretch;
        align-self: stretch;
    }

    .k-resize-hint-vertical .k-resize-hint-marker {
        width: auto;
        height: 2px;
        -ms-flex: 1 1 auto;
        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: #ffffff;
    background-color: #0d6efd;
    border-color: #0c65e9;
    opacity: .6;
}

.k-marquee-text {
    color: #ffffff;
}

.k-body,
.k-typography {
    font-size: 1rem;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    line-height: 1.5;
    font-weight: 400;
    margin: 0;
}

    .k-body p,
    .k-typography p {
        margin: 0 0 1rem;
    }

.k-h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 500;
    margin: 0 0 0.5rem;
}

.k-h2 {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 500;
    margin: 0 0 0.5rem;
}

.k-h3 {
    font-size: 1.75rem;
    line-height: 1.2;
    font-weight: 500;
    margin: 0 0 0.5rem;
}

.k-h4 {
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 500;
    margin: 0 0 0.5rem;
}

.k-h5 {
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 500;
    margin: 0 0 0.5rem;
}

.k-h6 {
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 500;
    margin: 0 0 0.5rem;
}

.k-paragraph {
    font-size: 1rem;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    line-height: 1.5;
    font-weight: 400;
    margin: 0 0 1rem;
}

.k-pre,
.k-code {
    font-size: 0.875em;
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    line-height: 1.5;
    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: 5rem;
    line-height: 1.2;
    font-weight: 300;
}

.k-display-2 {
    font-size: 4.5rem;
    line-height: 1.2;
    font-weight: 300;
}

.k-display-3 {
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 300;
}

.k-display-4 {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 300;
}

.k-body {
    color: #212529;
    background-color: #ffffff;
}

.k-pre,
.k-code {
    border-color: #dee2e6;
    color: #212529;
    background-color: #f8f9fa;
}

.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-border {
    border-width: 1px !important;
}

.k-border-0 {
    border-width: 0 !important;
}

.k-border-top {
    border-top-width: 1px !important;
}

.k-border-top-0 {
    border-top-width: 0 !important;
}

.k-border-right {
    border-right-width: 1px !important;
}

.k-border-right-0 {
    border-right-width: 0 !important;
}

.k-border-bottom {
    border-bottom-width: 1px !important;
}

.k-border-bottom-0 {
    border-bottom-width: 0 !important;
}

.k-border-left {
    border-left-width: 1px !important;
}

.k-border-left-0 {
    border-left-width: 0 !important;
}

.k-border-x {
    border-left-width: 1px !important;
    border-right-width: 1px !important;
}

.k-border-x-0 {
    border-left-width: 0 !important;
    border-right-width: 0 !important;
}

.k-border-y {
    border-top-width: 1px !important;
    border-bottom-width: 1px !important;
}

.k-border-y-0 {
    border-top-width: 0 !important;
    border-bottom-width: 0 !important;
}

.k-border-solid {
    border-style: solid !important;
}

.k-border-dashed {
    border-style: dashed !important;
}

.k-border-dotted {
    border-style: dotted !important;
}

.k-border-double {
    border-style: double !important;
}

.k-border-none {
    border-style: none !important;
}

.k-border-primary {
    border-color: #0d6efd !important;
}

.k-border-secondary {
    border-color: #6c757d !important;
}

.k-border-tertiary {
    border-color: #6f42c1 !important;
}

.k-border-info {
    border-color: #0dcaf0 !important;
}

.k-border-success {
    border-color: #198754 !important;
}

.k-border-warning {
    border-color: #ffc107 !important;
}

.k-border-error {
    border-color: #dc3545 !important;
}

.k-border-dark {
    border-color: #212529 !important;
}

.k-border-light {
    border-color: #f8f9fa !important;
}

.k-border-inverse {
    border-color: #212529 !important;
}

.k-rounded {
    border-radius: 0.25rem;
}

.\!k-rounded {
    border-radius: 0.25rem !important;
}

.k-rounded-0 {
    border-radius: 0;
}

.\!k-rounded-0 {
    border-radius: 0 !important;
}

.k-rounded-sm {
    border-radius: 0.125rem;
}

.\!k-rounded-sm {
    border-radius: 0.125rem !important;
}

.k-rounded-md {
    border-radius: 0.25rem;
}

.\!k-rounded-md {
    border-radius: 0.25rem !important;
}

.k-rounded-lg {
    border-radius: 0.375rem;
}

.\!k-rounded-lg {
    border-radius: 0.375rem !important;
}

.k-rounded-full {
    border-radius: 9999px;
}

.\!k-rounded-full {
    border-radius: 9999px !important;
}

.k-rounded-top {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.\!k-rounded-top {
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
}

.k-rounded-top-0 {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.\!k-rounded-top-0 {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.k-rounded-top-sm {
    border-top-left-radius: 0.125rem;
    border-top-right-radius: 0.125rem;
}

.\!k-rounded-top-sm {
    border-top-left-radius: 0.125rem !important;
    border-top-right-radius: 0.125rem !important;
}

.k-rounded-top-md {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.\!k-rounded-top-md {
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
}

.k-rounded-top-lg {
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
}

.\!k-rounded-top-lg {
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
}

.k-rounded-top-full {
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
}

.\!k-rounded-top-full {
    border-top-left-radius: 9999px !important;
    border-top-right-radius: 9999px !important;
}

.k-rounded-right {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

.\!k-rounded-right {
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
}

.k-rounded-right-0 {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.\!k-rounded-right-0 {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.k-rounded-right-sm {
    border-top-right-radius: 0.125rem;
    border-bottom-right-radius: 0.125rem;
}

.\!k-rounded-right-sm {
    border-top-right-radius: 0.125rem !important;
    border-bottom-right-radius: 0.125rem !important;
}

.k-rounded-right-md {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

.\!k-rounded-right-md {
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
}

.k-rounded-right-lg {
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}

.\!k-rounded-right-lg {
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
}

.k-rounded-right-full {
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
}

.\!k-rounded-right-full {
    border-top-right-radius: 9999px !important;
    border-bottom-right-radius: 9999px !important;
}

.k-rounded-bottom {
    border-bottom-left-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

.\!k-rounded-bottom {
    border-bottom-left-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
}

.k-rounded-bottom-0 {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.\!k-rounded-bottom-0 {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.k-rounded-bottom-sm {
    border-bottom-left-radius: 0.125rem;
    border-bottom-right-radius: 0.125rem;
}

.\!k-rounded-bottom-sm {
    border-bottom-left-radius: 0.125rem !important;
    border-bottom-right-radius: 0.125rem !important;
}

.k-rounded-bottom-md {
    border-bottom-left-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

.\!k-rounded-bottom-md {
    border-bottom-left-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
}

.k-rounded-bottom-lg {
    border-bottom-left-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}

.\!k-rounded-bottom-lg {
    border-bottom-left-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
}

.k-rounded-bottom-full {
    border-bottom-left-radius: 9999px;
    border-bottom-right-radius: 9999px;
}

.\!k-rounded-bottom-full {
    border-bottom-left-radius: 9999px !important;
    border-bottom-right-radius: 9999px !important;
}

.k-rounded-left {
    border-bottom-left-radius: 0.25rem;
    border-top-left-radius: 0.25rem;
}

.\!k-rounded-left {
    border-bottom-left-radius: 0.25rem !important;
    border-top-left-radius: 0.25rem !important;
}

.k-rounded-left-0 {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.\!k-rounded-left-0 {
    border-bottom-left-radius: 0 !important;
    border-top-left-radius: 0 !important;
}

.k-rounded-left-sm {
    border-bottom-left-radius: 0.125rem;
    border-top-left-radius: 0.125rem;
}

.\!k-rounded-left-sm {
    border-bottom-left-radius: 0.125rem !important;
    border-top-left-radius: 0.125rem !important;
}

.k-rounded-left-md {
    border-bottom-left-radius: 0.25rem;
    border-top-left-radius: 0.25rem;
}

.\!k-rounded-left-md {
    border-bottom-left-radius: 0.25rem !important;
    border-top-left-radius: 0.25rem !important;
}

.k-rounded-left-lg {
    border-bottom-left-radius: 0.375rem;
    border-top-left-radius: 0.375rem;
}

.\!k-rounded-left-lg {
    border-bottom-left-radius: 0.375rem !important;
    border-top-left-radius: 0.375rem !important;
}

.k-rounded-left-full {
    border-bottom-left-radius: 9999px;
    border-top-left-radius: 9999px;
}

.\!k-rounded-left-full {
    border-bottom-left-radius: 9999px !important;
    border-top-left-radius: 9999px !important;
}

.k-rounded-top-left {
    border-top-left-radius: 0.25rem;
}

.\!k-rounded-top-left {
    border-top-left-radius: 0.25rem !important;
}

.k-rounded-top-left-0 {
    border-top-left-radius: 0;
}

.\!k-rounded-top-left-0 {
    border-top-left-radius: 0 !important;
}

.k-rounded-top-left-sm {
    border-top-left-radius: 0.125rem;
}

.\!k-rounded-top-left-sm {
    border-top-left-radius: 0.125rem !important;
}

.k-rounded-top-left-md {
    border-top-left-radius: 0.25rem;
}

.\!k-rounded-top-left-md {
    border-top-left-radius: 0.25rem !important;
}

.k-rounded-top-left-lg {
    border-top-left-radius: 0.375rem;
}

.\!k-rounded-top-left-lg {
    border-top-left-radius: 0.375rem !important;
}

.k-rounded-top-left-full {
    border-top-left-radius: 9999px;
}

.\!k-rounded-top-left-full {
    border-top-left-radius: 9999px !important;
}

.k-rounded-top-right {
    border-top-right-radius: 0.25rem;
}

.\!k-rounded-top-right {
    border-top-right-radius: 0.25rem !important;
}

.k-rounded-top-right-0 {
    border-top-right-radius: 0;
}

.\!k-rounded-top-right-0 {
    border-top-right-radius: 0 !important;
}

.k-rounded-top-right-sm {
    border-top-right-radius: 0.125rem;
}

.\!k-rounded-top-right-sm {
    border-top-right-radius: 0.125rem !important;
}

.k-rounded-top-right-md {
    border-top-right-radius: 0.25rem;
}

.\!k-rounded-top-right-md {
    border-top-right-radius: 0.25rem !important;
}

.k-rounded-top-right-lg {
    border-top-right-radius: 0.375rem;
}

.\!k-rounded-top-right-lg {
    border-top-right-radius: 0.375rem !important;
}

.k-rounded-top-right-full {
    border-top-right-radius: 9999px;
}

.\!k-rounded-top-right-full {
    border-top-right-radius: 9999px !important;
}

.k-rounded-bottom-left {
    border-bottom-left-radius: 0.25rem;
}

.\!k-rounded-bottom-left {
    border-bottom-left-radius: 0.25rem !important;
}

.k-rounded-bottom-left-0 {
    border-bottom-left-radius: 0;
}

.\!k-rounded-bottom-left-0 {
    border-bottom-left-radius: 0 !important;
}

.k-rounded-bottom-left-sm {
    border-bottom-left-radius: 0.125rem;
}

.\!k-rounded-bottom-left-sm {
    border-bottom-left-radius: 0.125rem !important;
}

.k-rounded-bottom-left-md {
    border-bottom-left-radius: 0.25rem;
}

.\!k-rounded-bottom-left-md {
    border-bottom-left-radius: 0.25rem !important;
}

.k-rounded-bottom-left-lg {
    border-bottom-left-radius: 0.375rem;
}

.\!k-rounded-bottom-left-lg {
    border-bottom-left-radius: 0.375rem !important;
}

.k-rounded-bottom-left-full {
    border-bottom-left-radius: 9999px;
}

.\!k-rounded-bottom-left-full {
    border-bottom-left-radius: 9999px !important;
}

.k-rounded-bottom-right {
    border-bottom-right-radius: 0.25rem;
}

.\!k-rounded-bottom-right {
    border-bottom-right-radius: 0.25rem !important;
}

.k-rounded-bottom-right-0 {
    border-bottom-right-radius: 0;
}

.\!k-rounded-bottom-right-0 {
    border-bottom-right-radius: 0 !important;
}

.k-rounded-bottom-right-sm {
    border-bottom-right-radius: 0.125rem;
}

.\!k-rounded-bottom-right-sm {
    border-bottom-right-radius: 0.125rem !important;
}

.k-rounded-bottom-right-md {
    border-bottom-right-radius: 0.25rem;
}

.\!k-rounded-bottom-right-md {
    border-bottom-right-radius: 0.25rem !important;
}

.k-rounded-bottom-right-lg {
    border-bottom-right-radius: 0.375rem;
}

.\!k-rounded-bottom-right-lg {
    border-bottom-right-radius: 0.375rem !important;
}

.k-rounded-bottom-right-full {
    border-bottom-right-radius: 9999px;
}

.\!k-rounded-bottom-right-full {
    border-bottom-right-radius: 9999px !important;
}

.k-display-inline {
    display: inline !important;
}

.k-display-block {
    display: block !important;
}

.k-display-inline-block {
    display: inline-block !important;
}

.k-display-flex {
    display: -ms-flexbox !important;
    display: flex !important;
}

.k-display-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
}

.k-display-table {
    display: table !important;
}

.k-display-inline-table {
    display: inline-table !important;
}

.k-display-none {
    display: none !important;
}

.k-d-flex, .k-d-flex-row, .k-d-flex-col {
    display: -ms-flexbox;
    display: flex;
}

.\!k-d-flex, .\!k-d-flex-row, .\!k-d-flex-col {
    display: -ms-flexbox !important;
    display: flex !important;
}

.k-d-inline-flex {
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.\!k-d-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
}

.k-flex-row, .k-d-flex-row {
    -ms-flex-direction: row;
    flex-direction: row;
}

.\!k-flex-row, .\!k-d-flex-row, .\!k-d-flex-col {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}

.k-flex-row-reverse {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.\!k-flex-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
}

.k-flex-col, .k-d-flex-col, .k-flex-column {
    -ms-flex-direction: column;
    flex-direction: column;
}

.\!k-flex-col {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}

.k-flex-col-reverse, .k-flex-column-reverse {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.\!k-flex-col-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
}

.k-flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.\!k-flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}

.k-flex-nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.\!k-flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
}

.k-flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
}

.\!k-flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
}

.k-flex-initial {
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
}

.\!k-flex-initial {
    -ms-flex: 0 1 auto !important;
    flex: 0 1 auto !important;
}

.k-flex-1 {
    -ms-flex: 1 1 0%;
    flex: 1 1 0%;
}

.\!k-flex-1 {
    -ms-flex: 1 1 0% !important;
    flex: 1 1 0% !important;
}

.k-flex-auto {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.\!k-flex-auto {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
}

.k-flex-none {
    -ms-flex: none;
    flex: none;
}

.\!k-flex-none {
    -ms-flex: none !important;
    flex: none !important;
}

.k-flex-grow {
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.\!k-flex-grow {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
}

.k-flex-grow-0 {
    -ms-flex-positive: 0;
    flex-grow: 0;
}

.\!k-flex-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
}

.k-flex-shrink {
    -ms-flex-negative: 1;
    flex-shrink: 1;
}

.\!k-flex-shrink {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
}

.k-flex-shrink-0 {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.\!k-flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
}

.k-flex-basis-auto {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
}

.\!k-flex-basis-auto {
    -ms-flex-preferred-size: auto !important;
    flex-basis: auto !important;
}

.k-flex-basis-0 {
    -ms-flex-preferred-size: 0%;
    flex-basis: 0%;
}

.\!k-flex-basis-0 {
    -ms-flex-preferred-size: 0% !important;
    flex-basis: 0% !important;
}

.k-align-items-start {
    -ms-flex-align: start;
    align-items: flex-start;
}

.\!k-align-items-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
}

.k-align-items-end {
    -ms-flex-align: end;
    align-items: flex-end;
}

.\!k-align-items-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
}

.k-align-items-center {
    -ms-flex-align: center;
    align-items: center;
}

.\!k-align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
}

.k-align-items-stretch {
    -ms-flex-align: stretch;
    align-items: stretch;
}

.\!k-align-items-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
}

.k-align-items-baseline {
    -ms-flex-align: baseline;
    align-items: baseline;
}

.\!k-align-items-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
}

.k-align-content-start {
    -ms-flex-line-pack: start;
    align-content: flex-start;
}

.\!k-align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
}

.k-align-content-end {
    -ms-flex-line-pack: end;
    align-content: flex-end;
}

.\!k-align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
}

.k-align-content-center {
    -ms-flex-line-pack: center;
    align-content: center;
}

.\!k-align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
}

.k-align-content-stretch {
    -ms-flex-line-pack: stretch;
    align-content: stretch;
}

.\!k-align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
}

.k-align-content-baseline {
    -ms-flex-line-pack: baseline;
    align-content: baseline;
}

.\!k-align-content-baseline {
    -ms-flex-line-pack: baseline !important;
    align-content: baseline !important;
}

.k-align-self-start {
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.\!k-align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
}

.k-align-self-end {
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.\!k-align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
}

.k-align-self-center {
    -ms-flex-item-align: center;
    align-self: center;
}

.\!k-align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
}

.k-align-self-stretch {
    -ms-flex-item-align: stretch;
    align-self: stretch;
}

.\!k-align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
}

.k-align-self-baseline {
    -ms-flex-item-align: baseline;
    align-self: baseline;
}

.\!k-align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
}

.k-justify-content-start {
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.\!k-justify-content-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
}

.k-justify-content-end {
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.\!k-justify-content-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}

.k-justify-content-center {
    -ms-flex-pack: center;
    justify-content: center;
}

.\!k-justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.k-justify-content-between {
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.\!k-justify-content-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.k-justify-content-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.\!k-justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
}

.k-justify-content-evenly {
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
}

.\!k-justify-content-evenly {
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
}

.k-justify-content-stretch > * {
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
}

.\!k-justify-content-stretch > * {
    -ms-flex: 1 0 0% !important;
    flex: 1 0 0% !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-float-left {
    float: left !important;
}

.k-float-right {
    float: right !important;
}

.k-float-none {
    float: none !important;
}

.k-clear-left {
    clear: left !important;
}

.k-clear-right {
    clear: right !important;
}

.k-clear-both {
    clear: both !important;
}

.k-clear-none {
    clear: none !important;
}

.k-floatwrap::after {
    content: "";
    display: block;
    clear: both;
}

.k-d-grid {
    display: grid;
}

.k-grid-cols-none {
    grid-template-columns: none;
}

.k-grid-rows-none {
    grid-template-rows: none;
}

.k-grid-flow-col {
    grid-auto-flow: column;
}

.k-grid-flow-col-dense {
    grid-auto-flow: column dense;
}

.k-grid-flow-row {
    grid-auto-flow: row;
}

.k-grid-flow-row-dense {
    grid-auto-flow: row dense;
}

.k-grid-flow-unset {
    grid-auto-flow: unset;
}

.k-colspan-all {
    grid-column: 1 / -1;
}

.k-colspan-auto {
    grid-column: auto;
}

.k-rowspan-all {
    grid-row: 1 / -1;
}

.k-rowspan-auto {
    grid-row: auto;
}

.k-grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.k-colspan-1 {
    grid-column: span 1;
}

.k-col-start-1 {
    grid-column-start: 1;
}

.k-col-end-1 {
    grid-column-end: 1;
}

.k-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.k-colspan-2 {
    grid-column: span 2;
}

.k-col-start-2 {
    grid-column-start: 2;
}

.k-col-end-2 {
    grid-column-end: 2;
}

.k-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.k-colspan-3 {
    grid-column: span 3;
}

.k-col-start-3 {
    grid-column-start: 3;
}

.k-col-end-3 {
    grid-column-end: 3;
}

.k-grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.k-colspan-4 {
    grid-column: span 4;
}

.k-col-start-4 {
    grid-column-start: 4;
}

.k-col-end-4 {
    grid-column-end: 4;
}

.k-grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.k-colspan-5 {
    grid-column: span 5;
}

.k-col-start-5 {
    grid-column-start: 5;
}

.k-col-end-5 {
    grid-column-end: 5;
}

.k-grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.k-colspan-6 {
    grid-column: span 6;
}

.k-col-start-6 {
    grid-column-start: 6;
}

.k-col-end-6 {
    grid-column-end: 6;
}

.k-grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.k-colspan-7 {
    grid-column: span 7;
}

.k-col-start-7 {
    grid-column-start: 7;
}

.k-col-end-7 {
    grid-column-end: 7;
}

.k-grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
}

.k-colspan-8 {
    grid-column: span 8;
}

.k-col-start-8 {
    grid-column-start: 8;
}

.k-col-end-8 {
    grid-column-end: 8;
}

.k-grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
}

.k-colspan-9 {
    grid-column: span 9;
}

.k-col-start-9 {
    grid-column-start: 9;
}

.k-col-end-9 {
    grid-column-end: 9;
}

.k-grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
}

.k-colspan-10 {
    grid-column: span 10;
}

.k-col-start-10 {
    grid-column-start: 10;
}

.k-col-end-10 {
    grid-column-end: 10;
}

.k-grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
}

.k-colspan-11 {
    grid-column: span 11;
}

.k-col-start-11 {
    grid-column-start: 11;
}

.k-col-end-11 {
    grid-column-end: 11;
}

.k-grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
}

.k-colspan-12 {
    grid-column: span 12;
}

.k-col-start-12 {
    grid-column-start: 12;
}

.k-col-end-12 {
    grid-column-end: 12;
}

.k-grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr));
}

.k-rowspan-1 {
    grid-row: span 1;
}

.k-row-start-1 {
    grid-row-start: 1;
}

.k-row-end-1 {
    grid-row-end: 1;
}

.k-grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr));
}

.k-rowspan-2 {
    grid-row: span 2;
}

.k-row-start-2 {
    grid-row-start: 2;
}

.k-row-end-2 {
    grid-row-end: 2;
}

.k-grid-rows-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr));
}

.k-rowspan-3 {
    grid-row: span 3;
}

.k-row-start-3 {
    grid-row-start: 3;
}

.k-row-end-3 {
    grid-row-end: 3;
}

.k-grid-rows-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr));
}

.k-rowspan-4 {
    grid-row: span 4;
}

.k-row-start-4 {
    grid-row-start: 4;
}

.k-row-end-4 {
    grid-row-end: 4;
}

.k-grid-rows-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr));
}

.k-rowspan-5 {
    grid-row: span 5;
}

.k-row-start-5 {
    grid-row-start: 5;
}

.k-row-end-5 {
    grid-row-end: 5;
}

.k-grid-rows-6 {
    grid-template-rows: repeat(6, minmax(0, 1fr));
}

.k-rowspan-6 {
    grid-row: span 6;
}

.k-row-start-6 {
    grid-row-start: 6;
}

.k-row-end-6 {
    grid-row-end: 6;
}

.k-grid-rows-7 {
    grid-template-rows: repeat(7, minmax(0, 1fr));
}

.k-rowspan-7 {
    grid-row: span 7;
}

.k-row-start-7 {
    grid-row-start: 7;
}

.k-row-end-7 {
    grid-row-end: 7;
}

.k-grid-rows-8 {
    grid-template-rows: repeat(8, minmax(0, 1fr));
}

.k-rowspan-8 {
    grid-row: span 8;
}

.k-row-start-8 {
    grid-row-start: 8;
}

.k-row-end-8 {
    grid-row-end: 8;
}

.k-grid-rows-9 {
    grid-template-rows: repeat(9, minmax(0, 1fr));
}

.k-rowspan-9 {
    grid-row: span 9;
}

.k-row-start-9 {
    grid-row-start: 9;
}

.k-row-end-9 {
    grid-row-end: 9;
}

.k-grid-rows-10 {
    grid-template-rows: repeat(10, minmax(0, 1fr));
}

.k-rowspan-10 {
    grid-row: span 10;
}

.k-row-start-10 {
    grid-row-start: 10;
}

.k-row-end-10 {
    grid-row-end: 10;
}

.k-order-first {
    -ms-flex-order: -9999 !important;
    order: -9999 !important;
}

.k-order-last {
    -ms-flex-order: 9999 !important;
    order: 9999 !important;
}

.k-order-none {
    -ms-flex-order: 0 !important;
    order: 0 !important;
}

.k-order-1 {
    -ms-flex-order: 1 !important;
    order: 1 !important;
}

.k-order-2 {
    -ms-flex-order: 2 !important;
    order: 2 !important;
}

.k-order-3 {
    -ms-flex-order: 3 !important;
    order: 3 !important;
}

.k-order-4 {
    -ms-flex-order: 4 !important;
    order: 4 !important;
}

.k-order-5 {
    -ms-flex-order: 5 !important;
    order: 5 !important;
}

.k-order-6 {
    -ms-flex-order: 6 !important;
    order: 6 !important;
}

.k-order-7 {
    -ms-flex-order: 7 !important;
    order: 7 !important;
}

.k-order-8 {
    -ms-flex-order: 8 !important;
    order: 8 !important;
}

.k-order-9 {
    -ms-flex-order: 9 !important;
    order: 9 !important;
}

.k-order-10 {
    -ms-flex-order: 10 !important;
    order: 10 !important;
}

.k-order-11 {
    -ms-flex-order: 11 !important;
    order: 11 !important;
}

.k-order-12 {
    -ms-flex-order: 12 !important;
    order: 12 !important;
}

.k-overflow-auto {
    overflow: auto;
}

.k-overflow-x-auto {
    overflow-x: auto;
}

.k-overflow-y-auto {
    overflow-y: auto;
}

.\!k-overflow-auto {
    overflow: auto !important;
}

.\!k-overflow-x-auto {
    overflow-x: auto !important;
}

.\!k-overflow-y-auto {
    overflow-y: auto !important;
}

.k-overflow-hidden {
    overflow: hidden;
}

.k-overflow-x-hidden {
    overflow-x: hidden;
}

.k-overflow-y-hidden {
    overflow-y: hidden;
}

.\!k-overflow-hidden {
    overflow: hidden !important;
}

.\!k-overflow-x-hidden {
    overflow-x: hidden !important;
}

.\!k-overflow-y-hidden {
    overflow-y: hidden !important;
}

.k-overflow-visible {
    overflow: visible;
}

.k-overflow-x-visible {
    overflow-x: visible;
}

.k-overflow-y-visible {
    overflow-y: visible;
}

.\!k-overflow-visible {
    overflow: visible !important;
}

.\!k-overflow-x-visible {
    overflow-x: visible !important;
}

.\!k-overflow-y-visible {
    overflow-y: visible !important;
}

.k-overflow-scroll {
    overflow: scroll;
}

.k-overflow-x-scroll {
    overflow-x: scroll;
}

.k-overflow-y-scroll {
    overflow-y: scroll;
}

.\!k-overflow-scroll {
    overflow: scroll !important;
}

.\!k-overflow-x-scroll {
    overflow-x: scroll !important;
}

.\!k-overflow-y-scroll {
    overflow-y: scroll !important;
}

.k-overflow-clip {
    overflow: clip;
}

.k-overflow-x-clip {
    overflow-x: clip;
}

.k-overflow-y-clip {
    overflow-y: clip;
}

.\!k-overflow-clip {
    overflow: clip !important;
}

.\!k-overflow-x-clip {
    overflow-x: clip !important;
}

.\!k-overflow-y-clip {
    overflow-y: clip !important;
}

.k-overflow-auto-hidden {
    overflow: auto hidden;
}

.\!k-overflow-auto-hidden {
    overflow: auto hidden !important;
}

.k-overflow-auto-visible {
    overflow: auto visible;
}

.\!k-overflow-auto-visible {
    overflow: auto visible !important;
}

.k-overflow-auto-scroll {
    overflow: auto scroll;
}

.\!k-overflow-auto-scroll {
    overflow: auto scroll !important;
}

.k-overflow-auto-clip {
    overflow: auto clip;
}

.\!k-overflow-auto-clip {
    overflow: auto clip !important;
}

.k-overflow-hidden-auto {
    overflow: hidden auto;
}

.\!k-overflow-hidden-auto {
    overflow: hidden auto !important;
}

.k-overflow-hidden-visible {
    overflow: hidden visible;
}

.\!k-overflow-hidden-visible {
    overflow: hidden visible !important;
}

.k-overflow-hidden-scroll {
    overflow: hidden scroll;
}

.\!k-overflow-hidden-scroll {
    overflow: hidden scroll !important;
}

.k-overflow-hidden-clip {
    overflow: hidden clip;
}

.\!k-overflow-hidden-clip {
    overflow: hidden clip !important;
}

.k-overflow-visible-auto {
    overflow: visible auto;
}

.\!k-overflow-visible-auto {
    overflow: visible auto !important;
}

.k-overflow-visible-hidden {
    overflow: visible hidden;
}

.\!k-overflow-visible-hidden {
    overflow: visible hidden !important;
}

.k-overflow-visible-scroll {
    overflow: visible scroll;
}

.\!k-overflow-visible-scroll {
    overflow: visible scroll !important;
}

.k-overflow-visible-clip {
    overflow: visible clip;
}

.\!k-overflow-visible-clip {
    overflow: visible clip !important;
}

.k-overflow-scroll-auto {
    overflow: scroll auto;
}

.\!k-overflow-scroll-auto {
    overflow: scroll auto !important;
}

.k-overflow-scroll-hidden {
    overflow: scroll hidden;
}

.\!k-overflow-scroll-hidden {
    overflow: scroll hidden !important;
}

.k-overflow-scroll-visible {
    overflow: scroll visible;
}

.\!k-overflow-scroll-visible {
    overflow: scroll visible !important;
}

.k-overflow-scroll-clip {
    overflow: scroll clip;
}

.\!k-overflow-scroll-clip {
    overflow: scroll clip !important;
}

.k-overflow-clip-auto {
    overflow: clip auto;
}

.\!k-overflow-clip-auto {
    overflow: clip auto !important;
}

.k-overflow-clip-hidden {
    overflow: clip hidden;
}

.\!k-overflow-clip-hidden {
    overflow: clip hidden !important;
}

.k-overflow-clip-visible {
    overflow: clip visible;
}

.\!k-overflow-clip-visible {
    overflow: clip visible !important;
}

.k-overflow-clip-scroll {
    overflow: clip scroll;
}

.\!k-overflow-clip-scroll {
    overflow: clip scroll !important;
}

.k-pointer-events-none {
    pointer-events: none !important;
}

.k-pointer-events-auto {
    pointer-events: auto !important;
}

.k-static,
.k-pos-static {
    position: static !important;
}

.\!k-static,
.\!k-pos-static {
    position: static !important;
}

.k-relative,
.k-pos-relative {
    position: relative !important;
}

.\!k-relative,
.\!k-pos-relative {
    position: relative !important;
}

.k-absolute,
.k-pos-absolute {
    position: absolute !important;
}

.\!k-absolute,
.\!k-pos-absolute {
    position: absolute !important;
}

.k-fixed,
.k-pos-fixed {
    position: fixed !important;
}

.\!k-fixed,
.\!k-pos-fixed {
    position: fixed !important;
}

.k-sticky,
.k-pos-sticky {
    position: sticky !important;
}

.\!k-sticky,
.\!k-pos-sticky {
    position: sticky !important;
}

.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-top-start,
.k-pos-top-start {
    top: 0;
    left: 0;
}

    .k-rtl .k-top-start, .k-top-start[dir="rtl"],
    [dir="rtl"] .k-top-start, .k-rtl
    .k-pos-top-start,
    .k-pos-top-start[dir="rtl"],
    [dir="rtl"]
    .k-pos-top-start {
        left: auto;
        right: 0;
    }

.k-top-center,
.k-pos-top-center {
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.k-top-end,
.k-pos-top-end {
    top: 0;
    right: 0;
}

    .k-rtl .k-top-end, .k-top-end[dir="rtl"],
    [dir="rtl"] .k-top-end, .k-rtl
    .k-pos-top-end,
    .k-pos-top-end[dir="rtl"],
    [dir="rtl"]
    .k-pos-top-end {
        right: auto;
        left: 0;
    }

.k-middle-start,
.k-pos-middle-start {
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

    .k-rtl .k-middle-start, .k-middle-start[dir="rtl"],
    [dir="rtl"] .k-middle-start, .k-rtl
    .k-pos-middle-start,
    .k-pos-middle-start[dir="rtl"],
    [dir="rtl"]
    .k-pos-middle-start {
        left: auto;
        right: 0;
    }

.k-middle-center,
.k-pos-middle-center {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.k-middle-end,
.k-pos-middle-end {
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

    .k-rtl .k-middle-end, .k-middle-end[dir="rtl"],
    [dir="rtl"] .k-middle-end, .k-rtl
    .k-pos-middle-end,
    .k-pos-middle-end[dir="rtl"],
    [dir="rtl"]
    .k-pos-middle-end {
        right: auto;
        left: 0;
    }

.k-bottom-start,
.k-pos-bottom-start {
    bottom: 0;
    left: 0;
}

    .k-rtl .k-bottom-start, .k-bottom-start[dir="rtl"],
    [dir="rtl"] .k-bottom-start, .k-rtl
    .k-pos-bottom-start,
    .k-pos-bottom-start[dir="rtl"],
    [dir="rtl"]
    .k-pos-bottom-start {
        left: auto;
        right: 0;
    }

.k-bottom-center,
.k-pos-bottom-center {
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.k-bottom-end,
.k-pos-bottom-end {
    bottom: 0;
    right: 0;
}

    .k-rtl .k-bottom-end, .k-bottom-end[dir="rtl"],
    [dir="rtl"] .k-bottom-end, .k-rtl
    .k-pos-bottom-end,
    .k-pos-bottom-end[dir="rtl"],
    [dir="rtl"]
    .k-pos-bottom-end {
        right: auto;
        left: 0;
    }

.k-resize-none {
    resize: none;
}

.\!k-resize-none {
    resize: none !important;
}

.k-resize-both {
    resize: both;
}

.\!k-resize-both {
    resize: both !important;
}

.k-resize-horizontal {
    resize: horizontal;
}

.\!k-resize-horizontal {
    resize: horizontal !important;
}

.k-resize-vertical {
    resize: vertical;
}

.\!k-resize-vertical {
    resize: vertical !important;
}

.k-m-0 {
    margin: 0 !important;
}

.k-mt-0 {
    margin-top: 0 !important;
}

.k-mr-0 {
    margin-right: 0 !important;
}

.k-mb-0 {
    margin-bottom: 0 !important;
}

.k-ml-0 {
    margin-left: 0 !important;
}

.k-mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.k-my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.k-m-1 {
    margin: 0.25rem !important;
}

.k-mt-1 {
    margin-top: 0.25rem !important;
}

.k-mr-1 {
    margin-right: 0.25rem !important;
}

.k-mb-1 {
    margin-bottom: 0.25rem !important;
}

.k-ml-1 {
    margin-left: 0.25rem !important;
}

.k-mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
}

.k-my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
}

.k-m-2 {
    margin: 0.5rem !important;
}

.k-mt-2 {
    margin-top: 0.5rem !important;
}

.k-mr-2 {
    margin-right: 0.5rem !important;
}

.k-mb-2 {
    margin-bottom: 0.5rem !important;
}

.k-ml-2 {
    margin-left: 0.5rem !important;
}

.k-mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
}

.k-my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

.k-m-3 {
    margin: 0.75rem !important;
}

.k-mt-3 {
    margin-top: 0.75rem !important;
}

.k-mr-3 {
    margin-right: 0.75rem !important;
}

.k-mb-3 {
    margin-bottom: 0.75rem !important;
}

.k-ml-3 {
    margin-left: 0.75rem !important;
}

.k-mx-3 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
}

.k-my-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
}

.k-m-4 {
    margin: 1rem !important;
}

.k-mt-4 {
    margin-top: 1rem !important;
}

.k-mr-4 {
    margin-right: 1rem !important;
}

.k-mb-4 {
    margin-bottom: 1rem !important;
}

.k-ml-4 {
    margin-left: 1rem !important;
}

.k-mx-4 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
}

.k-my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

.k-m-5 {
    margin: 1.25rem !important;
}

.k-mt-5 {
    margin-top: 1.25rem !important;
}

.k-mr-5 {
    margin-right: 1.25rem !important;
}

.k-mb-5 {
    margin-bottom: 1.25rem !important;
}

.k-ml-5 {
    margin-left: 1.25rem !important;
}

.k-mx-5 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
}

.k-my-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
}

.k-m-6 {
    margin: 1.5rem !important;
}

.k-mt-6 {
    margin-top: 1.5rem !important;
}

.k-mr-6 {
    margin-right: 1.5rem !important;
}

.k-mb-6 {
    margin-bottom: 1.5rem !important;
}

.k-ml-6 {
    margin-left: 1.5rem !important;
}

.k-mx-6 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
}

.k-my-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.k-m-7 {
    margin: 1.75rem !important;
}

.k-mt-7 {
    margin-top: 1.75rem !important;
}

.k-mr-7 {
    margin-right: 1.75rem !important;
}

.k-mb-7 {
    margin-bottom: 1.75rem !important;
}

.k-ml-7 {
    margin-left: 1.75rem !important;
}

.k-mx-7 {
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
}

.k-my-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
}

.k-m-8 {
    margin: 2rem !important;
}

.k-mt-8 {
    margin-top: 2rem !important;
}

.k-mr-8 {
    margin-right: 2rem !important;
}

.k-mb-8 {
    margin-bottom: 2rem !important;
}

.k-ml-8 {
    margin-left: 2rem !important;
}

.k-mx-8 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
}

.k-my-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
}

.k-m-9 {
    margin: 2.25rem !important;
}

.k-mt-9 {
    margin-top: 2.25rem !important;
}

.k-mr-9 {
    margin-right: 2.25rem !important;
}

.k-mb-9 {
    margin-bottom: 2.25rem !important;
}

.k-ml-9 {
    margin-left: 2.25rem !important;
}

.k-mx-9 {
    margin-left: 2.25rem !important;
    margin-right: 2.25rem !important;
}

.k-my-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
}

.k-m-10 {
    margin: 2.5rem !important;
}

.k-mt-10 {
    margin-top: 2.5rem !important;
}

.k-mr-10 {
    margin-right: 2.5rem !important;
}

.k-mb-10 {
    margin-bottom: 2.5rem !important;
}

.k-ml-10 {
    margin-left: 2.5rem !important;
}

.k-mx-10 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
}

.k-my-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
}

.k-m-11 {
    margin: 2.75rem !important;
}

.k-mt-11 {
    margin-top: 2.75rem !important;
}

.k-mr-11 {
    margin-right: 2.75rem !important;
}

.k-mb-11 {
    margin-bottom: 2.75rem !important;
}

.k-ml-11 {
    margin-left: 2.75rem !important;
}

.k-mx-11 {
    margin-left: 2.75rem !important;
    margin-right: 2.75rem !important;
}

.k-my-11 {
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
}

.k-m-12 {
    margin: 3rem !important;
}

.k-mt-12 {
    margin-top: 3rem !important;
}

.k-mr-12 {
    margin-right: 3rem !important;
}

.k-mb-12 {
    margin-bottom: 3rem !important;
}

.k-ml-12 {
    margin-left: 3rem !important;
}

.k-mx-12 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
}

.k-my-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

.k-m-13 {
    margin: 3.25rem !important;
}

.k-mt-13 {
    margin-top: 3.25rem !important;
}

.k-mr-13 {
    margin-right: 3.25rem !important;
}

.k-mb-13 {
    margin-bottom: 3.25rem !important;
}

.k-ml-13 {
    margin-left: 3.25rem !important;
}

.k-mx-13 {
    margin-left: 3.25rem !important;
    margin-right: 3.25rem !important;
}

.k-my-13 {
    margin-top: 3.25rem !important;
    margin-bottom: 3.25rem !important;
}

.k-m-14 {
    margin: 3.5rem !important;
}

.k-mt-14 {
    margin-top: 3.5rem !important;
}

.k-mr-14 {
    margin-right: 3.5rem !important;
}

.k-mb-14 {
    margin-bottom: 3.5rem !important;
}

.k-ml-14 {
    margin-left: 3.5rem !important;
}

.k-mx-14 {
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
}

.k-my-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
}

.k-m-15 {
    margin: 3.75rem !important;
}

.k-mt-15 {
    margin-top: 3.75rem !important;
}

.k-mr-15 {
    margin-right: 3.75rem !important;
}

.k-mb-15 {
    margin-bottom: 3.75rem !important;
}

.k-ml-15 {
    margin-left: 3.75rem !important;
}

.k-mx-15 {
    margin-left: 3.75rem !important;
    margin-right: 3.75rem !important;
}

.k-my-15 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
}

.k-m-16 {
    margin: 4rem !important;
}

.k-mt-16 {
    margin-top: 4rem !important;
}

.k-mr-16 {
    margin-right: 4rem !important;
}

.k-mb-16 {
    margin-bottom: 4rem !important;
}

.k-ml-16 {
    margin-left: 4rem !important;
}

.k-mx-16 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
}

.k-my-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
}

.k-m-17 {
    margin: 4.25rem !important;
}

.k-mt-17 {
    margin-top: 4.25rem !important;
}

.k-mr-17 {
    margin-right: 4.25rem !important;
}

.k-mb-17 {
    margin-bottom: 4.25rem !important;
}

.k-ml-17 {
    margin-left: 4.25rem !important;
}

.k-mx-17 {
    margin-left: 4.25rem !important;
    margin-right: 4.25rem !important;
}

.k-my-17 {
    margin-top: 4.25rem !important;
    margin-bottom: 4.25rem !important;
}

.k-m-18 {
    margin: 4.5rem !important;
}

.k-mt-18 {
    margin-top: 4.5rem !important;
}

.k-mr-18 {
    margin-right: 4.5rem !important;
}

.k-mb-18 {
    margin-bottom: 4.5rem !important;
}

.k-ml-18 {
    margin-left: 4.5rem !important;
}

.k-mx-18 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important;
}

.k-my-18 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
}

.k-m-19 {
    margin: 4.75rem !important;
}

.k-mt-19 {
    margin-top: 4.75rem !important;
}

.k-mr-19 {
    margin-right: 4.75rem !important;
}

.k-mb-19 {
    margin-bottom: 4.75rem !important;
}

.k-ml-19 {
    margin-left: 4.75rem !important;
}

.k-mx-19 {
    margin-left: 4.75rem !important;
    margin-right: 4.75rem !important;
}

.k-my-19 {
    margin-top: 4.75rem !important;
    margin-bottom: 4.75rem !important;
}

.k-m-20 {
    margin: 5rem !important;
}

.k-mt-20 {
    margin-top: 5rem !important;
}

.k-mr-20 {
    margin-right: 5rem !important;
}

.k-mb-20 {
    margin-bottom: 5rem !important;
}

.k-ml-20 {
    margin-left: 5rem !important;
}

.k-mx-20 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
}

.k-my-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
}

.k-m-21 {
    margin: 5.25rem !important;
}

.k-mt-21 {
    margin-top: 5.25rem !important;
}

.k-mr-21 {
    margin-right: 5.25rem !important;
}

.k-mb-21 {
    margin-bottom: 5.25rem !important;
}

.k-ml-21 {
    margin-left: 5.25rem !important;
}

.k-mx-21 {
    margin-left: 5.25rem !important;
    margin-right: 5.25rem !important;
}

.k-my-21 {
    margin-top: 5.25rem !important;
    margin-bottom: 5.25rem !important;
}

.k-m-22 {
    margin: 5.5rem !important;
}

.k-mt-22 {
    margin-top: 5.5rem !important;
}

.k-mr-22 {
    margin-right: 5.5rem !important;
}

.k-mb-22 {
    margin-bottom: 5.5rem !important;
}

.k-ml-22 {
    margin-left: 5.5rem !important;
}

.k-mx-22 {
    margin-left: 5.5rem !important;
    margin-right: 5.5rem !important;
}

.k-my-22 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
}

.k-m-23 {
    margin: 5.75rem !important;
}

.k-mt-23 {
    margin-top: 5.75rem !important;
}

.k-mr-23 {
    margin-right: 5.75rem !important;
}

.k-mb-23 {
    margin-bottom: 5.75rem !important;
}

.k-ml-23 {
    margin-left: 5.75rem !important;
}

.k-mx-23 {
    margin-left: 5.75rem !important;
    margin-right: 5.75rem !important;
}

.k-my-23 {
    margin-top: 5.75rem !important;
    margin-bottom: 5.75rem !important;
}

.k-m-24 {
    margin: 6rem !important;
}

.k-mt-24 {
    margin-top: 6rem !important;
}

.k-mr-24 {
    margin-right: 6rem !important;
}

.k-mb-24 {
    margin-bottom: 6rem !important;
}

.k-ml-24 {
    margin-left: 6rem !important;
}

.k-mx-24 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
}

.k-my-24 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
}

.k-m-xs {
    margin: 0.25rem !important;
}

.k-mt-xs {
    margin-top: 0.25rem !important;
}

.k-mr-xs {
    margin-right: 0.25rem !important;
}

.k-mb-xs {
    margin-bottom: 0.25rem !important;
}

.k-ml-xs {
    margin-left: 0.25rem !important;
}

.k-mx-xs {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
}

.k-my-xs {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
}

.k-m-sm {
    margin: 0.5rem !important;
}

.k-mt-sm {
    margin-top: 0.5rem !important;
}

.k-mr-sm {
    margin-right: 0.5rem !important;
}

.k-mb-sm {
    margin-bottom: 0.5rem !important;
}

.k-ml-sm {
    margin-left: 0.5rem !important;
}

.k-mx-sm {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
}

.k-my-sm {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

.k-m-md {
    margin: 0.75rem !important;
}

.k-mt-md {
    margin-top: 0.75rem !important;
}

.k-mr-md {
    margin-right: 0.75rem !important;
}

.k-mb-md {
    margin-bottom: 0.75rem !important;
}

.k-ml-md {
    margin-left: 0.75rem !important;
}

.k-mx-md {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
}

.k-my-md {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
}

.k-m-lg {
    margin: 1rem !important;
}

.k-mt-lg {
    margin-top: 1rem !important;
}

.k-mr-lg {
    margin-right: 1rem !important;
}

.k-mb-lg {
    margin-bottom: 1rem !important;
}

.k-ml-lg {
    margin-left: 1rem !important;
}

.k-mx-lg {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
}

.k-my-lg {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

.k-m-xl {
    margin: 1.5rem !important;
}

.k-mt-xl {
    margin-top: 1.5rem !important;
}

.k-mr-xl {
    margin-right: 1.5rem !important;
}

.k-mb-xl {
    margin-bottom: 1.5rem !important;
}

.k-ml-xl {
    margin-left: 1.5rem !important;
}

.k-mx-xl {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
}

.k-my-xl {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.k-m-thin {
    margin: 0.125rem !important;
}

.k-mt-thin {
    margin-top: 0.125rem !important;
}

.k-mr-thin {
    margin-right: 0.125rem !important;
}

.k-mb-thin {
    margin-bottom: 0.125rem !important;
}

.k-ml-thin {
    margin-left: 0.125rem !important;
}

.k-mx-thin {
    margin-left: 0.125rem !important;
    margin-right: 0.125rem !important;
}

.k-my-thin {
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
}

.k-m-hair {
    margin: 0.0625rem !important;
}

.k-mt-hair {
    margin-top: 0.0625rem !important;
}

.k-mr-hair {
    margin-right: 0.0625rem !important;
}

.k-mb-hair {
    margin-bottom: 0.0625rem !important;
}

.k-ml-hair {
    margin-left: 0.0625rem !important;
}

.k-mx-hair {
    margin-left: 0.0625rem !important;
    margin-right: 0.0625rem !important;
}

.k-my-hair {
    margin-top: 0.0625rem !important;
    margin-bottom: 0.0625rem !important;
}

.k-p-0 {
    padding: 0 !important;
}

.k-pt-0 {
    padding-top: 0 !important;
}

.k-pr-0 {
    padding-right: 0 !important;
}

.k-pb-0 {
    padding-bottom: 0 !important;
}

.k-pl-0 {
    padding-left: 0 !important;
}

.k-px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.k-py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.k-p-1 {
    padding: 0.25rem !important;
}

.k-pt-1 {
    padding-top: 0.25rem !important;
}

.k-pr-1 {
    padding-right: 0.25rem !important;
}

.k-pb-1 {
    padding-bottom: 0.25rem !important;
}

.k-pl-1 {
    padding-left: 0.25rem !important;
}

.k-px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
}

.k-py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}

.k-p-2 {
    padding: 0.5rem !important;
}

.k-pt-2 {
    padding-top: 0.5rem !important;
}

.k-pr-2 {
    padding-right: 0.5rem !important;
}

.k-pb-2 {
    padding-bottom: 0.5rem !important;
}

.k-pl-2 {
    padding-left: 0.5rem !important;
}

.k-px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}

.k-py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.k-p-3 {
    padding: 0.75rem !important;
}

.k-pt-3 {
    padding-top: 0.75rem !important;
}

.k-pr-3 {
    padding-right: 0.75rem !important;
}

.k-pb-3 {
    padding-bottom: 0.75rem !important;
}

.k-pl-3 {
    padding-left: 0.75rem !important;
}

.k-px-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
}

.k-py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
}

.k-p-4 {
    padding: 1rem !important;
}

.k-pt-4 {
    padding-top: 1rem !important;
}

.k-pr-4 {
    padding-right: 1rem !important;
}

.k-pb-4 {
    padding-bottom: 1rem !important;
}

.k-pl-4 {
    padding-left: 1rem !important;
}

.k-px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.k-py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.k-p-5 {
    padding: 1.25rem !important;
}

.k-pt-5 {
    padding-top: 1.25rem !important;
}

.k-pr-5 {
    padding-right: 1.25rem !important;
}

.k-pb-5 {
    padding-bottom: 1.25rem !important;
}

.k-pl-5 {
    padding-left: 1.25rem !important;
}

.k-px-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
}

.k-py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
}

.k-p-6 {
    padding: 1.5rem !important;
}

.k-pt-6 {
    padding-top: 1.5rem !important;
}

.k-pr-6 {
    padding-right: 1.5rem !important;
}

.k-pb-6 {
    padding-bottom: 1.5rem !important;
}

.k-pl-6 {
    padding-left: 1.5rem !important;
}

.k-px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

.k-py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.k-p-7 {
    padding: 1.75rem !important;
}

.k-pt-7 {
    padding-top: 1.75rem !important;
}

.k-pr-7 {
    padding-right: 1.75rem !important;
}

.k-pb-7 {
    padding-bottom: 1.75rem !important;
}

.k-pl-7 {
    padding-left: 1.75rem !important;
}

.k-px-7 {
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
}

.k-py-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
}

.k-p-8 {
    padding: 2rem !important;
}

.k-pt-8 {
    padding-top: 2rem !important;
}

.k-pr-8 {
    padding-right: 2rem !important;
}

.k-pb-8 {
    padding-bottom: 2rem !important;
}

.k-pl-8 {
    padding-left: 2rem !important;
}

.k-px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
}

.k-py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.k-p-9 {
    padding: 2.25rem !important;
}

.k-pt-9 {
    padding-top: 2.25rem !important;
}

.k-pr-9 {
    padding-right: 2.25rem !important;
}

.k-pb-9 {
    padding-bottom: 2.25rem !important;
}

.k-pl-9 {
    padding-left: 2.25rem !important;
}

.k-px-9 {
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
}

.k-py-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
}

.k-p-10 {
    padding: 2.5rem !important;
}

.k-pt-10 {
    padding-top: 2.5rem !important;
}

.k-pr-10 {
    padding-right: 2.5rem !important;
}

.k-pb-10 {
    padding-bottom: 2.5rem !important;
}

.k-pl-10 {
    padding-left: 2.5rem !important;
}

.k-px-10 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
}

.k-py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
}

.k-p-11 {
    padding: 2.75rem !important;
}

.k-pt-11 {
    padding-top: 2.75rem !important;
}

.k-pr-11 {
    padding-right: 2.75rem !important;
}

.k-pb-11 {
    padding-bottom: 2.75rem !important;
}

.k-pl-11 {
    padding-left: 2.75rem !important;
}

.k-px-11 {
    padding-left: 2.75rem !important;
    padding-right: 2.75rem !important;
}

.k-py-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
}

.k-p-12 {
    padding: 3rem !important;
}

.k-pt-12 {
    padding-top: 3rem !important;
}

.k-pr-12 {
    padding-right: 3rem !important;
}

.k-pb-12 {
    padding-bottom: 3rem !important;
}

.k-pl-12 {
    padding-left: 3rem !important;
}

.k-px-12 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
}

.k-py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.k-p-13 {
    padding: 3.25rem !important;
}

.k-pt-13 {
    padding-top: 3.25rem !important;
}

.k-pr-13 {
    padding-right: 3.25rem !important;
}

.k-pb-13 {
    padding-bottom: 3.25rem !important;
}

.k-pl-13 {
    padding-left: 3.25rem !important;
}

.k-px-13 {
    padding-left: 3.25rem !important;
    padding-right: 3.25rem !important;
}

.k-py-13 {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
}

.k-p-14 {
    padding: 3.5rem !important;
}

.k-pt-14 {
    padding-top: 3.5rem !important;
}

.k-pr-14 {
    padding-right: 3.5rem !important;
}

.k-pb-14 {
    padding-bottom: 3.5rem !important;
}

.k-pl-14 {
    padding-left: 3.5rem !important;
}

.k-px-14 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
}

.k-py-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
}

.k-p-15 {
    padding: 3.75rem !important;
}

.k-pt-15 {
    padding-top: 3.75rem !important;
}

.k-pr-15 {
    padding-right: 3.75rem !important;
}

.k-pb-15 {
    padding-bottom: 3.75rem !important;
}

.k-pl-15 {
    padding-left: 3.75rem !important;
}

.k-px-15 {
    padding-left: 3.75rem !important;
    padding-right: 3.75rem !important;
}

.k-py-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
}

.k-p-16 {
    padding: 4rem !important;
}

.k-pt-16 {
    padding-top: 4rem !important;
}

.k-pr-16 {
    padding-right: 4rem !important;
}

.k-pb-16 {
    padding-bottom: 4rem !important;
}

.k-pl-16 {
    padding-left: 4rem !important;
}

.k-px-16 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
}

.k-py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.k-p-17 {
    padding: 4.25rem !important;
}

.k-pt-17 {
    padding-top: 4.25rem !important;
}

.k-pr-17 {
    padding-right: 4.25rem !important;
}

.k-pb-17 {
    padding-bottom: 4.25rem !important;
}

.k-pl-17 {
    padding-left: 4.25rem !important;
}

.k-px-17 {
    padding-left: 4.25rem !important;
    padding-right: 4.25rem !important;
}

.k-py-17 {
    padding-top: 4.25rem !important;
    padding-bottom: 4.25rem !important;
}

.k-p-18 {
    padding: 4.5rem !important;
}

.k-pt-18 {
    padding-top: 4.5rem !important;
}

.k-pr-18 {
    padding-right: 4.5rem !important;
}

.k-pb-18 {
    padding-bottom: 4.5rem !important;
}

.k-pl-18 {
    padding-left: 4.5rem !important;
}

.k-px-18 {
    padding-left: 4.5rem !important;
    padding-right: 4.5rem !important;
}

.k-py-18 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
}

.k-p-19 {
    padding: 4.75rem !important;
}

.k-pt-19 {
    padding-top: 4.75rem !important;
}

.k-pr-19 {
    padding-right: 4.75rem !important;
}

.k-pb-19 {
    padding-bottom: 4.75rem !important;
}

.k-pl-19 {
    padding-left: 4.75rem !important;
}

.k-px-19 {
    padding-left: 4.75rem !important;
    padding-right: 4.75rem !important;
}

.k-py-19 {
    padding-top: 4.75rem !important;
    padding-bottom: 4.75rem !important;
}

.k-p-20 {
    padding: 5rem !important;
}

.k-pt-20 {
    padding-top: 5rem !important;
}

.k-pr-20 {
    padding-right: 5rem !important;
}

.k-pb-20 {
    padding-bottom: 5rem !important;
}

.k-pl-20 {
    padding-left: 5rem !important;
}

.k-px-20 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
}

.k-py-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.k-p-21 {
    padding: 5.25rem !important;
}

.k-pt-21 {
    padding-top: 5.25rem !important;
}

.k-pr-21 {
    padding-right: 5.25rem !important;
}

.k-pb-21 {
    padding-bottom: 5.25rem !important;
}

.k-pl-21 {
    padding-left: 5.25rem !important;
}

.k-px-21 {
    padding-left: 5.25rem !important;
    padding-right: 5.25rem !important;
}

.k-py-21 {
    padding-top: 5.25rem !important;
    padding-bottom: 5.25rem !important;
}

.k-p-22 {
    padding: 5.5rem !important;
}

.k-pt-22 {
    padding-top: 5.5rem !important;
}

.k-pr-22 {
    padding-right: 5.5rem !important;
}

.k-pb-22 {
    padding-bottom: 5.5rem !important;
}

.k-pl-22 {
    padding-left: 5.5rem !important;
}

.k-px-22 {
    padding-left: 5.5rem !important;
    padding-right: 5.5rem !important;
}

.k-py-22 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
}

.k-p-23 {
    padding: 5.75rem !important;
}

.k-pt-23 {
    padding-top: 5.75rem !important;
}

.k-pr-23 {
    padding-right: 5.75rem !important;
}

.k-pb-23 {
    padding-bottom: 5.75rem !important;
}

.k-pl-23 {
    padding-left: 5.75rem !important;
}

.k-px-23 {
    padding-left: 5.75rem !important;
    padding-right: 5.75rem !important;
}

.k-py-23 {
    padding-top: 5.75rem !important;
    padding-bottom: 5.75rem !important;
}

.k-p-24 {
    padding: 6rem !important;
}

.k-pt-24 {
    padding-top: 6rem !important;
}

.k-pr-24 {
    padding-right: 6rem !important;
}

.k-pb-24 {
    padding-bottom: 6rem !important;
}

.k-pl-24 {
    padding-left: 6rem !important;
}

.k-px-24 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
}

.k-py-24 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

.k-p-xs {
    padding: 0.25rem !important;
}

.k-pt-xs {
    padding-top: 0.25rem !important;
}

.k-pr-xs {
    padding-right: 0.25rem !important;
}

.k-pb-xs {
    padding-bottom: 0.25rem !important;
}

.k-pl-xs {
    padding-left: 0.25rem !important;
}

.k-px-xs {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
}

.k-py-xs {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}

.k-p-sm {
    padding: 0.5rem !important;
}

.k-pt-sm {
    padding-top: 0.5rem !important;
}

.k-pr-sm {
    padding-right: 0.5rem !important;
}

.k-pb-sm {
    padding-bottom: 0.5rem !important;
}

.k-pl-sm {
    padding-left: 0.5rem !important;
}

.k-px-sm {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}

.k-py-sm {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.k-p-md {
    padding: 0.75rem !important;
}

.k-pt-md {
    padding-top: 0.75rem !important;
}

.k-pr-md {
    padding-right: 0.75rem !important;
}

.k-pb-md {
    padding-bottom: 0.75rem !important;
}

.k-pl-md {
    padding-left: 0.75rem !important;
}

.k-px-md {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
}

.k-py-md {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
}

.k-p-lg {
    padding: 1rem !important;
}

.k-pt-lg {
    padding-top: 1rem !important;
}

.k-pr-lg {
    padding-right: 1rem !important;
}

.k-pb-lg {
    padding-bottom: 1rem !important;
}

.k-pl-lg {
    padding-left: 1rem !important;
}

.k-px-lg {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.k-py-lg {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.k-p-xl {
    padding: 1.5rem !important;
}

.k-pt-xl {
    padding-top: 1.5rem !important;
}

.k-pr-xl {
    padding-right: 1.5rem !important;
}

.k-pb-xl {
    padding-bottom: 1.5rem !important;
}

.k-pl-xl {
    padding-left: 1.5rem !important;
}

.k-px-xl {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

.k-py-xl {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.k-p-thin {
    padding: 0.125rem !important;
}

.k-pt-thin {
    padding-top: 0.125rem !important;
}

.k-pr-thin {
    padding-right: 0.125rem !important;
}

.k-pb-thin {
    padding-bottom: 0.125rem !important;
}

.k-pl-thin {
    padding-left: 0.125rem !important;
}

.k-px-thin {
    padding-left: 0.125rem !important;
    padding-right: 0.125rem !important;
}

.k-py-thin {
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
}

.k-p-hair {
    padding: 0.0625rem !important;
}

.k-pt-hair {
    padding-top: 0.0625rem !important;
}

.k-pr-hair {
    padding-right: 0.0625rem !important;
}

.k-pb-hair {
    padding-bottom: 0.0625rem !important;
}

.k-pl-hair {
    padding-left: 0.0625rem !important;
}

.k-px-hair {
    padding-left: 0.0625rem !important;
    padding-right: 0.0625rem !important;
}

.k-py-hair {
    padding-top: 0.0625rem !important;
    padding-bottom: 0.0625rem !important;
}

.k-no-gap {
    gap: 0 !important;
}

.k-gap-0 {
    gap: 0;
}

.k-gap-x-0 {
    -webkit-column-gap: 0;
    column-gap: 0;
}

.k-gap-y-0 {
    row-gap: 0;
}

.\!k-gap-0 {
    gap: 0 !important;
}

.\!k-gap-x-0 {
    -webkit-column-gap: 0 !important;
    column-gap: 0 !important;
}

.\!k-gap-y-0 {
    row-gap: 0 !important;
}

.k-gap-1 {
    gap: 0.25rem;
}

.k-gap-x-1 {
    -webkit-column-gap: 0.25rem;
    column-gap: 0.25rem;
}

.k-gap-y-1 {
    row-gap: 0.25rem;
}

.\!k-gap-1 {
    gap: 0.25rem !important;
}

.\!k-gap-x-1 {
    -webkit-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
}

.\!k-gap-y-1 {
    row-gap: 0.25rem !important;
}

.k-gap-2 {
    gap: 0.5rem;
}

.k-gap-x-2 {
    -webkit-column-gap: 0.5rem;
    column-gap: 0.5rem;
}

.k-gap-y-2 {
    row-gap: 0.5rem;
}

.\!k-gap-2 {
    gap: 0.5rem !important;
}

.\!k-gap-x-2 {
    -webkit-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
}

.\!k-gap-y-2 {
    row-gap: 0.5rem !important;
}

.k-gap-3 {
    gap: 0.75rem;
}

.k-gap-x-3 {
    -webkit-column-gap: 0.75rem;
    column-gap: 0.75rem;
}

.k-gap-y-3 {
    row-gap: 0.75rem;
}

.\!k-gap-3 {
    gap: 0.75rem !important;
}

.\!k-gap-x-3 {
    -webkit-column-gap: 0.75rem !important;
    column-gap: 0.75rem !important;
}

.\!k-gap-y-3 {
    row-gap: 0.75rem !important;
}

.k-gap-4 {
    gap: 1rem;
}

.k-gap-x-4 {
    -webkit-column-gap: 1rem;
    column-gap: 1rem;
}

.k-gap-y-4 {
    row-gap: 1rem;
}

.\!k-gap-4 {
    gap: 1rem !important;
}

.\!k-gap-x-4 {
    -webkit-column-gap: 1rem !important;
    column-gap: 1rem !important;
}

.\!k-gap-y-4 {
    row-gap: 1rem !important;
}

.k-gap-5 {
    gap: 1.25rem;
}

.k-gap-x-5 {
    -webkit-column-gap: 1.25rem;
    column-gap: 1.25rem;
}

.k-gap-y-5 {
    row-gap: 1.25rem;
}

.\!k-gap-5 {
    gap: 1.25rem !important;
}

.\!k-gap-x-5 {
    -webkit-column-gap: 1.25rem !important;
    column-gap: 1.25rem !important;
}

.\!k-gap-y-5 {
    row-gap: 1.25rem !important;
}

.k-gap-6 {
    gap: 1.5rem;
}

.k-gap-x-6 {
    -webkit-column-gap: 1.5rem;
    column-gap: 1.5rem;
}

.k-gap-y-6 {
    row-gap: 1.5rem;
}

.\!k-gap-6 {
    gap: 1.5rem !important;
}

.\!k-gap-x-6 {
    -webkit-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
}

.\!k-gap-y-6 {
    row-gap: 1.5rem !important;
}

.k-gap-7 {
    gap: 1.75rem;
}

.k-gap-x-7 {
    -webkit-column-gap: 1.75rem;
    column-gap: 1.75rem;
}

.k-gap-y-7 {
    row-gap: 1.75rem;
}

.\!k-gap-7 {
    gap: 1.75rem !important;
}

.\!k-gap-x-7 {
    -webkit-column-gap: 1.75rem !important;
    column-gap: 1.75rem !important;
}

.\!k-gap-y-7 {
    row-gap: 1.75rem !important;
}

.k-gap-8 {
    gap: 2rem;
}

.k-gap-x-8 {
    -webkit-column-gap: 2rem;
    column-gap: 2rem;
}

.k-gap-y-8 {
    row-gap: 2rem;
}

.\!k-gap-8 {
    gap: 2rem !important;
}

.\!k-gap-x-8 {
    -webkit-column-gap: 2rem !important;
    column-gap: 2rem !important;
}

.\!k-gap-y-8 {
    row-gap: 2rem !important;
}

.k-gap-9 {
    gap: 2.25rem;
}

.k-gap-x-9 {
    -webkit-column-gap: 2.25rem;
    column-gap: 2.25rem;
}

.k-gap-y-9 {
    row-gap: 2.25rem;
}

.\!k-gap-9 {
    gap: 2.25rem !important;
}

.\!k-gap-x-9 {
    -webkit-column-gap: 2.25rem !important;
    column-gap: 2.25rem !important;
}

.\!k-gap-y-9 {
    row-gap: 2.25rem !important;
}

.k-gap-10 {
    gap: 2.5rem;
}

.k-gap-x-10 {
    -webkit-column-gap: 2.5rem;
    column-gap: 2.5rem;
}

.k-gap-y-10 {
    row-gap: 2.5rem;
}

.\!k-gap-10 {
    gap: 2.5rem !important;
}

.\!k-gap-x-10 {
    -webkit-column-gap: 2.5rem !important;
    column-gap: 2.5rem !important;
}

.\!k-gap-y-10 {
    row-gap: 2.5rem !important;
}

.k-gap-11 {
    gap: 2.75rem;
}

.k-gap-x-11 {
    -webkit-column-gap: 2.75rem;
    column-gap: 2.75rem;
}

.k-gap-y-11 {
    row-gap: 2.75rem;
}

.\!k-gap-11 {
    gap: 2.75rem !important;
}

.\!k-gap-x-11 {
    -webkit-column-gap: 2.75rem !important;
    column-gap: 2.75rem !important;
}

.\!k-gap-y-11 {
    row-gap: 2.75rem !important;
}

.k-gap-12 {
    gap: 3rem;
}

.k-gap-x-12 {
    -webkit-column-gap: 3rem;
    column-gap: 3rem;
}

.k-gap-y-12 {
    row-gap: 3rem;
}

.\!k-gap-12 {
    gap: 3rem !important;
}

.\!k-gap-x-12 {
    -webkit-column-gap: 3rem !important;
    column-gap: 3rem !important;
}

.\!k-gap-y-12 {
    row-gap: 3rem !important;
}

.k-gap-13 {
    gap: 3.25rem;
}

.k-gap-x-13 {
    -webkit-column-gap: 3.25rem;
    column-gap: 3.25rem;
}

.k-gap-y-13 {
    row-gap: 3.25rem;
}

.\!k-gap-13 {
    gap: 3.25rem !important;
}

.\!k-gap-x-13 {
    -webkit-column-gap: 3.25rem !important;
    column-gap: 3.25rem !important;
}

.\!k-gap-y-13 {
    row-gap: 3.25rem !important;
}

.k-gap-14 {
    gap: 3.5rem;
}

.k-gap-x-14 {
    -webkit-column-gap: 3.5rem;
    column-gap: 3.5rem;
}

.k-gap-y-14 {
    row-gap: 3.5rem;
}

.\!k-gap-14 {
    gap: 3.5rem !important;
}

.\!k-gap-x-14 {
    -webkit-column-gap: 3.5rem !important;
    column-gap: 3.5rem !important;
}

.\!k-gap-y-14 {
    row-gap: 3.5rem !important;
}

.k-gap-15 {
    gap: 3.75rem;
}

.k-gap-x-15 {
    -webkit-column-gap: 3.75rem;
    column-gap: 3.75rem;
}

.k-gap-y-15 {
    row-gap: 3.75rem;
}

.\!k-gap-15 {
    gap: 3.75rem !important;
}

.\!k-gap-x-15 {
    -webkit-column-gap: 3.75rem !important;
    column-gap: 3.75rem !important;
}

.\!k-gap-y-15 {
    row-gap: 3.75rem !important;
}

.k-gap-16 {
    gap: 4rem;
}

.k-gap-x-16 {
    -webkit-column-gap: 4rem;
    column-gap: 4rem;
}

.k-gap-y-16 {
    row-gap: 4rem;
}

.\!k-gap-16 {
    gap: 4rem !important;
}

.\!k-gap-x-16 {
    -webkit-column-gap: 4rem !important;
    column-gap: 4rem !important;
}

.\!k-gap-y-16 {
    row-gap: 4rem !important;
}

.k-gap-17 {
    gap: 4.25rem;
}

.k-gap-x-17 {
    -webkit-column-gap: 4.25rem;
    column-gap: 4.25rem;
}

.k-gap-y-17 {
    row-gap: 4.25rem;
}

.\!k-gap-17 {
    gap: 4.25rem !important;
}

.\!k-gap-x-17 {
    -webkit-column-gap: 4.25rem !important;
    column-gap: 4.25rem !important;
}

.\!k-gap-y-17 {
    row-gap: 4.25rem !important;
}

.k-gap-18 {
    gap: 4.5rem;
}

.k-gap-x-18 {
    -webkit-column-gap: 4.5rem;
    column-gap: 4.5rem;
}

.k-gap-y-18 {
    row-gap: 4.5rem;
}

.\!k-gap-18 {
    gap: 4.5rem !important;
}

.\!k-gap-x-18 {
    -webkit-column-gap: 4.5rem !important;
    column-gap: 4.5rem !important;
}

.\!k-gap-y-18 {
    row-gap: 4.5rem !important;
}

.k-gap-19 {
    gap: 4.75rem;
}

.k-gap-x-19 {
    -webkit-column-gap: 4.75rem;
    column-gap: 4.75rem;
}

.k-gap-y-19 {
    row-gap: 4.75rem;
}

.\!k-gap-19 {
    gap: 4.75rem !important;
}

.\!k-gap-x-19 {
    -webkit-column-gap: 4.75rem !important;
    column-gap: 4.75rem !important;
}

.\!k-gap-y-19 {
    row-gap: 4.75rem !important;
}

.k-gap-20 {
    gap: 5rem;
}

.k-gap-x-20 {
    -webkit-column-gap: 5rem;
    column-gap: 5rem;
}

.k-gap-y-20 {
    row-gap: 5rem;
}

.\!k-gap-20 {
    gap: 5rem !important;
}

.\!k-gap-x-20 {
    -webkit-column-gap: 5rem !important;
    column-gap: 5rem !important;
}

.\!k-gap-y-20 {
    row-gap: 5rem !important;
}

.k-gap-21 {
    gap: 5.25rem;
}

.k-gap-x-21 {
    -webkit-column-gap: 5.25rem;
    column-gap: 5.25rem;
}

.k-gap-y-21 {
    row-gap: 5.25rem;
}

.\!k-gap-21 {
    gap: 5.25rem !important;
}

.\!k-gap-x-21 {
    -webkit-column-gap: 5.25rem !important;
    column-gap: 5.25rem !important;
}

.\!k-gap-y-21 {
    row-gap: 5.25rem !important;
}

.k-gap-22 {
    gap: 5.5rem;
}

.k-gap-x-22 {
    -webkit-column-gap: 5.5rem;
    column-gap: 5.5rem;
}

.k-gap-y-22 {
    row-gap: 5.5rem;
}

.\!k-gap-22 {
    gap: 5.5rem !important;
}

.\!k-gap-x-22 {
    -webkit-column-gap: 5.5rem !important;
    column-gap: 5.5rem !important;
}

.\!k-gap-y-22 {
    row-gap: 5.5rem !important;
}

.k-gap-23 {
    gap: 5.75rem;
}

.k-gap-x-23 {
    -webkit-column-gap: 5.75rem;
    column-gap: 5.75rem;
}

.k-gap-y-23 {
    row-gap: 5.75rem;
}

.\!k-gap-23 {
    gap: 5.75rem !important;
}

.\!k-gap-x-23 {
    -webkit-column-gap: 5.75rem !important;
    column-gap: 5.75rem !important;
}

.\!k-gap-y-23 {
    row-gap: 5.75rem !important;
}

.k-gap-24 {
    gap: 6rem;
}

.k-gap-x-24 {
    -webkit-column-gap: 6rem;
    column-gap: 6rem;
}

.k-gap-y-24 {
    row-gap: 6rem;
}

.\!k-gap-24 {
    gap: 6rem !important;
}

.\!k-gap-x-24 {
    -webkit-column-gap: 6rem !important;
    column-gap: 6rem !important;
}

.\!k-gap-y-24 {
    row-gap: 6rem !important;
}

.k-gap-xs {
    gap: 0.25rem;
}

.k-gap-x-xs {
    -webkit-column-gap: 0.25rem;
    column-gap: 0.25rem;
}

.k-gap-y-xs {
    row-gap: 0.25rem;
}

.\!k-gap-xs {
    gap: 0.25rem !important;
}

.\!k-gap-x-xs {
    -webkit-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
}

.\!k-gap-y-xs {
    row-gap: 0.25rem !important;
}

.k-gap-sm {
    gap: 0.5rem;
}

.k-gap-x-sm {
    -webkit-column-gap: 0.5rem;
    column-gap: 0.5rem;
}

.k-gap-y-sm {
    row-gap: 0.5rem;
}

.\!k-gap-sm {
    gap: 0.5rem !important;
}

.\!k-gap-x-sm {
    -webkit-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
}

.\!k-gap-y-sm {
    row-gap: 0.5rem !important;
}

.k-gap-md {
    gap: 0.75rem;
}

.k-gap-x-md {
    -webkit-column-gap: 0.75rem;
    column-gap: 0.75rem;
}

.k-gap-y-md {
    row-gap: 0.75rem;
}

.\!k-gap-md {
    gap: 0.75rem !important;
}

.\!k-gap-x-md {
    -webkit-column-gap: 0.75rem !important;
    column-gap: 0.75rem !important;
}

.\!k-gap-y-md {
    row-gap: 0.75rem !important;
}

.k-gap-lg {
    gap: 1rem;
}

.k-gap-x-lg {
    -webkit-column-gap: 1rem;
    column-gap: 1rem;
}

.k-gap-y-lg {
    row-gap: 1rem;
}

.\!k-gap-lg {
    gap: 1rem !important;
}

.\!k-gap-x-lg {
    -webkit-column-gap: 1rem !important;
    column-gap: 1rem !important;
}

.\!k-gap-y-lg {
    row-gap: 1rem !important;
}

.k-gap-xl {
    gap: 1.5rem;
}

.k-gap-x-xl {
    -webkit-column-gap: 1.5rem;
    column-gap: 1.5rem;
}

.k-gap-y-xl {
    row-gap: 1.5rem;
}

.\!k-gap-xl {
    gap: 1.5rem !important;
}

.\!k-gap-x-xl {
    -webkit-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
}

.\!k-gap-y-xl {
    row-gap: 1.5rem !important;
}

.k-gap-thin {
    gap: 0.125rem;
}

.k-gap-x-thin {
    -webkit-column-gap: 0.125rem;
    column-gap: 0.125rem;
}

.k-gap-y-thin {
    row-gap: 0.125rem;
}

.\!k-gap-thin {
    gap: 0.125rem !important;
}

.\!k-gap-x-thin {
    -webkit-column-gap: 0.125rem !important;
    column-gap: 0.125rem !important;
}

.\!k-gap-y-thin {
    row-gap: 0.125rem !important;
}

.k-gap-hair {
    gap: 0.0625rem;
}

.k-gap-x-hair {
    -webkit-column-gap: 0.0625rem;
    column-gap: 0.0625rem;
}

.k-gap-y-hair {
    row-gap: 0.0625rem;
}

.\!k-gap-hair {
    gap: 0.0625rem !important;
}

.\!k-gap-x-hair {
    -webkit-column-gap: 0.0625rem !important;
    column-gap: 0.0625rem !important;
}

.\!k-gap-y-hair {
    row-gap: 0.0625rem !important;
}

.k-spacer {
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
}

.k-spacer-sized {
    -ms-flex-positive: 0;
    flex-grow: 0;
}

.k-table-layout-fixed {
    table-layout: fixed;
}

.k-table-layout-auto {
    table-layout: auto;
}

.k-text-nowrap {
    white-space: nowrap;
}

.\!k-text-nowrap {
    white-space: nowrap !important;
}

.k-text-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.k-white-space-normal {
    white-space: normal;
}

.\!k-white-space-normal {
    white-space: normal !important;
}

.k-white-space-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-wrap {
    white-space: pre-wrap;
}

.\!k-white-space-pre-wrap {
    white-space: pre-wrap !important;
}

.k-white-space-pre-line {
    white-space: pre-line;
}

.\!k-white-space-pre-line {
    white-space: pre-line !important;
}

.k-white-space-break-spaces {
    white-space: break-spaces;
}

.\!k-white-space-break-spaces {
    white-space: break-spaces !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-lowercase {
    text-transform: lowercase;
}

.\!k-text-lowercase {
    text-transform: lowercase !important;
}

.k-text-uppercase {
    text-transform: uppercase;
}

.\!k-text-uppercase {
    text-transform: uppercase !important;
}

.k-text-capitalize {
    text-transform: capitalize;
}

.\!k-text-capitalize {
    text-transform: capitalize !important;
}

.k-fs-xs {
    font-size: 0.75rem;
}

.\!k-fs-xs {
    font-size: 0.75rem !important;
}

.k-fs-sm {
    font-size: 0.875rem;
}

.\!k-fs-sm {
    font-size: 0.875rem !important;
}

.k-fs-md {
    font-size: 1rem;
}

.\!k-fs-md {
    font-size: 1rem !important;
}

.k-fs-lg {
    font-size: 1.25rem;
}

.\!k-fs-lg {
    font-size: 1.25rem !important;
}

.k-fs-xl {
    font-size: 1.5rem;
}

.\!k-fs-xl {
    font-size: 1.5rem !important;
}

.k-font-weight-light {
    font-weight: 300 !important;
}

.k-font-weight-normal {
    font-weight: 400 !important;
}

.k-font-weight-bold {
    font-weight: 700 !important;
}

.k-text-base,
.k-color-base {
    color: #212529;
}

.\!k-text-base,
.\!k-color-base {
    color: #212529 !important;
}

.k-color-inherit {
    color: inherit;
}

.\!k-color-inherit {
    color: inherit !important;
}

.k-text-primary,
.k-color-primary {
    color: #0d6efd;
}

.\!k-text-primary,
.\!k-color-primary {
    color: #0d6efd !important;
}

.k-text-secondary,
.k-color-secondary {
    color: #6c757d;
}

.\!k-text-secondary,
.\!k-color-secondary {
    color: #6c757d !important;
}

.k-text-tertiary,
.k-color-tertiary {
    color: #6f42c1;
}

.\!k-text-tertiary,
.\!k-color-tertiary {
    color: #6f42c1 !important;
}

.k-text-info,
.k-color-info {
    color: #0dcaf0;
}

.\!k-text-info,
.\!k-color-info {
    color: #0dcaf0 !important;
}

.k-text-success,
.k-color-success {
    color: #198754;
}

.\!k-text-success,
.\!k-color-success {
    color: #198754 !important;
}

.k-text-warning,
.k-color-warning {
    color: #ffc107;
}

.\!k-text-warning,
.\!k-color-warning {
    color: #ffc107 !important;
}

.k-text-error,
.k-color-error {
    color: #dc3545;
}

.\!k-text-error,
.\!k-color-error {
    color: #dc3545 !important;
}

.k-text-dark,
.k-color-dark {
    color: #212529;
}

.\!k-text-dark,
.\!k-color-dark {
    color: #212529 !important;
}

.k-text-light,
.k-color-light {
    color: #f8f9fa;
}

.\!k-text-light,
.\!k-color-light {
    color: #f8f9fa !important;
}

.k-text-inverse,
.k-color-inverse {
    color: #212529;
}

.\!k-text-inverse,
.\!k-color-inverse {
    color: #212529 !important;
}

.k-bg-primary {
    background-color: #0d6efd;
}

.\!k-bg-primary {
    background-color: #0d6efd !important;
}

.k-bg-secondary {
    background-color: #6c757d;
}

.\!k-bg-secondary {
    background-color: #6c757d !important;
}

.k-bg-tertiary {
    background-color: #6f42c1;
}

.\!k-bg-tertiary {
    background-color: #6f42c1 !important;
}

.k-bg-info {
    background-color: #0dcaf0;
}

.\!k-bg-info {
    background-color: #0dcaf0 !important;
}

.k-bg-success {
    background-color: #198754;
}

.\!k-bg-success {
    background-color: #198754 !important;
}

.k-bg-warning {
    background-color: #ffc107;
}

.\!k-bg-warning {
    background-color: #ffc107 !important;
}

.k-bg-error {
    background-color: #dc3545;
}

.\!k-bg-error {
    background-color: #dc3545 !important;
}

.k-bg-dark {
    background-color: #212529;
}

.\!k-bg-dark {
    background-color: #212529 !important;
}

.k-bg-light {
    background-color: #f8f9fa;
}

.\!k-bg-light {
    background-color: #f8f9fa !important;
}

.k-bg-inverse {
    background-color: #212529;
}

.\!k-bg-inverse {
    background-color: #212529 !important;
}

.k-touch-action-none {
    -ms-touch-action: none !important;
    touch-action: none !important;
}

.k-touch-action-auto {
    -ms-touch-action: auto !important;
    touch-action: auto !important;
}

.k-flip-h {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
}

.k-flip-v {
    -webkit-transform: scaleY(-1);
    -ms-transform: scaleY(-1);
    transform: scaleY(-1);
}

.k-flip-h.k-flip-v {
    -webkit-transform: scale(-1, -1);
    -ms-transform: scale(-1, -1);
    transform: scale(-1, -1);
}

.k-rotate-45 {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.k-rotate-90 {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.k-rotate-135 {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}

.k-rotate-180 {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.k-rotate-225 {
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
}

.k-rotate-270 {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.k-rotate-315 {
    -webkit-transform: rotate(315deg);
    -ms-transform: rotate(315deg);
    transform: rotate(315deg);
}

.k-scale-0 {
    -webkit-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    transform: scale(0, 0);
}

.k-scale-1 {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
}

.k-scale-2 {
    -webkit-transform: scale(2, 2);
    -ms-transform: scale(2, 2);
    transform: scale(2, 2);
}

.k-translate-0 {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.k-translate-0-50 {
    -webkit-transform: translate(0, 50%);
    -ms-transform: translate(0, 50%);
    transform: translate(0, 50%);
}

.k-translate-0-100 {
    -webkit-transform: translate(0, 100%);
    -ms-transform: translate(0, 100%);
    transform: translate(0, 100%);
}

.k-translate-50-0 {
    -webkit-transform: translate(50%, 0);
    -ms-transform: translate(50%, 0);
    transform: translate(50%, 0);
}

.k-translate-50-50 {
    -webkit-transform: translate(50%, 50%);
    -ms-transform: translate(50%, 50%);
    transform: translate(50%, 50%);
}

.k-translate-50-100 {
    -webkit-transform: translate(50%, 100%);
    -ms-transform: translate(50%, 100%);
    transform: translate(50%, 100%);
}

.k-translate-100-0 {
    -webkit-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    transform: translate(100%, 0);
}

.k-translate-100-50 {
    -webkit-transform: translate(100%, 50%);
    -ms-transform: translate(100%, 50%);
    transform: translate(100%, 50%);
}

.k-translate-100-100 {
    -webkit-transform: translate(100%, 100%);
    -ms-transform: translate(100%, 100%);
    transform: translate(100%, 100%);
}

.k-user-select-none {
    -webkit-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

.k-user-select-auto {
    -webkit-user-select: auto !important;
    -ms-user-select: auto !important;
    user-select: auto !important;
}

.k-user-select-text {
    -webkit-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

.k-user-select-all {
    -webkit-user-select: all !important;
    user-select: all !important;
}

.k-user-select-contain {
    -webkit-user-select: contain !important;
    -ms-user-select: element !important;
    user-select: contain !important;
}

.k-popup {
    border-radius: 0.25rem;
    margin: 0;
    padding: 0;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    font-size: 1rem;
    line-height: 1.5;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: stretch;
    align-items: stretch;
}

    .k-popup .k-item {
        outline: none;
    }

.k-animation-container {
    border-radius: 0 0 0.25rem 0.25rem;
}

.k-animation-container-shown {
    overflow: visible;
}

.k-popup > .k-colorpalette {
    padding: 0.5rem 0.5rem;
}

.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.k-column-menu {
    padding-top: 0;
    padding-bottom: 0;
}

.k-popup {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
    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 0.25rem 0.25rem;
}

@font-face {
    font-family: "WebComponentsIcons";
    font-style: normal;
    font-weight: normal;
}

.k-icon-wrap {
    -ms-flex: none;
    flex: none;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    gap: 0;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-item-align: start;
    align-self: flex-start;
    vertical-align: middle;
    position: relative;
}

    .k-icon-wrap::before {
        content: "\200b";
        width: 0;
        overflow: hidden;
        -ms-flex: none;
        flex: none;
        display: inline-block;
        vertical-align: top;
    }

.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;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: 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: 1em;
    height: 1em;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    vertical-align: middle;
    position: relative;
}

    .k-svg-icon > svg {
        fill: currentColor;
        -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    }

    .k-svg-icon.k-flip-h, .k-svg-icon.k-flip-v, .k-svg-icon.k-flip-h.k-flip-v {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }

        .k-svg-icon.k-flip-h > svg {
            -webkit-transform: scaleX(-1);
            -ms-transform: scaleX(-1);
            transform: scaleX(-1);
        }

        .k-svg-icon.k-flip-v > svg {
            -webkit-transform: scaleY(-1);
            -ms-transform: scaleY(-1);
            transform: scaleY(-1);
        }

        .k-svg-icon.k-flip-h.k-flip-v > svg {
            -webkit-transform: scale(-1, -1);
            -ms-transform: scale(-1, -1);
            transform: scale(-1, -1);
        }

.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-widget .k-icon.k-i-expand, .k-widget .k-icon.k-i-collapse {
    cursor: pointer;
}

.k-icon-xs {
    font-size: 8px;
}

.k-icon-sm {
    font-size: 12px;
}

.k-icon-md {
    font-size: 32px;
}

.k-icon-lg {
    font-size: 48px;
}

.k-icon-xl {
    font-size: 64px;
}

.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-chevron-double-up::before {
    content: "\e05e";
}

.k-i-arrow-chevron-up::before {
    content: "\e013";
}

.k-i-arrowhead-n::before {
    content: "\e013";
}

.k-i-chevron-right::before {
    content: "\e014";
}

.k-i-chevron-double-right::before {
    content: "\e05f";
}

.k-i-arrow-chevron-right::before {
    content: "\e014";
}

.k-i-arrowhead-e::before {
    content: "\e014";
}

.k-i-chevron-down::before {
    content: "\e015";
}

.k-i-chevron-double-down::before {
    content: "\e060";
}

.k-i-arrow-chevron-down::before {
    content: "\e015";
}

.k-i-arrowhead-s::before {
    content: "\e015";
}

.k-i-chevron-left::before {
    content: "\e016";
}

.k-i-chevron-double-left::before {
    content: "\e061";
}

.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-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-height::before {
    content: "\e035";
}

.k-i-width::before {
    content: "\e036";
}

.k-i-max-height::before {
    content: "\e037";
}

.k-i-max-width::before {
    content: "\e038";
}

.k-i-min-height::before {
    content: "\e039";
}

.k-i-min-width::before {
    content: "\e03a";
}

.k-i-margin::before {
    content: "\e03b";
}

.k-i-margin-top::before {
    content: "\e03c";
}

.k-i-margin-right::before {
    content: "\e03d";
}

.k-i-margin-bottom::before {
    content: "\e03e";
}

.k-i-margin-left::before {
    content: "\e03f";
}

.k-i-padding::before {
    content: "\e040";
}

.k-i-padding-top::before {
    content: "\e041";
}

.k-i-padding-right::before {
    content: "\e042";
}

.k-i-padding-bottom::before {
    content: "\e043";
}

.k-i-padding-left::before {
    content: "\e044";
}

.k-i-border-style::before {
    content: "\e045";
}

.k-i-border-style-top::before {
    content: "\e046";
}

.k-i-border-style-right::before {
    content: "\e047";
}

.k-i-border-style-bottom::before {
    content: "\e048";
}

.k-i-border-style-left::before {
    content: "\e049";
}

.k-i-border-radius::before {
    content: "\e04a";
}

.k-i-border-radius-top-right::before {
    content: "\e04b";
}

.k-i-border-radius-bottom-right::before {
    content: "\e04c";
}

.k-i-border-radius-bottom-left::before {
    content: "\e04d";
}

.k-i-border-radius-top-left::before {
    content: "\e04e";
}

.k-i-outline-width::before {
    content: "\e04f";
}

.k-i-outline-offset::before {
    content: "\e050";
}

.k-i-box-sizing::before {
    content: "\e051";
}

.k-i-position-top::before {
    content: "\e052";
}

.k-i-position-right::before {
    content: "\e053";
}

.k-i-position-bottom::before {
    content: "\e054";
}

.k-i-position-left::before {
    content: "\e055";
}

.k-i-display-block::before {
    content: "\e056";
}

.k-i-display-inline-block::before {
    content: "\e057";
}

.k-i-display-flex::before {
    content: "\e058";
}

.k-i-display-inline-flex::before {
    content: "\e059";
}

.k-i-gap-column::before {
    content: "\e05a";
}

.k-i-gap-row::before {
    content: "\e05b";
}

.k-i-handle-resize-alt::before {
    content: "\e05c";
}

.k-i-handle-resize::before {
    content: "\e05d";
}

.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-dimentions::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-color-canvas::before {
    content: "\e554";
}

.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-report-header-section::before {
    content: "\e925";
}

.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-report-element::before {
    content: "\e94a";
}

.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-data-ods::before {
    content: "\e948";
}

.k-i-file-report::before {
    content: "\e949";
}

.k-i-table-position-start::before {
    content: "\e6a2";
}

.k-i-table-position-left::before {
    content: "\e6a2";
}

.k-i-table-position-center::before {
    content: "\e6a3";
}

.k-i-table-position-end::before {
    content: "\e6a4";
}

.k-i-table-position-right::before {
    content: "\e6a4";
}

.k-i-list-roman-upper::before {
    content: "\e6a5";
}

.k-i-list-roman-lower::before {
    content: "\e6a6";
}

.k-i-import::before {
    content: "\e6a7";
}

.k-i-export::before {
    content: "\e6a8";
}

.k-i-match-full-word::before {
    content: "\e6a9";
}

.k-i-regular-expression::before {
    content: "\e6ab";
}

.k-i-replace-single::before {
    content: "\e6ac";
}

.k-i-replace-all::before {
    content: "\e6ad";
}

.k-i-letter-space::before {
    content: "\e6ae";
}

.k-i-line-height::before {
    content: "\e6af";
}

.k-i-blockquote::before {
    content: "\e6b0";
}

.k-i-list-latin-big::before {
    content: "\e6b1";
}

.k-i-list-latin-small::before {
    content: "\e6b2";
}

.k-i-list-unordered-square::before {
    content: "\e6b3";
}

.k-i-list-unordered-outline::before {
    content: "\e6b4";
}

.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-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 {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    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;
    -ms-high-contrast-adjust: none;
}

.k-image {
    display: inline-block;
}

.k-tooltip {
    border-radius: 0.25rem;
    margin: 0;
    padding: 0.25rem 0.5rem;
    border-width: 0px;
    border-style: solid;
    box-sizing: border-box;
    background-repeat: repeat-x;
    outline: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 0.875rem;
    line-height: 1.5;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-align: start;
    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: 0.5rem;
    margin-inline-end: 0.5rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.k-tooltip-title {
    margin-bottom: .25em;
    font-size: 1.09375rem;
    line-height: 1;
}

.k-tooltip-content {
    -ms-flex-item-align: stretch;
    align-self: stretch;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
}

.k-tooltip-button {
    -webkit-margin-start: 0.5rem;
    margin-inline-start: 0.5rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

    .k-tooltip-button .k-icon {
        color: inherit;
        vertical-align: top;
    }

.k-callout {
    width: 0.8rem;
    height: 0.8rem;
    border-width: 0.4rem;
    border-style: solid;
    border-color: transparent;
    position: absolute;
    pointer-events: none;
}

.k-callout-n {
    margin-left: -0.4rem;
    border-bottom-color: currentColor;
    top: -0.8rem;
    left: 50%;
    pointer-events: none;
}

.k-callout-e {
    margin-top: -0.4rem;
    border-left-color: currentColor;
    top: 50%;
    right: -0.8rem;
    pointer-events: none;
}

.k-callout-s {
    margin-left: -0.4rem;
    border-top-color: currentColor;
    bottom: -0.8rem;
    left: 50%;
    pointer-events: none;
}

.k-callout-w {
    margin-top: -0.4rem;
    border-right-color: currentColor;
    top: 50%;
    left: -0.8rem;
    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: #000000;
    color: white;
    background-color: #000000;
}

    .k-tooltip .k-callout {
        color: #000000;
    }

.k-tooltip-primary {
    border-color: #0d6efd;
    color: white;
    background-color: #0d6efd;
}

    .k-tooltip-primary .k-callout {
        color: #0d6efd;
    }

.k-tooltip-info {
    border-color: #0dcaf0;
    color: black;
    background-color: #0dcaf0;
}

    .k-tooltip-info .k-callout {
        color: #0dcaf0;
    }

.k-tooltip-success {
    border-color: #198754;
    color: white;
    background-color: #198754;
}

    .k-tooltip-success .k-callout {
        color: #198754;
    }

.k-tooltip-warning {
    border-color: #ffc107;
    color: black;
    background-color: #ffc107;
}

    .k-tooltip-warning .k-callout {
        color: #ffc107;
    }

.k-tooltip-error {
    border-color: #dc3545;
    color: white;
    background-color: #dc3545;
}

    .k-tooltip-error .k-callout {
        color: #dc3545;
    }

.k-barcode {
    display: inline-block;
}

    .k-barcode > div {
        height: 150px;
    }

.k-var--chart-font {
    font-size: 1rem;
}

.k-var--chart-title-font {
    font-size: 1.143em;
}

.k-var--chart-pane-title-font {
    font-size: 0.857em;
    font-weight: 400;
}

.k-var--chart-label-font {
    font-size: 0.857em;
}

.k-chart,
.k-sparkline,
.k-stockchart {
    border-width: 0px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    line-height: 1.5;
    -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 ease-in 80ms, top ease-in 80ms;
}

.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: 0.25rem;
    font-size: 0.929rem;
    line-height: 1.5;
    padding: 0.25rem 0.5rem;
}

    .k-chart-tooltip th {
        width: auto;
        text-align: center;
        padding: 1px;
    }

    .k-chart-tooltip td {
        width: auto;
        text-align: left;
        padding: 0.25rem 0.5rem;
        line-height: 1.5;
        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;
    -webkit-transform: translateZ(0);
    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: 0.25rem;
    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 {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.k-chart-donut-center {
    position: absolute;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    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-diagram img {
    box-sizing: content-box;
}

.k-treemap {
    height: 400px;
    box-sizing: border-box;
    border-width: 1px;
    border-style: solid;
    outline: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    line-height: 1.5;
    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: 0.25rem 0.5rem;
        border-width: 0 0 1px;
        border-style: solid;
        border-color: inherit;
        font-size: 1rem;
        background-position: 0 0;
        background-repeat: repeat-x;
    }

    .k-treemap .k-treemap-title-vertical {
        padding: 0.5rem 0.25rem;
        width: 1.5em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        position: absolute;
        top: 0;
        bottom: 0;
    }

        .k-treemap .k-treemap-title-vertical > div {
            -webkit-transform-origin: right;
            -ms-transform-origin: right;
            transform-origin: right;
            -webkit-transform: rotate(-90deg);
            -ms-transform: rotate(-90deg);
            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: calc(2rem + 1px);
    }

    .k-treemap .k-treemap-title-vertical + .k-treemap-wrap {
        left: calc(2rem + 1px);
    }

    .k-treemap .k-leaf {
        padding: 0.5rem;
    }

.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--accent {
    background-color: #0d6efd;
}

.k-var--accent-contrast {
    background-color: white;
}

.k-var--primary {
    background-color: #0d6efd;
}

.k-var--primary-contrast {
    background-color: white;
}

.k-var--base {
    background-color: #f8f9fa;
}

.k-var--background {
    background-color: #ffffff;
}

.k-var--border-radius {
    margin-top: 0.25rem;
}

.k-var--normal-background {
    background-color: #f8f9fa;
}

.k-var--normal-text-color {
    background-color: #212529;
}

.k-var--hover-background {
    background-color: #e9ecef;
}

.k-var--hover-text-color {
    background-color: #16181b;
}

.k-var--selected-background {
    background-color: #0d6efd;
}

.k-var--selected-text-color {
    background-color: #ffffff;
}

.k-var--success {
    background-color: #198754;
}

.k-var--info {
    background-color: #0dcaf0;
}

.k-var--warning {
    background-color: #ffc107;
}

.k-var--error {
    background-color: #dc3545;
}

.k-var--series-a {
    background-color: #0d6efd;
}

.k-var--series-b {
    background-color: #6f42c1;
}

.k-var--series-c {
    background-color: #20c997;
}

.k-var--series-d {
    background-color: #198754;
}

.k-var--series-e {
    background-color: #ffc107;
}

.k-var--series-f {
    background-color: #dc3545;
}

.k-var--series-1 {
    background-color: #0d6efd;
}

.k-var--series-2 {
    background-color: #6f42c1;
}

.k-var--series-3 {
    background-color: #20c997;
}

.k-var--series-4 {
    background-color: #198754;
}

.k-var--series-5 {
    background-color: #ffc107;
}

.k-var--series-6 {
    background-color: #dc3545;
}

.k-var--series-7 {
    background-color: #4a92fe;
}

.k-var--series-8 {
    background-color: #9371d1;
}

.k-var--series-9 {
    background-color: #58d7b1;
}

.k-var--series-10 {
    background-color: #53a57f;
}

.k-var--series-11 {
    background-color: #ffd145;
}

.k-var--series-12 {
    background-color: #e56874;
}

.k-var--series-13 {
    background-color: #0a53be;
}

.k-var--series-14 {
    background-color: #533291;
}

.k-var--series-15 {
    background-color: #189771;
}

.k-var--series-16 {
    background-color: #13653f;
}

.k-var--series-17 {
    background-color: #bf9105;
}

.k-var--series-18 {
    background-color: #a52834;
}

.k-var--series-19 {
    background-color: #86b7fe;
}

.k-var--series-20 {
    background-color: #b7a1e0;
}

.k-var--series-21 {
    background-color: #90e4cb;
}

.k-var--series-22 {
    background-color: #8cc3aa;
}

.k-var--series-23 {
    background-color: #ffe083;
}

.k-var--series-24 {
    background-color: #ee9aa2;
}

.k-var--series-25 {
    background-color: #07377f;
}

.k-var--series-26 {
    background-color: #382161;
}

.k-var--series-27 {
    background-color: #10654c;
}

.k-var--series-28 {
    background-color: #0d442a;
}

.k-var--series-29 {
    background-color: #806104;
}

.k-var--series-30 {
    background-color: #6e1b23;
}

.k-var--gauge-pointer {
    background-color: #0d6efd;
}

.k-var--gauge-track {
    background-color: #ebebeb;
}

.k-var--chart-inactive {
    background-color: rgba(33, 37, 41, 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: 0.6;
}

.k-var--chart-area-inactive-opacity {
    opacity: 0.1;
}

.k-var--chart-line-inactive-opacity {
    opacity: 0.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: #dee2e6;
    color: #212529;
    background-color: transparent;
}

    .k-chart .k-popup,
    .k-sparkline .k-popup,
    .k-stockchart .k-popup {
        background: transparent;
    }

.k-chart-tooltip {
    color: #ffffff;
}

.k-chart-tooltip-inverse {
    color: #000000;
}

.k-chart-crosshair-tooltip,
.k-chart-shared-tooltip {
    color: #212529;
    background-color: #ebebeb;
    border-color: rgba(0, 0, 0, 0.08);
}

.k-selection {
    border-color: rgba(0, 0, 0, 0.08);
    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: #e4e7eb;
    color: #212529;
    background-color: #e4e7eb;
}

    .k-handle:hover {
        border-color: #c7cdd5;
        background-color: #ced3db;
    }

    .k-handle div {
        background-color: transparent;
    }

.k-mask {
    background-color: #ffffff;
    opacity: .8;
}

.k-treemap {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

    .k-treemap .k-treemap-title {
        border-color: #dee2e6;
        color: #212529;
        background-color: #f8f9fa;
    }

    .k-treemap .k-leaf {
        color: #ffffff;
    }

        .k-treemap .k-leaf.k-inverse {
            color: #212529;
        }

        .k-treemap .k-leaf:hover,
        .k-treemap .k-leaf.k-hover {
            box-shadow: inset 0 0 0 3px #dee2e6;
        }

.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: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: 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: 0.175em 0.325em;
    font-size: 0.75em;
    line-height: 1;
    min-width: calc(1.35em + 2px);
}

    .k-badge-sm:empty {
        padding: 0.175em;
        min-width: auto;
    }

.k-badge-md {
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    line-height: 1;
    min-width: calc(1.7em + 2px);
}

    .k-badge-md:empty {
        padding: 0.35em;
        min-width: auto;
    }

.k-badge-lg {
    padding: 0.525em 0.975em;
    font-size: 0.75em;
    line-height: 1;
    min-width: calc(2.05em + 2px);
}

    .k-badge-lg:empty {
        padding: 0.525em;
        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 {
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    .k-badge-edge.k-top-end {
        -webkit-transform: translate(50%, -50%);
        -ms-transform: translate(50%, -50%);
        transform: translate(50%, -50%);
    }

    .k-badge-edge.k-bottom-start {
        -webkit-transform: translate(-50%, 50%);
        -ms-transform: translate(-50%, 50%);
        transform: translate(-50%, 50%);
    }

    .k-badge-edge.k-bottom-end {
        -webkit-transform: translate(50%, 50%);
        -ms-transform: translate(50%, 50%);
        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 {
    -webkit-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    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 {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    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 {
    -webkit-transform: translate(50%, 50%);
    -ms-transform: translate(50%, 50%);
    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 {
    -webkit-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
}

.k-badge-outside {
    position: absolute;
    z-index: 9999;
}

    .k-badge-outside.k-top-start {
        -webkit-transform: translate(-100%, -100%);
        -ms-transform: translate(-100%, -100%);
        transform: translate(-100%, -100%);
    }

    .k-badge-outside.k-top-end {
        -webkit-transform: translate(100%, -100%);
        -ms-transform: translate(100%, -100%);
        transform: translate(100%, -100%);
    }

    .k-badge-outside.k-bottom-start {
        -webkit-transform: translate(-100%, 100%);
        -ms-transform: translate(-100%, 100%);
        transform: translate(-100%, 100%);
    }

    .k-badge-outside.k-bottom-end {
        -webkit-transform: translate(100%, 100%);
        -ms-transform: translate(100%, 100%);
        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 {
    -webkit-transform: translate(100%, -100%);
    -ms-transform: translate(100%, -100%);
    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 {
    -webkit-transform: translate(-100%, -100%);
    -ms-transform: translate(-100%, -100%);
    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 {
    -webkit-transform: translate(100%, 100%);
    -ms-transform: translate(100%, 100%);
    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 {
    -webkit-transform: translate(-100%, 100%);
    -ms-transform: translate(-100%, 100%);
    transform: translate(-100%, 100%);
}

.k-badge-border-cutout {
    box-shadow: 0 0 0 2px #ffffff;
}

.k-badge-solid-primary {
    border-color: #0d6efd;
    color: white;
    background-color: #0d6efd;
}

.k-badge-solid-secondary {
    border-color: #6c757d;
    color: white;
    background-color: #6c757d;
}

.k-badge-solid-tertiary {
    border-color: #6f42c1;
    color: white;
    background-color: #6f42c1;
}

.k-badge-solid-info {
    border-color: #0dcaf0;
    color: white;
    background-color: #0dcaf0;
}

.k-badge-solid-success {
    border-color: #198754;
    color: white;
    background-color: #198754;
}

.k-badge-solid-warning {
    border-color: #ffc107;
    color: black;
    background-color: #ffc107;
}

.k-badge-solid-error {
    border-color: #dc3545;
    color: white;
    background-color: #dc3545;
}

.k-badge-solid-dark {
    border-color: #212529;
    color: white;
    background-color: #212529;
}

.k-badge-solid-light {
    border-color: #f8f9fa;
    color: black;
    background-color: #f8f9fa;
}

.k-badge-solid-inverse {
    border-color: #212529;
    color: white;
    background-color: #212529;
}

.k-badge-outline {
    border-color: currentColor;
    background-color: #ffffff;
}

.k-badge-outline-primary {
    color: #0d6efd;
}

.k-badge-outline-secondary {
    color: #6c757d;
}

.k-badge-outline-tertiary {
    color: #6f42c1;
}

.k-badge-outline-info {
    color: #0dcaf0;
}

.k-badge-outline-success {
    color: #198754;
}

.k-badge-outline-warning {
    color: #ffc107;
}

.k-badge-outline-error {
    color: #dc3545;
}

.k-badge-outline-dark {
    color: #212529;
}

.k-badge-outline-light {
    color: #f8f9fa;
}

.k-badge-outline-inverse {
    color: #212529;
}

.k-button {
    box-sizing: border-box;
    border-width: 1px;
    border-style: solid;
    color: inherit;
    background: none;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0.5rem;
    vertical-align: middle;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    position: relative;
    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-button *,
    .k-button *::before,
    .k-button *::after {
        box-sizing: border-box;
    }

    .k-button:disabled, .k-button.k-disabled {
        outline: none;
        cursor: default;
        opacity: 0.65;
        -webkit-filter: grayscale(0.1);
        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: -ms-inline-flexbox;
        display: inline-flex;
    }

.k-button-icon {
    color: inherit;
    -ms-flex-item-align: center;
    align-self: center;
    position: relative;
}

.k-button-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.4285714286;
}

    .k-button-sm.k-icon-button {
        padding: 0.25rem;
    }

        .k-button-sm.k-icon-button > .k-button-icon {
            min-width: 1.25rem;
            min-height: 1.25rem;
        }

.k-button-md {
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
}

    .k-button-md.k-icon-button {
        padding: 0.375rem;
    }

        .k-button-md.k-icon-button > .k-button-icon {
            min-width: 1.5rem;
            min-height: 1.5rem;
        }

.k-button-lg {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
}

    .k-button-lg.k-icon-button {
        padding: 0.5rem;
    }

        .k-button-lg.k-icon-button > .k-button-icon {
            min-width: 1.5rem;
            min-height: 1.5rem;
        }

.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: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-flow: row nowrap;
    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;
        -webkit-filter: none;
        filter: none;
    }

.k-button-group-stretched {
    width: 100%;
}

    .k-button-group-stretched > * {
        -ms-flex: 1 0 0%;
        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-ie .k-button-group .k-button {
    border-radius: 0;
}

.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: 0.08;
}

.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: 0.16;
}

.k-button.k-selected::before {
    opacity: 0.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: #e4e7eb;
    color: #212529;
    background-color: #e4e7eb;
}

    .k-button-solid-base:hover, .k-button-solid-base.k-hover {
        border-color: #c7cdd5;
        background-color: #ced3db;
    }

    .k-button-solid-base:focus, .k-button-solid-base.k-focus {
        box-shadow: 0 0 0 0.25rem rgba(228, 231, 235, 0.5);
    }

    .k-button-solid-base:active, .k-button-solid-base.k-active {
        border-color: #bfc6d0;
        background-color: #c7cdd5;
    }

    .k-button-solid-base.k-selected {
        border-color: #0252c9;
        color: white;
        background-color: #0257d5;
    }

.k-button-solid-primary {
    border-color: #0d6efd;
    color: white;
    background-color: #0d6efd;
}

    .k-button-solid-primary:hover, .k-button-solid-primary.k-hover {
        border-color: #0257d5;
        background-color: #025ce2;
    }

    .k-button-solid-primary:focus, .k-button-solid-primary.k-focus {
        box-shadow: 0 0 0px 0.25rem rgba(13, 110, 253, 0.5);
    }

    .k-button-solid-primary:active, .k-button-solid-primary.k-active {
        border-color: #0252c9;
        background-color: #0257d5;
    }

    .k-button-solid-primary.k-selected {
        border-color: #0252c9;
        background-color: #0257d5;
    }

.k-button-solid-secondary {
    border-color: #6c757d;
    color: white;
    background-color: #6c757d;
}

    .k-button-solid-secondary:hover, .k-button-solid-secondary.k-hover {
        border-color: #545b62;
        background-color: #5a6268;
    }

    .k-button-solid-secondary:focus, .k-button-solid-secondary.k-focus {
        box-shadow: 0 0 0px 0.25rem rgba(108, 117, 125, 0.5);
    }

    .k-button-solid-secondary:active, .k-button-solid-secondary.k-active {
        border-color: #4e555b;
        background-color: #545b62;
    }

    .k-button-solid-secondary.k-selected {
        border-color: #4e555b;
        background-color: #545b62;
    }

.k-button-solid-tertiary {
    border-color: #6f42c1;
    color: white;
    background-color: #6f42c1;
}

    .k-button-solid-tertiary:hover, .k-button-solid-tertiary.k-hover {
        border-color: #59339d;
        background-color: #5e37a6;
    }

    .k-button-solid-tertiary:focus, .k-button-solid-tertiary.k-focus {
        box-shadow: 0 0 0px 0.25rem rgba(111, 66, 193, 0.5);
    }

    .k-button-solid-tertiary:active, .k-button-solid-tertiary.k-active {
        border-color: #533093;
        background-color: #59339d;
    }

    .k-button-solid-tertiary.k-selected {
        border-color: #533093;
        background-color: #59339d;
    }

.k-button-solid-info {
    border-color: #0dcaf0;
    color: white;
    background-color: #0dcaf0;
}

    .k-button-solid-info:hover, .k-button-solid-info.k-hover {
        border-color: #0aa1c0;
        background-color: #0babcc;
    }

    .k-button-solid-info:focus, .k-button-solid-info.k-focus {
        box-shadow: 0 0 0px 0.25rem rgba(13, 202, 240, 0.5);
    }

    .k-button-solid-info:active, .k-button-solid-info.k-active {
        border-color: #0a97b4;
        background-color: #0aa1c0;
    }

    .k-button-solid-info.k-selected {
        border-color: #0a97b4;
        background-color: #0aa1c0;
    }

.k-button-solid-success {
    border-color: #198754;
    color: white;
    background-color: #198754;
}

    .k-button-solid-success:hover, .k-button-solid-success.k-hover {
        border-color: #115c39;
        background-color: #136740;
    }

    .k-button-solid-success:focus, .k-button-solid-success.k-focus {
        box-shadow: 0 0 0px 0.25rem rgba(25, 135, 84, 0.5);
    }

    .k-button-solid-success:active, .k-button-solid-success.k-active {
        border-color: #0f5133;
        background-color: #115c39;
    }

    .k-button-solid-success.k-selected {
        border-color: #0f5133;
        background-color: #115c39;
    }

.k-button-solid-warning {
    border-color: #ffc107;
    color: black;
    background-color: #ffc107;
}

    .k-button-solid-warning:hover, .k-button-solid-warning.k-hover {
        border-color: #d39e00;
        background-color: #e0a800;
    }

    .k-button-solid-warning:focus, .k-button-solid-warning.k-focus {
        box-shadow: 0 0 0px 0.25rem rgba(255, 193, 7, 0.5);
    }

    .k-button-solid-warning:active, .k-button-solid-warning.k-active {
        border-color: #c69500;
        background-color: #d39e00;
    }

    .k-button-solid-warning.k-selected {
        border-color: #c69500;
        background-color: #d39e00;
    }

.k-button-solid-error {
    border-color: #dc3545;
    color: white;
    background-color: #dc3545;
}

    .k-button-solid-error:hover, .k-button-solid-error.k-hover {
        border-color: #bd2130;
        background-color: #c82333;
    }

    .k-button-solid-error:focus, .k-button-solid-error.k-focus {
        box-shadow: 0 0 0px 0.25rem rgba(220, 53, 69, 0.5);
    }

    .k-button-solid-error:active, .k-button-solid-error.k-active {
        border-color: #b21f2d;
        background-color: #bd2130;
    }

    .k-button-solid-error.k-selected {
        border-color: #b21f2d;
        background-color: #bd2130;
    }

.k-button-solid-dark {
    border-color: #212529;
    color: white;
    background-color: #212529;
}

    .k-button-solid-dark:hover, .k-button-solid-dark.k-hover {
        border-color: #0a0c0d;
        background-color: #101214;
    }

    .k-button-solid-dark:focus, .k-button-solid-dark.k-focus {
        box-shadow: 0 0 0px 0.25rem rgba(33, 37, 41, 0.5);
    }

    .k-button-solid-dark:active, .k-button-solid-dark.k-active {
        border-color: #050506;
        background-color: #0a0c0d;
    }

    .k-button-solid-dark.k-selected {
        border-color: #050506;
        background-color: #0a0c0d;
    }

.k-button-solid-light {
    border-color: #f8f9fa;
    color: black;
    background-color: #f8f9fa;
}

    .k-button-solid-light:hover, .k-button-solid-light.k-hover {
        border-color: #dae0e5;
        background-color: #e2e6ea;
    }

    .k-button-solid-light:focus, .k-button-solid-light.k-focus {
        box-shadow: 0 0 0px 0.25rem rgba(248, 249, 250, 0.5);
    }

    .k-button-solid-light:active, .k-button-solid-light.k-active {
        border-color: #d3d9df;
        background-color: #dae0e5;
    }

    .k-button-solid-light.k-selected {
        border-color: #d3d9df;
        background-color: #dae0e5;
    }

.k-button-solid-inverse {
    border-color: #212529;
    color: white;
    background-color: #212529;
}

    .k-button-solid-inverse:hover, .k-button-solid-inverse.k-hover {
        border-color: #0a0c0d;
        background-color: #101214;
    }

    .k-button-solid-inverse:focus, .k-button-solid-inverse.k-focus {
        box-shadow: 0 0 0px 0.25rem rgba(33, 37, 41, 0.5);
    }

    .k-button-solid-inverse:active, .k-button-solid-inverse.k-active {
        border-color: #050506;
        background-color: #0a0c0d;
    }

    .k-button-solid-inverse.k-selected {
        border-color: #050506;
        background-color: #0a0c0d;
    }

.k-button-outline-primary {
    box-shadow: none;
    border-color: currentColor;
    color: #0d6efd;
    background-color: transparent;
}

    .k-button-outline-primary:hover, .k-button-outline-primary.k-hover {
        border-color: #0d6efd;
        color: white;
        background-color: #0d6efd;
    }

    .k-button-outline-primary:focus, .k-button-outline-primary.k-focus {
        box-shadow: 0 0 0px 0.25rem rgba(13, 110, 253, 0.5);
    }

    .k-button-outline-primary:active, .k-button-outline-primary.k-active {
        border-color: #0d6efd;
        color: white;
        background-color: #0d6efd;
    }

    .k-button-outline-primary.k-selected {
        border-color: #0d6efd;
        color: white;
        background-color: #0d6efd;
    }

.k-button-outline-secondary {
    box-shadow: none;
    border-color: currentColor;
    color: #6c757d;
    background-color: transparent;
}

    .k-button-outline-secondary:hover, .k-button-outline-secondary.k-hover {
        border-color: #6c757d;
        color: white;
        background-color: #6c757d;
    }

    .k-button-outline-secondary:focus, .k-button-outline-secondary.k-focus {
        box-shadow: 0 0 0px 0.25rem rgba(108, 117, 125, 0.5);
    }

    .k-button-outline-secondary:active, .k-button-outline-secondary.k-active {
        border-color: #6c757d;
        color: white;
        background-color: #6c757d;
    }

    .k-button-outline-secondary.k-selected {
        border-color: #6c757d;
        color: white;
        background-color: #6c757d;
    }

.k-button-outline-tertiary {
    box-shadow: none;
    border-color: currentColor;
    color: #6f42c1;
    background-color: transparent;
}

    .k-button-outline-tertiary:hover, .k-button-outline-tertiary.k-hover {
        border-color: #6f42c1;
        color: white;
        background-color: #6f42c1;
    }

    .k-button-outline-tertiary:focus, .k-button-outline-tertiary.k-focus {
        box-shadow: 0 0 0px 0.25rem rgba(111, 66, 193, 0.5);
    }

    .k-button-outline-tertiary:active, .k-button-outline-tertiary.k-active {
        border-color: #6f42c1;
        color: white;
        background-color: #6f42c1;
    }

    .k-button-outline-tertiary.k-selected {
        border-color: #6f42c1;
        color: white;
        background-color: #6f42c1;
    }

.k-button-outline-info {
    box-shadow: none;
    border-color: currentColor;
    color: #0dcaf0;
    background-color: transparent;
}

    .k-button-outline-info:hover, .k-button-outline-info.k-hover {
        border-color: #0dcaf0;
        color: white;
        background-color: #0dcaf0;
    }

    .k-button-outline-info:focus, .k-button-outline-info.k-focus {
        box-shadow: 0 0 0px 0.25rem rgba(13, 202, 240, 0.5);
    }

    .k-button-outline-info:active, .k-button-outline-info.k-active {
        border-color: #0dcaf0;
        color: white;
        background-color: #0dcaf0;
    }

    .k-button-outline-info.k-selected {
        border-color: #0dcaf0;
        color: white;
        background-color: #0dcaf0;
    }

.k-button-outline-success {
    box-shadow: none;
    border-color: currentColor;
    color: #198754;
    background-color: transparent;
}

    .k-button-outline-success:hover, .k-button-outline-success.k-hover {
        border-color: #198754;
        color: white;
        background-color: #198754;
    }

    .k-button-outline-success:focus, .k-button-outline-success.k-focus {
        box-shadow: 0 0 0px 0.25rem rgba(25, 135, 84, 0.5);
    }

    .k-button-outline-success:active, .k-button-outline-success.k-active {
        border-color: #198754;
        color: white;
        background-color: #198754;
    }

    .k-button-outline-success.k-selected {
        border-color: #198754;
        color: white;
        background-color: #198754;
    }

.k-button-outline-warning {
    box-shadow: none;
    border-color: currentColor;
    color: #ffc107;
    background-color: transparent;
}

    .k-button-outline-warning:hover, .k-button-outline-warning.k-hover {
        border-color: #ffc107;
        color: black;
        background-color: #ffc107;
    }

    .k-button-outline-warning:focus, .k-button-outline-warning.k-focus {
        box-shadow: 0 0 0px 0.25rem rgba(255, 193, 7, 0.5);
    }

    .k-button-outline-warning:active, .k-button-outline-warning.k-active {
        border-color: #ffc107;
        color: black;
        background-color: #ffc107;
    }

    .k-button-outline-warning.k-selected {
        border-color: #ffc107;
        color: black;
        background-color: #ffc107;
    }

.k-button-outline-error {
    box-shadow: none;
    border-color: currentColor;
    color: #dc3545;
    background-color: transparent;
}

    .k-button-outline-error:hover, .k-button-outline-error.k-hover {
        border-color: #dc3545;
        color: white;
        background-color: #dc3545;
    }

    .k-button-outline-error:focus, .k-button-outline-error.k-focus {
        box-shadow: 0 0 0px 0.25rem rgba(220, 53, 69, 0.5);
    }

    .k-button-outline-error:active, .k-button-outline-error.k-active {
        border-color: #dc3545;
        color: white;
        background-color: #dc3545;
    }

    .k-button-outline-error.k-selected {
        border-color: #dc3545;
        color: white;
        background-color: #dc3545;
    }

.k-button-outline-dark {
    box-shadow: none;
    border-color: currentColor;
    color: #212529;
    background-color: transparent;
}

    .k-button-outline-dark:hover, .k-button-outline-dark.k-hover {
        border-color: #212529;
        color: white;
        background-color: #212529;
    }

    .k-button-outline-dark:focus, .k-button-outline-dark.k-focus {
        box-shadow: 0 0 0px 0.25rem rgba(33, 37, 41, 0.5);
    }

    .k-button-outline-dark:active, .k-button-outline-dark.k-active {
        border-color: #212529;
        color: white;
        background-color: #212529;
    }

    .k-button-outline-dark.k-selected {
        border-color: #212529;
        color: white;
        background-color: #212529;
    }

.k-button-outline-light {
    box-shadow: none;
    border-color: currentColor;
    color: #f8f9fa;
    background-color: transparent;
}

    .k-button-outline-light:hover, .k-button-outline-light.k-hover {
        border-color: #f8f9fa;
        color: black;
        background-color: #f8f9fa;
    }

    .k-button-outline-light:focus, .k-button-outline-light.k-focus {
        box-shadow: 0 0 0px 0.25rem rgba(248, 249, 250, 0.5);
    }

    .k-button-outline-light:active, .k-button-outline-light.k-active {
        border-color: #f8f9fa;
        color: black;
        background-color: #f8f9fa;
    }

    .k-button-outline-light.k-selected {
        border-color: #f8f9fa;
        color: black;
        background-color: #f8f9fa;
    }

.k-button-outline-inverse {
    box-shadow: none;
    border-color: currentColor;
    color: #212529;
    background-color: transparent;
}

    .k-button-outline-inverse:hover, .k-button-outline-inverse.k-hover {
        border-color: #212529;
        color: white;
        background-color: #212529;
    }

    .k-button-outline-inverse:focus, .k-button-outline-inverse.k-focus {
        box-shadow: 0 0 0px 0.25rem rgba(33, 37, 41, 0.5);
    }

    .k-button-outline-inverse:active, .k-button-outline-inverse.k-active {
        border-color: #212529;
        color: white;
        background-color: #212529;
    }

    .k-button-outline-inverse.k-selected {
        border-color: #212529;
        color: white;
        background-color: #212529;
    }

.k-button-outline-base {
    box-shadow: none;
    border-color: currentColor;
    color: #212529;
    background-color: transparent;
}

    .k-button-outline-base:hover, .k-button-outline-base.k-hover {
        border-color: #212529;
        color: white;
        background-color: #212529;
    }

    .k-button-outline-base:focus, .k-button-outline-base.k-focus {
        box-shadow: 0 0 0px 0.25rem rgba(33, 37, 41, 0.5);
    }

    .k-button-outline-base:active, .k-button-outline-base.k-active {
        border-color: #212529;
        color: white;
        background-color: #212529;
    }

    .k-button-outline-base.k-selected {
        border-color: #212529;
        color: white;
        background-color: #212529;
    }

.k-button-flat-primary {
    color: #0d6efd;
}

.k-button-flat-secondary {
    color: #6c757d;
}

.k-button-flat-tertiary {
    color: #6f42c1;
}

.k-button-flat-info {
    color: #0dcaf0;
}

.k-button-flat-success {
    color: #198754;
}

.k-button-flat-warning {
    color: #ffc107;
}

.k-button-flat-error {
    color: #dc3545;
}

.k-button-flat-dark {
    color: #212529;
}

.k-button-flat-light {
    color: #f8f9fa;
}

.k-button-flat-inverse {
    color: #212529;
}

.k-button-flat-base {
    color: inherit;
}

.k-button-link-primary {
    color: #0d6efd;
}

    .k-button-link-primary:hover, .k-button-link-primary.k-hover {
        color: #0b5cd5;
    }

    .k-button-link-primary:focus, .k-button-link-primary.k-focus {
        box-shadow: 0 0 0px 0.25rem rgba(13, 110, 253, 0.5);
    }

    .k-button-link-primary:active, .k-button-link-primary.k-active {
        color: #0b5cd5;
    }

    .k-button-link-primary.k-selected {
        color: #0b5cd5;
    }

.k-button-link-secondary {
    color: #6c757d;
}

    .k-button-link-secondary:hover, .k-button-link-secondary.k-hover {
        color: #5b6269;
    }

    .k-button-link-secondary:focus, .k-button-link-secondary.k-focus {
        box-shadow: 0 0 0px 0.25rem rgba(108, 117, 125, 0.5);
    }

    .k-button-link-secondary:active, .k-button-link-secondary.k-active {
        color: #5b6269;
    }

    .k-button-link-secondary.k-selected {
        color: #5b6269;
    }

.k-button-link-tertiary {
    color: #6f42c1;
}

    .k-button-link-tertiary:hover, .k-button-link-tertiary.k-hover {
        color: #5d37a2;
    }

    .k-button-link-tertiary:focus, .k-button-link-tertiary.k-focus {
        box-shadow: 0 0 0px 0.25rem rgba(111, 66, 193, 0.5);
    }

    .k-button-link-tertiary:active, .k-button-link-tertiary.k-active {
        color: #5d37a2;
    }

    .k-button-link-tertiary.k-selected {
        color: #5d37a2;
    }

.k-button-link-info {
    color: #0dcaf0;
}

    .k-button-link-info:hover, .k-button-link-info.k-hover {
        color: #0baaca;
    }

    .k-button-link-info:focus, .k-button-link-info.k-focus {
        box-shadow: 0 0 0px 0.25rem rgba(13, 202, 240, 0.5);
    }

    .k-button-link-info:active, .k-button-link-info.k-active {
        color: #0baaca;
    }

    .k-button-link-info.k-selected {
        color: #0baaca;
    }

.k-button-link-success {
    color: #198754;
}

    .k-button-link-success:hover, .k-button-link-success.k-hover {
        color: #157147;
    }

    .k-button-link-success:focus, .k-button-link-success.k-focus {
        box-shadow: 0 0 0px 0.25rem rgba(25, 135, 84, 0.5);
    }

    .k-button-link-success:active, .k-button-link-success.k-active {
        color: #157147;
    }

    .k-button-link-success.k-selected {
        color: #157147;
    }

.k-button-link-warning {
    color: #ffc107;
}

    .k-button-link-warning:hover, .k-button-link-warning.k-hover {
        color: #d6a206;
    }

    .k-button-link-warning:focus, .k-button-link-warning.k-focus {
        box-shadow: 0 0 0px 0.25rem rgba(255, 193, 7, 0.5);
    }

    .k-button-link-warning:active, .k-button-link-warning.k-active {
        color: #d6a206;
    }

    .k-button-link-warning.k-selected {
        color: #d6a206;
    }

.k-button-link-error {
    color: #dc3545;
}

    .k-button-link-error:hover, .k-button-link-error.k-hover {
        color: #b92d3a;
    }

    .k-button-link-error:focus, .k-button-link-error.k-focus {
        box-shadow: 0 0 0px 0.25rem rgba(220, 53, 69, 0.5);
    }

    .k-button-link-error:active, .k-button-link-error.k-active {
        color: #b92d3a;
    }

    .k-button-link-error.k-selected {
        color: #b92d3a;
    }

.k-button-link-dark {
    color: #212529;
}

    .k-button-link-dark:hover, .k-button-link-dark.k-hover {
        color: #1c1f22;
    }

    .k-button-link-dark:focus, .k-button-link-dark.k-focus {
        box-shadow: 0 0 0px 0.25rem rgba(33, 37, 41, 0.5);
    }

    .k-button-link-dark:active, .k-button-link-dark.k-active {
        color: #1c1f22;
    }

    .k-button-link-dark.k-selected {
        color: #1c1f22;
    }

.k-button-link-light {
    color: #f8f9fa;
}

    .k-button-link-light:hover, .k-button-link-light.k-hover {
        color: #d0d1d2;
    }

    .k-button-link-light:focus, .k-button-link-light.k-focus {
        box-shadow: 0 0 0px 0.25rem rgba(248, 249, 250, 0.5);
    }

    .k-button-link-light:active, .k-button-link-light.k-active {
        color: #d0d1d2;
    }

    .k-button-link-light.k-selected {
        color: #d0d1d2;
    }

.k-button-link-inverse {
    color: #212529;
}

    .k-button-link-inverse:hover, .k-button-link-inverse.k-hover {
        color: #1c1f22;
    }

    .k-button-link-inverse:focus, .k-button-link-inverse.k-focus {
        box-shadow: 0 0 0px 0.25rem rgba(33, 37, 41, 0.5);
    }

    .k-button-link-inverse:active, .k-button-link-inverse.k-active {
        color: #1c1f22;
    }

    .k-button-link-inverse.k-selected {
        color: #1c1f22;
    }

.k-button-link-base {
    color: #212529;
}

    .k-button-link-base:hover, .k-button-link-base.k-hover {
        color: #1c1f22;
    }

    .k-button-link-base:focus, .k-button-link-base.k-focus {
        box-shadow: 0 0 0px 0.25rem rgba(33, 37, 41, 0.5);
    }

    .k-button-link-base:active, .k-button-link-base.k-active {
        color: #1c1f22;
    }

    .k-button-link-base.k-selected {
        color: #1c1f22;
    }

.k-button-clear-primary {
    color: #0d6efd;
}

    .k-button-clear-primary:focus::after, .k-button-clear-primary.k-focus::after, .k-button-clear-primary:active::after {
        background-color: currentColor;
        opacity: 0.1;
        display: block;
    }

.k-button-clear-secondary {
    color: #6c757d;
}

    .k-button-clear-secondary:focus::after, .k-button-clear-secondary.k-focus::after, .k-button-clear-secondary:active::after {
        background-color: currentColor;
        opacity: 0.1;
        display: block;
    }

.k-button-clear-tertiary {
    color: #6f42c1;
}

    .k-button-clear-tertiary:focus::after, .k-button-clear-tertiary.k-focus::after, .k-button-clear-tertiary:active::after {
        background-color: currentColor;
        opacity: 0.1;
        display: block;
    }

.k-button-clear-info {
    color: #0dcaf0;
}

    .k-button-clear-info:focus::after, .k-button-clear-info.k-focus::after, .k-button-clear-info:active::after {
        background-color: currentColor;
        opacity: 0.1;
        display: block;
    }

.k-button-clear-success {
    color: #198754;
}

    .k-button-clear-success:focus::after, .k-button-clear-success.k-focus::after, .k-button-clear-success:active::after {
        background-color: currentColor;
        opacity: 0.1;
        display: block;
    }

.k-button-clear-warning {
    color: #ffc107;
}

    .k-button-clear-warning:focus::after, .k-button-clear-warning.k-focus::after, .k-button-clear-warning:active::after {
        background-color: currentColor;
        opacity: 0.1;
        display: block;
    }

.k-button-clear-error {
    color: #dc3545;
}

    .k-button-clear-error:focus::after, .k-button-clear-error.k-focus::after, .k-button-clear-error:active::after {
        background-color: currentColor;
        opacity: 0.1;
        display: block;
    }

.k-button-clear-dark {
    color: #212529;
}

    .k-button-clear-dark:focus::after, .k-button-clear-dark.k-focus::after, .k-button-clear-dark:active::after {
        background-color: currentColor;
        opacity: 0.1;
        display: block;
    }

.k-button-clear-light {
    color: #f8f9fa;
}

    .k-button-clear-light:focus::after, .k-button-clear-light.k-focus::after, .k-button-clear-light:active::after {
        background-color: currentColor;
        opacity: 0.1;
        display: block;
    }

.k-button-clear-inverse {
    color: #212529;
}

    .k-button-clear-inverse:focus::after, .k-button-clear-inverse.k-focus::after, .k-button-clear-inverse:active::after {
        background-color: currentColor;
        opacity: 0.1;
        display: block;
    }

.k-button-clear-base {
    color: #212529;
}

    .k-button-clear-base:focus::after, .k-button-clear-base.k-focus::after, .k-button-clear-base:active::after {
        background-color: currentColor;
        opacity: 0.1;
        display: block;
    }

.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: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    line-height: 1.5;
    font-weight: normal;
    text-align: start;
    box-shadow: none;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-align: stretch;
    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::-webkit-input-placeholder, .k-picker::-webkit-input-placeholder {
        color: #6c757d;
        opacity: 1;
        -webkit-user-select: none;
        user-select: none;
    }

    .k-input:-ms-input-placeholder, .k-picker:-ms-input-placeholder {
        color: #6c757d;
        opacity: 1;
        -ms-user-select: none;
        user-select: none;
    }

    .k-input::-ms-input-placeholder, .k-picker::-ms-input-placeholder {
        color: #6c757d;
        opacity: 1;
        -ms-user-select: none;
        user-select: none;
    }

    .k-input::placeholder,
    .k-picker::placeholder {
        color: #6c757d;
        opacity: 1;
        -webkit-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .k-input:-ms-input-placeholder,
    .k-picker:-ms-input-placeholder {
        color: #6c757d;
    }

input.k-input,
textarea.k-textarea {
    padding: 0.375rem 0.75rem;
}

    input.k-input:disabled, input.k-input[disabled],
    textarea.k-textarea:disabled,
    textarea.k-textarea[disabled] {
        outline: none;
        cursor: default;
        opacity: 0.65;
        -webkit-filter: grayscale(0.1);
        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;
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.k-picker {
    cursor: pointer;
}

select.k-picker {
    padding: 0.375rem 0.75rem;
    -webkit-appearance: auto;
    appearance: auto;
}

    select.k-picker:disabled, select.k-picker[disabled] {
        outline: none;
        cursor: default;
        opacity: 0.65;
        -webkit-filter: grayscale(0.1);
        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;
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.k-input-inner {
    padding: 0.375rem 0.75rem;
    width: 100%;
    border: 0;
    outline: 0;
    color: inherit;
    background: none;
    font: inherit;
    -ms-flex: 1;
    flex: 1;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-appearance: none;
}

    .k-input-inner::-ms-clear {
        display: none;
    }

    .k-input-inner::-webkit-input-placeholder {
        color: #6c757d;
        opacity: 1;
        -webkit-user-select: none;
        user-select: none;
    }

    .k-input-inner:-ms-input-placeholder {
        color: #6c757d;
        opacity: 1;
        -ms-user-select: none;
        user-select: none;
    }

    .k-input-inner::-ms-input-placeholder {
        color: #6c757d;
        opacity: 1;
        -ms-user-select: none;
        user-select: none;
    }

    .k-input-inner::placeholder {
        color: #6c757d;
        opacity: 1;
        -webkit-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .k-input-inner:-ms-input-placeholder {
        color: #6c757d;
    }

    .k-input-inner:invalid {
        box-shadow: none;
    }

span.k-input-inner {
    white-space: nowrap;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-align: center;
    align-items: center;
}

textarea.k-input-inner {
    margin: 0;
}

.k-input-value-icon {
    -ms-flex: none;
    flex: none;
}

.k-input-value-text {
    -ms-flex: 1;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .k-input-value-text::before {
        content: "\200b";
        width: 0px;
        overflow: hidden;
        -ms-flex: none;
        flex: none;
        display: inline-block;
        vertical-align: top;
    }

.k-input-values {
    width: 100%;
    padding: 0.125rem 0.125rem;
    cursor: text;
}

    .k-input-values > .k-searchbar,
    .k-input-values > .k-input-inner {
        margin: -0.125rem -0.125rem;
    }

.k-icon-picker .k-input-inner {
    padding: 0.375rem;
    -ms-flex-pack: center;
    justify-content: center;
}

.k-input-prefix,
.k-input-suffix {
    border-color: inherit;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex: none;
    flex: none;
}

    .k-input-prefix > *,
    .k-input-suffix > * {
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

.k-input-separator {
    margin: 0;
    width: 0;
    height: 16px;
    border-width: 0 0 0 1px;
    border-style: solid;
    border-color: inherit;
    -ms-flex-item-align: center;
    align-self: center;
}

.k-input-icon,
.k-input-validation-icon,
.k-input-loading-icon,
.k-input-prefix > .k-icon,
.k-input-suffix > .k-icon {
    -ms-flex: none;
    flex: none;
    -ms-flex-item-align: center;
    align-self: center;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.k-clear-value {
    outline: 0;
    -ms-flex: none;
    flex: none;
    -ms-flex-item-align: center;
    align-self: center;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.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: auto;
    border-width: 0;
    border-inline-start-width: 1px;
    -ms-flex: none;
    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: auto;
    -ms-flex: none;
    flex: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
}

    .k-input-spinner .k-spinner-increase,
    .k-input-spinner .k-spinner-decrease {
        border-width: 0;
        border-inline-start-width: 1px;
        -ms-flex: 1 1 50%;
        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 {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row nowrap;
    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;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row nowrap;
    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: 0.875rem;
    line-height: 1.4285714286;
}

    .k-input-sm .k-input-values,
    .k-picker-sm .k-input-values {
        width: 100%;
        padding: 0.125rem;
        gap: 0.125rem;
        cursor: text;
    }

        .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: -0.125rem;
        }

    .k-input-sm .k-input-inner,
    .k-picker-sm .k-input-inner {
        padding: 0.25rem 0.5rem;
    }

    .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: 0.25rem 0.25rem;
    }

    .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: calc(16px + 0.5rem);
        height: calc(16px + 0.5rem);
    }

    .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: 0.25rem;
        box-sizing: content-box;
    }

.k-dropdown-operator.k-picker-sm .k-input-button {
    padding: 0.25rem;
}

.k-input-md,
.k-picker-md {
    font-size: 1rem;
    line-height: 1.5;
}

    .k-input-md .k-input-values,
    .k-picker-md .k-input-values {
        width: 100%;
        padding: 0.1875rem;
        gap: 0.1875rem;
        cursor: text;
    }

        .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: -0.1875rem;
        }

    .k-input-md .k-input-inner,
    .k-picker-md .k-input-inner {
        padding: 0.375rem 0.75rem;
    }

    .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: 0.375rem 0.375rem;
    }

    .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: calc(16px + 0.75rem);
        height: calc(16px + 0.75rem);
    }

    .k-input-md.k-icon-picker .k-input-inner,
    .k-picker-md.k-icon-picker .k-input-inner {
        width: 1.5em;
        height: 1.5em;
        padding: 0.375rem;
        box-sizing: content-box;
    }

.k-dropdown-operator.k-picker-md .k-input-button {
    padding: 0.375rem;
}

.k-input-lg,
.k-picker-lg {
    font-size: 1rem;
    line-height: 1.5;
}

    .k-input-lg .k-input-values,
    .k-picker-lg .k-input-values {
        width: 100%;
        padding: 0.25rem;
        gap: 0.25rem;
        cursor: text;
    }

        .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: -0.25rem;
        }

    .k-input-lg .k-input-inner,
    .k-picker-lg .k-input-inner {
        padding: 0.5rem 1rem;
    }

    .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: 0.5rem 0.5rem;
    }

    .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: calc(16px + 1rem);
        height: calc(16px + 1rem);
    }

    .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: 0.5rem;
        box-sizing: content-box;
    }

.k-dropdown-operator.k-picker-lg .k-input-button {
    padding: 0.5rem;
}

.k-input > kendo-popup,
.k-picker > kendo-popup {
    position: fixed;
}

@-webkit-keyframes autoFillStart {
    from {
    }

    to {
    }
}

@keyframes autoFillStart {
    from {
    }

    to {
    }
}

@-webkit-keyframes autoFillEnd {
    from {
    }

    to {
    }
}

@keyframes autoFillEnd {
    from {
    }

    to {
    }
}

.k-autofill:-webkit-autofill {
    -webkit-animation-name: autoFillStart;
    animation-name: autoFillStart;
}

.k-autofill:not(:-webkit-autofill) {
    -webkit-animation-name: autoFillEnd;
    animation-name: autoFillEnd;
}

.k-input:-webkit-autofill {
    -webkit-animation-name: autoFillStart;
    animation-name: autoFillStart;
}

.k-input:not(:-webkit-autofill) {
    -webkit-animation-name: autoFillEnd;
    animation-name: autoFillEnd;
}

.k-textbox {
    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-input-solid {
    border-color: #ced4da;
    color: #495057;
    background-color: #ffffff;
}

    .k-input-solid:focus, .k-input-solid.k-focus {
        border-color: #86b7fe;
        color: #495057;
        background-color: #ffffff;
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    }

    .k-input-solid:focus-within {
        border-color: #86b7fe;
        color: #495057;
        background-color: #ffffff;
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    }

    .k-input-solid.k-invalid, .k-input-solid.ng-invalid.ng-touched, .k-input-solid.ng-invalid.ng-dirty {
        border-color: #dc3545;
    }

        .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: #dc3545;
        }

        .k-input-solid.k-invalid:focus, .k-input-solid.k-invalid.k-focus, .k-input-solid.ng-invalid.ng-touched:focus, .k-input-solid.ng-invalid.ng-touched.k-focus, .k-input-solid.ng-invalid.ng-dirty:focus, .k-input-solid.ng-invalid.ng-dirty.k-focus {
            box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
        }

        .k-input-solid.k-invalid:focus-within, .k-input-solid.ng-invalid.ng-touched:focus-within, .k-input-solid.ng-invalid.ng-dirty:focus-within {
            box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
        }

.k-picker-solid {
    border-color: #e4e7eb;
    color: #212529;
    background-color: #e4e7eb;
}

    .k-picker-solid:hover, .k-picker-solid.k-hover {
        border-color: #c7cdd5;
        background-color: #ced3db;
    }

    .k-picker-solid:focus, .k-picker-solid.k-focus {
        border-color: #bfc6d0;
        background-color: #c7cdd5;
        box-shadow: 0 0 0 0.25rem rgba(228, 231, 235, 0.5);
    }

    .k-picker-solid:focus-within {
        border-color: #bfc6d0;
        background-color: #c7cdd5;
        box-shadow: 0 0 0 0.25rem rgba(228, 231, 235, 0.5);
    }

    .k-picker-solid.k-invalid, .k-picker-solid.ng-invalid.ng-touched, .k-picker-solid.ng-invalid.ng-dirty {
        border-color: #dc3545;
    }

        .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: #dc3545;
        }

        .k-picker-solid.k-invalid:focus, .k-picker-solid.k-invalid.k-focus, .k-picker-solid.ng-invalid.ng-touched:focus, .k-picker-solid.ng-invalid.ng-touched.k-focus, .k-picker-solid.ng-invalid.ng-dirty:focus, .k-picker-solid.ng-invalid.ng-dirty.k-focus {
            box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
        }

        .k-picker-solid.k-invalid:focus-within, .k-picker-solid.ng-invalid.ng-touched:focus-within, .k-picker-solid.ng-invalid.ng-dirty:focus-within {
            box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
        }

.k-input-outline {
    border-color: rgba(33, 37, 41, 0.5);
    color: #212529;
}

    .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:focus, .k-input-outline.k-focus {
        border-color: #86b7fe;
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    }

    .k-input-outline:focus-within {
        border-color: #86b7fe;
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    }

    .k-input-outline.k-invalid, .k-input-outline.ng-invalid.ng-touched, .k-input-outline.ng-invalid.ng-dirty {
        border-color: #dc3545;
    }

        .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: #dc3545;
        }

        .k-input-outline.k-invalid:focus, .k-input-outline.k-invalid.k-focus, .k-input-outline.ng-invalid.ng-touched:focus, .k-input-outline.ng-invalid.ng-touched.k-focus, .k-input-outline.ng-invalid.ng-dirty:focus, .k-input-outline.ng-invalid.ng-dirty.k-focus {
            box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
        }

        .k-input-outline.k-invalid:focus-within, .k-input-outline.ng-invalid.ng-touched:focus-within, .k-input-outline.ng-invalid.ng-dirty:focus-within {
            box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
        }

.k-picker-outline {
    border-color: rgba(33, 37, 41, 0.5);
    color: #212529;
}

    .k-picker-outline:hover, .k-picker-outline.k-hover {
        border-color: #212529;
        color: white;
        background-color: #212529;
    }

    .k-picker-outline:focus, .k-picker-outline.k-focus {
        box-shadow: 0 0 0 0.25rem rgba(228, 231, 235, 0.5);
    }

    .k-picker-outline:focus-within {
        box-shadow: 0 0 0 0.25rem rgba(228, 231, 235, 0.5);
    }

    .k-picker-outline.k-invalid, .k-picker-outline.ng-invalid.ng-touched, .k-picker-outline.ng-invalid.ng-dirty {
        border-color: #dc3545;
    }

        .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: #dc3545;
        }

        .k-picker-outline.k-invalid:focus, .k-picker-outline.k-invalid.k-focus, .k-picker-outline.ng-invalid.ng-touched:focus, .k-picker-outline.ng-invalid.ng-touched.k-focus, .k-picker-outline.ng-invalid.ng-dirty:focus, .k-picker-outline.ng-invalid.ng-dirty.k-focus {
            box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
        }

        .k-picker-outline.k-invalid:focus-within, .k-picker-outline.ng-invalid.ng-touched:focus-within, .k-picker-outline.ng-invalid.ng-dirty:focus-within {
            box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
        }

.k-input-flat {
    border-color: #ced4da;
    color: #495057;
}

    .k-input-flat:focus, .k-input-flat.k-focus {
        border-color: #86b7fe;
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    }

    .k-input-flat:focus-within {
        border-color: #86b7fe;
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    }

    .k-input-flat.k-invalid, .k-input-flat.ng-invalid.ng-touched, .k-input-flat.ng-invalid.ng-dirty {
        border-color: #dc3545;
    }

        .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: #dc3545;
        }

        .k-input-flat.k-invalid:focus, .k-input-flat.k-invalid.k-focus, .k-input-flat.ng-invalid.ng-touched:focus, .k-input-flat.ng-invalid.ng-touched.k-focus, .k-input-flat.ng-invalid.ng-dirty:focus, .k-input-flat.ng-invalid.ng-dirty.k-focus {
            box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
        }

        .k-input-flat.k-invalid:focus-within, .k-input-flat.ng-invalid.ng-touched:focus-within, .k-input-flat.ng-invalid.ng-dirty:focus-within {
            box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
        }

.k-picker-flat {
    border-color: #e4e7eb;
    color: #212529;
}

    .k-picker-flat:hover, .k-picker-flat.k-hover {
        background-color: rgba(33, 37, 41, 0.08);
    }

    .k-picker-flat:focus, .k-picker-flat.k-focus {
        box-shadow: 0 0 0 0.25rem rgba(228, 231, 235, 0.5);
    }

    .k-picker-flat:focus-within {
        box-shadow: 0 0 0 0.25rem rgba(228, 231, 235, 0.5);
    }

    .k-picker-flat.k-invalid, .k-picker-flat.ng-invalid.ng-touched, .k-picker-flat.ng-invalid.ng-dirty {
        border-color: #dc3545;
    }

        .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: #dc3545;
        }

        .k-picker-flat.k-invalid:focus, .k-picker-flat.k-invalid.k-focus, .k-picker-flat.ng-invalid.ng-touched:focus, .k-picker-flat.ng-invalid.ng-touched.k-focus, .k-picker-flat.ng-invalid.ng-dirty:focus, .k-picker-flat.ng-invalid.ng-dirty.k-focus {
            box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
        }

        .k-picker-flat.k-invalid:focus-within, .k-picker-flat.ng-invalid.ng-touched:focus-within, .k-picker-flat.ng-invalid.ng-dirty:focus-within {
            box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
        }

.k-chip {
    padding: 0.25rem 0.25rem;
    border-width: 1px;
    border-style: solid;
    outline: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    line-height: 1.25;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0.25rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    -webkit-user-select: none;
    -ms-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: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

    .k-chip-content:first-child {
        -webkit-margin-start: 0.25rem;
        margin-inline-start: 0.25rem;
    }

    .k-chip-content:last-child {
        -webkit-margin-end: 0.25rem;
        margin-inline-end: 0.25rem;
    }

.k-chip-text,
.k-chip-label {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.k-chip-avatar {
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    -ms-flex: none;
    flex: none;
}

.k-chip-icon {
    font-size: inherit;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex: none;
    flex: none;
}

.k-ie .k-chip-icon {
    margin-right: 0.25rem;
}

.k-chip-actions {
    margin: -5em 0;
    -ms-flex: none;
    flex: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-item-align: center;
    align-self: center;
}

.k-chip-action {
    -ms-flex: none;
    flex: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-item-align: center;
    align-self: center;
}

.k-remove-icon {
    font-size: inherit;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex: none;
    flex: none;
}

.k-ie .k-remove-icon {
    margin-right: 0;
    margin-left: 0.25rem;
}

.k-chip-list {
    min-width: 0px;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.k-ie .k-chip.k-rtl .k-chip-icon,
.k-ie .k-rtl .k-chip .k-chip-icon,
.k-ie .k-chip[dir="rtl"] .k-chip-icon {
    margin-right: 0;
    margin-left: 0.25rem;
}

.k-ie .k-chip.k-rtl .k-remove-icon,
.k-ie .k-rtl .k-chip .k-remove-icon,
.k-ie .k-chip[dir="rtl"] .k-remove-icon {
    margin-left: 0;
    margin-right: 0.25rem;
}

.k-chip-sm {
    padding: 0.125rem 0.25rem;
    font-size: 0.875rem;
    line-height: 1.25;
}

.k-chip-avatar {
    width: 1em;
    height: 1em;
    -ms-flex-preferred-size: 1em;
    flex-basis: 1em;
}

.k-chip-md {
    padding: 0.25rem 0.25rem;
    font-size: 1rem;
    line-height: 1.25;
}

.k-chip-avatar {
    width: 1em;
    height: 1em;
    -ms-flex-preferred-size: 1em;
    flex-basis: 1em;
}

.k-chip-lg {
    padding: 0.375rem 0.25rem;
    font-size: 1rem;
    line-height: 1.25;
}

.k-chip-avatar {
    width: 1em;
    height: 1em;
    -ms-flex-preferred-size: 1em;
    flex-basis: 1em;
}

.k-chip-list-sm {
    gap: 0.25rem;
}

.k-chip-list-md {
    gap: 0.25rem;
}

.k-chip-list-lg {
    gap: 0.25rem;
}

.k-chip-solid-base {
    border-color: #bcbebf;
    color: #212529;
    background-color: #edeeee;
}

    .k-chip-solid-base:focus, .k-chip-solid-base.k-focus {
        box-shadow: 0 0 0 2px rgba(33, 37, 41, 0.16);
        background-color: #edeeee;
    }

    .k-chip-solid-base:hover, .k-chip-solid-base.k-hover {
        background-color: #dbdcdd;
    }

    .k-chip-solid-base.k-selected {
        background-color: #cacbcc;
    }

.k-chip-solid-error {
    border-color: #f5c2c7;
    color: #dc3545;
    background-color: #fceff0;
}

    .k-chip-solid-error:focus, .k-chip-solid-error.k-focus {
        box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.16);
        background-color: #fceff0;
    }

    .k-chip-solid-error:hover, .k-chip-solid-error.k-hover {
        background-color: #f9dfe1;
    }

    .k-chip-solid-error.k-selected {
        background-color: #f7cfd2;
    }

.k-chip-solid-info {
    border-color: #b6effb;
    color: #0dcaf0;
    background-color: #ecfbfe;
}

    .k-chip-solid-info:focus, .k-chip-solid-info.k-focus {
        box-shadow: 0 0 0 2px rgba(13, 202, 240, 0.16);
        background-color: #ecfbfe;
    }

    .k-chip-solid-info:hover, .k-chip-solid-info.k-hover {
        background-color: #d8f7fd;
    }

    .k-chip-solid-info.k-selected {
        background-color: #c5f2fb;
    }

.k-chip-solid-warning {
    border-color: #ffecb5;
    color: #ffc107;
    background-color: #fffaeb;
}

    .k-chip-solid-warning:focus, .k-chip-solid-warning.k-focus {
        box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.16);
        background-color: #fffaeb;
    }

    .k-chip-solid-warning:hover, .k-chip-solid-warning.k-hover {
        background-color: #fff5d7;
    }

    .k-chip-solid-warning.k-selected {
        background-color: #fff0c3;
    }

.k-chip-solid-success {
    border-color: #badbcc;
    color: #198754;
    background-color: #edf5f1;
}

    .k-chip-solid-success:focus, .k-chip-solid-success.k-focus {
        box-shadow: 0 0 0 2px rgba(25, 135, 84, 0.16);
        background-color: #edf5f1;
    }

    .k-chip-solid-success:hover, .k-chip-solid-success.k-hover {
        background-color: #daece4;
    }

    .k-chip-solid-success.k-selected {
        background-color: #c8e2d6;
    }

.k-chip-outline-base {
    border-color: #212529;
    color: #212529;
    background-color: #ffffff;
}

    .k-chip-outline-base:focus, .k-chip-outline-base.k-focus {
        box-shadow: 0 0 0 2px rgba(33, 37, 41, 0.16);
    }

    .k-chip-outline-base:hover, .k-chip-outline-base.k-hover {
        color: white;
        background-color: #212529;
    }

    .k-chip-outline-base.k-selected {
        color: white;
        background-color: #212529;
    }

.k-chip-outline-error {
    border-color: #dc3545;
    color: #dc3545;
    background-color: #ffffff;
}

    .k-chip-outline-error:focus, .k-chip-outline-error.k-focus {
        box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.16);
    }

    .k-chip-outline-error:hover, .k-chip-outline-error.k-hover {
        color: white;
        background-color: #dc3545;
    }

    .k-chip-outline-error.k-selected {
        color: white;
        background-color: #dc3545;
    }

.k-chip-outline-info {
    border-color: #0dcaf0;
    color: #0dcaf0;
    background-color: #ffffff;
}

    .k-chip-outline-info:focus, .k-chip-outline-info.k-focus {
        box-shadow: 0 0 0 2px rgba(13, 202, 240, 0.16);
    }

    .k-chip-outline-info:hover, .k-chip-outline-info.k-hover {
        color: white;
        background-color: #0dcaf0;
    }

    .k-chip-outline-info.k-selected {
        color: white;
        background-color: #0dcaf0;
    }

.k-chip-outline-warning {
    border-color: #ffc107;
    color: #ffc107;
    background-color: #ffffff;
}

    .k-chip-outline-warning:focus, .k-chip-outline-warning.k-focus {
        box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.16);
    }

    .k-chip-outline-warning:hover, .k-chip-outline-warning.k-hover {
        color: black;
        background-color: #ffc107;
    }

    .k-chip-outline-warning.k-selected {
        color: black;
        background-color: #ffc107;
    }

.k-chip-outline-success {
    border-color: #198754;
    color: #198754;
    background-color: #ffffff;
}

    .k-chip-outline-success:focus, .k-chip-outline-success.k-focus {
        box-shadow: 0 0 0 2px rgba(25, 135, 84, 0.16);
    }

    .k-chip-outline-success:hover, .k-chip-outline-success.k-hover {
        color: white;
        background-color: #198754;
    }

    .k-chip-outline-success.k-selected {
        color: white;
        background-color: #198754;
    }

.k-floating-label-container {
    padding-top: 1.5rem;
    box-sizing: border-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: middle;
    position: relative;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: stretch;
    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: 1rem;
        line-height: 1.5;
        white-space: nowrap;
        text-overflow: ellipsis;
        position: absolute;
        top: calc(1.875rem + 1px);
        left: calc(0.75rem + 1px);
        overflow: hidden;
        cursor: text;
        -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
        transform-origin: left center;
        transition: color 0.2s ease-out, top 0.2s ease-out, left 0.2s ease-out, -webkit-transform 0.2s ease-out;
        transition: transform 0.2s ease-out, color 0.2s ease-out, top 0.2s ease-out, left 0.2s ease-out;
        transition: transform 0.2s ease-out, color 0.2s ease-out, top 0.2s ease-out, left 0.2s ease-out, -webkit-transform 0.2s ease-out;
    }

    .k-floating-label-container > .k-widget {
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        width: auto;
    }

    .k-floating-label-container.k-empty > .k-label {
        top: calc(1.875rem + 1px);
        left: calc(0.75rem + 1px);
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        pointer-events: none;
    }

    .k-floating-label-container > .k-label,
    .k-floating-label-container.k-focus > .k-label {
        top: 0;
        left: 0;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    .k-floating-label-container:focus-within > .k-label {
        top: 0;
        left: 0;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    .k-floating-label-container.k-empty:not(.k-focus):not(:focus-within) ::-webkit-input-placeholder {
        color: transparent;
    }

    .k-floating-label-container.k-empty:not(.k-focus):not(:focus-within) :-ms-input-placeholder {
        color: transparent;
    }

    .k-floating-label-container.k-empty:not(.k-focus):not(:focus-within) ::-ms-input-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 {
        -webkit-transform-origin: right center;
        -ms-transform-origin: right center;
        transform-origin: right center;
        transition: color 0.2s ease-out, top 0.2s ease-out, right 0.2s ease-out, -webkit-transform 0.2s ease-out;
        transition: transform 0.2s ease-out, color 0.2s ease-out, top 0.2s ease-out, right 0.2s ease-out;
        transition: transform 0.2s ease-out, color 0.2s ease-out, top 0.2s ease-out, right 0.2s ease-out, -webkit-transform 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: calc(0.75rem + 1px);
    }

    [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-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;
    -ms-flex: none;
    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 20 20'%3e%3cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%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 20 20'%3e%3cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
    }

    .k-checkbox:disabled,
    .k-checkbox.k-disabled {
        outline: none;
        cursor: default;
        opacity: 0.65;
        -webkit-filter: grayscale(0.1);
        filter: grayscale(0.1);
        pointer-events: none;
        box-shadow: none;
    }

.k-checkbox-wrap {
    -ms-flex: none;
    flex: none;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    gap: 0;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-item-align: start;
    align-self: flex-start;
    vertical-align: middle;
    position: relative;
}

    .k-checkbox-wrap::before {
        content: "\200b";
        width: 0px;
        overflow: hidden;
        -ms-flex: none;
        flex: none;
        display: inline-block;
        vertical-align: top;
    }

.k-checkbox-label {
    margin: 0;
    padding: 0;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 0.25rem;
    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: 0.25rem;
    margin-inline-start: 0.25rem;
}

.k-checkbox-label:empty {
    display: none !important;
}

.k-checkbox-label.k-no-text {
    min-width: 1px;
}

.k-checkbox-list {
    margin: 0;
    padding: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    gap: 0;
    list-style: none;
}

.k-checkbox-item,
.k-checkbox-list-item {
    padding: 0.25rem 0px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    gap: 0.25rem;
}

    .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: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    gap: 1rem;
}

.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, -webkit-transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: opacity 100ms linear, transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: opacity 100ms linear, transform 150ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translate(-50%, -50%) scale(0);
    -ms-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    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: 0.75rem;
    height: 0.75rem;
}

    .k-checkbox-sm::before {
        font-size: 0.625rem;
    }

.k-ripple-container .k-checkbox-sm::after {
    width: 2.25rem;
    height: 2.25rem;
}

.k-checkbox-md {
    width: 1rem;
    height: 1rem;
}

    .k-checkbox-md::before {
        font-size: 0.875rem;
    }

.k-ripple-container .k-checkbox-md::after {
    width: 3rem;
    height: 3rem;
}

.k-checkbox-lg {
    width: 1.25rem;
    height: 1.25rem;
}

    .k-checkbox-lg::before {
        font-size: 1.125rem;
    }

.k-ripple-container .k-checkbox-lg::after {
    width: 3.75rem;
    height: 3.75rem;
}

.k-checkbox {
    border-color: #ced4da;
    background-color: #ffffff;
}

    .k-checkbox:focus,
    .k-checkbox.k-focus {
        border-color: #86b7fe;
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    }

    .k-checkbox:indeterminate,
    .k-checkbox.k-indeterminate {
        border-color: #0d6efd;
        color: white;
        background-color: #0d6efd;
    }

    .k-checkbox:checked,
    .k-checkbox.k-checked {
        border-color: #0d6efd;
        color: white;
        background-color: #0d6efd;
    }

        .k-checkbox:checked:focus,
        .k-checkbox.k-checked.k-focus {
            border-color: #0d6efd;
            box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
        }

    .k-checkbox.k-invalid {
        border-color: #dc3545;
    }

        .k-checkbox.k-invalid + .k-checkbox-label {
            color: #dc3545;
        }

.k-checkbox-wrap .k-ripple-blob {
    color: #0d6efd;
    opacity: 0.25;
}

.k-ripple-container .k-checkbox::after {
    background: #0d6efd;
    opacity: 0.25;
}

.k-list-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
}

    .k-list-container > .k-list {
        -ms-flex: 1;
        flex: 1;
        height: 100%;
    }

.k-list {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column nowrap;
    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;
    font-weight: bold;
    white-space: nowrap;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex: none;
    flex: none;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

.k-list-content {
    border-color: inherit;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    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: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    gap: 0.5rem;
    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;
    font-weight: bold;
    cursor: default;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    gap: 0.5rem;
    position: relative;
}

.k-list-item-group-label {
    padding: 0 .5em;
    font-size: .75em;
    position: absolute;
    top: 0;
    inset-inline-end: 0;
}

.k-ie .k-list-item-group-label {
    right: 0;
}

.k-ie .k-rtl .k-list-item-group-label,
.k-ie [dir="rtl"] .k-list-item-group-label {
    right: auto;
    left: 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: 1rem;
    box-sizing: border-box;
    -ms-flex: none;
    flex: none;
}

.k-list-sm {
    font-size: 0.875rem;
    line-height: 1.4285714286;
}

    .k-list-sm .k-list-group-sticky-header {
        padding: 0.25rem 1rem;
    }

    .k-list-sm .k-list-item, .k-list-sm .k-list-optionlabel {
        padding: 0.25rem 1rem;
    }

    .k-list-sm .k-list-group-item {
        padding: 0.125rem 1rem;
    }

.k-list-md {
    font-size: 1rem;
    line-height: 1.5;
}

    .k-list-md .k-list-group-sticky-header {
        padding: 0.25rem 1rem;
    }

    .k-list-md .k-list-item, .k-list-md .k-list-optionlabel {
        padding: 0.25rem 1rem;
    }

    .k-list-md .k-list-group-item {
        padding: 0.25rem 1rem;
    }

.k-list-lg {
    font-size: 1rem;
    line-height: 1.5;
}

    .k-list-lg .k-list-group-sticky-header {
        padding: 0.5rem 1rem;
    }

    .k-list-lg .k-list-item, .k-list-lg .k-list-optionlabel {
        padding: 0.5rem 1rem;
    }

    .k-list-lg .k-list-group-item {
        padding: 0.375rem 1rem;
    }

.k-no-data, .k-nodata {
    min-height: 140px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: lighter;
    text-align: center;
    white-space: normal;
}

.k-list {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-list-group-sticky-header {
    border-color: inherit;
}

.k-list-item:hover, .k-list-optionlabel:hover, .k-list-item.k-hover, .k-hover.k-list-optionlabel {
    color: #16181b;
    background-color: #e9ecef;
}

.k-list-item:focus, .k-list-optionlabel:focus, .k-list-item.k-focus, .k-focus.k-list-optionlabel {
    box-shadow: inset 0 0 0 3px rgba(33, 37, 41, 0.15);
}

.k-list-item.k-selected, .k-selected.k-list-optionlabel {
    color: #ffffff;
    background-color: #0d6efd;
}

    .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: #ffffff;
        background-color: #0c65e9;
    }

.k-list-group-item {
    border-color: inherit;
}

.k-list-item-group-label {
    color: #ffffff;
    background-color: #212529;
}

.k-no-data, .k-nodata {
    color: #6c757d;
}
