.k-sr-only {
    position: absolute;
    left: -1px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.k-theme-test-class,
.k-common-test-class {
    opacity: 0;
}

.k-hstack, .k-hbox {
    display: flex;
    flex-flow: row nowrap;
}

.k-vstack, .k-vbox {
    display: flex;
    flex-flow: column nowrap;
}

.k-spacer, .k-flex {
    flex: 1 1 auto;
}

.k-spacer-sized {
    flex: none;
}

.k-float-wrap::after, .k-floatwrap::after {
    content: "";
    display: block;
    clear: both;
}

.k-flex-layout {
    display: flex;
}

.k-grid-layout {
    display: grid;
}

.k-separator {
    width: auto;
    height: 0;
    border-width: 1px 0 0;
    border-style: solid;
    border-color: inherit;
    display: block;
    flex-grow: 0 !important;
    flex-shrink: 0 !important;
    align-self: stretch;
}

.k-separator-horizontal,
.k-vstack > .k-separator,
.k-vbox > .k-separator {
    width: auto;
    height: 0;
    border-width: 1px 0 0;
}

.k-separator-vertical,
.k-hstack > .k-separator,
.k-hbox > .k-separator {
    width: 0;
    height: auto;
    border-width: 0 0 0 1px;
}

hr.k-separator {
    margin: 0;
    padding: 0;
}

.k-hidden {
    display: none !important;
}

.k-rtl {
    direction: rtl;
}

[hidden] {
    display: none !important;
}

script {
    display: none !important;
}

.k-reset {
    margin: 0;
    padding: 0;
    border-width: 0;
    outline: 0;
    text-decoration: none;
    font: inherit;
    list-style: none;
}

kendo-sortable {
    display: block;
}

.k-link,
.k-link:hover {
    color: inherit;
    text-decoration: none;
    outline: 0;
    cursor: pointer;
}

.k-content {
    outline: 0;
}

.k-centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.k-no-click {
    pointer-events: none;
}

.k-pdf-export-shadow {
    position: absolute;
    overflow: hidden;
    left: -15000px;
    width: 14400px;
}

.kendo-pdf-hide-pseudo-elements::before,
.kendo-pdf-hide-pseudo-elements::after {
    display: none !important;
}

.k-text-selection ::selection {
    background-color: #0d6efd;
    color: white;
}

.k-block,
.k-panel {
    border-radius: 0.375rem;
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
    padding: 0;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
}

.k-block > .k-header,
.k-panel > .k-header {
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
    border-color: #dee2e6;
    color: #212529;
    background-color: #f8f9fa;
    padding-inline: 0.5rem;
    padding-block: 0.25rem;
}

.k-block > .k-content,
.k-panel > .k-content {
    padding-inline: 0.5rem;
    padding-block: 0.25rem;
}

.k-content {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-disabled,
.k-widget[disabled] {
    outline: none;
    cursor: default;
    opacity: 0.65;
    filter: grayscale(0.1);
    pointer-events: none;
    box-shadow: none;
}

.k-disabled .k-link,
.k-widget[disabled] .k-link {
    cursor: default;
    outline: 0;
}

.k-disabled [disabled],
.k-disabled .k-disabled,
.k-widget[disabled] [disabled],
.k-widget[disabled] .k-disabled {
    opacity: 1;
    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;
    flex: 0 0 auto;
}

.k-d-flex-col > .k-hr {
    margin: 0;
    flex: 0 0 auto;
}

.k-dirty {
    margin: 0;
    padding: 0;
    width: 0;
    height: 0;
    border-width: 3px;
    border-style: solid;
    border-color: #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-animation-container {
    position: absolute;
    overflow: hidden;
    z-index: 100;
}

.k-animation-container-fixed {
    position: fixed;
}

.k-animation-container-relative {
    position: relative;
    display: inline-block;
}

.k-push-right-enter, .k-push-right-appear {
    transform: translate(-100%, 0);
}

.k-push-right-enter-active, .k-push-right-appear-active {
    transform: translate(0, 0);
    transition: transform 300ms ease-in-out;
}

.k-push-right-exit {
    transform: translate(0, 0);
}

.k-push-right-exit-active {
    transform: translate(100%, 0);
    transition: transform 300ms ease-in-out;
}

.k-push-left-enter, .k-push-left-appear {
    transform: translate(100%, 0);
}

.k-push-left-enter-active, .k-push-left-appear-active {
    transform: translate(0, 0);
    transition: transform 300ms ease-in-out;
}

.k-push-left-exit {
    transform: translate(0, 0);
}

.k-push-left-exit-active {
    transform: translate(-100%, 0);
    transition: transform 300ms ease-in-out;
}

.k-push-down-enter, .k-push-down-appear {
    transform: translate(0, -100%);
}

.k-push-down-enter-active, .k-push-down-appear-active {
    transform: translate(0, 0);
    transition: transform 300ms ease-in-out;
}

.k-push-down-exit {
    transform: translate(0, 0);
}

.k-push-down-exit-active {
    transform: translate(0, 100%);
    transition: transform 300ms ease-in-out;
}

.k-push-up-enter, .k-push-up-appear {
    transform: translate(0, 100%);
}

.k-push-up-enter-active, .k-push-up-appear-active {
    transform: translate(0, 0);
    transition: transform 300ms ease-in-out;
}

.k-push-up-exit {
    transform: translate(0, 0);
}

.k-push-up-exit-active {
    transform: translate(0, -100%);
    transition: transform 300ms ease-in-out;
}

.k-expand-vertical-enter, .k-expand-vertical-appear {
    transform: scaleY(0);
}

.k-expand-vertical-enter-active, .k-expand-vertical-appear-active {
    transform: scaleY(1);
    transition: transform 300ms ease-in-out;
}

.k-expand-vertical-exit {
    transform: scaleY(1);
}

.k-expand-vertical-exit-active {
    transform: scaleY(0);
    transition: transform 300ms ease-in-out;
}

.k-expand-horizontal-enter, .k-expand-horizontal-appear {
    transform: scaleX(0);
}

.k-expand-horizontal-enter-active, .k-expand-horizontal-appear-active {
    transform: scaleX(1);
    transition: transform 300ms ease-in-out;
}

.k-expand-horizontal-exit {
    transform: scaleX(1);
}

.k-expand-horizontal-exit-active {
    transform: scaleX(0);
    transition: transform 300ms ease-in-out;
}

.k-fade-enter, .k-fade-appear {
    opacity: 0;
}

.k-fade-enter-active, .k-fade-appear-active {
    opacity: 1;
    transition: opacity 500ms ease-in-out;
}

.k-fade-exit {
    opacity: 1;
}

.k-fade-exit-active {
    opacity: 0;
    transition: opacity 500ms ease-in-out;
}

.k-fade-exit-active + .k-fade-exit-active,
.k-fade-enter-active + .k-fade-enter-active {
    display: none;
}

.k-zoom-in-enter, .k-zoom-in-appear {
    opacity: 0;
    transform: scale(0);
}

.k-zoom-in-enter-active, .k-zoom-in-appear-active {
    opacity: 1;
    transform: scale(1);
    transition: transform, opacity 300ms ease-in-out;
}

.k-zoom-in-exit {
    opacity: 1;
    transform: scale(1);
}

.k-zoom-in-exit-active {
    opacity: 0;
    transform: scale(2);
    transition: transform, opacity 300ms ease-in-out;
}

.k-zoom-out-enter, .k-zoom-out-appear {
    opacity: 0;
    transform: scale(2);
}

.k-zoom-out-enter-active, .k-zoom-out-appear-active {
    opacity: 1;
    transform: scale(1);
    transition: transform, opacity 300ms ease-in-out;
}

.k-zoom-out-exit {
    opacity: 1;
    transform: scale(1);
}

.k-zoom-out-exit-active {
    opacity: 0;
    transform: scale(0);
    transition: transform, opacity 300ms ease-in-out;
}

.k-slide-in-appear {
    opacity: .1;
    transform: translate(0, -3em);
}

.k-slide-in-appear .k-centered {
    transform: translate(-50%, -60%);
}

.k-slide-in-appear-active {
    opacity: 1;
    transform: translate(0, 0);
    transition: transform 0.3s cubic-bezier(0.2, 0.6, 0.4, 1), opacity 0.3s cubic-bezier(0.2, 1, 0.2, 1);
}

.k-slide-in-appear-active .k-centered {
    transform: translate(-50%, -50%);
}

.k-slide-down-enter, .k-slide-down-appear {
    transform: translateY(-100%);
}

.k-slide-down-enter-active, .k-slide-down-appear-active {
    transform: translateY(0);
    transition: transform 300ms ease-in-out;
}

.k-slide-down-exit {
    transform: translateY(0);
}

.k-slide-down-exit-active {
    transform: translateY(-100%);
    transition: transform 300ms ease-in-out;
}

.k-slide-up-enter, .k-slide-up-appear {
    transform: translateY(100%);
}

.k-slide-up-enter-active, .k-slide-up-appear-active {
    transform: translateY(0);
    transition: transform 300ms ease-in-out;
}

.k-slide-up-exit {
    transform: translateY(0);
}

.k-slide-up-exit-active {
    transform: translateY(100%);
    transition: transform 300ms ease-in-out;
}

.k-slide-right-enter, .k-slide-right-appear {
    transform: translateX(-100%);
}

.k-slide-right-enter-active, .k-slide-right-appear-active {
    transform: translateX(0);
    transition: transform 300ms ease-in-out;
}

.k-slide-right-exit {
    transform: translateX(0);
}

.k-slide-right-exit-active {
    transform: translateX(-100%);
    transition: transform 300ms ease-in-out;
}

.k-slide-left-enter, .k-slide-left-appear {
    transform: translateX(100%);
}

.k-slide-left-enter-active, .k-slide-left-appear-active {
    transform: translateX(0);
    transition: transform 300ms ease-in-out;
}

.k-slide-left-exit {
    transform: translateX(0);
}

.k-slide-left-exit-active {
    transform: translateX(100%);
    transition: transform 300ms ease-in-out;
}

.k-reveal-vertical-enter, .k-reveal-vertical-appear {
    max-height: 0;
}

.k-reveal-vertical-enter-active, .k-reveal-vertical-appear-active {
    transition: max-height 300ms ease-in-out;
}

.k-reveal-vertical-exit-active {
    max-height: 0 !important;
    transition: max-height 300ms ease-in-out;
}

.k-reveal-horizontal-enter, .k-reveal-horizontal-appear {
    max-width: 0;
}

.k-reveal-horizontal-enter-active, .k-reveal-horizontal-appear-active {
    transition: max-width 300ms ease-in-out;
}

.k-reveal-horizontal-exit-active {
    max-width: 0 !important;
    transition: max-width 300ms ease-in-out;
}

.k-fx-end .k-fx-next,
.k-fx-end .k-fx-current {
    transition: all 350ms ease-out;
}

.k-fx {
    position: relative;
}

.k-fx .k-fx-current {
    z-index: 0;
}

.k-fx .k-fx-next {
    z-index: 1;
}

.k-fx-hidden,
.k-fx-hidden * {
    visibility: hidden !important;
}

.k-fx-reverse .k-fx-current {
    z-index: 1;
}

.k-fx-reverse .k-fx-next {
    z-index: 0;
}

.k-fx-zoom.k-fx-start .k-fx-next {
    transform: scale(0) !important;
}

.k-fx-zoom.k-fx-end .k-fx-next {
    transform: scale(1) !important;
}

.k-fx-zoom.k-fx-reverse.k-fx-start .k-fx-next,
.k-fx-zoom.k-fx-reverse.k-fx-end .k-fx-next {
    transform: scale(1) !important;
}

.k-fx-zoom.k-fx-reverse.k-fx-start .k-fx-current {
    transform: scale(1) !important;
}

.k-fx-zoom.k-fx-reverse.k-fx-end .k-fx-current {
    transform: scale(0) !important;
}

.k-fx-fade.k-fx-start .k-fx-next {
    will-change: opacity;
    opacity: 0;
}

.k-fx-fade.k-fx-end .k-fx-next {
    opacity: 1;
}

.k-fx-fade.k-fx-reverse.k-fx-start .k-fx-current {
    will-change: opacity;
    opacity: 1;
}

.k-fx-fade.k-fx-reverse.k-fx-end .k-fx-current {
    opacity: 0;
}

.k-fx-slide.k-fx-end .k-fx-next .k-content,
.k-fx-slide.k-fx-end .k-fx-next .k-header,
.k-fx-slide.k-fx-end .k-fx-next .k-footer,
.k-fx-slide.k-fx-end .k-fx-current .k-content,
.k-fx-slide.k-fx-end .k-fx-current .k-header,
.k-fx-slide.k-fx-end .k-fx-current .k-footer,
.k-fx-slide.k-fx-end .k-fx-next .km-content,
.k-fx-slide.k-fx-end .k-fx-next .km-header,
.k-fx-slide.k-fx-end .k-fx-next .km-footer,
.k-fx-slide.k-fx-end .k-fx-current .km-content,
.k-fx-slide.k-fx-end .k-fx-current .km-header,
.k-fx-slide.k-fx-end .k-fx-current .km-footer {
    transition: all 350ms ease-out;
}

.k-fx-slide.k-fx-start .k-fx-next .k-content,
.k-fx-slide.k-fx-start .k-fx-next .km-content {
    will-change: transform;
    transform: translateX(100%);
}

.k-fx-slide.k-fx-start .k-fx-next .k-header,
.k-fx-slide.k-fx-start .k-fx-next .k-footer,
.k-fx-slide.k-fx-start .k-fx-next .km-header,
.k-fx-slide.k-fx-start .k-fx-next .km-footer {
    will-change: opacity;
    opacity: 0;
}

.k-fx-slide.k-fx-end .k-fx-current .k-content,
.k-fx-slide.k-fx-end .k-fx-current .km-content {
    transform: translateX(-100%);
}

.k-fx-slide.k-fx-end .k-fx-next .k-header,
.k-fx-slide.k-fx-end .k-fx-next .k-footer,
.k-fx-slide.k-fx-end .k-fx-next .km-header,
.k-fx-slide.k-fx-end .k-fx-next .km-footer {
    opacity: 1;
}

.k-fx-slide.k-fx-reverse.k-fx-start .k-fx-current .k-content,
.k-fx-slide.k-fx-reverse.k-fx-start .k-fx-current .km-content {
    will-change: transform;
    transform: translateX(0);
}

.k-fx-slide.k-fx-reverse.k-fx-end .k-fx-current .k-content,
.k-fx-slide.k-fx-reverse.k-fx-end .k-fx-current .km-content {
    transform: translateX(100%);
}

.k-fx-slide.k-fx-reverse.k-fx-start .k-fx-next .k-content,
.k-fx-slide.k-fx-reverse.k-fx-start .k-fx-next .km-content {
    transform: translateX(-100%);
}

.k-fx-slide.k-fx-reverse.k-fx-end .k-fx-next .k-content,
.k-fx-slide.k-fx-reverse.k-fx-end .k-fx-next .km-content {
    transform: translateX(0);
}

.k-fx-slide.k-fx-reverse.k-fx-start .k-fx-current .k-header,
.k-fx-slide.k-fx-reverse.k-fx-start .k-fx-current .k-footer,
.k-fx-slide.k-fx-reverse.k-fx-start .k-fx-current .km-header,
.k-fx-slide.k-fx-reverse.k-fx-start .k-fx-current .km-footer {
    will-change: opacity;
    opacity: 1;
}

.k-fx-slide.k-fx-reverse.k-fx-start .k-fx-next .k-header,
.k-fx-slide.k-fx-reverse.k-fx-start .k-fx-next .k-footer,
.k-fx-slide.k-fx-reverse.k-fx-start .k-fx-next .km-header,
.k-fx-slide.k-fx-reverse.k-fx-start .k-fx-next .km-footer {
    opacity: 1;
}

.k-fx-slide.k-fx-reverse.k-fx-end .k-fx-current .k-header,
.k-fx-slide.k-fx-reverse.k-fx-end .k-fx-current .k-footer,
.k-fx-slide.k-fx-reverse.k-fx-end .k-fx-current .km-header,
.k-fx-slide.k-fx-reverse.k-fx-end .k-fx-current .km-footer {
    opacity: 0;
}

.k-fx-slide.k-fx-reverse.k-fx-end .k-fx-next .k-header,
.k-fx-slide.k-fx-reverse.k-fx-end .k-fx-next .k-footer,
.k-fx-slide.k-fx-reverse.k-fx-end .k-fx-next .km-header,
.k-fx-slide.k-fx-reverse.k-fx-end .k-fx-next .km-footer {
    opacity: 1;
}

.k-fx-slide.k-fx-right.k-fx-start .k-fx-next .k-content,
.k-fx-slide.k-fx-right.k-fx-start .k-fx-next .km-content {
    transform: translateX(-100%);
}

.k-fx-slide.k-fx-right.k-fx-end .k-fx-current .k-content,
.k-fx-slide.k-fx-right.k-fx-end .k-fx-current .km-content {
    transform: translateX(100%);
}

.k-fx-slide.k-fx-right.k-fx-reverse.k-fx-start .k-fx-current .k-content,
.k-fx-slide.k-fx-right.k-fx-reverse.k-fx-start .k-fx-current .km-content {
    transform: translateX(0);
}

.k-fx-slide.k-fx-right.k-fx-reverse.k-fx-end .k-fx-current .k-content,
.k-fx-slide.k-fx-right.k-fx-reverse.k-fx-end .k-fx-current .km-content {
    transform: translateX(-100%);
}

.k-fx-slide.k-fx-right.k-fx-reverse.k-fx-start .k-fx-next .k-content,
.k-fx-slide.k-fx-right.k-fx-reverse.k-fx-start .k-fx-next .km-content {
    transform: translateX(100%);
}

.k-fx-slide.k-fx-right.k-fx-reverse.k-fx-end .k-fx-next .k-content,
.k-fx-slide.k-fx-right.k-fx-reverse.k-fx-end .k-fx-next .km-content {
    transform: translateX(0%);
}

.k-fx-tile.k-fx-start .k-fx-next {
    will-change: transform;
    transform: translateX(100%);
}

.k-fx-tile.k-fx-end .k-fx-current {
    transform: translateX(-100%);
}

.k-fx-tile.k-fx-reverse.k-fx-start .k-fx-current {
    will-change: transform;
    transform: translateX(0);
}

.k-fx-tile.k-fx-reverse.k-fx-end .k-fx-current {
    transform: translateX(100%);
}

.k-fx-tile.k-fx-reverse.k-fx-start .k-fx-next {
    transform: translateX(-100%);
}

.k-fx-tile.k-fx-reverse.k-fx-end .k-fx-next {
    transform: translateX(0);
}

.k-fx-tile.k-fx-right.k-fx-start .k-fx-next {
    transform: translateX(-100%);
}

.k-fx-tile.k-fx-right.k-fx-end .k-fx-current {
    transform: translateX(100%);
}

.k-fx-tile.k-fx-right.k-fx-reverse.k-fx-start .k-fx-current {
    transform: translateX(0);
}

.k-fx-tile.k-fx-right.k-fx-reverse.k-fx-end .k-fx-current {
    transform: translateX(-100%);
}

.k-fx-tile.k-fx-right.k-fx-reverse.k-fx-start .k-fx-next {
    transform: translateX(100%);
}

.k-fx-tile.k-fx-right.k-fx-reverse.k-fx-end .k-fx-next {
    transform: translateX(0%);
}

.k-fx.k-fx-overlay.k-fx-start .k-fx-next,
.k-fx.k-fx-overlay.k-fx-left.k-fx-start .k-fx-next {
    will-change: transform;
    transform: translateX(100%);
}

.k-fx.k-fx-overlay.k-fx-right.k-fx-start .k-fx-next {
    transform: translateX(-100%);
}

.k-fx.k-fx-overlay.k-fx-up.k-fx-start .k-fx-next {
    transform: translateY(100%);
}

.k-fx.k-fx-overlay.k-fx-down.k-fx-start .k-fx-next {
    transform: translateY(-100%);
}

.k-fx.k-fx-overlay.k-fx-reverse.k-fx-start .k-fx-next {
    transform: none;
}

.k-fx.k-fx-overlay.k-fx-reverse.k-fx-start .k-fx-current {
    will-change: transform;
    transform: none;
}

.k-fx.k-fx-overlay.k-fx-reverse.k-fx-end .k-fx-current,
.k-fx.k-fx-overlay.k-fx-reverse.k-fx-left.k-fx-end .k-fx-current {
    transform: translateX(100%);
}

.k-fx.k-fx-overlay.k-fx-reverse.k-fx-right.k-fx-end .k-fx-current {
    transform: translateX(-100%);
}

.k-fx.k-fx-overlay.k-fx-reverse.k-fx-up.k-fx-end .k-fx-current {
    transform: translateY(100%);
}

.k-fx.k-fx-overlay.k-fx-reverse.k-fx-down.k-fx-end .k-fx-current {
    transform: translateY(-100%);
}

.k-resize-handle,
.k-resize-hint {
    position: absolute;
    border-color: inherit;
    z-index: 200;
}

.k-resize-handle {
    display: flex;
    align-items: center;
    justify-content: center;
}

.k-resize-handle::before {
    content: "";
    border: 0 solid;
    border-color: inherit;
}

.k-resize-n {
    width: 100%;
    height: 6px;
    flex-direction: row;
    left: 0;
    top: -3px;
    cursor: n-resize;
}

.k-resize-s {
    width: 100%;
    height: 6px;
    flex-direction: row;
    left: 0;
    bottom: -3px;
    cursor: s-resize;
}

.k-resize-w {
    width: 6px;
    height: 100%;
    flex-direction: column;
    top: 0;
    left: -3px;
    cursor: w-resize;
}

.k-resize-e {
    width: 6px;
    height: 100%;
    flex-direction: column;
    top: 0;
    right: -3px;
    cursor: e-resize;
}

.k-resize-sw,
.k-resize-se,
.k-resize-nw,
.k-resize-ne {
    width: 5px;
    height: 5px;
}

.k-resize-sw {
    cursor: sw-resize;
    bottom: 0;
    left: 0;
}

.k-resize-se {
    cursor: se-resize;
    bottom: 0;
    right: 0;
}

.k-resize-nw {
    cursor: nw-resize;
    top: 0;
    left: 0;
}

.k-resize-ne {
    cursor: ne-resize;
    top: 0;
    right: 0;
}

.k-vertical-resize {
    cursor: row-resize;
}

.k-horizontal-resize {
    cursor: col-resize;
}

.k-resize-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.k-resize-hint .k-resize-hint-handle {
    width: auto;
    height: 20px;
    align-self: stretch;
}

.k-resize-hint .k-resize-hint-marker {
    width: 2px;
    height: auto;
    flex: 1 1 auto;
}

.k-resize-hint-vertical {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.k-resize-hint-vertical .k-resize-hint-handle {
    width: 20px;
    height: auto;
    align-self: stretch;
}

.k-resize-hint-vertical .k-resize-hint-marker {
    width: auto;
    height: 2px;
    flex: 1 1 auto;
}

.k-scrollbar {
    position: absolute;
    overflow: scroll;
}

.k-scrollbar-vertical {
    top: 0;
    right: 0;
    width: 17px;
    height: 100%;
    overflow-x: hidden;
}

.k-touch-scrollbar {
    display: none;
    position: absolute;
    z-index: 200000;
    height: 8px;
    width: 8px;
    border: 1px solid #8a8a8a;
    background-color: #858585;
}

.k-marquee {
    position: absolute;
    z-index: 100000;
}

.k-marquee-color,
.k-marquee-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.k-marquee-color {
    color: #ffffff;
    background-color: #0d6efd;
    border-color: #0c65e9;
    opacity: .6;
}

.k-marquee-text {
    color: #ffffff;
}

.k-ratio-auto {
    aspect-ratio: auto;
}

.\!k-ratio-auto {
    aspect-ratio: auto !important;
}

.k-ratio-1 {
    aspect-ratio: 1;
}

.\!k-ratio-1 {
    aspect-ratio: 1 !important;
}

.k-ratio-square {
    aspect-ratio: 1 / 1;
}

.\!k-ratio-square {
    aspect-ratio: 1 / 1 !important;
}

.k-ratio-video {
    aspect-ratio: 16 / 9;
}

.\!k-ratio-video {
    aspect-ratio: 16 / 9 !important;
}

.k-aspect-ratio-auto {
    aspect-ratio: auto;
}

.\!k-aspect-ratio-auto {
    aspect-ratio: auto !important;
}

.k-aspect-ratio-1 {
    aspect-ratio: 1;
}

.\!k-aspect-ratio-1 {
    aspect-ratio: 1 !important;
}

.k-aspect-ratio-square {
    aspect-ratio: 1 / 1;
}

.\!k-aspect-ratio-square {
    aspect-ratio: 1 / 1 !important;
}

.k-aspect-ratio-video {
    aspect-ratio: 16 / 9;
}

.\!k-aspect-ratio-video {
    aspect-ratio: 16 / 9 !important;
}

.k-box-sizing-border {
    box-sizing: border-box;
}

.\!k-box-sizing-border {
    box-sizing: border-box !important;
}

.k-box-sizing-content {
    box-sizing: content-box;
}

.\!k-box-sizing-content {
    box-sizing: content-box !important;
}

.k-clear-left {
    clear: left;
}

.\!k-clear-left {
    clear: left !important;
}

.k-clear-right {
    clear: right;
}

.\!k-clear-right {
    clear: right !important;
}

.k-clear-both {
    clear: both;
}

.\!k-clear-both {
    clear: both !important;
}

.k-clear-none {
    clear: none;
}

.\!k-clear-none {
    clear: none !important;
}

.k-columns-1 {
    columns: 1;
}

.\!k-columns-1 {
    columns: 1 !important;
}

.k-columns-2 {
    columns: 2;
}

.\!k-columns-2 {
    columns: 2 !important;
}

.k-columns-3 {
    columns: 3;
}

.\!k-columns-3 {
    columns: 3 !important;
}

.k-columns-4 {
    columns: 4;
}

.\!k-columns-4 {
    columns: 4 !important;
}

.k-columns-5 {
    columns: 5;
}

.\!k-columns-5 {
    columns: 5 !important;
}

.k-columns-6 {
    columns: 6;
}

.\!k-columns-6 {
    columns: 6 !important;
}

.k-columns-7 {
    columns: 7;
}

.\!k-columns-7 {
    columns: 7 !important;
}

.k-columns-8 {
    columns: 8;
}

.\!k-columns-8 {
    columns: 8 !important;
}

.k-columns-9 {
    columns: 9;
}

.\!k-columns-9 {
    columns: 9 !important;
}

.k-columns-10 {
    columns: 10;
}

.\!k-columns-10 {
    columns: 10 !important;
}

.k-columns-11 {
    columns: 11;
}

.\!k-columns-11 {
    columns: 11 !important;
}

.k-columns-12 {
    columns: 12;
}

.\!k-columns-12 {
    columns: 12 !important;
}

.k-columns-auto {
    columns: auto;
}

.\!k-columns-auto {
    columns: auto !important;
}

.k-d-none {
    display: none;
}

.\!k-d-none {
    display: none !important;
}

.k-d-contents {
    display: contents;
}

.\!k-d-contents {
    display: contents !important;
}

.k-d-block {
    display: block;
}

.\!k-d-block {
    display: block !important;
}

.k-d-inline {
    display: inline;
}

.\!k-d-inline {
    display: inline !important;
}

.k-d-inline-block {
    display: inline-block;
}

.\!k-d-inline-block {
    display: inline-block !important;
}

.k-d-flex, .k-d-flex-row, .k-d-flex-col {
    display: flex;
}

.\!k-d-flex, .\!k-d-flex-row, .\!k-d-flex-col {
    display: flex !important;
}

.k-d-inline-flex {
    display: inline-flex;
}

.\!k-d-inline-flex {
    display: inline-flex !important;
}

.k-d-grid {
    display: grid;
}

.\!k-d-grid {
    display: grid !important;
}

.k-d-inline-grid {
    display: inline-grid;
}

.\!k-d-inline-grid {
    display: inline-grid !important;
}

.k-d-table {
    display: table;
}

.\!k-d-table {
    display: table !important;
}

.k-d-inline-table {
    display: inline-table;
}

.\!k-d-inline-table {
    display: inline-table !important;
}

.k-d-table-row {
    display: table-row;
}

.\!k-d-table-row {
    display: table-row !important;
}

.k-d-table-cell {
    display: table-cell;
}

.\!k-d-table-cell {
    display: table-cell !important;
}

.k-d-list-item {
    display: list-item;
}

.\!k-d-list-item {
    display: list-item !important;
}

.k-display-none {
    display: none;
}

.\!k-display-none {
    display: none !important;
}

.k-display-contents {
    display: contents;
}

.\!k-display-contents {
    display: contents !important;
}

.k-display-block {
    display: block;
}

.\!k-display-block {
    display: block !important;
}

.k-display-inline {
    display: inline;
}

.\!k-display-inline {
    display: inline !important;
}

.k-display-inline-block {
    display: inline-block;
}

.\!k-display-inline-block {
    display: inline-block !important;
}

.k-display-flex {
    display: flex;
}

.\!k-display-flex {
    display: flex !important;
}

.k-display-inline-flex {
    display: inline-flex;
}

.\!k-display-inline-flex {
    display: inline-flex !important;
}

.k-display-grid {
    display: grid;
}

.\!k-display-grid {
    display: grid !important;
}

.k-display-inline-grid {
    display: inline-grid;
}

.\!k-display-inline-grid {
    display: inline-grid !important;
}

.k-display-table {
    display: table;
}

.\!k-display-table {
    display: table !important;
}

.k-display-inline-table {
    display: inline-table;
}

.\!k-display-inline-table {
    display: inline-table !important;
}

.k-display-table-row {
    display: table-row;
}

.\!k-display-table-row {
    display: table-row !important;
}

.k-display-table-cell {
    display: table-cell;
}

.\!k-display-table-cell {
    display: table-cell !important;
}

.k-display-list-item {
    display: list-item;
}

.\!k-display-list-item {
    display: list-item !important;
}

.k-float-left {
    float: left;
}

.\!k-float-left {
    float: left !important;
}

.k-float-right {
    float: right;
}

.\!k-float-right {
    float: right !important;
}

.k-float-none {
    float: none;
}

.\!k-float-none {
    float: none !important;
}

.k-object-fit-contain {
    object-fit: contain;
}

.\!k-object-fit-contain {
    object-fit: contain !important;
}

.k-object-fit-cover {
    object-fit: cover;
}

.\!k-object-fit-cover {
    object-fit: cover !important;
}

.k-object-fit-fill {
    object-fit: fill;
}

.\!k-object-fit-fill {
    object-fit: fill !important;
}

.k-object-fit-scale-down {
    object-fit: scale-down;
}

.\!k-object-fit-scale-down {
    object-fit: scale-down !important;
}

.k-object-fit-initial {
    object-fit: initial;
}

.\!k-object-fit-initial {
    object-fit: initial !important;
}

.k-object-fit-none {
    object-fit: none;
}

.\!k-object-fit-none {
    object-fit: none !important;
}

.k-object-position-center {
    object-position: center;
}

.\!k-object-position-center {
    object-position: center !important;
}

.k-object-position-top {
    object-position: top;
}

.\!k-object-position-top {
    object-position: top !important;
}

.k-object-position-right {
    object-position: right;
}

.\!k-object-position-right {
    object-position: right !important;
}

.k-object-position-bottom {
    object-position: bottom;
}

.\!k-object-position-bottom {
    object-position: bottom !important;
}

.k-object-position-left {
    object-position: left;
}

.\!k-object-position-left {
    object-position: left !important;
}

.k-object-position-top-left {
    object-position: top left;
}

.\!k-object-position-top-left {
    object-position: top left !important;
}

.k-object-position-top-right {
    object-position: top right;
}

.\!k-object-position-top-right {
    object-position: top right !important;
}

.k-object-position-bottom-left {
    object-position: bottom left;
}

.\!k-object-position-bottom-left {
    object-position: bottom left !important;
}

.k-object-position-bottom-right {
    object-position: bottom right;
}

.\!k-object-position-bottom-right {
    object-position: bottom right !important;
}

.k-overflow-auto {
    overflow: auto;
}

.\!k-overflow-auto {
    overflow: auto !important;
}

.k-overflow-hidden {
    overflow: hidden;
}

.\!k-overflow-hidden {
    overflow: hidden !important;
}

.k-overflow-visible {
    overflow: visible;
}

.\!k-overflow-visible {
    overflow: visible !important;
}

.k-overflow-scroll {
    overflow: scroll;
}

.\!k-overflow-scroll {
    overflow: scroll !important;
}

.k-overflow-clip {
    overflow: clip;
}

.\!k-overflow-clip {
    overflow: clip !important;
}

.k-overflow-x-auto {
    overflow-x: auto;
}

.\!k-overflow-x-auto {
    overflow-x: auto !important;
}

.k-overflow-x-hidden {
    overflow-x: hidden;
}

.\!k-overflow-x-hidden {
    overflow-x: hidden !important;
}

.k-overflow-x-visible {
    overflow-x: visible;
}

.\!k-overflow-x-visible {
    overflow-x: visible !important;
}

.k-overflow-x-scroll {
    overflow-x: scroll;
}

.\!k-overflow-x-scroll {
    overflow-x: scroll !important;
}

.k-overflow-x-clip {
    overflow-x: clip;
}

.\!k-overflow-x-clip {
    overflow-x: clip !important;
}

.k-overflow-y-auto {
    overflow-y: auto;
}

.\!k-overflow-y-auto {
    overflow-y: auto !important;
}

.k-overflow-y-hidden {
    overflow-y: hidden;
}

.\!k-overflow-y-hidden {
    overflow-y: hidden !important;
}

.k-overflow-y-visible {
    overflow-y: visible;
}

.\!k-overflow-y-visible {
    overflow-y: visible !important;
}

.k-overflow-y-scroll {
    overflow-y: scroll;
}

.\!k-overflow-y-scroll {
    overflow-y: scroll !important;
}

.k-overflow-y-clip {
    overflow-y: clip;
}

.\!k-overflow-y-clip {
    overflow-y: clip !important;
}

.k-top-0 {
    top: 0;
}

.\!k-top-0 {
    top: 0 !important;
}

.k-top-1px {
    top: 1px;
}

.\!k-top-1px {
    top: 1px !important;
}

.k-top-0\.5 {
    top: 0.125rem;
}

.\!k-top-0\.5 {
    top: 0.125rem !important;
}

.k-top-1 {
    top: 0.25rem;
}

.\!k-top-1 {
    top: 0.25rem !important;
}

.k-top-1\.5 {
    top: 0.375rem;
}

.\!k-top-1\.5 {
    top: 0.375rem !important;
}

.k-top-2 {
    top: 0.5rem;
}

.\!k-top-2 {
    top: 0.5rem !important;
}

.k-top-2\.5 {
    top: 0.625rem;
}

.\!k-top-2\.5 {
    top: 0.625rem !important;
}

.k-top-3 {
    top: 0.75rem;
}

.\!k-top-3 {
    top: 0.75rem !important;
}

.k-top-3\.5 {
    top: 0.875rem;
}

.\!k-top-3\.5 {
    top: 0.875rem !important;
}

.k-top-4 {
    top: 1rem;
}

.\!k-top-4 {
    top: 1rem !important;
}

.k-top-4\.5 {
    top: 1.125rem;
}

.\!k-top-4\.5 {
    top: 1.125rem !important;
}

.k-top-5 {
    top: 1.25rem;
}

.\!k-top-5 {
    top: 1.25rem !important;
}

.k-top-5\.5 {
    top: 1.375rem;
}

.\!k-top-5\.5 {
    top: 1.375rem !important;
}

.k-top-6 {
    top: 1.5rem;
}

.\!k-top-6 {
    top: 1.5rem !important;
}

.k-top-6\.5 {
    top: 1.625rem;
}

.\!k-top-6\.5 {
    top: 1.625rem !important;
}

.k-top-7 {
    top: 1.75rem;
}

.\!k-top-7 {
    top: 1.75rem !important;
}

.k-top-7\.5 {
    top: 1.875rem;
}

.\!k-top-7\.5 {
    top: 1.875rem !important;
}

.k-top-8 {
    top: 2rem;
}

.\!k-top-8 {
    top: 2rem !important;
}

.k-top-9 {
    top: 2.25rem;
}

.\!k-top-9 {
    top: 2.25rem !important;
}

.k-top-10 {
    top: 2.5rem;
}

.\!k-top-10 {
    top: 2.5rem !important;
}

.k-top-11 {
    top: 2.75rem;
}

.\!k-top-11 {
    top: 2.75rem !important;
}

.k-top-12 {
    top: 3rem;
}

.\!k-top-12 {
    top: 3rem !important;
}

.k-top-13 {
    top: 3.25rem;
}

.\!k-top-13 {
    top: 3.25rem !important;
}

.k-top-14 {
    top: 3.5rem;
}

.\!k-top-14 {
    top: 3.5rem !important;
}

.k-top-15 {
    top: 3.75rem;
}

.\!k-top-15 {
    top: 3.75rem !important;
}

.k-top-16 {
    top: 4rem;
}

.\!k-top-16 {
    top: 4rem !important;
}

.k-top-17 {
    top: 4.25rem;
}

.\!k-top-17 {
    top: 4.25rem !important;
}

.k-top-18 {
    top: 4.5rem;
}

.\!k-top-18 {
    top: 4.5rem !important;
}

.k-top-19 {
    top: 4.75rem;
}

.\!k-top-19 {
    top: 4.75rem !important;
}

.k-top-20 {
    top: 5rem;
}

.\!k-top-20 {
    top: 5rem !important;
}

.k-top-21 {
    top: 5.25rem;
}

.\!k-top-21 {
    top: 5.25rem !important;
}

.k-top-22 {
    top: 5.5rem;
}

.\!k-top-22 {
    top: 5.5rem !important;
}

.k-top-23 {
    top: 5.75rem;
}

.\!k-top-23 {
    top: 5.75rem !important;
}

.k-top-24 {
    top: 6rem;
}

.\!k-top-24 {
    top: 6rem !important;
}

.k-top--1 {
    top: -1px;
}

.\!k-top--1 {
    top: -1px !important;
}

.k-right-0 {
    right: 0;
}

.\!k-right-0 {
    right: 0 !important;
}

.k-right-1px {
    right: 1px;
}

.\!k-right-1px {
    right: 1px !important;
}

.k-right-0\.5 {
    right: 0.125rem;
}

.\!k-right-0\.5 {
    right: 0.125rem !important;
}

.k-right-1 {
    right: 0.25rem;
}

.\!k-right-1 {
    right: 0.25rem !important;
}

.k-right-1\.5 {
    right: 0.375rem;
}

.\!k-right-1\.5 {
    right: 0.375rem !important;
}

.k-right-2 {
    right: 0.5rem;
}

.\!k-right-2 {
    right: 0.5rem !important;
}

.k-right-2\.5 {
    right: 0.625rem;
}

.\!k-right-2\.5 {
    right: 0.625rem !important;
}

.k-right-3 {
    right: 0.75rem;
}

.\!k-right-3 {
    right: 0.75rem !important;
}

.k-right-3\.5 {
    right: 0.875rem;
}

.\!k-right-3\.5 {
    right: 0.875rem !important;
}

.k-right-4 {
    right: 1rem;
}

.\!k-right-4 {
    right: 1rem !important;
}

.k-right-4\.5 {
    right: 1.125rem;
}

.\!k-right-4\.5 {
    right: 1.125rem !important;
}

.k-right-5 {
    right: 1.25rem;
}

.\!k-right-5 {
    right: 1.25rem !important;
}

.k-right-5\.5 {
    right: 1.375rem;
}

.\!k-right-5\.5 {
    right: 1.375rem !important;
}

.k-right-6 {
    right: 1.5rem;
}

.\!k-right-6 {
    right: 1.5rem !important;
}

.k-right-6\.5 {
    right: 1.625rem;
}

.\!k-right-6\.5 {
    right: 1.625rem !important;
}

.k-right-7 {
    right: 1.75rem;
}

.\!k-right-7 {
    right: 1.75rem !important;
}

.k-right-7\.5 {
    right: 1.875rem;
}

.\!k-right-7\.5 {
    right: 1.875rem !important;
}

.k-right-8 {
    right: 2rem;
}

.\!k-right-8 {
    right: 2rem !important;
}

.k-right-9 {
    right: 2.25rem;
}

.\!k-right-9 {
    right: 2.25rem !important;
}

.k-right-10 {
    right: 2.5rem;
}

.\!k-right-10 {
    right: 2.5rem !important;
}

.k-right-11 {
    right: 2.75rem;
}

.\!k-right-11 {
    right: 2.75rem !important;
}

.k-right-12 {
    right: 3rem;
}

.\!k-right-12 {
    right: 3rem !important;
}

.k-right-13 {
    right: 3.25rem;
}

.\!k-right-13 {
    right: 3.25rem !important;
}

.k-right-14 {
    right: 3.5rem;
}

.\!k-right-14 {
    right: 3.5rem !important;
}

.k-right-15 {
    right: 3.75rem;
}

.\!k-right-15 {
    right: 3.75rem !important;
}

.k-right-16 {
    right: 4rem;
}

.\!k-right-16 {
    right: 4rem !important;
}

.k-right-17 {
    right: 4.25rem;
}

.\!k-right-17 {
    right: 4.25rem !important;
}

.k-right-18 {
    right: 4.5rem;
}

.\!k-right-18 {
    right: 4.5rem !important;
}

.k-right-19 {
    right: 4.75rem;
}

.\!k-right-19 {
    right: 4.75rem !important;
}

.k-right-20 {
    right: 5rem;
}

.\!k-right-20 {
    right: 5rem !important;
}

.k-right-21 {
    right: 5.25rem;
}

.\!k-right-21 {
    right: 5.25rem !important;
}

.k-right-22 {
    right: 5.5rem;
}

.\!k-right-22 {
    right: 5.5rem !important;
}

.k-right-23 {
    right: 5.75rem;
}

.\!k-right-23 {
    right: 5.75rem !important;
}

.k-right-24 {
    right: 6rem;
}

.\!k-right-24 {
    right: 6rem !important;
}

.k-right--1 {
    right: -1px;
}

.\!k-right--1 {
    right: -1px !important;
}

.k-bottom-0 {
    bottom: 0;
}

.\!k-bottom-0 {
    bottom: 0 !important;
}

.k-bottom-1px {
    bottom: 1px;
}

.\!k-bottom-1px {
    bottom: 1px !important;
}

.k-bottom-0\.5 {
    bottom: 0.125rem;
}

.\!k-bottom-0\.5 {
    bottom: 0.125rem !important;
}

.k-bottom-1 {
    bottom: 0.25rem;
}

.\!k-bottom-1 {
    bottom: 0.25rem !important;
}

.k-bottom-1\.5 {
    bottom: 0.375rem;
}

.\!k-bottom-1\.5 {
    bottom: 0.375rem !important;
}

.k-bottom-2 {
    bottom: 0.5rem;
}

.\!k-bottom-2 {
    bottom: 0.5rem !important;
}

.k-bottom-2\.5 {
    bottom: 0.625rem;
}

.\!k-bottom-2\.5 {
    bottom: 0.625rem !important;
}

.k-bottom-3 {
    bottom: 0.75rem;
}

.\!k-bottom-3 {
    bottom: 0.75rem !important;
}

.k-bottom-3\.5 {
    bottom: 0.875rem;
}

.\!k-bottom-3\.5 {
    bottom: 0.875rem !important;
}

.k-bottom-4 {
    bottom: 1rem;
}

.\!k-bottom-4 {
    bottom: 1rem !important;
}

.k-bottom-4\.5 {
    bottom: 1.125rem;
}

.\!k-bottom-4\.5 {
    bottom: 1.125rem !important;
}

.k-bottom-5 {
    bottom: 1.25rem;
}

.\!k-bottom-5 {
    bottom: 1.25rem !important;
}

.k-bottom-5\.5 {
    bottom: 1.375rem;
}

.\!k-bottom-5\.5 {
    bottom: 1.375rem !important;
}

.k-bottom-6 {
    bottom: 1.5rem;
}

.\!k-bottom-6 {
    bottom: 1.5rem !important;
}

.k-bottom-6\.5 {
    bottom: 1.625rem;
}

.\!k-bottom-6\.5 {
    bottom: 1.625rem !important;
}

.k-bottom-7 {
    bottom: 1.75rem;
}

.\!k-bottom-7 {
    bottom: 1.75rem !important;
}

.k-bottom-7\.5 {
    bottom: 1.875rem;
}

.\!k-bottom-7\.5 {
    bottom: 1.875rem !important;
}

.k-bottom-8 {
    bottom: 2rem;
}

.\!k-bottom-8 {
    bottom: 2rem !important;
}

.k-bottom-9 {
    bottom: 2.25rem;
}

.\!k-bottom-9 {
    bottom: 2.25rem !important;
}

.k-bottom-10 {
    bottom: 2.5rem;
}

.\!k-bottom-10 {
    bottom: 2.5rem !important;
}

.k-bottom-11 {
    bottom: 2.75rem;
}

.\!k-bottom-11 {
    bottom: 2.75rem !important;
}

.k-bottom-12 {
    bottom: 3rem;
}

.\!k-bottom-12 {
    bottom: 3rem !important;
}

.k-bottom-13 {
    bottom: 3.25rem;
}

.\!k-bottom-13 {
    bottom: 3.25rem !important;
}

.k-bottom-14 {
    bottom: 3.5rem;
}

.\!k-bottom-14 {
    bottom: 3.5rem !important;
}

.k-bottom-15 {
    bottom: 3.75rem;
}

.\!k-bottom-15 {
    bottom: 3.75rem !important;
}

.k-bottom-16 {
    bottom: 4rem;
}

.\!k-bottom-16 {
    bottom: 4rem !important;
}

.k-bottom-17 {
    bottom: 4.25rem;
}

.\!k-bottom-17 {
    bottom: 4.25rem !important;
}

.k-bottom-18 {
    bottom: 4.5rem;
}

.\!k-bottom-18 {
    bottom: 4.5rem !important;
}

.k-bottom-19 {
    bottom: 4.75rem;
}

.\!k-bottom-19 {
    bottom: 4.75rem !important;
}

.k-bottom-20 {
    bottom: 5rem;
}

.\!k-bottom-20 {
    bottom: 5rem !important;
}

.k-bottom-21 {
    bottom: 5.25rem;
}

.\!k-bottom-21 {
    bottom: 5.25rem !important;
}

.k-bottom-22 {
    bottom: 5.5rem;
}

.\!k-bottom-22 {
    bottom: 5.5rem !important;
}

.k-bottom-23 {
    bottom: 5.75rem;
}

.\!k-bottom-23 {
    bottom: 5.75rem !important;
}

.k-bottom-24 {
    bottom: 6rem;
}

.\!k-bottom-24 {
    bottom: 6rem !important;
}

.k-bottom--1 {
    bottom: -1px;
}

.\!k-bottom--1 {
    bottom: -1px !important;
}

.k-left-0 {
    left: 0;
}

.\!k-left-0 {
    left: 0 !important;
}

.k-left-1px {
    left: 1px;
}

.\!k-left-1px {
    left: 1px !important;
}

.k-left-0\.5 {
    left: 0.125rem;
}

.\!k-left-0\.5 {
    left: 0.125rem !important;
}

.k-left-1 {
    left: 0.25rem;
}

.\!k-left-1 {
    left: 0.25rem !important;
}

.k-left-1\.5 {
    left: 0.375rem;
}

.\!k-left-1\.5 {
    left: 0.375rem !important;
}

.k-left-2 {
    left: 0.5rem;
}

.\!k-left-2 {
    left: 0.5rem !important;
}

.k-left-2\.5 {
    left: 0.625rem;
}

.\!k-left-2\.5 {
    left: 0.625rem !important;
}

.k-left-3 {
    left: 0.75rem;
}

.\!k-left-3 {
    left: 0.75rem !important;
}

.k-left-3\.5 {
    left: 0.875rem;
}

.\!k-left-3\.5 {
    left: 0.875rem !important;
}

.k-left-4 {
    left: 1rem;
}

.\!k-left-4 {
    left: 1rem !important;
}

.k-left-4\.5 {
    left: 1.125rem;
}

.\!k-left-4\.5 {
    left: 1.125rem !important;
}

.k-left-5 {
    left: 1.25rem;
}

.\!k-left-5 {
    left: 1.25rem !important;
}

.k-left-5\.5 {
    left: 1.375rem;
}

.\!k-left-5\.5 {
    left: 1.375rem !important;
}

.k-left-6 {
    left: 1.5rem;
}

.\!k-left-6 {
    left: 1.5rem !important;
}

.k-left-6\.5 {
    left: 1.625rem;
}

.\!k-left-6\.5 {
    left: 1.625rem !important;
}

.k-left-7 {
    left: 1.75rem;
}

.\!k-left-7 {
    left: 1.75rem !important;
}

.k-left-7\.5 {
    left: 1.875rem;
}

.\!k-left-7\.5 {
    left: 1.875rem !important;
}

.k-left-8 {
    left: 2rem;
}

.\!k-left-8 {
    left: 2rem !important;
}

.k-left-9 {
    left: 2.25rem;
}

.\!k-left-9 {
    left: 2.25rem !important;
}

.k-left-10 {
    left: 2.5rem;
}

.\!k-left-10 {
    left: 2.5rem !important;
}

.k-left-11 {
    left: 2.75rem;
}

.\!k-left-11 {
    left: 2.75rem !important;
}

.k-left-12 {
    left: 3rem;
}

.\!k-left-12 {
    left: 3rem !important;
}

.k-left-13 {
    left: 3.25rem;
}

.\!k-left-13 {
    left: 3.25rem !important;
}

.k-left-14 {
    left: 3.5rem;
}

.\!k-left-14 {
    left: 3.5rem !important;
}

.k-left-15 {
    left: 3.75rem;
}

.\!k-left-15 {
    left: 3.75rem !important;
}

.k-left-16 {
    left: 4rem;
}

.\!k-left-16 {
    left: 4rem !important;
}

.k-left-17 {
    left: 4.25rem;
}

.\!k-left-17 {
    left: 4.25rem !important;
}

.k-left-18 {
    left: 4.5rem;
}

.\!k-left-18 {
    left: 4.5rem !important;
}

.k-left-19 {
    left: 4.75rem;
}

.\!k-left-19 {
    left: 4.75rem !important;
}

.k-left-20 {
    left: 5rem;
}

.\!k-left-20 {
    left: 5rem !important;
}

.k-left-21 {
    left: 5.25rem;
}

.\!k-left-21 {
    left: 5.25rem !important;
}

.k-left-22 {
    left: 5.5rem;
}

.\!k-left-22 {
    left: 5.5rem !important;
}

.k-left-23 {
    left: 5.75rem;
}

.\!k-left-23 {
    left: 5.75rem !important;
}

.k-left-24 {
    left: 6rem;
}

.\!k-left-24 {
    left: 6rem !important;
}

.k-left--1 {
    left: -1px;
}

.\!k-left--1 {
    left: -1px !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-inset-0 {
    inset: 0;
}

.\!k-inset-0 {
    inset: 0 !important;
}

.k-inset-1 {
    inset: 1px;
}

.\!k-inset-1 {
    inset: 1px !important;
}

.k-inset--1 {
    inset: -1px;
}

.\!k-inset--1 {
    inset: -1px !important;
}

.k-inset-x-0 {
    inset-inline: 0;
}

.\!k-inset-x-0 {
    inset-inline: 0 !important;
}

.k-inset-x-1 {
    inset-inline: 1px;
}

.\!k-inset-x-1 {
    inset-inline: 1px !important;
}

.k-inset-x--1 {
    inset-inline: -1px;
}

.\!k-inset-x--1 {
    inset-inline: -1px !important;
}

.k-inset-y-0 {
    inset-block: 0;
}

.\!k-inset-y-0 {
    inset-block: 0 !important;
}

.k-inset-y-1 {
    inset-block: 1px;
}

.\!k-inset-y-1 {
    inset-block: 1px !important;
}

.k-inset-y--1 {
    inset-block: -1px;
}

.\!k-inset-y--1 {
    inset-block: -1px !important;
}

.k-top-left-0 {
    top: 0;
    left: 0;
}

.\!k-top-left-0 {
    top: 0 !important;
    left: 0 !important;
}

.k-top-left-1 {
    top: 1px;
    left: 1px;
}

.\!k-top-left-1 {
    top: 1px !important;
    left: 1px !important;
}

.k-top-left--1 {
    top: -1px;
    left: -1px;
}

.\!k-top-left--1 {
    top: -1px !important;
    left: -1px !important;
}

.k-top-right-0 {
    top: 0;
    right: 0;
}

.\!k-top-right-0 {
    top: 0 !important;
    right: 0 !important;
}

.k-top-right-1 {
    top: 1px;
    right: 1px;
}

.\!k-top-right-1 {
    top: 1px !important;
    right: 1px !important;
}

.k-top-right--1 {
    top: -1px;
    right: -1px;
}

.\!k-top-right--1 {
    top: -1px !important;
    right: -1px !important;
}

.k-bottom-left-0 {
    bottom: 0;
    left: 0;
}

.\!k-bottom-left-0 {
    bottom: 0 !important;
    left: 0 !important;
}

.k-bottom-left-1 {
    bottom: 1px;
    left: 1px;
}

.\!k-bottom-left-1 {
    bottom: 1px !important;
    left: 1px !important;
}

.k-bottom-left--1 {
    bottom: -1px;
    left: -1px;
}

.\!k-bottom-left--1 {
    bottom: -1px !important;
    left: -1px !important;
}

.k-bottom-right-0 {
    bottom: 0;
    right: 0;
}

.\!k-bottom-right-0 {
    bottom: 0 !important;
    right: 0 !important;
}

.k-bottom-right-1 {
    bottom: 1px;
    right: 1px;
}

.\!k-bottom-right-1 {
    bottom: 1px !important;
    right: 1px !important;
}

.k-bottom-right--1 {
    bottom: -1px;
    right: -1px;
}

.\!k-bottom-right--1 {
    bottom: -1px !important;
    right: -1px !important;
}

.k-top-start,
.k-pos-top-start {
    top: 0;
    inset-inline-start: 0;
}

.k-top-end,
.k-pos-top-end {
    top: 0;
    inset-inline-end: 0;
}

.k-bottom-start,
.k-pos-bottom-start {
    bottom: 0;
    inset-inline-start: 0;
}

.k-bottom-end,
.k-pos-bottom-end {
    bottom: 0;
    inset-inline-end: 0;
}

.k-top-center,
.k-pos-top-center {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.k-middle-left,
.k-middle-start,
.k-pos-middle-start {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.k-middle-center {
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
}

.k-middle-right,
.k-middle-end,
.k-pos-middle-end {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.k-bottom-center,
.k-pos-bottom-center {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.k-pos-static, .k-static {
    position: static;
}

.\!k-pos-static, .\!k-static {
    position: static !important;
}

.k-pos-relative, .k-relative {
    position: relative;
}

.\!k-pos-relative, .\!k-relative {
    position: relative !important;
}

.k-pos-absolute, .k-absolute {
    position: absolute;
}

.\!k-pos-absolute, .\!k-absolute {
    position: absolute !important;
}

.k-pos-fixed, .k-fixed {
    position: fixed;
}

.\!k-pos-fixed, .\!k-fixed {
    position: fixed !important;
}

.k-pos-sticky, .k-sticky {
    position: sticky;
}

.\!k-pos-sticky, .\!k-sticky {
    position: sticky !important;
}

.k-visibility-visible, .k-visible {
    visibility: visible;
}

.\!k-visibility-visible, .\!k-visible {
    visibility: visible !important;
}

.k-visibility-invisible {
    visibility: hidden;
}

.\!k-visibility-invisible {
    visibility: hidden !important;
}

.k-visibility-collapse {
    visibility: collapse;
}

.\!k-visibility-collapse {
    visibility: collapse !important;
}

.k-z-0 {
    z-index: 0;
}

.\!k-z-0 {
    z-index: 0 !important;
}

.k-z-10 {
    z-index: 10;
}

.\!k-z-10 {
    z-index: 10 !important;
}

.k-z-20 {
    z-index: 20;
}

.\!k-z-20 {
    z-index: 20 !important;
}

.k-z-30 {
    z-index: 30;
}

.\!k-z-30 {
    z-index: 30 !important;
}

.k-z-40 {
    z-index: 40;
}

.\!k-z-40 {
    z-index: 40 !important;
}

.k-z-50 {
    z-index: 50;
}

.\!k-z-50 {
    z-index: 50 !important;
}

.k-z-auto {
    z-index: auto;
}

.\!k-z-auto {
    z-index: auto !important;
}

.k-align-content-normal {
    align-content: normal;
}

.\!k-align-content-normal {
    align-content: normal !important;
}

.k-align-content-stretch {
    align-content: stretch;
}

.\!k-align-content-stretch {
    align-content: stretch !important;
}

.k-align-content-center {
    align-content: center;
}

.\!k-align-content-center {
    align-content: center !important;
}

.k-align-content-start {
    align-content: start;
}

.\!k-align-content-start {
    align-content: start !important;
}

.k-align-content-end {
    align-content: end;
}

.\!k-align-content-end {
    align-content: end !important;
}

.k-align-content-flex-start {
    align-content: flex-start;
}

.\!k-align-content-flex-start {
    align-content: flex-start !important;
}

.k-align-content-flex-end {
    align-content: flex-end;
}

.\!k-align-content-flex-end {
    align-content: flex-end !important;
}

.k-align-content-baseline {
    align-content: baseline;
}

.\!k-align-content-baseline {
    align-content: baseline !important;
}

.k-align-content-first-baseline {
    align-content: first baseline;
}

.\!k-align-content-first-baseline {
    align-content: first baseline !important;
}

.k-align-content-last-baseline {
    align-content: last baseline;
}

.\!k-align-content-last-baseline {
    align-content: last baseline !important;
}

.k-align-content-between {
    align-content: space-between;
}

.\!k-align-content-between {
    align-content: space-between !important;
}

.k-align-content-around {
    align-content: space-around;
}

.\!k-align-content-around {
    align-content: space-around !important;
}

.k-align-content-evenly {
    align-content: space-evenly;
}

.\!k-align-content-evenly {
    align-content: space-evenly !important;
}

.k-align-items-normal {
    align-items: normal;
}

.\!k-align-items-normal {
    align-items: normal !important;
}

.k-align-items-stretch {
    align-items: stretch;
}

.\!k-align-items-stretch {
    align-items: stretch !important;
}

.k-align-items-center {
    align-items: center;
}

.\!k-align-items-center {
    align-items: center !important;
}

.k-align-items-start {
    align-items: start;
}

.\!k-align-items-start {
    align-items: start !important;
}

.k-align-items-end {
    align-items: end;
}

.\!k-align-items-end {
    align-items: end !important;
}

.k-align-items-flex-start {
    align-items: flex-start;
}

.\!k-align-items-flex-start {
    align-items: flex-start !important;
}

.k-align-items-flex-end {
    align-items: flex-end;
}

.\!k-align-items-flex-end {
    align-items: flex-end !important;
}

.k-align-items-baseline {
    align-items: baseline;
}

.\!k-align-items-baseline {
    align-items: baseline !important;
}

.k-align-items-first-baseline {
    align-items: first baseline;
}

.\!k-align-items-first-baseline {
    align-items: first baseline !important;
}

.k-align-items-last-baseline {
    align-items: last baseline;
}

.\!k-align-items-last-baseline {
    align-items: last baseline !important;
}

.k-align-items-self-start {
    align-items: self-start;
}

.\!k-align-items-self-start {
    align-items: self-start !important;
}

.k-align-items-self-end {
    align-items: self-end;
}

.\!k-align-items-self-end {
    align-items: self-end !important;
}

.k-align-self-auto {
    align-self: auto;
}

.\!k-align-self-auto {
    align-self: auto !important;
}

.k-align-self-normal {
    align-self: normal;
}

.\!k-align-self-normal {
    align-self: normal !important;
}

.k-align-self-stretch {
    align-self: stretch;
}

.\!k-align-self-stretch {
    align-self: stretch !important;
}

.k-align-self-center {
    align-self: center;
}

.\!k-align-self-center {
    align-self: center !important;
}

.k-align-self-start {
    align-self: start;
}

.\!k-align-self-start {
    align-self: start !important;
}

.k-align-self-end {
    align-self: end;
}

.\!k-align-self-end {
    align-self: end !important;
}

.k-align-self-flex-start {
    align-self: flex-start;
}

.\!k-align-self-flex-start {
    align-self: flex-start !important;
}

.k-align-self-flex-end {
    align-self: flex-end;
}

.\!k-align-self-flex-end {
    align-self: flex-end !important;
}

.k-align-self-baseline {
    align-self: baseline;
}

.\!k-align-self-baseline {
    align-self: baseline !important;
}

.k-align-self-first-baseline {
    align-self: first baseline;
}

.\!k-align-self-first-baseline {
    align-self: first baseline !important;
}

.k-align-self-last-baseline {
    align-self: last baseline;
}

.\!k-align-self-last-baseline {
    align-self: last baseline !important;
}

.k-align-self-self-start {
    align-self: self-start;
}

.\!k-align-self-self-start {
    align-self: self-start !important;
}

.k-align-self-self-end {
    align-self: self-end;
}

.\!k-align-self-self-end {
    align-self: self-end !important;
}

.k-basis-0 {
    flex-basis: 0;
}

.\!k-basis-0 {
    flex-basis: 0 !important;
}

.k-basis-1px {
    flex-basis: 1px;
}

.\!k-basis-1px {
    flex-basis: 1px !important;
}

.k-basis-0\.5 {
    flex-basis: 0.125rem;
}

.\!k-basis-0\.5 {
    flex-basis: 0.125rem !important;
}

.k-basis-1 {
    flex-basis: 0.25rem;
}

.\!k-basis-1 {
    flex-basis: 0.25rem !important;
}

.k-basis-1\.5 {
    flex-basis: 0.375rem;
}

.\!k-basis-1\.5 {
    flex-basis: 0.375rem !important;
}

.k-basis-2 {
    flex-basis: 0.5rem;
}

.\!k-basis-2 {
    flex-basis: 0.5rem !important;
}

.k-basis-2\.5 {
    flex-basis: 0.625rem;
}

.\!k-basis-2\.5 {
    flex-basis: 0.625rem !important;
}

.k-basis-3 {
    flex-basis: 0.75rem;
}

.\!k-basis-3 {
    flex-basis: 0.75rem !important;
}

.k-basis-3\.5 {
    flex-basis: 0.875rem;
}

.\!k-basis-3\.5 {
    flex-basis: 0.875rem !important;
}

.k-basis-4 {
    flex-basis: 1rem;
}

.\!k-basis-4 {
    flex-basis: 1rem !important;
}

.k-basis-4\.5 {
    flex-basis: 1.125rem;
}

.\!k-basis-4\.5 {
    flex-basis: 1.125rem !important;
}

.k-basis-5 {
    flex-basis: 1.25rem;
}

.\!k-basis-5 {
    flex-basis: 1.25rem !important;
}

.k-basis-5\.5 {
    flex-basis: 1.375rem;
}

.\!k-basis-5\.5 {
    flex-basis: 1.375rem !important;
}

.k-basis-6 {
    flex-basis: 1.5rem;
}

.\!k-basis-6 {
    flex-basis: 1.5rem !important;
}

.k-basis-6\.5 {
    flex-basis: 1.625rem;
}

.\!k-basis-6\.5 {
    flex-basis: 1.625rem !important;
}

.k-basis-7 {
    flex-basis: 1.75rem;
}

.\!k-basis-7 {
    flex-basis: 1.75rem !important;
}

.k-basis-7\.5 {
    flex-basis: 1.875rem;
}

.\!k-basis-7\.5 {
    flex-basis: 1.875rem !important;
}

.k-basis-8 {
    flex-basis: 2rem;
}

.\!k-basis-8 {
    flex-basis: 2rem !important;
}

.k-basis-9 {
    flex-basis: 2.25rem;
}

.\!k-basis-9 {
    flex-basis: 2.25rem !important;
}

.k-basis-10 {
    flex-basis: 2.5rem;
}

.\!k-basis-10 {
    flex-basis: 2.5rem !important;
}

.k-basis-11 {
    flex-basis: 2.75rem;
}

.\!k-basis-11 {
    flex-basis: 2.75rem !important;
}

.k-basis-12 {
    flex-basis: 3rem;
}

.\!k-basis-12 {
    flex-basis: 3rem !important;
}

.k-basis-13 {
    flex-basis: 3.25rem;
}

.\!k-basis-13 {
    flex-basis: 3.25rem !important;
}

.k-basis-14 {
    flex-basis: 3.5rem;
}

.\!k-basis-14 {
    flex-basis: 3.5rem !important;
}

.k-basis-15 {
    flex-basis: 3.75rem;
}

.\!k-basis-15 {
    flex-basis: 3.75rem !important;
}

.k-basis-16 {
    flex-basis: 4rem;
}

.\!k-basis-16 {
    flex-basis: 4rem !important;
}

.k-basis-17 {
    flex-basis: 4.25rem;
}

.\!k-basis-17 {
    flex-basis: 4.25rem !important;
}

.k-basis-18 {
    flex-basis: 4.5rem;
}

.\!k-basis-18 {
    flex-basis: 4.5rem !important;
}

.k-basis-19 {
    flex-basis: 4.75rem;
}

.\!k-basis-19 {
    flex-basis: 4.75rem !important;
}

.k-basis-20 {
    flex-basis: 5rem;
}

.\!k-basis-20 {
    flex-basis: 5rem !important;
}

.k-basis-21 {
    flex-basis: 5.25rem;
}

.\!k-basis-21 {
    flex-basis: 5.25rem !important;
}

.k-basis-22 {
    flex-basis: 5.5rem;
}

.\!k-basis-22 {
    flex-basis: 5.5rem !important;
}

.k-basis-23 {
    flex-basis: 5.75rem;
}

.\!k-basis-23 {
    flex-basis: 5.75rem !important;
}

.k-basis-24 {
    flex-basis: 6rem;
}

.\!k-basis-24 {
    flex-basis: 6rem !important;
}

.k-basis-auto {
    flex-basis: auto;
}

.\!k-basis-auto {
    flex-basis: auto !important;
}

.k-basis-1\/2 {
    flex-basis: 50%;
}

.\!k-basis-1\/2 {
    flex-basis: 50% !important;
}

.k-basis-1\/3 {
    flex-basis: 33.333333%;
}

.\!k-basis-1\/3 {
    flex-basis: 33.333333% !important;
}

.k-basis-2\/3 {
    flex-basis: 66.666667%;
}

.\!k-basis-2\/3 {
    flex-basis: 66.666667% !important;
}

.k-basis-1\/4 {
    flex-basis: 25%;
}

.\!k-basis-1\/4 {
    flex-basis: 25% !important;
}

.k-basis-2\/4 {
    flex-basis: 50%;
}

.\!k-basis-2\/4 {
    flex-basis: 50% !important;
}

.k-basis-3\/4 {
    flex-basis: 75%;
}

.\!k-basis-3\/4 {
    flex-basis: 75% !important;
}

.k-basis-1\/5 {
    flex-basis: 20%;
}

.\!k-basis-1\/5 {
    flex-basis: 20% !important;
}

.k-basis-2\/5 {
    flex-basis: 40%;
}

.\!k-basis-2\/5 {
    flex-basis: 40% !important;
}

.k-basis-3\/5 {
    flex-basis: 60%;
}

.\!k-basis-3\/5 {
    flex-basis: 60% !important;
}

.k-basis-4\/5 {
    flex-basis: 80%;
}

.\!k-basis-4\/5 {
    flex-basis: 80% !important;
}

.k-basis-1\/6 {
    flex-basis: 16.666667%;
}

.\!k-basis-1\/6 {
    flex-basis: 16.666667% !important;
}

.k-basis-2\/6 {
    flex-basis: 33.333333%;
}

.\!k-basis-2\/6 {
    flex-basis: 33.333333% !important;
}

.k-basis-3\/6 {
    flex-basis: 50%;
}

.\!k-basis-3\/6 {
    flex-basis: 50% !important;
}

.k-basis-4\/6 {
    flex-basis: 66.666667%;
}

.\!k-basis-4\/6 {
    flex-basis: 66.666667% !important;
}

.k-basis-5\/6 {
    flex-basis: 83.333333%;
}

.\!k-basis-5\/6 {
    flex-basis: 83.333333% !important;
}

.k-basis-1\/12 {
    flex-basis: 8.333333%;
}

.\!k-basis-1\/12 {
    flex-basis: 8.333333% !important;
}

.k-basis-2\/12 {
    flex-basis: 16.666667%;
}

.\!k-basis-2\/12 {
    flex-basis: 16.666667% !important;
}

.k-basis-3\/12 {
    flex-basis: 25%;
}

.\!k-basis-3\/12 {
    flex-basis: 25% !important;
}

.k-basis-4\/12 {
    flex-basis: 33.333333%;
}

.\!k-basis-4\/12 {
    flex-basis: 33.333333% !important;
}

.k-basis-5\/12 {
    flex-basis: 41.666667%;
}

.\!k-basis-5\/12 {
    flex-basis: 41.666667% !important;
}

.k-basis-6\/12 {
    flex-basis: 50%;
}

.\!k-basis-6\/12 {
    flex-basis: 50% !important;
}

.k-basis-7\/12 {
    flex-basis: 58.333333%;
}

.\!k-basis-7\/12 {
    flex-basis: 58.333333% !important;
}

.k-basis-8\/12 {
    flex-basis: 66.666667%;
}

.\!k-basis-8\/12 {
    flex-basis: 66.666667% !important;
}

.k-basis-9\/12 {
    flex-basis: 75%;
}

.\!k-basis-9\/12 {
    flex-basis: 75% !important;
}

.k-basis-10\/12 {
    flex-basis: 83.333333%;
}

.\!k-basis-10\/12 {
    flex-basis: 83.333333% !important;
}

.k-basis-11\/12 {
    flex-basis: 91.666667%;
}

.\!k-basis-11\/12 {
    flex-basis: 91.666667% !important;
}

.k-basis-full {
    flex-basis: 100%;
}

.\!k-basis-full {
    flex-basis: 100% !important;
}

.k-basis-min {
    flex-basis: min-content;
}

.\!k-basis-min {
    flex-basis: min-content !important;
}

.k-basis-max {
    flex-basis: max-content;
}

.\!k-basis-max {
    flex-basis: max-content !important;
}

.k-basis-fit {
    flex-basis: fit-content;
}

.\!k-basis-fit {
    flex-basis: fit-content !important;
}

.k-flex-basis-0 {
    flex-basis: 0;
}

.\!k-flex-basis-0 {
    flex-basis: 0 !important;
}

.k-flex-basis-1px {
    flex-basis: 1px;
}

.\!k-flex-basis-1px {
    flex-basis: 1px !important;
}

.k-flex-basis-0\.5 {
    flex-basis: 0.125rem;
}

.\!k-flex-basis-0\.5 {
    flex-basis: 0.125rem !important;
}

.k-flex-basis-1 {
    flex-basis: 0.25rem;
}

.\!k-flex-basis-1 {
    flex-basis: 0.25rem !important;
}

.k-flex-basis-1\.5 {
    flex-basis: 0.375rem;
}

.\!k-flex-basis-1\.5 {
    flex-basis: 0.375rem !important;
}

.k-flex-basis-2 {
    flex-basis: 0.5rem;
}

.\!k-flex-basis-2 {
    flex-basis: 0.5rem !important;
}

.k-flex-basis-2\.5 {
    flex-basis: 0.625rem;
}

.\!k-flex-basis-2\.5 {
    flex-basis: 0.625rem !important;
}

.k-flex-basis-3 {
    flex-basis: 0.75rem;
}

.\!k-flex-basis-3 {
    flex-basis: 0.75rem !important;
}

.k-flex-basis-3\.5 {
    flex-basis: 0.875rem;
}

.\!k-flex-basis-3\.5 {
    flex-basis: 0.875rem !important;
}

.k-flex-basis-4 {
    flex-basis: 1rem;
}

.\!k-flex-basis-4 {
    flex-basis: 1rem !important;
}

.k-flex-basis-4\.5 {
    flex-basis: 1.125rem;
}

.\!k-flex-basis-4\.5 {
    flex-basis: 1.125rem !important;
}

.k-flex-basis-5 {
    flex-basis: 1.25rem;
}

.\!k-flex-basis-5 {
    flex-basis: 1.25rem !important;
}

.k-flex-basis-5\.5 {
    flex-basis: 1.375rem;
}

.\!k-flex-basis-5\.5 {
    flex-basis: 1.375rem !important;
}

.k-flex-basis-6 {
    flex-basis: 1.5rem;
}

.\!k-flex-basis-6 {
    flex-basis: 1.5rem !important;
}

.k-flex-basis-6\.5 {
    flex-basis: 1.625rem;
}

.\!k-flex-basis-6\.5 {
    flex-basis: 1.625rem !important;
}

.k-flex-basis-7 {
    flex-basis: 1.75rem;
}

.\!k-flex-basis-7 {
    flex-basis: 1.75rem !important;
}

.k-flex-basis-7\.5 {
    flex-basis: 1.875rem;
}

.\!k-flex-basis-7\.5 {
    flex-basis: 1.875rem !important;
}

.k-flex-basis-8 {
    flex-basis: 2rem;
}

.\!k-flex-basis-8 {
    flex-basis: 2rem !important;
}

.k-flex-basis-9 {
    flex-basis: 2.25rem;
}

.\!k-flex-basis-9 {
    flex-basis: 2.25rem !important;
}

.k-flex-basis-10 {
    flex-basis: 2.5rem;
}

.\!k-flex-basis-10 {
    flex-basis: 2.5rem !important;
}

.k-flex-basis-11 {
    flex-basis: 2.75rem;
}

.\!k-flex-basis-11 {
    flex-basis: 2.75rem !important;
}

.k-flex-basis-12 {
    flex-basis: 3rem;
}

.\!k-flex-basis-12 {
    flex-basis: 3rem !important;
}

.k-flex-basis-13 {
    flex-basis: 3.25rem;
}

.\!k-flex-basis-13 {
    flex-basis: 3.25rem !important;
}

.k-flex-basis-14 {
    flex-basis: 3.5rem;
}

.\!k-flex-basis-14 {
    flex-basis: 3.5rem !important;
}

.k-flex-basis-15 {
    flex-basis: 3.75rem;
}

.\!k-flex-basis-15 {
    flex-basis: 3.75rem !important;
}

.k-flex-basis-16 {
    flex-basis: 4rem;
}

.\!k-flex-basis-16 {
    flex-basis: 4rem !important;
}

.k-flex-basis-17 {
    flex-basis: 4.25rem;
}

.\!k-flex-basis-17 {
    flex-basis: 4.25rem !important;
}

.k-flex-basis-18 {
    flex-basis: 4.5rem;
}

.\!k-flex-basis-18 {
    flex-basis: 4.5rem !important;
}

.k-flex-basis-19 {
    flex-basis: 4.75rem;
}

.\!k-flex-basis-19 {
    flex-basis: 4.75rem !important;
}

.k-flex-basis-20 {
    flex-basis: 5rem;
}

.\!k-flex-basis-20 {
    flex-basis: 5rem !important;
}

.k-flex-basis-21 {
    flex-basis: 5.25rem;
}

.\!k-flex-basis-21 {
    flex-basis: 5.25rem !important;
}

.k-flex-basis-22 {
    flex-basis: 5.5rem;
}

.\!k-flex-basis-22 {
    flex-basis: 5.5rem !important;
}

.k-flex-basis-23 {
    flex-basis: 5.75rem;
}

.\!k-flex-basis-23 {
    flex-basis: 5.75rem !important;
}

.k-flex-basis-24 {
    flex-basis: 6rem;
}

.\!k-flex-basis-24 {
    flex-basis: 6rem !important;
}

.k-flex-basis-auto {
    flex-basis: auto;
}

.\!k-flex-basis-auto {
    flex-basis: auto !important;
}

.k-flex-basis-1\/2 {
    flex-basis: 50%;
}

.\!k-flex-basis-1\/2 {
    flex-basis: 50% !important;
}

.k-flex-basis-1\/3 {
    flex-basis: 33.333333%;
}

.\!k-flex-basis-1\/3 {
    flex-basis: 33.333333% !important;
}

.k-flex-basis-2\/3 {
    flex-basis: 66.666667%;
}

.\!k-flex-basis-2\/3 {
    flex-basis: 66.666667% !important;
}

.k-flex-basis-1\/4 {
    flex-basis: 25%;
}

.\!k-flex-basis-1\/4 {
    flex-basis: 25% !important;
}

.k-flex-basis-2\/4 {
    flex-basis: 50%;
}

.\!k-flex-basis-2\/4 {
    flex-basis: 50% !important;
}

.k-flex-basis-3\/4 {
    flex-basis: 75%;
}

.\!k-flex-basis-3\/4 {
    flex-basis: 75% !important;
}

.k-flex-basis-1\/5 {
    flex-basis: 20%;
}

.\!k-flex-basis-1\/5 {
    flex-basis: 20% !important;
}

.k-flex-basis-2\/5 {
    flex-basis: 40%;
}

.\!k-flex-basis-2\/5 {
    flex-basis: 40% !important;
}

.k-flex-basis-3\/5 {
    flex-basis: 60%;
}

.\!k-flex-basis-3\/5 {
    flex-basis: 60% !important;
}

.k-flex-basis-4\/5 {
    flex-basis: 80%;
}

.\!k-flex-basis-4\/5 {
    flex-basis: 80% !important;
}

.k-flex-basis-1\/6 {
    flex-basis: 16.666667%;
}

.\!k-flex-basis-1\/6 {
    flex-basis: 16.666667% !important;
}

.k-flex-basis-2\/6 {
    flex-basis: 33.333333%;
}

.\!k-flex-basis-2\/6 {
    flex-basis: 33.333333% !important;
}

.k-flex-basis-3\/6 {
    flex-basis: 50%;
}

.\!k-flex-basis-3\/6 {
    flex-basis: 50% !important;
}

.k-flex-basis-4\/6 {
    flex-basis: 66.666667%;
}

.\!k-flex-basis-4\/6 {
    flex-basis: 66.666667% !important;
}

.k-flex-basis-5\/6 {
    flex-basis: 83.333333%;
}

.\!k-flex-basis-5\/6 {
    flex-basis: 83.333333% !important;
}

.k-flex-basis-1\/12 {
    flex-basis: 8.333333%;
}

.\!k-flex-basis-1\/12 {
    flex-basis: 8.333333% !important;
}

.k-flex-basis-2\/12 {
    flex-basis: 16.666667%;
}

.\!k-flex-basis-2\/12 {
    flex-basis: 16.666667% !important;
}

.k-flex-basis-3\/12 {
    flex-basis: 25%;
}

.\!k-flex-basis-3\/12 {
    flex-basis: 25% !important;
}

.k-flex-basis-4\/12 {
    flex-basis: 33.333333%;
}

.\!k-flex-basis-4\/12 {
    flex-basis: 33.333333% !important;
}

.k-flex-basis-5\/12 {
    flex-basis: 41.666667%;
}

.\!k-flex-basis-5\/12 {
    flex-basis: 41.666667% !important;
}

.k-flex-basis-6\/12 {
    flex-basis: 50%;
}

.\!k-flex-basis-6\/12 {
    flex-basis: 50% !important;
}

.k-flex-basis-7\/12 {
    flex-basis: 58.333333%;
}

.\!k-flex-basis-7\/12 {
    flex-basis: 58.333333% !important;
}

.k-flex-basis-8\/12 {
    flex-basis: 66.666667%;
}

.\!k-flex-basis-8\/12 {
    flex-basis: 66.666667% !important;
}

.k-flex-basis-9\/12 {
    flex-basis: 75%;
}

.\!k-flex-basis-9\/12 {
    flex-basis: 75% !important;
}

.k-flex-basis-10\/12 {
    flex-basis: 83.333333%;
}

.\!k-flex-basis-10\/12 {
    flex-basis: 83.333333% !important;
}

.k-flex-basis-11\/12 {
    flex-basis: 91.666667%;
}

.\!k-flex-basis-11\/12 {
    flex-basis: 91.666667% !important;
}

.k-flex-basis-full {
    flex-basis: 100%;
}

.\!k-flex-basis-full {
    flex-basis: 100% !important;
}

.k-flex-basis-min {
    flex-basis: min-content;
}

.\!k-flex-basis-min {
    flex-basis: min-content !important;
}

.k-flex-basis-max {
    flex-basis: max-content;
}

.\!k-flex-basis-max {
    flex-basis: max-content !important;
}

.k-flex-basis-fit {
    flex-basis: fit-content;
}

.\!k-flex-basis-fit {
    flex-basis: fit-content !important;
}

.k-flex-row, .k-d-flex-row {
    flex-direction: row;
}

.\!k-flex-row, .\!k-d-flex-row, .\!k-d-flex-col {
    flex-direction: row !important;
}

.k-flex-row-reverse {
    flex-direction: row-reverse;
}

.\!k-flex-row-reverse {
    flex-direction: row-reverse !important;
}

.k-flex-col, .k-d-flex-col, .k-flex-column {
    flex-direction: column;
}

.\!k-flex-col {
    flex-direction: column !important;
}

.k-flex-col-reverse, .k-flex-column-reverse {
    flex-direction: column-reverse;
}

.\!k-flex-col-reverse {
    flex-direction: column-reverse !important;
}

.k-grow {
    flex-grow: 1;
}

.\!k-grow {
    flex-grow: 1 !important;
}

.k-grow-0 {
    flex-grow: 0;
}

.\!k-grow-0 {
    flex-grow: 0 !important;
}

.k-flex-grow {
    flex-grow: 1;
}

.\!k-flex-grow {
    flex-grow: 1 !important;
}

.k-flex-grow-0 {
    flex-grow: 0;
}

.\!k-flex-grow-0 {
    flex-grow: 0 !important;
}

.k-shrink {
    flex-shrink: 1;
}

.\!k-shrink {
    flex-shrink: 1 !important;
}

.k-shrink-0 {
    flex-shrink: 0;
}

.\!k-shrink-0 {
    flex-shrink: 0 !important;
}

.k-flex-shrink {
    flex-shrink: 1;
}

.\!k-flex-shrink {
    flex-shrink: 1 !important;
}

.k-flex-shrink-0 {
    flex-shrink: 0;
}

.\!k-flex-shrink-0 {
    flex-shrink: 0 !important;
}

.k-flex-wrap {
    flex-wrap: wrap;
}

.\!k-flex-wrap {
    flex-wrap: wrap !important;
}

.k-flex-wrap-reverse {
    flex-wrap: wrap-reverse;
}

.\!k-flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
}

.k-flex-nowrap {
    flex-wrap: nowrap;
}

.\!k-flex-nowrap {
    flex-wrap: nowrap !important;
}

.k-flex-1 {
    flex: 1 1 0%;
}

.\!k-flex-1 {
    flex: 1 1 0% !important;
}

.k-flex-auto {
    flex: 1 1 auto;
}

.\!k-flex-auto {
    flex: 1 1 auto !important;
}

.k-flex-initial {
    flex: 0 1 auto;
}

.\!k-flex-initial {
    flex: 0 1 auto !important;
}

.k-flex-none {
    flex: none;
}

.\!k-flex-none {
    flex: none !important;
}

.k-gap-0 {
    gap: 0;
}

.\!k-gap-0 {
    gap: 0 !important;
}

.k-gap-1px {
    gap: 1px;
}

.\!k-gap-1px {
    gap: 1px !important;
}

.k-gap-0\.5 {
    gap: 0.125rem;
}

.\!k-gap-0\.5 {
    gap: 0.125rem !important;
}

.k-gap-1 {
    gap: 0.25rem;
}

.\!k-gap-1 {
    gap: 0.25rem !important;
}

.k-gap-1\.5 {
    gap: 0.375rem;
}

.\!k-gap-1\.5 {
    gap: 0.375rem !important;
}

.k-gap-2 {
    gap: 0.5rem;
}

.\!k-gap-2 {
    gap: 0.5rem !important;
}

.k-gap-2\.5 {
    gap: 0.625rem;
}

.\!k-gap-2\.5 {
    gap: 0.625rem !important;
}

.k-gap-3 {
    gap: 0.75rem;
}

.\!k-gap-3 {
    gap: 0.75rem !important;
}

.k-gap-3\.5 {
    gap: 0.875rem;
}

.\!k-gap-3\.5 {
    gap: 0.875rem !important;
}

.k-gap-4 {
    gap: 1rem;
}

.\!k-gap-4 {
    gap: 1rem !important;
}

.k-gap-4\.5 {
    gap: 1.125rem;
}

.\!k-gap-4\.5 {
    gap: 1.125rem !important;
}

.k-gap-5 {
    gap: 1.25rem;
}

.\!k-gap-5 {
    gap: 1.25rem !important;
}

.k-gap-5\.5 {
    gap: 1.375rem;
}

.\!k-gap-5\.5 {
    gap: 1.375rem !important;
}

.k-gap-6 {
    gap: 1.5rem;
}

.\!k-gap-6 {
    gap: 1.5rem !important;
}

.k-gap-6\.5 {
    gap: 1.625rem;
}

.\!k-gap-6\.5 {
    gap: 1.625rem !important;
}

.k-gap-7 {
    gap: 1.75rem;
}

.\!k-gap-7 {
    gap: 1.75rem !important;
}

.k-gap-7\.5 {
    gap: 1.875rem;
}

.\!k-gap-7\.5 {
    gap: 1.875rem !important;
}

.k-gap-8 {
    gap: 2rem;
}

.\!k-gap-8 {
    gap: 2rem !important;
}

.k-gap-9 {
    gap: 2.25rem;
}

.\!k-gap-9 {
    gap: 2.25rem !important;
}

.k-gap-10 {
    gap: 2.5rem;
}

.\!k-gap-10 {
    gap: 2.5rem !important;
}

.k-gap-11 {
    gap: 2.75rem;
}

.\!k-gap-11 {
    gap: 2.75rem !important;
}

.k-gap-12 {
    gap: 3rem;
}

.\!k-gap-12 {
    gap: 3rem !important;
}

.k-gap-13 {
    gap: 3.25rem;
}

.\!k-gap-13 {
    gap: 3.25rem !important;
}

.k-gap-14 {
    gap: 3.5rem;
}

.\!k-gap-14 {
    gap: 3.5rem !important;
}

.k-gap-15 {
    gap: 3.75rem;
}

.\!k-gap-15 {
    gap: 3.75rem !important;
}

.k-gap-16 {
    gap: 4rem;
}

.\!k-gap-16 {
    gap: 4rem !important;
}

.k-gap-17 {
    gap: 4.25rem;
}

.\!k-gap-17 {
    gap: 4.25rem !important;
}

.k-gap-18 {
    gap: 4.5rem;
}

.\!k-gap-18 {
    gap: 4.5rem !important;
}

.k-gap-19 {
    gap: 4.75rem;
}

.\!k-gap-19 {
    gap: 4.75rem !important;
}

.k-gap-20 {
    gap: 5rem;
}

.\!k-gap-20 {
    gap: 5rem !important;
}

.k-gap-21 {
    gap: 5.25rem;
}

.\!k-gap-21 {
    gap: 5.25rem !important;
}

.k-gap-22 {
    gap: 5.5rem;
}

.\!k-gap-22 {
    gap: 5.5rem !important;
}

.k-gap-23 {
    gap: 5.75rem;
}

.\!k-gap-23 {
    gap: 5.75rem !important;
}

.k-gap-24 {
    gap: 6rem;
}

.\!k-gap-24 {
    gap: 6rem !important;
}

.k-gap-xs {
    gap: 0.25rem;
}

.\!k-gap-xs {
    gap: 0.25rem !important;
}

.k-gap-sm {
    gap: 0.5rem;
}

.\!k-gap-sm {
    gap: 0.5rem !important;
}

.k-gap-md {
    gap: 0.75rem;
}

.\!k-gap-md {
    gap: 0.75rem !important;
}

.k-gap-lg {
    gap: 1rem;
}

.\!k-gap-lg {
    gap: 1rem !important;
}

.k-gap-xl {
    gap: 1.5rem;
}

.\!k-gap-xl {
    gap: 1.5rem !important;
}

.k-gap-thin {
    gap: 0.125rem;
}

.\!k-gap-thin {
    gap: 0.125rem !important;
}

.k-gap-hair {
    gap: 1px;
}

.\!k-gap-hair {
    gap: 1px !important;
}

.k-gap-x-0 {
    column-gap: 0;
}

.\!k-gap-x-0 {
    column-gap: 0 !important;
}

.k-gap-x-1px {
    column-gap: 1px;
}

.\!k-gap-x-1px {
    column-gap: 1px !important;
}

.k-gap-x-0\.5 {
    column-gap: 0.125rem;
}

.\!k-gap-x-0\.5 {
    column-gap: 0.125rem !important;
}

.k-gap-x-1 {
    column-gap: 0.25rem;
}

.\!k-gap-x-1 {
    column-gap: 0.25rem !important;
}

.k-gap-x-1\.5 {
    column-gap: 0.375rem;
}

.\!k-gap-x-1\.5 {
    column-gap: 0.375rem !important;
}

.k-gap-x-2 {
    column-gap: 0.5rem;
}

.\!k-gap-x-2 {
    column-gap: 0.5rem !important;
}

.k-gap-x-2\.5 {
    column-gap: 0.625rem;
}

.\!k-gap-x-2\.5 {
    column-gap: 0.625rem !important;
}

.k-gap-x-3 {
    column-gap: 0.75rem;
}

.\!k-gap-x-3 {
    column-gap: 0.75rem !important;
}

.k-gap-x-3\.5 {
    column-gap: 0.875rem;
}

.\!k-gap-x-3\.5 {
    column-gap: 0.875rem !important;
}

.k-gap-x-4 {
    column-gap: 1rem;
}

.\!k-gap-x-4 {
    column-gap: 1rem !important;
}

.k-gap-x-4\.5 {
    column-gap: 1.125rem;
}

.\!k-gap-x-4\.5 {
    column-gap: 1.125rem !important;
}

.k-gap-x-5 {
    column-gap: 1.25rem;
}

.\!k-gap-x-5 {
    column-gap: 1.25rem !important;
}

.k-gap-x-5\.5 {
    column-gap: 1.375rem;
}

.\!k-gap-x-5\.5 {
    column-gap: 1.375rem !important;
}

.k-gap-x-6 {
    column-gap: 1.5rem;
}

.\!k-gap-x-6 {
    column-gap: 1.5rem !important;
}

.k-gap-x-6\.5 {
    column-gap: 1.625rem;
}

.\!k-gap-x-6\.5 {
    column-gap: 1.625rem !important;
}

.k-gap-x-7 {
    column-gap: 1.75rem;
}

.\!k-gap-x-7 {
    column-gap: 1.75rem !important;
}

.k-gap-x-7\.5 {
    column-gap: 1.875rem;
}

.\!k-gap-x-7\.5 {
    column-gap: 1.875rem !important;
}

.k-gap-x-8 {
    column-gap: 2rem;
}

.\!k-gap-x-8 {
    column-gap: 2rem !important;
}

.k-gap-x-9 {
    column-gap: 2.25rem;
}

.\!k-gap-x-9 {
    column-gap: 2.25rem !important;
}

.k-gap-x-10 {
    column-gap: 2.5rem;
}

.\!k-gap-x-10 {
    column-gap: 2.5rem !important;
}

.k-gap-x-11 {
    column-gap: 2.75rem;
}

.\!k-gap-x-11 {
    column-gap: 2.75rem !important;
}

.k-gap-x-12 {
    column-gap: 3rem;
}

.\!k-gap-x-12 {
    column-gap: 3rem !important;
}

.k-gap-x-13 {
    column-gap: 3.25rem;
}

.\!k-gap-x-13 {
    column-gap: 3.25rem !important;
}

.k-gap-x-14 {
    column-gap: 3.5rem;
}

.\!k-gap-x-14 {
    column-gap: 3.5rem !important;
}

.k-gap-x-15 {
    column-gap: 3.75rem;
}

.\!k-gap-x-15 {
    column-gap: 3.75rem !important;
}

.k-gap-x-16 {
    column-gap: 4rem;
}

.\!k-gap-x-16 {
    column-gap: 4rem !important;
}

.k-gap-x-17 {
    column-gap: 4.25rem;
}

.\!k-gap-x-17 {
    column-gap: 4.25rem !important;
}

.k-gap-x-18 {
    column-gap: 4.5rem;
}

.\!k-gap-x-18 {
    column-gap: 4.5rem !important;
}

.k-gap-x-19 {
    column-gap: 4.75rem;
}

.\!k-gap-x-19 {
    column-gap: 4.75rem !important;
}

.k-gap-x-20 {
    column-gap: 5rem;
}

.\!k-gap-x-20 {
    column-gap: 5rem !important;
}

.k-gap-x-21 {
    column-gap: 5.25rem;
}

.\!k-gap-x-21 {
    column-gap: 5.25rem !important;
}

.k-gap-x-22 {
    column-gap: 5.5rem;
}

.\!k-gap-x-22 {
    column-gap: 5.5rem !important;
}

.k-gap-x-23 {
    column-gap: 5.75rem;
}

.\!k-gap-x-23 {
    column-gap: 5.75rem !important;
}

.k-gap-x-24 {
    column-gap: 6rem;
}

.\!k-gap-x-24 {
    column-gap: 6rem !important;
}

.k-gap-x-xs {
    column-gap: 0.25rem;
}

.\!k-gap-x-xs {
    column-gap: 0.25rem !important;
}

.k-gap-x-sm {
    column-gap: 0.5rem;
}

.\!k-gap-x-sm {
    column-gap: 0.5rem !important;
}

.k-gap-x-md {
    column-gap: 0.75rem;
}

.\!k-gap-x-md {
    column-gap: 0.75rem !important;
}

.k-gap-x-lg {
    column-gap: 1rem;
}

.\!k-gap-x-lg {
    column-gap: 1rem !important;
}

.k-gap-x-xl {
    column-gap: 1.5rem;
}

.\!k-gap-x-xl {
    column-gap: 1.5rem !important;
}

.k-gap-x-thin {
    column-gap: 0.125rem;
}

.\!k-gap-x-thin {
    column-gap: 0.125rem !important;
}

.k-gap-x-hair {
    column-gap: 1px;
}

.\!k-gap-x-hair {
    column-gap: 1px !important;
}

.k-gap-y-0 {
    row-gap: 0;
}

.\!k-gap-y-0 {
    row-gap: 0 !important;
}

.k-gap-y-1px {
    row-gap: 1px;
}

.\!k-gap-y-1px {
    row-gap: 1px !important;
}

.k-gap-y-0\.5 {
    row-gap: 0.125rem;
}

.\!k-gap-y-0\.5 {
    row-gap: 0.125rem !important;
}

.k-gap-y-1 {
    row-gap: 0.25rem;
}

.\!k-gap-y-1 {
    row-gap: 0.25rem !important;
}

.k-gap-y-1\.5 {
    row-gap: 0.375rem;
}

.\!k-gap-y-1\.5 {
    row-gap: 0.375rem !important;
}

.k-gap-y-2 {
    row-gap: 0.5rem;
}

.\!k-gap-y-2 {
    row-gap: 0.5rem !important;
}

.k-gap-y-2\.5 {
    row-gap: 0.625rem;
}

.\!k-gap-y-2\.5 {
    row-gap: 0.625rem !important;
}

.k-gap-y-3 {
    row-gap: 0.75rem;
}

.\!k-gap-y-3 {
    row-gap: 0.75rem !important;
}

.k-gap-y-3\.5 {
    row-gap: 0.875rem;
}

.\!k-gap-y-3\.5 {
    row-gap: 0.875rem !important;
}

.k-gap-y-4 {
    row-gap: 1rem;
}

.\!k-gap-y-4 {
    row-gap: 1rem !important;
}

.k-gap-y-4\.5 {
    row-gap: 1.125rem;
}

.\!k-gap-y-4\.5 {
    row-gap: 1.125rem !important;
}

.k-gap-y-5 {
    row-gap: 1.25rem;
}

.\!k-gap-y-5 {
    row-gap: 1.25rem !important;
}

.k-gap-y-5\.5 {
    row-gap: 1.375rem;
}

.\!k-gap-y-5\.5 {
    row-gap: 1.375rem !important;
}

.k-gap-y-6 {
    row-gap: 1.5rem;
}

.\!k-gap-y-6 {
    row-gap: 1.5rem !important;
}

.k-gap-y-6\.5 {
    row-gap: 1.625rem;
}

.\!k-gap-y-6\.5 {
    row-gap: 1.625rem !important;
}

.k-gap-y-7 {
    row-gap: 1.75rem;
}

.\!k-gap-y-7 {
    row-gap: 1.75rem !important;
}

.k-gap-y-7\.5 {
    row-gap: 1.875rem;
}

.\!k-gap-y-7\.5 {
    row-gap: 1.875rem !important;
}

.k-gap-y-8 {
    row-gap: 2rem;
}

.\!k-gap-y-8 {
    row-gap: 2rem !important;
}

.k-gap-y-9 {
    row-gap: 2.25rem;
}

.\!k-gap-y-9 {
    row-gap: 2.25rem !important;
}

.k-gap-y-10 {
    row-gap: 2.5rem;
}

.\!k-gap-y-10 {
    row-gap: 2.5rem !important;
}

.k-gap-y-11 {
    row-gap: 2.75rem;
}

.\!k-gap-y-11 {
    row-gap: 2.75rem !important;
}

.k-gap-y-12 {
    row-gap: 3rem;
}

.\!k-gap-y-12 {
    row-gap: 3rem !important;
}

.k-gap-y-13 {
    row-gap: 3.25rem;
}

.\!k-gap-y-13 {
    row-gap: 3.25rem !important;
}

.k-gap-y-14 {
    row-gap: 3.5rem;
}

.\!k-gap-y-14 {
    row-gap: 3.5rem !important;
}

.k-gap-y-15 {
    row-gap: 3.75rem;
}

.\!k-gap-y-15 {
    row-gap: 3.75rem !important;
}

.k-gap-y-16 {
    row-gap: 4rem;
}

.\!k-gap-y-16 {
    row-gap: 4rem !important;
}

.k-gap-y-17 {
    row-gap: 4.25rem;
}

.\!k-gap-y-17 {
    row-gap: 4.25rem !important;
}

.k-gap-y-18 {
    row-gap: 4.5rem;
}

.\!k-gap-y-18 {
    row-gap: 4.5rem !important;
}

.k-gap-y-19 {
    row-gap: 4.75rem;
}

.\!k-gap-y-19 {
    row-gap: 4.75rem !important;
}

.k-gap-y-20 {
    row-gap: 5rem;
}

.\!k-gap-y-20 {
    row-gap: 5rem !important;
}

.k-gap-y-21 {
    row-gap: 5.25rem;
}

.\!k-gap-y-21 {
    row-gap: 5.25rem !important;
}

.k-gap-y-22 {
    row-gap: 5.5rem;
}

.\!k-gap-y-22 {
    row-gap: 5.5rem !important;
}

.k-gap-y-23 {
    row-gap: 5.75rem;
}

.\!k-gap-y-23 {
    row-gap: 5.75rem !important;
}

.k-gap-y-24 {
    row-gap: 6rem;
}

.\!k-gap-y-24 {
    row-gap: 6rem !important;
}

.k-gap-y-xs {
    row-gap: 0.25rem;
}

.\!k-gap-y-xs {
    row-gap: 0.25rem !important;
}

.k-gap-y-sm {
    row-gap: 0.5rem;
}

.\!k-gap-y-sm {
    row-gap: 0.5rem !important;
}

.k-gap-y-md {
    row-gap: 0.75rem;
}

.\!k-gap-y-md {
    row-gap: 0.75rem !important;
}

.k-gap-y-lg {
    row-gap: 1rem;
}

.\!k-gap-y-lg {
    row-gap: 1rem !important;
}

.k-gap-y-xl {
    row-gap: 1.5rem;
}

.\!k-gap-y-xl {
    row-gap: 1.5rem !important;
}

.k-gap-y-thin {
    row-gap: 0.125rem;
}

.\!k-gap-y-thin {
    row-gap: 0.125rem !important;
}

.k-gap-y-hair {
    row-gap: 1px;
}

.\!k-gap-y-hair {
    row-gap: 1px !important;
}

.k-grid-auto-cols-auto {
    grid-auto-columns: auto;
}

.\!k-grid-auto-cols-auto {
    grid-auto-columns: auto !important;
}

.k-grid-auto-cols-min {
    grid-auto-columns: min-content;
}

.\!k-grid-auto-cols-min {
    grid-auto-columns: min-content !important;
}

.k-grid-auto-cols-max {
    grid-auto-columns: max-content;
}

.\!k-grid-auto-cols-max {
    grid-auto-columns: max-content !important;
}

.k-grid-auto-cols-fr {
    grid-auto-columns: minmax(0, 1fr);
}

.\!k-grid-auto-cols-fr {
    grid-auto-columns: minmax(0, 1fr) !important;
}

.k-grid-flow-row {
    grid-auto-flow: row;
}

.\!k-grid-flow-row {
    grid-auto-flow: row !important;
}

.k-grid-flow-col {
    grid-auto-flow: column;
}

.\!k-grid-flow-col {
    grid-auto-flow: column !important;
}

.k-grid-flow-dense {
    grid-auto-flow: dense;
}

.\!k-grid-flow-dense {
    grid-auto-flow: dense !important;
}

.k-grid-flow-row-dense {
    grid-auto-flow: row dense;
}

.\!k-grid-flow-row-dense {
    grid-auto-flow: row dense !important;
}

.k-grid-flow-col-dense {
    grid-auto-flow: column dense;
}

.\!k-grid-flow-col-dense {
    grid-auto-flow: column dense !important;
}

.k-grid-flow-unset {
    grid-auto-flow: unset;
}

.\!k-grid-flow-unset {
    grid-auto-flow: unset !important;
}

.k-grid-auto-rows-auto {
    grid-auto-rows: auto;
}

.\!k-grid-auto-rows-auto {
    grid-auto-rows: auto !important;
}

.k-grid-auto-rows-min {
    grid-auto-rows: min-content;
}

.\!k-grid-auto-rows-min {
    grid-auto-rows: min-content !important;
}

.k-grid-auto-rows-max {
    grid-auto-rows: max-content;
}

.\!k-grid-auto-rows-max {
    grid-auto-rows: max-content !important;
}

.k-grid-auto-rows-fr {
    grid-auto-rows: minmax(0, 1fr);
}

.\!k-grid-auto-rows-fr {
    grid-auto-rows: minmax(0, 1fr) !important;
}

.k-col-start-1 {
    grid-column-start: 1;
}

.\!k-col-start-1 {
    grid-column-start: 1 !important;
}

.k-col-start-2 {
    grid-column-start: 2;
}

.\!k-col-start-2 {
    grid-column-start: 2 !important;
}

.k-col-start-3 {
    grid-column-start: 3;
}

.\!k-col-start-3 {
    grid-column-start: 3 !important;
}

.k-col-start-4 {
    grid-column-start: 4;
}

.\!k-col-start-4 {
    grid-column-start: 4 !important;
}

.k-col-start-5 {
    grid-column-start: 5;
}

.\!k-col-start-5 {
    grid-column-start: 5 !important;
}

.k-col-start-6 {
    grid-column-start: 6;
}

.\!k-col-start-6 {
    grid-column-start: 6 !important;
}

.k-col-start-7 {
    grid-column-start: 7;
}

.\!k-col-start-7 {
    grid-column-start: 7 !important;
}

.k-col-start-8 {
    grid-column-start: 8;
}

.\!k-col-start-8 {
    grid-column-start: 8 !important;
}

.k-col-start-9 {
    grid-column-start: 9;
}

.\!k-col-start-9 {
    grid-column-start: 9 !important;
}

.k-col-start-10 {
    grid-column-start: 10;
}

.\!k-col-start-10 {
    grid-column-start: 10 !important;
}

.k-col-start-11 {
    grid-column-start: 11;
}

.\!k-col-start-11 {
    grid-column-start: 11 !important;
}

.k-col-start-12 {
    grid-column-start: 12;
}

.\!k-col-start-12 {
    grid-column-start: 12 !important;
}

.k-col-start-13 {
    grid-column-start: 13;
}

.\!k-col-start-13 {
    grid-column-start: 13 !important;
}

.k-col-start--1 {
    grid-column-start: -1;
}

.\!k-col-start--1 {
    grid-column-start: -1 !important;
}

.k-col-start--2 {
    grid-column-start: -2;
}

.\!k-col-start--2 {
    grid-column-start: -2 !important;
}

.k-col-start--3 {
    grid-column-start: -3;
}

.\!k-col-start--3 {
    grid-column-start: -3 !important;
}

.k-col-start--4 {
    grid-column-start: -4;
}

.\!k-col-start--4 {
    grid-column-start: -4 !important;
}

.k-col-start--5 {
    grid-column-start: -5;
}

.\!k-col-start--5 {
    grid-column-start: -5 !important;
}

.k-col-start--6 {
    grid-column-start: -6;
}

.\!k-col-start--6 {
    grid-column-start: -6 !important;
}

.k-col-start--7 {
    grid-column-start: -7;
}

.\!k-col-start--7 {
    grid-column-start: -7 !important;
}

.k-col-start--8 {
    grid-column-start: -8;
}

.\!k-col-start--8 {
    grid-column-start: -8 !important;
}

.k-col-start--9 {
    grid-column-start: -9;
}

.\!k-col-start--9 {
    grid-column-start: -9 !important;
}

.k-col-start--10 {
    grid-column-start: -10;
}

.\!k-col-start--10 {
    grid-column-start: -10 !important;
}

.k-col-start--11 {
    grid-column-start: -11;
}

.\!k-col-start--11 {
    grid-column-start: -11 !important;
}

.k-col-start--12 {
    grid-column-start: -12;
}

.\!k-col-start--12 {
    grid-column-start: -12 !important;
}

.k-col-start--13 {
    grid-column-start: -13;
}

.\!k-col-start--13 {
    grid-column-start: -13 !important;
}

.k-col-start-auto {
    grid-column-start: auto;
}

.\!k-col-start-auto {
    grid-column-start: auto !important;
}

.k-col-end-1 {
    grid-column-end: 1;
}

.\!k-col-end-1 {
    grid-column-end: 1 !important;
}

.k-col-end-2 {
    grid-column-end: 2;
}

.\!k-col-end-2 {
    grid-column-end: 2 !important;
}

.k-col-end-3 {
    grid-column-end: 3;
}

.\!k-col-end-3 {
    grid-column-end: 3 !important;
}

.k-col-end-4 {
    grid-column-end: 4;
}

.\!k-col-end-4 {
    grid-column-end: 4 !important;
}

.k-col-end-5 {
    grid-column-end: 5;
}

.\!k-col-end-5 {
    grid-column-end: 5 !important;
}

.k-col-end-6 {
    grid-column-end: 6;
}

.\!k-col-end-6 {
    grid-column-end: 6 !important;
}

.k-col-end-7 {
    grid-column-end: 7;
}

.\!k-col-end-7 {
    grid-column-end: 7 !important;
}

.k-col-end-8 {
    grid-column-end: 8;
}

.\!k-col-end-8 {
    grid-column-end: 8 !important;
}

.k-col-end-9 {
    grid-column-end: 9;
}

.\!k-col-end-9 {
    grid-column-end: 9 !important;
}

.k-col-end-10 {
    grid-column-end: 10;
}

.\!k-col-end-10 {
    grid-column-end: 10 !important;
}

.k-col-end-11 {
    grid-column-end: 11;
}

.\!k-col-end-11 {
    grid-column-end: 11 !important;
}

.k-col-end-12 {
    grid-column-end: 12;
}

.\!k-col-end-12 {
    grid-column-end: 12 !important;
}

.k-col-end-13 {
    grid-column-end: 13;
}

.\!k-col-end-13 {
    grid-column-end: 13 !important;
}

.k-col-end--1 {
    grid-column-end: -1;
}

.\!k-col-end--1 {
    grid-column-end: -1 !important;
}

.k-col-end--2 {
    grid-column-end: -2;
}

.\!k-col-end--2 {
    grid-column-end: -2 !important;
}

.k-col-end--3 {
    grid-column-end: -3;
}

.\!k-col-end--3 {
    grid-column-end: -3 !important;
}

.k-col-end--4 {
    grid-column-end: -4;
}

.\!k-col-end--4 {
    grid-column-end: -4 !important;
}

.k-col-end--5 {
    grid-column-end: -5;
}

.\!k-col-end--5 {
    grid-column-end: -5 !important;
}

.k-col-end--6 {
    grid-column-end: -6;
}

.\!k-col-end--6 {
    grid-column-end: -6 !important;
}

.k-col-end--7 {
    grid-column-end: -7;
}

.\!k-col-end--7 {
    grid-column-end: -7 !important;
}

.k-col-end--8 {
    grid-column-end: -8;
}

.\!k-col-end--8 {
    grid-column-end: -8 !important;
}

.k-col-end--9 {
    grid-column-end: -9;
}

.\!k-col-end--9 {
    grid-column-end: -9 !important;
}

.k-col-end--10 {
    grid-column-end: -10;
}

.\!k-col-end--10 {
    grid-column-end: -10 !important;
}

.k-col-end--11 {
    grid-column-end: -11;
}

.\!k-col-end--11 {
    grid-column-end: -11 !important;
}

.k-col-end--12 {
    grid-column-end: -12;
}

.\!k-col-end--12 {
    grid-column-end: -12 !important;
}

.k-col-end--13 {
    grid-column-end: -13;
}

.\!k-col-end--13 {
    grid-column-end: -13 !important;
}

.k-col-end-auto {
    grid-column-end: auto;
}

.\!k-col-end-auto {
    grid-column-end: auto !important;
}

.k-col-span-1 {
    grid-column: span 1/span 1;
}

.\!k-col-span-1 {
    grid-column: span 1/span 1 !important;
}

.k-col-span-2 {
    grid-column: span 2/span 2;
}

.\!k-col-span-2 {
    grid-column: span 2/span 2 !important;
}

.k-col-span-3 {
    grid-column: span 3/span 3;
}

.\!k-col-span-3 {
    grid-column: span 3/span 3 !important;
}

.k-col-span-4 {
    grid-column: span 4/span 4;
}

.\!k-col-span-4 {
    grid-column: span 4/span 4 !important;
}

.k-col-span-5 {
    grid-column: span 5/span 5;
}

.\!k-col-span-5 {
    grid-column: span 5/span 5 !important;
}

.k-col-span-6 {
    grid-column: span 6/span 6;
}

.\!k-col-span-6 {
    grid-column: span 6/span 6 !important;
}

.k-col-span-7 {
    grid-column: span 7/span 7;
}

.\!k-col-span-7 {
    grid-column: span 7/span 7 !important;
}

.k-col-span-8 {
    grid-column: span 8/span 8;
}

.\!k-col-span-8 {
    grid-column: span 8/span 8 !important;
}

.k-col-span-9 {
    grid-column: span 9/span 9;
}

.\!k-col-span-9 {
    grid-column: span 9/span 9 !important;
}

.k-col-span-10 {
    grid-column: span 10/span 10;
}

.\!k-col-span-10 {
    grid-column: span 10/span 10 !important;
}

.k-col-span-11 {
    grid-column: span 11/span 11;
}

.\!k-col-span-11 {
    grid-column: span 11/span 11 !important;
}

.k-col-span-12 {
    grid-column: span 12/span 12;
}

.\!k-col-span-12 {
    grid-column: span 12/span 12 !important;
}

.k-col-span-full {
    grid-column: 1 / -1;
}

.\!k-col-span-full {
    grid-column: 1 / -1 !important;
}

.k-col-span-auto {
    grid-column: auto;
}

.\!k-col-span-auto {
    grid-column: auto !important;
}

.k-colspan-1 {
    grid-column: span 1/span 1;
}

.\!k-colspan-1 {
    grid-column: span 1/span 1 !important;
}

.k-colspan-2 {
    grid-column: span 2/span 2;
}

.\!k-colspan-2 {
    grid-column: span 2/span 2 !important;
}

.k-colspan-3 {
    grid-column: span 3/span 3;
}

.\!k-colspan-3 {
    grid-column: span 3/span 3 !important;
}

.k-colspan-4 {
    grid-column: span 4/span 4;
}

.\!k-colspan-4 {
    grid-column: span 4/span 4 !important;
}

.k-colspan-5 {
    grid-column: span 5/span 5;
}

.\!k-colspan-5 {
    grid-column: span 5/span 5 !important;
}

.k-colspan-6 {
    grid-column: span 6/span 6;
}

.\!k-colspan-6 {
    grid-column: span 6/span 6 !important;
}

.k-colspan-7 {
    grid-column: span 7/span 7;
}

.\!k-colspan-7 {
    grid-column: span 7/span 7 !important;
}

.k-colspan-8 {
    grid-column: span 8/span 8;
}

.\!k-colspan-8 {
    grid-column: span 8/span 8 !important;
}

.k-colspan-9 {
    grid-column: span 9/span 9;
}

.\!k-colspan-9 {
    grid-column: span 9/span 9 !important;
}

.k-colspan-10 {
    grid-column: span 10/span 10;
}

.\!k-colspan-10 {
    grid-column: span 10/span 10 !important;
}

.k-colspan-11 {
    grid-column: span 11/span 11;
}

.\!k-colspan-11 {
    grid-column: span 11/span 11 !important;
}

.k-colspan-12 {
    grid-column: span 12/span 12;
}

.\!k-colspan-12 {
    grid-column: span 12/span 12 !important;
}

.k-colspan-full, .k-colspan-all {
    grid-column: 1 / -1;
}

.\!k-colspan-full, .\!k-colspan-all {
    grid-column: 1 / -1 !important;
}

.k-colspan-auto {
    grid-column: auto;
}

.\!k-colspan-auto {
    grid-column: auto !important;
}

.k-row-start-1 {
    grid-row-start: 1;
}

.\!k-row-start-1 {
    grid-row-start: 1 !important;
}

.k-row-start-2 {
    grid-row-start: 2;
}

.\!k-row-start-2 {
    grid-row-start: 2 !important;
}

.k-row-start-3 {
    grid-row-start: 3;
}

.\!k-row-start-3 {
    grid-row-start: 3 !important;
}

.k-row-start-4 {
    grid-row-start: 4;
}

.\!k-row-start-4 {
    grid-row-start: 4 !important;
}

.k-row-start-5 {
    grid-row-start: 5;
}

.\!k-row-start-5 {
    grid-row-start: 5 !important;
}

.k-row-start-6 {
    grid-row-start: 6;
}

.\!k-row-start-6 {
    grid-row-start: 6 !important;
}

.k-row-start-7 {
    grid-row-start: 7;
}

.\!k-row-start-7 {
    grid-row-start: 7 !important;
}

.k-row-start-8 {
    grid-row-start: 8;
}

.\!k-row-start-8 {
    grid-row-start: 8 !important;
}

.k-row-start-9 {
    grid-row-start: 9;
}

.\!k-row-start-9 {
    grid-row-start: 9 !important;
}

.k-row-start-10 {
    grid-row-start: 10;
}

.\!k-row-start-10 {
    grid-row-start: 10 !important;
}

.k-row-start-11 {
    grid-row-start: 11;
}

.\!k-row-start-11 {
    grid-row-start: 11 !important;
}

.k-row-start-12 {
    grid-row-start: 12;
}

.\!k-row-start-12 {
    grid-row-start: 12 !important;
}

.k-row-start-13 {
    grid-row-start: 13;
}

.\!k-row-start-13 {
    grid-row-start: 13 !important;
}

.k-row-start--1 {
    grid-row-start: -1;
}

.\!k-row-start--1 {
    grid-row-start: -1 !important;
}

.k-row-start--2 {
    grid-row-start: -2;
}

.\!k-row-start--2 {
    grid-row-start: -2 !important;
}

.k-row-start--3 {
    grid-row-start: -3;
}

.\!k-row-start--3 {
    grid-row-start: -3 !important;
}

.k-row-start--4 {
    grid-row-start: -4;
}

.\!k-row-start--4 {
    grid-row-start: -4 !important;
}

.k-row-start--5 {
    grid-row-start: -5;
}

.\!k-row-start--5 {
    grid-row-start: -5 !important;
}

.k-row-start--6 {
    grid-row-start: -6;
}

.\!k-row-start--6 {
    grid-row-start: -6 !important;
}

.k-row-start--7 {
    grid-row-start: -7;
}

.\!k-row-start--7 {
    grid-row-start: -7 !important;
}

.k-row-start--8 {
    grid-row-start: -8;
}

.\!k-row-start--8 {
    grid-row-start: -8 !important;
}

.k-row-start--9 {
    grid-row-start: -9;
}

.\!k-row-start--9 {
    grid-row-start: -9 !important;
}

.k-row-start--10 {
    grid-row-start: -10;
}

.\!k-row-start--10 {
    grid-row-start: -10 !important;
}

.k-row-start--11 {
    grid-row-start: -11;
}

.\!k-row-start--11 {
    grid-row-start: -11 !important;
}

.k-row-start--12 {
    grid-row-start: -12;
}

.\!k-row-start--12 {
    grid-row-start: -12 !important;
}

.k-row-start--13 {
    grid-row-start: -13;
}

.\!k-row-start--13 {
    grid-row-start: -13 !important;
}

.k-row-start-auto {
    grid-row-start: auto;
}

.\!k-row-start-auto {
    grid-row-start: auto !important;
}

.k-row-end-1 {
    grid-row-end: 1;
}

.\!k-row-end-1 {
    grid-row-end: 1 !important;
}

.k-row-end-2 {
    grid-row-end: 2;
}

.\!k-row-end-2 {
    grid-row-end: 2 !important;
}

.k-row-end-3 {
    grid-row-end: 3;
}

.\!k-row-end-3 {
    grid-row-end: 3 !important;
}

.k-row-end-4 {
    grid-row-end: 4;
}

.\!k-row-end-4 {
    grid-row-end: 4 !important;
}

.k-row-end-5 {
    grid-row-end: 5;
}

.\!k-row-end-5 {
    grid-row-end: 5 !important;
}

.k-row-end-6 {
    grid-row-end: 6;
}

.\!k-row-end-6 {
    grid-row-end: 6 !important;
}

.k-row-end-7 {
    grid-row-end: 7;
}

.\!k-row-end-7 {
    grid-row-end: 7 !important;
}

.k-row-end-8 {
    grid-row-end: 8;
}

.\!k-row-end-8 {
    grid-row-end: 8 !important;
}

.k-row-end-9 {
    grid-row-end: 9;
}

.\!k-row-end-9 {
    grid-row-end: 9 !important;
}

.k-row-end-10 {
    grid-row-end: 10;
}

.\!k-row-end-10 {
    grid-row-end: 10 !important;
}

.k-row-end-11 {
    grid-row-end: 11;
}

.\!k-row-end-11 {
    grid-row-end: 11 !important;
}

.k-row-end-12 {
    grid-row-end: 12;
}

.\!k-row-end-12 {
    grid-row-end: 12 !important;
}

.k-row-end-13 {
    grid-row-end: 13;
}

.\!k-row-end-13 {
    grid-row-end: 13 !important;
}

.k-row-end--1 {
    grid-row-end: -1;
}

.\!k-row-end--1 {
    grid-row-end: -1 !important;
}

.k-row-end--2 {
    grid-row-end: -2;
}

.\!k-row-end--2 {
    grid-row-end: -2 !important;
}

.k-row-end--3 {
    grid-row-end: -3;
}

.\!k-row-end--3 {
    grid-row-end: -3 !important;
}

.k-row-end--4 {
    grid-row-end: -4;
}

.\!k-row-end--4 {
    grid-row-end: -4 !important;
}

.k-row-end--5 {
    grid-row-end: -5;
}

.\!k-row-end--5 {
    grid-row-end: -5 !important;
}

.k-row-end--6 {
    grid-row-end: -6;
}

.\!k-row-end--6 {
    grid-row-end: -6 !important;
}

.k-row-end--7 {
    grid-row-end: -7;
}

.\!k-row-end--7 {
    grid-row-end: -7 !important;
}

.k-row-end--8 {
    grid-row-end: -8;
}

.\!k-row-end--8 {
    grid-row-end: -8 !important;
}

.k-row-end--9 {
    grid-row-end: -9;
}

.\!k-row-end--9 {
    grid-row-end: -9 !important;
}

.k-row-end--10 {
    grid-row-end: -10;
}

.\!k-row-end--10 {
    grid-row-end: -10 !important;
}

.k-row-end--11 {
    grid-row-end: -11;
}

.\!k-row-end--11 {
    grid-row-end: -11 !important;
}

.k-row-end--12 {
    grid-row-end: -12;
}

.\!k-row-end--12 {
    grid-row-end: -12 !important;
}

.k-row-end--13 {
    grid-row-end: -13;
}

.\!k-row-end--13 {
    grid-row-end: -13 !important;
}

.k-row-end-auto {
    grid-row-end: auto;
}

.\!k-row-end-auto {
    grid-row-end: auto !important;
}

.k-row-span-1 {
    grid-row: span 1/span 1;
}

.\!k-row-span-1 {
    grid-row: span 1/span 1 !important;
}

.k-row-span-2 {
    grid-row: span 2/span 2;
}

.\!k-row-span-2 {
    grid-row: span 2/span 2 !important;
}

.k-row-span-3 {
    grid-row: span 3/span 3;
}

.\!k-row-span-3 {
    grid-row: span 3/span 3 !important;
}

.k-row-span-4 {
    grid-row: span 4/span 4;
}

.\!k-row-span-4 {
    grid-row: span 4/span 4 !important;
}

.k-row-span-5 {
    grid-row: span 5/span 5;
}

.\!k-row-span-5 {
    grid-row: span 5/span 5 !important;
}

.k-row-span-6 {
    grid-row: span 6/span 6;
}

.\!k-row-span-6 {
    grid-row: span 6/span 6 !important;
}

.k-row-span-7 {
    grid-row: span 7/span 7;
}

.\!k-row-span-7 {
    grid-row: span 7/span 7 !important;
}

.k-row-span-8 {
    grid-row: span 8/span 8;
}

.\!k-row-span-8 {
    grid-row: span 8/span 8 !important;
}

.k-row-span-9 {
    grid-row: span 9/span 9;
}

.\!k-row-span-9 {
    grid-row: span 9/span 9 !important;
}

.k-row-span-10 {
    grid-row: span 10/span 10;
}

.\!k-row-span-10 {
    grid-row: span 10/span 10 !important;
}

.k-row-span-11 {
    grid-row: span 11/span 11;
}

.\!k-row-span-11 {
    grid-row: span 11/span 11 !important;
}

.k-row-span-12 {
    grid-row: span 12/span 12;
}

.\!k-row-span-12 {
    grid-row: span 12/span 12 !important;
}

.k-row-span-full {
    grid-row: span 1/span -1;
}

.\!k-row-span-full {
    grid-row: span 1/span -1 !important;
}

.k-row-span-auto {
    grid-row: auto;
}

.\!k-row-span-auto {
    grid-row: auto !important;
}

.k-rowspan-1 {
    grid-row: span 1/span 1;
}

.\!k-rowspan-1 {
    grid-row: span 1/span 1 !important;
}

.k-rowspan-2 {
    grid-row: span 2/span 2;
}

.\!k-rowspan-2 {
    grid-row: span 2/span 2 !important;
}

.k-rowspan-3 {
    grid-row: span 3/span 3;
}

.\!k-rowspan-3 {
    grid-row: span 3/span 3 !important;
}

.k-rowspan-4 {
    grid-row: span 4/span 4;
}

.\!k-rowspan-4 {
    grid-row: span 4/span 4 !important;
}

.k-rowspan-5 {
    grid-row: span 5/span 5;
}

.\!k-rowspan-5 {
    grid-row: span 5/span 5 !important;
}

.k-rowspan-6 {
    grid-row: span 6/span 6;
}

.\!k-rowspan-6 {
    grid-row: span 6/span 6 !important;
}

.k-rowspan-7 {
    grid-row: span 7/span 7;
}

.\!k-rowspan-7 {
    grid-row: span 7/span 7 !important;
}

.k-rowspan-8 {
    grid-row: span 8/span 8;
}

.\!k-rowspan-8 {
    grid-row: span 8/span 8 !important;
}

.k-rowspan-9 {
    grid-row: span 9/span 9;
}

.\!k-rowspan-9 {
    grid-row: span 9/span 9 !important;
}

.k-rowspan-10 {
    grid-row: span 10/span 10;
}

.\!k-rowspan-10 {
    grid-row: span 10/span 10 !important;
}

.k-rowspan-11 {
    grid-row: span 11/span 11;
}

.\!k-rowspan-11 {
    grid-row: span 11/span 11 !important;
}

.k-rowspan-12 {
    grid-row: span 12/span 12;
}

.\!k-rowspan-12 {
    grid-row: span 12/span 12 !important;
}

.k-rowspan-full, .k-rowspan-all {
    grid-row: span 1/span -1;
}

.\!k-rowspan-full, .\!k-rowspan-all {
    grid-row: span 1/span -1 !important;
}

.k-rowspan-auto {
    grid-row: auto;
}

.\!k-rowspan-auto {
    grid-row: auto !important;
}

.k-grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.\!k-grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
}

.k-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.\!k-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.k-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.\!k-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.k-grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.\!k-grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.k-grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.\!k-grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}

.k-grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.\!k-grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
}

.k-grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.\!k-grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
}

.k-grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
}

.\!k-grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
}

.k-grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
}

.\!k-grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
}

.k-grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
}

.\!k-grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
}

.k-grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
}

.\!k-grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
}

.k-grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
}

.\!k-grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
}

.k-grid-cols-none {
    grid-template-columns: none;
}

.\!k-grid-cols-none {
    grid-template-columns: none !important;
}

.k-grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr));
}

.\!k-grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
}

.k-grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr));
}

.\!k-grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
}

.k-grid-rows-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr));
}

.\!k-grid-rows-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
}

.k-grid-rows-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr));
}

.\!k-grid-rows-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
}

.k-grid-rows-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr));
}

.\!k-grid-rows-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
}

.k-grid-rows-6 {
    grid-template-rows: repeat(6, minmax(0, 1fr));
}

.\!k-grid-rows-6 {
    grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
}

.k-grid-rows-7 {
    grid-template-rows: repeat(7, minmax(0, 1fr));
}

.\!k-grid-rows-7 {
    grid-template-rows: repeat(7, minmax(0, 1fr)) !important;
}

.k-grid-rows-8 {
    grid-template-rows: repeat(8, minmax(0, 1fr));
}

.\!k-grid-rows-8 {
    grid-template-rows: repeat(8, minmax(0, 1fr)) !important;
}

.k-grid-rows-9 {
    grid-template-rows: repeat(9, minmax(0, 1fr));
}

.\!k-grid-rows-9 {
    grid-template-rows: repeat(9, minmax(0, 1fr)) !important;
}

.k-grid-rows-10 {
    grid-template-rows: repeat(10, minmax(0, 1fr));
}

.\!k-grid-rows-10 {
    grid-template-rows: repeat(10, minmax(0, 1fr)) !important;
}

.k-grid-rows-11 {
    grid-template-rows: repeat(11, minmax(0, 1fr));
}

.\!k-grid-rows-11 {
    grid-template-rows: repeat(11, minmax(0, 1fr)) !important;
}

.k-grid-rows-12 {
    grid-template-rows: repeat(12, minmax(0, 1fr));
}

.\!k-grid-rows-12 {
    grid-template-rows: repeat(12, minmax(0, 1fr)) !important;
}

.k-grid-rows-none {
    grid-template-rows: none;
}

.\!k-grid-rows-none {
    grid-template-rows: none !important;
}

.k-justify-content-normal {
    justify-content: normal;
}

.\!k-justify-content-normal {
    justify-content: normal !important;
}

.k-justify-content-stretch {
    justify-content: stretch;
}

.\!k-justify-content-stretch {
    justify-content: stretch !important;
}

.k-justify-content-center {
    justify-content: center;
}

.\!k-justify-content-center {
    justify-content: center !important;
}

.k-justify-content-start {
    justify-content: start;
}

.\!k-justify-content-start {
    justify-content: start !important;
}

.k-justify-content-end {
    justify-content: end;
}

.\!k-justify-content-end {
    justify-content: end !important;
}

.k-justify-content-flex-start {
    justify-content: flex-start;
}

.\!k-justify-content-flex-start {
    justify-content: flex-start !important;
}

.k-justify-content-flex-end {
    justify-content: flex-end;
}

.\!k-justify-content-flex-end {
    justify-content: flex-end !important;
}

.k-justify-content-left {
    justify-content: left;
}

.\!k-justify-content-left {
    justify-content: left !important;
}

.k-justify-content-right {
    justify-content: right;
}

.\!k-justify-content-right {
    justify-content: right !important;
}

.k-justify-content-baseline {
    justify-content: baseline;
}

.\!k-justify-content-baseline {
    justify-content: baseline !important;
}

.k-justify-content-first-baseline {
    justify-content: first baseline;
}

.\!k-justify-content-first-baseline {
    justify-content: first baseline !important;
}

.k-justify-content-last-baseline {
    justify-content: last baseline;
}

.\!k-justify-content-last-baseline {
    justify-content: last baseline !important;
}

.k-justify-content-between {
    justify-content: space-between;
}

.\!k-justify-content-between {
    justify-content: space-between !important;
}

.k-justify-content-around {
    justify-content: space-around;
}

.\!k-justify-content-around {
    justify-content: space-around !important;
}

.k-justify-content-evenly {
    justify-content: space-evenly;
}

.\!k-justify-content-evenly {
    justify-content: space-evenly !important;
}

.k-justify-content-stretch > * {
    flex: 1 0 0%;
}

.\!.k-justify-content-stretch > * {
    flex: 1 0 0% !important;
}

.k-justify-items-normal {
    justify-items: normal;
}

.\!k-justify-items-normal {
    justify-items: normal !important;
}

.k-justify-items-stretch {
    justify-items: stretch;
}

.\!k-justify-items-stretch {
    justify-items: stretch !important;
}

.k-justify-items-center {
    justify-items: center;
}

.\!k-justify-items-center {
    justify-items: center !important;
}

.k-justify-items-start {
    justify-items: start;
}

.\!k-justify-items-start {
    justify-items: start !important;
}

.k-justify-items-end {
    justify-items: end;
}

.\!k-justify-items-end {
    justify-items: end !important;
}

.k-justify-items-flex-start {
    justify-items: flex-start;
}

.\!k-justify-items-flex-start {
    justify-items: flex-start !important;
}

.k-justify-items-flex-end {
    justify-items: flex-end;
}

.\!k-justify-items-flex-end {
    justify-items: flex-end !important;
}

.k-justify-items-self-start {
    justify-items: self-start;
}

.\!k-justify-items-self-start {
    justify-items: self-start !important;
}

.k-justify-items-self-end {
    justify-items: self-end;
}

.\!k-justify-items-self-end {
    justify-items: self-end !important;
}

.k-justify-items-left {
    justify-items: left;
}

.\!k-justify-items-left {
    justify-items: left !important;
}

.k-justify-items-right {
    justify-items: right;
}

.\!k-justify-items-right {
    justify-items: right !important;
}

.k-justify-items-baseline {
    justify-items: baseline;
}

.\!k-justify-items-baseline {
    justify-items: baseline !important;
}

.k-justify-items-first-baseline {
    justify-items: first baseline;
}

.\!k-justify-items-first-baseline {
    justify-items: first baseline !important;
}

.k-justify-items-last-baseline {
    justify-items: last baseline;
}

.\!k-justify-items-last-baseline {
    justify-items: last baseline !important;
}

.k-justify-self-auto {
    justify-self: auto;
}

.\!k-justify-self-auto {
    justify-self: auto !important;
}

.k-justify-self-normal {
    justify-self: normal;
}

.\!k-justify-self-normal {
    justify-self: normal !important;
}

.k-justify-self-stretch {
    justify-self: stretch;
}

.\!k-justify-self-stretch {
    justify-self: stretch !important;
}

.k-justify-self-center {
    justify-self: center;
}

.\!k-justify-self-center {
    justify-self: center !important;
}

.k-justify-self-start {
    justify-self: start;
}

.\!k-justify-self-start {
    justify-self: start !important;
}

.k-justify-self-end {
    justify-self: end;
}

.\!k-justify-self-end {
    justify-self: end !important;
}

.k-justify-self-flex-start {
    justify-self: flex-start;
}

.\!k-justify-self-flex-start {
    justify-self: flex-start !important;
}

.k-justify-self-flex-end {
    justify-self: flex-end;
}

.\!k-justify-self-flex-end {
    justify-self: flex-end !important;
}

.k-justify-self-self-start {
    justify-self: self-start;
}

.\!k-justify-self-self-start {
    justify-self: self-start !important;
}

.k-justify-self-self-end {
    justify-self: self-end;
}

.\!k-justify-self-self-end {
    justify-self: self-end !important;
}

.k-justify-self-baseline {
    justify-self: baseline;
}

.\!k-justify-self-baseline {
    justify-self: baseline !important;
}

.k-justify-self-first-baseline {
    justify-self: first baseline;
}

.\!k-justify-self-first-baseline {
    justify-self: first baseline !important;
}

.k-justify-self-last-baseline {
    justify-self: last baseline;
}

.\!k-justify-self-last-baseline {
    justify-self: last baseline !important;
}

.k-order-1 {
    order: 1;
}

.\!k-order-1 {
    order: 1 !important;
}

.k-order-2 {
    order: 2;
}

.\!k-order-2 {
    order: 2 !important;
}

.k-order-3 {
    order: 3;
}

.\!k-order-3 {
    order: 3 !important;
}

.k-order-4 {
    order: 4;
}

.\!k-order-4 {
    order: 4 !important;
}

.k-order-5 {
    order: 5;
}

.\!k-order-5 {
    order: 5 !important;
}

.k-order-6 {
    order: 6;
}

.\!k-order-6 {
    order: 6 !important;
}

.k-order-7 {
    order: 7;
}

.\!k-order-7 {
    order: 7 !important;
}

.k-order-8 {
    order: 8;
}

.\!k-order-8 {
    order: 8 !important;
}

.k-order-9 {
    order: 9;
}

.\!k-order-9 {
    order: 9 !important;
}

.k-order-10 {
    order: 10;
}

.\!k-order-10 {
    order: 10 !important;
}

.k-order-11 {
    order: 11;
}

.\!k-order-11 {
    order: 11 !important;
}

.k-order-12 {
    order: 12;
}

.\!k-order-12 {
    order: 12 !important;
}

.k-order-first {
    order: -9999;
}

.\!k-order-first {
    order: -9999 !important;
}

.k-order-last {
    order: 9999;
}

.\!k-order-last {
    order: 9999 !important;
}

.k-order-none {
    order: 0;
}

.\!k-order-none {
    order: 0 !important;
}

.k-place-content-normal {
    place-content: normal;
}

.\!k-place-content-normal {
    place-content: normal !important;
}

.k-place-content-stretch {
    place-content: stretch;
}

.\!k-place-content-stretch {
    place-content: stretch !important;
}

.k-place-content-center {
    place-content: center;
}

.\!k-place-content-center {
    place-content: center !important;
}

.k-place-content-start {
    place-content: start;
}

.\!k-place-content-start {
    place-content: start !important;
}

.k-place-content-end {
    place-content: end;
}

.\!k-place-content-end {
    place-content: end !important;
}

.k-place-content-flex-start {
    place-content: flex-start;
}

.\!k-place-content-flex-start {
    place-content: flex-start !important;
}

.k-place-content-flex-end {
    place-content: flex-end;
}

.\!k-place-content-flex-end {
    place-content: flex-end !important;
}

.k-place-content-baseline {
    place-content: baseline;
}

.\!k-place-content-baseline {
    place-content: baseline !important;
}

.k-place-content-between {
    place-content: space-between;
}

.\!k-place-content-between {
    place-content: space-between !important;
}

.k-place-content-around {
    place-content: space-around;
}

.\!k-place-content-around {
    place-content: space-around !important;
}

.k-place-content-evenly {
    place-content: space-evenly;
}

.\!k-place-content-evenly {
    place-content: space-evenly !important;
}

.k-place-items-normal {
    place-items: normal;
}

.\!k-place-items-normal {
    place-items: normal !important;
}

.k-place-items-stretch {
    place-items: stretch;
}

.\!k-place-items-stretch {
    place-items: stretch !important;
}

.k-place-items-center {
    place-items: center;
}

.\!k-place-items-center {
    place-items: center !important;
}

.k-place-items-start {
    place-items: start;
}

.\!k-place-items-start {
    place-items: start !important;
}

.k-place-items-end {
    place-items: end;
}

.\!k-place-items-end {
    place-items: end !important;
}

.k-place-items-flex-start {
    place-items: flex-start;
}

.\!k-place-items-flex-start {
    place-items: flex-start !important;
}

.k-place-items-flex-end {
    place-items: flex-end;
}

.\!k-place-items-flex-end {
    place-items: flex-end !important;
}

.k-place-items-self-start {
    place-items: self-start;
}

.\!k-place-items-self-start {
    place-items: self-start !important;
}

.k-place-items-self-end {
    place-items: self-end;
}

.\!k-place-items-self-end {
    place-items: self-end !important;
}

.k-place-items-baseline {
    place-items: baseline;
}

.\!k-place-items-baseline {
    place-items: baseline !important;
}

.k-place-self-auto {
    place-self: auto;
}

.\!k-place-self-auto {
    place-self: auto !important;
}

.k-place-self-normal {
    place-self: normal;
}

.\!k-place-self-normal {
    place-self: normal !important;
}

.k-place-self-stretch {
    place-self: stretch;
}

.\!k-place-self-stretch {
    place-self: stretch !important;
}

.k-place-self-center {
    place-self: center;
}

.\!k-place-self-center {
    place-self: center !important;
}

.k-place-self-start {
    place-self: start;
}

.\!k-place-self-start {
    place-self: start !important;
}

.k-place-self-end {
    place-self: end;
}

.\!k-place-self-end {
    place-self: end !important;
}

.k-place-self-flex-start {
    place-self: flex-start;
}

.\!k-place-self-flex-start {
    place-self: flex-start !important;
}

.k-place-self-flex-end {
    place-self: flex-end;
}

.\!k-place-self-flex-end {
    place-self: flex-end !important;
}

.k-place-self-self-start {
    place-self: self-start;
}

.\!k-place-self-self-start {
    place-self: self-start !important;
}

.k-place-self-self-end {
    place-self: self-end;
}

.\!k-place-self-self-end {
    place-self: self-end !important;
}

.k-place-self-baseline {
    place-self: baseline;
}

.\!k-place-self-baseline {
    place-self: baseline !important;
}

.k-m-0 {
    margin: 0;
}

.\!k-m-0 {
    margin: 0 !important;
}

.k-m-1px {
    margin: 1px;
}

.\!k-m-1px {
    margin: 1px !important;
}

.k-m-0\.5 {
    margin: 0.125rem;
}

.\!k-m-0\.5 {
    margin: 0.125rem !important;
}

.k-m-1 {
    margin: 0.25rem;
}

.\!k-m-1 {
    margin: 0.25rem !important;
}

.k-m-1\.5 {
    margin: 0.375rem;
}

.\!k-m-1\.5 {
    margin: 0.375rem !important;
}

.k-m-2 {
    margin: 0.5rem;
}

.\!k-m-2 {
    margin: 0.5rem !important;
}

.k-m-2\.5 {
    margin: 0.625rem;
}

.\!k-m-2\.5 {
    margin: 0.625rem !important;
}

.k-m-3 {
    margin: 0.75rem;
}

.\!k-m-3 {
    margin: 0.75rem !important;
}

.k-m-3\.5 {
    margin: 0.875rem;
}

.\!k-m-3\.5 {
    margin: 0.875rem !important;
}

.k-m-4 {
    margin: 1rem;
}

.\!k-m-4 {
    margin: 1rem !important;
}

.k-m-4\.5 {
    margin: 1.125rem;
}

.\!k-m-4\.5 {
    margin: 1.125rem !important;
}

.k-m-5 {
    margin: 1.25rem;
}

.\!k-m-5 {
    margin: 1.25rem !important;
}

.k-m-5\.5 {
    margin: 1.375rem;
}

.\!k-m-5\.5 {
    margin: 1.375rem !important;
}

.k-m-6 {
    margin: 1.5rem;
}

.\!k-m-6 {
    margin: 1.5rem !important;
}

.k-m-6\.5 {
    margin: 1.625rem;
}

.\!k-m-6\.5 {
    margin: 1.625rem !important;
}

.k-m-7 {
    margin: 1.75rem;
}

.\!k-m-7 {
    margin: 1.75rem !important;
}

.k-m-7\.5 {
    margin: 1.875rem;
}

.\!k-m-7\.5 {
    margin: 1.875rem !important;
}

.k-m-8 {
    margin: 2rem;
}

.\!k-m-8 {
    margin: 2rem !important;
}

.k-m-9 {
    margin: 2.25rem;
}

.\!k-m-9 {
    margin: 2.25rem !important;
}

.k-m-10 {
    margin: 2.5rem;
}

.\!k-m-10 {
    margin: 2.5rem !important;
}

.k-m-11 {
    margin: 2.75rem;
}

.\!k-m-11 {
    margin: 2.75rem !important;
}

.k-m-12 {
    margin: 3rem;
}

.\!k-m-12 {
    margin: 3rem !important;
}

.k-m-13 {
    margin: 3.25rem;
}

.\!k-m-13 {
    margin: 3.25rem !important;
}

.k-m-14 {
    margin: 3.5rem;
}

.\!k-m-14 {
    margin: 3.5rem !important;
}

.k-m-15 {
    margin: 3.75rem;
}

.\!k-m-15 {
    margin: 3.75rem !important;
}

.k-m-16 {
    margin: 4rem;
}

.\!k-m-16 {
    margin: 4rem !important;
}

.k-m-17 {
    margin: 4.25rem;
}

.\!k-m-17 {
    margin: 4.25rem !important;
}

.k-m-18 {
    margin: 4.5rem;
}

.\!k-m-18 {
    margin: 4.5rem !important;
}

.k-m-19 {
    margin: 4.75rem;
}

.\!k-m-19 {
    margin: 4.75rem !important;
}

.k-m-20 {
    margin: 5rem;
}

.\!k-m-20 {
    margin: 5rem !important;
}

.k-m-21 {
    margin: 5.25rem;
}

.\!k-m-21 {
    margin: 5.25rem !important;
}

.k-m-22 {
    margin: 5.5rem;
}

.\!k-m-22 {
    margin: 5.5rem !important;
}

.k-m-23 {
    margin: 5.75rem;
}

.\!k-m-23 {
    margin: 5.75rem !important;
}

.k-m-24 {
    margin: 6rem;
}

.\!k-m-24 {
    margin: 6rem !important;
}

.k-m--1px {
    margin: -1px;
}

.\!k-m--1px {
    margin: -1px !important;
}

.k-m--0\.5 {
    margin: -0.125rem;
}

.\!k-m--0\.5 {
    margin: -0.125rem !important;
}

.k-m--1 {
    margin: -0.25rem;
}

.\!k-m--1 {
    margin: -0.25rem !important;
}

.k-m--1\.5 {
    margin: -0.375rem;
}

.\!k-m--1\.5 {
    margin: -0.375rem !important;
}

.k-m--2 {
    margin: -0.5rem;
}

.\!k-m--2 {
    margin: -0.5rem !important;
}

.k-m--2\.5 {
    margin: -0.625rem;
}

.\!k-m--2\.5 {
    margin: -0.625rem !important;
}

.k-m--3 {
    margin: -0.75rem;
}

.\!k-m--3 {
    margin: -0.75rem !important;
}

.k-m--3\.5 {
    margin: -0.875rem;
}

.\!k-m--3\.5 {
    margin: -0.875rem !important;
}

.k-m--4 {
    margin: -1rem;
}

.\!k-m--4 {
    margin: -1rem !important;
}

.k-m--4\.5 {
    margin: -1.125rem;
}

.\!k-m--4\.5 {
    margin: -1.125rem !important;
}

.k-m--5 {
    margin: -1.25rem;
}

.\!k-m--5 {
    margin: -1.25rem !important;
}

.k-m--5\.5 {
    margin: -1.375rem;
}

.\!k-m--5\.5 {
    margin: -1.375rem !important;
}

.k-m--6 {
    margin: -1.5rem;
}

.\!k-m--6 {
    margin: -1.5rem !important;
}

.k-m--6\.5 {
    margin: -1.625rem;
}

.\!k-m--6\.5 {
    margin: -1.625rem !important;
}

.k-m--7 {
    margin: -1.75rem;
}

.\!k-m--7 {
    margin: -1.75rem !important;
}

.k-m--7\.5 {
    margin: -1.875rem;
}

.\!k-m--7\.5 {
    margin: -1.875rem !important;
}

.k-m--8 {
    margin: -2rem;
}

.\!k-m--8 {
    margin: -2rem !important;
}

.k-m--9 {
    margin: -2.25rem;
}

.\!k-m--9 {
    margin: -2.25rem !important;
}

.k-m--10 {
    margin: -2.5rem;
}

.\!k-m--10 {
    margin: -2.5rem !important;
}

.k-m--11 {
    margin: -2.75rem;
}

.\!k-m--11 {
    margin: -2.75rem !important;
}

.k-m--12 {
    margin: -3rem;
}

.\!k-m--12 {
    margin: -3rem !important;
}

.k-m--13 {
    margin: -3.25rem;
}

.\!k-m--13 {
    margin: -3.25rem !important;
}

.k-m--14 {
    margin: -3.5rem;
}

.\!k-m--14 {
    margin: -3.5rem !important;
}

.k-m--15 {
    margin: -3.75rem;
}

.\!k-m--15 {
    margin: -3.75rem !important;
}

.k-m--16 {
    margin: -4rem;
}

.\!k-m--16 {
    margin: -4rem !important;
}

.k-m--17 {
    margin: -4.25rem;
}

.\!k-m--17 {
    margin: -4.25rem !important;
}

.k-m--18 {
    margin: -4.5rem;
}

.\!k-m--18 {
    margin: -4.5rem !important;
}

.k-m--19 {
    margin: -4.75rem;
}

.\!k-m--19 {
    margin: -4.75rem !important;
}

.k-m--20 {
    margin: -5rem;
}

.\!k-m--20 {
    margin: -5rem !important;
}

.k-m--21 {
    margin: -5.25rem;
}

.\!k-m--21 {
    margin: -5.25rem !important;
}

.k-m--22 {
    margin: -5.5rem;
}

.\!k-m--22 {
    margin: -5.5rem !important;
}

.k-m--23 {
    margin: -5.75rem;
}

.\!k-m--23 {
    margin: -5.75rem !important;
}

.k-m--24 {
    margin: -6rem;
}

.\!k-m--24 {
    margin: -6rem !important;
}

.k-m-xs {
    margin: 0.25rem;
}

.\!k-m-xs {
    margin: 0.25rem !important;
}

.k-m-sm {
    margin: 0.5rem;
}

.\!k-m-sm {
    margin: 0.5rem !important;
}

.k-m-md {
    margin: 0.75rem;
}

.\!k-m-md {
    margin: 0.75rem !important;
}

.k-m-lg {
    margin: 1rem;
}

.\!k-m-lg {
    margin: 1rem !important;
}

.k-m-xl {
    margin: 1.5rem;
}

.\!k-m-xl {
    margin: 1.5rem !important;
}

.k-m-thin {
    margin: 0.125rem;
}

.\!k-m-thin {
    margin: 0.125rem !important;
}

.k-m-hair {
    margin: 1px;
}

.\!k-m-hair {
    margin: 1px !important;
}

.k-m-auto {
    margin: auto;
}

.\!k-m-auto {
    margin: auto !important;
}

.k-mt-0 {
    margin-top: 0;
}

.\!k-mt-0 {
    margin-top: 0 !important;
}

.k-mt-1px {
    margin-top: 1px;
}

.\!k-mt-1px {
    margin-top: 1px !important;
}

.k-mt-0\.5 {
    margin-top: 0.125rem;
}

.\!k-mt-0\.5 {
    margin-top: 0.125rem !important;
}

.k-mt-1 {
    margin-top: 0.25rem;
}

.\!k-mt-1 {
    margin-top: 0.25rem !important;
}

.k-mt-1\.5 {
    margin-top: 0.375rem;
}

.\!k-mt-1\.5 {
    margin-top: 0.375rem !important;
}

.k-mt-2 {
    margin-top: 0.5rem;
}

.\!k-mt-2 {
    margin-top: 0.5rem !important;
}

.k-mt-2\.5 {
    margin-top: 0.625rem;
}

.\!k-mt-2\.5 {
    margin-top: 0.625rem !important;
}

.k-mt-3 {
    margin-top: 0.75rem;
}

.\!k-mt-3 {
    margin-top: 0.75rem !important;
}

.k-mt-3\.5 {
    margin-top: 0.875rem;
}

.\!k-mt-3\.5 {
    margin-top: 0.875rem !important;
}

.k-mt-4 {
    margin-top: 1rem;
}

.\!k-mt-4 {
    margin-top: 1rem !important;
}

.k-mt-4\.5 {
    margin-top: 1.125rem;
}

.\!k-mt-4\.5 {
    margin-top: 1.125rem !important;
}

.k-mt-5 {
    margin-top: 1.25rem;
}

.\!k-mt-5 {
    margin-top: 1.25rem !important;
}

.k-mt-5\.5 {
    margin-top: 1.375rem;
}

.\!k-mt-5\.5 {
    margin-top: 1.375rem !important;
}

.k-mt-6 {
    margin-top: 1.5rem;
}

.\!k-mt-6 {
    margin-top: 1.5rem !important;
}

.k-mt-6\.5 {
    margin-top: 1.625rem;
}

.\!k-mt-6\.5 {
    margin-top: 1.625rem !important;
}

.k-mt-7 {
    margin-top: 1.75rem;
}

.\!k-mt-7 {
    margin-top: 1.75rem !important;
}

.k-mt-7\.5 {
    margin-top: 1.875rem;
}

.\!k-mt-7\.5 {
    margin-top: 1.875rem !important;
}

.k-mt-8 {
    margin-top: 2rem;
}

.\!k-mt-8 {
    margin-top: 2rem !important;
}

.k-mt-9 {
    margin-top: 2.25rem;
}

.\!k-mt-9 {
    margin-top: 2.25rem !important;
}

.k-mt-10 {
    margin-top: 2.5rem;
}

.\!k-mt-10 {
    margin-top: 2.5rem !important;
}

.k-mt-11 {
    margin-top: 2.75rem;
}

.\!k-mt-11 {
    margin-top: 2.75rem !important;
}

.k-mt-12 {
    margin-top: 3rem;
}

.\!k-mt-12 {
    margin-top: 3rem !important;
}

.k-mt-13 {
    margin-top: 3.25rem;
}

.\!k-mt-13 {
    margin-top: 3.25rem !important;
}

.k-mt-14 {
    margin-top: 3.5rem;
}

.\!k-mt-14 {
    margin-top: 3.5rem !important;
}

.k-mt-15 {
    margin-top: 3.75rem;
}

.\!k-mt-15 {
    margin-top: 3.75rem !important;
}

.k-mt-16 {
    margin-top: 4rem;
}

.\!k-mt-16 {
    margin-top: 4rem !important;
}

.k-mt-17 {
    margin-top: 4.25rem;
}

.\!k-mt-17 {
    margin-top: 4.25rem !important;
}

.k-mt-18 {
    margin-top: 4.5rem;
}

.\!k-mt-18 {
    margin-top: 4.5rem !important;
}

.k-mt-19 {
    margin-top: 4.75rem;
}

.\!k-mt-19 {
    margin-top: 4.75rem !important;
}

.k-mt-20 {
    margin-top: 5rem;
}

.\!k-mt-20 {
    margin-top: 5rem !important;
}

.k-mt-21 {
    margin-top: 5.25rem;
}

.\!k-mt-21 {
    margin-top: 5.25rem !important;
}

.k-mt-22 {
    margin-top: 5.5rem;
}

.\!k-mt-22 {
    margin-top: 5.5rem !important;
}

.k-mt-23 {
    margin-top: 5.75rem;
}

.\!k-mt-23 {
    margin-top: 5.75rem !important;
}

.k-mt-24 {
    margin-top: 6rem;
}

.\!k-mt-24 {
    margin-top: 6rem !important;
}

.k-mt--1px {
    margin-top: -1px;
}

.\!k-mt--1px {
    margin-top: -1px !important;
}

.k-mt--0\.5 {
    margin-top: -0.125rem;
}

.\!k-mt--0\.5 {
    margin-top: -0.125rem !important;
}

.k-mt--1 {
    margin-top: -0.25rem;
}

.\!k-mt--1 {
    margin-top: -0.25rem !important;
}

.k-mt--1\.5 {
    margin-top: -0.375rem;
}

.\!k-mt--1\.5 {
    margin-top: -0.375rem !important;
}

.k-mt--2 {
    margin-top: -0.5rem;
}

.\!k-mt--2 {
    margin-top: -0.5rem !important;
}

.k-mt--2\.5 {
    margin-top: -0.625rem;
}

.\!k-mt--2\.5 {
    margin-top: -0.625rem !important;
}

.k-mt--3 {
    margin-top: -0.75rem;
}

.\!k-mt--3 {
    margin-top: -0.75rem !important;
}

.k-mt--3\.5 {
    margin-top: -0.875rem;
}

.\!k-mt--3\.5 {
    margin-top: -0.875rem !important;
}

.k-mt--4 {
    margin-top: -1rem;
}

.\!k-mt--4 {
    margin-top: -1rem !important;
}

.k-mt--4\.5 {
    margin-top: -1.125rem;
}

.\!k-mt--4\.5 {
    margin-top: -1.125rem !important;
}

.k-mt--5 {
    margin-top: -1.25rem;
}

.\!k-mt--5 {
    margin-top: -1.25rem !important;
}

.k-mt--5\.5 {
    margin-top: -1.375rem;
}

.\!k-mt--5\.5 {
    margin-top: -1.375rem !important;
}

.k-mt--6 {
    margin-top: -1.5rem;
}

.\!k-mt--6 {
    margin-top: -1.5rem !important;
}

.k-mt--6\.5 {
    margin-top: -1.625rem;
}

.\!k-mt--6\.5 {
    margin-top: -1.625rem !important;
}

.k-mt--7 {
    margin-top: -1.75rem;
}

.\!k-mt--7 {
    margin-top: -1.75rem !important;
}

.k-mt--7\.5 {
    margin-top: -1.875rem;
}

.\!k-mt--7\.5 {
    margin-top: -1.875rem !important;
}

.k-mt--8 {
    margin-top: -2rem;
}

.\!k-mt--8 {
    margin-top: -2rem !important;
}

.k-mt--9 {
    margin-top: -2.25rem;
}

.\!k-mt--9 {
    margin-top: -2.25rem !important;
}

.k-mt--10 {
    margin-top: -2.5rem;
}

.\!k-mt--10 {
    margin-top: -2.5rem !important;
}

.k-mt--11 {
    margin-top: -2.75rem;
}

.\!k-mt--11 {
    margin-top: -2.75rem !important;
}

.k-mt--12 {
    margin-top: -3rem;
}

.\!k-mt--12 {
    margin-top: -3rem !important;
}

.k-mt--13 {
    margin-top: -3.25rem;
}

.\!k-mt--13 {
    margin-top: -3.25rem !important;
}

.k-mt--14 {
    margin-top: -3.5rem;
}

.\!k-mt--14 {
    margin-top: -3.5rem !important;
}

.k-mt--15 {
    margin-top: -3.75rem;
}

.\!k-mt--15 {
    margin-top: -3.75rem !important;
}

.k-mt--16 {
    margin-top: -4rem;
}

.\!k-mt--16 {
    margin-top: -4rem !important;
}

.k-mt--17 {
    margin-top: -4.25rem;
}

.\!k-mt--17 {
    margin-top: -4.25rem !important;
}

.k-mt--18 {
    margin-top: -4.5rem;
}

.\!k-mt--18 {
    margin-top: -4.5rem !important;
}

.k-mt--19 {
    margin-top: -4.75rem;
}

.\!k-mt--19 {
    margin-top: -4.75rem !important;
}

.k-mt--20 {
    margin-top: -5rem;
}

.\!k-mt--20 {
    margin-top: -5rem !important;
}

.k-mt--21 {
    margin-top: -5.25rem;
}

.\!k-mt--21 {
    margin-top: -5.25rem !important;
}

.k-mt--22 {
    margin-top: -5.5rem;
}

.\!k-mt--22 {
    margin-top: -5.5rem !important;
}

.k-mt--23 {
    margin-top: -5.75rem;
}

.\!k-mt--23 {
    margin-top: -5.75rem !important;
}

.k-mt--24 {
    margin-top: -6rem;
}

.\!k-mt--24 {
    margin-top: -6rem !important;
}

.k-mt-xs {
    margin-top: 0.25rem;
}

.\!k-mt-xs {
    margin-top: 0.25rem !important;
}

.k-mt-sm {
    margin-top: 0.5rem;
}

.\!k-mt-sm {
    margin-top: 0.5rem !important;
}

.k-mt-md {
    margin-top: 0.75rem;
}

.\!k-mt-md {
    margin-top: 0.75rem !important;
}

.k-mt-lg {
    margin-top: 1rem;
}

.\!k-mt-lg {
    margin-top: 1rem !important;
}

.k-mt-xl {
    margin-top: 1.5rem;
}

.\!k-mt-xl {
    margin-top: 1.5rem !important;
}

.k-mt-thin {
    margin-top: 0.125rem;
}

.\!k-mt-thin {
    margin-top: 0.125rem !important;
}

.k-mt-hair {
    margin-top: 1px;
}

.\!k-mt-hair {
    margin-top: 1px !important;
}

.k-mt-auto {
    margin-top: auto;
}

.\!k-mt-auto {
    margin-top: auto !important;
}

.k-mr-0 {
    margin-right: 0;
}

.\!k-mr-0 {
    margin-right: 0 !important;
}

.k-mr-1px {
    margin-right: 1px;
}

.\!k-mr-1px {
    margin-right: 1px !important;
}

.k-mr-0\.5 {
    margin-right: 0.125rem;
}

.\!k-mr-0\.5 {
    margin-right: 0.125rem !important;
}

.k-mr-1 {
    margin-right: 0.25rem;
}

.\!k-mr-1 {
    margin-right: 0.25rem !important;
}

.k-mr-1\.5 {
    margin-right: 0.375rem;
}

.\!k-mr-1\.5 {
    margin-right: 0.375rem !important;
}

.k-mr-2 {
    margin-right: 0.5rem;
}

.\!k-mr-2 {
    margin-right: 0.5rem !important;
}

.k-mr-2\.5 {
    margin-right: 0.625rem;
}

.\!k-mr-2\.5 {
    margin-right: 0.625rem !important;
}

.k-mr-3 {
    margin-right: 0.75rem;
}

.\!k-mr-3 {
    margin-right: 0.75rem !important;
}

.k-mr-3\.5 {
    margin-right: 0.875rem;
}

.\!k-mr-3\.5 {
    margin-right: 0.875rem !important;
}

.k-mr-4 {
    margin-right: 1rem;
}

.\!k-mr-4 {
    margin-right: 1rem !important;
}

.k-mr-4\.5 {
    margin-right: 1.125rem;
}

.\!k-mr-4\.5 {
    margin-right: 1.125rem !important;
}

.k-mr-5 {
    margin-right: 1.25rem;
}

.\!k-mr-5 {
    margin-right: 1.25rem !important;
}

.k-mr-5\.5 {
    margin-right: 1.375rem;
}

.\!k-mr-5\.5 {
    margin-right: 1.375rem !important;
}

.k-mr-6 {
    margin-right: 1.5rem;
}

.\!k-mr-6 {
    margin-right: 1.5rem !important;
}

.k-mr-6\.5 {
    margin-right: 1.625rem;
}

.\!k-mr-6\.5 {
    margin-right: 1.625rem !important;
}

.k-mr-7 {
    margin-right: 1.75rem;
}

.\!k-mr-7 {
    margin-right: 1.75rem !important;
}

.k-mr-7\.5 {
    margin-right: 1.875rem;
}

.\!k-mr-7\.5 {
    margin-right: 1.875rem !important;
}

.k-mr-8 {
    margin-right: 2rem;
}

.\!k-mr-8 {
    margin-right: 2rem !important;
}

.k-mr-9 {
    margin-right: 2.25rem;
}

.\!k-mr-9 {
    margin-right: 2.25rem !important;
}

.k-mr-10 {
    margin-right: 2.5rem;
}

.\!k-mr-10 {
    margin-right: 2.5rem !important;
}

.k-mr-11 {
    margin-right: 2.75rem;
}

.\!k-mr-11 {
    margin-right: 2.75rem !important;
}

.k-mr-12 {
    margin-right: 3rem;
}

.\!k-mr-12 {
    margin-right: 3rem !important;
}

.k-mr-13 {
    margin-right: 3.25rem;
}

.\!k-mr-13 {
    margin-right: 3.25rem !important;
}

.k-mr-14 {
    margin-right: 3.5rem;
}

.\!k-mr-14 {
    margin-right: 3.5rem !important;
}

.k-mr-15 {
    margin-right: 3.75rem;
}

.\!k-mr-15 {
    margin-right: 3.75rem !important;
}

.k-mr-16 {
    margin-right: 4rem;
}

.\!k-mr-16 {
    margin-right: 4rem !important;
}

.k-mr-17 {
    margin-right: 4.25rem;
}

.\!k-mr-17 {
    margin-right: 4.25rem !important;
}

.k-mr-18 {
    margin-right: 4.5rem;
}

.\!k-mr-18 {
    margin-right: 4.5rem !important;
}

.k-mr-19 {
    margin-right: 4.75rem;
}

.\!k-mr-19 {
    margin-right: 4.75rem !important;
}

.k-mr-20 {
    margin-right: 5rem;
}

.\!k-mr-20 {
    margin-right: 5rem !important;
}

.k-mr-21 {
    margin-right: 5.25rem;
}

.\!k-mr-21 {
    margin-right: 5.25rem !important;
}

.k-mr-22 {
    margin-right: 5.5rem;
}

.\!k-mr-22 {
    margin-right: 5.5rem !important;
}

.k-mr-23 {
    margin-right: 5.75rem;
}

.\!k-mr-23 {
    margin-right: 5.75rem !important;
}

.k-mr-24 {
    margin-right: 6rem;
}

.\!k-mr-24 {
    margin-right: 6rem !important;
}

.k-mr--1px {
    margin-right: -1px;
}

.\!k-mr--1px {
    margin-right: -1px !important;
}

.k-mr--0\.5 {
    margin-right: -0.125rem;
}

.\!k-mr--0\.5 {
    margin-right: -0.125rem !important;
}

.k-mr--1 {
    margin-right: -0.25rem;
}

.\!k-mr--1 {
    margin-right: -0.25rem !important;
}

.k-mr--1\.5 {
    margin-right: -0.375rem;
}

.\!k-mr--1\.5 {
    margin-right: -0.375rem !important;
}

.k-mr--2 {
    margin-right: -0.5rem;
}

.\!k-mr--2 {
    margin-right: -0.5rem !important;
}

.k-mr--2\.5 {
    margin-right: -0.625rem;
}

.\!k-mr--2\.5 {
    margin-right: -0.625rem !important;
}

.k-mr--3 {
    margin-right: -0.75rem;
}

.\!k-mr--3 {
    margin-right: -0.75rem !important;
}

.k-mr--3\.5 {
    margin-right: -0.875rem;
}

.\!k-mr--3\.5 {
    margin-right: -0.875rem !important;
}

.k-mr--4 {
    margin-right: -1rem;
}

.\!k-mr--4 {
    margin-right: -1rem !important;
}

.k-mr--4\.5 {
    margin-right: -1.125rem;
}

.\!k-mr--4\.5 {
    margin-right: -1.125rem !important;
}

.k-mr--5 {
    margin-right: -1.25rem;
}

.\!k-mr--5 {
    margin-right: -1.25rem !important;
}

.k-mr--5\.5 {
    margin-right: -1.375rem;
}

.\!k-mr--5\.5 {
    margin-right: -1.375rem !important;
}

.k-mr--6 {
    margin-right: -1.5rem;
}

.\!k-mr--6 {
    margin-right: -1.5rem !important;
}

.k-mr--6\.5 {
    margin-right: -1.625rem;
}

.\!k-mr--6\.5 {
    margin-right: -1.625rem !important;
}

.k-mr--7 {
    margin-right: -1.75rem;
}

.\!k-mr--7 {
    margin-right: -1.75rem !important;
}

.k-mr--7\.5 {
    margin-right: -1.875rem;
}

.\!k-mr--7\.5 {
    margin-right: -1.875rem !important;
}

.k-mr--8 {
    margin-right: -2rem;
}

.\!k-mr--8 {
    margin-right: -2rem !important;
}

.k-mr--9 {
    margin-right: -2.25rem;
}

.\!k-mr--9 {
    margin-right: -2.25rem !important;
}

.k-mr--10 {
    margin-right: -2.5rem;
}

.\!k-mr--10 {
    margin-right: -2.5rem !important;
}

.k-mr--11 {
    margin-right: -2.75rem;
}

.\!k-mr--11 {
    margin-right: -2.75rem !important;
}

.k-mr--12 {
    margin-right: -3rem;
}

.\!k-mr--12 {
    margin-right: -3rem !important;
}

.k-mr--13 {
    margin-right: -3.25rem;
}

.\!k-mr--13 {
    margin-right: -3.25rem !important;
}

.k-mr--14 {
    margin-right: -3.5rem;
}

.\!k-mr--14 {
    margin-right: -3.5rem !important;
}

.k-mr--15 {
    margin-right: -3.75rem;
}

.\!k-mr--15 {
    margin-right: -3.75rem !important;
}

.k-mr--16 {
    margin-right: -4rem;
}

.\!k-mr--16 {
    margin-right: -4rem !important;
}

.k-mr--17 {
    margin-right: -4.25rem;
}

.\!k-mr--17 {
    margin-right: -4.25rem !important;
}

.k-mr--18 {
    margin-right: -4.5rem;
}

.\!k-mr--18 {
    margin-right: -4.5rem !important;
}

.k-mr--19 {
    margin-right: -4.75rem;
}

.\!k-mr--19 {
    margin-right: -4.75rem !important;
}

.k-mr--20 {
    margin-right: -5rem;
}

.\!k-mr--20 {
    margin-right: -5rem !important;
}

.k-mr--21 {
    margin-right: -5.25rem;
}

.\!k-mr--21 {
    margin-right: -5.25rem !important;
}

.k-mr--22 {
    margin-right: -5.5rem;
}

.\!k-mr--22 {
    margin-right: -5.5rem !important;
}

.k-mr--23 {
    margin-right: -5.75rem;
}

.\!k-mr--23 {
    margin-right: -5.75rem !important;
}

.k-mr--24 {
    margin-right: -6rem;
}

.\!k-mr--24 {
    margin-right: -6rem !important;
}

.k-mr-xs {
    margin-right: 0.25rem;
}

.\!k-mr-xs {
    margin-right: 0.25rem !important;
}

.k-mr-sm {
    margin-right: 0.5rem;
}

.\!k-mr-sm {
    margin-right: 0.5rem !important;
}

.k-mr-md {
    margin-right: 0.75rem;
}

.\!k-mr-md {
    margin-right: 0.75rem !important;
}

.k-mr-lg {
    margin-right: 1rem;
}

.\!k-mr-lg {
    margin-right: 1rem !important;
}

.k-mr-xl {
    margin-right: 1.5rem;
}

.\!k-mr-xl {
    margin-right: 1.5rem !important;
}

.k-mr-thin {
    margin-right: 0.125rem;
}

.\!k-mr-thin {
    margin-right: 0.125rem !important;
}

.k-mr-hair {
    margin-right: 1px;
}

.\!k-mr-hair {
    margin-right: 1px !important;
}

.k-mr-auto {
    margin-right: auto;
}

.\!k-mr-auto {
    margin-right: auto !important;
}

.k-mb-0 {
    margin-bottom: 0;
}

.\!k-mb-0 {
    margin-bottom: 0 !important;
}

.k-mb-1px {
    margin-bottom: 1px;
}

.\!k-mb-1px {
    margin-bottom: 1px !important;
}

.k-mb-0\.5 {
    margin-bottom: 0.125rem;
}

.\!k-mb-0\.5 {
    margin-bottom: 0.125rem !important;
}

.k-mb-1 {
    margin-bottom: 0.25rem;
}

.\!k-mb-1 {
    margin-bottom: 0.25rem !important;
}

.k-mb-1\.5 {
    margin-bottom: 0.375rem;
}

.\!k-mb-1\.5 {
    margin-bottom: 0.375rem !important;
}

.k-mb-2 {
    margin-bottom: 0.5rem;
}

.\!k-mb-2 {
    margin-bottom: 0.5rem !important;
}

.k-mb-2\.5 {
    margin-bottom: 0.625rem;
}

.\!k-mb-2\.5 {
    margin-bottom: 0.625rem !important;
}

.k-mb-3 {
    margin-bottom: 0.75rem;
}

.\!k-mb-3 {
    margin-bottom: 0.75rem !important;
}

.k-mb-3\.5 {
    margin-bottom: 0.875rem;
}

.\!k-mb-3\.5 {
    margin-bottom: 0.875rem !important;
}

.k-mb-4 {
    margin-bottom: 1rem;
}

.\!k-mb-4 {
    margin-bottom: 1rem !important;
}

.k-mb-4\.5 {
    margin-bottom: 1.125rem;
}

.\!k-mb-4\.5 {
    margin-bottom: 1.125rem !important;
}

.k-mb-5 {
    margin-bottom: 1.25rem;
}

.\!k-mb-5 {
    margin-bottom: 1.25rem !important;
}

.k-mb-5\.5 {
    margin-bottom: 1.375rem;
}

.\!k-mb-5\.5 {
    margin-bottom: 1.375rem !important;
}

.k-mb-6 {
    margin-bottom: 1.5rem;
}

.\!k-mb-6 {
    margin-bottom: 1.5rem !important;
}

.k-mb-6\.5 {
    margin-bottom: 1.625rem;
}

.\!k-mb-6\.5 {
    margin-bottom: 1.625rem !important;
}

.k-mb-7 {
    margin-bottom: 1.75rem;
}

.\!k-mb-7 {
    margin-bottom: 1.75rem !important;
}

.k-mb-7\.5 {
    margin-bottom: 1.875rem;
}

.\!k-mb-7\.5 {
    margin-bottom: 1.875rem !important;
}

.k-mb-8 {
    margin-bottom: 2rem;
}

.\!k-mb-8 {
    margin-bottom: 2rem !important;
}

.k-mb-9 {
    margin-bottom: 2.25rem;
}

.\!k-mb-9 {
    margin-bottom: 2.25rem !important;
}

.k-mb-10 {
    margin-bottom: 2.5rem;
}

.\!k-mb-10 {
    margin-bottom: 2.5rem !important;
}

.k-mb-11 {
    margin-bottom: 2.75rem;
}

.\!k-mb-11 {
    margin-bottom: 2.75rem !important;
}

.k-mb-12 {
    margin-bottom: 3rem;
}

.\!k-mb-12 {
    margin-bottom: 3rem !important;
}

.k-mb-13 {
    margin-bottom: 3.25rem;
}

.\!k-mb-13 {
    margin-bottom: 3.25rem !important;
}

.k-mb-14 {
    margin-bottom: 3.5rem;
}

.\!k-mb-14 {
    margin-bottom: 3.5rem !important;
}

.k-mb-15 {
    margin-bottom: 3.75rem;
}

.\!k-mb-15 {
    margin-bottom: 3.75rem !important;
}

.k-mb-16 {
    margin-bottom: 4rem;
}

.\!k-mb-16 {
    margin-bottom: 4rem !important;
}

.k-mb-17 {
    margin-bottom: 4.25rem;
}

.\!k-mb-17 {
    margin-bottom: 4.25rem !important;
}

.k-mb-18 {
    margin-bottom: 4.5rem;
}

.\!k-mb-18 {
    margin-bottom: 4.5rem !important;
}

.k-mb-19 {
    margin-bottom: 4.75rem;
}

.\!k-mb-19 {
    margin-bottom: 4.75rem !important;
}

.k-mb-20 {
    margin-bottom: 5rem;
}

.\!k-mb-20 {
    margin-bottom: 5rem !important;
}

.k-mb-21 {
    margin-bottom: 5.25rem;
}

.\!k-mb-21 {
    margin-bottom: 5.25rem !important;
}

.k-mb-22 {
    margin-bottom: 5.5rem;
}

.\!k-mb-22 {
    margin-bottom: 5.5rem !important;
}

.k-mb-23 {
    margin-bottom: 5.75rem;
}

.\!k-mb-23 {
    margin-bottom: 5.75rem !important;
}

.k-mb-24 {
    margin-bottom: 6rem;
}

.\!k-mb-24 {
    margin-bottom: 6rem !important;
}

.k-mb--1px {
    margin-bottom: -1px;
}

.\!k-mb--1px {
    margin-bottom: -1px !important;
}

.k-mb--0\.5 {
    margin-bottom: -0.125rem;
}

.\!k-mb--0\.5 {
    margin-bottom: -0.125rem !important;
}

.k-mb--1 {
    margin-bottom: -0.25rem;
}

.\!k-mb--1 {
    margin-bottom: -0.25rem !important;
}

.k-mb--1\.5 {
    margin-bottom: -0.375rem;
}

.\!k-mb--1\.5 {
    margin-bottom: -0.375rem !important;
}

.k-mb--2 {
    margin-bottom: -0.5rem;
}

.\!k-mb--2 {
    margin-bottom: -0.5rem !important;
}

.k-mb--2\.5 {
    margin-bottom: -0.625rem;
}

.\!k-mb--2\.5 {
    margin-bottom: -0.625rem !important;
}

.k-mb--3 {
    margin-bottom: -0.75rem;
}

.\!k-mb--3 {
    margin-bottom: -0.75rem !important;
}

.k-mb--3\.5 {
    margin-bottom: -0.875rem;
}

.\!k-mb--3\.5 {
    margin-bottom: -0.875rem !important;
}

.k-mb--4 {
    margin-bottom: -1rem;
}

.\!k-mb--4 {
    margin-bottom: -1rem !important;
}

.k-mb--4\.5 {
    margin-bottom: -1.125rem;
}

.\!k-mb--4\.5 {
    margin-bottom: -1.125rem !important;
}

.k-mb--5 {
    margin-bottom: -1.25rem;
}

.\!k-mb--5 {
    margin-bottom: -1.25rem !important;
}

.k-mb--5\.5 {
    margin-bottom: -1.375rem;
}

.\!k-mb--5\.5 {
    margin-bottom: -1.375rem !important;
}

.k-mb--6 {
    margin-bottom: -1.5rem;
}

.\!k-mb--6 {
    margin-bottom: -1.5rem !important;
}

.k-mb--6\.5 {
    margin-bottom: -1.625rem;
}

.\!k-mb--6\.5 {
    margin-bottom: -1.625rem !important;
}

.k-mb--7 {
    margin-bottom: -1.75rem;
}

.\!k-mb--7 {
    margin-bottom: -1.75rem !important;
}

.k-mb--7\.5 {
    margin-bottom: -1.875rem;
}

.\!k-mb--7\.5 {
    margin-bottom: -1.875rem !important;
}

.k-mb--8 {
    margin-bottom: -2rem;
}

.\!k-mb--8 {
    margin-bottom: -2rem !important;
}

.k-mb--9 {
    margin-bottom: -2.25rem;
}

.\!k-mb--9 {
    margin-bottom: -2.25rem !important;
}

.k-mb--10 {
    margin-bottom: -2.5rem;
}

.\!k-mb--10 {
    margin-bottom: -2.5rem !important;
}

.k-mb--11 {
    margin-bottom: -2.75rem;
}

.\!k-mb--11 {
    margin-bottom: -2.75rem !important;
}

.k-mb--12 {
    margin-bottom: -3rem;
}

.\!k-mb--12 {
    margin-bottom: -3rem !important;
}

.k-mb--13 {
    margin-bottom: -3.25rem;
}

.\!k-mb--13 {
    margin-bottom: -3.25rem !important;
}

.k-mb--14 {
    margin-bottom: -3.5rem;
}

.\!k-mb--14 {
    margin-bottom: -3.5rem !important;
}

.k-mb--15 {
    margin-bottom: -3.75rem;
}

.\!k-mb--15 {
    margin-bottom: -3.75rem !important;
}

.k-mb--16 {
    margin-bottom: -4rem;
}

.\!k-mb--16 {
    margin-bottom: -4rem !important;
}

.k-mb--17 {
    margin-bottom: -4.25rem;
}

.\!k-mb--17 {
    margin-bottom: -4.25rem !important;
}

.k-mb--18 {
    margin-bottom: -4.5rem;
}

.\!k-mb--18 {
    margin-bottom: -4.5rem !important;
}

.k-mb--19 {
    margin-bottom: -4.75rem;
}

.\!k-mb--19 {
    margin-bottom: -4.75rem !important;
}

.k-mb--20 {
    margin-bottom: -5rem;
}

.\!k-mb--20 {
    margin-bottom: -5rem !important;
}

.k-mb--21 {
    margin-bottom: -5.25rem;
}

.\!k-mb--21 {
    margin-bottom: -5.25rem !important;
}

.k-mb--22 {
    margin-bottom: -5.5rem;
}

.\!k-mb--22 {
    margin-bottom: -5.5rem !important;
}

.k-mb--23 {
    margin-bottom: -5.75rem;
}

.\!k-mb--23 {
    margin-bottom: -5.75rem !important;
}

.k-mb--24 {
    margin-bottom: -6rem;
}

.\!k-mb--24 {
    margin-bottom: -6rem !important;
}

.k-mb-xs {
    margin-bottom: 0.25rem;
}

.\!k-mb-xs {
    margin-bottom: 0.25rem !important;
}

.k-mb-sm {
    margin-bottom: 0.5rem;
}

.\!k-mb-sm {
    margin-bottom: 0.5rem !important;
}

.k-mb-md {
    margin-bottom: 0.75rem;
}

.\!k-mb-md {
    margin-bottom: 0.75rem !important;
}

.k-mb-lg {
    margin-bottom: 1rem;
}

.\!k-mb-lg {
    margin-bottom: 1rem !important;
}

.k-mb-xl {
    margin-bottom: 1.5rem;
}

.\!k-mb-xl {
    margin-bottom: 1.5rem !important;
}

.k-mb-thin {
    margin-bottom: 0.125rem;
}

.\!k-mb-thin {
    margin-bottom: 0.125rem !important;
}

.k-mb-hair {
    margin-bottom: 1px;
}

.\!k-mb-hair {
    margin-bottom: 1px !important;
}

.k-mb-auto {
    margin-bottom: auto;
}

.\!k-mb-auto {
    margin-bottom: auto !important;
}

.k-ml-0 {
    margin-left: 0;
}

.\!k-ml-0 {
    margin-left: 0 !important;
}

.k-ml-1px {
    margin-left: 1px;
}

.\!k-ml-1px {
    margin-left: 1px !important;
}

.k-ml-0\.5 {
    margin-left: 0.125rem;
}

.\!k-ml-0\.5 {
    margin-left: 0.125rem !important;
}

.k-ml-1 {
    margin-left: 0.25rem;
}

.\!k-ml-1 {
    margin-left: 0.25rem !important;
}

.k-ml-1\.5 {
    margin-left: 0.375rem;
}

.\!k-ml-1\.5 {
    margin-left: 0.375rem !important;
}

.k-ml-2 {
    margin-left: 0.5rem;
}

.\!k-ml-2 {
    margin-left: 0.5rem !important;
}

.k-ml-2\.5 {
    margin-left: 0.625rem;
}

.\!k-ml-2\.5 {
    margin-left: 0.625rem !important;
}

.k-ml-3 {
    margin-left: 0.75rem;
}

.\!k-ml-3 {
    margin-left: 0.75rem !important;
}

.k-ml-3\.5 {
    margin-left: 0.875rem;
}

.\!k-ml-3\.5 {
    margin-left: 0.875rem !important;
}

.k-ml-4 {
    margin-left: 1rem;
}

.\!k-ml-4 {
    margin-left: 1rem !important;
}

.k-ml-4\.5 {
    margin-left: 1.125rem;
}

.\!k-ml-4\.5 {
    margin-left: 1.125rem !important;
}

.k-ml-5 {
    margin-left: 1.25rem;
}

.\!k-ml-5 {
    margin-left: 1.25rem !important;
}

.k-ml-5\.5 {
    margin-left: 1.375rem;
}

.\!k-ml-5\.5 {
    margin-left: 1.375rem !important;
}

.k-ml-6 {
    margin-left: 1.5rem;
}

.\!k-ml-6 {
    margin-left: 1.5rem !important;
}

.k-ml-6\.5 {
    margin-left: 1.625rem;
}

.\!k-ml-6\.5 {
    margin-left: 1.625rem !important;
}

.k-ml-7 {
    margin-left: 1.75rem;
}

.\!k-ml-7 {
    margin-left: 1.75rem !important;
}

.k-ml-7\.5 {
    margin-left: 1.875rem;
}

.\!k-ml-7\.5 {
    margin-left: 1.875rem !important;
}

.k-ml-8 {
    margin-left: 2rem;
}

.\!k-ml-8 {
    margin-left: 2rem !important;
}

.k-ml-9 {
    margin-left: 2.25rem;
}

.\!k-ml-9 {
    margin-left: 2.25rem !important;
}

.k-ml-10 {
    margin-left: 2.5rem;
}

.\!k-ml-10 {
    margin-left: 2.5rem !important;
}

.k-ml-11 {
    margin-left: 2.75rem;
}

.\!k-ml-11 {
    margin-left: 2.75rem !important;
}

.k-ml-12 {
    margin-left: 3rem;
}

.\!k-ml-12 {
    margin-left: 3rem !important;
}

.k-ml-13 {
    margin-left: 3.25rem;
}

.\!k-ml-13 {
    margin-left: 3.25rem !important;
}

.k-ml-14 {
    margin-left: 3.5rem;
}

.\!k-ml-14 {
    margin-left: 3.5rem !important;
}

.k-ml-15 {
    margin-left: 3.75rem;
}

.\!k-ml-15 {
    margin-left: 3.75rem !important;
}

.k-ml-16 {
    margin-left: 4rem;
}

.\!k-ml-16 {
    margin-left: 4rem !important;
}

.k-ml-17 {
    margin-left: 4.25rem;
}

.\!k-ml-17 {
    margin-left: 4.25rem !important;
}

.k-ml-18 {
    margin-left: 4.5rem;
}

.\!k-ml-18 {
    margin-left: 4.5rem !important;
}

.k-ml-19 {
    margin-left: 4.75rem;
}

.\!k-ml-19 {
    margin-left: 4.75rem !important;
}

.k-ml-20 {
    margin-left: 5rem;
}

.\!k-ml-20 {
    margin-left: 5rem !important;
}

.k-ml-21 {
    margin-left: 5.25rem;
}

.\!k-ml-21 {
    margin-left: 5.25rem !important;
}

.k-ml-22 {
    margin-left: 5.5rem;
}

.\!k-ml-22 {
    margin-left: 5.5rem !important;
}

.k-ml-23 {
    margin-left: 5.75rem;
}

.\!k-ml-23 {
    margin-left: 5.75rem !important;
}

.k-ml-24 {
    margin-left: 6rem;
}

.\!k-ml-24 {
    margin-left: 6rem !important;
}

.k-ml--1px {
    margin-left: -1px;
}

.\!k-ml--1px {
    margin-left: -1px !important;
}

.k-ml--0\.5 {
    margin-left: -0.125rem;
}

.\!k-ml--0\.5 {
    margin-left: -0.125rem !important;
}

.k-ml--1 {
    margin-left: -0.25rem;
}

.\!k-ml--1 {
    margin-left: -0.25rem !important;
}

.k-ml--1\.5 {
    margin-left: -0.375rem;
}

.\!k-ml--1\.5 {
    margin-left: -0.375rem !important;
}

.k-ml--2 {
    margin-left: -0.5rem;
}

.\!k-ml--2 {
    margin-left: -0.5rem !important;
}

.k-ml--2\.5 {
    margin-left: -0.625rem;
}

.\!k-ml--2\.5 {
    margin-left: -0.625rem !important;
}

.k-ml--3 {
    margin-left: -0.75rem;
}

.\!k-ml--3 {
    margin-left: -0.75rem !important;
}

.k-ml--3\.5 {
    margin-left: -0.875rem;
}

.\!k-ml--3\.5 {
    margin-left: -0.875rem !important;
}

.k-ml--4 {
    margin-left: -1rem;
}

.\!k-ml--4 {
    margin-left: -1rem !important;
}

.k-ml--4\.5 {
    margin-left: -1.125rem;
}

.\!k-ml--4\.5 {
    margin-left: -1.125rem !important;
}

.k-ml--5 {
    margin-left: -1.25rem;
}

.\!k-ml--5 {
    margin-left: -1.25rem !important;
}

.k-ml--5\.5 {
    margin-left: -1.375rem;
}

.\!k-ml--5\.5 {
    margin-left: -1.375rem !important;
}

.k-ml--6 {
    margin-left: -1.5rem;
}

.\!k-ml--6 {
    margin-left: -1.5rem !important;
}

.k-ml--6\.5 {
    margin-left: -1.625rem;
}

.\!k-ml--6\.5 {
    margin-left: -1.625rem !important;
}

.k-ml--7 {
    margin-left: -1.75rem;
}

.\!k-ml--7 {
    margin-left: -1.75rem !important;
}

.k-ml--7\.5 {
    margin-left: -1.875rem;
}

.\!k-ml--7\.5 {
    margin-left: -1.875rem !important;
}

.k-ml--8 {
    margin-left: -2rem;
}

.\!k-ml--8 {
    margin-left: -2rem !important;
}

.k-ml--9 {
    margin-left: -2.25rem;
}

.\!k-ml--9 {
    margin-left: -2.25rem !important;
}

.k-ml--10 {
    margin-left: -2.5rem;
}

.\!k-ml--10 {
    margin-left: -2.5rem !important;
}

.k-ml--11 {
    margin-left: -2.75rem;
}

.\!k-ml--11 {
    margin-left: -2.75rem !important;
}

.k-ml--12 {
    margin-left: -3rem;
}

.\!k-ml--12 {
    margin-left: -3rem !important;
}

.k-ml--13 {
    margin-left: -3.25rem;
}

.\!k-ml--13 {
    margin-left: -3.25rem !important;
}

.k-ml--14 {
    margin-left: -3.5rem;
}

.\!k-ml--14 {
    margin-left: -3.5rem !important;
}

.k-ml--15 {
    margin-left: -3.75rem;
}

.\!k-ml--15 {
    margin-left: -3.75rem !important;
}

.k-ml--16 {
    margin-left: -4rem;
}

.\!k-ml--16 {
    margin-left: -4rem !important;
}

.k-ml--17 {
    margin-left: -4.25rem;
}

.\!k-ml--17 {
    margin-left: -4.25rem !important;
}

.k-ml--18 {
    margin-left: -4.5rem;
}

.\!k-ml--18 {
    margin-left: -4.5rem !important;
}

.k-ml--19 {
    margin-left: -4.75rem;
}

.\!k-ml--19 {
    margin-left: -4.75rem !important;
}

.k-ml--20 {
    margin-left: -5rem;
}

.\!k-ml--20 {
    margin-left: -5rem !important;
}

.k-ml--21 {
    margin-left: -5.25rem;
}

.\!k-ml--21 {
    margin-left: -5.25rem !important;
}

.k-ml--22 {
    margin-left: -5.5rem;
}

.\!k-ml--22 {
    margin-left: -5.5rem !important;
}

.k-ml--23 {
    margin-left: -5.75rem;
}

.\!k-ml--23 {
    margin-left: -5.75rem !important;
}

.k-ml--24 {
    margin-left: -6rem;
}

.\!k-ml--24 {
    margin-left: -6rem !important;
}

.k-ml-xs {
    margin-left: 0.25rem;
}

.\!k-ml-xs {
    margin-left: 0.25rem !important;
}

.k-ml-sm {
    margin-left: 0.5rem;
}

.\!k-ml-sm {
    margin-left: 0.5rem !important;
}

.k-ml-md {
    margin-left: 0.75rem;
}

.\!k-ml-md {
    margin-left: 0.75rem !important;
}

.k-ml-lg {
    margin-left: 1rem;
}

.\!k-ml-lg {
    margin-left: 1rem !important;
}

.k-ml-xl {
    margin-left: 1.5rem;
}

.\!k-ml-xl {
    margin-left: 1.5rem !important;
}

.k-ml-thin {
    margin-left: 0.125rem;
}

.\!k-ml-thin {
    margin-left: 0.125rem !important;
}

.k-ml-hair {
    margin-left: 1px;
}

.\!k-ml-hair {
    margin-left: 1px !important;
}

.k-ml-auto {
    margin-left: auto;
}

.\!k-ml-auto {
    margin-left: auto !important;
}

.k-mx-0 {
    margin-inline: 0;
}

.\!k-mx-0 {
    margin-inline: 0 !important;
}

.k-mx-1px {
    margin-inline: 1px;
}

.\!k-mx-1px {
    margin-inline: 1px !important;
}

.k-mx-0\.5 {
    margin-inline: 0.125rem;
}

.\!k-mx-0\.5 {
    margin-inline: 0.125rem !important;
}

.k-mx-1 {
    margin-inline: 0.25rem;
}

.\!k-mx-1 {
    margin-inline: 0.25rem !important;
}

.k-mx-1\.5 {
    margin-inline: 0.375rem;
}

.\!k-mx-1\.5 {
    margin-inline: 0.375rem !important;
}

.k-mx-2 {
    margin-inline: 0.5rem;
}

.\!k-mx-2 {
    margin-inline: 0.5rem !important;
}

.k-mx-2\.5 {
    margin-inline: 0.625rem;
}

.\!k-mx-2\.5 {
    margin-inline: 0.625rem !important;
}

.k-mx-3 {
    margin-inline: 0.75rem;
}

.\!k-mx-3 {
    margin-inline: 0.75rem !important;
}

.k-mx-3\.5 {
    margin-inline: 0.875rem;
}

.\!k-mx-3\.5 {
    margin-inline: 0.875rem !important;
}

.k-mx-4 {
    margin-inline: 1rem;
}

.\!k-mx-4 {
    margin-inline: 1rem !important;
}

.k-mx-4\.5 {
    margin-inline: 1.125rem;
}

.\!k-mx-4\.5 {
    margin-inline: 1.125rem !important;
}

.k-mx-5 {
    margin-inline: 1.25rem;
}

.\!k-mx-5 {
    margin-inline: 1.25rem !important;
}

.k-mx-5\.5 {
    margin-inline: 1.375rem;
}

.\!k-mx-5\.5 {
    margin-inline: 1.375rem !important;
}

.k-mx-6 {
    margin-inline: 1.5rem;
}

.\!k-mx-6 {
    margin-inline: 1.5rem !important;
}

.k-mx-6\.5 {
    margin-inline: 1.625rem;
}

.\!k-mx-6\.5 {
    margin-inline: 1.625rem !important;
}

.k-mx-7 {
    margin-inline: 1.75rem;
}

.\!k-mx-7 {
    margin-inline: 1.75rem !important;
}

.k-mx-7\.5 {
    margin-inline: 1.875rem;
}

.\!k-mx-7\.5 {
    margin-inline: 1.875rem !important;
}

.k-mx-8 {
    margin-inline: 2rem;
}

.\!k-mx-8 {
    margin-inline: 2rem !important;
}

.k-mx-9 {
    margin-inline: 2.25rem;
}

.\!k-mx-9 {
    margin-inline: 2.25rem !important;
}

.k-mx-10 {
    margin-inline: 2.5rem;
}

.\!k-mx-10 {
    margin-inline: 2.5rem !important;
}

.k-mx-11 {
    margin-inline: 2.75rem;
}

.\!k-mx-11 {
    margin-inline: 2.75rem !important;
}

.k-mx-12 {
    margin-inline: 3rem;
}

.\!k-mx-12 {
    margin-inline: 3rem !important;
}

.k-mx-13 {
    margin-inline: 3.25rem;
}

.\!k-mx-13 {
    margin-inline: 3.25rem !important;
}

.k-mx-14 {
    margin-inline: 3.5rem;
}

.\!k-mx-14 {
    margin-inline: 3.5rem !important;
}

.k-mx-15 {
    margin-inline: 3.75rem;
}

.\!k-mx-15 {
    margin-inline: 3.75rem !important;
}

.k-mx-16 {
    margin-inline: 4rem;
}

.\!k-mx-16 {
    margin-inline: 4rem !important;
}

.k-mx-17 {
    margin-inline: 4.25rem;
}

.\!k-mx-17 {
    margin-inline: 4.25rem !important;
}

.k-mx-18 {
    margin-inline: 4.5rem;
}

.\!k-mx-18 {
    margin-inline: 4.5rem !important;
}

.k-mx-19 {
    margin-inline: 4.75rem;
}

.\!k-mx-19 {
    margin-inline: 4.75rem !important;
}

.k-mx-20 {
    margin-inline: 5rem;
}

.\!k-mx-20 {
    margin-inline: 5rem !important;
}

.k-mx-21 {
    margin-inline: 5.25rem;
}

.\!k-mx-21 {
    margin-inline: 5.25rem !important;
}

.k-mx-22 {
    margin-inline: 5.5rem;
}

.\!k-mx-22 {
    margin-inline: 5.5rem !important;
}

.k-mx-23 {
    margin-inline: 5.75rem;
}

.\!k-mx-23 {
    margin-inline: 5.75rem !important;
}

.k-mx-24 {
    margin-inline: 6rem;
}

.\!k-mx-24 {
    margin-inline: 6rem !important;
}

.k-mx--1px {
    margin-inline: -1px;
}

.\!k-mx--1px {
    margin-inline: -1px !important;
}

.k-mx--0\.5 {
    margin-inline: -0.125rem;
}

.\!k-mx--0\.5 {
    margin-inline: -0.125rem !important;
}

.k-mx--1 {
    margin-inline: -0.25rem;
}

.\!k-mx--1 {
    margin-inline: -0.25rem !important;
}

.k-mx--1\.5 {
    margin-inline: -0.375rem;
}

.\!k-mx--1\.5 {
    margin-inline: -0.375rem !important;
}

.k-mx--2 {
    margin-inline: -0.5rem;
}

.\!k-mx--2 {
    margin-inline: -0.5rem !important;
}

.k-mx--2\.5 {
    margin-inline: -0.625rem;
}

.\!k-mx--2\.5 {
    margin-inline: -0.625rem !important;
}

.k-mx--3 {
    margin-inline: -0.75rem;
}

.\!k-mx--3 {
    margin-inline: -0.75rem !important;
}

.k-mx--3\.5 {
    margin-inline: -0.875rem;
}

.\!k-mx--3\.5 {
    margin-inline: -0.875rem !important;
}

.k-mx--4 {
    margin-inline: -1rem;
}

.\!k-mx--4 {
    margin-inline: -1rem !important;
}

.k-mx--4\.5 {
    margin-inline: -1.125rem;
}

.\!k-mx--4\.5 {
    margin-inline: -1.125rem !important;
}

.k-mx--5 {
    margin-inline: -1.25rem;
}

.\!k-mx--5 {
    margin-inline: -1.25rem !important;
}

.k-mx--5\.5 {
    margin-inline: -1.375rem;
}

.\!k-mx--5\.5 {
    margin-inline: -1.375rem !important;
}

.k-mx--6 {
    margin-inline: -1.5rem;
}

.\!k-mx--6 {
    margin-inline: -1.5rem !important;
}

.k-mx--6\.5 {
    margin-inline: -1.625rem;
}

.\!k-mx--6\.5 {
    margin-inline: -1.625rem !important;
}

.k-mx--7 {
    margin-inline: -1.75rem;
}

.\!k-mx--7 {
    margin-inline: -1.75rem !important;
}

.k-mx--7\.5 {
    margin-inline: -1.875rem;
}

.\!k-mx--7\.5 {
    margin-inline: -1.875rem !important;
}

.k-mx--8 {
    margin-inline: -2rem;
}

.\!k-mx--8 {
    margin-inline: -2rem !important;
}

.k-mx--9 {
    margin-inline: -2.25rem;
}

.\!k-mx--9 {
    margin-inline: -2.25rem !important;
}

.k-mx--10 {
    margin-inline: -2.5rem;
}

.\!k-mx--10 {
    margin-inline: -2.5rem !important;
}

.k-mx--11 {
    margin-inline: -2.75rem;
}

.\!k-mx--11 {
    margin-inline: -2.75rem !important;
}

.k-mx--12 {
    margin-inline: -3rem;
}

.\!k-mx--12 {
    margin-inline: -3rem !important;
}

.k-mx--13 {
    margin-inline: -3.25rem;
}

.\!k-mx--13 {
    margin-inline: -3.25rem !important;
}

.k-mx--14 {
    margin-inline: -3.5rem;
}

.\!k-mx--14 {
    margin-inline: -3.5rem !important;
}

.k-mx--15 {
    margin-inline: -3.75rem;
}

.\!k-mx--15 {
    margin-inline: -3.75rem !important;
}

.k-mx--16 {
    margin-inline: -4rem;
}

.\!k-mx--16 {
    margin-inline: -4rem !important;
}

.k-mx--17 {
    margin-inline: -4.25rem;
}

.\!k-mx--17 {
    margin-inline: -4.25rem !important;
}

.k-mx--18 {
    margin-inline: -4.5rem;
}

.\!k-mx--18 {
    margin-inline: -4.5rem !important;
}

.k-mx--19 {
    margin-inline: -4.75rem;
}

.\!k-mx--19 {
    margin-inline: -4.75rem !important;
}

.k-mx--20 {
    margin-inline: -5rem;
}

.\!k-mx--20 {
    margin-inline: -5rem !important;
}

.k-mx--21 {
    margin-inline: -5.25rem;
}

.\!k-mx--21 {
    margin-inline: -5.25rem !important;
}

.k-mx--22 {
    margin-inline: -5.5rem;
}

.\!k-mx--22 {
    margin-inline: -5.5rem !important;
}

.k-mx--23 {
    margin-inline: -5.75rem;
}

.\!k-mx--23 {
    margin-inline: -5.75rem !important;
}

.k-mx--24 {
    margin-inline: -6rem;
}

.\!k-mx--24 {
    margin-inline: -6rem !important;
}

.k-mx-xs {
    margin-inline: 0.25rem;
}

.\!k-mx-xs {
    margin-inline: 0.25rem !important;
}

.k-mx-sm {
    margin-inline: 0.5rem;
}

.\!k-mx-sm {
    margin-inline: 0.5rem !important;
}

.k-mx-md {
    margin-inline: 0.75rem;
}

.\!k-mx-md {
    margin-inline: 0.75rem !important;
}

.k-mx-lg {
    margin-inline: 1rem;
}

.\!k-mx-lg {
    margin-inline: 1rem !important;
}

.k-mx-xl {
    margin-inline: 1.5rem;
}

.\!k-mx-xl {
    margin-inline: 1.5rem !important;
}

.k-mx-thin {
    margin-inline: 0.125rem;
}

.\!k-mx-thin {
    margin-inline: 0.125rem !important;
}

.k-mx-hair {
    margin-inline: 1px;
}

.\!k-mx-hair {
    margin-inline: 1px !important;
}

.k-mx-auto {
    margin-inline: auto;
}

.\!k-mx-auto {
    margin-inline: auto !important;
}

.k-my-0 {
    margin-block: 0;
}

.\!k-my-0 {
    margin-block: 0 !important;
}

.k-my-1px {
    margin-block: 1px;
}

.\!k-my-1px {
    margin-block: 1px !important;
}

.k-my-0\.5 {
    margin-block: 0.125rem;
}

.\!k-my-0\.5 {
    margin-block: 0.125rem !important;
}

.k-my-1 {
    margin-block: 0.25rem;
}

.\!k-my-1 {
    margin-block: 0.25rem !important;
}

.k-my-1\.5 {
    margin-block: 0.375rem;
}

.\!k-my-1\.5 {
    margin-block: 0.375rem !important;
}

.k-my-2 {
    margin-block: 0.5rem;
}

.\!k-my-2 {
    margin-block: 0.5rem !important;
}

.k-my-2\.5 {
    margin-block: 0.625rem;
}

.\!k-my-2\.5 {
    margin-block: 0.625rem !important;
}

.k-my-3 {
    margin-block: 0.75rem;
}

.\!k-my-3 {
    margin-block: 0.75rem !important;
}

.k-my-3\.5 {
    margin-block: 0.875rem;
}

.\!k-my-3\.5 {
    margin-block: 0.875rem !important;
}

.k-my-4 {
    margin-block: 1rem;
}

.\!k-my-4 {
    margin-block: 1rem !important;
}

.k-my-4\.5 {
    margin-block: 1.125rem;
}

.\!k-my-4\.5 {
    margin-block: 1.125rem !important;
}

.k-my-5 {
    margin-block: 1.25rem;
}

.\!k-my-5 {
    margin-block: 1.25rem !important;
}

.k-my-5\.5 {
    margin-block: 1.375rem;
}

.\!k-my-5\.5 {
    margin-block: 1.375rem !important;
}

.k-my-6 {
    margin-block: 1.5rem;
}

.\!k-my-6 {
    margin-block: 1.5rem !important;
}

.k-my-6\.5 {
    margin-block: 1.625rem;
}

.\!k-my-6\.5 {
    margin-block: 1.625rem !important;
}

.k-my-7 {
    margin-block: 1.75rem;
}

.\!k-my-7 {
    margin-block: 1.75rem !important;
}

.k-my-7\.5 {
    margin-block: 1.875rem;
}

.\!k-my-7\.5 {
    margin-block: 1.875rem !important;
}

.k-my-8 {
    margin-block: 2rem;
}

.\!k-my-8 {
    margin-block: 2rem !important;
}

.k-my-9 {
    margin-block: 2.25rem;
}

.\!k-my-9 {
    margin-block: 2.25rem !important;
}

.k-my-10 {
    margin-block: 2.5rem;
}

.\!k-my-10 {
    margin-block: 2.5rem !important;
}

.k-my-11 {
    margin-block: 2.75rem;
}

.\!k-my-11 {
    margin-block: 2.75rem !important;
}

.k-my-12 {
    margin-block: 3rem;
}

.\!k-my-12 {
    margin-block: 3rem !important;
}

.k-my-13 {
    margin-block: 3.25rem;
}

.\!k-my-13 {
    margin-block: 3.25rem !important;
}

.k-my-14 {
    margin-block: 3.5rem;
}

.\!k-my-14 {
    margin-block: 3.5rem !important;
}

.k-my-15 {
    margin-block: 3.75rem;
}

.\!k-my-15 {
    margin-block: 3.75rem !important;
}

.k-my-16 {
    margin-block: 4rem;
}

.\!k-my-16 {
    margin-block: 4rem !important;
}

.k-my-17 {
    margin-block: 4.25rem;
}

.\!k-my-17 {
    margin-block: 4.25rem !important;
}

.k-my-18 {
    margin-block: 4.5rem;
}

.\!k-my-18 {
    margin-block: 4.5rem !important;
}

.k-my-19 {
    margin-block: 4.75rem;
}

.\!k-my-19 {
    margin-block: 4.75rem !important;
}

.k-my-20 {
    margin-block: 5rem;
}

.\!k-my-20 {
    margin-block: 5rem !important;
}

.k-my-21 {
    margin-block: 5.25rem;
}

.\!k-my-21 {
    margin-block: 5.25rem !important;
}

.k-my-22 {
    margin-block: 5.5rem;
}

.\!k-my-22 {
    margin-block: 5.5rem !important;
}

.k-my-23 {
    margin-block: 5.75rem;
}

.\!k-my-23 {
    margin-block: 5.75rem !important;
}

.k-my-24 {
    margin-block: 6rem;
}

.\!k-my-24 {
    margin-block: 6rem !important;
}

.k-my--1px {
    margin-block: -1px;
}

.\!k-my--1px {
    margin-block: -1px !important;
}

.k-my--0\.5 {
    margin-block: -0.125rem;
}

.\!k-my--0\.5 {
    margin-block: -0.125rem !important;
}

.k-my--1 {
    margin-block: -0.25rem;
}

.\!k-my--1 {
    margin-block: -0.25rem !important;
}

.k-my--1\.5 {
    margin-block: -0.375rem;
}

.\!k-my--1\.5 {
    margin-block: -0.375rem !important;
}

.k-my--2 {
    margin-block: -0.5rem;
}

.\!k-my--2 {
    margin-block: -0.5rem !important;
}

.k-my--2\.5 {
    margin-block: -0.625rem;
}

.\!k-my--2\.5 {
    margin-block: -0.625rem !important;
}

.k-my--3 {
    margin-block: -0.75rem;
}

.\!k-my--3 {
    margin-block: -0.75rem !important;
}

.k-my--3\.5 {
    margin-block: -0.875rem;
}

.\!k-my--3\.5 {
    margin-block: -0.875rem !important;
}

.k-my--4 {
    margin-block: -1rem;
}

.\!k-my--4 {
    margin-block: -1rem !important;
}

.k-my--4\.5 {
    margin-block: -1.125rem;
}

.\!k-my--4\.5 {
    margin-block: -1.125rem !important;
}

.k-my--5 {
    margin-block: -1.25rem;
}

.\!k-my--5 {
    margin-block: -1.25rem !important;
}

.k-my--5\.5 {
    margin-block: -1.375rem;
}

.\!k-my--5\.5 {
    margin-block: -1.375rem !important;
}

.k-my--6 {
    margin-block: -1.5rem;
}

.\!k-my--6 {
    margin-block: -1.5rem !important;
}

.k-my--6\.5 {
    margin-block: -1.625rem;
}

.\!k-my--6\.5 {
    margin-block: -1.625rem !important;
}

.k-my--7 {
    margin-block: -1.75rem;
}

.\!k-my--7 {
    margin-block: -1.75rem !important;
}

.k-my--7\.5 {
    margin-block: -1.875rem;
}

.\!k-my--7\.5 {
    margin-block: -1.875rem !important;
}

.k-my--8 {
    margin-block: -2rem;
}

.\!k-my--8 {
    margin-block: -2rem !important;
}

.k-my--9 {
    margin-block: -2.25rem;
}

.\!k-my--9 {
    margin-block: -2.25rem !important;
}

.k-my--10 {
    margin-block: -2.5rem;
}

.\!k-my--10 {
    margin-block: -2.5rem !important;
}

.k-my--11 {
    margin-block: -2.75rem;
}

.\!k-my--11 {
    margin-block: -2.75rem !important;
}

.k-my--12 {
    margin-block: -3rem;
}

.\!k-my--12 {
    margin-block: -3rem !important;
}

.k-my--13 {
    margin-block: -3.25rem;
}

.\!k-my--13 {
    margin-block: -3.25rem !important;
}

.k-my--14 {
    margin-block: -3.5rem;
}

.\!k-my--14 {
    margin-block: -3.5rem !important;
}

.k-my--15 {
    margin-block: -3.75rem;
}

.\!k-my--15 {
    margin-block: -3.75rem !important;
}

.k-my--16 {
    margin-block: -4rem;
}

.\!k-my--16 {
    margin-block: -4rem !important;
}

.k-my--17 {
    margin-block: -4.25rem;
}

.\!k-my--17 {
    margin-block: -4.25rem !important;
}

.k-my--18 {
    margin-block: -4.5rem;
}

.\!k-my--18 {
    margin-block: -4.5rem !important;
}

.k-my--19 {
    margin-block: -4.75rem;
}

.\!k-my--19 {
    margin-block: -4.75rem !important;
}

.k-my--20 {
    margin-block: -5rem;
}

.\!k-my--20 {
    margin-block: -5rem !important;
}

.k-my--21 {
    margin-block: -5.25rem;
}

.\!k-my--21 {
    margin-block: -5.25rem !important;
}

.k-my--22 {
    margin-block: -5.5rem;
}

.\!k-my--22 {
    margin-block: -5.5rem !important;
}

.k-my--23 {
    margin-block: -5.75rem;
}

.\!k-my--23 {
    margin-block: -5.75rem !important;
}

.k-my--24 {
    margin-block: -6rem;
}

.\!k-my--24 {
    margin-block: -6rem !important;
}

.k-my-xs {
    margin-block: 0.25rem;
}

.\!k-my-xs {
    margin-block: 0.25rem !important;
}

.k-my-sm {
    margin-block: 0.5rem;
}

.\!k-my-sm {
    margin-block: 0.5rem !important;
}

.k-my-md {
    margin-block: 0.75rem;
}

.\!k-my-md {
    margin-block: 0.75rem !important;
}

.k-my-lg {
    margin-block: 1rem;
}

.\!k-my-lg {
    margin-block: 1rem !important;
}

.k-my-xl {
    margin-block: 1.5rem;
}

.\!k-my-xl {
    margin-block: 1.5rem !important;
}

.k-my-thin {
    margin-block: 0.125rem;
}

.\!k-my-thin {
    margin-block: 0.125rem !important;
}

.k-my-hair {
    margin-block: 1px;
}

.\!k-my-hair {
    margin-block: 1px !important;
}

.k-my-auto {
    margin-block: auto;
}

.\!k-my-auto {
    margin-block: auto !important;
}

.k-p-0 {
    padding: 0;
}

.\!k-p-0 {
    padding: 0 !important;
}

.k-p-1px {
    padding: 1px;
}

.\!k-p-1px {
    padding: 1px !important;
}

.k-p-0\.5 {
    padding: 0.125rem;
}

.\!k-p-0\.5 {
    padding: 0.125rem !important;
}

.k-p-1 {
    padding: 0.25rem;
}

.\!k-p-1 {
    padding: 0.25rem !important;
}

.k-p-1\.5 {
    padding: 0.375rem;
}

.\!k-p-1\.5 {
    padding: 0.375rem !important;
}

.k-p-2 {
    padding: 0.5rem;
}

.\!k-p-2 {
    padding: 0.5rem !important;
}

.k-p-2\.5 {
    padding: 0.625rem;
}

.\!k-p-2\.5 {
    padding: 0.625rem !important;
}

.k-p-3 {
    padding: 0.75rem;
}

.\!k-p-3 {
    padding: 0.75rem !important;
}

.k-p-3\.5 {
    padding: 0.875rem;
}

.\!k-p-3\.5 {
    padding: 0.875rem !important;
}

.k-p-4 {
    padding: 1rem;
}

.\!k-p-4 {
    padding: 1rem !important;
}

.k-p-4\.5 {
    padding: 1.125rem;
}

.\!k-p-4\.5 {
    padding: 1.125rem !important;
}

.k-p-5 {
    padding: 1.25rem;
}

.\!k-p-5 {
    padding: 1.25rem !important;
}

.k-p-5\.5 {
    padding: 1.375rem;
}

.\!k-p-5\.5 {
    padding: 1.375rem !important;
}

.k-p-6 {
    padding: 1.5rem;
}

.\!k-p-6 {
    padding: 1.5rem !important;
}

.k-p-6\.5 {
    padding: 1.625rem;
}

.\!k-p-6\.5 {
    padding: 1.625rem !important;
}

.k-p-7 {
    padding: 1.75rem;
}

.\!k-p-7 {
    padding: 1.75rem !important;
}

.k-p-7\.5 {
    padding: 1.875rem;
}

.\!k-p-7\.5 {
    padding: 1.875rem !important;
}

.k-p-8 {
    padding: 2rem;
}

.\!k-p-8 {
    padding: 2rem !important;
}

.k-p-9 {
    padding: 2.25rem;
}

.\!k-p-9 {
    padding: 2.25rem !important;
}

.k-p-10 {
    padding: 2.5rem;
}

.\!k-p-10 {
    padding: 2.5rem !important;
}

.k-p-11 {
    padding: 2.75rem;
}

.\!k-p-11 {
    padding: 2.75rem !important;
}

.k-p-12 {
    padding: 3rem;
}

.\!k-p-12 {
    padding: 3rem !important;
}

.k-p-13 {
    padding: 3.25rem;
}

.\!k-p-13 {
    padding: 3.25rem !important;
}

.k-p-14 {
    padding: 3.5rem;
}

.\!k-p-14 {
    padding: 3.5rem !important;
}

.k-p-15 {
    padding: 3.75rem;
}

.\!k-p-15 {
    padding: 3.75rem !important;
}

.k-p-16 {
    padding: 4rem;
}

.\!k-p-16 {
    padding: 4rem !important;
}

.k-p-17 {
    padding: 4.25rem;
}

.\!k-p-17 {
    padding: 4.25rem !important;
}

.k-p-18 {
    padding: 4.5rem;
}

.\!k-p-18 {
    padding: 4.5rem !important;
}

.k-p-19 {
    padding: 4.75rem;
}

.\!k-p-19 {
    padding: 4.75rem !important;
}

.k-p-20 {
    padding: 5rem;
}

.\!k-p-20 {
    padding: 5rem !important;
}

.k-p-21 {
    padding: 5.25rem;
}

.\!k-p-21 {
    padding: 5.25rem !important;
}

.k-p-22 {
    padding: 5.5rem;
}

.\!k-p-22 {
    padding: 5.5rem !important;
}

.k-p-23 {
    padding: 5.75rem;
}

.\!k-p-23 {
    padding: 5.75rem !important;
}

.k-p-24 {
    padding: 6rem;
}

.\!k-p-24 {
    padding: 6rem !important;
}

.k-p-xs {
    padding: 0.25rem;
}

.\!k-p-xs {
    padding: 0.25rem !important;
}

.k-p-sm {
    padding: 0.5rem;
}

.\!k-p-sm {
    padding: 0.5rem !important;
}

.k-p-md {
    padding: 0.75rem;
}

.\!k-p-md {
    padding: 0.75rem !important;
}

.k-p-lg {
    padding: 1rem;
}

.\!k-p-lg {
    padding: 1rem !important;
}

.k-p-xl {
    padding: 1.5rem;
}

.\!k-p-xl {
    padding: 1.5rem !important;
}

.k-p-thin {
    padding: 0.125rem;
}

.\!k-p-thin {
    padding: 0.125rem !important;
}

.k-p-hair {
    padding: 1px;
}

.\!k-p-hair {
    padding: 1px !important;
}

.k-pt-0 {
    padding-top: 0;
}

.\!k-pt-0 {
    padding-top: 0 !important;
}

.k-pt-1px {
    padding-top: 1px;
}

.\!k-pt-1px {
    padding-top: 1px !important;
}

.k-pt-0\.5 {
    padding-top: 0.125rem;
}

.\!k-pt-0\.5 {
    padding-top: 0.125rem !important;
}

.k-pt-1 {
    padding-top: 0.25rem;
}

.\!k-pt-1 {
    padding-top: 0.25rem !important;
}

.k-pt-1\.5 {
    padding-top: 0.375rem;
}

.\!k-pt-1\.5 {
    padding-top: 0.375rem !important;
}

.k-pt-2 {
    padding-top: 0.5rem;
}

.\!k-pt-2 {
    padding-top: 0.5rem !important;
}

.k-pt-2\.5 {
    padding-top: 0.625rem;
}

.\!k-pt-2\.5 {
    padding-top: 0.625rem !important;
}

.k-pt-3 {
    padding-top: 0.75rem;
}

.\!k-pt-3 {
    padding-top: 0.75rem !important;
}

.k-pt-3\.5 {
    padding-top: 0.875rem;
}

.\!k-pt-3\.5 {
    padding-top: 0.875rem !important;
}

.k-pt-4 {
    padding-top: 1rem;
}

.\!k-pt-4 {
    padding-top: 1rem !important;
}

.k-pt-4\.5 {
    padding-top: 1.125rem;
}

.\!k-pt-4\.5 {
    padding-top: 1.125rem !important;
}

.k-pt-5 {
    padding-top: 1.25rem;
}

.\!k-pt-5 {
    padding-top: 1.25rem !important;
}

.k-pt-5\.5 {
    padding-top: 1.375rem;
}

.\!k-pt-5\.5 {
    padding-top: 1.375rem !important;
}

.k-pt-6 {
    padding-top: 1.5rem;
}

.\!k-pt-6 {
    padding-top: 1.5rem !important;
}

.k-pt-6\.5 {
    padding-top: 1.625rem;
}

.\!k-pt-6\.5 {
    padding-top: 1.625rem !important;
}

.k-pt-7 {
    padding-top: 1.75rem;
}

.\!k-pt-7 {
    padding-top: 1.75rem !important;
}

.k-pt-7\.5 {
    padding-top: 1.875rem;
}

.\!k-pt-7\.5 {
    padding-top: 1.875rem !important;
}

.k-pt-8 {
    padding-top: 2rem;
}

.\!k-pt-8 {
    padding-top: 2rem !important;
}

.k-pt-9 {
    padding-top: 2.25rem;
}

.\!k-pt-9 {
    padding-top: 2.25rem !important;
}

.k-pt-10 {
    padding-top: 2.5rem;
}

.\!k-pt-10 {
    padding-top: 2.5rem !important;
}

.k-pt-11 {
    padding-top: 2.75rem;
}

.\!k-pt-11 {
    padding-top: 2.75rem !important;
}

.k-pt-12 {
    padding-top: 3rem;
}

.\!k-pt-12 {
    padding-top: 3rem !important;
}

.k-pt-13 {
    padding-top: 3.25rem;
}

.\!k-pt-13 {
    padding-top: 3.25rem !important;
}

.k-pt-14 {
    padding-top: 3.5rem;
}

.\!k-pt-14 {
    padding-top: 3.5rem !important;
}

.k-pt-15 {
    padding-top: 3.75rem;
}

.\!k-pt-15 {
    padding-top: 3.75rem !important;
}

.k-pt-16 {
    padding-top: 4rem;
}

.\!k-pt-16 {
    padding-top: 4rem !important;
}

.k-pt-17 {
    padding-top: 4.25rem;
}

.\!k-pt-17 {
    padding-top: 4.25rem !important;
}

.k-pt-18 {
    padding-top: 4.5rem;
}

.\!k-pt-18 {
    padding-top: 4.5rem !important;
}

.k-pt-19 {
    padding-top: 4.75rem;
}

.\!k-pt-19 {
    padding-top: 4.75rem !important;
}

.k-pt-20 {
    padding-top: 5rem;
}

.\!k-pt-20 {
    padding-top: 5rem !important;
}

.k-pt-21 {
    padding-top: 5.25rem;
}

.\!k-pt-21 {
    padding-top: 5.25rem !important;
}

.k-pt-22 {
    padding-top: 5.5rem;
}

.\!k-pt-22 {
    padding-top: 5.5rem !important;
}

.k-pt-23 {
    padding-top: 5.75rem;
}

.\!k-pt-23 {
    padding-top: 5.75rem !important;
}

.k-pt-24 {
    padding-top: 6rem;
}

.\!k-pt-24 {
    padding-top: 6rem !important;
}

.k-pt-xs {
    padding-top: 0.25rem;
}

.\!k-pt-xs {
    padding-top: 0.25rem !important;
}

.k-pt-sm {
    padding-top: 0.5rem;
}

.\!k-pt-sm {
    padding-top: 0.5rem !important;
}

.k-pt-md {
    padding-top: 0.75rem;
}

.\!k-pt-md {
    padding-top: 0.75rem !important;
}

.k-pt-lg {
    padding-top: 1rem;
}

.\!k-pt-lg {
    padding-top: 1rem !important;
}

.k-pt-xl {
    padding-top: 1.5rem;
}

.\!k-pt-xl {
    padding-top: 1.5rem !important;
}

.k-pt-thin {
    padding-top: 0.125rem;
}

.\!k-pt-thin {
    padding-top: 0.125rem !important;
}

.k-pt-hair {
    padding-top: 1px;
}

.\!k-pt-hair {
    padding-top: 1px !important;
}

.k-pr-0 {
    padding-right: 0;
}

.\!k-pr-0 {
    padding-right: 0 !important;
}

.k-pr-1px {
    padding-right: 1px;
}

.\!k-pr-1px {
    padding-right: 1px !important;
}

.k-pr-0\.5 {
    padding-right: 0.125rem;
}

.\!k-pr-0\.5 {
    padding-right: 0.125rem !important;
}

.k-pr-1 {
    padding-right: 0.25rem;
}

.\!k-pr-1 {
    padding-right: 0.25rem !important;
}

.k-pr-1\.5 {
    padding-right: 0.375rem;
}

.\!k-pr-1\.5 {
    padding-right: 0.375rem !important;
}

.k-pr-2 {
    padding-right: 0.5rem;
}

.\!k-pr-2 {
    padding-right: 0.5rem !important;
}

.k-pr-2\.5 {
    padding-right: 0.625rem;
}

.\!k-pr-2\.5 {
    padding-right: 0.625rem !important;
}

.k-pr-3 {
    padding-right: 0.75rem;
}

.\!k-pr-3 {
    padding-right: 0.75rem !important;
}

.k-pr-3\.5 {
    padding-right: 0.875rem;
}

.\!k-pr-3\.5 {
    padding-right: 0.875rem !important;
}

.k-pr-4 {
    padding-right: 1rem;
}

.\!k-pr-4 {
    padding-right: 1rem !important;
}

.k-pr-4\.5 {
    padding-right: 1.125rem;
}

.\!k-pr-4\.5 {
    padding-right: 1.125rem !important;
}

.k-pr-5 {
    padding-right: 1.25rem;
}

.\!k-pr-5 {
    padding-right: 1.25rem !important;
}

.k-pr-5\.5 {
    padding-right: 1.375rem;
}

.\!k-pr-5\.5 {
    padding-right: 1.375rem !important;
}

.k-pr-6 {
    padding-right: 1.5rem;
}

.\!k-pr-6 {
    padding-right: 1.5rem !important;
}

.k-pr-6\.5 {
    padding-right: 1.625rem;
}

.\!k-pr-6\.5 {
    padding-right: 1.625rem !important;
}

.k-pr-7 {
    padding-right: 1.75rem;
}

.\!k-pr-7 {
    padding-right: 1.75rem !important;
}

.k-pr-7\.5 {
    padding-right: 1.875rem;
}

.\!k-pr-7\.5 {
    padding-right: 1.875rem !important;
}

.k-pr-8 {
    padding-right: 2rem;
}

.\!k-pr-8 {
    padding-right: 2rem !important;
}

.k-pr-9 {
    padding-right: 2.25rem;
}

.\!k-pr-9 {
    padding-right: 2.25rem !important;
}

.k-pr-10 {
    padding-right: 2.5rem;
}

.\!k-pr-10 {
    padding-right: 2.5rem !important;
}

.k-pr-11 {
    padding-right: 2.75rem;
}

.\!k-pr-11 {
    padding-right: 2.75rem !important;
}

.k-pr-12 {
    padding-right: 3rem;
}

.\!k-pr-12 {
    padding-right: 3rem !important;
}

.k-pr-13 {
    padding-right: 3.25rem;
}

.\!k-pr-13 {
    padding-right: 3.25rem !important;
}

.k-pr-14 {
    padding-right: 3.5rem;
}

.\!k-pr-14 {
    padding-right: 3.5rem !important;
}

.k-pr-15 {
    padding-right: 3.75rem;
}

.\!k-pr-15 {
    padding-right: 3.75rem !important;
}

.k-pr-16 {
    padding-right: 4rem;
}

.\!k-pr-16 {
    padding-right: 4rem !important;
}

.k-pr-17 {
    padding-right: 4.25rem;
}

.\!k-pr-17 {
    padding-right: 4.25rem !important;
}

.k-pr-18 {
    padding-right: 4.5rem;
}

.\!k-pr-18 {
    padding-right: 4.5rem !important;
}

.k-pr-19 {
    padding-right: 4.75rem;
}

.\!k-pr-19 {
    padding-right: 4.75rem !important;
}

.k-pr-20 {
    padding-right: 5rem;
}

.\!k-pr-20 {
    padding-right: 5rem !important;
}

.k-pr-21 {
    padding-right: 5.25rem;
}

.\!k-pr-21 {
    padding-right: 5.25rem !important;
}

.k-pr-22 {
    padding-right: 5.5rem;
}

.\!k-pr-22 {
    padding-right: 5.5rem !important;
}

.k-pr-23 {
    padding-right: 5.75rem;
}

.\!k-pr-23 {
    padding-right: 5.75rem !important;
}

.k-pr-24 {
    padding-right: 6rem;
}

.\!k-pr-24 {
    padding-right: 6rem !important;
}

.k-pr-xs {
    padding-right: 0.25rem;
}

.\!k-pr-xs {
    padding-right: 0.25rem !important;
}

.k-pr-sm {
    padding-right: 0.5rem;
}

.\!k-pr-sm {
    padding-right: 0.5rem !important;
}

.k-pr-md {
    padding-right: 0.75rem;
}

.\!k-pr-md {
    padding-right: 0.75rem !important;
}

.k-pr-lg {
    padding-right: 1rem;
}

.\!k-pr-lg {
    padding-right: 1rem !important;
}

.k-pr-xl {
    padding-right: 1.5rem;
}

.\!k-pr-xl {
    padding-right: 1.5rem !important;
}

.k-pr-thin {
    padding-right: 0.125rem;
}

.\!k-pr-thin {
    padding-right: 0.125rem !important;
}

.k-pr-hair {
    padding-right: 1px;
}

.\!k-pr-hair {
    padding-right: 1px !important;
}

.k-pb-0 {
    padding-bottom: 0;
}

.\!k-pb-0 {
    padding-bottom: 0 !important;
}

.k-pb-1px {
    padding-bottom: 1px;
}

.\!k-pb-1px {
    padding-bottom: 1px !important;
}

.k-pb-0\.5 {
    padding-bottom: 0.125rem;
}

.\!k-pb-0\.5 {
    padding-bottom: 0.125rem !important;
}

.k-pb-1 {
    padding-bottom: 0.25rem;
}

.\!k-pb-1 {
    padding-bottom: 0.25rem !important;
}

.k-pb-1\.5 {
    padding-bottom: 0.375rem;
}

.\!k-pb-1\.5 {
    padding-bottom: 0.375rem !important;
}

.k-pb-2 {
    padding-bottom: 0.5rem;
}

.\!k-pb-2 {
    padding-bottom: 0.5rem !important;
}

.k-pb-2\.5 {
    padding-bottom: 0.625rem;
}

.\!k-pb-2\.5 {
    padding-bottom: 0.625rem !important;
}

.k-pb-3 {
    padding-bottom: 0.75rem;
}

.\!k-pb-3 {
    padding-bottom: 0.75rem !important;
}

.k-pb-3\.5 {
    padding-bottom: 0.875rem;
}

.\!k-pb-3\.5 {
    padding-bottom: 0.875rem !important;
}

.k-pb-4 {
    padding-bottom: 1rem;
}

.\!k-pb-4 {
    padding-bottom: 1rem !important;
}

.k-pb-4\.5 {
    padding-bottom: 1.125rem;
}

.\!k-pb-4\.5 {
    padding-bottom: 1.125rem !important;
}

.k-pb-5 {
    padding-bottom: 1.25rem;
}

.\!k-pb-5 {
    padding-bottom: 1.25rem !important;
}

.k-pb-5\.5 {
    padding-bottom: 1.375rem;
}

.\!k-pb-5\.5 {
    padding-bottom: 1.375rem !important;
}

.k-pb-6 {
    padding-bottom: 1.5rem;
}

.\!k-pb-6 {
    padding-bottom: 1.5rem !important;
}

.k-pb-6\.5 {
    padding-bottom: 1.625rem;
}

.\!k-pb-6\.5 {
    padding-bottom: 1.625rem !important;
}

.k-pb-7 {
    padding-bottom: 1.75rem;
}

.\!k-pb-7 {
    padding-bottom: 1.75rem !important;
}

.k-pb-7\.5 {
    padding-bottom: 1.875rem;
}

.\!k-pb-7\.5 {
    padding-bottom: 1.875rem !important;
}

.k-pb-8 {
    padding-bottom: 2rem;
}

.\!k-pb-8 {
    padding-bottom: 2rem !important;
}

.k-pb-9 {
    padding-bottom: 2.25rem;
}

.\!k-pb-9 {
    padding-bottom: 2.25rem !important;
}

.k-pb-10 {
    padding-bottom: 2.5rem;
}

.\!k-pb-10 {
    padding-bottom: 2.5rem !important;
}

.k-pb-11 {
    padding-bottom: 2.75rem;
}

.\!k-pb-11 {
    padding-bottom: 2.75rem !important;
}

.k-pb-12 {
    padding-bottom: 3rem;
}

.\!k-pb-12 {
    padding-bottom: 3rem !important;
}

.k-pb-13 {
    padding-bottom: 3.25rem;
}

.\!k-pb-13 {
    padding-bottom: 3.25rem !important;
}

.k-pb-14 {
    padding-bottom: 3.5rem;
}

.\!k-pb-14 {
    padding-bottom: 3.5rem !important;
}

.k-pb-15 {
    padding-bottom: 3.75rem;
}

.\!k-pb-15 {
    padding-bottom: 3.75rem !important;
}

.k-pb-16 {
    padding-bottom: 4rem;
}

.\!k-pb-16 {
    padding-bottom: 4rem !important;
}

.k-pb-17 {
    padding-bottom: 4.25rem;
}

.\!k-pb-17 {
    padding-bottom: 4.25rem !important;
}

.k-pb-18 {
    padding-bottom: 4.5rem;
}

.\!k-pb-18 {
    padding-bottom: 4.5rem !important;
}

.k-pb-19 {
    padding-bottom: 4.75rem;
}

.\!k-pb-19 {
    padding-bottom: 4.75rem !important;
}

.k-pb-20 {
    padding-bottom: 5rem;
}

.\!k-pb-20 {
    padding-bottom: 5rem !important;
}

.k-pb-21 {
    padding-bottom: 5.25rem;
}

.\!k-pb-21 {
    padding-bottom: 5.25rem !important;
}

.k-pb-22 {
    padding-bottom: 5.5rem;
}

.\!k-pb-22 {
    padding-bottom: 5.5rem !important;
}

.k-pb-23 {
    padding-bottom: 5.75rem;
}

.\!k-pb-23 {
    padding-bottom: 5.75rem !important;
}

.k-pb-24 {
    padding-bottom: 6rem;
}

.\!k-pb-24 {
    padding-bottom: 6rem !important;
}

.k-pb-xs {
    padding-bottom: 0.25rem;
}

.\!k-pb-xs {
    padding-bottom: 0.25rem !important;
}

.k-pb-sm {
    padding-bottom: 0.5rem;
}

.\!k-pb-sm {
    padding-bottom: 0.5rem !important;
}

.k-pb-md {
    padding-bottom: 0.75rem;
}

.\!k-pb-md {
    padding-bottom: 0.75rem !important;
}

.k-pb-lg {
    padding-bottom: 1rem;
}

.\!k-pb-lg {
    padding-bottom: 1rem !important;
}

.k-pb-xl {
    padding-bottom: 1.5rem;
}

.\!k-pb-xl {
    padding-bottom: 1.5rem !important;
}

.k-pb-thin {
    padding-bottom: 0.125rem;
}

.\!k-pb-thin {
    padding-bottom: 0.125rem !important;
}

.k-pb-hair {
    padding-bottom: 1px;
}

.\!k-pb-hair {
    padding-bottom: 1px !important;
}

.k-pl-0 {
    padding-left: 0;
}

.\!k-pl-0 {
    padding-left: 0 !important;
}

.k-pl-1px {
    padding-left: 1px;
}

.\!k-pl-1px {
    padding-left: 1px !important;
}

.k-pl-0\.5 {
    padding-left: 0.125rem;
}

.\!k-pl-0\.5 {
    padding-left: 0.125rem !important;
}

.k-pl-1 {
    padding-left: 0.25rem;
}

.\!k-pl-1 {
    padding-left: 0.25rem !important;
}

.k-pl-1\.5 {
    padding-left: 0.375rem;
}

.\!k-pl-1\.5 {
    padding-left: 0.375rem !important;
}

.k-pl-2 {
    padding-left: 0.5rem;
}

.\!k-pl-2 {
    padding-left: 0.5rem !important;
}

.k-pl-2\.5 {
    padding-left: 0.625rem;
}

.\!k-pl-2\.5 {
    padding-left: 0.625rem !important;
}

.k-pl-3 {
    padding-left: 0.75rem;
}

.\!k-pl-3 {
    padding-left: 0.75rem !important;
}

.k-pl-3\.5 {
    padding-left: 0.875rem;
}

.\!k-pl-3\.5 {
    padding-left: 0.875rem !important;
}

.k-pl-4 {
    padding-left: 1rem;
}

.\!k-pl-4 {
    padding-left: 1rem !important;
}

.k-pl-4\.5 {
    padding-left: 1.125rem;
}

.\!k-pl-4\.5 {
    padding-left: 1.125rem !important;
}

.k-pl-5 {
    padding-left: 1.25rem;
}

.\!k-pl-5 {
    padding-left: 1.25rem !important;
}

.k-pl-5\.5 {
    padding-left: 1.375rem;
}

.\!k-pl-5\.5 {
    padding-left: 1.375rem !important;
}

.k-pl-6 {
    padding-left: 1.5rem;
}

.\!k-pl-6 {
    padding-left: 1.5rem !important;
}

.k-pl-6\.5 {
    padding-left: 1.625rem;
}

.\!k-pl-6\.5 {
    padding-left: 1.625rem !important;
}

.k-pl-7 {
    padding-left: 1.75rem;
}

.\!k-pl-7 {
    padding-left: 1.75rem !important;
}

.k-pl-7\.5 {
    padding-left: 1.875rem;
}

.\!k-pl-7\.5 {
    padding-left: 1.875rem !important;
}

.k-pl-8 {
    padding-left: 2rem;
}

.\!k-pl-8 {
    padding-left: 2rem !important;
}

.k-pl-9 {
    padding-left: 2.25rem;
}

.\!k-pl-9 {
    padding-left: 2.25rem !important;
}

.k-pl-10 {
    padding-left: 2.5rem;
}

.\!k-pl-10 {
    padding-left: 2.5rem !important;
}

.k-pl-11 {
    padding-left: 2.75rem;
}

.\!k-pl-11 {
    padding-left: 2.75rem !important;
}

.k-pl-12 {
    padding-left: 3rem;
}

.\!k-pl-12 {
    padding-left: 3rem !important;
}

.k-pl-13 {
    padding-left: 3.25rem;
}

.\!k-pl-13 {
    padding-left: 3.25rem !important;
}

.k-pl-14 {
    padding-left: 3.5rem;
}

.\!k-pl-14 {
    padding-left: 3.5rem !important;
}

.k-pl-15 {
    padding-left: 3.75rem;
}

.\!k-pl-15 {
    padding-left: 3.75rem !important;
}

.k-pl-16 {
    padding-left: 4rem;
}

.\!k-pl-16 {
    padding-left: 4rem !important;
}

.k-pl-17 {
    padding-left: 4.25rem;
}

.\!k-pl-17 {
    padding-left: 4.25rem !important;
}

.k-pl-18 {
    padding-left: 4.5rem;
}

.\!k-pl-18 {
    padding-left: 4.5rem !important;
}

.k-pl-19 {
    padding-left: 4.75rem;
}

.\!k-pl-19 {
    padding-left: 4.75rem !important;
}

.k-pl-20 {
    padding-left: 5rem;
}

.\!k-pl-20 {
    padding-left: 5rem !important;
}

.k-pl-21 {
    padding-left: 5.25rem;
}

.\!k-pl-21 {
    padding-left: 5.25rem !important;
}

.k-pl-22 {
    padding-left: 5.5rem;
}

.\!k-pl-22 {
    padding-left: 5.5rem !important;
}

.k-pl-23 {
    padding-left: 5.75rem;
}

.\!k-pl-23 {
    padding-left: 5.75rem !important;
}

.k-pl-24 {
    padding-left: 6rem;
}

.\!k-pl-24 {
    padding-left: 6rem !important;
}

.k-pl-xs {
    padding-left: 0.25rem;
}

.\!k-pl-xs {
    padding-left: 0.25rem !important;
}

.k-pl-sm {
    padding-left: 0.5rem;
}

.\!k-pl-sm {
    padding-left: 0.5rem !important;
}

.k-pl-md {
    padding-left: 0.75rem;
}

.\!k-pl-md {
    padding-left: 0.75rem !important;
}

.k-pl-lg {
    padding-left: 1rem;
}

.\!k-pl-lg {
    padding-left: 1rem !important;
}

.k-pl-xl {
    padding-left: 1.5rem;
}

.\!k-pl-xl {
    padding-left: 1.5rem !important;
}

.k-pl-thin {
    padding-left: 0.125rem;
}

.\!k-pl-thin {
    padding-left: 0.125rem !important;
}

.k-pl-hair {
    padding-left: 1px;
}

.\!k-pl-hair {
    padding-left: 1px !important;
}

.k-px-0 {
    padding-inline: 0;
}

.\!k-px-0 {
    padding-inline: 0 !important;
}

.k-px-1px {
    padding-inline: 1px;
}

.\!k-px-1px {
    padding-inline: 1px !important;
}

.k-px-0\.5 {
    padding-inline: 0.125rem;
}

.\!k-px-0\.5 {
    padding-inline: 0.125rem !important;
}

.k-px-1 {
    padding-inline: 0.25rem;
}

.\!k-px-1 {
    padding-inline: 0.25rem !important;
}

.k-px-1\.5 {
    padding-inline: 0.375rem;
}

.\!k-px-1\.5 {
    padding-inline: 0.375rem !important;
}

.k-px-2 {
    padding-inline: 0.5rem;
}

.\!k-px-2 {
    padding-inline: 0.5rem !important;
}

.k-px-2\.5 {
    padding-inline: 0.625rem;
}

.\!k-px-2\.5 {
    padding-inline: 0.625rem !important;
}

.k-px-3 {
    padding-inline: 0.75rem;
}

.\!k-px-3 {
    padding-inline: 0.75rem !important;
}

.k-px-3\.5 {
    padding-inline: 0.875rem;
}

.\!k-px-3\.5 {
    padding-inline: 0.875rem !important;
}

.k-px-4 {
    padding-inline: 1rem;
}

.\!k-px-4 {
    padding-inline: 1rem !important;
}

.k-px-4\.5 {
    padding-inline: 1.125rem;
}

.\!k-px-4\.5 {
    padding-inline: 1.125rem !important;
}

.k-px-5 {
    padding-inline: 1.25rem;
}

.\!k-px-5 {
    padding-inline: 1.25rem !important;
}

.k-px-5\.5 {
    padding-inline: 1.375rem;
}

.\!k-px-5\.5 {
    padding-inline: 1.375rem !important;
}

.k-px-6 {
    padding-inline: 1.5rem;
}

.\!k-px-6 {
    padding-inline: 1.5rem !important;
}

.k-px-6\.5 {
    padding-inline: 1.625rem;
}

.\!k-px-6\.5 {
    padding-inline: 1.625rem !important;
}

.k-px-7 {
    padding-inline: 1.75rem;
}

.\!k-px-7 {
    padding-inline: 1.75rem !important;
}

.k-px-7\.5 {
    padding-inline: 1.875rem;
}

.\!k-px-7\.5 {
    padding-inline: 1.875rem !important;
}

.k-px-8 {
    padding-inline: 2rem;
}

.\!k-px-8 {
    padding-inline: 2rem !important;
}

.k-px-9 {
    padding-inline: 2.25rem;
}

.\!k-px-9 {
    padding-inline: 2.25rem !important;
}

.k-px-10 {
    padding-inline: 2.5rem;
}

.\!k-px-10 {
    padding-inline: 2.5rem !important;
}

.k-px-11 {
    padding-inline: 2.75rem;
}

.\!k-px-11 {
    padding-inline: 2.75rem !important;
}

.k-px-12 {
    padding-inline: 3rem;
}

.\!k-px-12 {
    padding-inline: 3rem !important;
}

.k-px-13 {
    padding-inline: 3.25rem;
}

.\!k-px-13 {
    padding-inline: 3.25rem !important;
}

.k-px-14 {
    padding-inline: 3.5rem;
}

.\!k-px-14 {
    padding-inline: 3.5rem !important;
}

.k-px-15 {
    padding-inline: 3.75rem;
}

.\!k-px-15 {
    padding-inline: 3.75rem !important;
}

.k-px-16 {
    padding-inline: 4rem;
}

.\!k-px-16 {
    padding-inline: 4rem !important;
}

.k-px-17 {
    padding-inline: 4.25rem;
}

.\!k-px-17 {
    padding-inline: 4.25rem !important;
}

.k-px-18 {
    padding-inline: 4.5rem;
}

.\!k-px-18 {
    padding-inline: 4.5rem !important;
}

.k-px-19 {
    padding-inline: 4.75rem;
}

.\!k-px-19 {
    padding-inline: 4.75rem !important;
}

.k-px-20 {
    padding-inline: 5rem;
}

.\!k-px-20 {
    padding-inline: 5rem !important;
}

.k-px-21 {
    padding-inline: 5.25rem;
}

.\!k-px-21 {
    padding-inline: 5.25rem !important;
}

.k-px-22 {
    padding-inline: 5.5rem;
}

.\!k-px-22 {
    padding-inline: 5.5rem !important;
}

.k-px-23 {
    padding-inline: 5.75rem;
}

.\!k-px-23 {
    padding-inline: 5.75rem !important;
}

.k-px-24 {
    padding-inline: 6rem;
}

.\!k-px-24 {
    padding-inline: 6rem !important;
}

.k-px-xs {
    padding-inline: 0.25rem;
}

.\!k-px-xs {
    padding-inline: 0.25rem !important;
}

.k-px-sm {
    padding-inline: 0.5rem;
}

.\!k-px-sm {
    padding-inline: 0.5rem !important;
}

.k-px-md {
    padding-inline: 0.75rem;
}

.\!k-px-md {
    padding-inline: 0.75rem !important;
}

.k-px-lg {
    padding-inline: 1rem;
}

.\!k-px-lg {
    padding-inline: 1rem !important;
}

.k-px-xl {
    padding-inline: 1.5rem;
}

.\!k-px-xl {
    padding-inline: 1.5rem !important;
}

.k-px-thin {
    padding-inline: 0.125rem;
}

.\!k-px-thin {
    padding-inline: 0.125rem !important;
}

.k-px-hair {
    padding-inline: 1px;
}

.\!k-px-hair {
    padding-inline: 1px !important;
}

.k-py-0 {
    padding-block: 0;
}

.\!k-py-0 {
    padding-block: 0 !important;
}

.k-py-1px {
    padding-block: 1px;
}

.\!k-py-1px {
    padding-block: 1px !important;
}

.k-py-0\.5 {
    padding-block: 0.125rem;
}

.\!k-py-0\.5 {
    padding-block: 0.125rem !important;
}

.k-py-1 {
    padding-block: 0.25rem;
}

.\!k-py-1 {
    padding-block: 0.25rem !important;
}

.k-py-1\.5 {
    padding-block: 0.375rem;
}

.\!k-py-1\.5 {
    padding-block: 0.375rem !important;
}

.k-py-2 {
    padding-block: 0.5rem;
}

.\!k-py-2 {
    padding-block: 0.5rem !important;
}

.k-py-2\.5 {
    padding-block: 0.625rem;
}

.\!k-py-2\.5 {
    padding-block: 0.625rem !important;
}

.k-py-3 {
    padding-block: 0.75rem;
}

.\!k-py-3 {
    padding-block: 0.75rem !important;
}

.k-py-3\.5 {
    padding-block: 0.875rem;
}

.\!k-py-3\.5 {
    padding-block: 0.875rem !important;
}

.k-py-4 {
    padding-block: 1rem;
}

.\!k-py-4 {
    padding-block: 1rem !important;
}

.k-py-4\.5 {
    padding-block: 1.125rem;
}

.\!k-py-4\.5 {
    padding-block: 1.125rem !important;
}

.k-py-5 {
    padding-block: 1.25rem;
}

.\!k-py-5 {
    padding-block: 1.25rem !important;
}

.k-py-5\.5 {
    padding-block: 1.375rem;
}

.\!k-py-5\.5 {
    padding-block: 1.375rem !important;
}

.k-py-6 {
    padding-block: 1.5rem;
}

.\!k-py-6 {
    padding-block: 1.5rem !important;
}

.k-py-6\.5 {
    padding-block: 1.625rem;
}

.\!k-py-6\.5 {
    padding-block: 1.625rem !important;
}

.k-py-7 {
    padding-block: 1.75rem;
}

.\!k-py-7 {
    padding-block: 1.75rem !important;
}

.k-py-7\.5 {
    padding-block: 1.875rem;
}

.\!k-py-7\.5 {
    padding-block: 1.875rem !important;
}

.k-py-8 {
    padding-block: 2rem;
}

.\!k-py-8 {
    padding-block: 2rem !important;
}

.k-py-9 {
    padding-block: 2.25rem;
}

.\!k-py-9 {
    padding-block: 2.25rem !important;
}

.k-py-10 {
    padding-block: 2.5rem;
}

.\!k-py-10 {
    padding-block: 2.5rem !important;
}

.k-py-11 {
    padding-block: 2.75rem;
}

.\!k-py-11 {
    padding-block: 2.75rem !important;
}

.k-py-12 {
    padding-block: 3rem;
}

.\!k-py-12 {
    padding-block: 3rem !important;
}

.k-py-13 {
    padding-block: 3.25rem;
}

.\!k-py-13 {
    padding-block: 3.25rem !important;
}

.k-py-14 {
    padding-block: 3.5rem;
}

.\!k-py-14 {
    padding-block: 3.5rem !important;
}

.k-py-15 {
    padding-block: 3.75rem;
}

.\!k-py-15 {
    padding-block: 3.75rem !important;
}

.k-py-16 {
    padding-block: 4rem;
}

.\!k-py-16 {
    padding-block: 4rem !important;
}

.k-py-17 {
    padding-block: 4.25rem;
}

.\!k-py-17 {
    padding-block: 4.25rem !important;
}

.k-py-18 {
    padding-block: 4.5rem;
}

.\!k-py-18 {
    padding-block: 4.5rem !important;
}

.k-py-19 {
    padding-block: 4.75rem;
}

.\!k-py-19 {
    padding-block: 4.75rem !important;
}

.k-py-20 {
    padding-block: 5rem;
}

.\!k-py-20 {
    padding-block: 5rem !important;
}

.k-py-21 {
    padding-block: 5.25rem;
}

.\!k-py-21 {
    padding-block: 5.25rem !important;
}

.k-py-22 {
    padding-block: 5.5rem;
}

.\!k-py-22 {
    padding-block: 5.5rem !important;
}

.k-py-23 {
    padding-block: 5.75rem;
}

.\!k-py-23 {
    padding-block: 5.75rem !important;
}

.k-py-24 {
    padding-block: 6rem;
}

.\!k-py-24 {
    padding-block: 6rem !important;
}

.k-py-xs {
    padding-block: 0.25rem;
}

.\!k-py-xs {
    padding-block: 0.25rem !important;
}

.k-py-sm {
    padding-block: 0.5rem;
}

.\!k-py-sm {
    padding-block: 0.5rem !important;
}

.k-py-md {
    padding-block: 0.75rem;
}

.\!k-py-md {
    padding-block: 0.75rem !important;
}

.k-py-lg {
    padding-block: 1rem;
}

.\!k-py-lg {
    padding-block: 1rem !important;
}

.k-py-xl {
    padding-block: 1.5rem;
}

.\!k-py-xl {
    padding-block: 1.5rem !important;
}

.k-py-thin {
    padding-block: 0.125rem;
}

.\!k-py-thin {
    padding-block: 0.125rem !important;
}

.k-py-hair {
    padding-block: 1px;
}

.\!k-py-hair {
    padding-block: 1px !important;
}

.k-h-0 {
    height: 0;
}

.\!k-h-0 {
    height: 0 !important;
}

.k-h-1px {
    height: 1px;
}

.\!k-h-1px {
    height: 1px !important;
}

.k-h-0\.5 {
    height: 0.125rem;
}

.\!k-h-0\.5 {
    height: 0.125rem !important;
}

.k-h-1 {
    height: 0.25rem;
}

.\!k-h-1 {
    height: 0.25rem !important;
}

.k-h-1\.5 {
    height: 0.375rem;
}

.\!k-h-1\.5 {
    height: 0.375rem !important;
}

.k-h-2 {
    height: 0.5rem;
}

.\!k-h-2 {
    height: 0.5rem !important;
}

.k-h-2\.5 {
    height: 0.625rem;
}

.\!k-h-2\.5 {
    height: 0.625rem !important;
}

.k-h-3 {
    height: 0.75rem;
}

.\!k-h-3 {
    height: 0.75rem !important;
}

.k-h-3\.5 {
    height: 0.875rem;
}

.\!k-h-3\.5 {
    height: 0.875rem !important;
}

.k-h-4 {
    height: 1rem;
}

.\!k-h-4 {
    height: 1rem !important;
}

.k-h-4\.5 {
    height: 1.125rem;
}

.\!k-h-4\.5 {
    height: 1.125rem !important;
}

.k-h-5 {
    height: 1.25rem;
}

.\!k-h-5 {
    height: 1.25rem !important;
}

.k-h-5\.5 {
    height: 1.375rem;
}

.\!k-h-5\.5 {
    height: 1.375rem !important;
}

.k-h-6 {
    height: 1.5rem;
}

.\!k-h-6 {
    height: 1.5rem !important;
}

.k-h-6\.5 {
    height: 1.625rem;
}

.\!k-h-6\.5 {
    height: 1.625rem !important;
}

.k-h-7 {
    height: 1.75rem;
}

.\!k-h-7 {
    height: 1.75rem !important;
}

.k-h-7\.5 {
    height: 1.875rem;
}

.\!k-h-7\.5 {
    height: 1.875rem !important;
}

.k-h-8 {
    height: 2rem;
}

.\!k-h-8 {
    height: 2rem !important;
}

.k-h-9 {
    height: 2.25rem;
}

.\!k-h-9 {
    height: 2.25rem !important;
}

.k-h-10 {
    height: 2.5rem;
}

.\!k-h-10 {
    height: 2.5rem !important;
}

.k-h-11 {
    height: 2.75rem;
}

.\!k-h-11 {
    height: 2.75rem !important;
}

.k-h-12 {
    height: 3rem;
}

.\!k-h-12 {
    height: 3rem !important;
}

.k-h-13 {
    height: 3.25rem;
}

.\!k-h-13 {
    height: 3.25rem !important;
}

.k-h-14 {
    height: 3.5rem;
}

.\!k-h-14 {
    height: 3.5rem !important;
}

.k-h-15 {
    height: 3.75rem;
}

.\!k-h-15 {
    height: 3.75rem !important;
}

.k-h-16 {
    height: 4rem;
}

.\!k-h-16 {
    height: 4rem !important;
}

.k-h-17 {
    height: 4.25rem;
}

.\!k-h-17 {
    height: 4.25rem !important;
}

.k-h-18 {
    height: 4.5rem;
}

.\!k-h-18 {
    height: 4.5rem !important;
}

.k-h-19 {
    height: 4.75rem;
}

.\!k-h-19 {
    height: 4.75rem !important;
}

.k-h-20 {
    height: 5rem;
}

.\!k-h-20 {
    height: 5rem !important;
}

.k-h-21 {
    height: 5.25rem;
}

.\!k-h-21 {
    height: 5.25rem !important;
}

.k-h-22 {
    height: 5.5rem;
}

.\!k-h-22 {
    height: 5.5rem !important;
}

.k-h-23 {
    height: 5.75rem;
}

.\!k-h-23 {
    height: 5.75rem !important;
}

.k-h-24 {
    height: 6rem;
}

.\!k-h-24 {
    height: 6rem !important;
}

.k-h-auto {
    height: auto;
}

.\!k-h-auto {
    height: auto !important;
}

.k-h-1\/2 {
    height: 50%;
}

.\!k-h-1\/2 {
    height: 50% !important;
}

.k-h-1\/3 {
    height: 33.333333%;
}

.\!k-h-1\/3 {
    height: 33.333333% !important;
}

.k-h-2\/3 {
    height: 66.666667%;
}

.\!k-h-2\/3 {
    height: 66.666667% !important;
}

.k-h-1\/4 {
    height: 25%;
}

.\!k-h-1\/4 {
    height: 25% !important;
}

.k-h-2\/4 {
    height: 50%;
}

.\!k-h-2\/4 {
    height: 50% !important;
}

.k-h-3\/4 {
    height: 75%;
}

.\!k-h-3\/4 {
    height: 75% !important;
}

.k-h-1\/5 {
    height: 20%;
}

.\!k-h-1\/5 {
    height: 20% !important;
}

.k-h-2\/5 {
    height: 40%;
}

.\!k-h-2\/5 {
    height: 40% !important;
}

.k-h-3\/5 {
    height: 60%;
}

.\!k-h-3\/5 {
    height: 60% !important;
}

.k-h-4\/5 {
    height: 80%;
}

.\!k-h-4\/5 {
    height: 80% !important;
}

.k-h-1\/6 {
    height: 16.666667%;
}

.\!k-h-1\/6 {
    height: 16.666667% !important;
}

.k-h-2\/6 {
    height: 33.333333%;
}

.\!k-h-2\/6 {
    height: 33.333333% !important;
}

.k-h-3\/6 {
    height: 50%;
}

.\!k-h-3\/6 {
    height: 50% !important;
}

.k-h-4\/6 {
    height: 66.666667%;
}

.\!k-h-4\/6 {
    height: 66.666667% !important;
}

.k-h-5\/6 {
    height: 83.333333%;
}

.\!k-h-5\/6 {
    height: 83.333333% !important;
}

.k-h-1\/12 {
    height: 8.333333%;
}

.\!k-h-1\/12 {
    height: 8.333333% !important;
}

.k-h-2\/12 {
    height: 16.666667%;
}

.\!k-h-2\/12 {
    height: 16.666667% !important;
}

.k-h-3\/12 {
    height: 25%;
}

.\!k-h-3\/12 {
    height: 25% !important;
}

.k-h-4\/12 {
    height: 33.333333%;
}

.\!k-h-4\/12 {
    height: 33.333333% !important;
}

.k-h-5\/12 {
    height: 41.666667%;
}

.\!k-h-5\/12 {
    height: 41.666667% !important;
}

.k-h-6\/12 {
    height: 50%;
}

.\!k-h-6\/12 {
    height: 50% !important;
}

.k-h-7\/12 {
    height: 58.333333%;
}

.\!k-h-7\/12 {
    height: 58.333333% !important;
}

.k-h-8\/12 {
    height: 66.666667%;
}

.\!k-h-8\/12 {
    height: 66.666667% !important;
}

.k-h-9\/12 {
    height: 75%;
}

.\!k-h-9\/12 {
    height: 75% !important;
}

.k-h-10\/12 {
    height: 83.333333%;
}

.\!k-h-10\/12 {
    height: 83.333333% !important;
}

.k-h-11\/12 {
    height: 91.666667%;
}

.\!k-h-11\/12 {
    height: 91.666667% !important;
}

.k-h-full {
    height: 100%;
}

.\!k-h-full {
    height: 100% !important;
}

.k-h-min {
    height: min-content;
}

.\!k-h-min {
    height: min-content !important;
}

.k-h-max {
    height: max-content;
}

.\!k-h-max {
    height: max-content !important;
}

.k-h-fit {
    height: fit-content;
}

.\!k-h-fit {
    height: fit-content !important;
}

.k-h-screen {
    height: 100vh;
}

.\!k-h-screen {
    height: 100vh !important;
}

.k-min-h-0 {
    min-height: 0;
}

.\!k-min-h-0 {
    min-height: 0 !important;
}

.k-min-h-full {
    min-height: 100%;
}

.\!k-min-h-full {
    min-height: 100% !important;
}

.k-min-h-screen {
    min-height: 100vh;
}

.\!k-min-h-screen {
    min-height: 100vh !important;
}

.k-min-h-min {
    min-height: min-content;
}

.\!k-min-h-min {
    min-height: min-content !important;
}

.k-min-h-max {
    min-height: max-content;
}

.\!k-min-h-max {
    min-height: max-content !important;
}

.k-min-h-fit {
    min-height: fit-content;
}

.\!k-min-h-fit {
    min-height: fit-content !important;
}

.k-max-h-none {
    max-height: none;
}

.\!k-max-h-none {
    max-height: none !important;
}

.k-max-h-0 {
    max-height: 0;
}

.\!k-max-h-0 {
    max-height: 0 !important;
}

.k-max-h-full {
    max-height: 100%;
}

.\!k-max-h-full {
    max-height: 100% !important;
}

.k-max-h-screen {
    max-height: 100vh;
}

.\!k-max-h-screen {
    max-height: 100vh !important;
}

.k-max-h-min {
    max-height: min-content;
}

.\!k-max-h-min {
    max-height: min-content !important;
}

.k-max-h-max {
    max-height: max-content;
}

.\!k-max-h-max {
    max-height: max-content !important;
}

.k-max-h-fit {
    max-height: fit-content;
}

.\!k-max-h-fit {
    max-height: fit-content !important;
}

.k-w-0 {
    width: 0;
}

.\!k-w-0 {
    width: 0 !important;
}

.k-w-1px {
    width: 1px;
}

.\!k-w-1px {
    width: 1px !important;
}

.k-w-0\.5 {
    width: 0.125rem;
}

.\!k-w-0\.5 {
    width: 0.125rem !important;
}

.k-w-1 {
    width: 0.25rem;
}

.\!k-w-1 {
    width: 0.25rem !important;
}

.k-w-1\.5 {
    width: 0.375rem;
}

.\!k-w-1\.5 {
    width: 0.375rem !important;
}

.k-w-2 {
    width: 0.5rem;
}

.\!k-w-2 {
    width: 0.5rem !important;
}

.k-w-2\.5 {
    width: 0.625rem;
}

.\!k-w-2\.5 {
    width: 0.625rem !important;
}

.k-w-3 {
    width: 0.75rem;
}

.\!k-w-3 {
    width: 0.75rem !important;
}

.k-w-3\.5 {
    width: 0.875rem;
}

.\!k-w-3\.5 {
    width: 0.875rem !important;
}

.k-w-4 {
    width: 1rem;
}

.\!k-w-4 {
    width: 1rem !important;
}

.k-w-4\.5 {
    width: 1.125rem;
}

.\!k-w-4\.5 {
    width: 1.125rem !important;
}

.k-w-5 {
    width: 1.25rem;
}

.\!k-w-5 {
    width: 1.25rem !important;
}

.k-w-5\.5 {
    width: 1.375rem;
}

.\!k-w-5\.5 {
    width: 1.375rem !important;
}

.k-w-6 {
    width: 1.5rem;
}

.\!k-w-6 {
    width: 1.5rem !important;
}

.k-w-6\.5 {
    width: 1.625rem;
}

.\!k-w-6\.5 {
    width: 1.625rem !important;
}

.k-w-7 {
    width: 1.75rem;
}

.\!k-w-7 {
    width: 1.75rem !important;
}

.k-w-7\.5 {
    width: 1.875rem;
}

.\!k-w-7\.5 {
    width: 1.875rem !important;
}

.k-w-8 {
    width: 2rem;
}

.\!k-w-8 {
    width: 2rem !important;
}

.k-w-9 {
    width: 2.25rem;
}

.\!k-w-9 {
    width: 2.25rem !important;
}

.k-w-10 {
    width: 2.5rem;
}

.\!k-w-10 {
    width: 2.5rem !important;
}

.k-w-11 {
    width: 2.75rem;
}

.\!k-w-11 {
    width: 2.75rem !important;
}

.k-w-12 {
    width: 3rem;
}

.\!k-w-12 {
    width: 3rem !important;
}

.k-w-13 {
    width: 3.25rem;
}

.\!k-w-13 {
    width: 3.25rem !important;
}

.k-w-14 {
    width: 3.5rem;
}

.\!k-w-14 {
    width: 3.5rem !important;
}

.k-w-15 {
    width: 3.75rem;
}

.\!k-w-15 {
    width: 3.75rem !important;
}

.k-w-16 {
    width: 4rem;
}

.\!k-w-16 {
    width: 4rem !important;
}

.k-w-17 {
    width: 4.25rem;
}

.\!k-w-17 {
    width: 4.25rem !important;
}

.k-w-18 {
    width: 4.5rem;
}

.\!k-w-18 {
    width: 4.5rem !important;
}

.k-w-19 {
    width: 4.75rem;
}

.\!k-w-19 {
    width: 4.75rem !important;
}

.k-w-20 {
    width: 5rem;
}

.\!k-w-20 {
    width: 5rem !important;
}

.k-w-21 {
    width: 5.25rem;
}

.\!k-w-21 {
    width: 5.25rem !important;
}

.k-w-22 {
    width: 5.5rem;
}

.\!k-w-22 {
    width: 5.5rem !important;
}

.k-w-23 {
    width: 5.75rem;
}

.\!k-w-23 {
    width: 5.75rem !important;
}

.k-w-24 {
    width: 6rem;
}

.\!k-w-24 {
    width: 6rem !important;
}

.k-w-auto {
    width: auto;
}

.\!k-w-auto {
    width: auto !important;
}

.k-w-1\/2 {
    width: 50%;
}

.\!k-w-1\/2 {
    width: 50% !important;
}

.k-w-1\/3 {
    width: 33.333333%;
}

.\!k-w-1\/3 {
    width: 33.333333% !important;
}

.k-w-2\/3 {
    width: 66.666667%;
}

.\!k-w-2\/3 {
    width: 66.666667% !important;
}

.k-w-1\/4 {
    width: 25%;
}

.\!k-w-1\/4 {
    width: 25% !important;
}

.k-w-2\/4 {
    width: 50%;
}

.\!k-w-2\/4 {
    width: 50% !important;
}

.k-w-3\/4 {
    width: 75%;
}

.\!k-w-3\/4 {
    width: 75% !important;
}

.k-w-1\/5 {
    width: 20%;
}

.\!k-w-1\/5 {
    width: 20% !important;
}

.k-w-2\/5 {
    width: 40%;
}

.\!k-w-2\/5 {
    width: 40% !important;
}

.k-w-3\/5 {
    width: 60%;
}

.\!k-w-3\/5 {
    width: 60% !important;
}

.k-w-4\/5 {
    width: 80%;
}

.\!k-w-4\/5 {
    width: 80% !important;
}

.k-w-1\/6 {
    width: 16.666667%;
}

.\!k-w-1\/6 {
    width: 16.666667% !important;
}

.k-w-2\/6 {
    width: 33.333333%;
}

.\!k-w-2\/6 {
    width: 33.333333% !important;
}

.k-w-3\/6 {
    width: 50%;
}

.\!k-w-3\/6 {
    width: 50% !important;
}

.k-w-4\/6 {
    width: 66.666667%;
}

.\!k-w-4\/6 {
    width: 66.666667% !important;
}

.k-w-5\/6 {
    width: 83.333333%;
}

.\!k-w-5\/6 {
    width: 83.333333% !important;
}

.k-w-1\/12 {
    width: 8.333333%;
}

.\!k-w-1\/12 {
    width: 8.333333% !important;
}

.k-w-2\/12 {
    width: 16.666667%;
}

.\!k-w-2\/12 {
    width: 16.666667% !important;
}

.k-w-3\/12 {
    width: 25%;
}

.\!k-w-3\/12 {
    width: 25% !important;
}

.k-w-4\/12 {
    width: 33.333333%;
}

.\!k-w-4\/12 {
    width: 33.333333% !important;
}

.k-w-5\/12 {
    width: 41.666667%;
}

.\!k-w-5\/12 {
    width: 41.666667% !important;
}

.k-w-6\/12 {
    width: 50%;
}

.\!k-w-6\/12 {
    width: 50% !important;
}

.k-w-7\/12 {
    width: 58.333333%;
}

.\!k-w-7\/12 {
    width: 58.333333% !important;
}

.k-w-8\/12 {
    width: 66.666667%;
}

.\!k-w-8\/12 {
    width: 66.666667% !important;
}

.k-w-9\/12 {
    width: 75%;
}

.\!k-w-9\/12 {
    width: 75% !important;
}

.k-w-10\/12 {
    width: 83.333333%;
}

.\!k-w-10\/12 {
    width: 83.333333% !important;
}

.k-w-11\/12 {
    width: 91.666667%;
}

.\!k-w-11\/12 {
    width: 91.666667% !important;
}

.k-w-full {
    width: 100%;
}

.\!k-w-full {
    width: 100% !important;
}

.k-w-min {
    width: min-content;
}

.\!k-w-min {
    width: min-content !important;
}

.k-w-max {
    width: max-content;
}

.\!k-w-max {
    width: max-content !important;
}

.k-w-fit {
    width: fit-content;
}

.\!k-w-fit {
    width: fit-content !important;
}

.k-w-screen {
    width: 100vw;
}

.\!k-w-screen {
    width: 100vw !important;
}

.k-min-w-0 {
    min-width: 0;
}

.\!k-min-w-0 {
    min-width: 0 !important;
}

.k-min-w-full {
    min-width: 100%;
}

.\!k-min-w-full {
    min-width: 100% !important;
}

.k-min-w-screen {
    min-width: 100vw;
}

.\!k-min-w-screen {
    min-width: 100vw !important;
}

.k-min-w-min {
    min-width: min-content;
}

.\!k-min-w-min {
    min-width: min-content !important;
}

.k-min-w-max {
    min-width: max-content;
}

.\!k-min-w-max {
    min-width: max-content !important;
}

.k-min-w-fit {
    min-width: fit-content;
}

.\!k-min-w-fit {
    min-width: fit-content !important;
}

.k-max-w-none {
    max-width: none;
}

.\!k-max-w-none {
    max-width: none !important;
}

.k-max-w-0 {
    max-width: 0;
}

.\!k-max-w-0 {
    max-width: 0 !important;
}

.k-max-w-full {
    max-width: 100%;
}

.\!k-max-w-full {
    max-width: 100% !important;
}

.k-max-w-screen {
    max-width: 100vw;
}

.\!k-max-w-screen {
    max-width: 100vw !important;
}

.k-max-w-min {
    max-width: min-content;
}

.\!k-max-w-min {
    max-width: min-content !important;
}

.k-max-w-max {
    max-width: max-content;
}

.\!k-max-w-max {
    max-width: max-content !important;
}

.k-max-w-fit {
    max-width: fit-content;
}

.\!k-max-w-fit {
    max-width: fit-content !important;
}

.k-font-size-xs {
    font-size: 0.75rem;
}

.\!k-font-size-xs {
    font-size: 0.75rem !important;
}

.k-font-size-sm {
    font-size: 0.875rem;
}

.\!k-font-size-sm {
    font-size: 0.875rem !important;
}

.k-font-size-md {
    font-size: 1rem;
}

.\!k-font-size-md {
    font-size: 1rem !important;
}

.k-font-size-lg {
    font-size: 1.25rem;
}

.\!k-font-size-lg {
    font-size: 1.25rem !important;
}

.k-font-size-xl {
    font-size: 1.5rem;
}

.\!k-font-size-xl {
    font-size: 1.5rem !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-italic {
    font-style: italic;
}

.\!k-font-italic {
    font-style: italic !important;
}

.k-font-non-italic {
    font-style: normal;
}

.\!k-font-non-italic {
    font-style: normal !important;
}

.k-font-thin {
    font-weight: 100;
}

.\!k-font-thin {
    font-weight: 100 !important;
}

.k-font-extralight {
    font-weight: 200;
}

.\!k-font-extralight {
    font-weight: 200 !important;
}

.k-font-light {
    font-weight: 300;
}

.\!k-font-light {
    font-weight: 300 !important;
}

.k-font-normal {
    font-weight: 400;
}

.\!k-font-normal {
    font-weight: 400 !important;
}

.k-font-medium {
    font-weight: 500;
}

.\!k-font-medium {
    font-weight: 500 !important;
}

.k-font-semibold {
    font-weight: 600;
}

.\!k-font-semibold {
    font-weight: 600 !important;
}

.k-font-bold {
    font-weight: 700;
}

.\!k-font-bold {
    font-weight: 700 !important;
}

.k-font-extrabold {
    font-weight: 800;
}

.\!k-font-extrabold {
    font-weight: 800 !important;
}

.k-font-black {
    font-weight: 900;
}

.\!k-font-black {
    font-weight: 900 !important;
}

.k-font-weight-thin {
    font-weight: 100;
}

.\!k-font-weight-thin {
    font-weight: 100 !important;
}

.k-font-weight-extralight {
    font-weight: 200;
}

.\!k-font-weight-extralight {
    font-weight: 200 !important;
}

.k-font-weight-light {
    font-weight: 300;
}

.\!k-font-weight-light {
    font-weight: 300 !important;
}

.k-font-weight-normal {
    font-weight: 400;
}

.\!k-font-weight-normal {
    font-weight: 400 !important;
}

.k-font-weight-medium {
    font-weight: 500;
}

.\!k-font-weight-medium {
    font-weight: 500 !important;
}

.k-font-weight-semibold {
    font-weight: 600;
}

.\!k-font-weight-semibold {
    font-weight: 600 !important;
}

.k-font-weight-bold {
    font-weight: 700;
}

.\!k-font-weight-bold {
    font-weight: 700 !important;
}

.k-font-weight-extrabold {
    font-weight: 800;
}

.\!k-font-weight-extrabold {
    font-weight: 800 !important;
}

.k-font-weight-black {
    font-weight: 900;
}

.\!k-font-weight-black {
    font-weight: 900 !important;
}

.k-list-none {
    list-style-type: none;
}

.\!k-list-none {
    list-style-type: none !important;
}

.k-list-disc {
    list-style-type: disc;
}

.\!k-list-disc {
    list-style-type: disc !important;
}

.k-list-decimal {
    list-style-type: decimal;
}

.\!k-list-decimal {
    list-style-type: decimal !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-start {
    text-align: start;
}

.\!k-text-start {
    text-align: start !important;
}

.k-text-end {
    text-align: end;
}

.\!k-text-end {
    text-align: end !important;
}

.k-text-primary {
    color: #0d6efd;
}

.\!k-text-primary {
    color: #0d6efd !important;
}

.k-text-secondary {
    color: #6c757d;
}

.\!k-text-secondary {
    color: #6c757d !important;
}

.k-text-tertiary {
    color: #6f42c1;
}

.\!k-text-tertiary {
    color: #6f42c1 !important;
}

.k-text-info {
    color: #0dcaf0;
}

.\!k-text-info {
    color: #0dcaf0 !important;
}

.k-text-success {
    color: #198754;
}

.\!k-text-success {
    color: #198754 !important;
}

.k-text-warning {
    color: #ffc107;
}

.\!k-text-warning {
    color: #ffc107 !important;
}

.k-text-error {
    color: #dc3545;
}

.\!k-text-error {
    color: #dc3545 !important;
}

.k-text-dark {
    color: #212529;
}

.\!k-text-dark {
    color: #212529 !important;
}

.k-text-light {
    color: #f8f9fa;
}

.\!k-text-light {
    color: #f8f9fa !important;
}

.k-text-inverse {
    color: #212529;
}

.\!k-text-inverse {
    color: #212529 !important;
}

.k-text-inherit {
    color: inherit;
}

.\!k-text-inherit {
    color: inherit !important;
}

.k-text-current {
    color: currentColor;
}

.\!k-text-current {
    color: currentColor !important;
}

.k-text-transparent {
    color: transparent;
}

.\!k-text-transparent {
    color: transparent !important;
}

.k-text-black {
    color: black;
}

.\!k-text-black {
    color: black !important;
}

.k-text-white {
    color: white;
}

.\!k-text-white {
    color: white !important;
}

.k-color-primary {
    color: #0d6efd;
}

.\!k-color-primary {
    color: #0d6efd !important;
}

.k-color-secondary {
    color: #6c757d;
}

.\!k-color-secondary {
    color: #6c757d !important;
}

.k-color-tertiary {
    color: #6f42c1;
}

.\!k-color-tertiary {
    color: #6f42c1 !important;
}

.k-color-info {
    color: #0dcaf0;
}

.\!k-color-info {
    color: #0dcaf0 !important;
}

.k-color-success {
    color: #198754;
}

.\!k-color-success {
    color: #198754 !important;
}

.k-color-warning {
    color: #ffc107;
}

.\!k-color-warning {
    color: #ffc107 !important;
}

.k-color-error {
    color: #dc3545;
}

.\!k-color-error {
    color: #dc3545 !important;
}

.k-color-dark {
    color: #212529;
}

.\!k-color-dark {
    color: #212529 !important;
}

.k-color-light {
    color: #f8f9fa;
}

.\!k-color-light {
    color: #f8f9fa !important;
}

.k-color-inverse {
    color: #212529;
}

.\!k-color-inverse {
    color: #212529 !important;
}

.k-color-inherit {
    color: inherit;
}

.\!k-color-inherit {
    color: inherit !important;
}

.k-color-current {
    color: currentColor;
}

.\!k-color-current {
    color: currentColor !important;
}

.k-color-transparent {
    color: transparent;
}

.\!k-color-transparent {
    color: transparent !important;
}

.k-color-black {
    color: black;
}

.\!k-color-black {
    color: black !important;
}

.k-color-white {
    color: white;
}

.\!k-color-white {
    color: white !important;
}

.k-text-underline {
    text-decoration: underline;
}

.\!k-text-underline {
    text-decoration: underline !important;
}

.k-text-overline {
    text-decoration: overline;
}

.\!k-text-overline {
    text-decoration: overline !important;
}

.k-text-line-through {
    text-decoration: line-through;
}

.\!k-text-line-through {
    text-decoration: line-through !important;
}

.k-text-no-underline {
    text-decoration: none;
}

.\!k-text-no-underline {
    text-decoration: none !important;
}

.k-text-clip {
    text-overflow: clip;
}

.\!k-text-clip {
    text-overflow: clip !important;
}

.k-text-ellipsis {
    text-overflow: ellipsis;
}

.\!k-text-ellipsis {
    text-overflow: ellipsis !important;
}

.k-text-truncate, .k-text-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.\!k-text-truncate, .\!k-text-ellipsis {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.k-text-uppercase {
    text-transform: uppercase;
}

.\!k-text-uppercase {
    text-transform: uppercase !important;
}

.k-text-lowercase {
    text-transform: lowercase;
}

.\!k-text-lowercase {
    text-transform: lowercase !important;
}

.k-text-capitalize {
    text-transform: capitalize;
}

.\!k-text-capitalize {
    text-transform: capitalize !important;
}

.k-text-normal-case {
    text-transform: none;
}

.\!k-text-normal-case {
    text-transform: none !important;
}

.k-align-baseline {
    vertical-align: baseline;
}

.\!k-align-baseline {
    vertical-align: baseline !important;
}

.k-align-top {
    vertical-align: top;
}

.\!k-align-top {
    vertical-align: top !important;
}

.k-align-middle {
    vertical-align: middle;
}

.\!k-align-middle {
    vertical-align: middle !important;
}

.k-align-bottom {
    vertical-align: bottom;
}

.\!k-align-bottom {
    vertical-align: bottom !important;
}

.k-align-text-top {
    vertical-align: text-top;
}

.\!k-align-text-top {
    vertical-align: text-top !important;
}

.k-align-text-bottom {
    vertical-align: text-bottom;
}

.\!k-align-text-bottom {
    vertical-align: text-bottom !important;
}

.k-align-sub {
    vertical-align: sub;
}

.\!k-align-sub {
    vertical-align: sub !important;
}

.k-align-super {
    vertical-align: super;
}

.\!k-align-super {
    vertical-align: super !important;
}

.k-white-space-normal {
    white-space: normal;
}

.\!k-white-space-normal {
    white-space: normal !important;
}

.k-white-space-nowrap, .k-text-nowrap {
    white-space: nowrap;
}

.\!k-white-space-nowrap {
    white-space: nowrap !important;
}

.k-white-space-pre {
    white-space: pre;
}

.\!k-white-space-pre {
    white-space: pre !important;
}

.k-white-space-pre-line {
    white-space: pre-line;
}

.\!k-white-space-pre-line {
    white-space: pre-line !important;
}

.k-white-space-pre-wrap {
    white-space: pre-wrap;
}

.\!k-white-space-pre-wrap {
    white-space: pre-wrap !important;
}

.k-white-space-break-spaces {
    white-space: break-spaces;
}

.\!k-white-space-break-spaces {
    white-space: break-spaces !important;
}

.k-whitespace-normal {
    white-space: normal;
}

.\!k-whitespace-normal {
    white-space: normal !important;
}

.k-whitespace-nowrap {
    white-space: nowrap;
}

.\!k-whitespace-nowrap {
    white-space: nowrap !important;
}

.k-whitespace-pre {
    white-space: pre;
}

.\!k-whitespace-pre {
    white-space: pre !important;
}

.k-whitespace-pre-line {
    white-space: pre-line;
}

.\!k-whitespace-pre-line {
    white-space: pre-line !important;
}

.k-whitespace-pre-wrap {
    white-space: pre-wrap;
}

.\!k-whitespace-pre-wrap {
    white-space: pre-wrap !important;
}

.k-whitespace-break-spaces {
    white-space: break-spaces;
}

.\!k-whitespace-break-spaces {
    white-space: break-spaces !important;
}

.k-bg-clip-border {
    background-clip: border-box;
}

.\!k-bg-clip-border {
    background-clip: border-box !important;
}

.k-bg-clip-padding {
    background-clip: padding-box;
}

.\!k-bg-clip-padding {
    background-clip: padding-box !important;
}

.k-bg-clip-content {
    background-clip: content-box;
}

.\!k-bg-clip-content {
    background-clip: content-box !important;
}

.k-bg-clip-text {
    background-clip: text;
}

.\!k-bg-clip-text {
    background-clip: text !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-bg-inherit {
    background-color: inherit;
}

.\!k-bg-inherit {
    background-color: inherit !important;
}

.k-bg-transparent {
    background-color: transparent;
}

.\!k-bg-transparent {
    background-color: transparent !important;
}

.k-bg-black {
    background-color: black;
}

.\!k-bg-black {
    background-color: black !important;
}

.k-bg-white {
    background-color: white;
}

.\!k-bg-white {
    background-color: white !important;
}

.k-border-primary {
    border-color: #0d6efd;
}

.\!k-border-primary {
    border-color: #0d6efd !important;
}

.k-border-secondary {
    border-color: #6c757d;
}

.\!k-border-secondary {
    border-color: #6c757d !important;
}

.k-border-tertiary {
    border-color: #6f42c1;
}

.\!k-border-tertiary {
    border-color: #6f42c1 !important;
}

.k-border-info {
    border-color: #0dcaf0;
}

.\!k-border-info {
    border-color: #0dcaf0 !important;
}

.k-border-success {
    border-color: #198754;
}

.\!k-border-success {
    border-color: #198754 !important;
}

.k-border-warning {
    border-color: #ffc107;
}

.\!k-border-warning {
    border-color: #ffc107 !important;
}

.k-border-error {
    border-color: #dc3545;
}

.\!k-border-error {
    border-color: #dc3545 !important;
}

.k-border-dark {
    border-color: #212529;
}

.\!k-border-dark {
    border-color: #212529 !important;
}

.k-border-light {
    border-color: #f8f9fa;
}

.\!k-border-light {
    border-color: #f8f9fa !important;
}

.k-border-inverse {
    border-color: #212529;
}

.\!k-border-inverse {
    border-color: #212529 !important;
}

.k-border-inherit {
    border-color: inherit;
}

.\!k-border-inherit {
    border-color: inherit !important;
}

.k-border-current {
    border-color: currentColor;
}

.\!k-border-current {
    border-color: currentColor !important;
}

.k-border-transparent {
    border-color: transparent;
}

.\!k-border-transparent {
    border-color: transparent !important;
}

.k-border-black {
    border-color: black;
}

.\!k-border-black {
    border-color: black !important;
}

.k-border-white {
    border-color: white;
}

.\!k-border-white {
    border-color: white !important;
}

.k-border-t-primary {
    border-top-color: #0d6efd;
}

.\!k-border-t-primary {
    border-top-color: #0d6efd !important;
}

.k-border-t-secondary {
    border-top-color: #6c757d;
}

.\!k-border-t-secondary {
    border-top-color: #6c757d !important;
}

.k-border-t-tertiary {
    border-top-color: #6f42c1;
}

.\!k-border-t-tertiary {
    border-top-color: #6f42c1 !important;
}

.k-border-t-info {
    border-top-color: #0dcaf0;
}

.\!k-border-t-info {
    border-top-color: #0dcaf0 !important;
}

.k-border-t-success {
    border-top-color: #198754;
}

.\!k-border-t-success {
    border-top-color: #198754 !important;
}

.k-border-t-warning {
    border-top-color: #ffc107;
}

.\!k-border-t-warning {
    border-top-color: #ffc107 !important;
}

.k-border-t-error {
    border-top-color: #dc3545;
}

.\!k-border-t-error {
    border-top-color: #dc3545 !important;
}

.k-border-t-dark {
    border-top-color: #212529;
}

.\!k-border-t-dark {
    border-top-color: #212529 !important;
}

.k-border-t-light {
    border-top-color: #f8f9fa;
}

.\!k-border-t-light {
    border-top-color: #f8f9fa !important;
}

.k-border-t-inverse {
    border-top-color: #212529;
}

.\!k-border-t-inverse {
    border-top-color: #212529 !important;
}

.k-border-t-inherit {
    border-top-color: inherit;
}

.\!k-border-t-inherit {
    border-top-color: inherit !important;
}

.k-border-t-current {
    border-top-color: currentColor;
}

.\!k-border-t-current {
    border-top-color: currentColor !important;
}

.k-border-t-transparent {
    border-top-color: transparent;
}

.\!k-border-t-transparent {
    border-top-color: transparent !important;
}

.k-border-t-black {
    border-top-color: black;
}

.\!k-border-t-black {
    border-top-color: black !important;
}

.k-border-t-white {
    border-top-color: white;
}

.\!k-border-t-white {
    border-top-color: white !important;
}

.k-border-r-primary {
    border-right-color: #0d6efd;
}

.\!k-border-r-primary {
    border-right-color: #0d6efd !important;
}

.k-border-r-secondary {
    border-right-color: #6c757d;
}

.\!k-border-r-secondary {
    border-right-color: #6c757d !important;
}

.k-border-r-tertiary {
    border-right-color: #6f42c1;
}

.\!k-border-r-tertiary {
    border-right-color: #6f42c1 !important;
}

.k-border-r-info {
    border-right-color: #0dcaf0;
}

.\!k-border-r-info {
    border-right-color: #0dcaf0 !important;
}

.k-border-r-success {
    border-right-color: #198754;
}

.\!k-border-r-success {
    border-right-color: #198754 !important;
}

.k-border-r-warning {
    border-right-color: #ffc107;
}

.\!k-border-r-warning {
    border-right-color: #ffc107 !important;
}

.k-border-r-error {
    border-right-color: #dc3545;
}

.\!k-border-r-error {
    border-right-color: #dc3545 !important;
}

.k-border-r-dark {
    border-right-color: #212529;
}

.\!k-border-r-dark {
    border-right-color: #212529 !important;
}

.k-border-r-light {
    border-right-color: #f8f9fa;
}

.\!k-border-r-light {
    border-right-color: #f8f9fa !important;
}

.k-border-r-inverse {
    border-right-color: #212529;
}

.\!k-border-r-inverse {
    border-right-color: #212529 !important;
}

.k-border-r-inherit {
    border-right-color: inherit;
}

.\!k-border-r-inherit {
    border-right-color: inherit !important;
}

.k-border-r-current {
    border-right-color: currentColor;
}

.\!k-border-r-current {
    border-right-color: currentColor !important;
}

.k-border-r-transparent {
    border-right-color: transparent;
}

.\!k-border-r-transparent {
    border-right-color: transparent !important;
}

.k-border-r-black {
    border-right-color: black;
}

.\!k-border-r-black {
    border-right-color: black !important;
}

.k-border-r-white {
    border-right-color: white;
}

.\!k-border-r-white {
    border-right-color: white !important;
}

.k-border-b-primary {
    border-bottom-color: #0d6efd;
}

.\!k-border-b-primary {
    border-bottom-color: #0d6efd !important;
}

.k-border-b-secondary {
    border-bottom-color: #6c757d;
}

.\!k-border-b-secondary {
    border-bottom-color: #6c757d !important;
}

.k-border-b-tertiary {
    border-bottom-color: #6f42c1;
}

.\!k-border-b-tertiary {
    border-bottom-color: #6f42c1 !important;
}

.k-border-b-info {
    border-bottom-color: #0dcaf0;
}

.\!k-border-b-info {
    border-bottom-color: #0dcaf0 !important;
}

.k-border-b-success {
    border-bottom-color: #198754;
}

.\!k-border-b-success {
    border-bottom-color: #198754 !important;
}

.k-border-b-warning {
    border-bottom-color: #ffc107;
}

.\!k-border-b-warning {
    border-bottom-color: #ffc107 !important;
}

.k-border-b-error {
    border-bottom-color: #dc3545;
}

.\!k-border-b-error {
    border-bottom-color: #dc3545 !important;
}

.k-border-b-dark {
    border-bottom-color: #212529;
}

.\!k-border-b-dark {
    border-bottom-color: #212529 !important;
}

.k-border-b-light {
    border-bottom-color: #f8f9fa;
}

.\!k-border-b-light {
    border-bottom-color: #f8f9fa !important;
}

.k-border-b-inverse {
    border-bottom-color: #212529;
}

.\!k-border-b-inverse {
    border-bottom-color: #212529 !important;
}

.k-border-b-inherit {
    border-bottom-color: inherit;
}

.\!k-border-b-inherit {
    border-bottom-color: inherit !important;
}

.k-border-b-current {
    border-bottom-color: currentColor;
}

.\!k-border-b-current {
    border-bottom-color: currentColor !important;
}

.k-border-b-transparent {
    border-bottom-color: transparent;
}

.\!k-border-b-transparent {
    border-bottom-color: transparent !important;
}

.k-border-b-black {
    border-bottom-color: black;
}

.\!k-border-b-black {
    border-bottom-color: black !important;
}

.k-border-b-white {
    border-bottom-color: white;
}

.\!k-border-b-white {
    border-bottom-color: white !important;
}

.k-border-l-primary {
    border-left-color: #0d6efd;
}

.\!k-border-l-primary {
    border-left-color: #0d6efd !important;
}

.k-border-l-secondary {
    border-left-color: #6c757d;
}

.\!k-border-l-secondary {
    border-left-color: #6c757d !important;
}

.k-border-l-tertiary {
    border-left-color: #6f42c1;
}

.\!k-border-l-tertiary {
    border-left-color: #6f42c1 !important;
}

.k-border-l-info {
    border-left-color: #0dcaf0;
}

.\!k-border-l-info {
    border-left-color: #0dcaf0 !important;
}

.k-border-l-success {
    border-left-color: #198754;
}

.\!k-border-l-success {
    border-left-color: #198754 !important;
}

.k-border-l-warning {
    border-left-color: #ffc107;
}

.\!k-border-l-warning {
    border-left-color: #ffc107 !important;
}

.k-border-l-error {
    border-left-color: #dc3545;
}

.\!k-border-l-error {
    border-left-color: #dc3545 !important;
}

.k-border-l-dark {
    border-left-color: #212529;
}

.\!k-border-l-dark {
    border-left-color: #212529 !important;
}

.k-border-l-light {
    border-left-color: #f8f9fa;
}

.\!k-border-l-light {
    border-left-color: #f8f9fa !important;
}

.k-border-l-inverse {
    border-left-color: #212529;
}

.\!k-border-l-inverse {
    border-left-color: #212529 !important;
}

.k-border-l-inherit {
    border-left-color: inherit;
}

.\!k-border-l-inherit {
    border-left-color: inherit !important;
}

.k-border-l-current {
    border-left-color: currentColor;
}

.\!k-border-l-current {
    border-left-color: currentColor !important;
}

.k-border-l-transparent {
    border-left-color: transparent;
}

.\!k-border-l-transparent {
    border-left-color: transparent !important;
}

.k-border-l-black {
    border-left-color: black;
}

.\!k-border-l-black {
    border-left-color: black !important;
}

.k-border-l-white {
    border-left-color: white;
}

.\!k-border-l-white {
    border-left-color: white !important;
}

.k-border-x-primary {
    border-inline-color: #0d6efd;
}

.\!k-border-x-primary {
    border-inline-color: #0d6efd !important;
}

.k-border-x-secondary {
    border-inline-color: #6c757d;
}

.\!k-border-x-secondary {
    border-inline-color: #6c757d !important;
}

.k-border-x-tertiary {
    border-inline-color: #6f42c1;
}

.\!k-border-x-tertiary {
    border-inline-color: #6f42c1 !important;
}

.k-border-x-info {
    border-inline-color: #0dcaf0;
}

.\!k-border-x-info {
    border-inline-color: #0dcaf0 !important;
}

.k-border-x-success {
    border-inline-color: #198754;
}

.\!k-border-x-success {
    border-inline-color: #198754 !important;
}

.k-border-x-warning {
    border-inline-color: #ffc107;
}

.\!k-border-x-warning {
    border-inline-color: #ffc107 !important;
}

.k-border-x-error {
    border-inline-color: #dc3545;
}

.\!k-border-x-error {
    border-inline-color: #dc3545 !important;
}

.k-border-x-dark {
    border-inline-color: #212529;
}

.\!k-border-x-dark {
    border-inline-color: #212529 !important;
}

.k-border-x-light {
    border-inline-color: #f8f9fa;
}

.\!k-border-x-light {
    border-inline-color: #f8f9fa !important;
}

.k-border-x-inverse {
    border-inline-color: #212529;
}

.\!k-border-x-inverse {
    border-inline-color: #212529 !important;
}

.k-border-x-inherit {
    border-inline-color: inherit;
}

.\!k-border-x-inherit {
    border-inline-color: inherit !important;
}

.k-border-x-current {
    border-inline-color: currentColor;
}

.\!k-border-x-current {
    border-inline-color: currentColor !important;
}

.k-border-x-transparent {
    border-inline-color: transparent;
}

.\!k-border-x-transparent {
    border-inline-color: transparent !important;
}

.k-border-x-black {
    border-inline-color: black;
}

.\!k-border-x-black {
    border-inline-color: black !important;
}

.k-border-x-white {
    border-inline-color: white;
}

.\!k-border-x-white {
    border-inline-color: white !important;
}

.k-border-y-primary {
    border-block-color: #0d6efd;
}

.\!k-border-y-primary {
    border-block-color: #0d6efd !important;
}

.k-border-y-secondary {
    border-block-color: #6c757d;
}

.\!k-border-y-secondary {
    border-block-color: #6c757d !important;
}

.k-border-y-tertiary {
    border-block-color: #6f42c1;
}

.\!k-border-y-tertiary {
    border-block-color: #6f42c1 !important;
}

.k-border-y-info {
    border-block-color: #0dcaf0;
}

.\!k-border-y-info {
    border-block-color: #0dcaf0 !important;
}

.k-border-y-success {
    border-block-color: #198754;
}

.\!k-border-y-success {
    border-block-color: #198754 !important;
}

.k-border-y-warning {
    border-block-color: #ffc107;
}

.\!k-border-y-warning {
    border-block-color: #ffc107 !important;
}

.k-border-y-error {
    border-block-color: #dc3545;
}

.\!k-border-y-error {
    border-block-color: #dc3545 !important;
}

.k-border-y-dark {
    border-block-color: #212529;
}

.\!k-border-y-dark {
    border-block-color: #212529 !important;
}

.k-border-y-light {
    border-block-color: #f8f9fa;
}

.\!k-border-y-light {
    border-block-color: #f8f9fa !important;
}

.k-border-y-inverse {
    border-block-color: #212529;
}

.\!k-border-y-inverse {
    border-block-color: #212529 !important;
}

.k-border-y-inherit {
    border-block-color: inherit;
}

.\!k-border-y-inherit {
    border-block-color: inherit !important;
}

.k-border-y-current {
    border-block-color: currentColor;
}

.\!k-border-y-current {
    border-block-color: currentColor !important;
}

.k-border-y-transparent {
    border-block-color: transparent;
}

.\!k-border-y-transparent {
    border-block-color: transparent !important;
}

.k-border-y-black {
    border-block-color: black;
}

.\!k-border-y-black {
    border-block-color: black !important;
}

.k-border-y-white {
    border-block-color: white;
}

.\!k-border-y-white {
    border-block-color: white !important;
}

.k-rounded {
    border-radius: 0.375rem;
}

.\!k-rounded {
    border-radius: 0.375rem !important;
}

.k-rounded-0 {
    border-radius: 0;
}

.\!k-rounded-0 {
    border-radius: 0 !important;
}

.k-rounded-sm {
    border-radius: 0.25rem;
}

.\!k-rounded-sm {
    border-radius: 0.25rem !important;
}

.k-rounded-md {
    border-radius: 0.375rem;
}

.\!k-rounded-md {
    border-radius: 0.375rem !important;
}

.k-rounded-lg {
    border-radius: 0.5rem;
}

.\!k-rounded-lg {
    border-radius: 0.5rem !important;
}

.k-rounded-full {
    border-radius: 9999px;
}

.\!k-rounded-full {
    border-radius: 9999px !important;
}

.k-rounded-tl {
    border-top-left-radius: 0.375rem;
}

.\!k-rounded-tl {
    border-top-left-radius: 0.375rem !important;
}

.k-rounded-tl-0 {
    border-top-left-radius: 0;
}

.\!k-rounded-tl-0 {
    border-top-left-radius: 0 !important;
}

.k-rounded-tl-sm {
    border-top-left-radius: 0.25rem;
}

.\!k-rounded-tl-sm {
    border-top-left-radius: 0.25rem !important;
}

.k-rounded-tl-md {
    border-top-left-radius: 0.375rem;
}

.\!k-rounded-tl-md {
    border-top-left-radius: 0.375rem !important;
}

.k-rounded-tl-lg {
    border-top-left-radius: 0.5rem;
}

.\!k-rounded-tl-lg {
    border-top-left-radius: 0.5rem !important;
}

.k-rounded-tl-full {
    border-top-left-radius: 9999px;
}

.\!k-rounded-tl-full {
    border-top-left-radius: 9999px !important;
}

.k-rounded-tr {
    border-top-right-radius: 0.375rem;
}

.\!k-rounded-tr {
    border-top-right-radius: 0.375rem !important;
}

.k-rounded-tr-0 {
    border-top-right-radius: 0;
}

.\!k-rounded-tr-0 {
    border-top-right-radius: 0 !important;
}

.k-rounded-tr-sm {
    border-top-right-radius: 0.25rem;
}

.\!k-rounded-tr-sm {
    border-top-right-radius: 0.25rem !important;
}

.k-rounded-tr-md {
    border-top-right-radius: 0.375rem;
}

.\!k-rounded-tr-md {
    border-top-right-radius: 0.375rem !important;
}

.k-rounded-tr-lg {
    border-top-right-radius: 0.5rem;
}

.\!k-rounded-tr-lg {
    border-top-right-radius: 0.5rem !important;
}

.k-rounded-tr-full {
    border-top-right-radius: 9999px;
}

.\!k-rounded-tr-full {
    border-top-right-radius: 9999px !important;
}

.k-rounded-br {
    border-bottom-right-radius: 0.375rem;
}

.\!k-rounded-br {
    border-bottom-right-radius: 0.375rem !important;
}

.k-rounded-br-0 {
    border-bottom-right-radius: 0;
}

.\!k-rounded-br-0 {
    border-bottom-right-radius: 0 !important;
}

.k-rounded-br-sm {
    border-bottom-right-radius: 0.25rem;
}

.\!k-rounded-br-sm {
    border-bottom-right-radius: 0.25rem !important;
}

.k-rounded-br-md {
    border-bottom-right-radius: 0.375rem;
}

.\!k-rounded-br-md {
    border-bottom-right-radius: 0.375rem !important;
}

.k-rounded-br-lg {
    border-bottom-right-radius: 0.5rem;
}

.\!k-rounded-br-lg {
    border-bottom-right-radius: 0.5rem !important;
}

.k-rounded-br-full {
    border-bottom-right-radius: 9999px;
}

.\!k-rounded-br-full {
    border-bottom-right-radius: 9999px !important;
}

.k-rounded-bl {
    border-bottom-left-radius: 0.375rem;
}

.\!k-rounded-bl {
    border-bottom-left-radius: 0.375rem !important;
}

.k-rounded-bl-0 {
    border-bottom-left-radius: 0;
}

.\!k-rounded-bl-0 {
    border-bottom-left-radius: 0 !important;
}

.k-rounded-bl-sm {
    border-bottom-left-radius: 0.25rem;
}

.\!k-rounded-bl-sm {
    border-bottom-left-radius: 0.25rem !important;
}

.k-rounded-bl-md {
    border-bottom-left-radius: 0.375rem;
}

.\!k-rounded-bl-md {
    border-bottom-left-radius: 0.375rem !important;
}

.k-rounded-bl-lg {
    border-bottom-left-radius: 0.5rem;
}

.\!k-rounded-bl-lg {
    border-bottom-left-radius: 0.5rem !important;
}

.k-rounded-bl-full {
    border-bottom-left-radius: 9999px;
}

.\!k-rounded-bl-full {
    border-bottom-left-radius: 9999px !important;
}

.k-rounded-t {
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
}

.\!k-rounded-t {
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
}

.k-rounded-t-0 {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.\!k-rounded-t-0 {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.k-rounded-t-sm {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.\!k-rounded-t-sm {
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
}

.k-rounded-t-md {
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
}

.\!k-rounded-t-md {
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
}

.k-rounded-t-lg {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.\!k-rounded-t-lg {
    border-top-left-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
}

.k-rounded-t-full {
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
}

.\!k-rounded-t-full {
    border-top-left-radius: 9999px !important;
    border-top-right-radius: 9999px !important;
}

.k-rounded-r {
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}

.\!k-rounded-r {
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
}

.k-rounded-r-0 {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.\!k-rounded-r-0 {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.k-rounded-r-sm {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

.\!k-rounded-r-sm {
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
}

.k-rounded-r-md {
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}

.\!k-rounded-r-md {
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
}

.k-rounded-r-lg {
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

.\!k-rounded-r-lg {
    border-top-right-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
}

.k-rounded-r-full {
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
}

.\!k-rounded-r-full {
    border-top-right-radius: 9999px !important;
    border-bottom-right-radius: 9999px !important;
}

.k-rounded-b {
    border-bottom-left-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}

.\!k-rounded-b {
    border-bottom-left-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
}

.k-rounded-b-0 {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.\!k-rounded-b-0 {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.k-rounded-b-sm {
    border-bottom-left-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

.\!k-rounded-b-sm {
    border-bottom-left-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
}

.k-rounded-b-md {
    border-bottom-left-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}

.\!k-rounded-b-md {
    border-bottom-left-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
}

.k-rounded-b-lg {
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

.\!k-rounded-b-lg {
    border-bottom-left-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
}

.k-rounded-b-full {
    border-bottom-left-radius: 9999px;
    border-bottom-right-radius: 9999px;
}

.\!k-rounded-b-full {
    border-bottom-left-radius: 9999px !important;
    border-bottom-right-radius: 9999px !important;
}

.k-rounded-l {
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
}

.\!k-rounded-l {
    border-top-left-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
}

.k-rounded-l-0 {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.\!k-rounded-l-0 {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.k-rounded-l-sm {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.\!k-rounded-l-sm {
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
}

.k-rounded-l-md {
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
}

.\!k-rounded-l-md {
    border-top-left-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
}

.k-rounded-l-lg {
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
}

.\!k-rounded-l-lg {
    border-top-left-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
}

.k-rounded-l-full {
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
}

.\!k-rounded-l-full {
    border-top-left-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
}

.k-border-solid {
    border-style: solid;
}

.\!k-border-solid {
    border-style: solid !important;
}

.k-border-dashed {
    border-style: dashed;
}

.\!k-border-dashed {
    border-style: dashed !important;
}

.k-border-dotted {
    border-style: dotted;
}

.\!k-border-dotted {
    border-style: dotted !important;
}

.k-border-double {
    border-style: double;
}

.\!k-border-double {
    border-style: double !important;
}

.k-border-inset {
    border-style: inset;
}

.\!k-border-inset {
    border-style: inset !important;
}

.k-border-outset {
    border-style: outset;
}

.\!k-border-outset {
    border-style: outset !important;
}

.k-border-hidden {
    border-style: hidden;
}

.\!k-border-hidden {
    border-style: hidden !important;
}

.k-border-none {
    border-style: none;
}

.\!k-border-none {
    border-style: none !important;
}

.k-border-t-solid {
    border-top-style: solid;
}

.\!k-border-t-solid {
    border-top-style: solid !important;
}

.k-border-t-dashed {
    border-top-style: dashed;
}

.\!k-border-t-dashed {
    border-top-style: dashed !important;
}

.k-border-t-dotted {
    border-top-style: dotted;
}

.\!k-border-t-dotted {
    border-top-style: dotted !important;
}

.k-border-t-double {
    border-top-style: double;
}

.\!k-border-t-double {
    border-top-style: double !important;
}

.k-border-t-inset {
    border-top-style: inset;
}

.\!k-border-t-inset {
    border-top-style: inset !important;
}

.k-border-t-outset {
    border-top-style: outset;
}

.\!k-border-t-outset {
    border-top-style: outset !important;
}

.k-border-t-hidden {
    border-top-style: hidden;
}

.\!k-border-t-hidden {
    border-top-style: hidden !important;
}

.k-border-t-none {
    border-top-style: none;
}

.\!k-border-t-none {
    border-top-style: none !important;
}

.k-border-r-solid {
    border-right-style: solid;
}

.\!k-border-r-solid {
    border-right-style: solid !important;
}

.k-border-r-dashed {
    border-right-style: dashed;
}

.\!k-border-r-dashed {
    border-right-style: dashed !important;
}

.k-border-r-dotted {
    border-right-style: dotted;
}

.\!k-border-r-dotted {
    border-right-style: dotted !important;
}

.k-border-r-double {
    border-right-style: double;
}

.\!k-border-r-double {
    border-right-style: double !important;
}

.k-border-r-inset {
    border-right-style: inset;
}

.\!k-border-r-inset {
    border-right-style: inset !important;
}

.k-border-r-outset {
    border-right-style: outset;
}

.\!k-border-r-outset {
    border-right-style: outset !important;
}

.k-border-r-hidden {
    border-right-style: hidden;
}

.\!k-border-r-hidden {
    border-right-style: hidden !important;
}

.k-border-r-none {
    border-right-style: none;
}

.\!k-border-r-none {
    border-right-style: none !important;
}

.k-border-b-solid {
    border-bottom-style: solid;
}

.\!k-border-b-solid {
    border-bottom-style: solid !important;
}

.k-border-b-dashed {
    border-bottom-style: dashed;
}

.\!k-border-b-dashed {
    border-bottom-style: dashed !important;
}

.k-border-b-dotted {
    border-bottom-style: dotted;
}

.\!k-border-b-dotted {
    border-bottom-style: dotted !important;
}

.k-border-b-double {
    border-bottom-style: double;
}

.\!k-border-b-double {
    border-bottom-style: double !important;
}

.k-border-b-inset {
    border-bottom-style: inset;
}

.\!k-border-b-inset {
    border-bottom-style: inset !important;
}

.k-border-b-outset {
    border-bottom-style: outset;
}

.\!k-border-b-outset {
    border-bottom-style: outset !important;
}

.k-border-b-hidden {
    border-bottom-style: hidden;
}

.\!k-border-b-hidden {
    border-bottom-style: hidden !important;
}

.k-border-b-none {
    border-bottom-style: none;
}

.\!k-border-b-none {
    border-bottom-style: none !important;
}

.k-border-l-solid {
    border-left-style: solid;
}

.\!k-border-l-solid {
    border-left-style: solid !important;
}

.k-border-l-dashed {
    border-left-style: dashed;
}

.\!k-border-l-dashed {
    border-left-style: dashed !important;
}

.k-border-l-dotted {
    border-left-style: dotted;
}

.\!k-border-l-dotted {
    border-left-style: dotted !important;
}

.k-border-l-double {
    border-left-style: double;
}

.\!k-border-l-double {
    border-left-style: double !important;
}

.k-border-l-inset {
    border-left-style: inset;
}

.\!k-border-l-inset {
    border-left-style: inset !important;
}

.k-border-l-outset {
    border-left-style: outset;
}

.\!k-border-l-outset {
    border-left-style: outset !important;
}

.k-border-l-hidden {
    border-left-style: hidden;
}

.\!k-border-l-hidden {
    border-left-style: hidden !important;
}

.k-border-l-none {
    border-left-style: none;
}

.\!k-border-l-none {
    border-left-style: none !important;
}

.k-border-x-solid {
    border-inline-style: solid;
}

.\!k-border-x-solid {
    border-inline-style: solid !important;
}

.k-border-x-dashed {
    border-inline-style: dashed;
}

.\!k-border-x-dashed {
    border-inline-style: dashed !important;
}

.k-border-x-dotted {
    border-inline-style: dotted;
}

.\!k-border-x-dotted {
    border-inline-style: dotted !important;
}

.k-border-x-double {
    border-inline-style: double;
}

.\!k-border-x-double {
    border-inline-style: double !important;
}

.k-border-x-inset {
    border-inline-style: inset;
}

.\!k-border-x-inset {
    border-inline-style: inset !important;
}

.k-border-x-outset {
    border-inline-style: outset;
}

.\!k-border-x-outset {
    border-inline-style: outset !important;
}

.k-border-x-hidden {
    border-inline-style: hidden;
}

.\!k-border-x-hidden {
    border-inline-style: hidden !important;
}

.k-border-x-none {
    border-inline-style: none;
}

.\!k-border-x-none {
    border-inline-style: none !important;
}

.k-border-y-solid {
    border-block-style: solid;
}

.\!k-border-y-solid {
    border-block-style: solid !important;
}

.k-border-y-dashed {
    border-block-style: dashed;
}

.\!k-border-y-dashed {
    border-block-style: dashed !important;
}

.k-border-y-dotted {
    border-block-style: dotted;
}

.\!k-border-y-dotted {
    border-block-style: dotted !important;
}

.k-border-y-double {
    border-block-style: double;
}

.\!k-border-y-double {
    border-block-style: double !important;
}

.k-border-y-inset {
    border-block-style: inset;
}

.\!k-border-y-inset {
    border-block-style: inset !important;
}

.k-border-y-outset {
    border-block-style: outset;
}

.\!k-border-y-outset {
    border-block-style: outset !important;
}

.k-border-y-hidden {
    border-block-style: hidden;
}

.\!k-border-y-hidden {
    border-block-style: hidden !important;
}

.k-border-y-none {
    border-block-style: none;
}

.\!k-border-y-none {
    border-block-style: none !important;
}

.k-border {
    border-width: 1px;
}

.\!k-border {
    border-width: 1px !important;
}

.k-border-0 {
    border-width: 0;
}

.\!k-border-0 {
    border-width: 0 !important;
}

.k-border-2 {
    border-width: 2px;
}

.\!k-border-2 {
    border-width: 2px !important;
}

.k-border-4 {
    border-width: 4px;
}

.\!k-border-4 {
    border-width: 4px !important;
}

.k-border-8 {
    border-width: 8px;
}

.\!k-border-8 {
    border-width: 8px !important;
}

.k-border-t {
    border-top-width: 1px;
}

.\!k-border-t {
    border-top-width: 1px !important;
}

.k-border-t-0 {
    border-top-width: 0;
}

.\!k-border-t-0 {
    border-top-width: 0 !important;
}

.k-border-t-2 {
    border-top-width: 2px;
}

.\!k-border-t-2 {
    border-top-width: 2px !important;
}

.k-border-t-4 {
    border-top-width: 4px;
}

.\!k-border-t-4 {
    border-top-width: 4px !important;
}

.k-border-t-8 {
    border-top-width: 8px;
}

.\!k-border-t-8 {
    border-top-width: 8px !important;
}

.k-border-r {
    border-right-width: 1px;
}

.\!k-border-r {
    border-right-width: 1px !important;
}

.k-border-r-0 {
    border-right-width: 0;
}

.\!k-border-r-0 {
    border-right-width: 0 !important;
}

.k-border-r-2 {
    border-right-width: 2px;
}

.\!k-border-r-2 {
    border-right-width: 2px !important;
}

.k-border-r-4 {
    border-right-width: 4px;
}

.\!k-border-r-4 {
    border-right-width: 4px !important;
}

.k-border-r-8 {
    border-right-width: 8px;
}

.\!k-border-r-8 {
    border-right-width: 8px !important;
}

.k-border-b {
    border-bottom-width: 1px;
}

.\!k-border-b {
    border-bottom-width: 1px !important;
}

.k-border-b-0 {
    border-bottom-width: 0;
}

.\!k-border-b-0 {
    border-bottom-width: 0 !important;
}

.k-border-b-2 {
    border-bottom-width: 2px;
}

.\!k-border-b-2 {
    border-bottom-width: 2px !important;
}

.k-border-b-4 {
    border-bottom-width: 4px;
}

.\!k-border-b-4 {
    border-bottom-width: 4px !important;
}

.k-border-b-8 {
    border-bottom-width: 8px;
}

.\!k-border-b-8 {
    border-bottom-width: 8px !important;
}

.k-border-l {
    border-left-width: 1px;
}

.\!k-border-l {
    border-left-width: 1px !important;
}

.k-border-l-0 {
    border-left-width: 0;
}

.\!k-border-l-0 {
    border-left-width: 0 !important;
}

.k-border-l-2 {
    border-left-width: 2px;
}

.\!k-border-l-2 {
    border-left-width: 2px !important;
}

.k-border-l-4 {
    border-left-width: 4px;
}

.\!k-border-l-4 {
    border-left-width: 4px !important;
}

.k-border-l-8 {
    border-left-width: 8px;
}

.\!k-border-l-8 {
    border-left-width: 8px !important;
}

.k-border-x {
    border-inline-width: 1px;
}

.\!k-border-x {
    border-inline-width: 1px !important;
}

.k-border-x-0 {
    border-inline-width: 0;
}

.\!k-border-x-0 {
    border-inline-width: 0 !important;
}

.k-border-x-2 {
    border-inline-width: 2px;
}

.\!k-border-x-2 {
    border-inline-width: 2px !important;
}

.k-border-x-4 {
    border-inline-width: 4px;
}

.\!k-border-x-4 {
    border-inline-width: 4px !important;
}

.k-border-x-8 {
    border-inline-width: 8px;
}

.\!k-border-x-8 {
    border-inline-width: 8px !important;
}

.k-border-y {
    border-block-width: 1px;
}

.\!k-border-y {
    border-block-width: 1px !important;
}

.k-border-y-0 {
    border-block-width: 0;
}

.\!k-border-y-0 {
    border-block-width: 0 !important;
}

.k-border-y-2 {
    border-block-width: 2px;
}

.\!k-border-y-2 {
    border-block-width: 2px !important;
}

.k-border-y-4 {
    border-block-width: 4px;
}

.\!k-border-y-4 {
    border-block-width: 4px !important;
}

.k-border-y-8 {
    border-block-width: 8px;
}

.\!k-border-y-8 {
    border-block-width: 8px !important;
}

.k-border-top {
    border-top-width: 1px;
}

.\!k-border-top {
    border-top-width: 1px !important;
}

.k-border-top-0 {
    border-top-width: 0;
}

.\!k-border-top-0 {
    border-top-width: 0 !important;
}

.k-border-top-2 {
    border-top-width: 2px;
}

.\!k-border-top-2 {
    border-top-width: 2px !important;
}

.k-border-top-4 {
    border-top-width: 4px;
}

.\!k-border-top-4 {
    border-top-width: 4px !important;
}

.k-border-top-8 {
    border-top-width: 8px;
}

.\!k-border-top-8 {
    border-top-width: 8px !important;
}

.k-border-right {
    border-right-width: 1px;
}

.\!k-border-right {
    border-right-width: 1px !important;
}

.k-border-right-0 {
    border-right-width: 0;
}

.\!k-border-right-0 {
    border-right-width: 0 !important;
}

.k-border-right-2 {
    border-right-width: 2px;
}

.\!k-border-right-2 {
    border-right-width: 2px !important;
}

.k-border-right-4 {
    border-right-width: 4px;
}

.\!k-border-right-4 {
    border-right-width: 4px !important;
}

.k-border-right-8 {
    border-right-width: 8px;
}

.\!k-border-right-8 {
    border-right-width: 8px !important;
}

.k-border-bottom {
    border-bottom-width: 1px;
}

.\!k-border-bottom {
    border-bottom-width: 1px !important;
}

.k-border-bottom-0 {
    border-bottom-width: 0;
}

.\!k-border-bottom-0 {
    border-bottom-width: 0 !important;
}

.k-border-bottom-2 {
    border-bottom-width: 2px;
}

.\!k-border-bottom-2 {
    border-bottom-width: 2px !important;
}

.k-border-bottom-4 {
    border-bottom-width: 4px;
}

.\!k-border-bottom-4 {
    border-bottom-width: 4px !important;
}

.k-border-bottom-8 {
    border-bottom-width: 8px;
}

.\!k-border-bottom-8 {
    border-bottom-width: 8px !important;
}

.k-border-left {
    border-left-width: 1px;
}

.\!k-border-left {
    border-left-width: 1px !important;
}

.k-border-left-0 {
    border-left-width: 0;
}

.\!k-border-left-0 {
    border-left-width: 0 !important;
}

.k-border-left-2 {
    border-left-width: 2px;
}

.\!k-border-left-2 {
    border-left-width: 2px !important;
}

.k-border-left-4 {
    border-left-width: 4px;
}

.\!k-border-left-4 {
    border-left-width: 4px !important;
}

.k-border-left-8 {
    border-left-width: 8px;
}

.\!k-border-left-8 {
    border-left-width: 8px !important;
}

.k-outline-primary {
    outline-color: #0d6efd;
}

.\!k-outline-primary {
    outline-color: #0d6efd !important;
}

.k-outline-secondary {
    outline-color: #6c757d;
}

.\!k-outline-secondary {
    outline-color: #6c757d !important;
}

.k-outline-tertiary {
    outline-color: #6f42c1;
}

.\!k-outline-tertiary {
    outline-color: #6f42c1 !important;
}

.k-outline-info {
    outline-color: #0dcaf0;
}

.\!k-outline-info {
    outline-color: #0dcaf0 !important;
}

.k-outline-success {
    outline-color: #198754;
}

.\!k-outline-success {
    outline-color: #198754 !important;
}

.k-outline-warning {
    outline-color: #ffc107;
}

.\!k-outline-warning {
    outline-color: #ffc107 !important;
}

.k-outline-error {
    outline-color: #dc3545;
}

.\!k-outline-error {
    outline-color: #dc3545 !important;
}

.k-outline-dark {
    outline-color: #212529;
}

.\!k-outline-dark {
    outline-color: #212529 !important;
}

.k-outline-light {
    outline-color: #f8f9fa;
}

.\!k-outline-light {
    outline-color: #f8f9fa !important;
}

.k-outline-inverse {
    outline-color: #212529;
}

.\!k-outline-inverse {
    outline-color: #212529 !important;
}

.k-outline-inherit {
    outline-color: inherit;
}

.\!k-outline-inherit {
    outline-color: inherit !important;
}

.k-outline-current {
    outline-color: currentColor;
}

.\!k-outline-current {
    outline-color: currentColor !important;
}

.k-outline-transparent {
    outline-color: transparent;
}

.\!k-outline-transparent {
    outline-color: transparent !important;
}

.k-outline-black {
    outline-color: black;
}

.\!k-outline-black {
    outline-color: black !important;
}

.k-outline-white {
    outline-color: white;
}

.\!k-outline-white {
    outline-color: white !important;
}

.k-outline-offset-0 {
    outline-offset: 0;
}

.\!k-outline-offset-0 {
    outline-offset: 0 !important;
}

.k-outline-offset-1 {
    outline-offset: 1px;
}

.\!k-outline-offset-1 {
    outline-offset: 1px !important;
}

.k-outline-offset-2 {
    outline-offset: 2px;
}

.\!k-outline-offset-2 {
    outline-offset: 2px !important;
}

.k-outline-offset-4 {
    outline-offset: 4px;
}

.\!k-outline-offset-4 {
    outline-offset: 4px !important;
}

.k-outline-offset-8 {
    outline-offset: 8px;
}

.\!k-outline-offset-8 {
    outline-offset: 8px !important;
}

.k-outline-solid {
    outline-style: solid;
}

.\!k-outline-solid {
    outline-style: solid !important;
}

.k-outline-dashed {
    outline-style: dashed;
}

.\!k-outline-dashed {
    outline-style: dashed !important;
}

.k-outline-dotted {
    outline-style: dotted;
}

.\!k-outline-dotted {
    outline-style: dotted !important;
}

.k-outline-double {
    outline-style: double;
}

.\!k-outline-double {
    outline-style: double !important;
}

.k-outline-inset {
    outline-style: inset;
}

.\!k-outline-inset {
    outline-style: inset !important;
}

.k-outline-outset {
    outline-style: outset;
}

.\!k-outline-outset {
    outline-style: outset !important;
}

.k-outline-none {
    outline-style: none;
}

.\!k-outline-none {
    outline-style: none !important;
}

.k-outline {
    outline-width: 1px;
}

.\!k-outline {
    outline-width: 1px !important;
}

.k-outline-0 {
    outline-width: 0;
}

.\!k-outline-0 {
    outline-width: 0 !important;
}

.k-outline-2 {
    outline-width: 2px;
}

.\!k-outline-2 {
    outline-width: 2px !important;
}

.k-outline-4 {
    outline-width: 4px;
}

.\!k-outline-4 {
    outline-width: 4px !important;
}

.k-outline-8 {
    outline-width: 8px;
}

.\!k-outline-8 {
    outline-width: 8px !important;
}

.k-opacity-0 {
    opacity: 0;
}

.\!k-opacity-0 {
    opacity: 0 !important;
}

.k-opacity-5 {
    opacity: 0.05;
}

.\!k-opacity-5 {
    opacity: 0.05 !important;
}

.k-opacity-10 {
    opacity: 0.1;
}

.\!k-opacity-10 {
    opacity: 0.1 !important;
}

.k-opacity-20 {
    opacity: 0.2;
}

.\!k-opacity-20 {
    opacity: 0.2 !important;
}

.k-opacity-30 {
    opacity: 0.3;
}

.\!k-opacity-30 {
    opacity: 0.3 !important;
}

.k-opacity-40 {
    opacity: 0.4;
}

.\!k-opacity-40 {
    opacity: 0.4 !important;
}

.k-opacity-50 {
    opacity: 0.5;
}

.\!k-opacity-50 {
    opacity: 0.5 !important;
}

.k-opacity-60 {
    opacity: 0.6;
}

.\!k-opacity-60 {
    opacity: 0.6 !important;
}

.k-opacity-70 {
    opacity: 0.7;
}

.\!k-opacity-70 {
    opacity: 0.7 !important;
}

.k-opacity-80 {
    opacity: 0.8;
}

.\!k-opacity-80 {
    opacity: 0.8 !important;
}

.k-opacity-90 {
    opacity: 0.9;
}

.\!k-opacity-90 {
    opacity: 0.9 !important;
}

.k-opacity-100 {
    opacity: 1;
}

.\!k-opacity-100 {
    opacity: 1 !important;
}

.k-backdrop-blur {
    backdrop-filter: blur(8px);
}

.\!k-backdrop-blur {
    backdrop-filter: blur(8px) !important;
}

.k-backdrop-blur-none {
    backdrop-filter: blur(0);
}

.\!k-backdrop-blur-none {
    backdrop-filter: blur(0) !important;
}

.k-backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

.\!k-backdrop-blur-sm {
    backdrop-filter: blur(4px) !important;
}

.k-backdrop-blur-md {
    backdrop-filter: blur(6px);
}

.\!k-backdrop-blur-md {
    backdrop-filter: blur(6px) !important;
}

.k-backdrop-blur-lg {
    backdrop-filter: blur(12px);
}

.\!k-backdrop-blur-lg {
    backdrop-filter: blur(12px) !important;
}

.k-border-collapse {
    border-collapse: collapse;
}

.\!k-border-collapse {
    border-collapse: collapse !important;
}

.k-border-separate {
    border-collapse: separate;
}

.\!k-border-separate {
    border-collapse: separate !important;
}

.k-table-auto {
    table-layout: auto;
}

.\!k-table-auto {
    table-layout: auto !important;
}

.k-table-fixed {
    table-layout: fixed;
}

.\!k-table-fixed {
    table-layout: fixed !important;
}

.k-table-layout-auto {
    table-layout: auto;
}

.\!k-table-layout-auto {
    table-layout: auto !important;
}

.k-table-layout-fixed {
    table-layout: fixed;
}

.\!k-table-layout-fixed {
    table-layout: fixed !important;
}

.k-flip-h, .k-flip-x {
    transform: scaleX(-1);
}

.\!k-flip-h, .\!k-flip-x {
    transform: scaleX(-1) !important;
}

.k-flip-v, .k-flip-y {
    transform: scaleY(-1);
}

.\!k-flip-v, .\!k-flip-y {
    transform: scaleY(-1) !important;
}

.k-flip-h.k-flip-v, .k-flip-v.k-flip-x, .k-flip-x.k-flip-y, .k-flip-h.k-flip-y {
    transform: scale(-1, -1);
}

.\!k-flip-h.\!k-flip-v, .\!k-flip-v.\!k-flip-x, .\!k-flip-x.\!k-flip-y, .\!k-flip-h.\!k-flip-y {
    transform: scale(-1, -1) !important;
}

.k-origin-center {
    transform-origin: center;
}

.\!k-origin-center {
    transform-origin: center !important;
}

.k-origin-top {
    transform-origin: top;
}

.\!k-origin-top {
    transform-origin: top !important;
}

.k-origin-right {
    transform-origin: right;
}

.\!k-origin-right {
    transform-origin: right !important;
}

.k-origin-bottom {
    transform-origin: bottom;
}

.\!k-origin-bottom {
    transform-origin: bottom !important;
}

.k-origin-left {
    transform-origin: left;
}

.\!k-origin-left {
    transform-origin: left !important;
}

.k-origin-top-left {
    transform-origin: top left;
}

.\!k-origin-top-left {
    transform-origin: top left !important;
}

.k-origin-top-right {
    transform-origin: top right;
}

.\!k-origin-top-right {
    transform-origin: top right !important;
}

.k-origin-bottom-left {
    transform-origin: bottom left;
}

.\!k-origin-bottom-left {
    transform-origin: bottom left !important;
}

.k-origin-bottom-right {
    transform-origin: bottom right;
}

.\!k-origin-bottom-right {
    transform-origin: bottom right !important;
}

.k-rotate-0 {
    transform: rotate(0deg);
}

.\!k-rotate-0 {
    transform: rotate(0deg) !important;
}

.k-rotate-45 {
    transform: rotate(45deg);
}

.\!k-rotate-45 {
    transform: rotate(45deg) !important;
}

.k-rotate-90 {
    transform: rotate(90deg);
}

.\!k-rotate-90 {
    transform: rotate(90deg) !important;
}

.k-rotate-135 {
    transform: rotate(135deg);
}

.\!k-rotate-135 {
    transform: rotate(135deg) !important;
}

.k-rotate-180 {
    transform: rotate(180deg);
}

.\!k-rotate-180 {
    transform: rotate(180deg) !important;
}

.k-rotate-225 {
    transform: rotate(225deg);
}

.\!k-rotate-225 {
    transform: rotate(225deg) !important;
}

.k-rotate-270 {
    transform: rotate(270deg);
}

.\!k-rotate-270 {
    transform: rotate(270deg) !important;
}

.k-rotate-315 {
    transform: rotate(315deg);
}

.\!k-rotate-315 {
    transform: rotate(315deg) !important;
}

.k-scale-0 {
    transform: scale(0);
}

.\!k-scale-0 {
    transform: scale(0) !important;
}

.k-scale-0\.25 {
    transform: scale(0.25);
}

.\!k-scale-0\.25 {
    transform: scale(0.25) !important;
}

.k-scale-0\.5 {
    transform: scale(0.5);
}

.\!k-scale-0\.5 {
    transform: scale(0.5) !important;
}

.k-scale-0\.75 {
    transform: scale(0.75);
}

.\!k-scale-0\.75 {
    transform: scale(0.75) !important;
}

.k-scale-1 {
    transform: scale(1);
}

.\!k-scale-1 {
    transform: scale(1) !important;
}

.k-scale-1\.25 {
    transform: scale(1.25);
}

.\!k-scale-1\.25 {
    transform: scale(1.25) !important;
}

.k-scale-1\.5 {
    transform: scale(1.5);
}

.\!k-scale-1\.5 {
    transform: scale(1.5) !important;
}

.k-scale-2 {
    transform: scale(2);
}

.\!k-scale-2 {
    transform: scale(2) !important;
}

.k-scale-x-0 {
    transform: scaleX(0);
}

.\!k-scale-x-0 {
    transform: scaleX(0) !important;
}

.k-scale-x-0\.25 {
    transform: scaleX(0.25);
}

.\!k-scale-x-0\.25 {
    transform: scaleX(0.25) !important;
}

.k-scale-x-0\.5 {
    transform: scaleX(0.5);
}

.\!k-scale-x-0\.5 {
    transform: scaleX(0.5) !important;
}

.k-scale-x-0\.75 {
    transform: scaleX(0.75);
}

.\!k-scale-x-0\.75 {
    transform: scaleX(0.75) !important;
}

.k-scale-x-1 {
    transform: scaleX(1);
}

.\!k-scale-x-1 {
    transform: scaleX(1) !important;
}

.k-scale-x-1\.25 {
    transform: scaleX(1.25);
}

.\!k-scale-x-1\.25 {
    transform: scaleX(1.25) !important;
}

.k-scale-x-1\.5 {
    transform: scaleX(1.5);
}

.\!k-scale-x-1\.5 {
    transform: scaleX(1.5) !important;
}

.k-scale-x-2 {
    transform: scaleX(2);
}

.\!k-scale-x-2 {
    transform: scaleX(2) !important;
}

.k-scale-y-0 {
    transform: scaleY(0);
}

.\!k-scale-y-0 {
    transform: scaleY(0) !important;
}

.k-scale-y-0\.25 {
    transform: scaleY(0.25);
}

.\!k-scale-y-0\.25 {
    transform: scaleY(0.25) !important;
}

.k-scale-y-0\.5 {
    transform: scaleY(0.5);
}

.\!k-scale-y-0\.5 {
    transform: scaleY(0.5) !important;
}

.k-scale-y-0\.75 {
    transform: scaleY(0.75);
}

.\!k-scale-y-0\.75 {
    transform: scaleY(0.75) !important;
}

.k-scale-y-1 {
    transform: scaleY(1);
}

.\!k-scale-y-1 {
    transform: scaleY(1) !important;
}

.k-scale-y-1\.25 {
    transform: scaleY(1.25);
}

.\!k-scale-y-1\.25 {
    transform: scaleY(1.25) !important;
}

.k-scale-y-1\.5 {
    transform: scaleY(1.5);
}

.\!k-scale-y-1\.5 {
    transform: scaleY(1.5) !important;
}

.k-scale-y-2 {
    transform: scaleY(2);
}

.\!k-scale-y-2 {
    transform: scaleY(2) !important;
}

.k-skew-x-0 {
    transform: skewX(0deg);
}

.\!k-skew-x-0 {
    transform: skewX(0deg) !important;
}

.k-skew-x-1 {
    transform: skewX(1deg);
}

.\!k-skew-x-1 {
    transform: skewX(1deg) !important;
}

.k-skew-x-2 {
    transform: skewX(2deg);
}

.\!k-skew-x-2 {
    transform: skewX(2deg) !important;
}

.k-skew-x-3 {
    transform: skewX(3deg);
}

.\!k-skew-x-3 {
    transform: skewX(3deg) !important;
}

.k-skew-x-4 {
    transform: skewX(4deg);
}

.\!k-skew-x-4 {
    transform: skewX(4deg) !important;
}

.k-skew-x-5 {
    transform: skewX(5deg);
}

.\!k-skew-x-5 {
    transform: skewX(5deg) !important;
}

.k-skew-x-6 {
    transform: skewX(6deg);
}

.\!k-skew-x-6 {
    transform: skewX(6deg) !important;
}

.k-skew-x-7 {
    transform: skewX(7deg);
}

.\!k-skew-x-7 {
    transform: skewX(7deg) !important;
}

.k-skew-x-8 {
    transform: skewX(8deg);
}

.\!k-skew-x-8 {
    transform: skewX(8deg) !important;
}

.k-skew-x-9 {
    transform: skewX(9deg);
}

.\!k-skew-x-9 {
    transform: skewX(9deg) !important;
}

.k-skew-x-10 {
    transform: skewX(10deg);
}

.\!k-skew-x-10 {
    transform: skewX(10deg) !important;
}

.k-skew-x-11 {
    transform: skewX(11deg);
}

.\!k-skew-x-11 {
    transform: skewX(11deg) !important;
}

.k-skew-x-12 {
    transform: skewX(12deg);
}

.\!k-skew-x-12 {
    transform: skewX(12deg) !important;
}

.k-skew-y-0 {
    transform: skewY(0deg);
}

.\!k-skew-y-0 {
    transform: skewY(0deg) !important;
}

.k-skew-y-1 {
    transform: skewY(1deg);
}

.\!k-skew-y-1 {
    transform: skewY(1deg) !important;
}

.k-skew-y-2 {
    transform: skewY(2deg);
}

.\!k-skew-y-2 {
    transform: skewY(2deg) !important;
}

.k-skew-y-3 {
    transform: skewY(3deg);
}

.\!k-skew-y-3 {
    transform: skewY(3deg) !important;
}

.k-skew-y-4 {
    transform: skewY(4deg);
}

.\!k-skew-y-4 {
    transform: skewY(4deg) !important;
}

.k-skew-y-5 {
    transform: skewY(5deg);
}

.\!k-skew-y-5 {
    transform: skewY(5deg) !important;
}

.k-skew-y-6 {
    transform: skewY(6deg);
}

.\!k-skew-y-6 {
    transform: skewY(6deg) !important;
}

.k-skew-y-7 {
    transform: skewY(7deg);
}

.\!k-skew-y-7 {
    transform: skewY(7deg) !important;
}

.k-skew-y-8 {
    transform: skewY(8deg);
}

.\!k-skew-y-8 {
    transform: skewY(8deg) !important;
}

.k-skew-y-9 {
    transform: skewY(9deg);
}

.\!k-skew-y-9 {
    transform: skewY(9deg) !important;
}

.k-skew-y-10 {
    transform: skewY(10deg);
}

.\!k-skew-y-10 {
    transform: skewY(10deg) !important;
}

.k-skew-y-11 {
    transform: skewY(11deg);
}

.\!k-skew-y-11 {
    transform: skewY(11deg) !important;
}

.k-skew-y-12 {
    transform: skewY(12deg);
}

.\!k-skew-y-12 {
    transform: skewY(12deg) !important;
}

.k-translate-0 {
    transform: translate(0, 0);
}

.\!k-translate-0 {
    transform: translate(0, 0) !important;
}

.k-translate-0-50 {
    transform: translate(0, 50%);
}

.\!k-translate-0-50 {
    transform: translate(0, 50%) !important;
}

.k-translate-0-100 {
    transform: translate(0, 100%);
}

.\!k-translate-0-100 {
    transform: translate(0, 100%) !important;
}

.k-translate-50-0 {
    transform: translate(50%, 0);
}

.\!k-translate-50-0 {
    transform: translate(50%, 0) !important;
}

.k-translate-50-50 {
    transform: translate(50%, 50%);
}

.\!k-translate-50-50 {
    transform: translate(50%, 50%) !important;
}

.k-translate-50-100 {
    transform: translate(50%, 100%);
}

.\!k-translate-50-100 {
    transform: translate(50%, 100%) !important;
}

.k-translate-100-0 {
    transform: translate(100%, 0);
}

.\!k-translate-100-0 {
    transform: translate(100%, 0) !important;
}

.k-translate-100-50 {
    transform: translate(100%, 50%);
}

.\!k-translate-100-50 {
    transform: translate(100%, 50%) !important;
}

.k-translate-100-100 {
    transform: translate(100%, 100%);
}

.\!k-translate-100-100 {
    transform: translate(100%, 100%) !important;
}

.k-translate-x-0 {
    transform: translateX(0);
}

.\!k-translate-x-0 {
    transform: translateX(0) !important;
}

.k-translate-x-1px {
    transform: translateX(1px);
}

.\!k-translate-x-1px {
    transform: translateX(1px) !important;
}

.k-translate-x-0\.5 {
    transform: translateX(0.125rem);
}

.\!k-translate-x-0\.5 {
    transform: translateX(0.125rem) !important;
}

.k-translate-x-1 {
    transform: translateX(0.25rem);
}

.\!k-translate-x-1 {
    transform: translateX(0.25rem) !important;
}

.k-translate-x-1\.5 {
    transform: translateX(0.375rem);
}

.\!k-translate-x-1\.5 {
    transform: translateX(0.375rem) !important;
}

.k-translate-x-2 {
    transform: translateX(0.5rem);
}

.\!k-translate-x-2 {
    transform: translateX(0.5rem) !important;
}

.k-translate-x-2\.5 {
    transform: translateX(0.625rem);
}

.\!k-translate-x-2\.5 {
    transform: translateX(0.625rem) !important;
}

.k-translate-x-3 {
    transform: translateX(0.75rem);
}

.\!k-translate-x-3 {
    transform: translateX(0.75rem) !important;
}

.k-translate-x-3\.5 {
    transform: translateX(0.875rem);
}

.\!k-translate-x-3\.5 {
    transform: translateX(0.875rem) !important;
}

.k-translate-x-4 {
    transform: translateX(1rem);
}

.\!k-translate-x-4 {
    transform: translateX(1rem) !important;
}

.k-translate-x-4\.5 {
    transform: translateX(1.125rem);
}

.\!k-translate-x-4\.5 {
    transform: translateX(1.125rem) !important;
}

.k-translate-x-5 {
    transform: translateX(1.25rem);
}

.\!k-translate-x-5 {
    transform: translateX(1.25rem) !important;
}

.k-translate-x-5\.5 {
    transform: translateX(1.375rem);
}

.\!k-translate-x-5\.5 {
    transform: translateX(1.375rem) !important;
}

.k-translate-x-6 {
    transform: translateX(1.5rem);
}

.\!k-translate-x-6 {
    transform: translateX(1.5rem) !important;
}

.k-translate-x-6\.5 {
    transform: translateX(1.625rem);
}

.\!k-translate-x-6\.5 {
    transform: translateX(1.625rem) !important;
}

.k-translate-x-7 {
    transform: translateX(1.75rem);
}

.\!k-translate-x-7 {
    transform: translateX(1.75rem) !important;
}

.k-translate-x-7\.5 {
    transform: translateX(1.875rem);
}

.\!k-translate-x-7\.5 {
    transform: translateX(1.875rem) !important;
}

.k-translate-x-8 {
    transform: translateX(2rem);
}

.\!k-translate-x-8 {
    transform: translateX(2rem) !important;
}

.k-translate-x-9 {
    transform: translateX(2.25rem);
}

.\!k-translate-x-9 {
    transform: translateX(2.25rem) !important;
}

.k-translate-x-10 {
    transform: translateX(2.5rem);
}

.\!k-translate-x-10 {
    transform: translateX(2.5rem) !important;
}

.k-translate-x-11 {
    transform: translateX(2.75rem);
}

.\!k-translate-x-11 {
    transform: translateX(2.75rem) !important;
}

.k-translate-x-12 {
    transform: translateX(3rem);
}

.\!k-translate-x-12 {
    transform: translateX(3rem) !important;
}

.k-translate-x-13 {
    transform: translateX(3.25rem);
}

.\!k-translate-x-13 {
    transform: translateX(3.25rem) !important;
}

.k-translate-x-14 {
    transform: translateX(3.5rem);
}

.\!k-translate-x-14 {
    transform: translateX(3.5rem) !important;
}

.k-translate-x-15 {
    transform: translateX(3.75rem);
}

.\!k-translate-x-15 {
    transform: translateX(3.75rem) !important;
}

.k-translate-x-16 {
    transform: translateX(4rem);
}

.\!k-translate-x-16 {
    transform: translateX(4rem) !important;
}

.k-translate-x-17 {
    transform: translateX(4.25rem);
}

.\!k-translate-x-17 {
    transform: translateX(4.25rem) !important;
}

.k-translate-x-18 {
    transform: translateX(4.5rem);
}

.\!k-translate-x-18 {
    transform: translateX(4.5rem) !important;
}

.k-translate-x-19 {
    transform: translateX(4.75rem);
}

.\!k-translate-x-19 {
    transform: translateX(4.75rem) !important;
}

.k-translate-x-20 {
    transform: translateX(5rem);
}

.\!k-translate-x-20 {
    transform: translateX(5rem) !important;
}

.k-translate-x-21 {
    transform: translateX(5.25rem);
}

.\!k-translate-x-21 {
    transform: translateX(5.25rem) !important;
}

.k-translate-x-22 {
    transform: translateX(5.5rem);
}

.\!k-translate-x-22 {
    transform: translateX(5.5rem) !important;
}

.k-translate-x-23 {
    transform: translateX(5.75rem);
}

.\!k-translate-x-23 {
    transform: translateX(5.75rem) !important;
}

.k-translate-x-24 {
    transform: translateX(6rem);
}

.\!k-translate-x-24 {
    transform: translateX(6rem) !important;
}

.k-translate-x-1\/2 {
    transform: translateX(50%);
}

.\!k-translate-x-1\/2 {
    transform: translateX(50%) !important;
}

.k-translate-x-1\/3 {
    transform: translateX(33.333333%);
}

.\!k-translate-x-1\/3 {
    transform: translateX(33.333333%) !important;
}

.k-translate-x-2\/3 {
    transform: translateX(66.666667%);
}

.\!k-translate-x-2\/3 {
    transform: translateX(66.666667%) !important;
}

.k-translate-x-1\/4 {
    transform: translateX(25%);
}

.\!k-translate-x-1\/4 {
    transform: translateX(25%) !important;
}

.k-translate-x-2\/4 {
    transform: translateX(50%);
}

.\!k-translate-x-2\/4 {
    transform: translateX(50%) !important;
}

.k-translate-x-3\/4 {
    transform: translateX(75%);
}

.\!k-translate-x-3\/4 {
    transform: translateX(75%) !important;
}

.k-translate-x-1\/5 {
    transform: translateX(20%);
}

.\!k-translate-x-1\/5 {
    transform: translateX(20%) !important;
}

.k-translate-x-2\/5 {
    transform: translateX(40%);
}

.\!k-translate-x-2\/5 {
    transform: translateX(40%) !important;
}

.k-translate-x-3\/5 {
    transform: translateX(60%);
}

.\!k-translate-x-3\/5 {
    transform: translateX(60%) !important;
}

.k-translate-x-4\/5 {
    transform: translateX(80%);
}

.\!k-translate-x-4\/5 {
    transform: translateX(80%) !important;
}

.k-translate-x-1\/6 {
    transform: translateX(16.666667%);
}

.\!k-translate-x-1\/6 {
    transform: translateX(16.666667%) !important;
}

.k-translate-x-2\/6 {
    transform: translateX(33.333333%);
}

.\!k-translate-x-2\/6 {
    transform: translateX(33.333333%) !important;
}

.k-translate-x-3\/6 {
    transform: translateX(50%);
}

.\!k-translate-x-3\/6 {
    transform: translateX(50%) !important;
}

.k-translate-x-4\/6 {
    transform: translateX(66.666667%);
}

.\!k-translate-x-4\/6 {
    transform: translateX(66.666667%) !important;
}

.k-translate-x-5\/6 {
    transform: translateX(83.333333%);
}

.\!k-translate-x-5\/6 {
    transform: translateX(83.333333%) !important;
}

.k-translate-x-1\/12 {
    transform: translateX(8.333333%);
}

.\!k-translate-x-1\/12 {
    transform: translateX(8.333333%) !important;
}

.k-translate-x-2\/12 {
    transform: translateX(16.666667%);
}

.\!k-translate-x-2\/12 {
    transform: translateX(16.666667%) !important;
}

.k-translate-x-3\/12 {
    transform: translateX(25%);
}

.\!k-translate-x-3\/12 {
    transform: translateX(25%) !important;
}

.k-translate-x-4\/12 {
    transform: translateX(33.333333%);
}

.\!k-translate-x-4\/12 {
    transform: translateX(33.333333%) !important;
}

.k-translate-x-5\/12 {
    transform: translateX(41.666667%);
}

.\!k-translate-x-5\/12 {
    transform: translateX(41.666667%) !important;
}

.k-translate-x-6\/12 {
    transform: translateX(50%);
}

.\!k-translate-x-6\/12 {
    transform: translateX(50%) !important;
}

.k-translate-x-7\/12 {
    transform: translateX(58.333333%);
}

.\!k-translate-x-7\/12 {
    transform: translateX(58.333333%) !important;
}

.k-translate-x-8\/12 {
    transform: translateX(66.666667%);
}

.\!k-translate-x-8\/12 {
    transform: translateX(66.666667%) !important;
}

.k-translate-x-9\/12 {
    transform: translateX(75%);
}

.\!k-translate-x-9\/12 {
    transform: translateX(75%) !important;
}

.k-translate-x-10\/12 {
    transform: translateX(83.333333%);
}

.\!k-translate-x-10\/12 {
    transform: translateX(83.333333%) !important;
}

.k-translate-x-11\/12 {
    transform: translateX(91.666667%);
}

.\!k-translate-x-11\/12 {
    transform: translateX(91.666667%) !important;
}

.k-translate-x-full {
    transform: translateX(100%);
}

.\!k-translate-x-full {
    transform: translateX(100%) !important;
}

.k-translate-y-0 {
    transform: translateY(0);
}

.\!k-translate-y-0 {
    transform: translateY(0) !important;
}

.k-translate-y-1px {
    transform: translateY(1px);
}

.\!k-translate-y-1px {
    transform: translateY(1px) !important;
}

.k-translate-y-0\.5 {
    transform: translateY(0.125rem);
}

.\!k-translate-y-0\.5 {
    transform: translateY(0.125rem) !important;
}

.k-translate-y-1 {
    transform: translateY(0.25rem);
}

.\!k-translate-y-1 {
    transform: translateY(0.25rem) !important;
}

.k-translate-y-1\.5 {
    transform: translateY(0.375rem);
}

.\!k-translate-y-1\.5 {
    transform: translateY(0.375rem) !important;
}

.k-translate-y-2 {
    transform: translateY(0.5rem);
}

.\!k-translate-y-2 {
    transform: translateY(0.5rem) !important;
}

.k-translate-y-2\.5 {
    transform: translateY(0.625rem);
}

.\!k-translate-y-2\.5 {
    transform: translateY(0.625rem) !important;
}

.k-translate-y-3 {
    transform: translateY(0.75rem);
}

.\!k-translate-y-3 {
    transform: translateY(0.75rem) !important;
}

.k-translate-y-3\.5 {
    transform: translateY(0.875rem);
}

.\!k-translate-y-3\.5 {
    transform: translateY(0.875rem) !important;
}

.k-translate-y-4 {
    transform: translateY(1rem);
}

.\!k-translate-y-4 {
    transform: translateY(1rem) !important;
}

.k-translate-y-4\.5 {
    transform: translateY(1.125rem);
}

.\!k-translate-y-4\.5 {
    transform: translateY(1.125rem) !important;
}

.k-translate-y-5 {
    transform: translateY(1.25rem);
}

.\!k-translate-y-5 {
    transform: translateY(1.25rem) !important;
}

.k-translate-y-5\.5 {
    transform: translateY(1.375rem);
}

.\!k-translate-y-5\.5 {
    transform: translateY(1.375rem) !important;
}

.k-translate-y-6 {
    transform: translateY(1.5rem);
}

.\!k-translate-y-6 {
    transform: translateY(1.5rem) !important;
}

.k-translate-y-6\.5 {
    transform: translateY(1.625rem);
}

.\!k-translate-y-6\.5 {
    transform: translateY(1.625rem) !important;
}

.k-translate-y-7 {
    transform: translateY(1.75rem);
}

.\!k-translate-y-7 {
    transform: translateY(1.75rem) !important;
}

.k-translate-y-7\.5 {
    transform: translateY(1.875rem);
}

.\!k-translate-y-7\.5 {
    transform: translateY(1.875rem) !important;
}

.k-translate-y-8 {
    transform: translateY(2rem);
}

.\!k-translate-y-8 {
    transform: translateY(2rem) !important;
}

.k-translate-y-9 {
    transform: translateY(2.25rem);
}

.\!k-translate-y-9 {
    transform: translateY(2.25rem) !important;
}

.k-translate-y-10 {
    transform: translateY(2.5rem);
}

.\!k-translate-y-10 {
    transform: translateY(2.5rem) !important;
}

.k-translate-y-11 {
    transform: translateY(2.75rem);
}

.\!k-translate-y-11 {
    transform: translateY(2.75rem) !important;
}

.k-translate-y-12 {
    transform: translateY(3rem);
}

.\!k-translate-y-12 {
    transform: translateY(3rem) !important;
}

.k-translate-y-13 {
    transform: translateY(3.25rem);
}

.\!k-translate-y-13 {
    transform: translateY(3.25rem) !important;
}

.k-translate-y-14 {
    transform: translateY(3.5rem);
}

.\!k-translate-y-14 {
    transform: translateY(3.5rem) !important;
}

.k-translate-y-15 {
    transform: translateY(3.75rem);
}

.\!k-translate-y-15 {
    transform: translateY(3.75rem) !important;
}

.k-translate-y-16 {
    transform: translateY(4rem);
}

.\!k-translate-y-16 {
    transform: translateY(4rem) !important;
}

.k-translate-y-17 {
    transform: translateY(4.25rem);
}

.\!k-translate-y-17 {
    transform: translateY(4.25rem) !important;
}

.k-translate-y-18 {
    transform: translateY(4.5rem);
}

.\!k-translate-y-18 {
    transform: translateY(4.5rem) !important;
}

.k-translate-y-19 {
    transform: translateY(4.75rem);
}

.\!k-translate-y-19 {
    transform: translateY(4.75rem) !important;
}

.k-translate-y-20 {
    transform: translateY(5rem);
}

.\!k-translate-y-20 {
    transform: translateY(5rem) !important;
}

.k-translate-y-21 {
    transform: translateY(5.25rem);
}

.\!k-translate-y-21 {
    transform: translateY(5.25rem) !important;
}

.k-translate-y-22 {
    transform: translateY(5.5rem);
}

.\!k-translate-y-22 {
    transform: translateY(5.5rem) !important;
}

.k-translate-y-23 {
    transform: translateY(5.75rem);
}

.\!k-translate-y-23 {
    transform: translateY(5.75rem) !important;
}

.k-translate-y-24 {
    transform: translateY(6rem);
}

.\!k-translate-y-24 {
    transform: translateY(6rem) !important;
}

.k-translate-y-1\/2 {
    transform: translateY(50%);
}

.\!k-translate-y-1\/2 {
    transform: translateY(50%) !important;
}

.k-translate-y-1\/3 {
    transform: translateY(33.333333%);
}

.\!k-translate-y-1\/3 {
    transform: translateY(33.333333%) !important;
}

.k-translate-y-2\/3 {
    transform: translateY(66.666667%);
}

.\!k-translate-y-2\/3 {
    transform: translateY(66.666667%) !important;
}

.k-translate-y-1\/4 {
    transform: translateY(25%);
}

.\!k-translate-y-1\/4 {
    transform: translateY(25%) !important;
}

.k-translate-y-2\/4 {
    transform: translateY(50%);
}

.\!k-translate-y-2\/4 {
    transform: translateY(50%) !important;
}

.k-translate-y-3\/4 {
    transform: translateY(75%);
}

.\!k-translate-y-3\/4 {
    transform: translateY(75%) !important;
}

.k-translate-y-1\/5 {
    transform: translateY(20%);
}

.\!k-translate-y-1\/5 {
    transform: translateY(20%) !important;
}

.k-translate-y-2\/5 {
    transform: translateY(40%);
}

.\!k-translate-y-2\/5 {
    transform: translateY(40%) !important;
}

.k-translate-y-3\/5 {
    transform: translateY(60%);
}

.\!k-translate-y-3\/5 {
    transform: translateY(60%) !important;
}

.k-translate-y-4\/5 {
    transform: translateY(80%);
}

.\!k-translate-y-4\/5 {
    transform: translateY(80%) !important;
}

.k-translate-y-1\/6 {
    transform: translateY(16.666667%);
}

.\!k-translate-y-1\/6 {
    transform: translateY(16.666667%) !important;
}

.k-translate-y-2\/6 {
    transform: translateY(33.333333%);
}

.\!k-translate-y-2\/6 {
    transform: translateY(33.333333%) !important;
}

.k-translate-y-3\/6 {
    transform: translateY(50%);
}

.\!k-translate-y-3\/6 {
    transform: translateY(50%) !important;
}

.k-translate-y-4\/6 {
    transform: translateY(66.666667%);
}

.\!k-translate-y-4\/6 {
    transform: translateY(66.666667%) !important;
}

.k-translate-y-5\/6 {
    transform: translateY(83.333333%);
}

.\!k-translate-y-5\/6 {
    transform: translateY(83.333333%) !important;
}

.k-translate-y-1\/12 {
    transform: translateY(8.333333%);
}

.\!k-translate-y-1\/12 {
    transform: translateY(8.333333%) !important;
}

.k-translate-y-2\/12 {
    transform: translateY(16.666667%);
}

.\!k-translate-y-2\/12 {
    transform: translateY(16.666667%) !important;
}

.k-translate-y-3\/12 {
    transform: translateY(25%);
}

.\!k-translate-y-3\/12 {
    transform: translateY(25%) !important;
}

.k-translate-y-4\/12 {
    transform: translateY(33.333333%);
}

.\!k-translate-y-4\/12 {
    transform: translateY(33.333333%) !important;
}

.k-translate-y-5\/12 {
    transform: translateY(41.666667%);
}

.\!k-translate-y-5\/12 {
    transform: translateY(41.666667%) !important;
}

.k-translate-y-6\/12 {
    transform: translateY(50%);
}

.\!k-translate-y-6\/12 {
    transform: translateY(50%) !important;
}

.k-translate-y-7\/12 {
    transform: translateY(58.333333%);
}

.\!k-translate-y-7\/12 {
    transform: translateY(58.333333%) !important;
}

.k-translate-y-8\/12 {
    transform: translateY(66.666667%);
}

.\!k-translate-y-8\/12 {
    transform: translateY(66.666667%) !important;
}

.k-translate-y-9\/12 {
    transform: translateY(75%);
}

.\!k-translate-y-9\/12 {
    transform: translateY(75%) !important;
}

.k-translate-y-10\/12 {
    transform: translateY(83.333333%);
}

.\!k-translate-y-10\/12 {
    transform: translateY(83.333333%) !important;
}

.k-translate-y-11\/12 {
    transform: translateY(91.666667%);
}

.\!k-translate-y-11\/12 {
    transform: translateY(91.666667%) !important;
}

.k-translate-y-full {
    transform: translateY(100%);
}

.\!k-translate-y-full {
    transform: translateY(100%) !important;
}

.k-appearance-none {
    appearance: none;
}

.\!k-appearance-none {
    appearance: none !important;
}

.k-appearance-auto {
    appearance: auto;
}

.\!k-appearance-auto {
    appearance: auto !important;
}

.k-cursor-none {
    cursor: none;
}

.\!k-cursor-none {
    cursor: none !important;
}

.k-cursor-auto {
    cursor: auto;
}

.\!k-cursor-auto {
    cursor: auto !important;
}

.k-cursor-default {
    cursor: default;
}

.\!k-cursor-default {
    cursor: default !important;
}

.k-cursor-context-menu {
    cursor: context-menu;
}

.\!k-cursor-context-menu {
    cursor: context-menu !important;
}

.k-cursor-help {
    cursor: help;
}

.\!k-cursor-help {
    cursor: help !important;
}

.k-cursor-pointer {
    cursor: pointer;
}

.\!k-cursor-pointer {
    cursor: pointer !important;
}

.k-cursor-progress {
    cursor: progress;
}

.\!k-cursor-progress {
    cursor: progress !important;
}

.k-cursor-wait {
    cursor: wait;
}

.\!k-cursor-wait {
    cursor: wait !important;
}

.k-cursor-cell {
    cursor: cell;
}

.\!k-cursor-cell {
    cursor: cell !important;
}

.k-cursor-crosshair {
    cursor: crosshair;
}

.\!k-cursor-crosshair {
    cursor: crosshair !important;
}

.k-cursor-text {
    cursor: text;
}

.\!k-cursor-text {
    cursor: text !important;
}

.k-cursor-vertical-text {
    cursor: vertical-text;
}

.\!k-cursor-vertical-text {
    cursor: vertical-text !important;
}

.k-cursor-alias {
    cursor: alias;
}

.\!k-cursor-alias {
    cursor: alias !important;
}

.k-cursor-copy {
    cursor: copy;
}

.\!k-cursor-copy {
    cursor: copy !important;
}

.k-cursor-move {
    cursor: move;
}

.\!k-cursor-move {
    cursor: move !important;
}

.k-cursor-no-drop {
    cursor: no-drop;
}

.\!k-cursor-no-drop {
    cursor: no-drop !important;
}

.k-cursor-not-allowed {
    cursor: not-allowed;
}

.\!k-cursor-not-allowed {
    cursor: not-allowed !important;
}

.k-cursor-e-resize {
    cursor: e-resize;
}

.\!k-cursor-e-resize {
    cursor: e-resize !important;
}

.k-cursor-n-resize {
    cursor: n-resize;
}

.\!k-cursor-n-resize {
    cursor: n-resize !important;
}

.k-cursor-ne-resize {
    cursor: ne-resize;
}

.\!k-cursor-ne-resize {
    cursor: ne-resize !important;
}

.k-cursor-nw-resize {
    cursor: nw-resize;
}

.\!k-cursor-nw-resize {
    cursor: nw-resize !important;
}

.k-cursor-s-resize {
    cursor: s-resize;
}

.\!k-cursor-s-resize {
    cursor: s-resize !important;
}

.k-cursor-se-resize {
    cursor: se-resize;
}

.\!k-cursor-se-resize {
    cursor: se-resize !important;
}

.k-cursor-sw-resize {
    cursor: sw-resize;
}

.\!k-cursor-sw-resize {
    cursor: sw-resize !important;
}

.k-cursor-w-resize {
    cursor: w-resize;
}

.\!k-cursor-w-resize {
    cursor: w-resize !important;
}

.k-cursor-ew-resize {
    cursor: ew-resize;
}

.\!k-cursor-ew-resize {
    cursor: ew-resize !important;
}

.k-cursor-ns-resize {
    cursor: ns-resize;
}

.\!k-cursor-ns-resize {
    cursor: ns-resize !important;
}

.k-cursor-nesw-resize {
    cursor: nesw-resize;
}

.\!k-cursor-nesw-resize {
    cursor: nesw-resize !important;
}

.k-cursor-nwse-resize {
    cursor: nwse-resize;
}

.\!k-cursor-nwse-resize {
    cursor: nwse-resize !important;
}

.k-cursor-col-resize {
    cursor: col-resize;
}

.\!k-cursor-col-resize {
    cursor: col-resize !important;
}

.k-cursor-row-resize {
    cursor: row-resize;
}

.\!k-cursor-row-resize {
    cursor: row-resize !important;
}

.k-cursor-all-scroll {
    cursor: all-scroll;
}

.\!k-cursor-all-scroll {
    cursor: all-scroll !important;
}

.k-cursor-zoom-in {
    cursor: zoom-in;
}

.\!k-cursor-zoom-in {
    cursor: zoom-in !important;
}

.k-cursor-zoom-out {
    cursor: zoom-out;
}

.\!k-cursor-zoom-out {
    cursor: zoom-out !important;
}

.k-cursor-grab {
    cursor: grab;
}

.\!k-cursor-grab {
    cursor: grab !important;
}

.k-cursor-grabbing {
    cursor: grabbing;
}

.\!k-cursor-grabbing {
    cursor: grabbing !important;
}

.k-pointer-events-none {
    pointer-events: none;
}

.\!k-pointer-events-none {
    pointer-events: none !important;
}

.k-pointer-events-auto {
    pointer-events: auto;
}

.\!k-pointer-events-auto {
    pointer-events: auto !important;
}

.k-resize {
    resize: both;
}

.\!k-resize {
    resize: both !important;
}

.k-resize-none {
    resize: none;
}

.\!k-resize-none {
    resize: none !important;
}

.k-resize-x {
    resize: horizontal;
}

.\!k-resize-x {
    resize: horizontal !important;
}

.k-resize-y {
    resize: vertical;
}

.\!k-resize-y {
    resize: vertical !important;
}

.k-scroll-auto {
    scroll-behavior: auto;
}

.\!k-scroll-auto {
    scroll-behavior: auto !important;
}

.k-scroll-smooth {
    scroll-behavior: smooth;
}

.\!k-scroll-smooth {
    scroll-behavior: smooth !important;
}

.k-scroll-snap-none {
    scroll-snap-type: none;
}

.\!k-scroll-snap-none {
    scroll-snap-type: none !important;
}

.k-scroll-snap-snap-x {
    scroll-snap-type: x var(--k-scroll-snap-strictness);
}

.\!k-scroll-snap-snap-x {
    scroll-snap-type: x var(--k-scroll-snap-strictness) !important;
}

.k-scroll-snap-snap-y {
    scroll-snap-type: y var(--k-scroll-snap-strictness);
}

.\!k-scroll-snap-snap-y {
    scroll-snap-type: y var(--k-scroll-snap-strictness) !important;
}

.k-scroll-snap-snap-both {
    scroll-snap-type: both var(--k-scroll-snap-strictness);
}

.\!k-scroll-snap-snap-both {
    scroll-snap-type: both var(--k-scroll-snap-strictness) !important;
}

.k-scroll-snap-mandatory {
    --k-scroll-snap-strictness: mandatory;
}

.k-scroll-snap-proximity {
    --k-scroll-snap-strictness: proximity;
}

.k-scroll-snap-stop-normal {
    scroll-snap-stop: normal;
}

.\!k-scroll-snap-stop-normal {
    scroll-snap-stop: normal !important;
}

.k-scroll-snap-stop-always {
    scroll-snap-stop: always;
}

.\!k-scroll-snap-stop-always {
    scroll-snap-stop: always !important;
}

.k-scroll-snap-align-start {
    scroll-snap-align: start;
}

.\!k-scroll-snap-align-start {
    scroll-snap-align: start !important;
}

.k-scroll-snap-align-end {
    scroll-snap-align: end;
}

.\!k-scroll-snap-align-end {
    scroll-snap-align: end !important;
}

.k-scroll-snap-align-center {
    scroll-snap-align: center;
}

.\!k-scroll-snap-align-center {
    scroll-snap-align: center !important;
}

.k-scroll-snap-align-none {
    scroll-snap-align: none;
}

.\!k-scroll-snap-align-none {
    scroll-snap-align: none !important;
}

.k-scroll-m-0 {
    scroll-margin: 0;
}

.\!k-scroll-m-0 {
    scroll-margin: 0 !important;
}

.k-scroll-m-1px {
    scroll-margin: 1px;
}

.\!k-scroll-m-1px {
    scroll-margin: 1px !important;
}

.k-scroll-m-0\.5 {
    scroll-margin: 0.125rem;
}

.\!k-scroll-m-0\.5 {
    scroll-margin: 0.125rem !important;
}

.k-scroll-m-1 {
    scroll-margin: 0.25rem;
}

.\!k-scroll-m-1 {
    scroll-margin: 0.25rem !important;
}

.k-scroll-m-1\.5 {
    scroll-margin: 0.375rem;
}

.\!k-scroll-m-1\.5 {
    scroll-margin: 0.375rem !important;
}

.k-scroll-m-2 {
    scroll-margin: 0.5rem;
}

.\!k-scroll-m-2 {
    scroll-margin: 0.5rem !important;
}

.k-scroll-m-2\.5 {
    scroll-margin: 0.625rem;
}

.\!k-scroll-m-2\.5 {
    scroll-margin: 0.625rem !important;
}

.k-scroll-m-3 {
    scroll-margin: 0.75rem;
}

.\!k-scroll-m-3 {
    scroll-margin: 0.75rem !important;
}

.k-scroll-m-3\.5 {
    scroll-margin: 0.875rem;
}

.\!k-scroll-m-3\.5 {
    scroll-margin: 0.875rem !important;
}

.k-scroll-m-4 {
    scroll-margin: 1rem;
}

.\!k-scroll-m-4 {
    scroll-margin: 1rem !important;
}

.k-scroll-m-4\.5 {
    scroll-margin: 1.125rem;
}

.\!k-scroll-m-4\.5 {
    scroll-margin: 1.125rem !important;
}

.k-scroll-m-5 {
    scroll-margin: 1.25rem;
}

.\!k-scroll-m-5 {
    scroll-margin: 1.25rem !important;
}

.k-scroll-m-5\.5 {
    scroll-margin: 1.375rem;
}

.\!k-scroll-m-5\.5 {
    scroll-margin: 1.375rem !important;
}

.k-scroll-m-6 {
    scroll-margin: 1.5rem;
}

.\!k-scroll-m-6 {
    scroll-margin: 1.5rem !important;
}

.k-scroll-m-6\.5 {
    scroll-margin: 1.625rem;
}

.\!k-scroll-m-6\.5 {
    scroll-margin: 1.625rem !important;
}

.k-scroll-m-7 {
    scroll-margin: 1.75rem;
}

.\!k-scroll-m-7 {
    scroll-margin: 1.75rem !important;
}

.k-scroll-m-7\.5 {
    scroll-margin: 1.875rem;
}

.\!k-scroll-m-7\.5 {
    scroll-margin: 1.875rem !important;
}

.k-scroll-m-8 {
    scroll-margin: 2rem;
}

.\!k-scroll-m-8 {
    scroll-margin: 2rem !important;
}

.k-scroll-m-9 {
    scroll-margin: 2.25rem;
}

.\!k-scroll-m-9 {
    scroll-margin: 2.25rem !important;
}

.k-scroll-m-10 {
    scroll-margin: 2.5rem;
}

.\!k-scroll-m-10 {
    scroll-margin: 2.5rem !important;
}

.k-scroll-m-11 {
    scroll-margin: 2.75rem;
}

.\!k-scroll-m-11 {
    scroll-margin: 2.75rem !important;
}

.k-scroll-m-12 {
    scroll-margin: 3rem;
}

.\!k-scroll-m-12 {
    scroll-margin: 3rem !important;
}

.k-scroll-m-13 {
    scroll-margin: 3.25rem;
}

.\!k-scroll-m-13 {
    scroll-margin: 3.25rem !important;
}

.k-scroll-m-14 {
    scroll-margin: 3.5rem;
}

.\!k-scroll-m-14 {
    scroll-margin: 3.5rem !important;
}

.k-scroll-m-15 {
    scroll-margin: 3.75rem;
}

.\!k-scroll-m-15 {
    scroll-margin: 3.75rem !important;
}

.k-scroll-m-16 {
    scroll-margin: 4rem;
}

.\!k-scroll-m-16 {
    scroll-margin: 4rem !important;
}

.k-scroll-m-17 {
    scroll-margin: 4.25rem;
}

.\!k-scroll-m-17 {
    scroll-margin: 4.25rem !important;
}

.k-scroll-m-18 {
    scroll-margin: 4.5rem;
}

.\!k-scroll-m-18 {
    scroll-margin: 4.5rem !important;
}

.k-scroll-m-19 {
    scroll-margin: 4.75rem;
}

.\!k-scroll-m-19 {
    scroll-margin: 4.75rem !important;
}

.k-scroll-m-20 {
    scroll-margin: 5rem;
}

.\!k-scroll-m-20 {
    scroll-margin: 5rem !important;
}

.k-scroll-m-21 {
    scroll-margin: 5.25rem;
}

.\!k-scroll-m-21 {
    scroll-margin: 5.25rem !important;
}

.k-scroll-m-22 {
    scroll-margin: 5.5rem;
}

.\!k-scroll-m-22 {
    scroll-margin: 5.5rem !important;
}

.k-scroll-m-23 {
    scroll-margin: 5.75rem;
}

.\!k-scroll-m-23 {
    scroll-margin: 5.75rem !important;
}

.k-scroll-m-24 {
    scroll-margin: 6rem;
}

.\!k-scroll-m-24 {
    scroll-margin: 6rem !important;
}

.k-scroll-mt-0 {
    scroll-margin-top: 0;
}

.\!k-scroll-mt-0 {
    scroll-margin-top: 0 !important;
}

.k-scroll-mt-1px {
    scroll-margin-top: 1px;
}

.\!k-scroll-mt-1px {
    scroll-margin-top: 1px !important;
}

.k-scroll-mt-0\.5 {
    scroll-margin-top: 0.125rem;
}

.\!k-scroll-mt-0\.5 {
    scroll-margin-top: 0.125rem !important;
}

.k-scroll-mt-1 {
    scroll-margin-top: 0.25rem;
}

.\!k-scroll-mt-1 {
    scroll-margin-top: 0.25rem !important;
}

.k-scroll-mt-1\.5 {
    scroll-margin-top: 0.375rem;
}

.\!k-scroll-mt-1\.5 {
    scroll-margin-top: 0.375rem !important;
}

.k-scroll-mt-2 {
    scroll-margin-top: 0.5rem;
}

.\!k-scroll-mt-2 {
    scroll-margin-top: 0.5rem !important;
}

.k-scroll-mt-2\.5 {
    scroll-margin-top: 0.625rem;
}

.\!k-scroll-mt-2\.5 {
    scroll-margin-top: 0.625rem !important;
}

.k-scroll-mt-3 {
    scroll-margin-top: 0.75rem;
}

.\!k-scroll-mt-3 {
    scroll-margin-top: 0.75rem !important;
}

.k-scroll-mt-3\.5 {
    scroll-margin-top: 0.875rem;
}

.\!k-scroll-mt-3\.5 {
    scroll-margin-top: 0.875rem !important;
}

.k-scroll-mt-4 {
    scroll-margin-top: 1rem;
}

.\!k-scroll-mt-4 {
    scroll-margin-top: 1rem !important;
}

.k-scroll-mt-4\.5 {
    scroll-margin-top: 1.125rem;
}

.\!k-scroll-mt-4\.5 {
    scroll-margin-top: 1.125rem !important;
}

.k-scroll-mt-5 {
    scroll-margin-top: 1.25rem;
}

.\!k-scroll-mt-5 {
    scroll-margin-top: 1.25rem !important;
}

.k-scroll-mt-5\.5 {
    scroll-margin-top: 1.375rem;
}

.\!k-scroll-mt-5\.5 {
    scroll-margin-top: 1.375rem !important;
}

.k-scroll-mt-6 {
    scroll-margin-top: 1.5rem;
}

.\!k-scroll-mt-6 {
    scroll-margin-top: 1.5rem !important;
}

.k-scroll-mt-6\.5 {
    scroll-margin-top: 1.625rem;
}

.\!k-scroll-mt-6\.5 {
    scroll-margin-top: 1.625rem !important;
}

.k-scroll-mt-7 {
    scroll-margin-top: 1.75rem;
}

.\!k-scroll-mt-7 {
    scroll-margin-top: 1.75rem !important;
}

.k-scroll-mt-7\.5 {
    scroll-margin-top: 1.875rem;
}

.\!k-scroll-mt-7\.5 {
    scroll-margin-top: 1.875rem !important;
}

.k-scroll-mt-8 {
    scroll-margin-top: 2rem;
}

.\!k-scroll-mt-8 {
    scroll-margin-top: 2rem !important;
}

.k-scroll-mt-9 {
    scroll-margin-top: 2.25rem;
}

.\!k-scroll-mt-9 {
    scroll-margin-top: 2.25rem !important;
}

.k-scroll-mt-10 {
    scroll-margin-top: 2.5rem;
}

.\!k-scroll-mt-10 {
    scroll-margin-top: 2.5rem !important;
}

.k-scroll-mt-11 {
    scroll-margin-top: 2.75rem;
}

.\!k-scroll-mt-11 {
    scroll-margin-top: 2.75rem !important;
}

.k-scroll-mt-12 {
    scroll-margin-top: 3rem;
}

.\!k-scroll-mt-12 {
    scroll-margin-top: 3rem !important;
}

.k-scroll-mt-13 {
    scroll-margin-top: 3.25rem;
}

.\!k-scroll-mt-13 {
    scroll-margin-top: 3.25rem !important;
}

.k-scroll-mt-14 {
    scroll-margin-top: 3.5rem;
}

.\!k-scroll-mt-14 {
    scroll-margin-top: 3.5rem !important;
}

.k-scroll-mt-15 {
    scroll-margin-top: 3.75rem;
}

.\!k-scroll-mt-15 {
    scroll-margin-top: 3.75rem !important;
}

.k-scroll-mt-16 {
    scroll-margin-top: 4rem;
}

.\!k-scroll-mt-16 {
    scroll-margin-top: 4rem !important;
}

.k-scroll-mt-17 {
    scroll-margin-top: 4.25rem;
}

.\!k-scroll-mt-17 {
    scroll-margin-top: 4.25rem !important;
}

.k-scroll-mt-18 {
    scroll-margin-top: 4.5rem;
}

.\!k-scroll-mt-18 {
    scroll-margin-top: 4.5rem !important;
}

.k-scroll-mt-19 {
    scroll-margin-top: 4.75rem;
}

.\!k-scroll-mt-19 {
    scroll-margin-top: 4.75rem !important;
}

.k-scroll-mt-20 {
    scroll-margin-top: 5rem;
}

.\!k-scroll-mt-20 {
    scroll-margin-top: 5rem !important;
}

.k-scroll-mt-21 {
    scroll-margin-top: 5.25rem;
}

.\!k-scroll-mt-21 {
    scroll-margin-top: 5.25rem !important;
}

.k-scroll-mt-22 {
    scroll-margin-top: 5.5rem;
}

.\!k-scroll-mt-22 {
    scroll-margin-top: 5.5rem !important;
}

.k-scroll-mt-23 {
    scroll-margin-top: 5.75rem;
}

.\!k-scroll-mt-23 {
    scroll-margin-top: 5.75rem !important;
}

.k-scroll-mt-24 {
    scroll-margin-top: 6rem;
}

.\!k-scroll-mt-24 {
    scroll-margin-top: 6rem !important;
}

.k-scroll-mr-0 {
    scroll-margin-right: 0;
}

.\!k-scroll-mr-0 {
    scroll-margin-right: 0 !important;
}

.k-scroll-mr-1px {
    scroll-margin-right: 1px;
}

.\!k-scroll-mr-1px {
    scroll-margin-right: 1px !important;
}

.k-scroll-mr-0\.5 {
    scroll-margin-right: 0.125rem;
}

.\!k-scroll-mr-0\.5 {
    scroll-margin-right: 0.125rem !important;
}

.k-scroll-mr-1 {
    scroll-margin-right: 0.25rem;
}

.\!k-scroll-mr-1 {
    scroll-margin-right: 0.25rem !important;
}

.k-scroll-mr-1\.5 {
    scroll-margin-right: 0.375rem;
}

.\!k-scroll-mr-1\.5 {
    scroll-margin-right: 0.375rem !important;
}

.k-scroll-mr-2 {
    scroll-margin-right: 0.5rem;
}

.\!k-scroll-mr-2 {
    scroll-margin-right: 0.5rem !important;
}

.k-scroll-mr-2\.5 {
    scroll-margin-right: 0.625rem;
}

.\!k-scroll-mr-2\.5 {
    scroll-margin-right: 0.625rem !important;
}

.k-scroll-mr-3 {
    scroll-margin-right: 0.75rem;
}

.\!k-scroll-mr-3 {
    scroll-margin-right: 0.75rem !important;
}

.k-scroll-mr-3\.5 {
    scroll-margin-right: 0.875rem;
}

.\!k-scroll-mr-3\.5 {
    scroll-margin-right: 0.875rem !important;
}

.k-scroll-mr-4 {
    scroll-margin-right: 1rem;
}

.\!k-scroll-mr-4 {
    scroll-margin-right: 1rem !important;
}

.k-scroll-mr-4\.5 {
    scroll-margin-right: 1.125rem;
}

.\!k-scroll-mr-4\.5 {
    scroll-margin-right: 1.125rem !important;
}

.k-scroll-mr-5 {
    scroll-margin-right: 1.25rem;
}

.\!k-scroll-mr-5 {
    scroll-margin-right: 1.25rem !important;
}

.k-scroll-mr-5\.5 {
    scroll-margin-right: 1.375rem;
}

.\!k-scroll-mr-5\.5 {
    scroll-margin-right: 1.375rem !important;
}

.k-scroll-mr-6 {
    scroll-margin-right: 1.5rem;
}

.\!k-scroll-mr-6 {
    scroll-margin-right: 1.5rem !important;
}

.k-scroll-mr-6\.5 {
    scroll-margin-right: 1.625rem;
}

.\!k-scroll-mr-6\.5 {
    scroll-margin-right: 1.625rem !important;
}

.k-scroll-mr-7 {
    scroll-margin-right: 1.75rem;
}

.\!k-scroll-mr-7 {
    scroll-margin-right: 1.75rem !important;
}

.k-scroll-mr-7\.5 {
    scroll-margin-right: 1.875rem;
}

.\!k-scroll-mr-7\.5 {
    scroll-margin-right: 1.875rem !important;
}

.k-scroll-mr-8 {
    scroll-margin-right: 2rem;
}

.\!k-scroll-mr-8 {
    scroll-margin-right: 2rem !important;
}

.k-scroll-mr-9 {
    scroll-margin-right: 2.25rem;
}

.\!k-scroll-mr-9 {
    scroll-margin-right: 2.25rem !important;
}

.k-scroll-mr-10 {
    scroll-margin-right: 2.5rem;
}

.\!k-scroll-mr-10 {
    scroll-margin-right: 2.5rem !important;
}

.k-scroll-mr-11 {
    scroll-margin-right: 2.75rem;
}

.\!k-scroll-mr-11 {
    scroll-margin-right: 2.75rem !important;
}

.k-scroll-mr-12 {
    scroll-margin-right: 3rem;
}

.\!k-scroll-mr-12 {
    scroll-margin-right: 3rem !important;
}

.k-scroll-mr-13 {
    scroll-margin-right: 3.25rem;
}

.\!k-scroll-mr-13 {
    scroll-margin-right: 3.25rem !important;
}

.k-scroll-mr-14 {
    scroll-margin-right: 3.5rem;
}

.\!k-scroll-mr-14 {
    scroll-margin-right: 3.5rem !important;
}

.k-scroll-mr-15 {
    scroll-margin-right: 3.75rem;
}

.\!k-scroll-mr-15 {
    scroll-margin-right: 3.75rem !important;
}

.k-scroll-mr-16 {
    scroll-margin-right: 4rem;
}

.\!k-scroll-mr-16 {
    scroll-margin-right: 4rem !important;
}

.k-scroll-mr-17 {
    scroll-margin-right: 4.25rem;
}

.\!k-scroll-mr-17 {
    scroll-margin-right: 4.25rem !important;
}

.k-scroll-mr-18 {
    scroll-margin-right: 4.5rem;
}

.\!k-scroll-mr-18 {
    scroll-margin-right: 4.5rem !important;
}

.k-scroll-mr-19 {
    scroll-margin-right: 4.75rem;
}

.\!k-scroll-mr-19 {
    scroll-margin-right: 4.75rem !important;
}

.k-scroll-mr-20 {
    scroll-margin-right: 5rem;
}

.\!k-scroll-mr-20 {
    scroll-margin-right: 5rem !important;
}

.k-scroll-mr-21 {
    scroll-margin-right: 5.25rem;
}

.\!k-scroll-mr-21 {
    scroll-margin-right: 5.25rem !important;
}

.k-scroll-mr-22 {
    scroll-margin-right: 5.5rem;
}

.\!k-scroll-mr-22 {
    scroll-margin-right: 5.5rem !important;
}

.k-scroll-mr-23 {
    scroll-margin-right: 5.75rem;
}

.\!k-scroll-mr-23 {
    scroll-margin-right: 5.75rem !important;
}

.k-scroll-mr-24 {
    scroll-margin-right: 6rem;
}

.\!k-scroll-mr-24 {
    scroll-margin-right: 6rem !important;
}

.k-scroll-mb-0 {
    scroll-margin-bottom: 0;
}

.\!k-scroll-mb-0 {
    scroll-margin-bottom: 0 !important;
}

.k-scroll-mb-1px {
    scroll-margin-bottom: 1px;
}

.\!k-scroll-mb-1px {
    scroll-margin-bottom: 1px !important;
}

.k-scroll-mb-0\.5 {
    scroll-margin-bottom: 0.125rem;
}

.\!k-scroll-mb-0\.5 {
    scroll-margin-bottom: 0.125rem !important;
}

.k-scroll-mb-1 {
    scroll-margin-bottom: 0.25rem;
}

.\!k-scroll-mb-1 {
    scroll-margin-bottom: 0.25rem !important;
}

.k-scroll-mb-1\.5 {
    scroll-margin-bottom: 0.375rem;
}

.\!k-scroll-mb-1\.5 {
    scroll-margin-bottom: 0.375rem !important;
}

.k-scroll-mb-2 {
    scroll-margin-bottom: 0.5rem;
}

.\!k-scroll-mb-2 {
    scroll-margin-bottom: 0.5rem !important;
}

.k-scroll-mb-2\.5 {
    scroll-margin-bottom: 0.625rem;
}

.\!k-scroll-mb-2\.5 {
    scroll-margin-bottom: 0.625rem !important;
}

.k-scroll-mb-3 {
    scroll-margin-bottom: 0.75rem;
}

.\!k-scroll-mb-3 {
    scroll-margin-bottom: 0.75rem !important;
}

.k-scroll-mb-3\.5 {
    scroll-margin-bottom: 0.875rem;
}

.\!k-scroll-mb-3\.5 {
    scroll-margin-bottom: 0.875rem !important;
}

.k-scroll-mb-4 {
    scroll-margin-bottom: 1rem;
}

.\!k-scroll-mb-4 {
    scroll-margin-bottom: 1rem !important;
}

.k-scroll-mb-4\.5 {
    scroll-margin-bottom: 1.125rem;
}

.\!k-scroll-mb-4\.5 {
    scroll-margin-bottom: 1.125rem !important;
}

.k-scroll-mb-5 {
    scroll-margin-bottom: 1.25rem;
}

.\!k-scroll-mb-5 {
    scroll-margin-bottom: 1.25rem !important;
}

.k-scroll-mb-5\.5 {
    scroll-margin-bottom: 1.375rem;
}

.\!k-scroll-mb-5\.5 {
    scroll-margin-bottom: 1.375rem !important;
}

.k-scroll-mb-6 {
    scroll-margin-bottom: 1.5rem;
}

.\!k-scroll-mb-6 {
    scroll-margin-bottom: 1.5rem !important;
}

.k-scroll-mb-6\.5 {
    scroll-margin-bottom: 1.625rem;
}

.\!k-scroll-mb-6\.5 {
    scroll-margin-bottom: 1.625rem !important;
}

.k-scroll-mb-7 {
    scroll-margin-bottom: 1.75rem;
}

.\!k-scroll-mb-7 {
    scroll-margin-bottom: 1.75rem !important;
}

.k-scroll-mb-7\.5 {
    scroll-margin-bottom: 1.875rem;
}

.\!k-scroll-mb-7\.5 {
    scroll-margin-bottom: 1.875rem !important;
}

.k-scroll-mb-8 {
    scroll-margin-bottom: 2rem;
}

.\!k-scroll-mb-8 {
    scroll-margin-bottom: 2rem !important;
}

.k-scroll-mb-9 {
    scroll-margin-bottom: 2.25rem;
}

.\!k-scroll-mb-9 {
    scroll-margin-bottom: 2.25rem !important;
}

.k-scroll-mb-10 {
    scroll-margin-bottom: 2.5rem;
}

.\!k-scroll-mb-10 {
    scroll-margin-bottom: 2.5rem !important;
}

.k-scroll-mb-11 {
    scroll-margin-bottom: 2.75rem;
}

.\!k-scroll-mb-11 {
    scroll-margin-bottom: 2.75rem !important;
}

.k-scroll-mb-12 {
    scroll-margin-bottom: 3rem;
}

.\!k-scroll-mb-12 {
    scroll-margin-bottom: 3rem !important;
}

.k-scroll-mb-13 {
    scroll-margin-bottom: 3.25rem;
}

.\!k-scroll-mb-13 {
    scroll-margin-bottom: 3.25rem !important;
}

.k-scroll-mb-14 {
    scroll-margin-bottom: 3.5rem;
}

.\!k-scroll-mb-14 {
    scroll-margin-bottom: 3.5rem !important;
}

.k-scroll-mb-15 {
    scroll-margin-bottom: 3.75rem;
}

.\!k-scroll-mb-15 {
    scroll-margin-bottom: 3.75rem !important;
}

.k-scroll-mb-16 {
    scroll-margin-bottom: 4rem;
}

.\!k-scroll-mb-16 {
    scroll-margin-bottom: 4rem !important;
}

.k-scroll-mb-17 {
    scroll-margin-bottom: 4.25rem;
}

.\!k-scroll-mb-17 {
    scroll-margin-bottom: 4.25rem !important;
}

.k-scroll-mb-18 {
    scroll-margin-bottom: 4.5rem;
}

.\!k-scroll-mb-18 {
    scroll-margin-bottom: 4.5rem !important;
}

.k-scroll-mb-19 {
    scroll-margin-bottom: 4.75rem;
}

.\!k-scroll-mb-19 {
    scroll-margin-bottom: 4.75rem !important;
}

.k-scroll-mb-20 {
    scroll-margin-bottom: 5rem;
}

.\!k-scroll-mb-20 {
    scroll-margin-bottom: 5rem !important;
}

.k-scroll-mb-21 {
    scroll-margin-bottom: 5.25rem;
}

.\!k-scroll-mb-21 {
    scroll-margin-bottom: 5.25rem !important;
}

.k-scroll-mb-22 {
    scroll-margin-bottom: 5.5rem;
}

.\!k-scroll-mb-22 {
    scroll-margin-bottom: 5.5rem !important;
}

.k-scroll-mb-23 {
    scroll-margin-bottom: 5.75rem;
}

.\!k-scroll-mb-23 {
    scroll-margin-bottom: 5.75rem !important;
}

.k-scroll-mb-24 {
    scroll-margin-bottom: 6rem;
}

.\!k-scroll-mb-24 {
    scroll-margin-bottom: 6rem !important;
}

.k-scroll-ml-0 {
    scroll-margin-left: 0;
}

.\!k-scroll-ml-0 {
    scroll-margin-left: 0 !important;
}

.k-scroll-ml-1px {
    scroll-margin-left: 1px;
}

.\!k-scroll-ml-1px {
    scroll-margin-left: 1px !important;
}

.k-scroll-ml-0\.5 {
    scroll-margin-left: 0.125rem;
}

.\!k-scroll-ml-0\.5 {
    scroll-margin-left: 0.125rem !important;
}

.k-scroll-ml-1 {
    scroll-margin-left: 0.25rem;
}

.\!k-scroll-ml-1 {
    scroll-margin-left: 0.25rem !important;
}

.k-scroll-ml-1\.5 {
    scroll-margin-left: 0.375rem;
}

.\!k-scroll-ml-1\.5 {
    scroll-margin-left: 0.375rem !important;
}

.k-scroll-ml-2 {
    scroll-margin-left: 0.5rem;
}

.\!k-scroll-ml-2 {
    scroll-margin-left: 0.5rem !important;
}

.k-scroll-ml-2\.5 {
    scroll-margin-left: 0.625rem;
}

.\!k-scroll-ml-2\.5 {
    scroll-margin-left: 0.625rem !important;
}

.k-scroll-ml-3 {
    scroll-margin-left: 0.75rem;
}

.\!k-scroll-ml-3 {
    scroll-margin-left: 0.75rem !important;
}

.k-scroll-ml-3\.5 {
    scroll-margin-left: 0.875rem;
}

.\!k-scroll-ml-3\.5 {
    scroll-margin-left: 0.875rem !important;
}

.k-scroll-ml-4 {
    scroll-margin-left: 1rem;
}

.\!k-scroll-ml-4 {
    scroll-margin-left: 1rem !important;
}

.k-scroll-ml-4\.5 {
    scroll-margin-left: 1.125rem;
}

.\!k-scroll-ml-4\.5 {
    scroll-margin-left: 1.125rem !important;
}

.k-scroll-ml-5 {
    scroll-margin-left: 1.25rem;
}

.\!k-scroll-ml-5 {
    scroll-margin-left: 1.25rem !important;
}

.k-scroll-ml-5\.5 {
    scroll-margin-left: 1.375rem;
}

.\!k-scroll-ml-5\.5 {
    scroll-margin-left: 1.375rem !important;
}

.k-scroll-ml-6 {
    scroll-margin-left: 1.5rem;
}

.\!k-scroll-ml-6 {
    scroll-margin-left: 1.5rem !important;
}

.k-scroll-ml-6\.5 {
    scroll-margin-left: 1.625rem;
}

.\!k-scroll-ml-6\.5 {
    scroll-margin-left: 1.625rem !important;
}

.k-scroll-ml-7 {
    scroll-margin-left: 1.75rem;
}

.\!k-scroll-ml-7 {
    scroll-margin-left: 1.75rem !important;
}

.k-scroll-ml-7\.5 {
    scroll-margin-left: 1.875rem;
}

.\!k-scroll-ml-7\.5 {
    scroll-margin-left: 1.875rem !important;
}

.k-scroll-ml-8 {
    scroll-margin-left: 2rem;
}

.\!k-scroll-ml-8 {
    scroll-margin-left: 2rem !important;
}

.k-scroll-ml-9 {
    scroll-margin-left: 2.25rem;
}

.\!k-scroll-ml-9 {
    scroll-margin-left: 2.25rem !important;
}

.k-scroll-ml-10 {
    scroll-margin-left: 2.5rem;
}

.\!k-scroll-ml-10 {
    scroll-margin-left: 2.5rem !important;
}

.k-scroll-ml-11 {
    scroll-margin-left: 2.75rem;
}

.\!k-scroll-ml-11 {
    scroll-margin-left: 2.75rem !important;
}

.k-scroll-ml-12 {
    scroll-margin-left: 3rem;
}

.\!k-scroll-ml-12 {
    scroll-margin-left: 3rem !important;
}

.k-scroll-ml-13 {
    scroll-margin-left: 3.25rem;
}

.\!k-scroll-ml-13 {
    scroll-margin-left: 3.25rem !important;
}

.k-scroll-ml-14 {
    scroll-margin-left: 3.5rem;
}

.\!k-scroll-ml-14 {
    scroll-margin-left: 3.5rem !important;
}

.k-scroll-ml-15 {
    scroll-margin-left: 3.75rem;
}

.\!k-scroll-ml-15 {
    scroll-margin-left: 3.75rem !important;
}

.k-scroll-ml-16 {
    scroll-margin-left: 4rem;
}

.\!k-scroll-ml-16 {
    scroll-margin-left: 4rem !important;
}

.k-scroll-ml-17 {
    scroll-margin-left: 4.25rem;
}

.\!k-scroll-ml-17 {
    scroll-margin-left: 4.25rem !important;
}

.k-scroll-ml-18 {
    scroll-margin-left: 4.5rem;
}

.\!k-scroll-ml-18 {
    scroll-margin-left: 4.5rem !important;
}

.k-scroll-ml-19 {
    scroll-margin-left: 4.75rem;
}

.\!k-scroll-ml-19 {
    scroll-margin-left: 4.75rem !important;
}

.k-scroll-ml-20 {
    scroll-margin-left: 5rem;
}

.\!k-scroll-ml-20 {
    scroll-margin-left: 5rem !important;
}

.k-scroll-ml-21 {
    scroll-margin-left: 5.25rem;
}

.\!k-scroll-ml-21 {
    scroll-margin-left: 5.25rem !important;
}

.k-scroll-ml-22 {
    scroll-margin-left: 5.5rem;
}

.\!k-scroll-ml-22 {
    scroll-margin-left: 5.5rem !important;
}

.k-scroll-ml-23 {
    scroll-margin-left: 5.75rem;
}

.\!k-scroll-ml-23 {
    scroll-margin-left: 5.75rem !important;
}

.k-scroll-ml-24 {
    scroll-margin-left: 6rem;
}

.\!k-scroll-ml-24 {
    scroll-margin-left: 6rem !important;
}

.k-scroll-mx-0 {
    scroll-margin-inline: 0;
}

.\!k-scroll-mx-0 {
    scroll-margin-inline: 0 !important;
}

.k-scroll-mx-1px {
    scroll-margin-inline: 1px;
}

.\!k-scroll-mx-1px {
    scroll-margin-inline: 1px !important;
}

.k-scroll-mx-0\.5 {
    scroll-margin-inline: 0.125rem;
}

.\!k-scroll-mx-0\.5 {
    scroll-margin-inline: 0.125rem !important;
}

.k-scroll-mx-1 {
    scroll-margin-inline: 0.25rem;
}

.\!k-scroll-mx-1 {
    scroll-margin-inline: 0.25rem !important;
}

.k-scroll-mx-1\.5 {
    scroll-margin-inline: 0.375rem;
}

.\!k-scroll-mx-1\.5 {
    scroll-margin-inline: 0.375rem !important;
}

.k-scroll-mx-2 {
    scroll-margin-inline: 0.5rem;
}

.\!k-scroll-mx-2 {
    scroll-margin-inline: 0.5rem !important;
}

.k-scroll-mx-2\.5 {
    scroll-margin-inline: 0.625rem;
}

.\!k-scroll-mx-2\.5 {
    scroll-margin-inline: 0.625rem !important;
}

.k-scroll-mx-3 {
    scroll-margin-inline: 0.75rem;
}

.\!k-scroll-mx-3 {
    scroll-margin-inline: 0.75rem !important;
}

.k-scroll-mx-3\.5 {
    scroll-margin-inline: 0.875rem;
}

.\!k-scroll-mx-3\.5 {
    scroll-margin-inline: 0.875rem !important;
}

.k-scroll-mx-4 {
    scroll-margin-inline: 1rem;
}

.\!k-scroll-mx-4 {
    scroll-margin-inline: 1rem !important;
}

.k-scroll-mx-4\.5 {
    scroll-margin-inline: 1.125rem;
}

.\!k-scroll-mx-4\.5 {
    scroll-margin-inline: 1.125rem !important;
}

.k-scroll-mx-5 {
    scroll-margin-inline: 1.25rem;
}

.\!k-scroll-mx-5 {
    scroll-margin-inline: 1.25rem !important;
}

.k-scroll-mx-5\.5 {
    scroll-margin-inline: 1.375rem;
}

.\!k-scroll-mx-5\.5 {
    scroll-margin-inline: 1.375rem !important;
}

.k-scroll-mx-6 {
    scroll-margin-inline: 1.5rem;
}

.\!k-scroll-mx-6 {
    scroll-margin-inline: 1.5rem !important;
}

.k-scroll-mx-6\.5 {
    scroll-margin-inline: 1.625rem;
}

.\!k-scroll-mx-6\.5 {
    scroll-margin-inline: 1.625rem !important;
}

.k-scroll-mx-7 {
    scroll-margin-inline: 1.75rem;
}

.\!k-scroll-mx-7 {
    scroll-margin-inline: 1.75rem !important;
}

.k-scroll-mx-7\.5 {
    scroll-margin-inline: 1.875rem;
}

.\!k-scroll-mx-7\.5 {
    scroll-margin-inline: 1.875rem !important;
}

.k-scroll-mx-8 {
    scroll-margin-inline: 2rem;
}

.\!k-scroll-mx-8 {
    scroll-margin-inline: 2rem !important;
}

.k-scroll-mx-9 {
    scroll-margin-inline: 2.25rem;
}

.\!k-scroll-mx-9 {
    scroll-margin-inline: 2.25rem !important;
}

.k-scroll-mx-10 {
    scroll-margin-inline: 2.5rem;
}

.\!k-scroll-mx-10 {
    scroll-margin-inline: 2.5rem !important;
}

.k-scroll-mx-11 {
    scroll-margin-inline: 2.75rem;
}

.\!k-scroll-mx-11 {
    scroll-margin-inline: 2.75rem !important;
}

.k-scroll-mx-12 {
    scroll-margin-inline: 3rem;
}

.\!k-scroll-mx-12 {
    scroll-margin-inline: 3rem !important;
}

.k-scroll-mx-13 {
    scroll-margin-inline: 3.25rem;
}

.\!k-scroll-mx-13 {
    scroll-margin-inline: 3.25rem !important;
}

.k-scroll-mx-14 {
    scroll-margin-inline: 3.5rem;
}

.\!k-scroll-mx-14 {
    scroll-margin-inline: 3.5rem !important;
}

.k-scroll-mx-15 {
    scroll-margin-inline: 3.75rem;
}

.\!k-scroll-mx-15 {
    scroll-margin-inline: 3.75rem !important;
}

.k-scroll-mx-16 {
    scroll-margin-inline: 4rem;
}

.\!k-scroll-mx-16 {
    scroll-margin-inline: 4rem !important;
}

.k-scroll-mx-17 {
    scroll-margin-inline: 4.25rem;
}

.\!k-scroll-mx-17 {
    scroll-margin-inline: 4.25rem !important;
}

.k-scroll-mx-18 {
    scroll-margin-inline: 4.5rem;
}

.\!k-scroll-mx-18 {
    scroll-margin-inline: 4.5rem !important;
}

.k-scroll-mx-19 {
    scroll-margin-inline: 4.75rem;
}

.\!k-scroll-mx-19 {
    scroll-margin-inline: 4.75rem !important;
}

.k-scroll-mx-20 {
    scroll-margin-inline: 5rem;
}

.\!k-scroll-mx-20 {
    scroll-margin-inline: 5rem !important;
}

.k-scroll-mx-21 {
    scroll-margin-inline: 5.25rem;
}

.\!k-scroll-mx-21 {
    scroll-margin-inline: 5.25rem !important;
}

.k-scroll-mx-22 {
    scroll-margin-inline: 5.5rem;
}

.\!k-scroll-mx-22 {
    scroll-margin-inline: 5.5rem !important;
}

.k-scroll-mx-23 {
    scroll-margin-inline: 5.75rem;
}

.\!k-scroll-mx-23 {
    scroll-margin-inline: 5.75rem !important;
}

.k-scroll-mx-24 {
    scroll-margin-inline: 6rem;
}

.\!k-scroll-mx-24 {
    scroll-margin-inline: 6rem !important;
}

.k-scroll-my-0 {
    scroll-margin-block: 0;
}

.\!k-scroll-my-0 {
    scroll-margin-block: 0 !important;
}

.k-scroll-my-1px {
    scroll-margin-block: 1px;
}

.\!k-scroll-my-1px {
    scroll-margin-block: 1px !important;
}

.k-scroll-my-0\.5 {
    scroll-margin-block: 0.125rem;
}

.\!k-scroll-my-0\.5 {
    scroll-margin-block: 0.125rem !important;
}

.k-scroll-my-1 {
    scroll-margin-block: 0.25rem;
}

.\!k-scroll-my-1 {
    scroll-margin-block: 0.25rem !important;
}

.k-scroll-my-1\.5 {
    scroll-margin-block: 0.375rem;
}

.\!k-scroll-my-1\.5 {
    scroll-margin-block: 0.375rem !important;
}

.k-scroll-my-2 {
    scroll-margin-block: 0.5rem;
}

.\!k-scroll-my-2 {
    scroll-margin-block: 0.5rem !important;
}

.k-scroll-my-2\.5 {
    scroll-margin-block: 0.625rem;
}

.\!k-scroll-my-2\.5 {
    scroll-margin-block: 0.625rem !important;
}

.k-scroll-my-3 {
    scroll-margin-block: 0.75rem;
}

.\!k-scroll-my-3 {
    scroll-margin-block: 0.75rem !important;
}

.k-scroll-my-3\.5 {
    scroll-margin-block: 0.875rem;
}

.\!k-scroll-my-3\.5 {
    scroll-margin-block: 0.875rem !important;
}

.k-scroll-my-4 {
    scroll-margin-block: 1rem;
}

.\!k-scroll-my-4 {
    scroll-margin-block: 1rem !important;
}

.k-scroll-my-4\.5 {
    scroll-margin-block: 1.125rem;
}

.\!k-scroll-my-4\.5 {
    scroll-margin-block: 1.125rem !important;
}

.k-scroll-my-5 {
    scroll-margin-block: 1.25rem;
}

.\!k-scroll-my-5 {
    scroll-margin-block: 1.25rem !important;
}

.k-scroll-my-5\.5 {
    scroll-margin-block: 1.375rem;
}

.\!k-scroll-my-5\.5 {
    scroll-margin-block: 1.375rem !important;
}

.k-scroll-my-6 {
    scroll-margin-block: 1.5rem;
}

.\!k-scroll-my-6 {
    scroll-margin-block: 1.5rem !important;
}

.k-scroll-my-6\.5 {
    scroll-margin-block: 1.625rem;
}

.\!k-scroll-my-6\.5 {
    scroll-margin-block: 1.625rem !important;
}

.k-scroll-my-7 {
    scroll-margin-block: 1.75rem;
}

.\!k-scroll-my-7 {
    scroll-margin-block: 1.75rem !important;
}

.k-scroll-my-7\.5 {
    scroll-margin-block: 1.875rem;
}

.\!k-scroll-my-7\.5 {
    scroll-margin-block: 1.875rem !important;
}

.k-scroll-my-8 {
    scroll-margin-block: 2rem;
}

.\!k-scroll-my-8 {
    scroll-margin-block: 2rem !important;
}

.k-scroll-my-9 {
    scroll-margin-block: 2.25rem;
}

.\!k-scroll-my-9 {
    scroll-margin-block: 2.25rem !important;
}

.k-scroll-my-10 {
    scroll-margin-block: 2.5rem;
}

.\!k-scroll-my-10 {
    scroll-margin-block: 2.5rem !important;
}

.k-scroll-my-11 {
    scroll-margin-block: 2.75rem;
}

.\!k-scroll-my-11 {
    scroll-margin-block: 2.75rem !important;
}

.k-scroll-my-12 {
    scroll-margin-block: 3rem;
}

.\!k-scroll-my-12 {
    scroll-margin-block: 3rem !important;
}

.k-scroll-my-13 {
    scroll-margin-block: 3.25rem;
}

.\!k-scroll-my-13 {
    scroll-margin-block: 3.25rem !important;
}

.k-scroll-my-14 {
    scroll-margin-block: 3.5rem;
}

.\!k-scroll-my-14 {
    scroll-margin-block: 3.5rem !important;
}

.k-scroll-my-15 {
    scroll-margin-block: 3.75rem;
}

.\!k-scroll-my-15 {
    scroll-margin-block: 3.75rem !important;
}

.k-scroll-my-16 {
    scroll-margin-block: 4rem;
}

.\!k-scroll-my-16 {
    scroll-margin-block: 4rem !important;
}

.k-scroll-my-17 {
    scroll-margin-block: 4.25rem;
}

.\!k-scroll-my-17 {
    scroll-margin-block: 4.25rem !important;
}

.k-scroll-my-18 {
    scroll-margin-block: 4.5rem;
}

.\!k-scroll-my-18 {
    scroll-margin-block: 4.5rem !important;
}

.k-scroll-my-19 {
    scroll-margin-block: 4.75rem;
}

.\!k-scroll-my-19 {
    scroll-margin-block: 4.75rem !important;
}

.k-scroll-my-20 {
    scroll-margin-block: 5rem;
}

.\!k-scroll-my-20 {
    scroll-margin-block: 5rem !important;
}

.k-scroll-my-21 {
    scroll-margin-block: 5.25rem;
}

.\!k-scroll-my-21 {
    scroll-margin-block: 5.25rem !important;
}

.k-scroll-my-22 {
    scroll-margin-block: 5.5rem;
}

.\!k-scroll-my-22 {
    scroll-margin-block: 5.5rem !important;
}

.k-scroll-my-23 {
    scroll-margin-block: 5.75rem;
}

.\!k-scroll-my-23 {
    scroll-margin-block: 5.75rem !important;
}

.k-scroll-my-24 {
    scroll-margin-block: 6rem;
}

.\!k-scroll-my-24 {
    scroll-margin-block: 6rem !important;
}

.k-scroll-p-0 {
    scroll-padding: 0;
}

.\!k-scroll-p-0 {
    scroll-padding: 0 !important;
}

.k-scroll-p-1px {
    scroll-padding: 1px;
}

.\!k-scroll-p-1px {
    scroll-padding: 1px !important;
}

.k-scroll-p-0\.5 {
    scroll-padding: 0.125rem;
}

.\!k-scroll-p-0\.5 {
    scroll-padding: 0.125rem !important;
}

.k-scroll-p-1 {
    scroll-padding: 0.25rem;
}

.\!k-scroll-p-1 {
    scroll-padding: 0.25rem !important;
}

.k-scroll-p-1\.5 {
    scroll-padding: 0.375rem;
}

.\!k-scroll-p-1\.5 {
    scroll-padding: 0.375rem !important;
}

.k-scroll-p-2 {
    scroll-padding: 0.5rem;
}

.\!k-scroll-p-2 {
    scroll-padding: 0.5rem !important;
}

.k-scroll-p-2\.5 {
    scroll-padding: 0.625rem;
}

.\!k-scroll-p-2\.5 {
    scroll-padding: 0.625rem !important;
}

.k-scroll-p-3 {
    scroll-padding: 0.75rem;
}

.\!k-scroll-p-3 {
    scroll-padding: 0.75rem !important;
}

.k-scroll-p-3\.5 {
    scroll-padding: 0.875rem;
}

.\!k-scroll-p-3\.5 {
    scroll-padding: 0.875rem !important;
}

.k-scroll-p-4 {
    scroll-padding: 1rem;
}

.\!k-scroll-p-4 {
    scroll-padding: 1rem !important;
}

.k-scroll-p-4\.5 {
    scroll-padding: 1.125rem;
}

.\!k-scroll-p-4\.5 {
    scroll-padding: 1.125rem !important;
}

.k-scroll-p-5 {
    scroll-padding: 1.25rem;
}

.\!k-scroll-p-5 {
    scroll-padding: 1.25rem !important;
}

.k-scroll-p-5\.5 {
    scroll-padding: 1.375rem;
}

.\!k-scroll-p-5\.5 {
    scroll-padding: 1.375rem !important;
}

.k-scroll-p-6 {
    scroll-padding: 1.5rem;
}

.\!k-scroll-p-6 {
    scroll-padding: 1.5rem !important;
}

.k-scroll-p-6\.5 {
    scroll-padding: 1.625rem;
}

.\!k-scroll-p-6\.5 {
    scroll-padding: 1.625rem !important;
}

.k-scroll-p-7 {
    scroll-padding: 1.75rem;
}

.\!k-scroll-p-7 {
    scroll-padding: 1.75rem !important;
}

.k-scroll-p-7\.5 {
    scroll-padding: 1.875rem;
}

.\!k-scroll-p-7\.5 {
    scroll-padding: 1.875rem !important;
}

.k-scroll-p-8 {
    scroll-padding: 2rem;
}

.\!k-scroll-p-8 {
    scroll-padding: 2rem !important;
}

.k-scroll-p-9 {
    scroll-padding: 2.25rem;
}

.\!k-scroll-p-9 {
    scroll-padding: 2.25rem !important;
}

.k-scroll-p-10 {
    scroll-padding: 2.5rem;
}

.\!k-scroll-p-10 {
    scroll-padding: 2.5rem !important;
}

.k-scroll-p-11 {
    scroll-padding: 2.75rem;
}

.\!k-scroll-p-11 {
    scroll-padding: 2.75rem !important;
}

.k-scroll-p-12 {
    scroll-padding: 3rem;
}

.\!k-scroll-p-12 {
    scroll-padding: 3rem !important;
}

.k-scroll-p-13 {
    scroll-padding: 3.25rem;
}

.\!k-scroll-p-13 {
    scroll-padding: 3.25rem !important;
}

.k-scroll-p-14 {
    scroll-padding: 3.5rem;
}

.\!k-scroll-p-14 {
    scroll-padding: 3.5rem !important;
}

.k-scroll-p-15 {
    scroll-padding: 3.75rem;
}

.\!k-scroll-p-15 {
    scroll-padding: 3.75rem !important;
}

.k-scroll-p-16 {
    scroll-padding: 4rem;
}

.\!k-scroll-p-16 {
    scroll-padding: 4rem !important;
}

.k-scroll-p-17 {
    scroll-padding: 4.25rem;
}

.\!k-scroll-p-17 {
    scroll-padding: 4.25rem !important;
}

.k-scroll-p-18 {
    scroll-padding: 4.5rem;
}

.\!k-scroll-p-18 {
    scroll-padding: 4.5rem !important;
}

.k-scroll-p-19 {
    scroll-padding: 4.75rem;
}

.\!k-scroll-p-19 {
    scroll-padding: 4.75rem !important;
}

.k-scroll-p-20 {
    scroll-padding: 5rem;
}

.\!k-scroll-p-20 {
    scroll-padding: 5rem !important;
}

.k-scroll-p-21 {
    scroll-padding: 5.25rem;
}

.\!k-scroll-p-21 {
    scroll-padding: 5.25rem !important;
}

.k-scroll-p-22 {
    scroll-padding: 5.5rem;
}

.\!k-scroll-p-22 {
    scroll-padding: 5.5rem !important;
}

.k-scroll-p-23 {
    scroll-padding: 5.75rem;
}

.\!k-scroll-p-23 {
    scroll-padding: 5.75rem !important;
}

.k-scroll-p-24 {
    scroll-padding: 6rem;
}

.\!k-scroll-p-24 {
    scroll-padding: 6rem !important;
}

.k-scroll-pt-0 {
    scroll-padding-top: 0;
}

.\!k-scroll-pt-0 {
    scroll-padding-top: 0 !important;
}

.k-scroll-pt-1px {
    scroll-padding-top: 1px;
}

.\!k-scroll-pt-1px {
    scroll-padding-top: 1px !important;
}

.k-scroll-pt-0\.5 {
    scroll-padding-top: 0.125rem;
}

.\!k-scroll-pt-0\.5 {
    scroll-padding-top: 0.125rem !important;
}

.k-scroll-pt-1 {
    scroll-padding-top: 0.25rem;
}

.\!k-scroll-pt-1 {
    scroll-padding-top: 0.25rem !important;
}

.k-scroll-pt-1\.5 {
    scroll-padding-top: 0.375rem;
}

.\!k-scroll-pt-1\.5 {
    scroll-padding-top: 0.375rem !important;
}

.k-scroll-pt-2 {
    scroll-padding-top: 0.5rem;
}

.\!k-scroll-pt-2 {
    scroll-padding-top: 0.5rem !important;
}

.k-scroll-pt-2\.5 {
    scroll-padding-top: 0.625rem;
}

.\!k-scroll-pt-2\.5 {
    scroll-padding-top: 0.625rem !important;
}

.k-scroll-pt-3 {
    scroll-padding-top: 0.75rem;
}

.\!k-scroll-pt-3 {
    scroll-padding-top: 0.75rem !important;
}

.k-scroll-pt-3\.5 {
    scroll-padding-top: 0.875rem;
}

.\!k-scroll-pt-3\.5 {
    scroll-padding-top: 0.875rem !important;
}

.k-scroll-pt-4 {
    scroll-padding-top: 1rem;
}

.\!k-scroll-pt-4 {
    scroll-padding-top: 1rem !important;
}

.k-scroll-pt-4\.5 {
    scroll-padding-top: 1.125rem;
}

.\!k-scroll-pt-4\.5 {
    scroll-padding-top: 1.125rem !important;
}

.k-scroll-pt-5 {
    scroll-padding-top: 1.25rem;
}

.\!k-scroll-pt-5 {
    scroll-padding-top: 1.25rem !important;
}

.k-scroll-pt-5\.5 {
    scroll-padding-top: 1.375rem;
}

.\!k-scroll-pt-5\.5 {
    scroll-padding-top: 1.375rem !important;
}

.k-scroll-pt-6 {
    scroll-padding-top: 1.5rem;
}

.\!k-scroll-pt-6 {
    scroll-padding-top: 1.5rem !important;
}

.k-scroll-pt-6\.5 {
    scroll-padding-top: 1.625rem;
}

.\!k-scroll-pt-6\.5 {
    scroll-padding-top: 1.625rem !important;
}

.k-scroll-pt-7 {
    scroll-padding-top: 1.75rem;
}

.\!k-scroll-pt-7 {
    scroll-padding-top: 1.75rem !important;
}

.k-scroll-pt-7\.5 {
    scroll-padding-top: 1.875rem;
}

.\!k-scroll-pt-7\.5 {
    scroll-padding-top: 1.875rem !important;
}

.k-scroll-pt-8 {
    scroll-padding-top: 2rem;
}

.\!k-scroll-pt-8 {
    scroll-padding-top: 2rem !important;
}

.k-scroll-pt-9 {
    scroll-padding-top: 2.25rem;
}

.\!k-scroll-pt-9 {
    scroll-padding-top: 2.25rem !important;
}

.k-scroll-pt-10 {
    scroll-padding-top: 2.5rem;
}

.\!k-scroll-pt-10 {
    scroll-padding-top: 2.5rem !important;
}

.k-scroll-pt-11 {
    scroll-padding-top: 2.75rem;
}

.\!k-scroll-pt-11 {
    scroll-padding-top: 2.75rem !important;
}

.k-scroll-pt-12 {
    scroll-padding-top: 3rem;
}

.\!k-scroll-pt-12 {
    scroll-padding-top: 3rem !important;
}

.k-scroll-pt-13 {
    scroll-padding-top: 3.25rem;
}

.\!k-scroll-pt-13 {
    scroll-padding-top: 3.25rem !important;
}

.k-scroll-pt-14 {
    scroll-padding-top: 3.5rem;
}

.\!k-scroll-pt-14 {
    scroll-padding-top: 3.5rem !important;
}

.k-scroll-pt-15 {
    scroll-padding-top: 3.75rem;
}

.\!k-scroll-pt-15 {
    scroll-padding-top: 3.75rem !important;
}

.k-scroll-pt-16 {
    scroll-padding-top: 4rem;
}

.\!k-scroll-pt-16 {
    scroll-padding-top: 4rem !important;
}

.k-scroll-pt-17 {
    scroll-padding-top: 4.25rem;
}

.\!k-scroll-pt-17 {
    scroll-padding-top: 4.25rem !important;
}

.k-scroll-pt-18 {
    scroll-padding-top: 4.5rem;
}

.\!k-scroll-pt-18 {
    scroll-padding-top: 4.5rem !important;
}

.k-scroll-pt-19 {
    scroll-padding-top: 4.75rem;
}

.\!k-scroll-pt-19 {
    scroll-padding-top: 4.75rem !important;
}

.k-scroll-pt-20 {
    scroll-padding-top: 5rem;
}

.\!k-scroll-pt-20 {
    scroll-padding-top: 5rem !important;
}

.k-scroll-pt-21 {
    scroll-padding-top: 5.25rem;
}

.\!k-scroll-pt-21 {
    scroll-padding-top: 5.25rem !important;
}

.k-scroll-pt-22 {
    scroll-padding-top: 5.5rem;
}

.\!k-scroll-pt-22 {
    scroll-padding-top: 5.5rem !important;
}

.k-scroll-pt-23 {
    scroll-padding-top: 5.75rem;
}

.\!k-scroll-pt-23 {
    scroll-padding-top: 5.75rem !important;
}

.k-scroll-pt-24 {
    scroll-padding-top: 6rem;
}

.\!k-scroll-pt-24 {
    scroll-padding-top: 6rem !important;
}

.k-scroll-pr-0 {
    scroll-padding-right: 0;
}

.\!k-scroll-pr-0 {
    scroll-padding-right: 0 !important;
}

.k-scroll-pr-1px {
    scroll-padding-right: 1px;
}

.\!k-scroll-pr-1px {
    scroll-padding-right: 1px !important;
}

.k-scroll-pr-0\.5 {
    scroll-padding-right: 0.125rem;
}

.\!k-scroll-pr-0\.5 {
    scroll-padding-right: 0.125rem !important;
}

.k-scroll-pr-1 {
    scroll-padding-right: 0.25rem;
}

.\!k-scroll-pr-1 {
    scroll-padding-right: 0.25rem !important;
}

.k-scroll-pr-1\.5 {
    scroll-padding-right: 0.375rem;
}

.\!k-scroll-pr-1\.5 {
    scroll-padding-right: 0.375rem !important;
}

.k-scroll-pr-2 {
    scroll-padding-right: 0.5rem;
}

.\!k-scroll-pr-2 {
    scroll-padding-right: 0.5rem !important;
}

.k-scroll-pr-2\.5 {
    scroll-padding-right: 0.625rem;
}

.\!k-scroll-pr-2\.5 {
    scroll-padding-right: 0.625rem !important;
}

.k-scroll-pr-3 {
    scroll-padding-right: 0.75rem;
}

.\!k-scroll-pr-3 {
    scroll-padding-right: 0.75rem !important;
}

.k-scroll-pr-3\.5 {
    scroll-padding-right: 0.875rem;
}

.\!k-scroll-pr-3\.5 {
    scroll-padding-right: 0.875rem !important;
}

.k-scroll-pr-4 {
    scroll-padding-right: 1rem;
}

.\!k-scroll-pr-4 {
    scroll-padding-right: 1rem !important;
}

.k-scroll-pr-4\.5 {
    scroll-padding-right: 1.125rem;
}

.\!k-scroll-pr-4\.5 {
    scroll-padding-right: 1.125rem !important;
}

.k-scroll-pr-5 {
    scroll-padding-right: 1.25rem;
}

.\!k-scroll-pr-5 {
    scroll-padding-right: 1.25rem !important;
}

.k-scroll-pr-5\.5 {
    scroll-padding-right: 1.375rem;
}

.\!k-scroll-pr-5\.5 {
    scroll-padding-right: 1.375rem !important;
}

.k-scroll-pr-6 {
    scroll-padding-right: 1.5rem;
}

.\!k-scroll-pr-6 {
    scroll-padding-right: 1.5rem !important;
}

.k-scroll-pr-6\.5 {
    scroll-padding-right: 1.625rem;
}

.\!k-scroll-pr-6\.5 {
    scroll-padding-right: 1.625rem !important;
}

.k-scroll-pr-7 {
    scroll-padding-right: 1.75rem;
}

.\!k-scroll-pr-7 {
    scroll-padding-right: 1.75rem !important;
}

.k-scroll-pr-7\.5 {
    scroll-padding-right: 1.875rem;
}

.\!k-scroll-pr-7\.5 {
    scroll-padding-right: 1.875rem !important;
}

.k-scroll-pr-8 {
    scroll-padding-right: 2rem;
}

.\!k-scroll-pr-8 {
    scroll-padding-right: 2rem !important;
}

.k-scroll-pr-9 {
    scroll-padding-right: 2.25rem;
}

.\!k-scroll-pr-9 {
    scroll-padding-right: 2.25rem !important;
}

.k-scroll-pr-10 {
    scroll-padding-right: 2.5rem;
}

.\!k-scroll-pr-10 {
    scroll-padding-right: 2.5rem !important;
}

.k-scroll-pr-11 {
    scroll-padding-right: 2.75rem;
}

.\!k-scroll-pr-11 {
    scroll-padding-right: 2.75rem !important;
}

.k-scroll-pr-12 {
    scroll-padding-right: 3rem;
}

.\!k-scroll-pr-12 {
    scroll-padding-right: 3rem !important;
}

.k-scroll-pr-13 {
    scroll-padding-right: 3.25rem;
}

.\!k-scroll-pr-13 {
    scroll-padding-right: 3.25rem !important;
}

.k-scroll-pr-14 {
    scroll-padding-right: 3.5rem;
}

.\!k-scroll-pr-14 {
    scroll-padding-right: 3.5rem !important;
}

.k-scroll-pr-15 {
    scroll-padding-right: 3.75rem;
}

.\!k-scroll-pr-15 {
    scroll-padding-right: 3.75rem !important;
}

.k-scroll-pr-16 {
    scroll-padding-right: 4rem;
}

.\!k-scroll-pr-16 {
    scroll-padding-right: 4rem !important;
}

.k-scroll-pr-17 {
    scroll-padding-right: 4.25rem;
}

.\!k-scroll-pr-17 {
    scroll-padding-right: 4.25rem !important;
}

.k-scroll-pr-18 {
    scroll-padding-right: 4.5rem;
}

.\!k-scroll-pr-18 {
    scroll-padding-right: 4.5rem !important;
}

.k-scroll-pr-19 {
    scroll-padding-right: 4.75rem;
}

.\!k-scroll-pr-19 {
    scroll-padding-right: 4.75rem !important;
}

.k-scroll-pr-20 {
    scroll-padding-right: 5rem;
}

.\!k-scroll-pr-20 {
    scroll-padding-right: 5rem !important;
}

.k-scroll-pr-21 {
    scroll-padding-right: 5.25rem;
}

.\!k-scroll-pr-21 {
    scroll-padding-right: 5.25rem !important;
}

.k-scroll-pr-22 {
    scroll-padding-right: 5.5rem;
}

.\!k-scroll-pr-22 {
    scroll-padding-right: 5.5rem !important;
}

.k-scroll-pr-23 {
    scroll-padding-right: 5.75rem;
}

.\!k-scroll-pr-23 {
    scroll-padding-right: 5.75rem !important;
}

.k-scroll-pr-24 {
    scroll-padding-right: 6rem;
}

.\!k-scroll-pr-24 {
    scroll-padding-right: 6rem !important;
}

.k-scroll-pb-0 {
    scroll-padding-bottom: 0;
}

.\!k-scroll-pb-0 {
    scroll-padding-bottom: 0 !important;
}

.k-scroll-pb-1px {
    scroll-padding-bottom: 1px;
}

.\!k-scroll-pb-1px {
    scroll-padding-bottom: 1px !important;
}

.k-scroll-pb-0\.5 {
    scroll-padding-bottom: 0.125rem;
}

.\!k-scroll-pb-0\.5 {
    scroll-padding-bottom: 0.125rem !important;
}

.k-scroll-pb-1 {
    scroll-padding-bottom: 0.25rem;
}

.\!k-scroll-pb-1 {
    scroll-padding-bottom: 0.25rem !important;
}

.k-scroll-pb-1\.5 {
    scroll-padding-bottom: 0.375rem;
}

.\!k-scroll-pb-1\.5 {
    scroll-padding-bottom: 0.375rem !important;
}

.k-scroll-pb-2 {
    scroll-padding-bottom: 0.5rem;
}

.\!k-scroll-pb-2 {
    scroll-padding-bottom: 0.5rem !important;
}

.k-scroll-pb-2\.5 {
    scroll-padding-bottom: 0.625rem;
}

.\!k-scroll-pb-2\.5 {
    scroll-padding-bottom: 0.625rem !important;
}

.k-scroll-pb-3 {
    scroll-padding-bottom: 0.75rem;
}

.\!k-scroll-pb-3 {
    scroll-padding-bottom: 0.75rem !important;
}

.k-scroll-pb-3\.5 {
    scroll-padding-bottom: 0.875rem;
}

.\!k-scroll-pb-3\.5 {
    scroll-padding-bottom: 0.875rem !important;
}

.k-scroll-pb-4 {
    scroll-padding-bottom: 1rem;
}

.\!k-scroll-pb-4 {
    scroll-padding-bottom: 1rem !important;
}

.k-scroll-pb-4\.5 {
    scroll-padding-bottom: 1.125rem;
}

.\!k-scroll-pb-4\.5 {
    scroll-padding-bottom: 1.125rem !important;
}

.k-scroll-pb-5 {
    scroll-padding-bottom: 1.25rem;
}

.\!k-scroll-pb-5 {
    scroll-padding-bottom: 1.25rem !important;
}

.k-scroll-pb-5\.5 {
    scroll-padding-bottom: 1.375rem;
}

.\!k-scroll-pb-5\.5 {
    scroll-padding-bottom: 1.375rem !important;
}

.k-scroll-pb-6 {
    scroll-padding-bottom: 1.5rem;
}

.\!k-scroll-pb-6 {
    scroll-padding-bottom: 1.5rem !important;
}

.k-scroll-pb-6\.5 {
    scroll-padding-bottom: 1.625rem;
}

.\!k-scroll-pb-6\.5 {
    scroll-padding-bottom: 1.625rem !important;
}

.k-scroll-pb-7 {
    scroll-padding-bottom: 1.75rem;
}

.\!k-scroll-pb-7 {
    scroll-padding-bottom: 1.75rem !important;
}

.k-scroll-pb-7\.5 {
    scroll-padding-bottom: 1.875rem;
}

.\!k-scroll-pb-7\.5 {
    scroll-padding-bottom: 1.875rem !important;
}

.k-scroll-pb-8 {
    scroll-padding-bottom: 2rem;
}

.\!k-scroll-pb-8 {
    scroll-padding-bottom: 2rem !important;
}

.k-scroll-pb-9 {
    scroll-padding-bottom: 2.25rem;
}

.\!k-scroll-pb-9 {
    scroll-padding-bottom: 2.25rem !important;
}

.k-scroll-pb-10 {
    scroll-padding-bottom: 2.5rem;
}

.\!k-scroll-pb-10 {
    scroll-padding-bottom: 2.5rem !important;
}

.k-scroll-pb-11 {
    scroll-padding-bottom: 2.75rem;
}

.\!k-scroll-pb-11 {
    scroll-padding-bottom: 2.75rem !important;
}

.k-scroll-pb-12 {
    scroll-padding-bottom: 3rem;
}

.\!k-scroll-pb-12 {
    scroll-padding-bottom: 3rem !important;
}

.k-scroll-pb-13 {
    scroll-padding-bottom: 3.25rem;
}

.\!k-scroll-pb-13 {
    scroll-padding-bottom: 3.25rem !important;
}

.k-scroll-pb-14 {
    scroll-padding-bottom: 3.5rem;
}

.\!k-scroll-pb-14 {
    scroll-padding-bottom: 3.5rem !important;
}

.k-scroll-pb-15 {
    scroll-padding-bottom: 3.75rem;
}

.\!k-scroll-pb-15 {
    scroll-padding-bottom: 3.75rem !important;
}

.k-scroll-pb-16 {
    scroll-padding-bottom: 4rem;
}

.\!k-scroll-pb-16 {
    scroll-padding-bottom: 4rem !important;
}

.k-scroll-pb-17 {
    scroll-padding-bottom: 4.25rem;
}

.\!k-scroll-pb-17 {
    scroll-padding-bottom: 4.25rem !important;
}

.k-scroll-pb-18 {
    scroll-padding-bottom: 4.5rem;
}

.\!k-scroll-pb-18 {
    scroll-padding-bottom: 4.5rem !important;
}

.k-scroll-pb-19 {
    scroll-padding-bottom: 4.75rem;
}

.\!k-scroll-pb-19 {
    scroll-padding-bottom: 4.75rem !important;
}

.k-scroll-pb-20 {
    scroll-padding-bottom: 5rem;
}

.\!k-scroll-pb-20 {
    scroll-padding-bottom: 5rem !important;
}

.k-scroll-pb-21 {
    scroll-padding-bottom: 5.25rem;
}

.\!k-scroll-pb-21 {
    scroll-padding-bottom: 5.25rem !important;
}

.k-scroll-pb-22 {
    scroll-padding-bottom: 5.5rem;
}

.\!k-scroll-pb-22 {
    scroll-padding-bottom: 5.5rem !important;
}

.k-scroll-pb-23 {
    scroll-padding-bottom: 5.75rem;
}

.\!k-scroll-pb-23 {
    scroll-padding-bottom: 5.75rem !important;
}

.k-scroll-pb-24 {
    scroll-padding-bottom: 6rem;
}

.\!k-scroll-pb-24 {
    scroll-padding-bottom: 6rem !important;
}

.k-scroll-pl-0 {
    scroll-padding-left: 0;
}

.\!k-scroll-pl-0 {
    scroll-padding-left: 0 !important;
}

.k-scroll-pl-1px {
    scroll-padding-left: 1px;
}

.\!k-scroll-pl-1px {
    scroll-padding-left: 1px !important;
}

.k-scroll-pl-0\.5 {
    scroll-padding-left: 0.125rem;
}

.\!k-scroll-pl-0\.5 {
    scroll-padding-left: 0.125rem !important;
}

.k-scroll-pl-1 {
    scroll-padding-left: 0.25rem;
}

.\!k-scroll-pl-1 {
    scroll-padding-left: 0.25rem !important;
}

.k-scroll-pl-1\.5 {
    scroll-padding-left: 0.375rem;
}

.\!k-scroll-pl-1\.5 {
    scroll-padding-left: 0.375rem !important;
}

.k-scroll-pl-2 {
    scroll-padding-left: 0.5rem;
}

.\!k-scroll-pl-2 {
    scroll-padding-left: 0.5rem !important;
}

.k-scroll-pl-2\.5 {
    scroll-padding-left: 0.625rem;
}

.\!k-scroll-pl-2\.5 {
    scroll-padding-left: 0.625rem !important;
}

.k-scroll-pl-3 {
    scroll-padding-left: 0.75rem;
}

.\!k-scroll-pl-3 {
    scroll-padding-left: 0.75rem !important;
}

.k-scroll-pl-3\.5 {
    scroll-padding-left: 0.875rem;
}

.\!k-scroll-pl-3\.5 {
    scroll-padding-left: 0.875rem !important;
}

.k-scroll-pl-4 {
    scroll-padding-left: 1rem;
}

.\!k-scroll-pl-4 {
    scroll-padding-left: 1rem !important;
}

.k-scroll-pl-4\.5 {
    scroll-padding-left: 1.125rem;
}

.\!k-scroll-pl-4\.5 {
    scroll-padding-left: 1.125rem !important;
}

.k-scroll-pl-5 {
    scroll-padding-left: 1.25rem;
}

.\!k-scroll-pl-5 {
    scroll-padding-left: 1.25rem !important;
}

.k-scroll-pl-5\.5 {
    scroll-padding-left: 1.375rem;
}

.\!k-scroll-pl-5\.5 {
    scroll-padding-left: 1.375rem !important;
}

.k-scroll-pl-6 {
    scroll-padding-left: 1.5rem;
}

.\!k-scroll-pl-6 {
    scroll-padding-left: 1.5rem !important;
}

.k-scroll-pl-6\.5 {
    scroll-padding-left: 1.625rem;
}

.\!k-scroll-pl-6\.5 {
    scroll-padding-left: 1.625rem !important;
}

.k-scroll-pl-7 {
    scroll-padding-left: 1.75rem;
}

.\!k-scroll-pl-7 {
    scroll-padding-left: 1.75rem !important;
}

.k-scroll-pl-7\.5 {
    scroll-padding-left: 1.875rem;
}

.\!k-scroll-pl-7\.5 {
    scroll-padding-left: 1.875rem !important;
}

.k-scroll-pl-8 {
    scroll-padding-left: 2rem;
}

.\!k-scroll-pl-8 {
    scroll-padding-left: 2rem !important;
}

.k-scroll-pl-9 {
    scroll-padding-left: 2.25rem;
}

.\!k-scroll-pl-9 {
    scroll-padding-left: 2.25rem !important;
}

.k-scroll-pl-10 {
    scroll-padding-left: 2.5rem;
}

.\!k-scroll-pl-10 {
    scroll-padding-left: 2.5rem !important;
}

.k-scroll-pl-11 {
    scroll-padding-left: 2.75rem;
}

.\!k-scroll-pl-11 {
    scroll-padding-left: 2.75rem !important;
}

.k-scroll-pl-12 {
    scroll-padding-left: 3rem;
}

.\!k-scroll-pl-12 {
    scroll-padding-left: 3rem !important;
}

.k-scroll-pl-13 {
    scroll-padding-left: 3.25rem;
}

.\!k-scroll-pl-13 {
    scroll-padding-left: 3.25rem !important;
}

.k-scroll-pl-14 {
    scroll-padding-left: 3.5rem;
}

.\!k-scroll-pl-14 {
    scroll-padding-left: 3.5rem !important;
}

.k-scroll-pl-15 {
    scroll-padding-left: 3.75rem;
}

.\!k-scroll-pl-15 {
    scroll-padding-left: 3.75rem !important;
}

.k-scroll-pl-16 {
    scroll-padding-left: 4rem;
}

.\!k-scroll-pl-16 {
    scroll-padding-left: 4rem !important;
}

.k-scroll-pl-17 {
    scroll-padding-left: 4.25rem;
}

.\!k-scroll-pl-17 {
    scroll-padding-left: 4.25rem !important;
}

.k-scroll-pl-18 {
    scroll-padding-left: 4.5rem;
}

.\!k-scroll-pl-18 {
    scroll-padding-left: 4.5rem !important;
}

.k-scroll-pl-19 {
    scroll-padding-left: 4.75rem;
}

.\!k-scroll-pl-19 {
    scroll-padding-left: 4.75rem !important;
}

.k-scroll-pl-20 {
    scroll-padding-left: 5rem;
}

.\!k-scroll-pl-20 {
    scroll-padding-left: 5rem !important;
}

.k-scroll-pl-21 {
    scroll-padding-left: 5.25rem;
}

.\!k-scroll-pl-21 {
    scroll-padding-left: 5.25rem !important;
}

.k-scroll-pl-22 {
    scroll-padding-left: 5.5rem;
}

.\!k-scroll-pl-22 {
    scroll-padding-left: 5.5rem !important;
}

.k-scroll-pl-23 {
    scroll-padding-left: 5.75rem;
}

.\!k-scroll-pl-23 {
    scroll-padding-left: 5.75rem !important;
}

.k-scroll-pl-24 {
    scroll-padding-left: 6rem;
}

.\!k-scroll-pl-24 {
    scroll-padding-left: 6rem !important;
}

.k-scroll-px-0 {
    scroll-padding-inline: 0;
}

.\!k-scroll-px-0 {
    scroll-padding-inline: 0 !important;
}

.k-scroll-px-1px {
    scroll-padding-inline: 1px;
}

.\!k-scroll-px-1px {
    scroll-padding-inline: 1px !important;
}

.k-scroll-px-0\.5 {
    scroll-padding-inline: 0.125rem;
}

.\!k-scroll-px-0\.5 {
    scroll-padding-inline: 0.125rem !important;
}

.k-scroll-px-1 {
    scroll-padding-inline: 0.25rem;
}

.\!k-scroll-px-1 {
    scroll-padding-inline: 0.25rem !important;
}

.k-scroll-px-1\.5 {
    scroll-padding-inline: 0.375rem;
}

.\!k-scroll-px-1\.5 {
    scroll-padding-inline: 0.375rem !important;
}

.k-scroll-px-2 {
    scroll-padding-inline: 0.5rem;
}

.\!k-scroll-px-2 {
    scroll-padding-inline: 0.5rem !important;
}

.k-scroll-px-2\.5 {
    scroll-padding-inline: 0.625rem;
}

.\!k-scroll-px-2\.5 {
    scroll-padding-inline: 0.625rem !important;
}

.k-scroll-px-3 {
    scroll-padding-inline: 0.75rem;
}

.\!k-scroll-px-3 {
    scroll-padding-inline: 0.75rem !important;
}

.k-scroll-px-3\.5 {
    scroll-padding-inline: 0.875rem;
}

.\!k-scroll-px-3\.5 {
    scroll-padding-inline: 0.875rem !important;
}

.k-scroll-px-4 {
    scroll-padding-inline: 1rem;
}

.\!k-scroll-px-4 {
    scroll-padding-inline: 1rem !important;
}

.k-scroll-px-4\.5 {
    scroll-padding-inline: 1.125rem;
}

.\!k-scroll-px-4\.5 {
    scroll-padding-inline: 1.125rem !important;
}

.k-scroll-px-5 {
    scroll-padding-inline: 1.25rem;
}

.\!k-scroll-px-5 {
    scroll-padding-inline: 1.25rem !important;
}

.k-scroll-px-5\.5 {
    scroll-padding-inline: 1.375rem;
}

.\!k-scroll-px-5\.5 {
    scroll-padding-inline: 1.375rem !important;
}

.k-scroll-px-6 {
    scroll-padding-inline: 1.5rem;
}

.\!k-scroll-px-6 {
    scroll-padding-inline: 1.5rem !important;
}

.k-scroll-px-6\.5 {
    scroll-padding-inline: 1.625rem;
}

.\!k-scroll-px-6\.5 {
    scroll-padding-inline: 1.625rem !important;
}

.k-scroll-px-7 {
    scroll-padding-inline: 1.75rem;
}

.\!k-scroll-px-7 {
    scroll-padding-inline: 1.75rem !important;
}

.k-scroll-px-7\.5 {
    scroll-padding-inline: 1.875rem;
}

.\!k-scroll-px-7\.5 {
    scroll-padding-inline: 1.875rem !important;
}

.k-scroll-px-8 {
    scroll-padding-inline: 2rem;
}

.\!k-scroll-px-8 {
    scroll-padding-inline: 2rem !important;
}

.k-scroll-px-9 {
    scroll-padding-inline: 2.25rem;
}

.\!k-scroll-px-9 {
    scroll-padding-inline: 2.25rem !important;
}

.k-scroll-px-10 {
    scroll-padding-inline: 2.5rem;
}

.\!k-scroll-px-10 {
    scroll-padding-inline: 2.5rem !important;
}

.k-scroll-px-11 {
    scroll-padding-inline: 2.75rem;
}

.\!k-scroll-px-11 {
    scroll-padding-inline: 2.75rem !important;
}

.k-scroll-px-12 {
    scroll-padding-inline: 3rem;
}

.\!k-scroll-px-12 {
    scroll-padding-inline: 3rem !important;
}

.k-scroll-px-13 {
    scroll-padding-inline: 3.25rem;
}

.\!k-scroll-px-13 {
    scroll-padding-inline: 3.25rem !important;
}

.k-scroll-px-14 {
    scroll-padding-inline: 3.5rem;
}

.\!k-scroll-px-14 {
    scroll-padding-inline: 3.5rem !important;
}

.k-scroll-px-15 {
    scroll-padding-inline: 3.75rem;
}

.\!k-scroll-px-15 {
    scroll-padding-inline: 3.75rem !important;
}

.k-scroll-px-16 {
    scroll-padding-inline: 4rem;
}

.\!k-scroll-px-16 {
    scroll-padding-inline: 4rem !important;
}

.k-scroll-px-17 {
    scroll-padding-inline: 4.25rem;
}

.\!k-scroll-px-17 {
    scroll-padding-inline: 4.25rem !important;
}

.k-scroll-px-18 {
    scroll-padding-inline: 4.5rem;
}

.\!k-scroll-px-18 {
    scroll-padding-inline: 4.5rem !important;
}

.k-scroll-px-19 {
    scroll-padding-inline: 4.75rem;
}

.\!k-scroll-px-19 {
    scroll-padding-inline: 4.75rem !important;
}

.k-scroll-px-20 {
    scroll-padding-inline: 5rem;
}

.\!k-scroll-px-20 {
    scroll-padding-inline: 5rem !important;
}

.k-scroll-px-21 {
    scroll-padding-inline: 5.25rem;
}

.\!k-scroll-px-21 {
    scroll-padding-inline: 5.25rem !important;
}

.k-scroll-px-22 {
    scroll-padding-inline: 5.5rem;
}

.\!k-scroll-px-22 {
    scroll-padding-inline: 5.5rem !important;
}

.k-scroll-px-23 {
    scroll-padding-inline: 5.75rem;
}

.\!k-scroll-px-23 {
    scroll-padding-inline: 5.75rem !important;
}

.k-scroll-px-24 {
    scroll-padding-inline: 6rem;
}

.\!k-scroll-px-24 {
    scroll-padding-inline: 6rem !important;
}

.k-scroll-py-0 {
    scroll-padding-block: 0;
}

.\!k-scroll-py-0 {
    scroll-padding-block: 0 !important;
}

.k-scroll-py-1px {
    scroll-padding-block: 1px;
}

.\!k-scroll-py-1px {
    scroll-padding-block: 1px !important;
}

.k-scroll-py-0\.5 {
    scroll-padding-block: 0.125rem;
}

.\!k-scroll-py-0\.5 {
    scroll-padding-block: 0.125rem !important;
}

.k-scroll-py-1 {
    scroll-padding-block: 0.25rem;
}

.\!k-scroll-py-1 {
    scroll-padding-block: 0.25rem !important;
}

.k-scroll-py-1\.5 {
    scroll-padding-block: 0.375rem;
}

.\!k-scroll-py-1\.5 {
    scroll-padding-block: 0.375rem !important;
}

.k-scroll-py-2 {
    scroll-padding-block: 0.5rem;
}

.\!k-scroll-py-2 {
    scroll-padding-block: 0.5rem !important;
}

.k-scroll-py-2\.5 {
    scroll-padding-block: 0.625rem;
}

.\!k-scroll-py-2\.5 {
    scroll-padding-block: 0.625rem !important;
}

.k-scroll-py-3 {
    scroll-padding-block: 0.75rem;
}

.\!k-scroll-py-3 {
    scroll-padding-block: 0.75rem !important;
}

.k-scroll-py-3\.5 {
    scroll-padding-block: 0.875rem;
}

.\!k-scroll-py-3\.5 {
    scroll-padding-block: 0.875rem !important;
}

.k-scroll-py-4 {
    scroll-padding-block: 1rem;
}

.\!k-scroll-py-4 {
    scroll-padding-block: 1rem !important;
}

.k-scroll-py-4\.5 {
    scroll-padding-block: 1.125rem;
}

.\!k-scroll-py-4\.5 {
    scroll-padding-block: 1.125rem !important;
}

.k-scroll-py-5 {
    scroll-padding-block: 1.25rem;
}

.\!k-scroll-py-5 {
    scroll-padding-block: 1.25rem !important;
}

.k-scroll-py-5\.5 {
    scroll-padding-block: 1.375rem;
}

.\!k-scroll-py-5\.5 {
    scroll-padding-block: 1.375rem !important;
}

.k-scroll-py-6 {
    scroll-padding-block: 1.5rem;
}

.\!k-scroll-py-6 {
    scroll-padding-block: 1.5rem !important;
}

.k-scroll-py-6\.5 {
    scroll-padding-block: 1.625rem;
}

.\!k-scroll-py-6\.5 {
    scroll-padding-block: 1.625rem !important;
}

.k-scroll-py-7 {
    scroll-padding-block: 1.75rem;
}

.\!k-scroll-py-7 {
    scroll-padding-block: 1.75rem !important;
}

.k-scroll-py-7\.5 {
    scroll-padding-block: 1.875rem;
}

.\!k-scroll-py-7\.5 {
    scroll-padding-block: 1.875rem !important;
}

.k-scroll-py-8 {
    scroll-padding-block: 2rem;
}

.\!k-scroll-py-8 {
    scroll-padding-block: 2rem !important;
}

.k-scroll-py-9 {
    scroll-padding-block: 2.25rem;
}

.\!k-scroll-py-9 {
    scroll-padding-block: 2.25rem !important;
}

.k-scroll-py-10 {
    scroll-padding-block: 2.5rem;
}

.\!k-scroll-py-10 {
    scroll-padding-block: 2.5rem !important;
}

.k-scroll-py-11 {
    scroll-padding-block: 2.75rem;
}

.\!k-scroll-py-11 {
    scroll-padding-block: 2.75rem !important;
}

.k-scroll-py-12 {
    scroll-padding-block: 3rem;
}

.\!k-scroll-py-12 {
    scroll-padding-block: 3rem !important;
}

.k-scroll-py-13 {
    scroll-padding-block: 3.25rem;
}

.\!k-scroll-py-13 {
    scroll-padding-block: 3.25rem !important;
}

.k-scroll-py-14 {
    scroll-padding-block: 3.5rem;
}

.\!k-scroll-py-14 {
    scroll-padding-block: 3.5rem !important;
}

.k-scroll-py-15 {
    scroll-padding-block: 3.75rem;
}

.\!k-scroll-py-15 {
    scroll-padding-block: 3.75rem !important;
}

.k-scroll-py-16 {
    scroll-padding-block: 4rem;
}

.\!k-scroll-py-16 {
    scroll-padding-block: 4rem !important;
}

.k-scroll-py-17 {
    scroll-padding-block: 4.25rem;
}

.\!k-scroll-py-17 {
    scroll-padding-block: 4.25rem !important;
}

.k-scroll-py-18 {
    scroll-padding-block: 4.5rem;
}

.\!k-scroll-py-18 {
    scroll-padding-block: 4.5rem !important;
}

.k-scroll-py-19 {
    scroll-padding-block: 4.75rem;
}

.\!k-scroll-py-19 {
    scroll-padding-block: 4.75rem !important;
}

.k-scroll-py-20 {
    scroll-padding-block: 5rem;
}

.\!k-scroll-py-20 {
    scroll-padding-block: 5rem !important;
}

.k-scroll-py-21 {
    scroll-padding-block: 5.25rem;
}

.\!k-scroll-py-21 {
    scroll-padding-block: 5.25rem !important;
}

.k-scroll-py-22 {
    scroll-padding-block: 5.5rem;
}

.\!k-scroll-py-22 {
    scroll-padding-block: 5.5rem !important;
}

.k-scroll-py-23 {
    scroll-padding-block: 5.75rem;
}

.\!k-scroll-py-23 {
    scroll-padding-block: 5.75rem !important;
}

.k-scroll-py-24 {
    scroll-padding-block: 6rem;
}

.\!k-scroll-py-24 {
    scroll-padding-block: 6rem !important;
}

.k-touch-action-none {
    touch-action: none;
}

.\!k-touch-action-none {
    touch-action: none !important;
}

.k-touch-action-auto {
    touch-action: auto;
}

.\!k-touch-action-auto {
    touch-action: auto !important;
}

.k-touch-action-pan-x {
    touch-action: pan-x;
}

.\!k-touch-action-pan-x {
    touch-action: pan-x !important;
}

.k-touch-action-pan-left {
    touch-action: pan-left;
}

.\!k-touch-action-pan-left {
    touch-action: pan-left !important;
}

.k-touch-action-pan-right {
    touch-action: pan-right;
}

.\!k-touch-action-pan-right {
    touch-action: pan-right !important;
}

.k-touch-action-pan-y {
    touch-action: pan-y;
}

.\!k-touch-action-pan-y {
    touch-action: pan-y !important;
}

.k-touch-action-pan-up {
    touch-action: pan-up;
}

.\!k-touch-action-pan-up {
    touch-action: pan-up !important;
}

.k-touch-action-pan-down {
    touch-action: pan-down;
}

.\!k-touch-action-pan-down {
    touch-action: pan-down !important;
}

.k-touch-action-pinch-zoom {
    touch-action: pinch-zoom;
}

.\!k-touch-action-pinch-zoom {
    touch-action: pinch-zoom !important;
}

.k-touch-action-manipulation {
    touch-action: manipulation;
}

.\!k-touch-action-manipulation {
    touch-action: manipulation !important;
}

.k-user-select-none {
    user-select: none;
}

.\!k-user-select-none {
    user-select: none !important;
}

.k-user-select-auto {
    user-select: auto;
}

.\!k-user-select-auto {
    user-select: auto !important;
}

.k-user-select-text {
    user-select: text;
}

.\!k-user-select-text {
    user-select: text !important;
}

.k-user-select-all {
    user-select: all;
}

.\!k-user-select-all {
    user-select: all !important;
}

.k-user-select-contain {
    user-select: contain;
}

.\!k-user-select-contain {
    user-select: contain !important;
}

.k-will-change-auto {
    will-change: auto;
}

.\!k-will-change-auto {
    will-change: auto !important;
}

.k-will-change-scroll {
    will-change: scroll-position;
}

.\!k-will-change-scroll {
    will-change: scroll-position !important;
}

.k-will-change-contents {
    will-change: contents;
}

.\!k-will-change-contents {
    will-change: contents !important;
}

.k-will-change-transform {
    will-change: transform;
}

.\!k-will-change-transform {
    will-change: transform !important;
}

.k-fill-none {
    fill: none;
}

.\!k-fill-none {
    fill: none !important;
}

.k-fill-inherit {
    fill: inherit;
}

.\!k-fill-inherit {
    fill: inherit !important;
}

.k-fill-current {
    fill: currentColor;
}

.\!k-fill-current {
    fill: currentColor !important;
}

.k-fill-transparent {
    fill: transparent;
}

.\!k-fill-transparent {
    fill: transparent !important;
}

.k-fill-black {
    fill: black;
}

.\!k-fill-black {
    fill: black !important;
}

.k-fill-white {
    fill: white;
}

.\!k-fill-white {
    fill: white !important;
}

.k-body,
.k-typography {
    font-size: 1rem;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, 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", "Noto Sans", "Liberation Sans", Arial, 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.875rem;
    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-block: 16px;
    padding-inline: 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-block: 0px;
    padding-inline: 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;
}

@font-face {
    font-family: "WebComponentsIcons";
    font-style: normal;
    font-weight: normal;
    src: url(data:font/ttf;base64,AAEAAAALAIAAAwAwR1NVQiCLJXoAAAE4AAAAVE9TLzJWkk1xAAABjAAAAGBjbWFwb8+dIwAADBQAACU4Z2x5ZkKdLekAADZkAAF25GhlYWQjiM81AAAA4AAAADZoaGVhB6kGSgAAALwAAAAkaG10eCgI/9oAAAHsAAAKKGxvY2GyTFY4AAAxTAAABRZtYXhwA9IBMAAAARgAAAAgbmFtZYGZmTgAAa1IAAACcHBvc3Tn8YnOAAGvuAAAJ6kAAQAAA8D/wAAABAD/5f//BAEAAQAAAAAAAAAAAAAAAAAAAooAAQAAAAEAACVhjZRfDzz1AAsEAAAAAADgQcVSAAAAAOBBxVL/5f+/BAED1QAAAAgAAgAAAAAAAAABAAACigEkAD4AAAAAAAIAAAAKAAoAAAD/AAAAAAAAAAEAAAAKADAAPgACREZMVAAObGF0bgAaAAQAAAAAAAAAAQAAAAQAAAAAAAAAAQAAAAFsaWdhAAgAAAABAAAAAQAEAAQAAAABAAgAAQAGAAAAAQAAAAQEAAGQAAUAAAKJAswAAACPAokCzAAAAesAMgEIAAACAAUDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFBmRWQAwAAg6iEDwP/AAFwEHABBAAAAAQAAAAAAAAAAAAAAAAACBAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAP//BAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAP//BAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAP/lBAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQA//4EAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAP/+BAD//gQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAP//BAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQA//8EAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAP//BAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAFAAAAAwAAACwAAAAEAAAGvAABAAAAAAW2AAMAAQAAACwAAwAKAAAGvAAEBYoAAAAaABAAAwAKACDgceFd4g7jCuQD5VPmoecF6CzpTuoh//8AAAAg4ADhAOIA4wDkAOUA5gDnAOgA6QDqAP//AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAGgAaAPwBtgHSAeYB7AKSA9QD3gQ2BNIAAAABAAIAAwAEAAUABgAHAAgACQAKAAsADAANAA4ADwAQABEAEgATABQAFQAWABcAGAAZABoAGwAcAB0AHgAfACAAIQAiACMAJAAlACYAJwAoACkAKgArACwALQAuAC8AMAAxADIAMwA0ADUANgA3ADgAOQA6ADsAPAA9AD4APwBAAEEAQgBDAEQARQBGAEcASABJAEoASwBMAE0ATgBPAFAAUQBSAFMAVABVAFYAVwBYAFkAWgBbAFwAXQBeAF8AYABhAGIAYwBkAGUAZgBnAGgAaQBqAGsAbABtAG4AbwBwAHEAcgBzAHQAdQB2AHcAeAB5AHoAewB8AH0AfgB/AIAAgQCCAIMAhACFAIYAhwCIAIkAigCLAIwAjQCOAI8AkACRAJIAkwCUAJUAlgCXAJgAmQCaAJsAnACdAJ4AnwCgAKEAogCjAKQApQCmAKcAqACpAKoAqwCsAK0ArgCvALAAsQCyALMAtAC1ALYAtwC4ALkAugC7ALwAvQC+AL8AwADBAMIAwwDEAMUAxgDHAMgAyQDKAMsAzADNAM4AzwDQANEA0gDTANQA1QDWANcA2ADZANoA2wDcAN0A3gDfAOAA4QDiAOMA5ADlAOYA5wDoAOkA6gDrAOwA7QDuAO8A8ADxAPIA8wD0APUA9gD3APgA+QD6APsA/AD9AP4A/wEAAQEBAgEDAQQBBQEGAQcBCAEJAQoBCwEMAQ0BDgEPARABEQESARMBFAEVARYBFwEYARkBGgEbARwBHQEeAR8BIAEhASIBIwEkASUBJgEnASgBKQEqASsBLAEtAS4BLwEwATEBMgEzATQBNQE2ATcBOAE5AToBOwE8AT0BPgE/AUABQQFCAUMBRAFFAUYBRwFIAUkBSgFLAUwBTQFOAU8BUAFRAVIBUwFUAVUBVgFXAVgBWQFaAVsBXAFdAV4BXwFgAWEBYgFjAWQBZQFmAWcBaAFpAWoBawFsAW0BbgFvAXABcQFyAXMBdAF1AXYBdwF4AXkBegF7AXwBfQF+AX8BgAGBAYIBgwGEAYUBhgGHAYgBiQGKAYsBjAGNAY4BjwGQAZEBkgGTAZQBlQGWAZcBmAGZAZoBmwGcAZ0BngGfAaABoQGiAaMBpAGlAaYBpwGoAakBqgGrAawBrQGuAa8BsAGxAbIBswG0AbUBtgG3AbgBuQG6AbsBvAG9Ab4BvwHAAcEBwgHDAcQBxQHGAccByAHJAcoBywHMAc0BzgHPAdAB0QHSAdMB1AHVAdYB1wHYAdkB2gHbAdwB3QHeAd8B4AHhAeIB4wHkAeUB5gHnAegB6QHqAesB7AHtAe4B7wHwAfEB8gHzAfQB9QH2AfcB+AH5AfoB+wH8Af0B/gH/AgACAQICAgMCBAIFAgYCBwIIAgkCCgILAgwCDQIOAg8CEAIRAhICEwIUAhUCFgIXAhgCGQIaAhsCHAIdAh4CHwIgAiECIgIjAiQCJQImAicCKAIpAioCKwIsAi0CLgIvAjACMQIyAjMCNAI1AjYCNwI4AjkCOgI7AjwCPQI+Aj8CQAJBAkICQwJEAkUCRgJHAkgCSQJKAksCTAJNAk4CTwJQAlECUgJTAlQCVQJWAlcCWAJZAloCWwJcAl0CXgJfAmACYQJiAmMCZAJlAmYCZwJoAmkCagJrAmwCbQJu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AADlIQAAAREAAOUiAADlIgAAARIAAOUjAADlIwAAARMAAOUkAADlJAAAARQAAOUlAADlJQAAARUAAOUmAADlJgAAARYAAOUnAADlJwAAARcAAOUoAADlKAAAARgAAOUpAADlKQAAARkAAOUqAADlKgAAARoAAOUrAADlKwAAARsAAOUsAADlLAAAARwAAOUtAADlLQAAAR0AAOUuAADlLgAAAR4AAOUvAADlLwAAAR8AAOUwAADlMAAAASAAAOUxAADlMQAAASEAAOUyAADlMgAAASIAAOUzAADlMwAAASMAAOU0AADlNAAAASQAAOU1AADlNQAAASUAAOU2AADlNgAAASYAAOU3AADlNwAAAScAAOU4AADlOAAAASgAAOU5AADlOQAAASkAAOU6AADlOgAAASoAAOU7AADlOwAAASsAAOU8AADlPAAAASwAAOU9AADlPQAAAS0AAOU+AADlPgAAAS4AAOU/AADlPwAAAS8AAOVAAADlQAAAATAAAOVBAADlQQAAATEAAOVCAADlQgAAATIAAOVDAADlQwAAATMAAOVEAADlRAAAATQAAOVFAADlRQAAATUAAOVGAADlRgAAATYAAOVHAADlRwAAATcAAOVIAADlSAAAATgAAOVJAADlSQAAATkAAOVKAADlSgAAAToAAOVLAADlSwAAATsAAOVMAADlTAAAATwAAOVNAADlTQAAAT0AAOVOAADlTgAAAT4AAOVPAADlTwAAAT8AAOVQAADlUAAAAUAAAOVRAADlUQAAAUEAAOVSAADlUgAAAUIAAOVTAADlUwAAAUMAAOYAAADmAAAAAUQAAOYBAADmAQAAAUUAAOYCAADmAgAAAUYAAOYDAADmAwAAAUcAAOYEAADmBAAAAUgAAOYFAADmBQAAAUkAAOYGAADmBgAAAUoAAOYHAADmBwAAAUsAAOYIAADmCAAAAUwAAOYJAADmCQAAAU0AAOYKAADmCgAAAU4AAOYLAADmCwAAAU8AAOYMAADmDAAAAVAAAOYNAADmDQAAAVEAAOYOAADmDgAAAVIAAOYPAADmDwAAAVMAAOYQAADmEAAAAVQAAOYRAADmEQAAAVUAAOYSAADmEgAAAVYAAOYTAADmEwAAAVcAAOYUAADmFAAAAVgAAOYVAADmFQAAAVkAAOYWAADmFgAAAVoAAOYXAADmFwAAAVsAAOYY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AYD+gAHAAcACwODgAQBAQAAGAAAAAAPAA4AAAgAFAAkADQARABUAABMRJQERBREhFSEVIRUhESEVIRUhFSFAAUD+wAFAAkD9wAJA/cACQP3AAkD9wAOA/oDA/UABgMACgECAQP8AQIBAAAAAAAkAAAAAA8ADgAADAAcACwAPABMAFwAbAB8AIwAAEyERIQEhESEBIREhNSERIQEhESEBESERASERISUhESEBIREhQAEA/wABQAEA/wD+wAEA/wABAP8AAUABAP8AAUABAP8AAQD/AP7AAQD/AAFAAQD/AAOA/wD9gAEA/wABAEABAP8AAQABQP8AAQD9wAEAQAEA/IABAAAABgAAAAADwAOAAAMABwALAA8AEwAXAAATMxUjJRUhNQEzNSMFITUhATM1IwUhNSFAwMABAAKA/IDAwAEAAoD9gP8AwMABAAKA/YADgMDAwMD+AMDAwP4AwMDAAAAEAAAAAAOAA4AAAwAHAAsADwAAEyERIREhESEBIREhGQEhEUABgP6AAYD+gAHAAYD+gAGAAcD+gAHAAYD8wAGAAcD+gAGAAAAEAAAAAAOAA4AAAwAHAAsADwAAEyERIRMhESEBIREhAxEhEUABgP6AQAEA/wABwAEA/wBAAYABwP6AAgABAP1AAQACAP6AAYAAAAAAAgAAAAACgANAAAMABwAAATMRIxMRMxEBQICAwIADQP0AAwD9AAMAAAYAAAAAA4ADwAADAAcACwAPABMAFwAAJSEVITUhNSEBIREhBSE1IREhNSEBFSE1AYACAP4AAgD+AP7AAQD/AAFAAgD+AAIA/gD+wANAgIDAgP7AAsCAgP7AgAHAwMAAAAUAAAAAA4ADwAADAAcACwAPABMAABMhESEBFSE1ASE1IREhNSERITUhQAGA/oABwAGA/oABgP6AAYD+gAGA/oADwPxAA8DAwP5AwP5AwP5AwAAAAAQAAAAAA4ADwAADAAcACwAPAAATIREhASERIQEhESEBIREhQAGA/oABwAGA/oD+QAGA/oABwAGA/oACAAHA/kABwPxAAcD+QAHAAAAEAAAAAAOAA8AAAwAHAAsADwAANyEVIREhNSE1ITUhERUhNUADQPzAA0D8wANA/MADQMDAAQDAQMABAMDAAAAABQAAAAADgAPAAAMABwALAA8AEwAAEyEVIREhNSElITUhAREhEQEh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wMABAMDAwMACwEDAwMDAwMBAwEDAQMDAwMDAwEDAQMDA/wDAwMBAwAAKAAAAAAQBA4AABAAIAAwAEAAUABgAHAAxADUAOQAAASERIREBIzUzNSM1MzUjNTMBIzUzNSM1MzUjNTMBFA4BKwE1MzI+ATQuASsBNTMyHgElMzUjETM1IwFA/sACQP7AwMDAwMDAAQDAwMDAwMACACtKK0BAGiwaGiwaQEArSiv+wEBAQEADgPzAA0D9AMBAwEDA/UDAQMBAwP6gK0orQBosNCwaQCtKNUD+wEAAAAUAAAAAA8EDgAAbAB8AMwA3ADsAAAEzNSM1IxUjNSMVIxUzESMVMxUzNTMVMzUhNSErAREzASM1MzI+ATQuASsBNTMyHgEUDgEDIxUzAzM1IwHAwMBAgECAgICAQIBAAgD+AECAgAGgQEAaLBoaLBpAQCtKKytKi0BAQEBAAsBAgICAgED+AECAgICAQAIA/oBAGiw0LBpAK0pWSisBQED/AEAABgAA/8AEAAPAAAYACgASABoAIgAqAAABIREhESERBTMVIxMjFTMVIxEzESMVMxUjETMlNSMVIzUhFSEjNSMVIzUhAoD9gAEAAwD8QICAgEBAgIBAQICAAQBAgAFAAYCAQIABQAPA/AADAAEAQID9wECAAUABAECAAUBAQECAgEBAgAAABQAAAAADvgOAAAMABwALAA8AEwAAEyERIQMzESMTIREhNyE1IQERMxG+AoD9gIBAQIACgP2AQAIA/gACgEADAP8A/gADgP4A/wBAgAJA/IADgAAABQAAAAADvgOAAAMABwALAA8AEwAAAREhEQMhNSEBESERFyMRMwEVITUBvv8AgAOA/IADAP8AwICA/UADgAMA/YACgP0AQALA/YACgED+AALAQEAAAwAAAAADfgOAAAMABwALAAABIREhATMRIxMRIRECfv5AAcD9wEBAgALAAgABAP0AA4D+AP8AAQAAAAAAAQAAAAADPgOAABMAACUhFSM1IREhNSMRMzUzFTMRIxUhAz7+wED+wAFAwMBAwMABQICAgAEAgAEAgID/AIAAAAMAAAAAA8ADgAADAAcACwAAASERIQERMxEBIREhAYABwP5AAgBA/MACwP1AAwD/AAGA/IADgP0AAQAAAAQAAAAAA74DgAADAAcACwAPAAABIREhATMRIyERMxEBIREhAz79gAKA/QBAQANAQP0CAoD9gAIAAQD9AAOA/IADgP0AAQAAAAMAAAAAA74DQAATABcAGwAAAREhESM1IRUjFTMVITUzESERMzUFIzUzASMRMwM+/wCA/wCAgAEAgAEAgP3AgIABgICAAgABQP7AwMBAwMD+wAFAQMCA/wABAAAAAwAAAAADwAOAAAMABwALAAATIREhAxUhNQEhESHAAQD/AIADgP6AAQD/AAMA/kACQEBA/MACwAABAAAAAAO+A0AAEwAAASMRIREjFSE1IzUzNSEVMxEhETMDvoD/AID/AICAAQCAAQCAAcD+wAFAwMBAwMABQP7AAAAAAAMAAP/+A74DPgADAAcACwAAJSERIQEVITUDIREhAb7/AAEA/oADgID/AAEAfgHA/gBAQAMA/UAABAAAAAADvgOAAAMABwALAA8AAAERIREDITUhERUhNQURIREBvv8AgAOA/IADgP6AAQADAP2AAoD9AEADQEBAfv2AAoAAAAAAAwAAAAADPgOAABMAFwAbAAABNTMRIzUjFSMRMxUhESEVMzUhEQUhNSERIzUzAf7AwEDAwP7AAUBAAUD+gP8AAQCAgAGAgAEAgID/AID/AICAAQDAgAEAgAAAAAADAAAAAAL+A4AAAwAHAAsAABMhESEHMxEjBREhEb4BAP8AgEBAAcABAAMA/YCAA4B+/YACgAAAAAMAAAAAAz4DgAADAAcACwAAEyERIQUzESMXESERfgEA/wABQEBAgAEAAwD9gIADgH79gAKAAAAAAwAAAAADwAOAAAMABwALAAABIREhAREzEQEhESEBAAEA/wACgED+gAEA/wADAP2AAwD8gAOA/QICgAAABP/+AAAD/gOAAAMABwALAA8AABMhESEBETMRASERIQEzESN+AQD/AANAQP6AAQD/AP2AQEADAP2AAwD8gAOA/QICgPz+A4AABP/+AAAD/gOAAAMABwALAA8AABMhESEBETMRASERIQEzESO+AQD/AAMAQP5AAQD/AP3AQEADAP2AAwD8gAOA/QICgPz+A4AAAwAAAAADvgOAAAMABwALAAABIREhJRUhNQEhESEDPv2AAoD9AAOA/QICgP2AAgABAIBAQP1AAQAAAAAAAwAAAAADvgNAAAMABwALAAABIREhARUhNQEhESEDPv2AAoD9AAOA/QICgP2AAkABAP7A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AwD9AAMA/QADAP0AAwD9AAMA/QADAP0AAoBAgED+AEBAQEBA/kBAAAAFAAAAAAPAA4AAAwAHAAsADwArAAATFyM1FTMnIxUhJyEdASEnBTcnMzUjJzM1IychNSEnITUhJyE1ISchNSEnB55AXt5AngFeQP7iAd5AAXUtUxNTQJPTQAET/q1AAZP+LUACE/2tQAKT/S1ALQJAQEDAQMBAgEBAwC1TQEBAQEBAQEBAQEBALQAAAAYAAAAAA8ADgAADAAcACwAPABMAGwAAARUhNQERIREFIREhAyEVIRU1IRUDITUhESE1IQPA/QACAP2AAkD+AAIAQP6AAYD+gEACQP2AAoD9wAMAQED+wP5AAcBA/sABAECAQEACwED+wEAAAAUAAAAAA8ADQAADAAcACwAPABMAAAEhNSEXIRUhFyEVIQUhFSEXIRUhAoD9wAJAwP0AAwCA/IADgP7A/cACQMD9AAMAAwBAgECAgIBAQEAABQAAAAADwAPAAAMABwALAA8AEwAAMxEhEQERIREFITUhFSE1IRUhNSFAA4D8wAMA/UABgP6AAoD9gAGA/oADwPxAA4D8wANAgEDAQMBAAAAFAAAAAAPAA8AAAwAHAAsADwATAAAzESERAREhEQchFSEXIRUhByEVIUADgPzAAwDA/oABgID9gAKAgP6AAYADwPxAA4D8wANAQEBAQEBAAAUAAAAAA8ADwAADAAcACwAPABMAADMRIREBESERByEVIRUhFSEVIRUhQAOA/MADAED+gAGA/YACgP6AAYADwPxAA4D8wANAQEBAQEBAAAAABQAAAAADwAPAAAMABwALAA8AEwAAMxEhEQERIREBITUhFSE1IRUhNSFAA4D8wAMA/UABgP6AAoD9gAGA/oADwPxAA4D8wANA/sBAwEDAQAAFAAAAAAPAA8AAAwAHAAsADwATAAAzESERAREhEQMhFSEXIRUhByEVIUADgPzAAwDA/oABgID9gAKAgP6AAYADwPxAA4D8wANA/wBAQEBAQAAAAAAFAAAAAAPAA8AAAwAHAAsADwATAAAzESERAREhEQMhFSEVIRUhFSEVIUADgPzAAwBA/oABgP2AAoD+gAGAA8D8QAOA/MADQP8AQEBAQEAAAAUAAAAAA8ADwAADAAcACwAPABMAADMRIREBESERASE1IRUhNSEVITUhQAOA/MAD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AUsBTAFNAU4BTwFQAVEBUgFTAVQBVQFWAVcBWAFZAVoBWwFcAV0BXgFfAWABYQFiAWMBZAFlAWYBZwFoAWkBagFrAWwBbQFuAW8BcAFxAXIBcwF0AXUBdgF3AXgBeQF6AXsBfAF9AX4BfwGAAYEBggGDAYQBhQGGAYcBiAGJAYoBiwGMAY0BjgGPAZABkQGSAZMBlAGVAZYBlwGYAZkBmgGbAZwBnQGeAZ8BoAGhAaIBowGkAaUBpgGnAagBqQGqAasBrAGtAa4BrwGwAbEBsgGzAbQBtQG2AbcBuAG5AboBuwG8Ab0BvgG/AcABwQHCAcMBxAHFAcYBxwHIAckBygHLAcwBzQHOAc8B0AHRAdIB0wHUAdUB1gHXAdgB2QHaAdsB3AHdAd4B3wHgAeEB4gHjAeQB5QHmAecB6AHpAeoB6wHsAe0B7gHvAfAB8QHyAfMB9AH1AfYB9wH4AfkB+gH7AfwB/QH+Af8CAAIBAgICAwIEAgUCBgIHAggCCQIKAgsCDAINAg4CDwIQAhECEgITAhQCFQIWAhcCGAIZAhoCGwIcAh0CHgIfAiACIQIiAiMCJAIlAiYCJwIoAikCKgIrAiwCLQIuAi8CMAIxAjICMwI0AjUCNgI3AjgCOQI6AjsCPAI9Aj4CPwJAAkECQgJDAkQCRQJGAkcCSAJJAkoCSwJMAk0CTgJPAlACUQJSAlMCVAJVAlYCVwJYAlkCWgJbAlwCXQJeAl8CYAJhAmICYwJkAmUCZgJnAmgCaQJqAmsCbAJtAm4CbwJwAnECcgJzAnQCdQJ2AncCeAJ5AnoCewJ8An0CfgJ/AoACgQKCAoMChAKFAoYChwKIAokCigKLAowCjQKOAo8CkAKRApICkwKUApUClgKXApgCmQKaApsCnAKdAp4CnwKgAqECogKjAqQCpQKmAqcCqAKpAqoCqwKsAq0CrgKvArACsQKyArMCtAK1ArYCtwK4ArkCugK7ArwCvQK+Ar8CwALBAsICwwLEAsUCxgLHAsgCyQLKAssCzALNAs4CzwLQAtEC0gLTAtQC1QLWAtcC2ALZAtoC2wLcAt0C3gLfAuAC4QLiAuMC5ALlAuYC5wLoAukC6gLrAuwC7QLuAu8C8ALxAvIC8wL0AvUC9gL3AvgC+QL6AvsC/AL9Av4C/wMAAwEDAgMDAwQDBQMGAwcDCAMJAwoDCwMMAw0DDgMPAxADEQMSAxMDFAMVAxYDFwMYAxkDGgMbAxwDHQMeAx8DIAMhAyIDIwMkAyUDJgMnAygDKQMqAysDLAMtAy4DLwMwAzEDMgMzAzQDNQM2AzcDOAM5AzoDOwM8Az0DPgM/A0ADQQNCA0MDRANFA0YDRwNIA0kDSgNLA0wDTQNOA08DUANRA1IDUwNUA1UDVgNXA1gDWQNaA1sDXANdA14DXwNgA2EDYgNjA2QDZQNmA2cDaANpA2oDawNsA20DbgNvA3ADcQNyA3MDdAN1A3YDdwN4A3kDegN7A3wDfQN+A38DgAOBA4IDgwOEA4UDhgOHA4gDiQOKA4sAAAhjYXJldC10cghjYXJldC1icghjYXJldC1ibAhjYXJldC10bAxjYXJldC1hbHQtdXAPY2FyZXQtYWx0LXJpZ2h0DmNhcmV0LWFsdC1kb3duDmNhcmV0LWFsdC1sZWZ0EGNhcmV0LWFsdC10by10b3ASY2FyZXQtYWx0LXRvLXJpZ2h0E2NhcmV0LWFsdC10by1ib3R0b20RY2FyZXQtYWx0LXRvLWxlZnQTY2FyZXQtZG91YmxlLWFsdC11cBZjYXJldC1kb3VibGUtYWx0LXJpZ2h0FWNhcmV0LWRvdWJsZS1hbHQtZG93bhVjYXJldC1kb3VibGUtYWx0LWxlZnQQY2FyZXQtYWx0LWV4cGFuZBBhcnJvd3Mtbm8tY2hhbmdlE2Fycm93LW92ZXJmbG93LWRvd24KY2hldnJvbi11cA1jaGV2cm9uLXJpZ2h0DGNoZXZyb24tZG93bgxjaGV2cm9uLWxlZnQIYXJyb3ctdXALYXJyb3ctcmlnaHQKYXJyb3ctZG93bgphcnJvdy1sZWZ0CmxldmVsLWRvd24IbGV2ZWwtdXAMbGV2ZWwtdG8tdG9wCmNvbC1yZXNpemULYXJyb3dzLWF4ZXMLYXJyb3dzLXN3YXANZHJhZy1hbmQtZHJvcApjYXRlZ29yaXplBGdyaWQLZ3JpZC1sYXlvdXQFZ3JvdXAHdW5ncm91cAtoYW5kbGUtZHJhZwZsYXlvdXQNbGF5b3V0LTEtYnktNA1sYXlvdXQtMi1ieS0yE2xheW91dC1zaWRlLWJ5LXNpZGUObGF5b3V0LXN0YWNrZWQHY29sdW1ucwRyb3dzB3Jlb3JkZXIEbWVudQ1tb3JlLXZlcnRpY2FsD21vcmUtaG9yaXpvbnRhbAdvdmVybGFwBGhvbWURYXJyb3dzLWxlZnQtcmlnaHQRYXJyb3dzLXRvcC1ib3R0b20ZYm9yZGVyLXJhZGl1cy1ib3R0b20tbGVmdBpib3JkZXItcmFkaXVzLWJvdHRvbS1yaWdodBZib3JkZXItcmFkaXVzLXRvcC1sZWZ0F2JvcmRlci1yYWRpdXMtdG9wLXJpZ2h0DWJvcmRlci1yYWRpdXMTYm9yZGVyLXN0eWxlLWJvdHRvbRFib3JkZXItc3R5bGUtbGVmdBJib3JkZXItc3R5bGUtcmlnaHQQYm9yZGVyLXN0eWxlLXRvcAxib3JkZXItc3R5bGUKYm94LXNpemluZxNjaGV2cm9uLWRvdWJsZS1kb3duE2NoZXZyb24tZG91YmxlLWxlZnQUY2hldnJvbi1kb3VibGUtcmlnaHQRY2hldnJvbi1kb3VibGUtdXAIZGF0YS1vZHMUZGlzcGxheS1JbmxpbmUtYmxvY2sNZGlzcGxheS1ibG9jawxkaXNwbGF5LWZsZXgTZGlzcGxheS1pbmxpbmUtZmxleA5kcm9wbGV0LXNsaWRlcgtmaWxlLXJlcG9ydApnYXAtY29sdW1uB2dhcC1yb3cRaGFuZGxlLXJlc2l6ZS1hbHQNaGFuZGxlLXJlc2l6ZQZpbWFnZXMMbGV0dGVyLXNwYWNlC2xpbmUtaGVpZ2h0Dmxpc3QtbGF0aW4tYmlnEGxpc3QtbGF0aW4tc21hbGwObGlzdC1yb21hbi1iaWcQbGlzdC1yb21hbi1zbWFsbBZsaXN0LXVub3JkZXJlZC1vdXRsaW5lFWxpc3QtdW5vcmRlcmVkLXNxdWFyZQptYXgtaGVpZ2h0CW1heC13aWR0aAptaW4taGVpZ2h0CW1pbi13aWR0aA5vdXRsaW5lLW9mZnNldA1vdXRsaW5lLXdpZHRoDnBhZGRpbmctYm90dG9tDHBhZGRpbmctbGVmdA1wYWRkaW5nLXJpZ2h0C3BhZGRpbmctdG9wB3BhZGRpbmcPcG9zaXRpb24tYm90dG9tDXBvc2l0aW9uLWxlZnQOcG9zaXRpb24tcmlnaHQMcG9zaXRpb24tdG9wEnJlZ3VsYXItZXhwcmVzc2lvbgtyZXBsYWNlLWFsbA5yZXBsYWNlLXNpbmdsZQ5yZXBvcnQtZWxlbWVudBNyaWdodC1kb3VibGUtcXVvdGVzCndob2xlLXdvcmQIZGF0YS1zZHMOZG93bmxvYWQtbGlnaHQJZXllLXNsYXNoBHVuZG8EcmVkbxBhcnJvdy1yb3RhdGUtY2N3D2Fycm93LXJvdGF0ZS1jdxBhcnJvd3Mtbm8tcmVwZWF0FmFycm93LXJvdGF0ZS1jY3ctc21hbGwVYXJyb3ctcm90YXRlLWN3LXNtYWxsBWNsb2NrCGNhbGVuZGFyBHNhdmUFcHJpbnQGcGVuY2lsBXRyYXNoCXBhcGVyY2xpcA1wYXBlcmNsaXAtYWx0BGxpbmsGdW5saW5rDWxpbmstdmVydGljYWwPdW5saW5rLXZlcnRpY2FsBGxvY2sGdW5sb2NrBmNhbmNlbA5jYW5jZWwtb3V0bGluZQ1jYW5jZWwtY2lyY2xlBWNoZWNrDWNoZWNrLW91dGxpbmUMY2hlY2stY2lyY2xlAXgJeC1vdXRsaW5lCHgtY2lyY2xlBHBsdXMMcGx1cy1vdXRsaW5lC3BsdXMtY2lyY2xlBW1pbnVzDW1pbnVzLW91dGxpbmUMbWludXMtY2lyY2xlCHNvcnQtYXNjCXNvcnQtZGVzYwpzb3J0LWNsZWFyDnNvcnQtYXNjLXNtYWxsD3NvcnQtZGVzYy1zbWFsbAZmaWx0ZXIMZmlsdGVyLWNsZWFyDGZpbHRlci1zbWFsbBVmaWx0ZXItc29ydC1hc2Mtc21hbGwWZmlsdGVyLXNvcnQtZGVzYy1zbWFsbBVmaWx0ZXItYWRkLWV4cHJlc3Npb24QZmlsdGVyLWFkZC1ncm91cAVsb2dpbgZsb2dvdXQIZG93bmxvYWQGdXBsb2FkDmh5cGVybGluay1vcGVuEWh5cGVybGluay1vcGVuLXNtBmxhdW5jaAZ3aW5kb3cOd2luZG93LXJlc3RvcmUPd2luZG93LW1pbmltaXplBGdlYXIFZ2VhcnMGd3JlbmNoA2V5ZQZzZWFyY2gHem9vbS1pbgh6b29tLW91dAthcnJvd3MtbW92ZQpjYWxjdWxhdG9yBGNhcnQJY29ubmVjdG9yB3BsdXMtc20IbWludXMtc20Pa3BpLXN0YXR1cy1kZW55D2twaS1zdGF0dXMtaG9sZA9rcGktc3RhdHVzLW9wZW4FZXF1YWwJbm90LWVxdWFsDWxlc3Mtb3ItZXF1YWwQZ3JlYXRlci1vci1lcXVhbAZkaXZpZGUNYWNjZXNzaWJpbGl0eQ9iYXJjb2RlLW91dGxpbmUHYmFyY29kZQ9iYXJjb2RlLXNjYW5uZXIPcXItY29kZS1vdXRsaW5lB3FyLWNvZGUPcXItY29kZS1zY2FubmVyF2JhcmNvZGUtcXItY29kZS1zY2FubmVyCXNpZ25hdHVyZQRoYW5kB3BvaW50ZXIFc3RpY2sHdW5zdGljaxNzZXQtY29sdW1uLXBvc2l0aW9uEmNsb2NrLWFycm93LXJvdGF0ZQRwbGF5BXBhdXNlBHN0b3AGcmV3aW5kB2ZvcndhcmQLdm9sdW1lLWRvd24Jdm9sdW1lLXVwC3ZvbHVtZS1tdXRlAmhkD2Nsb3NlZC1jYXB0aW9ucwhwbGF5bGlzdAttdXNpYy1ub3RlcwdwbGF5LXNtCHBhdXNlLXNtB3N0b3Atc20NaGVhcnQtb3V0bGluZQVoZWFydAxzdGFyLW91dGxpbmUEc3RhcghjaGVja2JveBBjaGVja2JveC1jaGVja2VkFmNoZWNrYm94LWluZGV0ZXJtaW5hdGUNY2hlY2tib3gtbnVsbAZjaXJjbGULcmFkaW9idXR0b24TcmFkaW9idXR0b24tY2hlY2tlZARiZWxsC2luZm8tY2lyY2xlD3F1ZXN0aW9uLWNpcmNsZRJleGNsYW1hdGlvbi1jaXJjbGUGY2FtZXJhBWltYWdlDGltYWdlLWV4cG9ydBB6b29tLWFjdHVhbC1zaXplDXpvb20tYmVzdC1maXQMaW1hZ2UtcmVzaXplBGNyb3AGbWlycm9yD2ZsaXAtaG9yaXpvbnRhbA1mbGlwLXZlcnRpY2FsBnJvdGF0ZQxyb3RhdGUtcmlnaHQLcm90YXRlLWxlZnQFYnJ1c2gHcGFsZXR0ZQdkcm9wbGV0CnNoYXBlLWxpbmUTYnJpZ2h0bmVzcy1jb250cmFzdAdzbGlkZXJzDWludmVydC1jb2xvcnMMdHJhbnNwYXJlbmN5CWdyYXlzY2FsZQRibHVyB3NoYXJwZW4Gc2hhcGVzDXJvdW5kLWNvcm5lcnMOYnJpbmctdG8tZnJvbnQNYnJpbmctdG8tYmFjaw1icmluZy1mb3J3YXJkDmJyaW5nLWJhY2t3YXJkEGFsaWduLXNlbGYtc3RhcnQRYWxpZ24tc2VsZi1jZW50ZXIOYWxpZ24tc2VsZi1lbmQUYWxpZ24tc2VsZi1zdGFydC1hbHQVYWxpZ24tc2VsZi1jZW50ZXItYWx0EmFsaWduLXNlbGYtZW5kLWFsdA10aHVtYm5haWxzLXVwEHRodW1ibmFpbHMtcmlnaHQPdGh1bWJuYWlscy1kb3duD3RodW1ibmFpbHMtbGVmdApmdWxsc2NyZWVuD2Z1bGxzY3JlZW4tZXhpdA1kcm9wbGV0LXNsYXNoBnBob3Rvcw1hbGlnbi10by1ncmlkDHNpemUtdG8tZ3JpZA5tYWtlLXNhbWUtc2l6ZQ9tYWtlLXNhbWUtd2lkdGgQbWFrZS1zYW1lLWhlaWdodB1tYWtlLWhvcml6b250YWwtc3BhY2luZy1lcXVhbBtpbmNyZWFzZS1ob3Jpem9udGFsLXNwYWNpbmcbZGVjcmVhc2UtaG9yaXpvbnRhbC1zcGFjaW5nGXJlbW92ZS1ob3Jpem9udGFsLXNwYWNpbmcbbWFrZS12ZXJ0aWNhbC1zcGFjaW5nLWVxdWFsGWluY3JlYXNlLXZlcnRpY2FsLXNwYWNpbmcZZGVjcmVhc2UtdmVydGljYWwtc3BhY2luZxdyZW1vdmUtdmVydGljYWwtc3BhY2luZwpleWVkcm9wcGVyCXNuYXAtZ3JpZBFzbmFwLXRvLWdyaWRsaW5lcxFzbmFwLXRvLXNuYXBsaW5lcwpkaW1lbnNpb25zEmFsaWduLXNlbGYtc3RyZXRjaBZhbGlnbi1zZWxmLXN0cmV0Y2gtYWx0EWFsaWduLWl0ZW1zLXN0YXJ0EmFsaWduLWl0ZW1zLWNlbnRlcg9hbGlnbi1pdGVtcy1lbmQTYWxpZ24taXRlbXMtc3RyZXRjaBRhbGlnbi1pdGVtcy1iYXNlbGluZRVhbGlnbi1pdGVtcy1zdGFydC1hbHQWYWxpZ24taXRlbXMtY2VudGVyLWFsdBNhbGlnbi1pdGVtcy1lbmQtYWx0F2FsaWduLWl0ZW1zLXN0cmV0Y2gtYWx0GGFsaWduLWl0ZW1zLWJhc2VsaW5lLWFsdBVqdXN0aWZ5LWNvbnRlbnQtc3RhcnQWanVzdGlmeS1jb250ZW50LWNlbnRlchNqdXN0aWZ5LWNvbnRlbnQtZW5kF2p1c3RpZnktY29udGVudC1iZXR3ZWVuFmp1c3RpZnktY29udGVudC1hcm91bmQZanVzdGlmeS1jb250ZW50LXN0YXJ0LWFsdBpqdXN0aWZ5LWNvbnRlbnQtY2VudGVyLWFsdBdqdXN0aWZ5LWNvbnRlbnQtZW5kLWFsdBtqdXN0aWZ5LWNvbnRlbnQtYmV0d2Vlbi1hbHQaanVzdGlmeS1jb250ZW50LWFyb3VuZC1hbHQLZmlsZS13cmVuY2gEYm9sZAZpdGFsaWMJdW5kZXJsaW5lC2ZvbnQtZmFtaWx5EGZvcmVncm91bmQtY29sb3IRY29udmVydC1sb3dlcmNhc2URY29udmVydC11cHBlcmNhc2UNc3RyaWtldGhyb3VnaAlzdWJzY3JpcHQJc3Vwc2NyaXB0A2RpdgNhbGwCaDECaDICaDMCaDQCaDUCaDYMbGlzdC1vcmRlcmVkDmxpc3QtdW5vcmRlcmVkBmluZGVudAdvdXRkZW50Cmluc2VydC10b3ANaW5zZXJ0LW1pZGRsZQ1pbnNlcnQtYm90dG9tCWFsaWduLXRvcAxhbGlnbi1taWRkbGUMYWxpZ24tYm90dG9tCmFsaWduLWxlZnQMYWxpZ24tY2VudGVyC2FsaWduLXJpZ2h0DWFsaWduLWp1c3RpZnkMYWxpZ24tcmVtb3ZlCXRleHQtd3JhcA9ob3Jpem9udGFsLXJ1bGUUdGFibGUtYWxpZ24tdG9wLWxlZnQWdGFibGUtYWxpZ24tdG9wLWNlbnRlchV0YWJsZS1hbGlnbi10b3AtcmlnaHQXdGFibGUtYWxpZ24tbWlkZGxlLWxlZnQZdGFibGUtYWxpZ24tbWlkZGxlLWNlbnRlchh0YWJsZS1hbGlnbi1taWRkbGUtcmlnaHQXdGFibGUtYWxpZ24tYm90dG9tLWxlZnQZdGFibGUtYWxpZ24tYm90dG9tLWNlbnRlchh0YWJsZS1hbGlnbi1ib3R0b20tcmlnaHQSdGFibGUtYWxpZ24tcmVtb3ZlC2JvcmRlcnMtYWxsD2JvcmRlcnMtb3V0c2lkZQ5ib3JkZXJzLWluc2lkZRlib3JkZXJzLWluc2lkZS1ob3Jpem9udGFsF2JvcmRlcnMtaW5zaWRlLXZlcnRpY2FsCmJvcmRlci10b3ANYm9yZGVyLWJvdHRvbQtib3JkZXItbGVmdAxib3JkZXItcmlnaHQMYm9yZGVycy1ub25lEWJvcmRlcnMtc2hvdy1oaWRlBGZvcm0MZm9ybS1lbGVtZW50DGNvZGUtc25pcHBldApzZWxlY3QtYWxsBmJ1dHRvbgpzZWxlY3QtYm94DWNhbGVuZGFyLWRhdGUJZ3JvdXAtYm94CHRleHRhcmVhB3RleHRib3gOdGV4dGJveC1oaWRkZW4IcGFzc3dvcmQNcGFyYWdyYXBoLWFkZAplZGl0LXRvb2xzEHRlbXBsYXRlLW1hbmFnZXIPY2hhbmdlLW1hbnVhbGx5DXRyYWNrLWNoYW5nZXMUdHJhY2stY2hhbmdlcy1lbmFibGUUdHJhY2stY2hhbmdlcy1hY2NlcHQYdHJhY2stY2hhbmdlcy1hY2NlcHQtYWxsFHRyYWNrLWNoYW5nZXMtcmVqZWN0GHRyYWNrLWNoYW5nZXMtcmVqZWN0LWFsbBBkb2N1bWVudC1tYW5hZ2VyC2N1c3RvbS1pY29uBGJvb2sJaW1hZ2UtYWRkCmltYWdlLWVkaXQQaW1hZ2UtbWFwLWVkaXRvcgdjb21tZW50DmNvbW1lbnQtcmVtb3ZlD2NvbW1lbnRzLXJlbW92ZQtzaWx2ZXJsaWdodA1tZWRpYS1tYW5hZ2VyDnZpZGVvLWV4dGVybmFsDWZsYXNoLW1hbmFnZXIKYmlub2N1bGFycwRjb3B5A2N1dAljbGlwYm9hcmQOY2xpcGJvYXJkLWNvZGUOY2xpcGJvYXJkLXdvcmQSY2xpcGJvYXJkLXdvcmQtYWx0DmNsaXBib2FyZC1odG1sEmNsaXBib2FyZC1tYXJrZG93bg5jbGlwYm9hcmQtdGV4dAxhcHBseS1mb3JtYXQJY2xlYXItY3NzC2NvcHktZm9ybWF0FHN0cmlwLWFsbC1mb3JtYXR0aW5nEHN0cmlwLWNzcy1mb3JtYXQTc3RyaXAtZm9udC1lbGVtZW50cxNzdHJpcC1zcGFuLWVsZW1lbnRzFXN0cmlwLXdvcmQtZm9ybWF0dGluZxFmb3JtYXQtY29kZS1ibG9jaw9idWlsZGluZy1ibG9ja3MMcHV6emxlLXBpZWNlCGxpbmstYWRkCmdsb2JlLWxpbmsMZ2xvYmUtdW5saW5rDGVudmVsb3AtbGluawZhbmNob3IJdGFibGUtYWRkBXRhYmxlEHRhYmxlLXByb3BlcnRpZXMKdGFibGUtY2VsbBV0YWJsZS1jZWxsLXByb3BlcnRpZXMYdGFibGUtY29sdW1uLWluc2VydC1sZWZ0GXRhYmxlLWNvbHVtbi1pbnNlcnQtcmlnaHQWdGFibGUtcm93LWluc2VydC1hYm92ZRZ0YWJsZS1yb3ctaW5zZXJ0LWJlbG93E3RhYmxlLWNvbHVtbi1kZWxldGUQdGFibGUtcm93LWRlbGV0ZRF0YWJsZS1jZWxsLWRlbGV0ZQx0YWJsZS1kZWxldGULY2VsbHMtbWVyZ2UYY2VsbHMtbWVyZ2UtaG9yaXpvbnRhbGx5FmNlbGxzLW1lcmdlLXZlcnRpY2FsbHkXY2VsbC1zcGxpdC1ob3Jpem9udGFsbHkVY2VsbC1zcGxpdC12ZXJ0aWNhbGx5DXRhYmxlLXVubWVyZ2ULcGFuZS1mcmVlemUKcm93LWZyZWV6ZQ1jb2x1bW4tZnJlZXplDXRvb2xiYXItZmxvYXQNc3BlbGwtY2hlY2tlchB2YWxpZGF0aW9uLXhodG1sD3ZhbGlkYXRpb24tZGF0YRd0b2dnbGUtZnVsbC1zY3JlZW4tbW9kZQpmb3JtdWxhLWZ4A3N1bQZzeW1ib2wGZG9sbGFyB3BlcmNlbnQNY3VzdG9tLWZvcm1hdBBkZWNpbWFsLWluY3JlYXNlEGRlY2ltYWwtZGVjcmVhc2UJZm9udC1zaXplF2ltYWdlLWFic29sdXRlLXBvc2l0aW9uDHRhYmxlLXdpemFyZAhjcm9zc3RhYg9jcm9zc3RhYi13aXphcmQKdGFibGUtYm9keRN0YWJsZS1jb2x1bW4tZ3JvdXBzDHRhYmxlLWNvcm5lchB0YWJsZS1yb3ctZ3JvdXBzDWdsb2JlLW91dGxpbmUFZ2xvYmUKbWFwLW1hcmtlchFtYXAtbWFya2VyLXRhcmdldANwaW4FdW5waW4Fc2hhcmUEdXNlcgVpbmJveAdibG9nZ2VyC2Jsb2dnZXItYm94CWRlbGljaW91cw1kZWxpY2lvdXMtYm94BGRpZ2cIZGlnZy1ib3gHZW52ZWxvcAtlbnZlbG9wLWJveAhmYWNlYm9vawxmYWNlYm9vay1ib3gGZ29vZ2xlCmdvb2dsZS1ib3gLZ29vZ2xlLXBsdXMPZ29vZ2xlLXBsdXMtYm94CGxpbmtlZGluDGxpbmtlZGluLWJveAdteXNwYWNlC215c3BhY2UtYm94CXBpbnRlcmVzdA1waW50ZXJlc3QtYm94BnJlZGRpdApyZWRkaXQtYm94DHN0dW1ibGUtdXBvbhBzdHVtYmxlLXVwb24tYm94DXRlbGwtYS1mcmllbmQRdGVsbC1hLWZyaWVuZC1ib3gGdHVtYmxyCnR1bWJsci1ib3gHdHdpdHRlcgt0d2l0dGVyLWJveAZ5YW1tZXIKeWFtbWVyLWJveAdiZWhhbmNlC2JlaGFuY2UtYm94CGRyaWJiYmxlDGRyaWJiYmxlLWJveANyc3MHcnNzLWJveAV2aW1lbwl2aW1lby1ib3gHeW91dHViZQt5b3V0dWJlLWJveAZmb2xkZXILZm9sZGVyLW9wZW4KZm9sZGVyLWFkZAlmb2xkZXItdXALZm9sZGVyLW1vcmUQYWdncmVnYXRlLWZpZWxkcwRmaWxlCGZpbGUtYWRkCGZpbGUtdHh0CGZpbGUtY3N2CmZpbGUtZXhjZWwJZmlsZS13b3JkCGZpbGUtbWRiCGZpbGUtcHB0CGZpbGUtcGRmCGZpbGUtcHNkCmZpbGUtZmxhc2gLZmlsZS1jb25maWcJZmlsZS1hc2N4CGZpbGUtYmFjCGZpbGUtemlwBGZpbG0EY3NzMwVodG1sNQRjb2RlA2NzcwJqcwNleGUGY3Nwcm9qBnZicHJvagJjcwJ2YgNzbG4FY2xvdWQPZmlsZS1ob3Jpem9udGFsCXN1YnJlcG9ydARkYXRhC2ZpbGUtaGVhZGVyC2ZpbGUtZm9vdGVyFGdyb3VwLWhlYWRlci1zZWN0aW9uFGdyb3VwLWZvb3Rlci1zZWN0aW9uE3BhZ2UtaGVhZGVyLXNlY3Rpb24TcGFnZS1mb290ZXItc2VjdGlvbg5kZXRhaWwtc2VjdGlvbgt0b2Mtc2VjdGlvbg1ncm91cC1zZWN0aW9uCnBhcmFtZXRlcnMIZGF0YS1jc3YJZGF0YS1qc29uCGRhdGEtc3FsCGRhdGEtd2ViEGdyb3VwLWNvbGxlY3Rpb24RcGFyYW1ldGVyLWJvb2xlYW4TcGFyYW1ldGVyLWRhdGUtdGltZQ9wYXJhbWV0ZXItZmxvYXQRcGFyYW1ldGVyLWludGVnZXIQcGFyYW1ldGVyLXN0cmluZxF0b2Mtc2VjdGlvbi1sZXZlbAlpbmhlcml0ZWQKZmlsZS12aWRlbwpmaWxlLWF1ZGlvCmZpbGUtaW1hZ2URZmlsZS1wcmVzZW50YXRpb24JZmlsZS1kYXRhD2ZpbGUtZGlzYy1pbWFnZRBmaWxlLXByb2dyYW1taW5nFXBhcmFtZXRlcnMtYnl0ZS1hcnJheRJwYXJhbWV0ZXJzLXVua25vd24KZmlsZS1lcnJvcgtmaWxlcy1lcnJvcglkYXRhLXJlc3QPZmlsZS10eXBlc2NyaXB0FHRhYmxlLXBvc2l0aW9uLXN0YXJ0FXRhYmxlLXBvc2l0aW9uLWNlbnRlchJ0YWJsZS1wb3NpdGlvbi1lbmQQbGlzdC1yb21hbi11cHBlchBsaXN0LXJvbWFuLWxvd2VyBmltcG9ydAZleHBvcnQFZ3JhcGgWY2hhcnQtY29sdW1uLWNsdXN0ZXJlZBRjaGFydC1jb2x1bW4tc3RhY2tlZBdjaGFydC1jb2x1bW4tc3RhY2tlZDEwMBJjaGFydC1jb2x1bW4tcmFuZ2UTY2hhcnQtYmFyLWNsdXN0ZXJlZBFjaGFydC1iYXItc3RhY2tlZBRjaGFydC1iYXItc3RhY2tlZDEwMA9jaGFydC1iYXItcmFuZ2UUY2hhcnQtYXJlYS1jbHVzdGVyZWQSY2hhcnQtYXJlYS1zdGFja2VkFWNoYXJ0LWFyZWEtc3RhY2tlZDEwMBBjaGFydC1hcmVhLXJhbmdlCmNoYXJ0LWxpbmUSY2hhcnQtbGluZS1zdGFja2VkFWNoYXJ0LWxpbmUtc3RhY2tlZDEwMBJjaGFydC1saW5lLW1hcmtlcnMaY2hhcnQtbGluZS1zdGFja2VkLW1hcmtlcnMdY2hhcnQtbGluZS1zdGFja2VkMTAwLW1hcmtlcnMJY2hhcnQtcGllDmNoYXJ0LWRvdWdobnV0DWNoYXJ0LXNjYXR0ZXIiY2hhcnQtc2NhdHRlci1zbW9vdGgtbGluZXMtbWFya2VycxpjaGFydC1zY2F0dGVyLXNtb290aC1saW5lcyRjaGFydC1zY2F0dGVyLXN0cmFpZ2h0LWxpbmVzLW1hcmtlcnMcY2hhcnQtc2NhdHRlci1zdHJhaWdodC1saW5lcwxjaGFydC1idWJibGURY2hhcnQtY2FuZGxlc3RpY2sKY2hhcnQtb2hsYwtjaGFydC1yYWRhchNjaGFydC1yYWRhci1tYXJrZXJzEmNoYXJ0LXJhZGFyLWZpbGxlZApjaGFydC1yb3NlEGNoYXJ0LWNob3JvcGxldGgAAAAAAA==) format("truetype");
}

.k-icon {
    width: 1em;
    height: 1em;
    outline: 0;
    font-size: 16px;
    font-family: "WebComponentsIcons";
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    speak: none;
    text-transform: none;
    text-decoration: none;
    flex-shrink: 0;
    display: inline-flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    position: relative;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

.k-icon:hover, .k-icon:focus {
    text-decoration: none;
}

.k-svg-icon {
    width: 16px;
    height: 16px;
    outline: 0;
    line-height: 1;
    display: inline-flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    position: relative;
}

.k-svg-icon > svg {
    fill: currentColor;
    flex: 1 1 auto;
}

.k-i-none::before {
    display: none !important;
}

.k-icon-xs {
    font-size: calc( 16px * .75);
}

.k-icon-xs.k-svg-icon {
    width: calc( 16px * .75);
    height: calc( 16px * .75);
}

.k-icon-sm {
    font-size: calc( 16px * .875);
}

.k-icon-sm.k-svg-icon {
    width: calc( 16px * .875);
    height: calc( 16px * .875);
}

.k-icon-md {
    font-size: 16px;
}

.k-icon-md.k-svg-icon {
    width: 16px;
    height: 16px;
}

.k-icon-lg {
    font-size: calc( 16px * 1.25);
}

.k-icon-lg.k-svg-icon {
    width: calc( 16px * 1.25);
    height: calc( 16px * 1.25);
}

.k-icon-xl {
    font-size: calc( 16px * 1.5);
}

.k-icon-xl.k-svg-icon {
    width: calc( 16px * 1.5);
    height: calc( 16px * 1.5);
}

.k-icon-xxl {
    font-size: calc( 16px * 2);
}

.k-icon-xxl.k-svg-icon {
    width: calc( 16px * 2);
    height: calc( 16px * 2);
}

.k-icon-xxxl {
    font-size: calc( 16px * 3);
}

.k-icon-xxxl.k-svg-icon {
    width: calc( 16px * 3);
    height: calc( 16px * 3);
}

.k-flip-h.k-svg-icon, .k-svg-icon.k-flip-x,
.k-flip-v.k-svg-icon,
.k-svg-icon.k-flip-y,
.k-flip-h.k-flip-v.k-svg-icon,
.k-flip-v.k-svg-icon.k-flip-x,
.k-svg-icon.k-flip-x.k-flip-y,
.k-flip-h.k-svg-icon.k-flip-y {
    transform: none;
}

.k-flip-h, .k-flip-x {
    transform: scaleX(-1);
}

.k-flip-h > svg, .k-flip-x > svg {
    transform: scaleX(-1);
}

.k-flip-v, .k-flip-y {
    transform: scaleY(-1);
}

.k-flip-v > svg, .k-flip-y > svg {
    transform: scaleY(-1);
}

.k-flip-h.k-flip-v, .k-flip-v.k-flip-x, .k-flip-x.k-flip-y, .k-flip-h.k-flip-y,
.k-flip-both {
    transform: scale(-1, -1);
}

.k-flip-h.k-flip-v > svg, .k-flip-v.k-flip-x > svg, .k-flip-x.k-flip-y > svg, .k-flip-h.k-flip-y > svg,
.k-flip-both > svg {
    transform: scale(-1, -1);
}

.k-rotate-0 {
    transform: rotate(0deg);
}

.k-rotate-0.k-svg-icon {
    transform: none;
}

.k-rotate-0 > svg {
    transform: rotate(0deg);
}

.k-rotate-45 {
    transform: rotate(45deg);
}

.k-rotate-45.k-svg-icon {
    transform: none;
}

.k-rotate-45 > svg {
    transform: rotate(45deg);
}

.k-rotate-90 {
    transform: rotate(90deg);
}

.k-rotate-90.k-svg-icon {
    transform: none;
}

.k-rotate-90 > svg {
    transform: rotate(90deg);
}

.k-rotate-135 {
    transform: rotate(135deg);
}

.k-rotate-135.k-svg-icon {
    transform: none;
}

.k-rotate-135 > svg {
    transform: rotate(135deg);
}

.k-rotate-180 {
    transform: rotate(180deg);
}

.k-rotate-180.k-svg-icon {
    transform: none;
}

.k-rotate-180 > svg {
    transform: rotate(180deg);
}

.k-rotate-225 {
    transform: rotate(225deg);
}

.k-rotate-225.k-svg-icon {
    transform: none;
}

.k-rotate-225 > svg {
    transform: rotate(225deg);
}

.k-rotate-270 {
    transform: rotate(270deg);
}

.k-rotate-270.k-svg-icon {
    transform: none;
}

.k-rotate-270 > svg {
    transform: rotate(270deg);
}

.k-rotate-315 {
    transform: rotate(315deg);
}

.k-rotate-315.k-svg-icon {
    transform: none;
}

.k-rotate-315 > svg {
    transform: rotate(315deg);
}

.k-i-caret-tr::before {
    content: "\e000";
}

.k-i-arrow-45-up-right::before {
    content: "\e000";
}

.k-i-collapse-ne::before {
    content: "\e000";
}

.k-i-resize-ne::before {
    content: "\e000";
}

.k-i-caret-br::before {
    content: "\e001";
}

.k-i-arrow-45-down-right::before {
    content: "\e001";
}

.k-i-collapse-se::before {
    content: "\e001";
}

.k-i-resize-se::before {
    content: "\e001";
}

.k-i-caret-bl::before {
    content: "\e002";
}

.k-i-arrow-45-down-left::before {
    content: "\e002";
}

.k-i-collapse-sw::before {
    content: "\e002";
}

.k-i-resize-sw::before {
    content: "\e002";
}

.k-i-caret-tl::before {
    content: "\e003";
}

.k-i-arrow-45-up-left::before {
    content: "\e003";
}

.k-i-collapse-nw::before {
    content: "\e003";
}

.k-i-resize-nw::before {
    content: "\e003";
}

.k-i-caret-alt-up::before {
    content: "\e004";
}

.k-i-arrow-60-up::before {
    content: "\e004";
}

.k-i-arrow-n::before {
    content: "\e004";
}

.k-i-kpi-trend-increase::before {
    content: "\e004";
}

.k-i-expand-n::before {
    content: "\e004";
}

.k-i-sarrow-n::before {
    content: "\e004";
}

.k-i-caret-alt-right::before {
    content: "\e005";
}

.k-i-arrow-60-right::before {
    content: "\e005";
}

.k-i-arrow-e::before {
    content: "\e005";
}

.k-i-expand::before {
    content: "\e005";
}

.k-i-expand-e::before {
    content: "\e005";
}

.k-i-sarrow-e::before {
    content: "\e005";
}

.k-i-caret-alt-down::before {
    content: "\e006";
}

.k-i-arrow-60-down::before {
    content: "\e006";
}

.k-i-arrow-s::before {
    content: "\e006";
}

.k-i-kpi-trend-decrease::before {
    content: "\e006";
}

.k-i-expand-s::before {
    content: "\e006";
}

.k-i-collapse::before {
    content: "\e006";
}

.k-i-sarrow-s::before {
    content: "\e006";
}

.k-i-caret-alt-left::before {
    content: "\e007";
}

.k-i-arrow-60-left::before {
    content: "\e007";
}

.k-i-arrow-w::before {
    content: "\e007";
}

.k-i-expand-w::before {
    content: "\e007";
}

.k-i-sarrow-w::before {
    content: "\e007";
}

.k-i-caret-alt-to-top::before {
    content: "\e008";
}

.k-i-arrow-end-up::before {
    content: "\e008";
}

.k-i-seek-n::before {
    content: "\e008";
}

.k-i-caret-alt-to-right::before {
    content: "\e009";
}

.k-i-arrow-end-right::before {
    content: "\e009";
}

.k-i-seek-e::before {
    content: "\e009";
}

.k-i-caret-alt-to-bottom::before {
    content: "\e00a";
}

.k-i-arrow-end-down::before {
    content: "\e00a";
}

.k-i-seek-s::before {
    content: "\e00a";
}

.k-i-caret-alt-to-left::before {
    content: "\e00b";
}

.k-i-arrow-end-left::before {
    content: "\e00b";
}

.k-i-seek-w::before {
    content: "\e00b";
}

.k-i-caret-double-alt-up::before {
    content: "\e00c";
}

.k-i-arrow-double-60-up::before {
    content: "\e00c";
}

.k-i-arrow-seek-up::before {
    content: "\e00c";
}

.k-i-caret-double-alt-right::before {
    content: "\e00d";
}

.k-i-arrow-double-60-right::before {
    content: "\e00d";
}

.k-i-arrow-seek-right::before {
    content: "\e00d";
}

.k-i-forward-sm::before {
    content: "\e00d";
}

.k-i-caret-double-alt-down::before {
    content: "\e00e";
}

.k-i-arrow-double-60-down::before {
    content: "\e00e";
}

.k-i-arrow-seek-down::before {
    content: "\e00e";
}

.k-i-caret-double-alt-left::before {
    content: "\e00f";
}

.k-i-arrow-double-60-left::before {
    content: "\e00f";
}

.k-i-arrow-seek-left::before {
    content: "\e00f";
}

.k-i-rewind-sm::before {
    content: "\e00f";
}

.k-i-caret-alt-expand::before {
    content: "\e010";
}

.k-i-arrows-kpi::before {
    content: "\e010";
}

.k-i-kpi::before {
    content: "\e010";
}

.k-i-caret-alt-sort::before {
    content: "\e010";
}

.k-i-arrows-no-change::before {
    content: "\e011";
}

.k-i-arrow-overflow-down::before {
    content: "\e012";
}

.k-i-chevron-up::before {
    content: "\e013";
}

.k-i-arrow-chevron-up::before {
    content: "\e013";
}

.k-i-arrowhead-n::before {
    content: "\e013";
}

.k-i-chevron-right::before {
    content: "\e014";
}

.k-i-arrow-chevron-right::before {
    content: "\e014";
}

.k-i-arrowhead-e::before {
    content: "\e014";
}

.k-i-chevron-down::before {
    content: "\e015";
}

.k-i-arrow-chevron-down::before {
    content: "\e015";
}

.k-i-arrowhead-s::before {
    content: "\e015";
}

.k-i-chevron-left::before {
    content: "\e016";
}

.k-i-arrow-chevron-left::before {
    content: "\e016";
}

.k-i-arrowhead-w::before {
    content: "\e016";
}

.k-i-arrow-up::before {
    content: "\e017";
}

.k-i-arrow-right::before {
    content: "\e018";
}

.k-i-arrow-down::before {
    content: "\e019";
}

.k-i-arrow-left::before {
    content: "\e01a";
}

.k-i-level-down::before {
    content: "\e01b";
}

.k-i-arrow-drill::before {
    content: "\e01b";
}

.k-i-level-up::before {
    content: "\e01c";
}

.k-i-arrow-parent::before {
    content: "\e01c";
}

.k-i-level-to-top::before {
    content: "\e01d";
}

.k-i-arrow-root::before {
    content: "\e01d";
}

.k-i-level-root::before {
    content: "\e01d";
}

.k-i-col-resize::before {
    content: "\e01e";
}

.k-i-arrows-resizing::before {
    content: "\e01e";
}

.k-i-arrows-axes::before {
    content: "\e01f";
}

.k-i-arrows-dimensions::before {
    content: "\e01f";
}

.k-i-dimension::before {
    content: "\e01f";
}

.k-i-arrows-swap::before {
    content: "\e020";
}

.k-i-drag-and-drop::before {
    content: "\e021";
}

.k-i-categorize::before {
    content: "\e022";
}

.k-i-grid::before {
    content: "\e023";
}

.k-i-grid-layout::before {
    content: "\e024";
}

.k-i-group::before {
    content: "\e025";
}

.k-i-ungroup::before {
    content: "\e026";
}

.k-i-handle-drag::before {
    content: "\e027";
}

.k-i-handler-drag::before {
    content: "\e027";
}

.k-i-layout::before {
    content: "\e028";
}

.k-i-layout-1-by-4::before {
    content: "\e029";
}

.k-i-layout-2-by-2::before {
    content: "\e02a";
}

.k-i-page-layout::before {
    content: "\e02a";
}

.k-i-layout-side-by-side::before {
    content: "\e02b";
}

.k-i-layout-stacked::before {
    content: "\e02c";
}

.k-i-columns::before {
    content: "\e02d";
}

.k-i-rows::before {
    content: "\e02e";
}

.k-i-reorder::before {
    content: "\e02f";
}

.k-i-menu::before {
    content: "\e030";
}

.k-i-hamburger::before {
    content: "\e030";
}

.k-i-more-vertical::before {
    content: "\e031";
}

.k-i-more-v::before {
    content: "\e031";
}

.k-i-vbars::before {
    content: "\e031";
}

.k-i-more-horizontal::before {
    content: "\e032";
}

.k-i-more-h::before {
    content: "\e032";
}

.k-i-hbars::before {
    content: "\e032";
}

.k-i-overlap::before {
    content: "\e033";
}

.k-i-home::before {
    content: "\e034";
}

.k-i-root::before {
    content: "\e034";
}

.k-i-arrows-left-right::before {
    content: "\e035";
}

.k-i-arrows-top-bottom::before {
    content: "\e036";
}

.k-i-border-radius-bottom-left::before {
    content: "\e037";
}

.k-i-border-radius-bottom-right::before {
    content: "\e038";
}

.k-i-border-radius-top-left::before {
    content: "\e039";
}

.k-i-border-radius-top-right::before {
    content: "\e03a";
}

.k-i-border-radius::before {
    content: "\e03b";
}

.k-i-border-style-bottom::before {
    content: "\e03c";
}

.k-i-border-style-left::before {
    content: "\e03d";
}

.k-i-border-style-right::before {
    content: "\e03e";
}

.k-i-border-style-top::before {
    content: "\e03f";
}

.k-i-border-style::before {
    content: "\e040";
}

.k-i-box-sizing::before {
    content: "\e041";
}

.k-i-chevron-double-down::before {
    content: "\e042";
}

.k-i-chevron-double-left::before {
    content: "\e043";
}

.k-i-chevron-double-right::before {
    content: "\e044";
}

.k-i-chevron-double-up::before {
    content: "\e045";
}

.k-i-data-ods::before {
    content: "\e046";
}

.k-i-display-Inline-block::before {
    content: "\e047";
}

.k-i-display-block::before {
    content: "\e048";
}

.k-i-display-flex::before {
    content: "\e049";
}

.k-i-display-inline-flex::before {
    content: "\e04a";
}

.k-i-droplet-slider::before {
    content: "\e04b";
}

.k-i-color-canvas::before {
    content: "\e04b";
}

.k-i-file-report::before {
    content: "\e04c";
}

.k-i-gap-column::before {
    content: "\e04d";
}

.k-i-gap-row::before {
    content: "\e04e";
}

.k-i-handle-resize-alt::before {
    content: "\e04f";
}

.k-i-handle-resize::before {
    content: "\e050";
}

.k-i-images::before {
    content: "\e051";
}

.k-i-letter-space::before {
    content: "\e052";
}

.k-i-line-height::before {
    content: "\e053";
}

.k-i-list-latin-big::before {
    content: "\e054";
}

.k-i-list-latin-small::before {
    content: "\e055";
}

.k-i-list-roman-big::before {
    content: "\e056";
}

.k-i-list-roman-small::before {
    content: "\e057";
}

.k-i-list-unordered-outline::before {
    content: "\e058";
}

.k-i-list-unordered-square::before {
    content: "\e059";
}

.k-i-max-height::before {
    content: "\e05a";
}

.k-i-max-width::before {
    content: "\e05b";
}

.k-i-min-height::before {
    content: "\e05c";
}

.k-i-min-width::before {
    content: "\e05d";
}

.k-i-outline-offset::before {
    content: "\e05e";
}

.k-i-outline-width::before {
    content: "\e05f";
}

.k-i-padding-bottom::before {
    content: "\e060";
}

.k-i-padding-left::before {
    content: "\e061";
}

.k-i-padding-right::before {
    content: "\e062";
}

.k-i-padding-top::before {
    content: "\e063";
}

.k-i-padding::before {
    content: "\e064";
}

.k-i-position-bottom::before {
    content: "\e065";
}

.k-i-position-left::before {
    content: "\e066";
}

.k-i-position-right::before {
    content: "\e067";
}

.k-i-position-top::before {
    content: "\e068";
}

.k-i-regular-expression::before {
    content: "\e069";
}

.k-i-replace-all::before {
    content: "\e06a";
}

.k-i-replace-single::before {
    content: "\e06b";
}

.k-i-report-element::before {
    content: "\e06c";
}

.k-i-right-double-quotes::before {
    content: "\e06d";
}

.k-i-blockquote::before {
    content: "\e06d";
}

.k-i-whole-word::before {
    content: "\e06e";
}

.k-i-data-sds::before {
    content: "\e06f";
}

.k-i-undo::before {
    content: "\e100";
}

.k-i-undo-large::before {
    content: "\e100";
}

.k-i-redo::before {
    content: "\e101";
}

.k-i-redo-large::before {
    content: "\e101";
}

.k-i-arrow-rotate-ccw::before {
    content: "\e102";
}

.k-i-reset::before {
    content: "\e102";
}

.k-i-arrow-rotate-cw::before {
    content: "\e103";
}

.k-i-reload::before {
    content: "\e103";
}

.k-i-refresh::before {
    content: "\e103";
}

.k-i-recurrence::before {
    content: "\e103";
}

.k-i-arrows-repeat::before {
    content: "\e103";
}

.k-i-arrows-no-repeat::before {
    content: "\e104";
}

.k-i-non-recurrence::before {
    content: "\e104";
}

.k-i-refresh-clear::before {
    content: "\e104";
}

.k-i-arrow-rotate-ccw-small::before {
    content: "\e105";
}

.k-i-reset-sm::before {
    content: "\e105";
}

.k-i-arrow-rotate-cw-small::before {
    content: "\e106";
}

.k-i-reload-sm::before {
    content: "\e106";
}

.k-i-refresh-sm::before {
    content: "\e106";
}

.k-i-recurrence-sm::before {
    content: "\e106";
}

.k-i-arrows-repeat-sm::before {
    content: "\e106";
}

.k-i-clock::before {
    content: "\e107";
}

.k-i-calendar::before {
    content: "\e108";
}

.k-i-save::before {
    content: "\e109";
}

.k-i-floppy::before {
    content: "\e109";
}

.k-i-print::before {
    content: "\e10a";
}

.k-i-printer::before {
    content: "\e10a";
}

.k-i-pencil::before {
    content: "\e10b";
}

.k-i-edit::before {
    content: "\e10b";
}

.k-i-trash::before {
    content: "\e10c";
}

.k-i-delete::before {
    content: "\e10c";
}

.k-i-paperclip::before {
    content: "\e10d";
}

.k-i-attachment::before {
    content: "\e10d";
}

.k-i-clip::before {
    content: "\e10d";
}

.k-i-paperclip-alt::before {
    content: "\e10e";
}

.k-i-attachment-45::before {
    content: "\e10e";
}

.k-i-clip-45::before {
    content: "\e10e";
}

.k-i-link::before {
    content: "\e10f";
}

.k-i-link-horizontal::before {
    content: "\e10f";
}

.k-i-hyperlink::before {
    content: "\e10f";
}

.k-i-link-h::before {
    content: "\e10f";
}

.k-i-unlink::before {
    content: "\e110";
}

.k-i-unlink-horizontal::before {
    content: "\e110";
}

.k-i-hyperlink-remove::before {
    content: "\e110";
}

.k-i-unlink-h::before {
    content: "\e110";
}

.k-i-link-vertical::before {
    content: "\e111";
}

.k-i-link-v::before {
    content: "\e111";
}

.k-i-unlink-vertical::before {
    content: "\e112";
}

.k-i-unlink-v::before {
    content: "\e112";
}

.k-i-lock::before {
    content: "\e113";
}

.k-i-unlock::before {
    content: "\e114";
}

.k-i-cancel::before {
    content: "\e115";
}

.k-i-cancel-outline::before {
    content: "\e116";
}

.k-i-deny::before {
    content: "\e116";
}

.k-i-cancel-circle::before {
    content: "\e117";
}

.k-i-check::before {
    content: "\e118";
}

.k-i-checkmark::before {
    content: "\e118";
}

.k-i-tick::before {
    content: "\e118";
}

.k-i-check-outline::before {
    content: "\e119";
}

.k-i-checkmark-outline::before {
    content: "\e119";
}

.k-i-success::before {
    content: "\e119";
}

.k-i-check-circle::before {
    content: "\e11a";
}

.k-i-checkmark-circle::before {
    content: "\e11a";
}

.k-i-x::before {
    content: "\e11b";
}

.k-i-close::before {
    content: "\e11b";
}

.k-i-clear::before {
    content: "\e11b";
}

.k-i-times::before {
    content: "\e11b";
}

.k-i-group-delete::before {
    content: "\e11b";
}

.k-i-x-outline::before {
    content: "\e11c";
}

.k-i-close-outline::before {
    content: "\e11c";
}

.k-i-clear-outline::before {
    content: "\e11c";
}

.k-i-times-outline::before {
    content: "\e11c";
}

.k-i-error::before {
    content: "\e11c";
}

.k-i-x-circle::before {
    content: "\e11d";
}

.k-i-close-circle::before {
    content: "\e11d";
}

.k-i-clear-circle::before {
    content: "\e11d";
}

.k-i-times-circle::before {
    content: "\e11d";
}

.k-i-plus::before {
    content: "\e11e";
}

.k-i-add::before {
    content: "\e11e";
}

.k-i-plus-outline::before {
    content: "\e11f";
}

.k-i-add-outline::before {
    content: "\e11f";
}

.k-i-plus-circle::before {
    content: "\e120";
}

.k-i-add-circle::before {
    content: "\e120";
}

.k-i-minus::before {
    content: "\e121";
}

.k-i-kpi-trend-equal::before {
    content: "\e121";
}

.k-i-minus-outline::before {
    content: "\e122";
}

.k-i-minus-circle::before {
    content: "\e123";
}

.k-i-sort-asc::before {
    content: "\e124";
}

.k-i-sort-desc::before {
    content: "\e125";
}

.k-i-sort-clear::before {
    content: "\e126";
}

.k-i-unsort::before {
    content: "\e126";
}

.k-i-sort-asc-small::before {
    content: "\e127";
}

.k-i-sort-asc-sm::before {
    content: "\e127";
}

.k-i-sort-desc-small::before {
    content: "\e128";
}

.k-i-sort-desc-sm::before {
    content: "\e128";
}

.k-i-filter::before {
    content: "\e129";
}

.k-i-filter-clear::before {
    content: "\e12a";
}

.k-i-filter-small::before {
    content: "\e12b";
}

.k-i-filter-sm::before {
    content: "\e12b";
}

.k-i-filter-sort-asc-small::before {
    content: "\e12c";
}

.k-i-filter-sort-asc-sm::before {
    content: "\e12c";
}

.k-i-filter-sort-desc-small::before {
    content: "\e12d";
}

.k-i-filter-sort-desc-sm::before {
    content: "\e12d";
}

.k-i-filter-add-expression::before {
    content: "\e12e";
}

.k-i-filter-add-group::before {
    content: "\e12f";
}

.k-i-login::before {
    content: "\e130";
}

.k-i-sign-in::before {
    content: "\e130";
}

.k-i-logout::before {
    content: "\e131";
}

.k-i-sign-out::before {
    content: "\e131";
}

.k-i-download::before {
    content: "\e132";
}

.k-i-upload::before {
    content: "\e133";
}

.k-i-hyperlink-open::before {
    content: "\e134";
}

.k-i-hyperlink-open-sm::before {
    content: "\e135";
}

.k-i-launch::before {
    content: "\e136";
}

.k-i-window::before {
    content: "\e137";
}

.k-i-window-maximize::before {
    content: "\e137";
}

.k-i-maximize::before {
    content: "\e137";
}

.k-i-window-restore::before {
    content: "\e138";
}

.k-i-windows::before {
    content: "\e138";
}

.k-i-tiles::before {
    content: "\e138";
}

.k-i-restore::before {
    content: "\e138";
}

.k-i-window-minimize::before {
    content: "\e139";
}

.k-i-minimize::before {
    content: "\e139";
}

.k-i-gear::before {
    content: "\e13a";
}

.k-i-cog::before {
    content: "\e13a";
}

.k-i-custom::before {
    content: "\e13a";
}

.k-i-gears::before {
    content: "\e13b";
}

.k-i-cogs::before {
    content: "\e13b";
}

.k-i-wrench::before {
    content: "\e13c";
}

.k-i-settings::before {
    content: "\e13c";
}

.k-i-eye::before {
    content: "\e13d";
}

.k-i-preview::before {
    content: "\e13d";
}

.k-i-search::before {
    content: "\e13e";
}

.k-i-zoom::before {
    content: "\e13e";
}

.k-i-zoom-in::before {
    content: "\e13f";
}

.k-i-zoom-out::before {
    content: "\e140";
}

.k-i-arrows-move::before {
    content: "\e141";
}

.k-i-pan::before {
    content: "\e141";
}

.k-i-move::before {
    content: "\e141";
}

.k-i-calculator::before {
    content: "\e142";
}

.k-i-cart::before {
    content: "\e143";
}

.k-i-shopping-cart::before {
    content: "\e143";
}

.k-i-connector::before {
    content: "\e144";
}

.k-i-plus-sm::before {
    content: "\e145";
}

.k-i-splus::before {
    content: "\e145";
}

.k-i-minus-sm::before {
    content: "\e146";
}

.k-i-sminus::before {
    content: "\e146";
}

.k-i-kpi-status-deny::before {
    content: "\e147";
}

.k-i-kpi-status-hold::before {
    content: "\e148";
}

.k-i-kpi-status-open::before {
    content: "\e149";
}

.k-i-equal::before {
    content: "\e14a";
}

.k-i-not-equal::before {
    content: "\e14b";
}

.k-i-less-or-equal::before {
    content: "\e14c";
}

.k-i-greater-or-equal::before {
    content: "\e14d";
}

.k-i-divide::before {
    content: "\e14e";
}

.k-i-accessibility::before {
    content: "\e14f";
}

.k-i-barcode-outline::before {
    content: "\e150";
}

.k-i-barcode::before {
    content: "\e151";
}

.k-i-barcode-scanner::before {
    content: "\e152";
}

.k-i-qr-code-outline::before {
    content: "\e153";
}

.k-i-qr-code::before {
    content: "\e154";
}

.k-i-qr-code-scanner::before {
    content: "\e155";
}

.k-i-barcode-qr-code-scanner::before {
    content: "\e156";
}

.k-i-signature::before {
    content: "\e157";
}

.k-i-hand::before {
    content: "\e158";
}

.k-i-pointer::before {
    content: "\e159";
}

.k-i-cursor::before {
    content: "\e159";
}

.k-i-stick::before {
    content: "\e15a";
}

.k-i-unstick::before {
    content: "\e15b";
}

.k-i-set-column-position::before {
    content: "\e15c";
}

.k-i-clock-arrow-rotate::before {
    content: "\e15d";
}

.k-i-play::before {
    content: "\e200";
}

.k-i-pause::before {
    content: "\e201";
}

.k-i-stop::before {
    content: "\e202";
}

.k-i-rewind::before {
    content: "\e203";
}

.k-i-forward::before {
    content: "\e204";
}

.k-i-volume-down::before {
    content: "\e205";
}

.k-i-volume-low::before {
    content: "\e205";
}

.k-i-volume-up::before {
    content: "\e206";
}

.k-i-volume-high::before {
    content: "\e206";
}

.k-i-volume-mute::before {
    content: "\e207";
}

.k-i-volume-off::before {
    content: "\e207";
}

.k-i-hd::before {
    content: "\e208";
}

.k-i-closed-captions::before {
    content: "\e209";
}

.k-i-subtitles::before {
    content: "\e209";
}

.k-i-playlist::before {
    content: "\e20a";
}

.k-i-music-notes::before {
    content: "\e20b";
}

.k-i-audio::before {
    content: "\e20b";
}

.k-i-play-sm::before {
    content: "\e20c";
}

.k-i-pause-sm::before {
    content: "\e20d";
}

.k-i-stop-sm::before {
    content: "\e20e";
}

.k-i-heart-outline::before {
    content: "\e300";
}

.k-i-fav-outline::before {
    content: "\e300";
}

.k-i-favorite-outline::before {
    content: "\e300";
}

.k-i-heart::before {
    content: "\e301";
}

.k-i-fav::before {
    content: "\e301";
}

.k-i-favorite::before {
    content: "\e301";
}

.k-i-star-outline::before {
    content: "\e302";
}

.k-i-bookmark-outline::before {
    content: "\e302";
}

.k-i-star::before {
    content: "\e303";
}

.k-i-bookmark::before {
    content: "\e303";
}

.k-i-checkbox::before {
    content: "\e304";
}

.k-i-shape-rect::before {
    content: "\e304";
}

.k-i-checkbox-checked::before {
    content: "\e305";
}

.k-i-checkbox-indeterminate::before {
    content: "\e306";
}

.k-i-tri-state-indeterminate::before {
    content: "\e306";
}

.k-i-checkbox-null::before {
    content: "\e307";
}

.k-i-tri-state-null::before {
    content: "\e307";
}

.k-i-circle::before {
    content: "\e308";
}

.k-i-radiobutton::before {
    content: "\e309";
}

.k-i-shape-circle::before {
    content: "\e309";
}

.k-i-radiobutton-checked::before {
    content: "\e30a";
}

.k-i-bell::before {
    content: "\e400";
}

.k-i-notification::before {
    content: "\e400";
}

.k-i-info-circle::before {
    content: "\e401";
}

.k-i-information::before {
    content: "\e401";
}

.k-i-info::before {
    content: "\e401";
}

.k-i-note::before {
    content: "\e401";
}

.k-i-question-circle::before {
    content: "\e402";
}

.k-i-question::before {
    content: "\e402";
}

.k-i-help::before {
    content: "\e402";
}

.k-i-exclamation-circle::before {
    content: "\e403";
}

.k-i-warning::before {
    content: "\e403";
}

.k-i-exception::before {
    content: "\e403";
}

.k-i-camera::before {
    content: "\e500";
}

.k-i-photo-camera::before {
    content: "\e500";
}

.k-i-image::before {
    content: "\e501";
}

.k-i-photo::before {
    content: "\e501";
}

.k-i-image-export::before {
    content: "\e502";
}

.k-i-photo-export::before {
    content: "\e502";
}

.k-i-zoom-actual-size::before {
    content: "\e503";
}

.k-i-zoom-best-fit::before {
    content: "\e504";
}

.k-i-image-resize::before {
    content: "\e505";
}

.k-i-crop::before {
    content: "\e506";
}

.k-i-mirror::before {
    content: "\e507";
}

.k-i-flip-horizontal::before {
    content: "\e508";
}

.k-i-flip-h::before {
    content: "\e508";
}

.k-i-flip-vertical::before {
    content: "\e509";
}

.k-i-flip-v::before {
    content: "\e509";
}

.k-i-rotate::before {
    content: "\e50a";
}

.k-i-rotate-right::before {
    content: "\e50b";
}

.k-i-rotate-cw::before {
    content: "\e50b";
}

.k-i-rotate-left::before {
    content: "\e50c";
}

.k-i-rotate-ccw::before {
    content: "\e50c";
}

.k-i-brush::before {
    content: "\e50d";
}

.k-i-palette::before {
    content: "\e50e";
}

.k-i-droplet::before {
    content: "\e50f";
}

.k-i-paint::before {
    content: "\e50f";
}

.k-i-background::before {
    content: "\e50f";
}

.k-i-shape-line::before {
    content: "\e510";
}

.k-i-line::before {
    content: "\e510";
}

.k-i-brightness-contrast::before {
    content: "\e511";
}

.k-i-sliders::before {
    content: "\e512";
}

.k-i-saturation::before {
    content: "\e512";
}

.k-i-invert-colors::before {
    content: "\e513";
}

.k-i-transparency::before {
    content: "\e514";
}

.k-i-opacity::before {
    content: "\e514";
}

.k-i-grayscale::before {
    content: "\e515";
}

.k-i-blur::before {
    content: "\e516";
}

.k-i-sharpen::before {
    content: "\e517";
}

.k-i-shapes::before {
    content: "\e518";
}

.k-i-shape::before {
    content: "\e518";
}

.k-i-round-corners::before {
    content: "\e519";
}

.k-i-bring-to-front::before {
    content: "\e51a";
}

.k-i-front-element::before {
    content: "\e51a";
}

.k-i-bring-to-back::before {
    content: "\e51b";
}

.k-i-back-element::before {
    content: "\e51b";
}

.k-i-bring-forward::before {
    content: "\e51c";
}

.k-i-forward-element::before {
    content: "\e51c";
}

.k-i-bring-backward::before {
    content: "\e51d";
}

.k-i-backward-element::before {
    content: "\e51d";
}

.k-i-align-self-start::before {
    content: "\e51e";
}

.k-i-align-left-element::before {
    content: "\e51e";
}

.k-i-align-self-center::before {
    content: "\e51f";
}

.k-i-align-center-element::before {
    content: "\e51f";
}

.k-i-align-self-end::before {
    content: "\e520";
}

.k-i-align-right-element::before {
    content: "\e520";
}

.k-i-align-self-start-alt::before {
    content: "\e521";
}

.k-i-align-top-element::before {
    content: "\e521";
}

.k-i-align-self-center-alt::before {
    content: "\e522";
}

.k-i-align-middle-element::before {
    content: "\e522";
}

.k-i-align-self-end-alt::before {
    content: "\e523";
}

.k-i-align-bottom-element::before {
    content: "\e523";
}

.k-i-thumbnails-up::before {
    content: "\e524";
}

.k-i-thumbnails-right::before {
    content: "\e525";
}

.k-i-thumbnails-down::before {
    content: "\e526";
}

.k-i-thumbnails-left::before {
    content: "\e527";
}

.k-i-fullscreen::before {
    content: "\e528";
}

.k-i-full-screen::before {
    content: "\e528";
}

.k-i-fullscreen-enter::before {
    content: "\e528";
}

.k-i-fullscreen-exit::before {
    content: "\e529";
}

.k-i-full-screen-exit::before {
    content: "\e529";
}

.k-i-droplet-slash::before {
    content: "\e52a";
}

.k-i-reset-color::before {
    content: "\e52a";
}

.k-i-paint-remove::before {
    content: "\e52a";
}

.k-i-background-remove::before {
    content: "\e52a";
}

.k-i-photos::before {
    content: "\e52b";
}

.k-i-images::before {
    content: "\e52b";
}

.k-i-gallery::before {
    content: "\e52b";
}

.k-i-align-to-grid::before {
    content: "\e52c";
}

.k-i-size-to-grid::before {
    content: "\e52d";
}

.k-i-make-same-size::before {
    content: "\e52e";
}

.k-i-make-same-width::before {
    content: "\e52f";
}

.k-i-make-same-height::before {
    content: "\e530";
}

.k-i-make-horizontal-spacing-equal::before {
    content: "\e531";
}

.k-i-increase-horizontal-spacing::before {
    content: "\e532";
}

.k-i-decrease-horizontal-spacing::before {
    content: "\e533";
}

.k-i-remove-horizontal-spacing::before {
    content: "\e534";
}

.k-i-make-vertical-spacing-equal::before {
    content: "\e535";
}

.k-i-increase-vertical-spacing::before {
    content: "\e536";
}

.k-i-decrease-vertical-spacing::before {
    content: "\e537";
}

.k-i-remove-vertical-spacing::before {
    content: "\e538";
}

.k-i-eyedropper::before {
    content: "\e539";
}

.k-i-snap-grid::before {
    content: "\e53a";
}

.k-i-snap-to-gridlines::before {
    content: "\e53b";
}

.k-i-snap-to-snaplines::before {
    content: "\e53c";
}

.k-i-dimensions::before {
    content: "\e53d";
}

.k-i-align-self-stretch::before {
    content: "\e53e";
}

.k-i-align-stretch-element-horizontal::before {
    content: "\e53e";
}

.k-i-align-self-stretch-alt::before {
    content: "\e53f";
}

.k-i-align-stretch-element-vertical::before {
    content: "\e53f";
}

.k-i-align-items-start::before {
    content: "\e540";
}

.k-i-align-left-elements::before {
    content: "\e540";
}

.k-i-align-items-center::before {
    content: "\e541";
}

.k-i-align-center-elements::before {
    content: "\e541";
}

.k-i-align-items-end::before {
    content: "\e542";
}

.k-i-align-right-elements::before {
    content: "\e542";
}

.k-i-align-items-stretch::before {
    content: "\e543";
}

.k-i-align-stretch-elements-horizontal::before {
    content: "\e543";
}

.k-i-align-items-baseline::before {
    content: "\e544";
}

.k-i-align-baseline-horizontal::before {
    content: "\e544";
}

.k-i-align-items-start-alt::before {
    content: "\e545";
}

.k-i-align-top-elements::before {
    content: "\e545";
}

.k-i-align-items-center-alt::before {
    content: "\e546";
}

.k-i-align-middle-elements::before {
    content: "\e546";
}

.k-i-align-items-end-alt::before {
    content: "\e547";
}

.k-i-align-bottom-elements::before {
    content: "\e547";
}

.k-i-align-items-stretch-alt::before {
    content: "\e548";
}

.k-i-align-stretch-elements-vertical::before {
    content: "\e548";
}

.k-i-align-items-baseline-alt::before {
    content: "\e549";
}

.k-i-align-baseline-vertical::before {
    content: "\e549";
}

.k-i-justify-content-start::before {
    content: "\e54a";
}

.k-i-justify-start-horizontal::before {
    content: "\e54a";
}

.k-i-justify-content-center::before {
    content: "\e54b";
}

.k-i-justify-center-horizontal::before {
    content: "\e54b";
}

.k-i-justify-content-end::before {
    content: "\e54c";
}

.k-i-justify-end-horizontal::before {
    content: "\e54c";
}

.k-i-justify-content-between::before {
    content: "\e54d";
}

.k-i-justify-between-horizontal::before {
    content: "\e54d";
}

.k-i-justify-content-around::before {
    content: "\e54e";
}

.k-i-justify-around-horizontal::before {
    content: "\e54e";
}

.k-i-justify-content-start-alt::before {
    content: "\e54f";
}

.k-i-justify-start-vertical::before {
    content: "\e54f";
}

.k-i-justify-content-center-alt::before {
    content: "\e550";
}

.k-i-justify-center-vertical::before {
    content: "\e550";
}

.k-i-justify-content-end-alt::before {
    content: "\e551";
}

.k-i-justify-end-vertical::before {
    content: "\e551";
}

.k-i-justify-content-between-alt::before {
    content: "\e552";
}

.k-i-justify-between-vertical::before {
    content: "\e552";
}

.k-i-justify-content-around-alt::before {
    content: "\e553";
}

.k-i-justify-around-vertical::before {
    content: "\e553";
}

.k-i-file-wrench::before {
    content: "\e600";
}

.k-i-page-properties::before {
    content: "\e600";
}

.k-i-bold::before {
    content: "\e601";
}

.k-i-italic::before {
    content: "\e602";
}

.k-i-underline::before {
    content: "\e603";
}

.k-i-font-family::before {
    content: "\e604";
}

.k-i-foreground-color::before {
    content: "\e605";
}

.k-i-text::before {
    content: "\e605";
}

.k-i-convert-lowercase::before {
    content: "\e606";
}

.k-i-convert-uppercase::before {
    content: "\e607";
}

.k-i-strikethrough::before {
    content: "\e608";
}

.k-i-strike-through::before {
    content: "\e608";
}

.k-i-subscript::before {
    content: "\e609";
}

.k-i-sub-script::before {
    content: "\e609";
}

.k-i-supscript::before {
    content: "\e60a";
}

.k-i-sup-script::before {
    content: "\e60a";
}

.k-i-superscript::before {
    content: "\e60a";
}

.k-i-div::before {
    content: "\e60b";
}

.k-i-all::before {
    content: "\e60c";
}

.k-i-h1::before {
    content: "\e60d";
}

.k-i-h2::before {
    content: "\e60e";
}

.k-i-h3::before {
    content: "\e60f";
}

.k-i-h4::before {
    content: "\e610";
}

.k-i-h5::before {
    content: "\e611";
}

.k-i-h6::before {
    content: "\e612";
}

.k-i-list-ordered::before {
    content: "\e613";
}

.k-i-list-numbered::before {
    content: "\e613";
}

.k-i-insert-ordered-list::before {
    content: "\e613";
}

.k-i-list-unordered::before {
    content: "\e614";
}

.k-i-list-bulleted::before {
    content: "\e614";
}

.k-i-insert-unordered-list::before {
    content: "\e614";
}

.k-i-indent::before {
    content: "\e615";
}

.k-i-indent-increase::before {
    content: "\e615";
}

.k-i-outdent::before {
    content: "\e616";
}

.k-i-indent-decrease::before {
    content: "\e616";
}

.k-i-insert-top::before {
    content: "\e617";
}

.k-i-insert-up::before {
    content: "\e617";
}

.k-i-insert-n::before {
    content: "\e617";
}

.k-i-insert-middle::before {
    content: "\e618";
}

.k-i-insert-m::before {
    content: "\e618";
}

.k-i-insert-bottom::before {
    content: "\e619";
}

.k-i-insert-down::before {
    content: "\e619";
}

.k-i-insert-s::before {
    content: "\e619";
}

.k-i-align-top::before {
    content: "\e61a";
}

.k-i-align-middle::before {
    content: "\e61b";
}

.k-i-align-bottom::before {
    content: "\e61c";
}

.k-i-align-left::before {
    content: "\e61d";
}

.k-i-justify-left::before {
    content: "\e61d";
}

.k-i-align-center::before {
    content: "\e61e";
}

.k-i-justify-center::before {
    content: "\e61e";
}

.k-i-align-right::before {
    content: "\e61f";
}

.k-i-justify-left::before {
    content: "\e61f";
}

.k-i-align-justify::before {
    content: "\e620";
}

.k-i-justify-full::before {
    content: "\e620";
}

.k-i-align-remove::before {
    content: "\e621";
}

.k-i-justify-clear::before {
    content: "\e621";
}

.k-i-text-wrap::before {
    content: "\e622";
}

.k-i-horizontal-rule::before {
    content: "\e623";
}

.k-i-rule-horizontal::before {
    content: "\e623";
}

.k-i-hr::before {
    content: "\e623";
}

.k-i-table-align-top-left::before {
    content: "\e624";
}

.k-i-table-align-top-center::before {
    content: "\e625";
}

.k-i-table-align-top-right::before {
    content: "\e626";
}

.k-i-table-align-middle-left::before {
    content: "\e627";
}

.k-i-table-align-middle-center::before {
    content: "\e628";
}

.k-i-table-align-middle-right::before {
    content: "\e629";
}

.k-i-table-align-bottom-left::before {
    content: "\e62a";
}

.k-i-table-align-bottom-center::before {
    content: "\e62b";
}

.k-i-table-align-bottom-right::before {
    content: "\e62c";
}

.k-i-table-align-remove::before {
    content: "\e62d";
}

.k-i-borders-all::before {
    content: "\e62e";
}

.k-i-all-borders::before {
    content: "\e62e";
}

.k-i-borders-outside::before {
    content: "\e62f";
}

.k-i-outside-borders::before {
    content: "\e62f";
}

.k-i-borders-inside::before {
    content: "\e630";
}

.k-i-inside-borders::before {
    content: "\e630";
}

.k-i-borders-inside-horizontal::before {
    content: "\e631";
}

.k-i-border-inside-h::before {
    content: "\e631";
}

.k-i-inside-horizontal-borders::before {
    content: "\e631";
}

.k-i-borders-inside-vertical::before {
    content: "\e632";
}

.k-i-borders-inside-v::before {
    content: "\e632";
}

.k-i-inside-vertical-borders::before {
    content: "\e632";
}

.k-i-border-top::before {
    content: "\e633";
}

.k-i-top-border::before {
    content: "\e633";
}

.k-i-border-bottom::before {
    content: "\e634";
}

.k-i-bottom-border::before {
    content: "\e634";
}

.k-i-border-left::before {
    content: "\e635";
}

.k-i-left-border::before {
    content: "\e635";
}

.k-i-border-right::before {
    content: "\e636";
}

.k-i-right-border::before {
    content: "\e636";
}

.k-i-borders-none::before {
    content: "\e637";
}

.k-i-border-no::before {
    content: "\e637";
}

.k-i-no-borders::before {
    content: "\e637";
}

.k-i-borders-show-hide::before {
    content: "\e638";
}

.k-i-form::before {
    content: "\e639";
}

.k-i-border::before {
    content: "\e639";
}

.k-i-form-element::before {
    content: "\e63a";
}

.k-i-code-snippet::before {
    content: "\e63b";
}

.k-i-select-all::before {
    content: "\e63c";
}

.k-i-button::before {
    content: "\e63d";
}

.k-i-select-box::before {
    content: "\e63e";
}

.k-i-calendar-date::before {
    content: "\e63f";
}

.k-i-group-box::before {
    content: "\e640";
}

.k-i-textarea::before {
    content: "\e641";
}

.k-i-textbox::before {
    content: "\e642";
}

.k-i-textbox-hidden::before {
    content: "\e643";
}

.k-i-password::before {
    content: "\e644";
}

.k-i-paragraph-add::before {
    content: "\e645";
}

.k-i-edit-tools::before {
    content: "\e646";
}

.k-i-template-manager::before {
    content: "\e647";
}

.k-i-change-manually::before {
    content: "\e648";
}

.k-i-track-changes::before {
    content: "\e649";
}

.k-i-track-changes-enable::before {
    content: "\e64a";
}

.k-i-track-changes-accept::before {
    content: "\e64b";
}

.k-i-track-changes-accept-all::before {
    content: "\e64c";
}

.k-i-track-changes-reject::before {
    content: "\e64d";
}

.k-i-track-changes-reject-all::before {
    content: "\e64e";
}

.k-i-document-manager::before {
    content: "\e64f";
}

.k-i-custom-icon::before {
    content: "\e650";
}

.k-i-book::before {
    content: "\e651";
}

.k-i-dictionary-add::before {
    content: "\e651";
}

.k-i-image-add::before {
    content: "\e652";
}

.k-i-image-light-dialog::before {
    content: "\e652";
}

.k-i-image-insert::before {
    content: "\e652";
}

.k-i-insert-image::before {
    content: "\e652";
}

.k-i-image-edit::before {
    content: "\e653";
}

.k-i-image-map-editor::before {
    content: "\e654";
}

.k-i-comment::before {
    content: "\e655";
}

.k-i-comment-remove::before {
    content: "\e656";
}

.k-i-comments-remove::before {
    content: "\e657";
}

.k-i-comments-remove-all::before {
    content: "\e657";
}

.k-i-silverlight::before {
    content: "\e658";
}

.k-i-media-manager::before {
    content: "\e659";
}

.k-i-video-external::before {
    content: "\e65a";
}

.k-i-flash-manager::before {
    content: "\e65b";
}

.k-i-binoculars::before {
    content: "\e65c";
}

.k-i-find-and-replace::before {
    content: "\e65c";
}

.k-i-find::before {
    content: "\e65c";
}

.k-i-copy::before {
    content: "\e65d";
}

.k-i-files::before {
    content: "\e65d";
}

.k-i-cut::before {
    content: "\e65e";
}

.k-i-clipboard::before {
    content: "\e65f";
}

.k-i-paste::before {
    content: "\e65f";
}

.k-i-clipboard-code::before {
    content: "\e660";
}

.k-i-paste-as-html::before {
    content: "\e660";
}

.k-i-clipboard-word::before {
    content: "\e661";
}

.k-i-paste-from-word::before {
    content: "\e661";
}

.k-i-clipboard-word-alt::before {
    content: "\e662";
}

.k-i-paste-from-word-strip-file::before {
    content: "\e662";
}

.k-i-clipboard-html::before {
    content: "\e663";
}

.k-i-paste-html::before {
    content: "\e663";
}

.k-i-clipboard-markdown::before {
    content: "\e664";
}

.k-i-paste-markdown::before {
    content: "\e664";
}

.k-i-clipboard-text::before {
    content: "\e665";
}

.k-i-paste-plain-text::before {
    content: "\e665";
}

.k-i-apply-format::before {
    content: "\e666";
}

.k-i-clear-css::before {
    content: "\e667";
}

.k-i-clearformat::before {
    content: "\e667";
}

.k-i-copy-format::before {
    content: "\e668";
}

.k-i-strip-all-formatting::before {
    content: "\e669";
}

.k-i-strip-css-format::before {
    content: "\e66a";
}

.k-i-strip-font-elements::before {
    content: "\e66b";
}

.k-i-strip-span-elements::before {
    content: "\e66c";
}

.k-i-strip-word-formatting::before {
    content: "\e66d";
}

.k-i-format-code-block::before {
    content: "\e66e";
}

.k-i-building-blocks::before {
    content: "\e66f";
}

.k-i-style-builder::before {
    content: "\e66f";
}

.k-i-puzzle-piece::before {
    content: "\e670";
}

.k-i-module-manager::before {
    content: "\e670";
}

.k-i-puzzle::before {
    content: "\e670";
}

.k-i-link-add::before {
    content: "\e671";
}

.k-i-hyperlink-light-dialog::before {
    content: "\e671";
}

.k-i-hyperlink-insert::before {
    content: "\e671";
}

.k-i-globe-link::before {
    content: "\e672";
}

.k-i-hyperlink-globe::before {
    content: "\e672";
}

.k-i-globe-unlink::before {
    content: "\e673";
}

.k-i-hyperlink-globe-remove::before {
    content: "\e673";
}

.k-i-envelop-link::before {
    content: "\e674";
}

.k-i-hyperlink-email::before {
    content: "\e674";
}

.k-i-anchor::before {
    content: "\e675";
}

.k-i-table-add::before {
    content: "\e676";
}

.k-i-table-light-dialog::before {
    content: "\e676";
}

.k-i-table-insert::before {
    content: "\e676";
}

.k-i-create-table::before {
    content: "\e676";
}

.k-i-table::before {
    content: "\e677";
}

.k-i-table-properties::before {
    content: "\e678";
}

.k-i-table-cell::before {
    content: "\e679";
}

.k-i-table-cell-properties::before {
    content: "\e67a";
}

.k-i-table-column-insert-left::before {
    content: "\e67b";
}

.k-i-add-column-left::before {
    content: "\e67b";
}

.k-i-table-column-insert-right::before {
    content: "\e67c";
}

.k-i-add-column-right::before {
    content: "\e67c";
}

.k-i-table-row-insert-above::before {
    content: "\e67d";
}

.k-i-add-row-above::before {
    content: "\e67d";
}

.k-i-table-row-insert-below::before {
    content: "\e67e";
}

.k-i-add-row-below::before {
    content: "\e67e";
}

.k-i-table-column-delete::before {
    content: "\e67f";
}

.k-i-delete-column::before {
    content: "\e67f";
}

.k-i-table-row-delete::before {
    content: "\e680";
}

.k-i-delete-row::before {
    content: "\e680";
}

.k-i-table-cell-delete::before {
    content: "\e681";
}

.k-i-table-delete::before {
    content: "\e682";
}

.k-i-cells-merge::before {
    content: "\e683";
}

.k-i-merge-cells::before {
    content: "\e683";
}

.k-i-cells-merge-horizontally::before {
    content: "\e684";
}

.k-i-cells-merge-h::before {
    content: "\e684";
}

.k-i-merge-horizontally::before {
    content: "\e684";
}

.k-i-cells-merge-vertically::before {
    content: "\e685";
}

.k-i-cells-merge-v::before {
    content: "\e685";
}

.k-i-merge-vertically::before {
    content: "\e685";
}

.k-i-cell-split-horizontally::before {
    content: "\e686";
}

.k-i-cells-split-h::before {
    content: "\e686";
}

.k-i-cell-split-vertically::before {
    content: "\e687";
}

.k-i-cells-split-v::before {
    content: "\e687";
}

.k-i-table-unmerge::before {
    content: "\e688";
}

.k-i-normal-layout::before {
    content: "\e688";
}

.k-i-pane-freeze::before {
    content: "\e689";
}

.k-i-freeze-pane::before {
    content: "\e689";
}

.k-i-row-freeze::before {
    content: "\e68a";
}

.k-i-freeze-row::before {
    content: "\e68a";
}

.k-i-column-freeze::before {
    content: "\e68b";
}

.k-i-col-freeze::before {
    content: "\e68b";
}

.k-i-freeze-col::before {
    content: "\e68b";
}

.k-i-toolbar-float::before {
    content: "\e68c";
}

.k-i-spell-checker::before {
    content: "\e68d";
}

.k-i-validation-xhtml::before {
    content: "\e68e";
}

.k-i-validation-data::before {
    content: "\e68f";
}

.k-i-toggle-full-screen-mode::before {
    content: "\e690";
}

.k-i-formula-fx::before {
    content: "\e691";
}

.k-i-fx::before {
    content: "\e691";
}

.k-i-sum::before {
    content: "\e692";
}

.k-i-symbol::before {
    content: "\e693";
}

.k-i-dollar::before {
    content: "\e694";
}

.k-i-currency::before {
    content: "\e694";
}

.k-i-percent::before {
    content: "\e695";
}

.k-i-custom-format::before {
    content: "\e696";
}

.k-i-format-number::before {
    content: "\e696";
}

.k-i-decimal-increase::before {
    content: "\e697";
}

.k-i-increace-decimal::before {
    content: "\e697";
}

.k-i-decimal-decrease::before {
    content: "\e698";
}

.k-i-decrease-decimal::before {
    content: "\e698";
}

.k-i-font-size::before {
    content: "\e699";
}

.k-i-image-absolute-position::before {
    content: "\e69a";
}

.k-i-table-wizard::before {
    content: "\e69b";
}

.k-i-crosstab::before {
    content: "\e69c";
}

.k-i-crosstab-wizard::before {
    content: "\e69d";
}

.k-i-table-body::before {
    content: "\e69e";
}

.k-i-table-column-groups::before {
    content: "\e69f";
}

.k-i-table-corner::before {
    content: "\e6a0";
}

.k-i-table-row-groups::before {
    content: "\e6a1";
}

.k-i-globe-outline::before {
    content: "\e700";
}

.k-i-globe::before {
    content: "\e701";
}

.k-i-map-marker::before {
    content: "\e702";
}

.k-i-marker-pin::before {
    content: "\e702";
}

.k-i-map-marker-target::before {
    content: "\e703";
}

.k-i-marker-pin-target::before {
    content: "\e703";
}

.k-i-pin::before {
    content: "\e704";
}

.k-i-unpin::before {
    content: "\e705";
}

.k-i-share::before {
    content: "\e800";
}

.k-i-user::before {
    content: "\e801";
}

.k-i-inbox::before {
    content: "\e802";
}

.k-i-blogger::before {
    content: "\e803";
}

.k-i-blogger-box::before {
    content: "\e804";
}

.k-i-delicious::before {
    content: "\e805";
}

.k-i-delicious-box::before {
    content: "\e806";
}

.k-i-digg::before {
    content: "\e807";
}

.k-i-digg-box::before {
    content: "\e808";
}

.k-i-envelop::before {
    content: "\e809";
}

.k-i-email::before {
    content: "\e809";
}

.k-i-letter::before {
    content: "\e809";
}

.k-i-envelop-box::before {
    content: "\e80a";
}

.k-i-email-box::before {
    content: "\e80a";
}

.k-i-letter-box::before {
    content: "\e80a";
}

.k-i-facebook::before {
    content: "\e80b";
}

.k-i-facebook-box::before {
    content: "\e80c";
}

.k-i-google::before {
    content: "\e80d";
}

.k-i-google-box::before {
    content: "\e80e";
}

.k-i-google-plus::before {
    content: "\e80f";
}

.k-i-google-plus-box::before {
    content: "\e810";
}

.k-i-linkedin::before {
    content: "\e811";
}

.k-i-linkedin-box::before {
    content: "\e812";
}

.k-i-myspace::before {
    content: "\e813";
}

.k-i-myspace-box::before {
    content: "\e814";
}

.k-i-pinterest::before {
    content: "\e815";
}

.k-i-pinterest-box::before {
    content: "\e816";
}

.k-i-reddit::before {
    content: "\e817";
}

.k-i-reddit-box::before {
    content: "\e818";
}

.k-i-stumble-upon::before {
    content: "\e819";
}

.k-i-stumble-upon-box::before {
    content: "\e81a";
}

.k-i-tell-a-friend::before {
    content: "\e81b";
}

.k-i-tell-a-friend-box::before {
    content: "\e81c";
}

.k-i-tumblr::before {
    content: "\e81d";
}

.k-i-tumblr-box::before {
    content: "\e81e";
}

.k-i-twitter::before {
    content: "\e81f";
}

.k-i-twitter-box::before {
    content: "\e820";
}

.k-i-yammer::before {
    content: "\e821";
}

.k-i-yammer-box::before {
    content: "\e822";
}

.k-i-behance::before {
    content: "\e823";
}

.k-i-behance-box::before {
    content: "\e824";
}

.k-i-dribbble::before {
    content: "\e825";
}

.k-i-dribbble-box::before {
    content: "\e826";
}

.k-i-rss::before {
    content: "\e827";
}

.k-i-rss-box::before {
    content: "\e828";
}

.k-i-vimeo::before {
    content: "\e829";
}

.k-i-vimeo-box::before {
    content: "\e82a";
}

.k-i-youtube::before {
    content: "\e82b";
}

.k-i-youtube-box::before {
    content: "\e82c";
}

.k-i-folder::before {
    content: "\e900";
}

.k-i-folder-open::before {
    content: "\e901";
}

.k-i-folder-add::before {
    content: "\e902";
}

.k-i-folder-up::before {
    content: "\e903";
}

.k-i-folder-more::before {
    content: "\e904";
}

.k-i-fields-more::before {
    content: "\e904";
}

.k-i-aggregate-fields::before {
    content: "\e905";
}

.k-i-file::before {
    content: "\e906";
}

.k-i-file-vertical::before {
    content: "\e906";
}

.k-i-page-portrait::before {
    content: "\e906";
}

.k-i-file-v::before {
    content: "\e906";
}

.k-i-file-add::before {
    content: "\e907";
}

.k-i-insert-file::before {
    content: "\e907";
}

.k-i-file-txt::before {
    content: "\e908";
}

.k-i-txt::before {
    content: "\e908";
}

.k-i-file-csv::before {
    content: "\e909";
}

.k-i-csv::before {
    content: "\e909";
}

.k-i-file-excel::before {
    content: "\e90a";
}

.k-i-file-xls::before {
    content: "\e90a";
}

.k-i-excel::before {
    content: "\e90a";
}

.k-i-xls::before {
    content: "\e90a";
}

.k-i-xlsa::before {
    content: "\e90a";
}

.k-i-file-word::before {
    content: "\e90b";
}

.k-i-file-doc::before {
    content: "\e90b";
}

.k-i-word::before {
    content: "\e90b";
}

.k-i-doc::before {
    content: "\e90b";
}

.k-i-file-mdb::before {
    content: "\e90c";
}

.k-i-mdb::before {
    content: "\e90c";
}

.k-i-file-ppt::before {
    content: "\e90d";
}

.k-i-ppt::before {
    content: "\e90d";
}

.k-i-file-pdf::before {
    content: "\e90e";
}

.k-i-pdf::before {
    content: "\e90e";
}

.k-i-pdfa::before {
    content: "\e90e";
}

.k-i-file-psd::before {
    content: "\e90f";
}

.k-i-psd::before {
    content: "\e90f";
}

.k-i-file-flash::before {
    content: "\e910";
}

.k-i-flash::before {
    content: "\e910";
}

.k-i-file-config::before {
    content: "\e911";
}

.k-i-config::before {
    content: "\e911";
}

.k-i-file-ascx::before {
    content: "\e912";
}

.k-i-ascx::before {
    content: "\e912";
}

.k-i-file-bac::before {
    content: "\e913";
}

.k-i-bac::before {
    content: "\e913";
}

.k-i-file-zip::before {
    content: "\e914";
}

.k-i-zip::before {
    content: "\e914";
}

.k-i-film::before {
    content: "\e915";
}

.k-i-css3::before {
    content: "\e916";
}

.k-i-html5::before {
    content: "\e917";
}

.k-i-code::before {
    content: "\e918";
}

.k-i-html::before {
    content: "\e918";
}

.k-i-source-code::before {
    content: "\e918";
}

.k-i-view-source::before {
    content: "\e918";
}

.k-i-css::before {
    content: "\e919";
}

.k-i-js::before {
    content: "\e91a";
}

.k-i-exe::before {
    content: "\e91b";
}

.k-i-csproj::before {
    content: "\e91c";
}

.k-i-vbproj::before {
    content: "\e91d";
}

.k-i-cs::before {
    content: "\e91e";
}

.k-i-vb::before {
    content: "\e91f";
}

.k-i-sln::before {
    content: "\e920";
}

.k-i-cloud::before {
    content: "\e921";
}

.k-i-file-horizontal::before {
    content: "\e922";
}

.k-i-page-landscape::before {
    content: "\e922";
}

.k-i-file-h::before {
    content: "\e922";
}

.k-i-subreport::before {
    content: "\e923";
}

.k-i-data::before {
    content: "\e924";
}

.k-i-file-header::before {
    content: "\e925";
}

.k-i-report-header-section::before {
    content: "\e925";
}

.k-i-file-footer::before {
    content: "\e926";
}

.k-i-report-footer-section::before {
    content: "\e926";
}

.k-i-group-header-section::before {
    content: "\e927";
}

.k-i-group-footer-section::before {
    content: "\e928";
}

.k-i-page-header-section::before {
    content: "\e929";
}

.k-i-page-footer-section::before {
    content: "\e92a";
}

.k-i-detail-section::before {
    content: "\e92b";
}

.k-i-toc-section::before {
    content: "\e92c";
}

.k-i-group-section::before {
    content: "\e92d";
}

.k-i-parameters::before {
    content: "\e92e";
}

.k-i-data-csv::before {
    content: "\e92f";
}

.k-i-data-json::before {
    content: "\e930";
}

.k-i-data-sql::before {
    content: "\e931";
}

.k-i-data-web::before {
    content: "\e932";
}

.k-i-group-collection::before {
    content: "\e933";
}

.k-i-parameter-boolean::before {
    content: "\e934";
}

.k-i-parameter-date-time::before {
    content: "\e935";
}

.k-i-parameter-float::before {
    content: "\e936";
}

.k-i-parameter-integer::before {
    content: "\e937";
}

.k-i-parameter-string::before {
    content: "\e938";
}

.k-i-toc-section-level::before {
    content: "\e939";
}

.k-i-inherited::before {
    content: "\e93a";
}

.k-i-file-video::before {
    content: "\e93b";
}

.k-i-file-audio::before {
    content: "\e93c";
}

.k-i-file-image::before {
    content: "\e93d";
}

.k-i-file-presentation::before {
    content: "\e93e";
}

.k-i-file-data::before {
    content: "\e93f";
}

.k-i-file-disc-image::before {
    content: "\e940";
}

.k-i-file-programming::before {
    content: "\e941";
}

.k-i-parameters-byte-array::before {
    content: "\e942";
}

.k-i-parameters-unknown::before {
    content: "\e943";
}

.k-i-file-error::before {
    content: "\e944";
}

.k-i-file-validation::before {
    content: "\e944";
}

.k-i-files-error::before {
    content: "\e945";
}

.k-i-files-validation::before {
    content: "\e945";
}

.k-i-data-rest::before {
    content: "\e946";
}

.k-i-file-typescript::before {
    content: "\e947";
}

.k-i-table-position-start::before {
    content: "\e948";
}

.k-i-table-position-left::before {
    content: "\e948";
}

.k-i-table-position-center::before {
    content: "\e949";
}

.k-i-table-position-end::before {
    content: "\e94a";
}

.k-i-table-position-right::before {
    content: "\e94a";
}

.k-i-list-roman-upper::before {
    content: "\e94b";
}

.k-i-list-roman-lower::before {
    content: "\e94c";
}

.k-i-import::before {
    content: "\e94d";
}

.k-i-export::before {
    content: "\e94e";
}

.k-i-graph::before {
    content: "\ea00";
}

.k-i-chart-column-clustered::before {
    content: "\ea01";
}

.k-i-chart-column-stacked::before {
    content: "\ea02";
}

.k-i-chart-column-stacked100::before {
    content: "\ea03";
}

.k-i-chart-column-range::before {
    content: "\ea04";
}

.k-i-chart-bar-clustered::before {
    content: "\ea05";
}

.k-i-chart-bar-stacked::before {
    content: "\ea06";
}

.k-i-chart-bar-stacked100::before {
    content: "\ea07";
}

.k-i-chart-bar-range::before {
    content: "\ea08";
}

.k-i-chart-area-clustered::before {
    content: "\ea09";
}

.k-i-chart-area-stacked::before {
    content: "\ea0a";
}

.k-i-chart-area-stacked100::before {
    content: "\ea0b";
}

.k-i-chart-area-range::before {
    content: "\ea0c";
}

.k-i-chart-line::before {
    content: "\ea0d";
}

.k-i-chart-line-stacked::before {
    content: "\ea0e";
}

.k-i-chart-line-stacked100::before {
    content: "\ea0f";
}

.k-i-chart-line-markers::before {
    content: "\ea10";
}

.k-i-chart-line-stacked-markers::before {
    content: "\ea11";
}

.k-i-chart-line-stacked100-markers::before {
    content: "\ea12";
}

.k-i-chart-pie::before {
    content: "\ea13";
}

.k-i-chart-doughnut::before {
    content: "\ea14";
}

.k-i-chart-scatter::before {
    content: "\ea15";
}

.k-i-chart-scatter-smooth-lines-markers::before {
    content: "\ea16";
}

.k-i-chart-scatter-smooth-lines::before {
    content: "\ea17";
}

.k-i-chart-scatter-straight-lines-markers::before {
    content: "\ea18";
}

.k-i-chart-scatter-straight-lines::before {
    content: "\ea19";
}

.k-i-chart-bubble::before {
    content: "\ea1a";
}

.k-i-chart-candlestick::before {
    content: "\ea1b";
}

.k-i-chart-ohlc::before {
    content: "\ea1c";
}

.k-i-chart-radar::before {
    content: "\ea1d";
}

.k-i-chart-radar-markers::before {
    content: "\ea1e";
}

.k-i-chart-radar-filled::before {
    content: "\ea1f";
}

.k-i-chart-rose::before {
    content: "\ea20";
}

.k-i-chart-choropleth::before {
    content: "\ea21";
}

.k-icon-wrap {
    flex: none;
    display: inline-flex;
    flex-flow: row nowrap;
    gap: 0;
    align-items: center;
    align-self: flex-start;
    vertical-align: middle;
    position: relative;
}

.k-icon-wrap::before {
    content: "\200b";
    width: 0;
    overflow: hidden;
    flex: none;
    display: inline-block;
    vertical-align: top;
}

.k-icon-wrapper-host {
    display: contents;
}

.k-icon-with-modifier {
    position: relative;
    margin: .25em;
}

.k-icon-modifier {
    position: absolute;
    font-size: .5em;
    bottom: 0;
    right: 0;
    margin: 0 -.5em -.5em 0;
}

.k-i-none::before {
    content: "";
    display: none;
}

.k-icon-action {
    padding: 0.25rem;
    cursor: pointer;
}

.k-rtl .k-i-indent-increase,
.k-rtl .k-i-indent-decrease,
.k-rtl .k-i-caret-alt-right,
.k-rtl .k-i-caret-alt-left,
[dir="rtl"] .k-i-caret-alt-right,
[dir="rtl"] .k-i-caret-alt-left {
    transform: scaleX(-1);
}

.k-sprite {
    display: inline-block;
    width: 16px;
    height: 16px;
    overflow: hidden;
    background-repeat: no-repeat;
    font-size: 0;
    line-height: 0;
    text-align: center;
}

.k-image {
    display: inline-block;
}

.k-messagebox {
    margin: 0 0 1rem 0;
    padding-block: 0.5rem;
    padding-inline: 1rem;
    border-width: 0 0 0 4px;
    border-style: solid;
    box-sizing: border-box;
    font-size: 1rem;
    line-height: 1.5;
}

.k-messagebox a {
    color: inherit;
    font-style: normal;
    text-decoration: underline;
}

.k-messagebox-primary {
    border-color: #bbd6fe;
    color: #073984;
    background-color: #cfe2ff;
}

.k-messagebox-secondary {
    border-color: #d6d8db;
    color: #383d41;
    background-color: #e2e3e5;
}

.k-messagebox-tertiary {
    border-color: #d7caee;
    color: #3a2264;
    background-color: #e2d9f3;
}

.k-messagebox-info {
    border-color: #bbf0fb;
    color: #07697d;
    background-color: #cff4fc;
}

.k-messagebox-success {
    border-color: #bfddcf;
    color: #0d462c;
    background-color: #d1e7dd;
}

.k-messagebox-warning {
    border-color: #ffeeba;
    color: #856404;
    background-color: #fff3cd;
}

.k-messagebox-error {
    border-color: #f5c6cb;
    color: #721c24;
    background-color: #f8d7da;
}

.k-messagebox-dark {
    border-color: #c1c2c3;
    color: #111315;
    background-color: #d3d3d4;
}

.k-messagebox-light {
    border-color: #fdfdfe;
    color: #818182;
    background-color: #fefefe;
}

.k-messagebox-inverse {
    border-color: #c1c2c3;
    color: #111315;
    background-color: #d3d3d4;
}

.k-drag-clue {
    border-radius: 0.375rem;
    padding-block: 0.375rem;
    padding-inline: 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", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    line-height: 1.5;
    display: inline-flex;
    flex-flow: row nowrap;
    align-items: center;
    align-content: center;
    white-space: nowrap;
    overflow: hidden;
    position: absolute;
    z-index: 20000;
    cursor: move;
}

.k-drag-status,
.k-drag-clue .k-drag-status {
    margin: 0;
    margin-right: .4ex;
}

.k-drop-hint {
    display: flex;
    gap: 4px;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    z-index: 1000;
    transform: translate(-50%, -50%);
}

.k-drop-hint-start,
.k-drop-hint-end {
    flex-shrink: 0;
    border-width: 4px;
    border-style: solid;
    border-color: transparent;
}

.k-drop-hint-line {
    flex-grow: 1;
    background-color: #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 {
    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-reorder-cue {
    position: absolute;
}

.k-reorder-cue::before, .k-reorder-cue::after {
    content: "";
    width: 0;
    height: 0;
    border: 3px solid transparent;
    position: absolute;
    transform: translateX(-50%);
}

.k-reorder-cue::before {
    border-bottom-width: 0;
    border-top-color: currentColor;
    top: -4px;
}

.k-reorder-cue::after {
    border-top-width: 0;
    border-bottom-color: currentColor;
    bottom: -4px;
}

.k-drag-clue {
    border-color: #0c65e9;
    color: #ffffff;
    background-color: #0d6efd;
}

.k-checkbox {
    margin: 0;
    padding: 0;
    line-height: initial;
    border-width: 1px;
    border-style: solid;
    outline: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    flex: none;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
    -webkit-appearance: none;
}

.k-checkbox:checked,
.k-checkbox.k-checked {
    background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 20 20%27%3e%3cpath fill=%27none%27 stroke=%27white%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%273%27 d=%27M6 10l3 3l6-6%27/%3e%3c/svg%3e");
}

.k-checkbox:indeterminate,
.k-checkbox.k-indeterminate {
    background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 20 20%27%3e%3cpath fill=%27none%27 stroke=%27white%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%273%27 d=%27M6 10h8%27/%3e%3c/svg%3e");
}

.k-checkbox:disabled,
.k-checkbox.k-disabled {
    outline: none;
    cursor: default;
    opacity: 0.65;
    filter: grayscale(0.1);
    pointer-events: none;
    box-shadow: none;
}

.k-checkbox-wrap {
    flex: none;
    display: inline-flex;
    flex-flow: row nowrap;
    gap: 0;
    align-items: center;
    align-self: flex-start;
    vertical-align: middle;
    position: relative;
}

.k-checkbox-wrap::before {
    content: "\200b";
    width: 0px;
    overflow: hidden;
    flex: none;
    display: inline-block;
    vertical-align: top;
}

.k-checkbox-label {
    margin: 0;
    padding: 0;
    display: inline-flex;
    align-items: flex-start;
    gap: 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;
    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: flex;
    flex-flow: column nowrap;
    gap: 0;
    list-style: none;
}

.k-checkbox-item,
.k-checkbox-list-item {
    padding-block: 0.25rem;
    padding-inline: 0px;
    display: flex;
    flex-flow: row nowrap;
    align-items: 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: flex;
    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, transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(-50%, -50%) scale(0);
    transform-origin: center center;
}

.k-ripple-container .k-checkbox:focus,
.k-ripple-container .k-checkbox.k-focus {
    box-shadow: none !important;
}

.k-ripple-container .k-checkbox:disabled::after,
.k-ripple-container .k-checkbox.k-disabled::after {
    display: none;
}

.k-checkbox-sm {
    width: 0.75rem;
    height: 0.75rem;
}

.k-checkbox-sm::before {
    font-size: 0.625rem;
}

.k-ripple-container .k-checkbox-sm::after {
    width: 300%;
    height: 300%;
}

.k-checkbox-md {
    width: 1rem;
    height: 1rem;
}

.k-checkbox-md::before {
    font-size: 0.875rem;
}

.k-ripple-container .k-checkbox-md::after {
    width: 300%;
    height: 300%;
}

.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: 300%;
    height: 300%;
}

.k-checkbox.k-rounded-sm {
    border-radius: 0.125rem;
}

.k-checkbox.k-rounded-md {
    border-radius: 0.25rem;
}

.k-checkbox.k-rounded-lg {
    border-radius: 0.375rem;
}

.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: flex;
    flex-flow: column nowrap;
}

.k-list-container > .k-list {
    flex: 1;
    height: 100%;
}

.k-list {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-flow: column nowrap;
    outline: none;
    position: relative;
    overflow: hidden;
}

.k-list *,
.k-list *::before,
.k-list *::after {
    box-sizing: border-box;
}

.k-popup > .k-list {
    height: 100%;
    border-width: 0;
}

.k-list-group-sticky-header {
    border-width: 0;
    border-width: 0 0 1px;
    border-style: solid;
    font-weight: bold;
    white-space: nowrap;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    flex: none;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

.k-list-content {
    border-color: inherit;
    flex: 1 1 auto;
    overflow: hidden;
    overflow-y: auto;
    position: relative;
}

.k-list-ul {
    margin: 0;
    padding: 0;
    border-width: 0;
    border-color: inherit;
    height: auto;
    list-style: none;
}

.k-list-item, .k-list-optionlabel {
    border: 0;
    outline: none;
    cursor: pointer;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    align-content: center;
    gap: 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: flex;
    flex-flow: row nowrap;
    align-items: center;
    align-content: center;
    gap: 0.5rem;
    position: relative;
}

.k-list-item-group-label {
    padding-block: 0;
    padding-inline: .5em;
    font-size: .75em;
    position: absolute;
    top: 0;
    inset-inline-end: 0;
}

.k-virtual-content,
.k-virtual-list .k-list-content {
    overflow-y: scroll;
}

.k-virtual-list .k-list-item, .k-virtual-list .k-list-optionlabel,
.k-virtual-list .k-list-group-item,
.k-virtual-content .k-list-item,
.k-virtual-content .k-list-optionlabel,
.k-virtual-content .k-list-group-item {
    position: absolute;
    width: 100%;
}

.k-virtual-list .k-list-item-text,
.k-virtual-list .k-list-header-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.k-virtual-list .k-list-optionlabel {
    position: relative;
}

.k-list-filter {
    display: block;
    position: relative;
    padding: 1rem;
    box-sizing: border-box;
    flex: none;
}

.k-list-sm {
    font-size: 0.875rem;
    line-height: 1.4285714286;
}

.k-list-sm .k-list-group-sticky-header {
    padding-block: 0.25rem;
    padding-inline: 1rem;
}

.k-list-sm .k-list-item, .k-list-sm .k-list-optionlabel {
    padding-block: 0.25rem;
    padding-inline: 1rem;
}

.k-list-sm .k-list-group-item {
    padding-block: 0.125rem;
    padding-inline: 1rem;
}

.k-list-md {
    font-size: 1rem;
    line-height: 1.5;
}

.k-list-md .k-list-group-sticky-header {
    padding-block: 0.25rem;
    padding-inline: 1rem;
}

.k-list-md .k-list-item, .k-list-md .k-list-optionlabel {
    padding-block: 0.25rem;
    padding-inline: 1rem;
}

.k-list-md .k-list-group-item {
    padding-block: 0.25rem;
    padding-inline: 1rem;
}

.k-list-lg {
    font-size: 1rem;
    line-height: 1.5;
}

.k-list-lg .k-list-group-sticky-header {
    padding-block: 0.5rem;
    padding-inline: 1rem;
}

.k-list-lg .k-list-item, .k-list-lg .k-list-optionlabel {
    padding-block: 0.5rem;
    padding-inline: 1rem;
}

.k-list-lg .k-list-group-item {
    padding-block: 0.375rem;
    padding-inline: 1rem;
}

.k-no-data, .k-nodata {
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: lighter;
    text-align: center;
    white-space: normal;
}

.k-list {
    border-color: #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;
}

.k-listgroup {
    border-radius: 0.25rem;
    margin: 0;
    padding: 0;
    border-width: 1px;
    border-style: solid;
    font-size: 1rem;
    line-height: 1.5;
    list-style: none;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.k-listgroup > ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
}

.k-listgroup .k-listgroup-item + .k-listgroup-item {
    border-top-width: 1px;
}

.k-listgroup-flush {
    border-radius: 0;
    border-left-width: 0;
    border-right-width: 0;
}

.k-listgroup-item {
    padding-block: 0.5rem;
    padding-inline: 1rem;
    border-width: 0;
    border-style: solid;
    border-color: inherit;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex: 0 0 auto;
    position: relative;
}

.k-listgroup-item > .k-link {
    margin-block: -0.5rem;
    margin-inline: -1rem;
    padding-block: 0.5rem;
    padding-inline: 1rem;
    color: inherit;
    text-decoration: none;
    outline: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex: 1 1 auto;
    position: relative;
}

.k-listgroup-item > .k-link > .k-select {
    padding: 0.5rem;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.k-listgroup-item-segmented {
    align-items: stretch;
}

.k-listgroup-item-segmented > .k-link {
    margin-right: 0;
}

.k-listgroup-item-segmented > .k-select {
    margin: -0.5rem -1rem -0.5rem 0;
    padding: 0.5rem;
    border-width: 0 0 0 1px;
    border-style: solid;
    border-color: inherit;
    cursor: pointer;
}

.k-listgroup-form-row {
    margin-block: -0.5rem;
    margin-inline: -1rem;
    padding-block: 0.5rem;
    padding-inline: 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex: 1 1 auto;
    position: relative;
}

.k-listgroup-form-row .k-listgroup-form-field-label {
    width: 40%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.k-listgroup-form-row .k-listgroup-form-field-wrapper {
    width: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    text-align: end;
    position: relative;
}

.k-listgroup-form-row .k-listgroup-form-field-wrapper select,
.k-listgroup-form-row .k-listgroup-form-field-wrapper input[type="text"],
.k-listgroup-form-row .k-listgroup-form-field-wrapper input[type="password"],
.k-listgroup-form-row .k-listgroup-form-field-wrapper input[type="date"],
.k-listgroup-form-row .k-listgroup-form-field-wrapper input[type="time"],
.k-listgroup-form-row .k-listgroup-form-field-wrapper input[type="datetime-local"],
.k-listgroup-form-row .k-listgroup-form-field-wrapper input[type="number"],
.k-listgroup-form-row .k-listgroup-form-field-wrapper textarea {
    width: 100%;
    box-sizing: border-box;
    flex: 1 1 100%;
}

.k-listgroup-form-row .k-listgroup-form-field-wrapper textarea {
    min-height: 4em;
    resize: vertical;
}

.k-listgroup-item.k-listgroup-form-row {
    margin: 0;
}

[dir="rtl"] .k-listgroup-item > .k-link > .k-select {
    right: auto;
    left: 0;
}

[dir="rtl"] .k-listgroup-item > .k-link > .k-select .k-icon,
[dir="rtl"] .k-listgroup-item > .k-link > .k-select .k-svg-icon {
    transform: scaleX(-1);
}

[dir="rtl"] .k-listgroup-item-segmented > .k-link {
    margin-right: -1rem;
    margin-left: 0;
}

[dir="rtl"] .k-listgroup-item-segmented > .k-select {
    margin-right: 0;
    margin-left: -1rem;
    border-right-width: 1px;
    border-left-width: 0;
}

[dir="rtl"] .k-listgroup-item-segmented > .k-select .k-icon,
[dir="rtl"] .k-listgroup-item-segmented > .k-select .k-svg-icon {
    transform: scaleX(-1);
}

.k-noflexbox .k-listgroup,
.k-noflexbox .k-listgroup > ul .k-listgroup-item,
.k-noflexbox .k-listgroup-item > .k-link {
    display: block;
}

.k-listgroup {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-overlay {
    width: 100%;
    height: 100%;
    opacity: 0.5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10001;
}

.k-overlay {
    background-color: #000000;
}

.k-overlay-primary {
    background-color: #0d6efd;
}

.k-overlay-secondary {
    background-color: #6c757d;
}

.k-overlay-tertiary {
    background-color: #6f42c1;
}

.k-overlay-info {
    background-color: #0dcaf0;
}

.k-overlay-success {
    background-color: #198754;
}

.k-overlay-warning {
    background-color: #ffc107;
}

.k-overlay-error {
    background-color: #dc3545;
}

.k-overlay-dark {
    background-color: #212529;
}

.k-overlay-light {
    background-color: #f8f9fa;
}

.k-overlay-inverse {
    background-color: #212529;
}

.k-popup {
    border-radius: 0.375rem;
    margin: 0;
    padding: 0;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    font-size: 1rem;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.k-popup .k-item {
    outline: none;
}

.k-animation-container {
    border-radius: 0 0 0.375rem 0.375rem;
}

.k-animation-container-shown {
    overflow: visible;
}

.k-popup > .k-colorpalette {
    padding-block: 0.5rem;
    padding-inline: 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.375rem 0.375rem;
}

.k-ripple-target {
    position: relative;
}

.k-ripple {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.k-ripple-blob {
    pointer-events: none;
    position: absolute;
    border-radius: 50%;
    padding: 0;
    transform: translate(-50%, -50%) scale(0);
    transition: opacity 100ms linear, transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
    opacity: .1;
    background-color: currentColor;
}

.k-primary .k-ripple-blob {
    opacity: .2;
}

.k-ripple-focus::after {
    visibility: visible;
    animation: ripple 600ms ease-out;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0);
    }
    20% {
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
    }
}

.k-table {
    width: 100%;
    max-width: none;
    border-width: 1px;
    border-style: solid;
    text-align: start;
    border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
    outline: none;
}

.k-data-table {
    border-width: 1px;
    border-style: solid;
}

.k-data-table .k-table {
    table-layout: fixed;
}

.k-table-thead,
.k-table-tbody,
.k-table-tfoot,
.k-table-row,
.k-table-alt-row {
    border-color: inherit;
    text-align: inherit;
}

.k-table-th,
.k-table-td {
    border-width: 0 0 0px 1px;
    border-style: solid;
    border-color: inherit;
    box-sizing: border-box;
    font-weight: normal;
    text-align: inherit;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: table-cell;
    overflow: hidden;
    position: relative;
}

.k-table-th:first-child,
.k-table-td:first-child {
    border-left-width: 0;
}

.k-table-th {
    border-bottom-width: 1px;
}

.k-table-header {
    padding-inline-end: var(--kendo-scrollbar-width);
    border-width: 0 0 1px 0;
    border-style: solid;
    box-sizing: border-box;
}

.k-table-header .k-table {
    border-width: 0;
}

.k-table-header-wrap {
    margin-right: -1px;
    width: 100%;
    border-width: 0 1px 0 0;
    border-style: solid;
    border-color: inherit;
    overflow: hidden;
}

.k-table-header > .k-table,
.k-table-header-wrap > .k-table {
    margin-bottom: -1px;
}

.k-table-group-sticky-header {
    flex: none;
}

.k-table-group-sticky-header .k-table-th {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    align-content: center;
}

.k-table-list {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: none;
    border-width: 0;
    display: table;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
    empty-cells: show;
    list-style: none;
    outline: none;
}

.k-table-list .k-table-row,
.k-table-list .k-table-group-row {
    width: 100%;
    box-sizing: border-box;
    display: table-row;
    position: relative;
}

.k-table-list .k-table-row.k-first {
    border-top: 1px solid currentColor;
}

.k-table-list .k-table-th,
.k-table-list .k-table-td {
    vertical-align: middle;
}

.k-table-list .k-table-group-row::before {
    content: "\200b";
    padding-inline: 0;
    width: 0;
    display: block;
    overflow: hidden;
}

.k-table-list .k-table-group-row .k-table-th {
    width: 100%;
    border-color: inherit;
    color: inherit;
    background-color: inherit;
    position: absolute;
    top: 0;
}

.k-table-list .k-table-spacer-td {
    padding: 0 !important;
    width: 0 !important;
    border-left-width: 0 !important;
    border-right-width: 0 !important;
}

.k-table-list .k-table-group-td {
    padding: 0 !important;
    width: 0 !important;
    border-left-width: 0 !important;
    border-right-width: 0 !important;
    overflow: visible;
}

.k-table-list .k-table-group-td > span {
    font-size: .75em;
    position: absolute;
    top: 0;
    right: 0;
}

.k-virtual-table .k-table-row,
.k-virtual-table .k-table-group-row {
    position: absolute;
    width: 100%;
}

.k-table-scroller {
    position: relative;
    overflow: auto;
}

.k-table-scroller > .k-table {
    border-width: 0;
}

.k-table-footer {
    padding-inline-end: var(--kendo-scrollbar-width);
    border-width: 1px 0 0 0;
    border-style: solid;
    box-sizing: border-box;
}

.k-table-footer .k-table {
    border-width: 0;
}

.k-table-footer-wrap {
    margin-right: -1px;
    width: 100%;
    border-width: 0 1px 0 0;
    border-style: solid;
    border-color: inherit;
    overflow: hidden;
}

.k-table-sm {
    font-size: 1rem;
    line-height: 1.5;
}

.k-table-sm .k-table-th,
.k-table-sm .k-table-td {
    padding-block: 0.25rem;
    padding-inline: 0.5rem;
}

.k-table-sm .k-table-list .k-table-group-td > span {
    padding-block: 0;
    padding-inline: 0.25rem;
}

.k-table-sm .k-table-list .k-table-group-row::before {
    padding-block: 0.25rem;
    padding-inline: 0;
}

.k-table-md {
    font-size: 1rem;
    line-height: 1.5;
}

.k-table-md .k-table-th,
.k-table-md .k-table-td {
    padding-block: 0.5rem;
    padding-inline: 0.5rem;
}

.k-table-md .k-table-list .k-table-group-td > span {
    padding-block: 0;
    padding-inline: 0.25rem;
}

.k-table-md .k-table-list .k-table-group-row::before {
    padding-block: 0.5rem;
    padding-inline: 0;
}

.k-table-lg {
    font-size: 1rem;
    line-height: 1.5;
}

.k-table-lg .k-table-th,
.k-table-lg .k-table-td {
    padding-block: 0.625rem;
    padding-inline: 0.5rem;
}

.k-table-lg .k-table-list .k-table-group-td > span {
    padding-block: 0;
    padding-inline: 0.25rem;
}

.k-table-lg .k-table-list .k-table-group-row::before {
    padding-block: 0.625rem;
    padding-inline: 0;
}

.k-rtl.k-table .k-table-th,
.k-rtl.k-table .k-table-td,
.k-rtl .k-table .k-table-th,
.k-rtl .k-table .k-table-td,
[dir="rtl"].k-table .k-table-th,
[dir="rtl"].k-table .k-table-td,
[dir="rtl"] .k-table .k-table-th,
[dir="rtl"] .k-table .k-table-td {
    border-left-width: 0;
    border-right-width: 1px;
}

.k-rtl.k-table .k-table-th:first-child,
.k-rtl.k-table .k-table-td:first-child,
.k-rtl .k-table .k-table-th:first-child,
.k-rtl .k-table .k-table-td:first-child,
[dir="rtl"].k-table .k-table-th:first-child,
[dir="rtl"].k-table .k-table-td:first-child,
[dir="rtl"] .k-table .k-table-th:first-child,
[dir="rtl"] .k-table .k-table-td:first-child {
    border-right-width: 0;
}

.k-rtl.k-table .k-table-header-wrap,
.k-rtl.k-table .k-table-footer-wrap,
.k-rtl .k-table .k-table-header-wrap,
.k-rtl .k-table .k-table-footer-wrap,
[dir="rtl"].k-table .k-table-header-wrap,
[dir="rtl"].k-table .k-table-footer-wrap,
[dir="rtl"] .k-table .k-table-header-wrap,
[dir="rtl"] .k-table .k-table-footer-wrap {
    margin-right: 0;
    margin-left: -1px;
    border-left-width: 1px;
    border-right-width: 0;
}

.k-rtl .k-table-list .k-table-group-td > span,
[dir="rtl"] .k-table-list .k-table-group-td > span {
    left: 0;
    right: auto;
}

.k-table,
.k-data-table {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-table-thead,
.k-table-header,
.k-table-group-sticky-header {
    border-color: #dee2e6;
    color: #212529;
    background-color: #f8f9fa;
}

.k-table-tfoot,
.k-table-footer {
    border-color: #dee2e6;
    color: #212529;
    background-color: #f8f9fa;
}

.k-table-group-row {
    border-color: #dee2e6;
    color: #212529;
    background-color: #f8f9fa;
}

.k-table-group-td > span {
    color: #ffffff;
    background-color: #212529;
}

.k-table-alt-row {
    background-color: rgba(0, 0, 0, 0.04);
}

.k-table-tbody .k-table-row:hover,
.k-table-list .k-table-row:hover,
.k-table-tbody .k-table-row.k-hover,
.k-table-list .k-table-row.k-hover {
    background-color: rgba(0, 0, 0, 0.08);
}

.k-table-tbody .k-table-row.k-focus, .k-table-tbody .k-table-row:focus,
.k-table-list .k-table-row.k-focus,
.k-table-list .k-table-row:focus,
.k-table-tbody .k-table-td.k-focus,
.k-table-tbody .k-table-td:focus,
.k-table-list .k-table-td.k-focus,
.k-table-list .k-table-td:focus {
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.08);
}

.k-table-tbody .k-table-row.k-selected > .k-table-td,
.k-table-list .k-table-row.k-selected {
    color: #212529;
    background-color: rgba(13, 110, 253, 0.25);
}

.k-virtual-scroller {
    width: 100%;
    height: 100%;
    flex: 1 1 auto;
    overflow: auto;
    position: relative;
}

.k-virtual-scroller-wrap {
    position: relative;
    z-index: 1;
}

.k-virtual-scroller-content {
    position: absolute;
    width: 100%;
    top: 0;
    inset-inline-start: 0;
}

.k-virtual-scroller-size {
    position: relative;
    z-index: 0;
}

.k-avatar {
    border-width: 0;
    border-style: solid;
    box-sizing: border-box;
    vertical-align: middle;
    display: inline-flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    overflow: hidden;
}

.k-avatar *,
.k-avatar *::before,
.k-avatar *::after {
    box-sizing: border-box;
}

.k-avatar-text,
.k-avatar-initials {
    font-size: 1rem;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    line-height: 1.5;
}

.k-avatar-icon {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.k-avatar-image {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.k-avatar-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: top;
}

.k-avatar-sm {
    width: 1rem;
    height: 1rem;
    flex-basis: 1rem;
}

.k-avatar-md {
    width: 2rem;
    height: 2rem;
    flex-basis: 2rem;
}

.k-avatar-lg {
    width: 4rem;
    height: 4rem;
    flex-basis: 4rem;
}

.k-avatar-bordered {
    border-width: 1px;
}

.k-avatar-solid-primary {
    border-color: #0d6efd;
    color: white;
    background-color: #0d6efd;
}

.k-avatar-solid-secondary {
    border-color: #6c757d;
    color: white;
    background-color: #6c757d;
}

.k-avatar-solid-tertiary {
    border-color: #6f42c1;
    color: white;
    background-color: #6f42c1;
}

.k-avatar-solid-info {
    border-color: #0dcaf0;
    color: white;
    background-color: #0dcaf0;
}

.k-avatar-solid-success {
    border-color: #198754;
    color: white;
    background-color: #198754;
}

.k-avatar-solid-warning {
    border-color: #ffc107;
    color: black;
    background-color: #ffc107;
}

.k-avatar-solid-error {
    border-color: #dc3545;
    color: white;
    background-color: #dc3545;
}

.k-avatar-solid-dark {
    border-color: #212529;
    color: white;
    background-color: #212529;
}

.k-avatar-solid-light {
    border-color: #f8f9fa;
    color: black;
    background-color: #f8f9fa;
}

.k-avatar-solid-inverse {
    border-color: #212529;
    color: white;
    background-color: #212529;
}

.k-avatar-outline {
    border-color: currentColor;
}

.k-avatar-outline-primary {
    color: #0d6efd;
}

.k-avatar-outline-secondary {
    color: #6c757d;
}

.k-avatar-outline-tertiary {
    color: #6f42c1;
}

.k-avatar-outline-info {
    color: #0dcaf0;
}

.k-avatar-outline-success {
    color: #198754;
}

.k-avatar-outline-warning {
    color: #ffc107;
}

.k-avatar-outline-error {
    color: #dc3545;
}

.k-avatar-outline-dark {
    color: #212529;
}

.k-avatar-outline-light {
    color: #f8f9fa;
}

.k-avatar-outline-inverse {
    color: #212529;
}

.k-badge {
    padding: 0;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    box-sizing: border-box;
    color: inherit;
    background-color: transparent;
    font: inherit;
    text-align: center;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    overflow: hidden;
    text-overflow: ellipsis;
}

.k-badge *,
.k-badge *::before,
.k-badge *::after {
    box-sizing: border-box;
}

.k-badge > * {
    color: inherit;
}

a.k-badge,
.k-badge > a {
    text-decoration: none;
}

a.k-badge:hover,
.k-badge > a:hover {
    text-decoration: underline;
}

.k-badge-icon {
    max-width: 1em;
    max-height: 1em;
    font-size: inherit;
}

.k-badge-icon.k-svg-icon svg {
    fill: currentColor;
}

.k-badge-sm {
    padding-block: 0.175em;
    padding-inline: 0.325em;
    font-size: 0.75em;
    line-height: 1;
    min-width: calc( 1em + 0.35em + 2px);
}

.k-badge-sm:empty {
    padding: 0.175em;
    min-width: auto;
}

.k-badge-md {
    padding-block: 0.35em;
    padding-inline: 0.65em;
    font-size: 0.75em;
    line-height: 1;
    min-width: calc( 1em + 0.7em + 2px);
}

.k-badge-md:empty {
    padding: 0.35em;
    min-width: auto;
}

.k-badge-lg {
    padding-block: 0.525em;
    padding-inline: 0.975em;
    font-size: 0.75em;
    line-height: 1;
    min-width: calc( 1em + 1.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 {
    transform: translate(-50%, -50%);
}

.k-badge-edge.k-top-end {
    transform: translate(50%, -50%);
}

.k-badge-edge.k-bottom-start {
    transform: translate(-50%, 50%);
}

.k-badge-edge.k-bottom-end {
    transform: translate(50%, 50%);
}

.k-rtl .k-badge-edge.k-top-start,
[dir="rtl"].k-badge-edge.k-top-start,
[dir="rtl"] .k-badge-edge.k-top-start {
    transform: translate(50%, -50%);
}

.k-rtl .k-badge-edge.k-top-end,
[dir="rtl"].k-badge-edge.k-top-end,
[dir="rtl"] .k-badge-edge.k-top-end {
    transform: translate(-50%, -50%);
}

.k-rtl .k-badge-edge.k-bottom-start,
[dir="rtl"].k-badge-edge.k-bottom-start,
[dir="rtl"] .k-badge-edge.k-bottom-start {
    transform: translate(50%, 50%);
}

.k-rtl .k-badge-edge.k-bottom-end,
[dir="rtl"].k-badge-edge.k-bottom-end,
[dir="rtl"] .k-badge-edge.k-bottom-end {
    transform: translate(-50%, 50%);
}

.k-badge-outside {
    position: absolute;
    z-index: 9999;
}

.k-badge-outside.k-top-start {
    transform: translate(-100%, -100%);
}

.k-badge-outside.k-top-end {
    transform: translate(100%, -100%);
}

.k-badge-outside.k-bottom-start {
    transform: translate(-100%, 100%);
}

.k-badge-outside.k-bottom-end {
    transform: translate(100%, 100%);
}

.k-rtl .k-badge-outside.k-top-start,
[dir="rtl"].k-badge-outside.k-top-start,
[dir="rtl"] .k-badge-outside.k-top-start {
    transform: translate(100%, -100%);
}

.k-rtl .k-badge-outside.k-top-end,
[dir="rtl"].k-badge-outside.k-top-end,
[dir="rtl"] .k-badge-outside.k-top-end {
    transform: translate(-100%, -100%);
}

.k-rtl .k-badge-outside.k-bottom-start,
[dir="rtl"].k-badge-outside.k-bottom-start,
[dir="rtl"] .k-badge-outside.k-bottom-start {
    transform: translate(100%, 100%);
}

.k-rtl .k-badge-outside.k-bottom-end,
[dir="rtl"].k-badge-outside.k-bottom-end,
[dir="rtl"] .k-badge-outside.k-bottom-end {
    transform: translate(-100%, 100%);
}

.k-badge-border-cutout {
    box-shadow: 0 0 0 2px #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-chip {
    padding-block: 0.25rem;
    padding-inline: 0.25rem;
    border-width: 1px;
    border-style: solid;
    outline: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    line-height: 1.25;
    display: inline-flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    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-block: .5em;
    padding-inline: 0;
    margin-block: -.5em;
    margin-inline: 0;
    min-width: 0;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    overflow: hidden;
    flex: 1 1 auto;
}

.k-chip-content .k-icon-wrapper-host {
    display: initial;
}

.k-chip-content:first-child {
    margin-inline-start: 0.25rem;
}

.k-chip-content:last-child {
    margin-inline-end: 0.25rem;
}

.k-chip-text,
.k-chip-label {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    flex: 1 1 auto;
}

.k-chip-avatar {
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    flex: none;
}

.k-chip-icon {
    font-size: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.k-chip-actions {
    margin-block: -5em;
    margin-inline: 0;
    flex: none;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    align-self: center;
}

.k-chip-action {
    flex: none;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    align-self: center;
}

.k-remove-icon {
    font-size: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.k-chip-list {
    min-width: 0px;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}

.k-chip-sm {
    padding-block: 0.125rem;
    padding-inline: 0.25rem;
    font-size: 0.875rem;
    line-height: 1.25;
}

.k-chip-avatar {
    width: 1em;
    height: 1em;
    flex-basis: 1em;
}

.k-chip-md {
    padding-block: 0.25rem;
    padding-inline: 0.25rem;
    font-size: 1rem;
    line-height: 1.25;
}

.k-chip-avatar {
    width: 1em;
    height: 1em;
    flex-basis: 1em;
}

.k-chip-lg {
    padding-block: 0.375rem;
    padding-inline: 0.25rem;
    font-size: 1rem;
    line-height: 1.25;
}

.k-chip-avatar {
    width: 1em;
    height: 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: #e4e7eb;
    color: #212529;
    background-color: #e4e7eb;
}

.k-chip-solid-base:focus, .k-chip-solid-base.k-focus {
    box-shadow: 0 0 0 2px rgba(228, 231, 235, 0.16);
}

.k-chip-solid-base:hover, .k-chip-solid-base.k-hover {
    background-color: #ced3db;
}

.k-chip-solid-base.k-selected {
    background-color: #c7cdd5;
}

.k-chip-solid-error {
    border-color: #e56874;
    color: #4d1318;
    background-color: #f8d7da;
}

.k-chip-solid-error:focus, .k-chip-solid-error.k-focus {
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.16);
}

.k-chip-solid-error:hover, .k-chip-solid-error.k-hover {
    background-color: #f3b8be;
}

.k-chip-solid-error.k-selected {
    background-color: #ee9aa2;
}

.k-chip-solid-info {
    border-color: #4ad7f4;
    color: #054754;
    background-color: #cff4fc;
}

.k-chip-solid-info:focus, .k-chip-solid-info.k-focus {
    box-shadow: 0 0 0 2px rgba(13, 202, 240, 0.16);
}

.k-chip-solid-info:hover, .k-chip-solid-info.k-hover {
    background-color: #aaecfa;
}

.k-chip-solid-info.k-selected {
    background-color: #86e5f8;
}

.k-chip-solid-warning {
    border-color: #ffd145;
    color: #594402;
    background-color: #fff3cd;
}

.k-chip-solid-warning:focus, .k-chip-solid-warning.k-focus {
    box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.16);
}

.k-chip-solid-warning:hover, .k-chip-solid-warning.k-hover {
    background-color: #ffe9a8;
}

.k-chip-solid-warning.k-selected {
    background-color: #ffe083;
}

.k-chip-solid-success {
    border-color: #53a57f;
    color: #092f1d;
    background-color: #d1e7dd;
}

.k-chip-solid-success:focus, .k-chip-solid-success.k-focus {
    box-shadow: 0 0 0 2px rgba(25, 135, 84, 0.16);
}

.k-chip-solid-success:hover, .k-chip-solid-success.k-hover {
    background-color: #afd5c3;
}

.k-chip-solid-success.k-selected {
    background-color: #8cc3aa;
}

.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(228, 231, 235, 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: #a52834;
    color: #a52834;
    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: #a52834;
}

.k-chip-outline-error.k-selected {
    color: white;
    background-color: #a52834;
}

.k-chip-outline-info {
    border-color: #0a98b4;
    color: #0a98b4;
    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: #0a98b4;
}

.k-chip-outline-info.k-selected {
    color: white;
    background-color: #0a98b4;
}

.k-chip-outline-warning {
    border-color: #ffc107;
    color: #212529;
    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: #332701;
    background-color: #ffc107;
}

.k-chip-outline-warning.k-selected {
    color: #332701;
    background-color: #ffc107;
}

.k-chip-outline-success {
    border-color: #13653f;
    color: #13653f;
    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: #13653f;
}

.k-chip-outline-success.k-selected {
    color: white;
    background-color: #13653f;
}

.k-chip-outline-info {
    border-color: #0dcaf0;
    color: #212529;
}

.k-chip-outline-info:hover, .k-chip-outline-info.k-hover, .k-chip-outline-info.k-selected {
    color: #212529;
    background-color: #0dcaf0;
}

.k-color-preview {
    width: 100%;
    height: 100%;
    border-width: 1px;
    border-radius: 0.375rem;
    box-sizing: border-box;
    border-style: solid;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    position: relative;
    overflow: hidden;
}

.k-color-preview *,
.k-color-preview *::before,
.k-color-preview *::after {
    box-sizing: border-box;
}

.k-coloreditor-current-color {
    cursor: pointer;
}

.k-icon-color-preview {
    border-width: 0;
    border-radius: 0;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.k-icon-color-preview .k-color-preview-mask {
    width: calc( 16px - 2px);
    height: 2px;
}

.k-color-preview-mask {
    width: 100%;
    height: 100%;
    position: relative;
}

.k-color-preview-mask::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAuSURBVHgBxYyxDQAwDMJIL+YT+DjtzFRliUfLcklqBCRT4eCTxbD6kdL2/LgYXqpvCbs3kBv/AAAAAElFTkSuQmCC);
    background-size: contain;
    background-position: 0 0;
}

.k-no-color .k-color-preview-mask::before {
    content: "";
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2720%27 height=%2720%27 version=%271.1%27%3e%3cline x1=%270%27 x2=%2720%27 y1=%270%27 y2=%2720%27 stroke=%27%23dc3545%27 stroke-width=%271%27/%3e%3c/svg%3e");
    background-size: 100% 100%;
    background-position: 0 0;
}

.k-color-preview {
    border-color: #dee2e6;
}

.k-color-preview:hover, .k-color-preview.k-hover {
    border-color: #d6d9dc;
}

.k-loader {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box;
    line-height: 0;
}

.k-loader-canvas {
    display: flex;
    position: relative;
}

.k-loader-segment {
    border-radius: 50%;
    background-color: currentColor;
    position: absolute;
}

.k-loader-sm {
    padding: 0.125rem;
}

.k-loader-sm .k-loader-segment {
    width: 0.25rem;
    height: 0.25rem;
}

.k-loader-md {
    padding: 0.25rem;
}

.k-loader-md .k-loader-segment {
    width: 0.5rem;
    height: 0.5rem;
}

.k-loader-lg {
    padding: 0.5rem;
}

.k-loader-lg .k-loader-segment {
    width: 1rem;
    height: 1rem;
}

@keyframes pulsing-2-segment {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1);
    }
}

.k-loader-pulsing-2 .k-loader-canvas {
    align-items: center;
}

.k-loader-pulsing-2 .k-loader-segment:nth-child(1) {
    left: 0;
    transform: scale(1.5);
    transform-origin: 0 50%;
    animation: pulsing-2-segment 1s ease infinite;
    animation-delay: -.5s;
}

.k-loader-pulsing-2 .k-loader-segment:nth-child(2) {
    right: 0;
    transform-origin: 100% 50%;
    animation: pulsing-2-segment 1s ease infinite;
}

.k-loader-pulsing-2.k-loader-sm .k-loader-canvas {
    width: 0.75rem;
    height: 0.375rem;
}

.k-loader-pulsing-2.k-loader-md .k-loader-canvas {
    width: 1.5rem;
    height: 0.75rem;
}

.k-loader-pulsing-2.k-loader-lg .k-loader-canvas {
    width: 3rem;
    height: 1.5rem;
}

@keyframes spinner-3-segment {
    0% {
        top: 0;
        left: 50%;
    }
    33.3333% {
        top: 100%;
        left: 0;
    }
    66.6666% {
        top: 100%;
        left: 100%;
    }
    100% {
        top: 0;
        left: 50%;
    }
}

.k-loader-spinner-3 .k-loader-segment {
    transform: translate(-50%, -50%);
}

.k-loader-spinner-3 .k-loader-segment:nth-child(1) {
    top: 0;
    left: 50%;
    animation: spinner-3-segment 2s ease infinite;
}

.k-loader-spinner-3 .k-loader-segment:nth-child(2) {
    top: 100%;
    left: 0;
    animation: spinner-3-segment 2s ease infinite;
    animation-delay: calc( -2s / 3);
}

.k-loader-spinner-3 .k-loader-segment:nth-child(3) {
    top: 100%;
    left: 100%;
    animation: spinner-3-segment 2s ease infinite;
    animation-delay: calc( -4s / 3);
}

.k-loader-spinner-3.k-loader-sm .k-loader-canvas {
    margin: 0.125rem;
    width: calc( 1rem - 0.25rem);
    height: calc( 0.8660254038rem - 0.25rem);
}

.k-loader-spinner-3.k-loader-md .k-loader-canvas {
    margin: 0.25rem;
    width: calc( 2rem - 0.5rem);
    height: calc( 1.7320508076rem - 0.5rem);
}

.k-loader-spinner-3.k-loader-lg .k-loader-canvas {
    margin: 0.5rem;
    width: calc( 4rem - 1rem);
    height: calc( 3.4641016152rem - 1rem);
}

@keyframes spinner-4-segment-1 {
    0% {
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }
    33.3% {
        top: 0;
        left: 0;
        transform: translateX(0) translateY(0);
    }
    66.6% {
        top: 0;
        left: 0;
        transform: translateX(0) translateY(0);
    }
    100% {
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }
}

@keyframes spinner-4-segment-2 {
    0% {
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }
    33.3% {
        top: 0;
        left: 100%;
        transform: translateX(-100%) translateY(0);
    }
    66.6% {
        top: 0;
        left: 100%;
        transform: translateX(-100%) translateY(0);
    }
    100% {
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }
}

@keyframes spinner-4-segment-3 {
    0% {
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }
    33.3% {
        top: 100%;
        left: 100%;
        transform: translateX(-100%) translateY(-100%);
    }
    66.6% {
        top: 100%;
        left: 100%;
        transform: translateX(-100%) translateY(-100%);
    }
    100% {
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }
}

@keyframes spinner-4-segment-4 {
    0% {
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }
    33.3% {
        top: 100%;
        left: 0;
        transform: translateX(0) translateY(-100%);
    }
    66.6% {
        top: 100%;
        left: 0;
        transform: translateX(0) translateY(-100%);
    }
    100% {
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }
}

@keyframes spinner-4 {
    0% {
        transform: rotate(0);
    }
    33.3% {
        transform: rotate(0);
    }
    66.6% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(180deg);
    }
}

.k-loader-spinner-4 .k-loader-canvas {
    animation: spinner-4 1.833s ease infinite;
}

.k-loader-spinner-4 .k-loader-segment {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.k-loader-spinner-4 .k-loader-segment:nth-child(1) {
    animation: spinner-4-segment-1 1.833s ease infinite;
}

.k-loader-spinner-4 .k-loader-segment:nth-child(2) {
    animation: spinner-4-segment-2 1.833s ease infinite;
}

.k-loader-spinner-4 .k-loader-segment:nth-child(3) {
    animation: spinner-4-segment-3 1.833s ease infinite;
}

.k-loader-spinner-4 .k-loader-segment:nth-child(4) {
    animation: spinner-4-segment-4 1.833s ease infinite;
}

.k-loader-spinner-4.k-loader-sm .k-loader-canvas {
    width: 1rem;
    height: 1rem;
}

.k-loader-spinner-4.k-loader-md .k-loader-canvas {
    width: 2rem;
    height: 2rem;
}

.k-loader-spinner-4.k-loader-lg .k-loader-canvas {
    width: 4rem;
    height: 4rem;
}

.k-loader-container {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2001;
}

.k-loader-container .k-loader {
    padding: 0;
}

.k-loader-container,
.k-loader-container-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.k-loader-container-overlay {
    opacity: 0.5;
}

.k-loader-container-inner {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.k-loader-container-panel {
    border-width: 1px;
    border-style: solid;
    border-radius: 0.375rem;
}

.k-loader-container-sm .k-loader-container-inner {
    padding: 1rem;
    gap: 0.25rem;
}

.k-loader-container-sm .k-loader-container-label {
    font-size: 0.875rem;
}

.k-loader-container-md .k-loader-container-inner {
    padding: 1.25rem;
    gap: 0.5rem;
}

.k-loader-container-md .k-loader-container-label {
    font-size: 1rem;
}

.k-loader-container-lg .k-loader-container-inner {
    padding: 1.5rem;
    gap: 0.75rem;
}

.k-loader-container-lg .k-loader-container-label {
    font-size: 1.25rem;
}

.k-loader-top .k-loader-container-inner {
    flex-direction: column;
    text-align: center;
}

.k-loader-end .k-loader-container-label {
    order: -1;
}

.k-loading-mask,
.k-loading-image,
.k-loading-color {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
}

.k-loading-mask *,
.k-loading-mask *::before,
.k-loading-mask *::after, .k-loading-mask::before, .k-loading-mask::after,
.k-loading-image *,
.k-loading-image *::before,
.k-loading-image *::after,
.k-loading-image::before,
.k-loading-image::after,
.k-loading-color *,
.k-loading-color *::before,
.k-loading-color *::after,
.k-loading-color::before,
.k-loading-color::after {
    box-sizing: border-box;
}

.k-loading-mask {
    z-index: 100;
}

.k-loading-mask.k-opaque .k-loading-color {
    opacity: 1;
}

.k-loading-text {
    text-indent: -4000px;
    text-align: center;
    position: absolute;
    color: currentColor;
}

.k-loading-image {
    z-index: 2;
    color: currentColor;
}

.k-loading-color {
    background-color: #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;
    animation: k-loading-animation .7s linear infinite;
}

.k-i-loading::after,
.k-loading-image::after {
    margin-top: -.25em;
    margin-left: -.25em;
    width: .5em;
    height: .5em;
    animation: k-loading-animation reverse 1.4s linear infinite;
}

.k-loading-image::before,
.k-loading-image::after {
    content: "";
    border-width: 1px;
    border-width: clamp(0.015em, 1px, 1px);
    font-size: 4em;
}

@keyframes loading {
    0% {
        stroke-dasharray: 0 251;
        stroke-dashoffset: 502;
    }
    50% {
        stroke-dasharray: 250 1;
    }
    100% {
        stroke-dasharray: 0 251;
        stroke-dashoffset: 0;
    }
}

@keyframes k-loading-animation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.k-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-loader-primary {
    color: #0d6efd;
}

.k-loader-secondary {
    color: #212529;
}

.k-loader-tertiary {
    color: #6f42c1;
}

.k-loader-info {
    color: #0dcaf0;
}

.k-loader-success {
    color: #198754;
}

.k-loader-warning {
    color: #ffc107;
}

.k-loader-error {
    color: #dc3545;
}

.k-loader-dark {
    color: #212529;
}

.k-loader-light {
    color: #f8f9fa;
}

.k-loader-inverse {
    color: #212529;
}

.k-loader-container-panel {
    background-color: #ffffff;
    border-color: #dee2e6;
}

.k-loader-container-inner .k-text-secondary,
.k-loader-container-inner .\!k-text-secondary {
    color: #212529 !important;
}

.k-skeleton, .k-placeholder-line {
    display: block;
}

.k-skeleton-text, .k-placeholder-line {
    border-radius: 0.375rem;
    transform: scale(1, 0.6);
}

.k-skeleton-text:empty::before, .k-placeholder-line:empty::before {
    content: "\200b";
}

.k-skeleton-rect {
    border-radius: 0;
}

.k-skeleton-circle {
    border-radius: 9999px;
}

@keyframes k-skeleton-wave {
    0% {
        transform: translateX(-100%);
    }
    60% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.k-skeleton-wave .k-skeleton, .k-skeleton-wave .k-placeholder-line, .k-skeleton-wave.k-skeleton, .k-skeleton-wave.k-placeholder-line {
    position: relative;
    overflow: hidden;
}

.k-skeleton-wave .k-skeleton::after, .k-skeleton-wave .k-placeholder-line::after, .k-skeleton-wave.k-skeleton::after, .k-skeleton-wave.k-placeholder-line::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    animation: k-skeleton-wave 1.6s linear .5s infinite;
}

@keyframes k-skeleton-pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: .4;
    }
    100% {
        opacity: 1;
    }
}

.k-skeleton-pulse .k-skeleton, .k-skeleton-pulse .k-placeholder-line, .k-skeleton-pulse.k-skeleton, .k-skeleton-pulse.k-placeholder-line {
    animation: k-skeleton-pulse 1.5s ease-in-out .5s infinite;
}

.k-skeleton, .k-placeholder-line {
    background-color: rgba(33, 37, 41, 0.2);
}

.k-skeleton-wave .k-skeleton::after, .k-skeleton-wave .k-placeholder-line::after, .k-skeleton-wave.k-skeleton::after, .k-skeleton-wave.k-placeholder-line::after {
    background-image: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.04), transparent);
}

.k-button {
    box-sizing: border-box;
    border-width: 1px;
    border-style: solid;
    color: inherit;
    background: none;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    vertical-align: middle;
    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;
    filter: grayscale(0.1);
    pointer-events: none;
    box-shadow: none;
}

.k-button::-moz-focus-inner {
    padding: 0;
    border: 0;
    outline: 0;
}

.k-button:hover, .k-button:focus {
    text-decoration: none;
    outline: 0;
}

.k-icon-button {
    gap: 0;
}

.k-icon-button .k-icon {
    display: inline-flex;
}

.k-button-icon {
    color: inherit;
    align-self: center;
    position: relative;
}

.k-button-sm {
    padding-block: 0.25rem;
    padding-inline: 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: calc( 0.875rem * 1.4285714286);
    min-height: calc( 0.875rem * 1.4285714286);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.k-button-sm.k-icon-button .k-button-icon.k-svg-icon > svg,
.k-button-sm.k-icon-button .k-button-icon.k-icon-md > svg {
    width: 16px;
    height: 16px;
}

.k-button-sm.k-icon-button .k-button-icon.k-icon-xs > svg {
    width: calc( 16px * .75);
    height: calc( 16px * .75);
}

.k-button-sm.k-icon-button .k-button-icon.k-icon-sm > svg {
    width: calc( 16px * .875);
    height: calc( 16px * .875);
}

.k-button-sm.k-icon-button .k-button-icon.k-icon-lg > svg {
    width: calc( 16px * 1.25);
    height: calc( 16px * 1.25);
}

.k-button-sm.k-icon-button .k-button-icon.k-icon-xl > svg {
    width: calc( 16px * 1.5);
    height: calc( 16px * 1.5);
}

.k-button-sm.k-icon-button .k-button-icon.k-icon-xxl > svg {
    width: calc( 16px * 2);
    height: calc( 16px * 2);
}

.k-button-sm.k-icon-button .k-button-icon.k-icon-xxxl > svg {
    width: calc( 16px * 3);
    height: calc( 16px * 3);
}

.k-button-md {
    padding-block: 0.375rem;
    padding-inline: 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: calc( 1rem * 1.5);
    min-height: calc( 1rem * 1.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.k-button-md.k-icon-button .k-button-icon.k-svg-icon > svg,
.k-button-md.k-icon-button .k-button-icon.k-icon-md > svg {
    width: 16px;
    height: 16px;
}

.k-button-md.k-icon-button .k-button-icon.k-icon-xs > svg {
    width: calc( 16px * .75);
    height: calc( 16px * .75);
}

.k-button-md.k-icon-button .k-button-icon.k-icon-sm > svg {
    width: calc( 16px * .875);
    height: calc( 16px * .875);
}

.k-button-md.k-icon-button .k-button-icon.k-icon-lg > svg {
    width: calc( 16px * 1.25);
    height: calc( 16px * 1.25);
}

.k-button-md.k-icon-button .k-button-icon.k-icon-xl > svg {
    width: calc( 16px * 1.5);
    height: calc( 16px * 1.5);
}

.k-button-md.k-icon-button .k-button-icon.k-icon-xxl > svg {
    width: calc( 16px * 2);
    height: calc( 16px * 2);
}

.k-button-md.k-icon-button .k-button-icon.k-icon-xxxl > svg {
    width: calc( 16px * 3);
    height: calc( 16px * 3);
}

.k-button-lg {
    padding-block: 0.5rem;
    padding-inline: 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: calc( 1rem * 1.5);
    min-height: calc( 1rem * 1.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.k-button-lg.k-icon-button .k-button-icon.k-svg-icon > svg,
.k-button-lg.k-icon-button .k-button-icon.k-icon-md > svg {
    width: 16px;
    height: 16px;
}

.k-button-lg.k-icon-button .k-button-icon.k-icon-xs > svg {
    width: calc( 16px * .75);
    height: calc( 16px * .75);
}

.k-button-lg.k-icon-button .k-button-icon.k-icon-sm > svg {
    width: calc( 16px * .875);
    height: calc( 16px * .875);
}

.k-button-lg.k-icon-button .k-button-icon.k-icon-lg > svg {
    width: calc( 16px * 1.25);
    height: calc( 16px * 1.25);
}

.k-button-lg.k-icon-button .k-button-icon.k-icon-xl > svg {
    width: calc( 16px * 1.5);
    height: calc( 16px * 1.5);
}

.k-button-lg.k-icon-button .k-button-icon.k-icon-xxl > svg {
    width: calc( 16px * 2);
    height: calc( 16px * 2);
}

.k-button-lg.k-icon-button .k-button-icon.k-icon-xxxl > svg {
    width: calc( 16px * 3);
    height: calc( 16px * 3);
}

.k-button-square {
    aspect-ratio: 1;
}

.k-button-group {
    margin: 0;
    padding: 0;
    border-width: 0;
    box-sizing: border-box;
    list-style: none;
    outline: 0;
    display: inline-flex;
    flex-flow: row nowrap;
    vertical-align: middle;
    position: relative;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-button-group > .k-button + .k-button {
    margin-inline-start: -1px;
}

.k-button-group > .k-button:hover,
.k-button-group > .k-button.k-hover,
.k-button-group > .k-button:focus,
.k-button-group > .k-button.k-focus,
.k-button-group > .k-button:active,
.k-button-group > .k-button.k-active,
.k-button-group > .k-button.k-selected {
    z-index: 2;
}

.k-button-group .k-button:not(:first-child):not(:last-child) {
    border-start-end-radius: 0;
    border-end-end-radius: 0;
    border-start-start-radius: 0;
    border-end-start-radius: 0;
}

.k-button-group > .k-button:first-child:not(:only-child) {
    border-start-end-radius: 0;
    border-end-end-radius: 0;
}

.k-button-group > .k-button:last-child:not(:only-child) {
    border-start-start-radius: 0;
    border-end-start-radius: 0;
}

.k-button-group:disabled, .k-button-group[disabled], .k-button-group.k-disabled {
    opacity: 1;
    filter: none;
}

.k-button-group-stretched {
    width: 100%;
}

.k-button-group-stretched > * {
    flex: 1 0 0%;
    overflow: hidden;
}

.k-button-flat {
    border-color: transparent !important;
    color: inherit;
    background: none !important;
    box-shadow: none !important;
}

.k-button-flat::before {
    display: block !important;
}

.k-button-flat::after {
    box-shadow: inset 0 0 0 2px currentColor;
    display: block !important;
}

.k-button-flat:focus::after, .k-button-flat.k-focus::after {
    opacity: 0.12;
}

.k-button-outline {
    border-color: currentColor;
    color: inherit;
    background: none;
}

.k-button-link {
    border-color: transparent;
    color: inherit;
    text-decoration: none;
    background: none;
}

.k-button-link:hover, .k-button-link.k-hover {
    text-decoration: underline;
}

.k-button-clear {
    border-color: transparent !important;
    color: inherit;
    background: none !important;
    box-shadow: none !important;
}

.k-button-overlay, .k-button::before {
    border-radius: inherit;
    content: "";
    background: currentColor;
    opacity: 0;
    display: none;
    pointer-events: none;
    position: absolute;
    left: -1px;
    right: -1px;
    top: -1px;
    bottom: -1px;
    z-index: 0;
    transition: opacity .2s ease-in-out;
}

.k-button:hover::before, .k-button.k-hover::before {
    opacity: 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-menu-bar, .k-menu {
    border-width: 0px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    line-height: 1.5;
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    position: relative;
    cursor: default;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-menu-bar *, .k-menu *,
.k-menu-bar *::before,
.k-menu *::before,
.k-menu-bar *::after,
.k-menu *::after {
    box-sizing: border-box;
}

.k-menu-item {
    border-width: 0;
    outline: 0;
    display: flex;
    flex-flow: column nowrap;
    flex: none;
    position: relative;
    user-select: none;
}

.k-menu-item-content {
    display: block;
    height: auto;
    overflow: visible;
}

.k-menu-item-content .k-actions, .k-menu-item-content .k-edit-buttons,
.k-menu-item-content .k-action-buttons,
.k-menu-item-content .k-columnmenu-actions, .k-menu-item-content .k-form-buttons {
    margin-top: 0;
}

.k-menu-link {
    padding-block: 0.5rem;
    padding-inline: 0.5rem;
    outline: 0;
    color: inherit;
    display: flex;
    flex-flow: row nowrap;
    flex: 1 1 auto;
    gap: 0.5rem;
    align-items: center;
    position: relative;
    white-space: nowrap;
    cursor: pointer;
}

.k-menu-link-text {
    display: flex;
    flex-flow: row nowrap;
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
}

.k-menu-expand-arrow {
    margin-inline-end: -0.5rem;
    display: inline-flex;
    flex-flow: row wrap;
    align-items: center;
    flex: none;
    position: relative;
}

.k-menu-horizontal {
    flex-direction: row;
}

.k-menu-horizontal > .k-menu-item + .k-menu-item {
    margin-left: 0;
}

.k-menu-horizontal > .k-separator {
    margin-block: 0;
    margin-inline: 0.25rem;
    width: 0;
    height: auto;
    border-width: 0 0 0 1px;
    border-style: solid;
}

.k-menu-vertical {
    flex-direction: column;
}

.k-menu-vertical > .k-menu-item + .k-menu-item {
    margin-top: 0;
}

.k-menu-vertical > .k-menu-item > .k-menu-link {
    padding-block: 0.25rem;
    padding-inline: 1rem;
    padding-right: calc( 2rem + 16px);
}

.k-menu-vertical > .k-menu-item > .k-menu-link > .k-menu-expand-arrow {
    margin-inline-start: 1rem;
    margin-inline-end: calc( -1 * (calc( 2rem + 16px) - 0.5rem));
}

.k-menu-vertical > .k-separator {
    margin-block: 0.25rem;
    margin-inline: 0;
    height: 0;
    border-width: 1px 0 0;
    border-style: solid;
    border-color: #dee2e6;
    display: block;
}

.k-menu-popup {
    box-sizing: border-box;
    border-width: 1px;
    border-style: solid;
    overflow: auto;
    max-height: 80vh;
}

.k-menu-popup *,
.k-menu-popup *::before,
.k-menu-popup *::after {
    box-sizing: border-box;
}

.k-menu-group {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-flow: column nowrap;
    position: absolute;
}

.k-menu-group .k-menu-item + .k-menu-item {
    margin-top: 0px;
}

.k-menu-group .k-separator {
    margin-block: 0.25rem;
    margin-inline: 0;
    height: 0;
    border-width: 1px 0 0;
    border-style: solid;
    border-color: #dee2e6;
    display: block;
}

.k-menu-popup .k-menu-group {
    position: relative;
}

.k-menu-group-sm {
    font-size: 1rem;
    line-height: 1.5;
}

.k-menu-group-sm .k-menu-item {
    font-size: 1rem;
    line-height: 1.5;
}

.k-menu-group-sm .k-menu-link {
    padding-block: 0.125rem;
    padding-inline: 1rem;
    padding-inline-end: calc( 2rem + 16px);
}

.k-menu-group-sm .k-menu-expand-arrow {
    margin-inline-start: 1rem;
    margin-inline-end: calc( -1 * (calc( 2rem + 16px) - 0.5rem));
}

.k-menu-group-md {
    font-size: 1rem;
    line-height: 1.5;
}

.k-menu-group-md .k-menu-item {
    font-size: 1rem;
    line-height: 1.5;
}

.k-menu-group-md .k-menu-link {
    padding-block: 0.25rem;
    padding-inline: 1rem;
    padding-inline-end: calc( 2rem + 16px);
}

.k-menu-group-md .k-menu-expand-arrow {
    margin-inline-start: 1rem;
    margin-inline-end: calc( -1 * (calc( 2rem + 16px) - 0.5rem));
}

.k-menu-group-lg {
    font-size: 1rem;
    line-height: 1.5;
}

.k-menu-group-lg .k-menu-item {
    font-size: 1rem;
    line-height: 1.5;
}

.k-menu-group-lg .k-menu-link {
    padding-block: 0.375rem;
    padding-inline: 1rem;
    padding-inline-end: calc( 2rem + 16px);
}

.k-menu-group-lg .k-menu-expand-arrow {
    margin-inline-start: 1rem;
    margin-inline-end: calc( -1 * (calc( 2rem + 16px) - 0.5rem));
}

.k-popups-wrapper {
    position: relative;
    border: 0;
    margin: 0;
    padding: 0;
}

.k-context-menu {
    margin: 0;
    border-width: 1px;
    border-style: solid;
}

.k-animation-container .k-context-menu.k-menu-horizontal {
    display: flex !important;
    flex-wrap: nowrap;
}

.k-context-menu-popup {
    z-index: 12000;
}

.k-context-menu-popup .k-context-menu {
    border-width: 0;
}

.k-popup .k-context-menu,
.k-context-menu-popup .k-context-menu {
    border-width: 0;
}

.k-menu-scroll-wrapper {
    margin: 0;
    padding: 0;
    border: 0;
    position: relative;
}

.k-menu-scroll-wrapper .k-menu {
    overflow: hidden;
    flex-wrap: nowrap;
}

.k-menu-scroll-wrapper .k-menu-scroll-button {
    border-radius: 0;
    padding: 0;
    border-width: 0;
    border-color: inherit;
    color: inherit;
    background: inherit;
    position: absolute;
}

.k-menu-scroll-wrapper .k-menu-scroll-button.k-scroll-left {
    top: 0;
    left: 0;
    height: 100%;
    width: 16px;
    border-right-width: 1px;
}

.k-menu-scroll-wrapper .k-menu-scroll-button.k-scroll-right {
    top: 0;
    right: 0;
    height: 100%;
    width: 16px;
    border-left-width: 1px;
}

.k-menu-scroll-wrapper .k-menu-scroll-button.k-scroll-up {
    top: 0;
    left: 0;
    width: 100%;
    height: 16px;
    border-bottom-width: 1px;
}

.k-menu-scroll-wrapper .k-menu-scroll-button.k-scroll-down {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 16px;
    border-top-width: 1px;
}

.k-rtl .k-menu-horizontal > .k-menu-item + .k-menu-item,
[dir="rtl"] .k-menu-horizontal > .k-menu-item + .k-menu-item {
    margin-right: 0;
    margin-left: 0;
}

.k-rtl .k-menu-vertical > .k-menu-item > .k-menu-link,
[dir="rtl"] .k-menu-vertical > .k-menu-item > .k-menu-link {
    padding-right: 1rem;
    padding-left: calc( 2rem + 16px);
}

.k-rtl .k-menu-group .k-menu-link,
[dir="rtl"] .k-menu-group .k-menu-link {
    padding-right: 1rem;
    padding-left: calc( 2rem + 16px);
}

.k-menu.k-menu-horizontal:not(.k-context-menu) {
    padding-block: 0.5rem;
}

.k-menu.k-menu-vertical:not(.k-context-menu) {
    padding-block: 0.5rem;
    padding-inline: 0;
}

.k-menu-popup .k-menu-group, .k-menu-popup
.k-menu-vertical {
    padding: 0;
}

.k-context-menu-popup > .k-popup:not(.k-menu-popup) {
    padding: 0;
}

.k-context-menu-popup .k-context-menu {
    border-radius: 0.375rem;
}

.k-context-menu-popup .k-header {
    font-size: inherit;
    font-weight: inherit;
}

.k-menu:not(.k-context-menu) {
    border-color: #dee2e6;
    color: #212529;
    background-color: #f8f9fa;
}

.k-menu:not(.k-context-menu) > .k-item {
    color: rgba(33, 37, 41, 0.5);
}

.k-menu:not(.k-context-menu) > .k-item:hover, .k-menu:not(.k-context-menu) > .k-item.k-hover {
    color: rgba(33, 37, 41, 0.7);
}

.k-menu:not(.k-context-menu) > .k-item:active, .k-menu:not(.k-context-menu) > .k-item.k-active {
    color: rgba(33, 37, 41, 0.9);
}

.k-menu:not(.k-context-menu) > .k-item:focus, .k-menu:not(.k-context-menu) > .k-item.k-focus {
    box-shadow: inset 0 0 0 3px rgba(33, 37, 41, 0.15);
}

.k-menu-group,
.k-menu.k-context-menu {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-menu-group .k-item > .k-link:hover, .k-menu-group .k-item > .k-link.k-hover,
.k-menu.k-context-menu .k-item > .k-link:hover,
.k-menu.k-context-menu .k-item > .k-link.k-hover {
    color: #16181b;
    background-color: #e9ecef;
}

.k-menu-group .k-item > .k-link:active, .k-menu-group .k-item > .k-link.k-active, .k-menu-group .k-item > .k-link.k-selected,
.k-menu.k-context-menu .k-item > .k-link:active,
.k-menu.k-context-menu .k-item > .k-link.k-active,
.k-menu.k-context-menu .k-item > .k-link.k-selected {
    color: #ffffff;
    background-color: #0d6efd;
}

.k-menu-group .k-item:focus > .k-link,
.k-menu-group .k-item.k-focus > .k-link,
.k-menu.k-context-menu .k-item:focus > .k-link,
.k-menu.k-context-menu .k-item.k-focus > .k-link {
    box-shadow: inset 0 0 0 3px rgba(33, 37, 41, 0.15);
}

.k-menu-scroll-wrapper .k-menu-scroll-button {
    border-color: #dee2e6;
    color: rgba(33, 37, 41, 0.5);
    background-color: #f8f9fa;
}

.k-menu-scroll-wrapper .k-menu-scroll-button:hover {
    color: rgba(33, 37, 41, 0.7);
}

.k-menu-scroll-wrapper .k-menu-scroll-button:hover::before {
    opacity: 0;
}

.k-toolbar {
    margin: 0;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    line-height: 1.5;
    list-style: none;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-toolbar::before {
    content: "";
    height: calc( 1.5em + 0.75rem + 2px);
}

.k-toolbar.k-toolbar-resizable {
    flex-wrap: nowrap;
}

.k-toolbar > * {
    flex-shrink: 0;
    display: inline-flex;
    align-content: center;
    vertical-align: middle;
}

.k-toolbar > * > label {
    align-self: center;
}

.k-toolbar .k-input,
.k-toolbar .k-picker {
    width: 10em;
}

.k-toolbar .k-color-picker, .k-toolbar .k-colorpicker {
    width: min-content;
}

.k-toolbar .k-toolbar-overflow-button {
    margin-inline-start: auto;
}

.k-toolbar .k-separator,
.k-toolbar .k-toolbar-separator {
    width: 0;
    height: calc( 1.5 * 1em);
    border-width: 0 0 0 1px;
    border-style: solid;
    align-self: center;
}

.k-toolbar .k-toolbar-spacer {
    height: calc( 1.5 * 1em);
    flex: 1 0 0%;
}

.k-toolbar .k-toolbar-item:focus,
.k-toolbar .k-toolbar-item.k-focus {
    text-decoration: none;
    outline: 0;
}

.k-toolbar-group {
    display: flex;
    flex-direction: inherit;
    flex-wrap: nowrap;
    gap: inherit;
}

.k-toolbar-renderer {
    display: inline-block;
    border-color: inherit;
}

.k-toolbar-sm {
    padding-block: 0.25rem;
    padding-inline: 0.25rem;
    gap: 0.375rem;
}

.k-toolbar-sm::before {
    margin-inline-start: -0.375rem;
}

.k-toolbar-sm > * > label {
    margin-inline-end: 0.375rem;
}

.k-toolbar-md {
    padding-block: 0.5rem;
    padding-inline: 0.5rem;
    gap: 0.5rem;
}

.k-toolbar-md::before {
    margin-inline-start: -0.5rem;
}

.k-toolbar-md > * > label {
    margin-inline-end: 0.5rem;
}

.k-toolbar-lg {
    padding-block: 0.625rem;
    padding-inline: 0.625rem;
    gap: 0.625rem;
}

.k-toolbar-lg::before {
    margin-inline-start: -0.625rem;
}

.k-toolbar-lg > * > label {
    margin-inline-end: 0.625rem;
}

.k-toolbar-sm::before {
    height: calc( 1.4285714286em + 0.5rem + 2px);
}

.k-toolbar-md::before {
    height: calc( 1.5em + 0.75rem + 2px);
}

.k-toolbar-lg::before {
    height: calc( 1.5em + 1rem + 2px);
}

.k-floating-toolbar,
.editorToolbarWindow.k-window-content {
    padding-block: 0.5rem !important;
    padding-inline: 0.5rem !important;
    border-width: 1px;
    border-style: solid;
    display: flex;
    flex-flow: row nowrap;
    gap: 0.5rem;
    align-items: center;
}

.k-floating-toolbar .k-toolbar,
.editorToolbarWindow.k-window-content .k-toolbar {
    padding: 0;
    border-width: 0;
    flex-shrink: 1;
    color: inherit;
    background: none;
}

.k-editortoolbar-dragHandle {
    cursor: move;
    display: flex;
    align-items: center;
    align-self: stretch;
    flex-shrink: 0;
}

.k-overflow-container {
    font-size: 1rem;
    line-height: 1.5;
}

.k-overflow-container > .k-item {
    border-color: inherit;
}

.k-overflow-container .k-separator {
    margin: 0.25rem 0;
}

.k-overflow-container .k-overflow-tool-group {
    display: block;
}

.k-overflow-container .k-overflow-button {
    padding-block: 0.25rem;
    padding-inline: 1rem;
    width: 100%;
    height: auto;
    border-width: 0;
    border-radius: 0;
    aspect-ratio: auto;
    color: inherit;
    background-color: transparent;
    background-image: none;
    font: inherit;
    cursor: pointer;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    align-content: center;
    gap: 0.5rem;
    justify-content: flex-start;
    position: relative;
}

.k-overflow-container .k-button-group {
    box-shadow: none;
    display: flex;
    flex-flow: column nowrap;
}

.k-overflow-container .k-button-group .k-button {
    margin: 0;
}

.k-overflow-container .k-split-button {
    display: flex;
    flex-direction: column;
}

.k-overflow-container .k-overflow-hidden {
    display: none;
}

.k-toolbar {
    border-color: #dee2e6;
    color: #212529;
    background-color: #f8f9fa;
}

.k-toolbar .k-separator,
.k-toolbar .k-toolbar-separator {
    border-color: inherit;
}

.k-toolbar .k-toolbar-item:focus,
.k-toolbar .k-toolbar-item.k-focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.k-floating-toolbar,
.editorToolbarWindow.k-window-content {
    border-color: #dee2e6;
    color: #212529;
    background-color: #f8f9fa;
}

.k-overflow-container .k-button:hover, .k-overflow-container .k-button.k-hover {
    color: #16181b;
    background: #e9ecef;
}

.k-overflow-container .k-button:focus, .k-overflow-container .k-button.k-focus {
    box-shadow: inset 0 0 0 3px rgba(33, 37, 41, 0.15);
}

.k-overflow-container .k-button:active, .k-overflow-container .k-button.k-active {
    color: #16181b;
    background: #e9ecef;
}

.k-overflow-container .k-button.k-selected {
    color: #ffffff;
    background: #0d6efd;
}

.k-overflow-container .k-button:disabled, .k-overflow-container .k-button.k-disabled {
    color: inherit;
}

.k-actions, .k-edit-buttons,
.k-action-buttons,
.k-columnmenu-actions, .k-form-buttons {
    padding-block: 0.5rem;
    padding-inline: 0.5rem;
    box-sizing: border-box;
    border-width: 0px 0 0 0;
    border-style: solid;
    border-color: inherit;
    flex-shrink: 0;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 0.5rem;
    overflow: hidden;
    clear: both;
}

.k-actions *, .k-edit-buttons *, .k-action-buttons *, .k-columnmenu-actions *, .k-form-buttons *,
.k-actions *::before,
.k-edit-buttons *::before,
.k-action-buttons *::before,
.k-columnmenu-actions *::before,
.k-form-buttons *::before,
.k-actions *::after,
.k-edit-buttons *::after,
.k-action-buttons *::after,
.k-columnmenu-actions *::after,
.k-form-buttons *::after {
    box-sizing: border-box;
}

.k-popup .k-actions, .k-popup .k-edit-buttons,
.k-popup .k-action-buttons,
.k-popup .k-columnmenu-actions, .k-popup .k-form-buttons {
    margin-top: 1rem;
}

.k-actions-start {
    justify-content: flex-start;
}

.k-actions-center {
    justify-content: center;
}

.k-actions-end {
    justify-content: flex-end;
}

.k-actions-stretched > * {
    flex: 1 0 0%;
}

.k-actions-horizontal {
    width: 100%;
    flex-flow: row nowrap;
}

.k-actions-vertical {
    flex-flow: column nowrap;
}

.k-form,
.k-form-inline {
    font-size: 1rem;
    line-height: 1.5;
}

.k-fieldset {
    margin: 30px;
    border-width: 1px 0 0;
    border-style: solid;
    padding: 25px 0 0;
}

.k-fieldset > legend {
    margin-left: 0;
    padding: 0 1rem 0 0;
    text-transform: uppercase;
}

kendo-label > .k-label {
    margin: 0;
}

.k-label-optional {
    margin-left: 6px;
    font-size: 0.75rem;
    font-style: italic;
    align-self: center;
}

.k-label-empty::before {
    content: "";
    display: inline-block;
}

.k-input-label {
    margin-right: 10px;
    z-index: 1;
}

.k-input-label:dir(rtl),
.k-rtl .k-input-label, .k-input-label.k-rtl,
[dir="rtl"] .k-input-label, .k-input-label[dir="rtl"] {
    margin-right: 0;
    margin-left: 10px;
}

.k-form {
    border: 0;
}

.k-form .k-label,
.k-form kendo-label,
.k-form .k-form-label {
    margin-bottom: 0.5rem;
    display: flex;
    flex-flow: row nowrap;
}

.k-form .k-label + .k-radio {
    margin-left: 0;
}

.k-form .k-form-fieldset {
    margin: 2rem 0 0;
    padding: 0px;
    border: 0;
}

.k-form .k-form-fieldset > *:not(.k-hidden):first-child,
.k-form .k-form-fieldset > *.k-hidden + :not(.k-hidden) {
    margin-top: 0;
}

.k-form .k-form-legend {
    margin: 0 0 1rem;
    padding: 0px;
    border-width: 0 0 2px;
    border-style: solid;
    width: 100%;
    font-size: 0.875rem;
    text-transform: uppercase;
}

.k-form .k-form-group {
    padding: 0;
}

.k-form > *:not(.k-hidden):first-child,
.k-form > *.k-hidden + :not(.k-hidden) {
    margin-top: 0;
}

.k-form .k-form-field,
.k-form .k-form-field-wrap {
    display: block;
}

.k-form .k-form-field-disabled .k-label,
.k-form .k-form-field-disabled .k-form-label {
    outline: none;
    cursor: default;
    opacity: 0.65;
    filter: grayscale(0.1);
    pointer-events: none;
    box-shadow: none;
}

.k-form .k-alert-error {
    font-size: 0.875rem;
    margin-top: 1rem;
}

.k-form .k-field-info {
    display: inline-block;
    font-size: 0.75rem;
    line-height: 1;
    margin-block: 0;
    margin-inline: 1rem;
}

.k-form .k-multiselect,
.k-form .k-floating-label-container,
.k-form .k-daterangepicker .k-dateinput,
.k-form .k-signature {
    display: inline-flex;
    width: 100%;
}

.k-form-buttons {
    padding: 0;
    overflow: visible;
}

.k-form-hint,
.k-form-error {
    margin-top: 4px;
    display: flex;
    font-size: 0.75rem;
    font-style: normal;
}

.k-text-start,
.k-buttons-start {
    justify-content: flex-start;
}

.k-text-end,
.k-buttons-end {
    justify-content: flex-end;
}

.k-form-separator {
    margin: 1rem 0 0;
    border-width: 1px 0 0;
    border-style: solid;
    display: block;
    flex: 0 0 auto;
}

.k-form-horizontal .k-form-field {
    display: flex;
}

.k-form-horizontal .k-form-field > .k-label,
.k-form-horizontal .k-form-field > kendo-label,
.k-form-horizontal .k-form-field > .k-form-label {
    margin-right: 10px;
    padding-top: 5px;
    width: 25%;
    text-align: end;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
}

.k-form-horizontal .k-form-field .k-label-optional {
    margin: 0;
    align-self: inherit;
}

.k-form-horizontal .k-form-field-wrap {
    max-width: calc( ( 100% - 25% ) - 10px);
    flex: 1 1 auto;
}

.k-form [dir="rtl"] .k-label-optional,
.k-rtl .k-form .k-label-optional {
    margin-left: 0;
    margin-right: 6px;
}

.k-form-horizontal [dir="rtl"].k-form-field > .k-label,
.k-form-horizontal [dir="rtl"].k-form-field > kendo-label,
.k-form-horizontal [dir="rtl"].k-form-field > .k-form-label,
.k-form-horizontal [dir="rtl"] .k-form-field > .k-label,
.k-form-horizontal [dir="rtl"] .k-form-field > kendo-label,
.k-form-horizontal [dir="rtl"] .k-form-field > .k-form-label,
.k-rtl .k-form-horizontal.k-form-field > .k-label,
.k-rtl .k-form-horizontal.k-form-field > kendo-label,
.k-rtl .k-form-horizontal.k-form-field > .k-form-label,
.k-rtl .k-form-horizontal .k-form-field > .k-label,
.k-rtl .k-form-horizontal .k-form-field > kendo-label,
.k-rtl .k-form-horizontal .k-form-field > .k-form-label {
    margin-right: 0;
    margin-left: 10px;
}

.k-form-sm .k-form-field,
.k-form-sm .k-form-buttons {
    margin-top: 1rem;
}

.k-form-md .k-form-field,
.k-form-md .k-form-buttons {
    margin-top: 1rem;
}

.k-form-lg .k-form-field,
.k-form-lg .k-form-buttons {
    margin-top: 1rem;
}

.k-form-inline {
    padding: 2rem;
}

.k-form-inline fieldset {
    border-width: 1px 0 0;
    border-style: solid;
    margin: 4rem 0;
    padding: 0;
}

.k-form-inline fieldset:first-child:first-of-type {
    margin-top: 0;
}

.k-form-inline fieldset:last-child:last-of-type {
    margin-bottom: 0;
}

.k-form-inline legend {
    font-size: 0.875rem;
    text-align: start;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    padding: 0 1rem 0 0;
    width: auto;
}

.k-form-inline .k-form-field {
    display: flex;
    align-items: flex-start;
    text-align: start;
    margin-bottom: 1.5rem;
}

.k-form-inline .k-form-field > span:not(.k-widget) {
    width: 25%;
    text-align: end;
    line-height: 1.5;
    padding: calc( 0.5rem + 1px) 0;
    padding-right: 1.5rem;
    align-self: center;
}

.k-form-inline .k-form-field > input {
    align-self: center;
}

.k-form-inline .k-form-field > input:not(.k-checkbox):not(.k-radio) {
    flex: 1 1 auto;
}

.k-form-inline .k-form-field .k-alert-error {
    font-size: 0.875rem;
    margin-top: 1rem;
}

.k-form-inline .k-form-field .k-field-info {
    display: block;
    font-size: 0.75rem;
    line-height: 1;
    margin: 0;
}

.k-form-inline .k-form-field:last-child {
    margin-bottom: 0;
}

.k-edit-form-container {
    width: 400px;
    min-width: 400px;
    border-color: inherit;
    position: relative;
}

.k-popup-edit-form > .k-actions, .k-popup-edit-form > .k-edit-buttons,
.k-popup-edit-form > .k-action-buttons,
.k-popup-edit-form > .k-columnmenu-actions, .k-popup-edit-form > .k-form-buttons,
.k-edit-form-container .k-actions,
.k-edit-form-container .k-edit-buttons,
.k-edit-form-container .k-action-buttons,
.k-edit-form-container .k-columnmenu-actions,
.k-edit-form-container .k-form-buttons {
    margin: 1rem -1rem -1rem;
}

.k-edit-label {
    margin: 0 0 1rem 0;
    padding: calc( 0.375rem + 1px) 0;
    width: 30%;
    line-height: 1.5;
    text-align: end;
    float: left;
    clear: both;
}

.k-edit-field {
    margin: 0 0 1rem 0;
    width: 65%;
    float: right;
    clear: right;
    position: relative;
}

.k-edit-field.k-no-editor {
    padding: calc( 0.375rem + 1px) 0;
}

.k-edit-field > .k-widget {
    width: 100%;
    box-sizing: border-box;
}

.k-edit-field input[type="radio"]:not(.k-radio),
.k-edit-field input[type="checkbox"]:not(.k-checkbox) {
    margin-right: .4ex;
}

.k-edit-field .k-radio-label,
.k-edit-field .k-checkbox-label {
    margin-right: 1rem;
}

.k-edit-field > .k-reset > li + li {
    margin-top: 0.5rem;
}

.k-edit-field .k-reset .k-widget {
    margin: 0 .4ex 0 1ex;
}

.k-form legend,
.k-form-inline legend {
    font-size: 1.5rem;
    font-weight: normal;
    line-height: 1.5;
    text-transform: none;
}

.k-form .k-field-info,
.k-form-inline .k-field-info {
    opacity: .7;
}

.k-form legend {
    margin-bottom: 0.5rem;
}

.k-form .k-field-info {
    margin-block: 0;
    margin-inline: 0.5rem;
}

.k-form-inline legend {
    margin-bottom: 0;
}

.k-form-inline .k-form-field > span:not(.k-widget) {
    padding: calc( 0.5rem - 1px) 0;
    padding-right: 1rem;
}

.k-edit-label {
    padding: calc( 0.5rem - 1px) 0;
}

.k-form,
.k-form-inline {
    color: #212529;
}

.k-form .k-form-legend,
.k-form-inline .k-form-legend {
    border-color: #dee2e6;
}

.k-form .k-field-info,
.k-form-inline .k-field-info {
    color: #6c757d;
}

.k-form .k-alert-error,
.k-form-inline .k-alert-error {
    color: #dc3545;
}

.k-form-error,
.k-text-error,
.k-form-field-error .k-label {
    color: #dc3545;
}

.k-form-separator {
    border-color: #dee2e6;
}

.k-tooltip {
    border-radius: 0.375rem;
    margin: 0;
    padding-block: 0.25rem;
    padding-inline: 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", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 0.875rem;
    line-height: 1.5;
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    position: absolute;
    z-index: 12000;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-tooltip *,
.k-tooltip *::before,
.k-tooltip *::after {
    box-sizing: border-box;
}

.k-tooltip-icon {
    margin-inline-end: 0.5rem;
    flex-shrink: 0;
}

.k-tooltip-title {
    margin-bottom: .25em;
    font-size: 1.09375rem;
    line-height: 1;
}

.k-tooltip-content {
    align-self: stretch;
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
}

.k-tooltip-button {
    margin-inline-start: 0.5rem;
    flex-shrink: 0;
}

.k-tooltip-button .k-icon,
.k-tooltip-button .k-svg-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-validator-tooltip {
    margin-top: calc( 0.4rem + 0px);
    width: auto;
    white-space: normal;
    display: flex;
    align-items: center;
    z-index: 9999;
}

.k-grid .k-validator-tooltip {
    max-width: 300px;
}

.k-input,
.k-picker {
    margin: 0;
    padding: 0;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    border-width: 1px;
    border-style: solid;
    outline: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, 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: inline-flex;
    flex-flow: row nowrap;
    align-items: stretch;
    vertical-align: middle;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-appearance: none;
}

.k-input *,
.k-input *::before,
.k-input *::after,
.k-picker *,
.k-picker *::before,
.k-picker *::after {
    box-sizing: border-box;
}

.k-input .k-input,
.k-input .k-picker,
.k-picker .k-input,
.k-picker .k-picker {
    border-width: 0 !important;
    color: inherit;
    background: none;
    font: inherit;
    outline: 0;
    box-shadow: none;
}

.k-input > *,
.k-picker > * {
    margin: 0;
}

.k-input::placeholder,
.k-picker::placeholder {
    color: #6c757d;
    opacity: 1;
    user-select: none;
}

input.k-input,
textarea.k-textarea {
    padding-block: 0.375rem;
    padding-inline: 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;
    filter: grayscale(0.1);
    pointer-events: none;
    box-shadow: none;
}

[disabled] input.k-input:disabled,
.k-disabled input.k-input:disabled, [disabled] input.k-input[disabled],
.k-disabled input.k-input[disabled], [disabled]
textarea.k-textarea:disabled,
.k-disabled
textarea.k-textarea:disabled, [disabled]
textarea.k-textarea[disabled],
.k-disabled
textarea.k-textarea[disabled] {
    opacity: 1;
    filter: grayscale(0);
}

textarea.k-textarea {
    overflow: auto;
}

.k-picker {
    cursor: pointer;
}

select.k-picker {
    padding-block: 0.375rem;
    padding-inline: 0.75rem;
    appearance: auto;
}

select.k-picker:disabled, select.k-picker[disabled] {
    outline: none;
    cursor: default;
    opacity: 0.65;
    filter: grayscale(0.1);
    pointer-events: none;
    box-shadow: none;
}

[disabled] select.k-picker:disabled,
.k-disabled select.k-picker:disabled, [disabled] select.k-picker[disabled],
.k-disabled select.k-picker[disabled] {
    opacity: 1;
    filter: grayscale(0);
}

.k-input-inner {
    padding-block: 0.375rem;
    padding-inline: 0.75rem;
    width: 100%;
    border: 0;
    outline: 0;
    color: inherit;
    background: none;
    font: inherit;
    flex: 1;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-appearance: none;
}

.k-input-inner::placeholder {
    color: #6c757d;
    opacity: 1;
    user-select: none;
}

.k-input-inner:invalid {
    box-shadow: none;
}

span.k-input-inner {
    white-space: nowrap;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

textarea.k-input-inner {
    margin: 0;
}

.k-input-value-icon {
    flex: none;
}

.k-input-value-text {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.k-input-value-text::before {
    content: "\200b";
    width: 0px;
    overflow: hidden;
    flex: none;
    display: inline-block;
    vertical-align: top;
}

.k-input-values {
    min-width: 0px;
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    cursor: text;
}

.k-input-values .k-chip-list {
    display: contents;
}

.k-icon-picker .k-input-inner {
    padding: 0.375rem;
    justify-content: center;
}

.k-input-prefix,
.k-input-suffix {
    border-color: inherit;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    flex: none;
}

.k-input-prefix > *,
.k-input-suffix > * {
    flex-shrink: 0;
}

.k-input-separator {
    margin: 0;
    width: 0;
    height: 16px;
    border-width: 0 0 0 1px;
    border-style: solid;
    border-color: inherit;
    align-self: center;
}

.k-input-icon,
.k-input-validation-icon,
.k-input-loading-icon,
.k-input-prefix > .k-icon,
.k-input-prefix > .k-svg-icon,
.k-input-suffix > .k-icon,
.k-input-suffix > .k-svg-icon {
    flex: none;
    align-self: center;
    display: inline-flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
}

.k-input-icon.k-svg-icon > svg,
.k-input-icon.k-icon-md > svg,
.k-input-validation-icon.k-svg-icon > svg,
.k-input-validation-icon.k-icon-md > svg,
.k-input-loading-icon.k-svg-icon > svg,
.k-input-loading-icon.k-icon-md > svg {
    width: 16px;
    height: 16px;
}

.k-input-icon.k-icon-xs > svg,
.k-input-validation-icon.k-icon-xs > svg,
.k-input-loading-icon.k-icon-xs > svg {
    width: calc( 16px * .75);
    height: calc( 16px * .75);
}

.k-input-icon.k-icon-sm > svg,
.k-input-validation-icon.k-icon-sm > svg,
.k-input-loading-icon.k-icon-sm > svg {
    width: calc( 16px * .875);
    height: calc( 16px * .875);
}

.k-input-icon.k-icon-lg > svg,
.k-input-validation-icon.k-icon-lg > svg,
.k-input-loading-icon.k-icon-lg > svg {
    width: calc( 16px * 1.25);
    height: calc( 16px * 1.25);
}

.k-input-icon.k-icon-xl > svg,
.k-input-validation-icon.k-icon-xl > svg,
.k-input-loading-icon.k-icon-xl > svg {
    width: calc( 16px * 1.5);
    height: calc( 16px * 1.5);
}

.k-input-icon.k-icon-xxl > svg,
.k-input-validation-icon.k-icon-xxl > svg,
.k-input-loading-icon.k-icon-xxl > svg {
    width: calc( 16px * 2);
    height: calc( 16px * 2);
}

.k-input-icon.k-icon-xxxl > svg,
.k-input-validation-icon.k-icon-xxxl > svg,
.k-input-loading-icon.k-icon-xxxl > svg {
    width: calc( 16px * 3);
    height: calc( 16px * 3);
}

.k-clear-value {
    outline: 0;
    flex: none;
    align-self: center;
    display: inline-flex;
    align-items: 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;
    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;
    flex: none;
    display: flex;
    flex-flow: column nowrap;
}

.k-input-spinner .k-spinner-increase,
.k-input-spinner .k-spinner-decrease {
    border-width: 0;
    border-inline-start-width: 1px;
    flex: 1 1 50%;
    box-shadow: none;
    position: relative;
    aspect-ratio: auto;
}

.k-input-spinner .k-spinner-increase .k-button-icon,
.k-input-spinner .k-spinner-decrease .k-button-icon {
    margin-block: -1em;
    margin-inline: 0;
    min-width: auto !important;
    min-height: auto !important;
}

.k-input-spinner .k-spinner-increase .k-icon,
.k-input-spinner .k-spinner-increase .k-svg-icon {
    bottom: auto;
}

.k-input-spinner .k-spinner-decrease .k-icon,
.k-input-spinner .k-spinner-decrease .k-svg-icon {
    top: auto;
}

.k-searchbar {
    flex: 1 1 auto;
    display: flex;
    flex-flow: row nowrap;
}

.k-picker-wrap,
.k-dropdown-wrap,
.k-dateinput-wrap,
.k-multiselect-wrap,
.k-numeric-wrap {
    width: 100%;
    border-width: 0;
    border-color: inherit;
    box-sizing: border-box;
    flex: 1 1 auto;
    display: flex;
    flex-flow: row nowrap;
    overflow: hidden;
    position: relative;
}

.k-input-flat,
.k-picker-flat {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-width: 1px 0;
    border-top-color: transparent !important;
    background-image: none !important;
}

.k-input-outline {
    background: none !important;
}

.k-input-sm,
.k-picker-sm {
    font-size: 0.875rem;
    line-height: 1.4285714286;
}

.k-input-sm .k-input-values,
.k-picker-sm .k-input-values {
    padding: 0.125rem;
    gap: 0.125rem;
}

.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-block: 0.25rem;
    padding-inline: 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-block: 0.25rem;
    padding-inline: 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-prefix > .k-svg-icon,
.k-input-sm .k-input-suffix > .k-icon,
.k-input-sm .k-input-suffix > .k-svg-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-prefix > .k-svg-icon,
.k-picker-sm .k-input-suffix > .k-icon,
.k-picker-sm .k-input-suffix > .k-svg-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: calc( 1.4285714286em);
    height: calc( 1.4285714286em);
    padding: 0.25rem;
    box-sizing: content-box;
}

.k-dropdown-operator.k-picker-sm .k-input-button {
    padding: 0.25rem;
}

select.k-picker-sm {
    padding-block: 0.25rem;
    padding-inline: 0.5rem;
}

.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 {
    padding: 0.1875rem;
    gap: 0.1875rem;
}

.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-block: 0.375rem;
    padding-inline: 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-block: 0.375rem;
    padding-inline: 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-prefix > .k-svg-icon,
.k-input-md .k-input-suffix > .k-icon,
.k-input-md .k-input-suffix > .k-svg-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-prefix > .k-svg-icon,
.k-picker-md .k-input-suffix > .k-icon,
.k-picker-md .k-input-suffix > .k-svg-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: calc( 1.5em);
    height: calc( 1.5em);
    padding: 0.375rem;
    box-sizing: content-box;
}

.k-dropdown-operator.k-picker-md .k-input-button {
    padding: 0.375rem;
}

select.k-picker-md {
    padding-block: 0.375rem;
    padding-inline: 0.75rem;
}

.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 {
    padding: 0.25rem;
    gap: 0.25rem;
}

.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-block: 0.5rem;
    padding-inline: 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-block: 0.5rem;
    padding-inline: 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-prefix > .k-svg-icon,
.k-input-lg .k-input-suffix > .k-icon,
.k-input-lg .k-input-suffix > .k-svg-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-prefix > .k-svg-icon,
.k-picker-lg .k-input-suffix > .k-icon,
.k-picker-lg .k-input-suffix > .k-svg-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: calc( 1.5em);
    height: calc( 1.5em);
    padding: 0.5rem;
    box-sizing: content-box;
}

.k-dropdown-operator.k-picker-lg .k-input-button {
    padding: 0.5rem;
}

select.k-picker-lg {
    padding-block: 0.5rem;
    padding-inline: 1rem;
}

.k-input > kendo-popup,
.k-picker > kendo-popup {
    position: fixed;
}

@keyframes autoFillStart {
    from {
    }
    to {
    }
}

@keyframes autoFillEnd {
    from {
    }
    to {
    }
}

.k-autofill:-webkit-autofill {
    animation-name: autoFillStart;
}

.k-autofill:not(:-webkit-autofill) {
    animation-name: autoFillEnd;
}

.k-input:-webkit-autofill {
    animation-name: autoFillStart;
}

.k-input:not(:-webkit-autofill) {
    animation-name: autoFillEnd;
}

.k-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-floating-label-container {
    padding-top: calc( 1.5 * 1rem);
    box-sizing: border-box;
    display: inline-flex;
    vertical-align: middle;
    position: relative;
    flex-direction: column;
    justify-content: stretch;
}

.k-floating-label-container *,
.k-floating-label-container *::before,
.k-floating-label-container *::after {
    box-sizing: border-box;
}

.k-floating-label-container > .k-label {
    max-width: 90%;
    font-size: 1rem;
    line-height: 1.5;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: absolute;
    top: calc( calc( 1.5 * 1rem) + 1px + 0.375rem);
    left: calc( 0.75rem + 1px);
    overflow: hidden;
    cursor: text;
    transform-origin: left center;
    transition: transform 0.2s ease-out, color 0.2s ease-out, top 0.2s ease-out, left 0.2s ease-out;
}

.k-floating-label-container > .k-widget {
    flex: 1 1 auto;
    width: auto;
}

.k-floating-label-container.k-empty > .k-label {
    top: calc( calc( 1.5 * 1rem) + 1px + 0.375rem);
    left: calc( 0.75rem + 1px);
    transform: scale(1);
    pointer-events: none;
}

.k-floating-label-container > .k-label,
.k-floating-label-container.k-focus > .k-label {
    top: 0;
    left: 0;
    transform: scale(1);
}

.k-floating-label-container:focus-within > .k-label {
    top: 0;
    left: 0;
    transform: scale(1);
}

.k-floating-label-container.k-empty:not(.k-focus):not(:focus-within) ::placeholder {
    color: transparent;
}

[dir="rtl"] .k-floating-label-container > .k-label,
.k-rtl .k-floating-label-container > .k-label, .k-floating-label-container[dir="rtl"] > .k-label {
    transform-origin: right center;
    transition: transform 0.2s ease-out, color 0.2s ease-out, top 0.2s ease-out, right 0.2s ease-out;
}

[dir="rtl"] .k-floating-label-container.k-empty > .k-label,
.k-rtl .k-floating-label-container.k-empty > .k-label, .k-floating-label-container[dir="rtl"].k-empty > .k-label {
    left: auto;
    right: 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-split-button .k-split-button-arrow {
    padding-block: 0.375rem;
    padding-inline: 0.375rem;
    width: auto;
    aspect-ratio: auto;
    flex: none;
}

.k-split-button .k-split-button-arrow.k-button-sm {
    padding-block: 0.25rem;
    padding-inline: 0.25rem;
}

.k-split-button .k-split-button-arrow.k-button-md {
    padding-block: 0.375rem;
    padding-inline: 0.375rem;
}

.k-split-button .k-split-button-arrow.k-button-lg {
    padding-block: 0.5rem;
    padding-inline: 0.5rem;
}

.k-split-button .k-split-button-arrow .k-button-icon {
    min-width: 0;
}

.k-split-button:focus,
.k-split-button.k-focus {
    box-shadow: 0 0 0 0.25rem rgba(228, 231, 235, 0.5);
}

.k-menu-button,
.k-dropdown-button {
    aspect-ratio: auto;
    outline: 0;
    display: inline-flex;
    flex-flow: row nowrap;
    vertical-align: middle;
}

.k-menu-button > .k-button-arrow,
.k-dropdown-button > .k-button-arrow {
    margin-inline-start: -0.375rem;
    margin-inline-end: -0.75rem;
    padding-left: 0.375rem;
    padding-right: 0.375rem;
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.k-menu-button.k-icon-button > .k-button-arrow,
.k-dropdown-button.k-icon-button > .k-button-arrow {
    margin-inline-start: 0;
    margin-inline-end: -0.375rem;
}

.k-listbox {
    width: 10em;
    height: 200px;
    border-width: 0;
    outline: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    line-height: 1.5;
    vertical-align: top;
    background-color: transparent;
    display: inline-flex;
    gap: 0.5rem;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-listbox .k-listbox-actions {
    display: flex;
    gap: 1rem;
}

.k-listbox.k-listbox-actions-left, .k-listbox.k-listbox-actions-right {
    flex-direction: row;
}

.k-listbox.k-listbox-actions-left .k-listbox-actions, .k-listbox.k-listbox-actions-right .k-listbox-actions {
    flex-direction: column;
}

.k-listbox.k-listbox-actions-right {
    flex-direction: row-reverse;
}

.k-listbox.k-listbox-actions-top, .k-listbox.k-listbox-actions-bottom {
    flex-direction: column;
}

.k-listbox.k-listbox-actions-top .k-listbox-actions, .k-listbox.k-listbox-actions-bottom .k-listbox-actions {
    flex-direction: row;
}

.k-listbox.k-listbox-actions-bottom {
    flex-direction: column-reverse;
}

.k-listbox .k-list-scroller {
    width: 100%;
    height: inherit;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
}

.k-listbox .k-list-scroller .k-list-scroller {
    border-width: 0;
}

.k-listbox .k-list-scroller .k-list {
    height: inherit;
    background: transparent;
}

.k-listbox .k-drop-hint {
    border-top-width: 1px;
    border-top-style: solid;
}

.k-listbox .k-ghost {
    opacity: .5;
}

.k-rtl .k-listbox.k-listbox-actions-left .k-listbox-actions, .k-rtl .k-listbox.k-listbox-actions-right .k-listbox-actions, .k-listbox[dir="rtl"].k-listbox-actions-left .k-listbox-actions, .k-listbox[dir="rtl"].k-listbox-actions-right .k-listbox-actions,
[dir="rtl"] .k-listbox.k-listbox-actions-left .k-listbox-actions,
[dir="rtl"] .k-listbox.k-listbox-actions-right .k-listbox-actions {
    transform: scaleX(-1);
}

.k-item {
    cursor: default;
}

.k-listbox .k-list-scroller {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-listbox .k-drop-hint {
    border-top-color: #0d6efd;
}

.k-progressbar {
    border-radius: 0.375rem;
    --kendo-progressbar-value: 0;
    border-width: 0px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 0.75rem;
    line-height: 1;
    display: inline-grid;
    vertical-align: middle;
    position: relative;
    overflow: hidden;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-progressbar *,
.k-progressbar *::before,
.k-progressbar *::after {
    box-sizing: border-box;
}

.k-progressbar > .k-progressbar-value {
    border-width: 0;
    border-style: solid;
    display: flex;
    overflow: hidden;
    grid-column: 1 / -1;
    grid-row: 1 / -1;
}

.k-progressbar > .k-progressbar-chunks {
    border-width: inherit;
    border-style: inherit;
    white-space: nowrap;
    display: flex;
    align-items: stretch;
    flex: 1;
    gap: 1px;
    grid-column: 1 / -1;
    grid-row: 1 / -1;
}

.k-progressbar .k-progressbar-chunk {
    display: block;
    border-width: 0;
    flex: 1;
}

.k-progress-status-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    grid-column: 1 / -1;
    grid-row: 1 / -1;
}

.k-progress-status-wrap.k-progress-start {
    justify-content: flex-start;
}

.k-progress-status-wrap.k-progress-center {
    justify-content: center;
}

.k-progress-status-wrap.k-progress-end {
    justify-content: flex-end;
}

.k-progress-status {
    padding-block: 0;
    padding-inline: 0.5rem;
    min-width: 10px;
    text-align: center;
    display: inline-block;
    white-space: nowrap;
}

.k-progressbar-horizontal {
    width: 100%;
    height: var(--kendo-progressbar-height, 1rem);
    grid-template-columns: 1fr;
    grid-template-rows: 100%;
}

.k-progressbar-horizontal .k-progress-status-wrap {
    flex-direction: row;
}

.k-progressbar-horizontal > .k-progressbar-value {
    width: calc( var( --kendo-progressbar-value, 0 ) * 1%);
    flex-direction: row;
}

.k-progressbar-horizontal > .k-progressbar-value > .k-progress-status-wrap {
    width: calc( 100% * ( 100 / var( --kendo-progressbar-value, 1 ) ));
}

.k-progressbar-horizontal > .k-progressbar-chunks {
    flex-direction: row;
}

.k-progressbar-horizontal.k-progressbar-reverse > .k-progressbar-value {
    flex-direction: row-reverse;
    justify-self: flex-end;
}

.k-progressbar-horizontal.k-progressbar-reverse > .k-progressbar-chunks {
    flex-direction: row-reverse;
}

.k-progressbar-vertical {
    width: var(--kendo-progressbar-height, 1rem);
    height: 27em;
    grid-template-columns: 100%;
    grid-template-rows: 1fr;
}

.k-progressbar-vertical .k-progress-status-wrap {
    flex-direction: column-reverse;
}

.k-progressbar-vertical .k-progress-status {
    writing-mode: vertical-lr;
}

.k-progressbar-vertical > .k-progressbar-value {
    height: calc( var( --kendo-progressbar-value, 0 ) * 1%);
    flex-direction: column-reverse;
    align-self: flex-end;
    align-items: flex-end;
}

.k-progressbar-vertical > .k-progressbar-value > .k-progress-status-wrap {
    height: calc( 100% * ( 100 / var( --kendo-progressbar-value, 1 ) ));
}

.k-progressbar-vertical > .k-progressbar-chunks {
    flex-direction: column-reverse;
}

.k-progressbar-vertical.k-progressbar-reverse {
    flex-direction: column;
}

.k-progressbar-vertical.k-progressbar-reverse > .k-progressbar-value {
    flex-direction: column;
    align-self: flex-start;
}

.k-progressbar-vertical.k-progressbar-reverse > .k-progressbar-chunks {
    flex-direction: column;
}

.k-progressbar-indeterminate .k-progress-status-wrap,
.k-progressbar-indeterminate .k-progressbar-value,
.k-progressbar-indeterminate .k-progressbar-chunk {
    display: none;
}

.telerik-blazor.k-progressbar-horizontal > .k-progressbar-value,
.telerik-blazor.k-progressbar-horizontal > .k-progressbar-value > .k-progress-status-wrap {
    transition: width .1s ease-in-out;
}

.k-rtl .k-progressbar,
.k-progressbar[dir="rtl"] {
    direction: rtl;
}

.k-circular-progressbar {
    display: inline-block;
    text-align: start;
    position: relative;
}

.k-circular-progressbar-surface {
    height: 100%;
}

.k-circular-progressbar-surface > div {
    width: 100%;
    height: 100%;
}

.k-circular-progressbar-surface svg {
    width: 100%;
    height: 100%;
}

.k-circular-progressbar-scale {
    fill: none;
}

.k-circular-progressbar-arc {
    transform-box: fill-box;
    transform-origin: center center;
    transform: rotate(-90deg);
    stroke-linecap: round;
    fill: none;
}

.k-circular-progressbar-label {
    position: absolute;
    text-align: center;
    padding: 0;
    margin: 0;
}

@keyframes kendo-progressbar-indeterminate-animation {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 1rem 0;
    }
}

.k-progressbar {
    color: black;
    background-color: #e9ecef;
}

.k-progressbar .k-selected {
    color: #ffffff;
    background-color: #0d6efd;
}

.k-chunk-progressbar {
    background-color: transparent;
}

.k-progressbar-chunk {
    background-color: #e9ecef;
}

.k-progressbar-chunk .k-selected {
    background-color: #0d6efd;
}

.k-progressbar-indeterminate {
    color: black;
    background-color: #e9ecef;
    background-image: linear-gradient(45deg, #d6d9dc 25%, transparent 25%, transparent 50%, #d6d9dc 50%, #d6d9dc 75%, transparent 75%, transparent);
    background-size: 1rem 1rem;
    animation: kendo-progressbar-indeterminate-animation 1s linear infinite;
}

.k-circular-progressbar-scale {
    stroke: #e9ecef;
}

.k-circular-progressbar-arc {
    stroke: #0d6efd;
    transition: stroke .5s ease;
}

.k-radio {
    border-radius: 50%;
    margin: 0;
    padding: 0;
    line-height: initial;
    border-width: 1px;
    border-style: solid;
    outline: 0;
    box-sizing: border-box;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    flex: none;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
    -webkit-appearance: none;
}

.k-radio:checked,
.k-radio.k-checked {
    background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%27-4 -4 8 8%27%3e%3ccircle r=%272%27 fill=%27white%27/%3e%3c/svg%3e");
}

.k-radio:disabled,
.k-radio.k-disabled {
    outline: none;
    cursor: default;
    opacity: 0.65;
    filter: grayscale(0.1);
    pointer-events: none;
    box-shadow: none;
}

.k-radio-wrap {
    flex: none;
    display: inline-flex;
    flex-flow: row nowrap;
    gap: 0;
    align-items: center;
    align-self: start;
    vertical-align: middle;
    position: relative;
}

.k-radio-wrap::before {
    content: "\200b";
    width: 0px;
    overflow: hidden;
    flex: none;
    display: inline-block;
    vertical-align: top;
}

.k-radio-label {
    margin: 0;
    padding: 0;
    display: inline-flex;
    align-items: flex-start;
    gap: 0.25rem;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
}

.k-radio-label .k-ripple {
    visibility: hidden !important;
}

.k-radio + .k-label,
.k-radio-wrap + .k-label,
.k-radio + .k-radio-label,
.k-radio-wrap + .k-radio-label {
    display: inline;
    margin-inline-start: 0.25rem;
}

.k-radio-label:empty {
    display: none !important;
}

.k-radio-label.k-no-text {
    min-width: 1px;
}

.k-radio-list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-flow: column nowrap;
    gap: 0;
    list-style: none;
}

.k-radio-item,
.k-radio-list-item {
    padding-block: 0.25rem;
    padding-inline: 0px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    align-content: center;
    gap: 0.25rem;
}

.k-radio-item .k-radio-label,
.k-radio-list-item .k-radio-label {
    margin: 0;
}

.k-radio-list-horizontal,
.k-radio-list.k-list-horizontal {
    display: flex;
    flex-flow: row wrap;
    gap: 1rem;
}

.k-ripple-container .k-radio::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 100%;
    z-index: -1;
    transition: opacity 100ms linear, transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(-50%, -50%) scale(0);
    transform-origin: center center;
}

.k-ripple-container .k-radio:focus,
.k-ripple-container .k-radio.k-focus {
    box-shadow: none !important;
}

.k-ripple-container .k-radio:disabled::after,
.k-ripple-container .k-radio.k-disabled::after {
    display: none;
}

.k-ripple-container .k-radio:disabled::after,
.k-ripple-container .k-radio.k-disabled::after {
    display: none;
}

.k-radio-sm {
    width: 0.75rem;
    height: 0.75rem;
}

.k-radio-sm::before {
    font-size: 0.625rem;
}

.k-ripple-container .k-radio-sm::after {
    width: 300%;
    height: 300%;
}

.k-radio-md {
    width: 1rem;
    height: 1rem;
}

.k-radio-md::before {
    font-size: 0.875rem;
}

.k-ripple-container .k-radio-md::after {
    width: 300%;
    height: 300%;
}

.k-radio-lg {
    width: 1.25rem;
    height: 1.25rem;
}

.k-radio-lg::before {
    font-size: 1.125rem;
}

.k-ripple-container .k-radio-lg::after {
    width: 300%;
    height: 300%;
}

.k-radio {
    border-color: #ced4da;
    background-color: #ffffff;
}

.k-radio:focus,
.k-radio.k-focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.k-radio.k-invalid,
.k-radio.ng-invalid.ng-touched,
.k-radio.ng-invalid.ng-dirty {
    border-color: #dc3545;
}

.k-radio.k-invalid + .k-radio-label,
.k-radio.ng-invalid.ng-touched + .k-radio-label,
.k-radio.ng-invalid.ng-dirty + .k-radio-label {
    color: #dc3545;
}

.k-radio:checked,
.k-radio.k-checked {
    border-color: #0d6efd;
    color: white;
    background-color: #0d6efd;
}

.k-radio:checked:focus,
.k-radio.k-checked.k-focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.k-ripple-container .k-radio::after {
    background: #0d6efd;
    opacity: 0.25;
}

.k-slider {
    border: 0;
    box-sizing: border-box;
    outline: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    line-height: 1.5;
    background: none;
    display: inline-flex;
    align-items: center;
    position: relative;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-slider *,
.k-slider *::before,
.k-slider *::after {
    box-sizing: border-box;
}

.k-slider .k-label {
    width: auto;
    font-size: .92em;
    line-height: 1;
    white-space: nowrap;
    position: absolute;
}

.k-slider .k-tick,
.k-slider .k-slider-track {
    cursor: pointer;
}

.k-slider .k-tick {
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    position: relative;
}

.k-slider.k-disabled .k-tick,
.k-slider.k-disabled .k-slider-track,
.k-slider.k-disabled .k-draghandle {
    cursor: default;
}

.k-rtl .k-slider .k-slider-selection, .k-slider.k-rtl .k-slider-selection,
[dir="rtl"] .k-slider .k-slider-selection, .k-slider[dir="rtl"] .k-slider-selection {
    left: auto;
    right: 0;
}

.k-slider-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: inherit;
    align-items: inherit;
    gap: inherit;
    position: relative;
}

.k-slider {
    width: min-content;
    height: min-content;
    gap: calc( 14px / 2);
}

.k-slider .k-button {
    flex: none;
}

.k-slider .k-slider-track-wrap {
    flex: 1 1 auto;
    display: flex;
    flex-flow: inherit;
    position: relative;
    touch-action: none;
}

.k-slider .k-slider-track-wrap .k-slider-items {
    margin: 0;
    padding: 0;
    list-style: none;
    flex: 1 1 100%;
    display: flex;
    flex-flow: inherit;
    justify-content: space-between;
    user-select: none;
}

.k-slider .k-slider-track-wrap .k-tick {
    flex: 0 0 1px;
}

.k-slider .k-slider-track-wrap .k-tick-horizontal {
    width: 1px;
    min-height: 100%;
}

.k-slider .k-slider-track-wrap .k-tick-vertical {
    width: 100%;
    min-height: 1px;
}

.k-slider .k-slider-track-wrap .k-draghandle {
    position: absolute;
}

.k-slider-horizontal .k-slider-track-wrap {
    height: 26px;
}

.k-slider-horizontal .k-slider-track-wrap .k-slider-track {
    width: 100%;
}

.k-slider-horizontal .k-slider-track-wrap .k-draghandle {
    top: 50%;
    transform: translate(-50%, -50%);
}

.k-slider-horizontal .k-slider-track-wrap .k-draghandle:focus,
.k-slider-horizontal .k-slider-track-wrap .k-draghandle:active {
    transform: translate(-50%, -50%) scale(1);
}

.k-slider-horizontal .k-slider-track-wrap .k-slider-selection {
    width: calc( (var(--kendo-slider-end, 0) - var(--kendo-slider-start, 0)) * 1%);
    left: calc( var(--kendo-slider-start, 0) * 1%);
}

.k-slider-horizontal .k-slider-track-wrap .k-draghandle-start {
    left: calc( var(--kendo-slider-start, 0) * 1%);
}

.k-slider-horizontal .k-slider-track-wrap .k-draghandle-end {
    left: calc( var(--kendo-slider-end, 0) * 1%);
}

[dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-slider-selection {
    left: unset;
    right: calc( var(--kendo-slider-start, 0) * 1%);
}

[dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-draghandle-start {
    left: unset;
    right: calc( var(--kendo-slider-start, 0) * 1%);
}

[dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-draghandle-end {
    left: unset;
    right: calc( var(--kendo-slider-end, 0) * 1%);
}

[dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-draghandle {
    transform: translate(50%, -50%);
}

[dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-draghandle:focus,
[dir="rtl"] .k-slider-horizontal .k-slider-track-wrap .k-draghandle:active {
    transform: translate(50%, -50%) scale(1);
}

.k-slider-vertical .k-slider-track-wrap {
    width: 26px;
}

.k-slider-vertical .k-slider-track-wrap .k-slider-track {
    height: 100%;
}

.k-slider-vertical .k-slider-track-wrap .k-draghandle {
    left: 50%;
    transform: translate(-50%, 50%);
}

.k-slider-vertical .k-slider-track-wrap .k-draghandle:focus,
.k-slider-vertical .k-slider-track-wrap .k-draghandle:active {
    transform: translate(-50%, 50%) scale(1);
}

.k-slider-vertical .k-slider-track-wrap .k-slider-selection {
    bottom: calc( var(--kendo-slider-start, 0) * 1%);
    height: calc( (var(--kendo-slider-end, 0) - var(--kendo-slider-start, 0)) * 1%);
}

.k-slider-vertical .k-slider-track-wrap .k-draghandle-start {
    bottom: calc( var(--kendo-slider-start, 0) * 1%);
}

.k-slider-vertical .k-slider-track-wrap .k-draghandle-end {
    bottom: calc( var(--kendo-slider-end, 0) * 1%);
}

.k-slider-vertical {
    height: 200px;
    flex-flow: column-reverse nowrap;
}

.k-slider-vertical .k-tick {
    text-align: end;
    margin-left: 2px;
}

.k-slider-vertical .k-slider-topleft .k-tick {
    text-align: start;
}

.k-slider-vertical .k-tick {
    background-position: -94px center;
}

.k-slider-vertical .k-slider-topleft .k-tick {
    background-position: -124px center;
}

.k-slider-vertical .k-slider-bottomright .k-tick {
    background-position: -154px center;
}

.k-slider-vertical .k-tick-large {
    display: flex;
    align-items: center;
    background-position: -4px center;
}

.k-slider-vertical .k-slider-topleft .k-tick-large {
    background-position: -34px center;
}

.k-slider-vertical .k-slider-bottomright .k-tick-large {
    background-position: -64px center;
}

.k-slider-vertical .k-first {
    background-position: -94px 100%;
}

.k-slider-vertical .k-tick-large.k-first {
    background-position: -4px 100%;
}

.k-slider-vertical .k-slider-topleft .k-first {
    background-position: -124px 100%;
}

.k-slider-vertical .k-slider-topleft .k-tick-large.k-first {
    background-position: -34px 100%;
}

.k-slider-vertical .k-slider-bottomright .k-first {
    background-position: -154px 100%;
}

.k-slider-vertical .k-slider-bottomright .k-tick-large.k-first {
    background-position: -64px 100%;
}

.k-slider-vertical .k-last {
    background-position: -94px 0;
}

.k-slider-vertical .k-tick-large.k-last {
    background-position: -4px 0;
}

.k-slider-vertical .k-slider-topleft .k-last {
    background-position: -124px 0;
}

.k-slider-vertical .k-slider-topleft .k-tick-large.k-last {
    background-position: -34px 0;
}

.k-slider-vertical .k-slider-bottomright .k-last {
    background-position: -154px 0;
}

.k-slider-vertical .k-slider-bottomright .k-tick-large.k-last {
    background-position: -64px 0;
}

.k-slider-vertical .k-label {
    text-align: start;
    left: 120%;
    top: 50%;
    transform: translateY(-50%);
}

.k-slider-vertical .k-first .k-label {
    top: 100%;
}

.k-slider-vertical .k-last .k-label {
    top: 0;
}

.k-slider-vertical .k-slider-topleft .k-label {
    left: auto;
    right: 120%;
}

.k-rtl .k-slider-vertical .k-label, .k-slider-vertical.k-rtl .k-label,
[dir="rtl"] .k-slider-vertical .k-label, .k-slider-vertical[dir="rtl"] .k-label {
    left: auto;
    right: 120%;
}

.k-rtl .k-slider-vertical .k-slider-topleft .k-label, .k-slider-vertical.k-rtl .k-slider-topleft .k-label,
[dir="rtl"] .k-slider-vertical .k-slider-topleft .k-label, .k-slider-vertical[dir="rtl"] .k-slider-topleft .k-label {
    left: 120%;
    right: auto;
}

.k-slider-horizontal {
    width: 200px;
    flex-flow: row nowrap;
}

.k-slider-horizontal .k-tick {
    background-position: center -92px;
}

.k-slider-horizontal .k-slider-topleft .k-tick {
    background-position: center -122px;
}

.k-slider-horizontal .k-slider-bottomright .k-tick {
    background-position: center -152px;
}

.k-slider-horizontal .k-tick-large {
    background-position: center -2px;
}

.k-slider-horizontal .k-slider-topleft .k-tick-large {
    background-position: center -32px;
}

.k-slider-horizontal .k-slider-bottomright .k-tick-large {
    background-position: center -62px;
}

.k-slider-horizontal .k-first {
    background-position: 0 -92px;
}

.k-slider-horizontal .k-tick-large.k-first {
    background-position: 0 -2px;
}

.k-slider-horizontal .k-slider-topleft .k-first {
    background-position: 0 -122px;
}

.k-slider-horizontal .k-slider-topleft .k-tick-large.k-first {
    background-position: 0 -32px;
}

.k-slider-horizontal .k-slider-bottomright .k-first {
    background-position: 0 -152px;
}

.k-slider-horizontal .k-slider-bottomright .k-tick-large.k-first {
    background-position: 0 -62px;
}

.k-slider-horizontal .k-last {
    background-position: 100% -92px;
}

.k-slider-horizontal .k-tick-large.k-last {
    background-position: 100% -2px;
}

.k-slider-horizontal .k-slider-topleft .k-last {
    background-position: 100% -122px;
}

.k-slider-horizontal .k-slider-topleft .k-tick-large.k-last {
    background-position: 100% -32px;
}

.k-slider-horizontal .k-slider-bottomright .k-last {
    background-position: 100% -152px;
}

.k-slider-horizontal .k-slider-bottomright .k-tick-large.k-last {
    background-position: 100% -62px;
}

.k-slider-horizontal .k-label {
    left: 50%;
    bottom: -1.2em;
    transform: translateX(-50%);
}

.k-slider-horizontal .k-first .k-label {
    left: 0;
}

.k-slider-horizontal .k-last .k-label {
    left: 100%;
}

.k-slider-horizontal .k-slider-topleft .k-label {
    top: -1.2em;
}

.k-rtl .k-slider-horizontal .k-slider-track,
.k-rtl .k-slider-horizontal .k-slider-selection, .k-slider-horizontal.k-rtl .k-slider-track,
.k-slider-horizontal.k-rtl .k-slider-selection,
[dir="rtl"] .k-slider-horizontal .k-slider-track,
[dir="rtl"] .k-slider-horizontal .k-slider-selection, .k-slider-horizontal[dir="rtl"] .k-slider-track,
.k-slider-horizontal[dir="rtl"] .k-slider-selection {
    right: 0;
    left: auto;
}

.k-rtl .k-slider-horizontal .k-button-increase .k-icon,
.k-rtl .k-slider-horizontal .k-button-increase .k-svg-icon,
.k-rtl .k-slider-horizontal .k-button-decrease .k-icon,
.k-rtl .k-slider-horizontal .k-button-decrease .k-svg-icon, .k-slider-horizontal.k-rtl .k-button-increase .k-icon,
.k-slider-horizontal.k-rtl .k-button-increase .k-svg-icon,
.k-slider-horizontal.k-rtl .k-button-decrease .k-icon,
.k-slider-horizontal.k-rtl .k-button-decrease .k-svg-icon,
[dir="rtl"] .k-slider-horizontal .k-button-increase .k-icon,
[dir="rtl"] .k-slider-horizontal .k-button-increase .k-svg-icon,
[dir="rtl"] .k-slider-horizontal .k-button-decrease .k-icon,
[dir="rtl"] .k-slider-horizontal .k-button-decrease .k-svg-icon, .k-slider-horizontal[dir="rtl"] .k-button-increase .k-icon,
.k-slider-horizontal[dir="rtl"] .k-button-increase .k-svg-icon,
.k-slider-horizontal[dir="rtl"] .k-button-decrease .k-icon,
.k-slider-horizontal[dir="rtl"] .k-button-decrease .k-svg-icon {
    transform: scaleX(-1);
}

.k-slider-track,
.k-slider-selection {
    margin: 0;
    padding: 0;
    position: absolute;
}

.k-slider-horizontal .k-slider-track, .k-slider-horizontal
.k-slider-selection {
    height: 4px;
    left: 0;
    margin-top: -2px;
    top: 50%;
}

.k-slider-vertical .k-slider-track, .k-slider-vertical
.k-slider-selection {
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    width: 4px;
}

.k-draghandle {
    background-color: transparent;
    background-repeat: no-repeat;
    border-style: solid;
    border-width: 1px;
    outline: 0;
    position: absolute;
    text-align: center;
    text-decoration: none;
    width: 14px;
    height: 14px;
}

.k-slider-transitions.k-slider-horizontal .k-draghandle {
    transition: left 0.3s ease-out, background-color 0.3s ease-out, transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.k-slider-transitions.k-slider-vertical .k-draghandle {
    transition: bottom 0.3s ease-out, background-color 0.3s ease-out, transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.k-draghandle.k-pressed {
    transition: none;
}

.k-slider-transitions.k-slider-horizontal .k-slider-selection {
    transition: width 0.3s ease-out;
}

.k-slider-transitions.k-slider-vertical .k-slider-selection {
    transition: height 0.3s ease-out;
}

.k-slider-selection.k-pressed {
    transition: none;
}

.k-slider.k-readonly .k-button,
.k-slider.k-readonly .k-slider-track,
.k-slider.k-readonly .k-tick,
.k-slider.k-readonly .k-draghandle {
    pointer-events: none;
}

.k-slider-tooltip .k-callout-n,
.k-slider-tooltip .k-callout-s {
    margin-left: -0.2rem;
}

.k-slider-tooltip .k-callout-w,
.k-slider-tooltip .k-callout-e {
    margin-top: -0.2rem;
}

.k-slider kendo-resize-sensor {
    position: absolute;
}

.k-slider-horizontal .k-slider-wrap:not(.k-slider-buttons) {
    padding-left: calc( 14px / 2);
    padding-right: calc( 14px / 2);
}

.k-slider-vertical .k-slider-wrap:not(.k-slider-buttons) {
    padding-top: calc( 14px / 2);
    padding-bottom: calc( 14px / 2);
}

.k-slider {
    color: #212529;
}

.k-slider .k-slider-track,
.k-slider .k-slider-selection {
    border-radius: 0.375rem;
}

.k-slider .k-slider-track {
    background-color: #e9ecef;
}

.k-slider .k-slider-selection {
    background-color: #0d6efd;
}

.k-slider .k-draghandle {
    border-color: #0d6efd;
    color: white;
    background-color: #0d6efd;
    border-radius: 50%;
}

.k-slider .k-draghandle:hover {
    border-color: #0257d5;
    color: white;
    background-color: #025ce2;
}

.k-slider .k-draghandle:active, .k-slider .k-draghandle.k-pressed {
    border-color: #0252c9;
    color: white;
    background-color: #0257d5;
}

.k-slider .k-draghandle:focus, .k-slider .k-draghandle.k-focus {
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.5);
}

.k-slider.k-focus .k-draghandle {
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.5);
}

.k-slider-horizontal .k-tick {
    background-image: url(data:image/gif;base64,R0lGODlhAQC0AIABALi4uAAAACH5BAEAAAEALAAAAAABALQAAAIWjIGJxqzazlux2ovlzND2rAHgSIZWAQA7);
}

.k-slider-vertical .k-tick {
    background-image: url(data:image/gif;base64,R0lGODlhtAABAIABALi4uAAAACH5BAEAAAEALAAAAAC0AAEAAAIWjIGJxqzazlux2ovlzND2rAHgSIZWAQA7);
}

.k-calendar {
    inline-size: var(--INTERNAL--kendo-calendar-width, min-content);
    block-size: var(--INTERNAL--kendo-calendar-height, min-content);
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    flex-flow: column nowrap;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-calendar > .k-calendar {
    border: 0;
}

.k-calendar-table {
    margin-block: 0;
    margin-inline: auto;
    border-width: 0;
    border-color: inherit;
    border-spacing: 0;
    border-collapse: separate;
    table-layout: fixed;
    text-align: center;
    outline: 0;
    display: table;
    position: relative;
    z-index: 1;
}

.k-calendar-caption,
.k-calendar-caption.k-calendar-th,
.k-calendar .k-meta-header,
.k-calendar .k-month-header {
    padding-block: 0.25rem;
    padding-inline: 0.75rem;
    height: 38px;
    box-sizing: border-box;
    text-transform: none;
    text-align: start;
    font-weight: bold;
    cursor: default;
}

.k-calendar-th,
.k-calendar-td {
    border-width: 0;
    padding: 0;
    text-align: center;
    border-style: solid;
    border-color: inherit;
    font-weight: normal;
    cursor: default;
}

.k-calendar-th {
    width: 38px;
    height: 38px;
    font-size: 0.875rem;
    line-height: 2;
    text-transform: uppercase;
}

.k-calendar-td {
    border-radius: 0.375rem;
    inline-size: var(--INTERNAL--kendo-calendar-cell-size, min-content);
    block-size: var(--INTERNAL--kendo-calendar-cell-size, min-content);
    border-color: transparent;
}

.k-calendar .k-calendar-cell-inner, .k-calendar .k-link {
    border-radius: 0.375rem;
    padding-inline: var(--INTERNAL--kendo-calendar-cell-padding-x, 0.25rem);
    padding-block: var(--INTERNAL--kendo-calendar-cell-padding-y, 0.25rem);
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    white-space: normal;
    position: relative;
    overflow: hidden;
}

.k-calendar .k-header {
    padding-block: 0.25rem;
    padding-inline: 0.25rem;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    position: relative;
    z-index: 2;
}

.k-calendar-header {
    padding-block: 0.25rem;
    padding-inline: 0.25rem;
    min-width: 304px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 0 0 auto;
}

.k-calendar-header .k-title,
.k-calendar-header .k-calendar-title {
    font-weight: bold;
}

.k-calendar-header .k-calendar-nav {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.k-calendar-footer,
.k-calendar .k-footer {
    padding-block: 0.5rem;
    padding-inline: 1rem;
    text-align: center;
    clear: both;
}

.k-calendar-view {
    margin: auto;
    padding-block: 0;
    padding-inline: 0.25rem;
    width: 304px;
    inline-size: var(--INTERNAL--kendo-calendar-view-width, 304px);
    min-height: 266px;
    box-sizing: content-box;
    gap: 1rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.k-month-calendar .k-calendar-td,
.k-calendar-monthview .k-calendar-td {
    width: 38px;
    height: 38px;
    inline-size: var(--INTERNAL--kendo-calendar-cell-size, 38px);
    block-size: var(--INTERNAL--kendo-calendar-cell-size, 38px);
}

.k-year-calendar .k-calendar-td,
.k-calendar-yearview .k-calendar-td {
    width: 76px;
    height: 76px;
    inline-size: var(--INTERNAL--kendo-calendar-cell-size, 76px);
    block-size: var(--INTERNAL--kendo-calendar-cell-size, 76px);
}

.k-decade-calendar .k-calendar-td,
.k-calendar-decadeview .k-calendar-td {
    width: 76px;
    height: 76px;
    inline-size: var(--INTERNAL--kendo-calendar-cell-size, 76px);
    block-size: var(--INTERNAL--kendo-calendar-cell-size, 76px);
}

.k-century-calendar .k-calendar-td,
.k-calendar-centuryview .k-calendar-td {
    width: 76px;
    height: 76px;
    inline-size: var(--INTERNAL--kendo-calendar-cell-size, 76px);
    block-size: var(--INTERNAL--kendo-calendar-cell-size, 76px);
}

.k-century-calendar .k-calendar-cell-inner, .k-century-calendar .k-link,
.k-calendar-centuryview .k-calendar-cell-inner,
.k-calendar-centuryview .k-link {
    text-align: start;
}

.k-popup .k-calendar {
    height: 100%;
}

.k-calendar-container,
.k-datetime-container {
    padding: 0;
}

.k-calendar-container .k-calendar,
.k-datetime-container .k-calendar {
    border-width: 0;
}

.k-calendar .k-content.k-scrollable,
.k-calendar .k-calendar-content.k-scrollable {
    box-sizing: content-box;
    overflow-x: hidden;
    overflow-y: auto;
    display: block;
    padding-right: 100px;
    padding-left: 100px;
    margin-left: -100px;
    margin-right: calc( -100px - var(--kendo-scrollbar-width, 17px));
}

.k-calendar .k-scrollable-placeholder {
    position: absolute;
    z-index: -1;
    width: 1px;
    top: 0;
    right: 0;
}

.k-calendar-sm {
    --INTERNAL--kendo-calendar-view-width: 272px;
    --INTERNAL--kendo-calendar-cell-padding-x: var( --kendo-calendar-sm-cell-padding-x, 0.125rem );
    --INTERNAL--kendo-calendar-cell-padding-y: var( --kendo-calendar-sm-cell-padding-y, 0.125rem );
    font-size: 1rem;
    line-height: 1.5;
}

.k-calendar-sm.k-month-calendar,
.k-calendar-sm .k-calendar-monthview {
    --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-sm-month-cell-size, 34px );
}

.k-calendar-sm.k-year-calendar,
.k-calendar-sm .k-calendar-yearview {
    --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-sm-year-cell-size, 68px );
}

.k-calendar-sm.k-decade-calendar,
.k-calendar-sm .k-calendar-decadeview {
    --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-sm-decade-cell-size, 68px );
}

.k-calendar-sm.k-century-calendar,
.k-calendar-sm .k-calendar-centuryview {
    --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-sm-century-cell-size, 68px );
}

.k-calendar-md {
    --INTERNAL--kendo-calendar-view-width: 304px;
    --INTERNAL--kendo-calendar-cell-padding-x: var( --kendo-calendar-md-cell-padding-x, 0.25rem );
    --INTERNAL--kendo-calendar-cell-padding-y: var( --kendo-calendar-md-cell-padding-y, 0.25rem );
    font-size: 1rem;
    line-height: 1.5;
}

.k-calendar-md.k-month-calendar,
.k-calendar-md .k-calendar-monthview {
    --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-md-month-cell-size, 38px );
}

.k-calendar-md.k-year-calendar,
.k-calendar-md .k-calendar-yearview {
    --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-md-year-cell-size, 76px );
}

.k-calendar-md.k-decade-calendar,
.k-calendar-md .k-calendar-decadeview {
    --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-md-decade-cell-size, 76px );
}

.k-calendar-md.k-century-calendar,
.k-calendar-md .k-calendar-centuryview {
    --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-md-century-cell-size, 76px );
}

.k-calendar-lg {
    --INTERNAL--kendo-calendar-view-width: 336px;
    --INTERNAL--kendo-calendar-cell-padding-x: var( --kendo-calendar-lg-cell-padding-x, 0.25rem );
    --INTERNAL--kendo-calendar-cell-padding-y: var( --kendo-calendar-lg-cell-padding-y, 0.25rem );
    font-size: 1.25rem;
    line-height: 2;
}

.k-calendar-lg.k-month-calendar,
.k-calendar-lg .k-calendar-monthview {
    --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-lg-month-cell-size, 42px );
}

.k-calendar-lg.k-year-calendar,
.k-calendar-lg .k-calendar-yearview {
    --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-lg-year-cell-size, 84px );
}

.k-calendar-lg.k-decade-calendar,
.k-calendar-lg .k-calendar-decadeview {
    --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-lg-decade-cell-size, 84px );
}

.k-calendar-lg.k-century-calendar,
.k-calendar-lg .k-calendar-centuryview {
    --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-lg-century-cell-size, 84px );
}

.k-calendar-infinite {
    box-sizing: content-box;
    display: inline-flex;
    flex-flow: row nowrap;
}

.k-calendar-infinite .k-calendar-view {
    padding-block: 0px;
    padding-inline: 1rem;
    height: 342px;
    flex: 0 0 auto;
    display: flex;
    flex-flow: column nowrap;
    gap: 0;
    overflow: hidden;
}

.k-calendar-infinite .k-calendar-view .k-content.k-scrollable {
    position: relative;
}

.k-calendar-infinite .k-calendar-view::after {
    display: block;
    position: absolute;
    bottom: 0;
    content: "\200b";
    height: 0;
    line-height: 0;
    z-index: 1;
    width: 150%;
    left: -25%;
    box-shadow: 0 0 38px 19px #ffffff;
}

.k-calendar-infinite .k-calendar-header {
    margin-left: -1rem;
    margin-right: -1rem;
    padding-block: 0.5rem;
    padding-inline: 1rem;
    width: auto;
    min-width: 0;
}

.k-calendar-infinite .k-calendar-weekdays {
    flex: 0 0 auto;
}

.k-calendar-navigation {
    width: 5em;
    text-align: center;
    flex: 0 0 auto;
    display: block;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.k-calendar-navigation::before, .k-calendar-navigation::after {
    display: block;
    position: absolute;
    content: "\200b";
    height: 0;
    line-height: 0;
    z-index: 1;
    width: 200%;
    left: -50%;
    box-shadow: 0 0 6em 3em #f8f9fa;
}

.k-calendar-navigation::before {
    top: 0;
}

.k-calendar-navigation::after {
    bottom: 0;
}

.k-calendar-navigation .k-content,
.k-calendar-navigation .k-calendar-content {
    background: transparent;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.k-calendar-navigation .k-content ul,
.k-calendar-navigation .k-calendar-content ul {
    width: 5em;
}

.k-calendar-navigation .k-content li,
.k-calendar-navigation .k-calendar-content li {
    height: 2em;
    line-height: 2em;
    cursor: pointer;
    padding-block: 0;
    padding-inline: 1em;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: clip;
}

.k-calendar-navigation .k-calendar-navigation-marker {
    font-weight: bold;
}

.k-calendar-navigation .k-calendar-navigation-highlight {
    width: 100%;
    border-width: 1px 0;
    border-style: solid;
    height: 2em;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.k-calendar-range {
    width: auto;
}

.k-calendar-range .k-calendar-view {
    width: auto;
    white-space: nowrap;
}

.k-calendar-range .k-calendar-view::after {
    display: none;
}

.k-calendar-range .k-calendar-view:focus {
    outline: 0;
}

.k-calendar-range .k-range-start {
    border-color: inherit;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.k-calendar-range .k-range-end {
    border-color: inherit;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.k-calendar-range .k-range-mid {
    border-color: inherit;
    border-radius: 0;
}

.k-rtl .k-calendar .k-calendar-nav-prev,
.k-rtl .k-calendar .k-calendar-nav-next,
[dir="rtl"] .k-calendar .k-calendar-nav-prev,
[dir="rtl"] .k-calendar .k-calendar-nav-next,
.k-calendar.k-rtl .k-calendar-nav-prev,
.k-calendar.k-rtl .k-calendar-nav-next,
.k-calendar[dir="rtl"] .k-calendar-nav-prev,
.k-calendar[dir="rtl"] .k-calendar-nav-next {
    transform: scaleX(-1);
}

.k-rtl .k-calendar .k-content.k-scrollable,
.k-rtl .k-calendar .k-calendar-content.k-scrollable,
[dir="rtl"] .k-calendar .k-content.k-scrollable,
[dir="rtl"] .k-calendar .k-calendar-content.k-scrollable,
.k-calendar.k-rtl .k-content.k-scrollable,
.k-calendar.k-rtl .k-calendar-content.k-scrollable,
.k-calendar[dir="rtl"] .k-content.k-scrollable,
.k-calendar[dir="rtl"] .k-calendar-content.k-scrollable {
    padding-right: 100px;
    padding-left: 100px;
    margin-left: calc( -100px - var(--kendo-scrollbar-width, 17px));
    margin-right: -100px;
}

.k-calendar {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-calendar .k-header {
    border-color: inherit;
    color: #212529;
    background-color: #f8f9fa;
    box-shadow: none;
}

.k-calendar .k-calendar-th,
.k-calendar .k-calendar-caption,
.k-calendar .k-meta-header,
.k-calendar .k-month-header {
    color: #6c757d;
}

.k-calendar .k-calendar-view .k-today .k-calendar-cell-inner, .k-calendar .k-calendar-view .k-today .k-link {
    box-shadow: inset 0 0 0 1px #0d6efd;
}

.k-calendar .k-calendar-view .k-today.k-focus .k-calendar-cell-inner, .k-calendar .k-calendar-view .k-today.k-focus .k-link {
    box-shadow: inset 0 0 0 1px #0d6efd, inset 0 0 0 0.25rem rgba(228, 231, 235, 0.5);
}

.k-calendar .k-other-month {
    color: #6c757d;
}

.k-calendar .k-alt {
    background-color: transparent;
    color: #6c757d;
}

.k-calendar .k-out-of-range {
    pointer-events: none;
}

.k-calendar .k-calendar-td:hover .k-calendar-cell-inner, .k-calendar .k-calendar-td:hover .k-link,
.k-calendar .k-calendar-td.k-hover .k-calendar-cell-inner,
.k-calendar .k-calendar-td.k-hover .k-link {
    border-color: #d6d9dc;
    color: #16181b;
    background-color: #e9ecef;
}

.k-calendar .k-calendar-td.k-selected .k-calendar-cell-inner, .k-calendar .k-calendar-td.k-selected .k-link {
    border-color: #0c65e9;
    color: #ffffff;
    background-color: #0d6efd;
}

.k-calendar .k-calendar-td.k-selected:hover .k-calendar-cell-inner, .k-calendar .k-calendar-td.k-selected:hover .k-link,
.k-calendar .k-calendar-td.k-selected.k-hover .k-calendar-cell-inner,
.k-calendar .k-calendar-td.k-selected.k-hover .k-link {
    border-color: #e4e5e6;
    color: #ffffff;
    background-color: #0c6af3;
}

.k-calendar .k-calendar-td:focus .k-calendar-cell-inner, .k-calendar .k-calendar-td:focus .k-link,
.k-calendar .k-calendar-td.k-focus .k-calendar-cell-inner,
.k-calendar .k-calendar-td.k-focus .k-link {
    box-shadow: inset 0 0 0 0.25rem rgba(228, 231, 235, 0.5);
}

.k-calendar .k-calendar-td.k-selected:focus .k-calendar-cell-inner, .k-calendar .k-calendar-td.k-selected:focus .k-link,
.k-calendar .k-calendar-td.k-selected.k-focus .k-calendar-cell-inner,
.k-calendar .k-calendar-td.k-selected.k-focus .k-link {
    box-shadow: inset 0 0 0 2px rgba(2, 82, 201, 0.5);
}

.k-calendar .k-calendar-navigation {
    color: #212529;
    background-color: #f8f9fa;
    box-shadow: inset -1px 0 #dee2e6;
}

.k-calendar .k-calendar-navigation li:hover,
.k-calendar .k-calendar-navigation li.k-hover {
    color: #0a58ca;
}

.k-calendar .k-calendar-navigation-highlight {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-calendar[dir="rtl"] .k-calendar-navigation,
.k-rtl .k-calendar .k-calendar-navigation {
    box-shadow: inset 1px 0 #dee2e6;
}

.k-calendar.k-invalid, .k-calendar.k-invalid:hover, .k-calendar.ng-invalid.ng-touched, .k-calendar.ng-invalid.ng-dirty {
    border-color: #dc3545;
}

.k-scheduler .k-calendar .k-other-month {
    color: #6c757d;
    background-color: transparent;
}

.k-calendar .k-range-start,
.k-calendar .k-range-end,
.k-calendar .k-range-mid {
    background-color: rgba(13, 110, 253, 0.25);
}

.k-calendar .k-range-start.k-range-end {
    background-image: none;
    background-color: transparent;
}

.k-calendar .k-range-start .k-calendar-cell-inner, .k-calendar .k-range-start .k-link,
.k-calendar .k-range-end .k-calendar-cell-inner,
.k-calendar .k-range-end .k-link {
    background-color: #0d6efd;
}

.k-calendar .k-range-start.k-active .k-calendar-cell-inner, .k-calendar .k-range-start.k-active .k-link,
.k-calendar .k-range-end.k-active .k-calendar-cell-inner,
.k-calendar .k-range-end.k-active .k-link {
    box-shadow: inset 0 0 2px 2px rgba(0, 0, 0, 0.2);
}

.k-calendar .k-range-split-start,
.k-calendar .k-range-split-end {
    position: relative;
}

.k-calendar .k-range-split-start::after,
.k-calendar .k-range-split-end::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 5px;
}

.k-calendar .k-range-split-start::after {
    left: -5px;
    right: auto;
    background-image: linear-gradient(to left, rgba(13, 110, 253, 0.25), transparent 100%);
}

.k-calendar .k-range-split-end::after {
    right: -5px;
    left: auto;
    background-image: linear-gradient(to right, rgba(13, 110, 253, 0.25), transparent 100%);
}

.k-timeselector {
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-flow: column nowrap;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-popup > .k-timeselector {
    border-width: 0;
}

.k-time-header,
.k-time-selector-header {
    padding-block: 0.5rem;
    padding-inline: 0.5rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 0 0 auto;
}

.k-time-header .k-title,
.k-time-header .k-time-selector-header-title,
.k-time-selector-header .k-title,
.k-time-selector-header .k-time-selector-header-title {
    padding-block: 0.375rem;
    padding-inline: 0.75rem;
    font-weight: bold;
    display: inline-block;
}

.k-time-header .k-time-now,
.k-time-selector-header .k-time-now {
    border-width: 0;
    line-height: inherit;
    cursor: pointer;
}

.k-actions.k-time-fast-selection, .k-time-fast-selection.k-edit-buttons,
.k-time-fast-selection.k-action-buttons,
.k-time-fast-selection.k-columnmenu-actions, .k-time-fast-selection.k-form-buttons {
    margin-top: 0;
}

.k-time-list-container {
    display: flex;
    position: relative;
    flex: 1 1 auto;
    overflow: hidden;
}

.k-time-highlight,
.k-time-list-highlight {
    width: 100%;
    height: calc( 1.5rem + 0.5rem);
    border-width: 1px 0px;
    border-style: solid;
    box-sizing: border-box;
    position: absolute;
    top: calc( 50% + 0.65625rem);
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 1;
}

.k-time-list-wrapper {
    min-width: 4em;
    height: 240px;
    box-sizing: content-box;
    display: inline-flex;
    flex-flow: column nowrap;
    align-items: stretch;
    overflow: hidden;
    position: relative;
    text-align: center;
    flex: 1 1 auto;
}

.k-time-list-wrapper .k-title {
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: bold;
    text-align: center;
    text-transform: capitalize;
    display: block;
}

.k-time-list-wrapper.k-focus::before, .k-time-list-wrapper.k-focus::after {
    display: block;
    content: "\200b";
    position: absolute;
    width: 100%;
    left: 0;
    pointer-events: none;
    height: calc( 50% - calc( 1.5rem + 0.5rem)/2);
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
}

.k-time-list-wrapper.k-focus::before {
    top: 1.3125rem;
}

.k-time-list-wrapper.k-focus::after {
    bottom: 0;
}

.k-time-list {
    display: flex;
    flex-flow: row nowrap;
    align-items: stretch;
    flex: 1;
    position: relative;
    z-index: 1;
    outline: 0;
    overflow: hidden;
}

.k-time-list::before, .k-time-list::after {
    display: block;
    position: absolute;
    content: "\200b";
    height: 0;
    line-height: 0;
    z-index: 1;
    width: 200%;
    left: -50%;
}

.k-time-list::before {
    top: 0;
}

.k-time-list::after {
    bottom: 0;
}

.k-time-container,
.k-time-list-content {
    position: relative;
    flex: 1 1 auto;
    display: block;
    overflow-x: hidden;
    overflow-y: scroll;
    padding-right: 100px;
    padding-left: 100px;
    margin-left: -100px;
    margin-right: calc( -100px - var(--kendo-scrollbar-width, 17px));
}

.k-time-container > ul,
.k-time-list-content > ul {
    height: auto;
    width: 4em;
    margin: auto;
}

.k-time-container .k-scrollable-placeholder,
.k-time-list-content .k-scrollable-placeholder {
    position: absolute;
    width: 1px;
    top: 0;
    right: 0;
}

.k-time-list-item,
.k-time-list .k-item {
    padding-block: 0.25rem;
    padding-inline: 1rem;
}

.k-time-separator {
    width: 0;
    height: calc( 1.5rem + 0.5rem);
    align-self: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 11;
    top: calc( 0.65625rem);
}

.k-timeselector-sm {
    font-size: 0.875rem;
    line-height: 1.4285714286;
}

.k-timeselector-sm .k-time-highlight,
.k-timeselector-sm .k-time-list-highlight {
    height: calc( 1.25rem + 0.5rem);
}

.k-timeselector-sm .k-time-separator {
    height: calc( 1.25rem + 0.5rem);
}

.k-timeselector-sm .k-time-list-item,
.k-timeselector-sm .k-time-list .k-item {
    padding-block: 0.25rem;
    padding-inline: 1rem;
}

.k-timeselector-md {
    font-size: 1rem;
    line-height: 1.5;
}

.k-timeselector-md .k-time-highlight,
.k-timeselector-md .k-time-list-highlight {
    height: calc( 1.5rem + 0.5rem);
}

.k-timeselector-md .k-time-separator {
    height: calc( 1.5rem + 0.5rem);
}

.k-timeselector-md .k-time-list-item,
.k-timeselector-md .k-time-list .k-item {
    padding-block: 0.25rem;
    padding-inline: 1rem;
}

.k-timeselector-lg {
    font-size: 1rem;
    line-height: 1.5;
}

.k-timeselector-lg .k-time-highlight,
.k-timeselector-lg .k-time-list-highlight {
    height: calc( 1.5rem + 1rem);
}

.k-timeselector-lg .k-time-separator {
    height: calc( 1.5rem + 1rem);
}

.k-timeselector-lg .k-time-list-item,
.k-timeselector-lg .k-time-list .k-item {
    padding-block: 0.5rem;
    padding-inline: 1rem;
}

.k-rtl .k-time-container,
.k-rtl .k-time-list-content,
[dir="rtl"] .k-time-container,
[dir="rtl"] .k-time-list-content {
    padding-right: 100px;
    padding-left: 100px;
    margin-left: calc( -100px - var(--kendo-scrollbar-width, 17px));
    margin-right: -100px;
}

.k-timeselector {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-time-header .k-time-now,
.k-time-selector-header .k-time-now {
    color: #0d6efd;
}

.k-time-header .k-time-now:hover,
.k-time-selector-header .k-time-now:hover {
    color: #0a58ca;
}

.k-time-list-wrapper .k-title {
    color: #6c757d;
}

.k-time-list-wrapper.k-focus .k-title {
    color: #212529;
}

.k-time-list-wrapper.k-focus::before, .k-time-list-wrapper.k-focus::after {
    background-color: rgba(0, 0, 0, 0.02);
}

.k-time-list::before, .k-time-list::after {
    box-shadow: 0 0 3em 1.5em #ffffff;
}

.k-time-list .k-item:hover {
    color: #0d6efd;
}

.k-time-container {
    background: transparent;
}

.k-time-highlight {
    border-color: #dee2e6;
    background-color: #ffffff;
}

.k-captcha {
    width: 335px;
    box-sizing: border-box;
    font-size: 1rem;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    line-height: 1.5;
    display: flex;
    flex-flow: column nowrap;
    gap: 0.5rem;
}

.k-captcha *,
.k-captcha *::before,
.k-captcha *::after {
    box-sizing: border-box;
}

.k-captcha-image-wrap {
    position: relative;
    gap: 0.5rem;
}

.k-captcha-image-controls {
    position: relative;
    gap: 0.5rem;
}

.k-captcha-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.k-captcha-image > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.k-captcha-loading .k-captcha-image {
    height: auto;
}

.k-captcha-volume-control {
    height: 100%;
}

.k-captcha-validation-message {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    font-style: italic;
}

.k-captcha {
    border-color: #ffffff;
    color: #ffffff;
    background-color: #ffffff;
}

.k-colorpalette {
    border-width: 0;
    box-sizing: border-box;
    outline: 0;
    font-size: 1rem;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    line-height: 0;
    display: inline-flex;
    position: relative;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-colorpalette *,
.k-colorpalette *::before,
.k-colorpalette *::after {
    box-sizing: border-box;
}

.k-colorpalette-table {
    width: 100%;
    height: 100%;
    border-collapse: collapse;
    position: relative;
}

.k-colorpalette-tile {
    width: 1.5rem;
    height: 1.5rem;
    box-sizing: border-box;
    overflow: hidden;
    cursor: pointer;
}

.k-colorpalette-tile:hover, .k-colorpalette-tile.k-hover {
    position: relative;
    z-index: 101;
}

.k-colorpalette-tile:focus, .k-colorpalette-tile.k-focus, .k-colorpalette-tile.k-selected, .k-colorpalette-tile.k-selected:hover {
    position: relative;
    z-index: 100;
}

.k-colorpalette-tile:focus, .k-colorpalette-tile.k-focus {
    box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.k-colorpalette-tile:hover, .k-colorpalette-tile.k-hover {
    box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.k-colorpalette-tile.k-selected, .k-colorpalette-tile.k-selected:hover {
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.3), inset 0 0 0 1px white;
}

.k-colorgradient {
    border-radius: 0.375rem;
    width: 328px;
    padding-block: 1rem;
    padding-inline: 1rem;
    border-style: solid;
    border-width: 1px;
    box-sizing: border-box;
    outline: 0;
    font-size: 1rem;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-colorgradient *,
.k-colorgradient *::before,
.k-colorgradient *::after {
    box-sizing: border-box;
}

.k-colorgradient-canvas {
    gap: 0.75rem;
}

.k-colorgradient-canvas .k-hsv-rectangle {
    border-radius: 0.375rem;
    position: relative;
    flex: 1 1 auto;
    user-select: none;
}

.k-colorgradient-canvas .k-hsv-gradient {
    border-radius: 0.375rem;
    height: 180px;
}

.k-colorgradient-canvas .k-hsv-draghandle {
    margin-top: -7px;
    margin-left: -7px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    cursor: pointer;
}

.k-colorgradient-canvas .k-hsv-controls {
    position: relative;
    flex-shrink: 0;
    gap: 0.75rem;
}

.k-colorgradient .k-draghandle {
    border-radius: 50%;
    width: 14px;
    height: 14px;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
}

.k-colorgradient-slider.k-slider-vertical {
    width: 10px;
    height: 180px;
    flex: 0 0 10px;
}

.k-colorgradient-slider.k-slider-vertical .k-slider-track {
    width: 10px;
    border-radius: 10px;
    margin-left: -5px;
}

.k-colorgradient-slider.k-slider-horizontal {
    width: 100%;
    height: 10px;
    flex: 0 0 10px;
}

.k-colorgradient-slider.k-slider-horizontal .k-slider-track {
    height: 10px;
    border-radius: 10px;
    margin-top: -5px;
}

.k-colorgradient-slider.k-alpha-slider .k-slider-track::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 10px;
    position: relative;
    z-index: -1;
}

.k-colorgradient-slider .k-slider-wrap,
.k-colorgradient-slider .k-slider-track-wrap {
    z-index: 1;
}

.k-colorgradient-slider .k-slider-selection {
    display: none;
}

.k-colorgradient-slider .k-draghandle {
    border-width: 3px;
}

.k-colorgradient-inputs {
    gap: 0.5rem;
}

.k-colorgradient-inputs .k-colorgradient-input-label {
    text-transform: uppercase;
}

.k-colorgradient-inputs > .k-vstack, .k-colorgradient-inputs > .k-vbox {
    gap: 0.25rem;
}

.k-colorgradient-inputs .k-numerictextbox {
    width: 56px;
}

.k-colorgradient-inputs .k-input-inner {
    padding-inline-start: 2px;
    padding-inline-end: 2px;
    text-align: center;
    text-overflow: clip;
}

.k-colorgradient-color-contrast > div {
    display: flex;
    flex-flow: row nowrap;
    gap: 0.5rem;
}

.k-colorgradient-color-contrast .k-contrast-ratio {
    margin-bottom: 0.5rem;
}

.k-colorgradient-color-contrast .k-contrast-ratio-text {
    font-weight: 700;
}

.k-colorgradient-color-contrast .k-contrast-validation {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.k-colorgradient-color-contrast .k-contrast-validation .k-icon,
.k-colorgradient-color-contrast .k-contrast-validation .k-svg-icon {
    vertical-align: middle;
}

.k-colorgradient-color-contrast .k-contrast-validation .k-icon + .k-icon,
.k-colorgradient-color-contrast .k-contrast-validation .k-svg-icon + .k-svg-icon,
.k-colorgradient-color-contrast .k-contrast-validation .k-icon-wrapper-host + .k-icon-wrapper-host .k-icon {
    margin-inline-start: -13px;
}

.k-color-contrast-svg {
    position: absolute;
    top: 0;
    left: 0;
    overflow: visible;
    pointer-events: none;
}

.k-colorgradient {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-colorgradient:focus,
.k-colorgradient.k-focus {
    border-color: #d6d9dc;
}

.k-colorgradient-canvas .k-hsv-gradient {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), black), linear-gradient(to right, white, rgba(255, 255, 255, 0));
}

.k-colorgradient .k-draghandle {
    border-color: rgba(255, 255, 255, 0.8);
    background-color: transparent;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.k-colorgradient .k-draghandle:focus, .k-colorgradient .k-draghandle.k-focus {
    border-color: #ffffff;
    background-color: transparent;
    box-shadow: 0 1px 4px black;
}

.k-colorgradient .k-draghandle:hover, .k-colorgradient .k-draghandle.k-hover, .k-colorgradient .k-draghandle.k-active, .k-colorgradient .k-draghandle:active {
    border-color: #ffffff;
    background-color: transparent;
    box-shadow: 0 1px 4px black;
}

.k-colorgradient-slider.k-hue-slider.k-slider-horizontal .k-slider-track {
    background: linear-gradient(to right, #ff0000, #ffff00, #00ff00, #00ffff, #0000ff, #ff00ff, #ff0000);
}

.k-colorgradient-slider.k-hue-slider.k-slider-vertical .k-slider-track {
    background: linear-gradient(to top, #ff0000, #ffff00, #00ff00, #00ffff, #0000ff, #ff00ff, #ff0000);
}

.k-colorgradient-slider.k-alpha-slider .k-slider-track::before {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAuSURBVHgBxYyxDQAwDMJIL+YT+DjtzFRliUfLcklqBCRT4eCTxbD6kdL2/LgYXqpvCbs3kBv/AAAAAElFTkSuQmCC) center repeat;
}

.k-colorgradient-input-label {
    color: #6c757d;
}

.k-rtl .k-colorgradient .k-hue-slider.k-slider-horizontal .k-slider-track,
[dir="rtl"] .k-colorgradient .k-hue-slider.k-slider-horizontal .k-slider-track {
    background: linear-gradient(to left, #ff0000, #ffff00, #00ff00, #00ffff, #0000ff, #ff00ff, #ff0000);
}

.k-coloreditor {
    border-radius: 0.375rem;
    min-width: 328px;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-size: 1rem;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    line-height: 1.5;
    display: inline-flex;
    flex-direction: column;
    align-items: stretch;
}

.k-coloreditor *,
.k-coloreditor *::before,
.k-coloreditor *::after {
    box-sizing: border-box;
}

.k-coloreditor-header {
    padding: 1rem 1rem 0;
}

.k-coloreditor-header-actions {
    gap: 0.5rem;
}

.k-coloreditor-preview {
    display: flex;
    flex-flow: column nowrap;
    align-items: stretch;
    justify-content: center;
    gap: 0.25rem;
    position: relative;
    z-index: 1;
}

.k-coloreditor-preview .k-color-preview {
    width: 32px;
    height: 12px;
}

.k-coloreditor-views {
    min-width: calc( var(--kendo-color-preview-width, 1.5rem) * var(--kendo-color-preview-columns, 10));
    padding-block: 1rem;
    padding-inline: 1rem;
    gap: 1rem;
}

.k-coloreditor-views .k-colorgradient {
    padding: 0;
    width: auto;
    border-width: 0;
}

.k-coloreditor-views .k-colorgradient:focus,
.k-coloreditor-views .k-colorgradient.k-focus {
    outline: 2px dotted;
    outline-offset: 2px;
    border-radius: 0;
}

.k-coloreditor-views .k-colorpalette {
    align-self: center;
}

.k-coloreditor-views .k-colorpalette-tile {
    width: var(--kendo-color-preview-width, 1.5rem);
    height: var(--kendo-color-preview-height, 1.5rem);
}

.k-coloreditor-footer.k-actions, .k-coloreditor-footer.k-edit-buttons,
.k-coloreditor-footer.k-action-buttons,
.k-coloreditor-footer.k-columnmenu-actions, .k-coloreditor-footer.k-form-buttons {
    margin: 0;
}

.k-coloreditor {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-coloreditor:focus,
.k-coloreditor.k-focus {
    border-color: #d6d9dc;
}

.k-coloreditor .k-colorgradient:focus,
.k-coloreditor .k-colorgradient.k-focus {
    box-shadow: none;
    outline-color: rgba(0, 0, 0, 0.3);
}

.k-color-picker, .k-colorpicker {
    width: min-content;
}

.k-datetime-selector {
    display: flex;
    transition: transform .2s;
}

.k-datetime-wrap {
    width: calc( 304px + 2rem);
    overflow: hidden;
}

.k-datetime-wrap .k-datetime-buttongroup {
    padding-block: 0.5rem;
    padding-inline: 0.5rem;
}

.k-datetime-wrap .k-calendar,
.k-datetime-wrap .k-timeselector {
    width: 100%;
    border-width: 0;
}

.k-datetime-calendar-wrap,
.k-datetime-time-wrap {
    text-align: center;
    flex: 0 0 calc( 304px + 2rem);
}

.k-date-tab .k-datetime-selector {
    transform: translateX(0);
}

.k-time-tab .k-datetime-selector {
    transform: translateX(-100%);
}

.k-time-tab .k-datetime-selector.k-rtl, .k-time-tab .k-datetime-selector[dir="rtl"],
.k-rtl .k-time-tab .k-datetime-selector,
[dir="rtl"] .k-time-tab .k-datetime-selector {
    transform: translateX(100%);
}

.k-daterange-picker, .k-daterangepicker {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-end;
    gap: 0.5rem;
}

.k-daterange-picker *, .k-daterangepicker *,
.k-daterange-picker *::before,
.k-daterangepicker *::before,
.k-daterange-picker *::after,
.k-daterangepicker *::after {
    box-sizing: border-box;
}

.k-daterange-picker .k-dateinput, .k-daterangepicker .k-dateinput {
    width: 10em;
}

.k-daterangepicker-wrap {
    display: inherit;
    flex-flow: inherit;
    align-items: inherit;
    gap: inherit;
}

.k-dropdowngrid-popup {
    overflow: hidden;
}

.k-dropdowngrid-popup > .k-data-table {
    border-width: 0;
}

.k-dropdown-operator {
    width: min-content;
    flex: none;
    aspect-ratio: 1;
}

.k-dropdown-operator .k-input-button {
    border-width: 0;
    width: min-content;
}

.k-dropdown-operator .k-input-button .k-button-icon {
    width: auto;
    aspect-ratio: 1;
}

.k-dropdown-operator .k-input-inner {
    display: none;
}

.k-treeview {
    padding: 0;
    border-width: 0;
    background: none;
    box-sizing: border-box;
    outline: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    line-height: 1.5;
    display: block;
    cursor: default;
    overflow: auto;
    white-space: nowrap;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-treeview *,
.k-treeview *::before,
.k-treeview *::after {
    box-sizing: border-box;
}

.k-treeview-filter {
    padding: 0.5rem;
    display: block;
    position: relative;
    flex: none;
}

.k-treeview-group {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    outline: 0;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-treeview-group.ng-animating {
    overflow: hidden;
}

.k-treeview-top,
.k-treeview-mid,
.k-treeview-bot {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
}

.k-treeview-item {
    outline-style: none;
    margin: 0;
    padding: 0 0 0 16px;
    border-width: 0;
    display: block;
}

.k-treeview-toggle {
    margin-left: -16px;
    flex: none;
    display: inline-flex;
    flex-flow: row nowrap;
    align-items: center;
    cursor: pointer;
}

.k-treeview-loading {
    margin-right: 0.5rem;
}

.k-treeview .k-checkbox-wrap,
.k-treeview .k-checkbox-wrapper {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    align-self: center;
}

.k-treeview-leaf {
    border-radius: 0.25rem;
    padding-block: 0.25rem;
    padding-inline: 0.75rem;
    border: 0px solid transparent;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    align-content: center;
    vertical-align: middle;
    position: relative;
}

.k-treeview-leaf .k-icon,
.k-treeview-leaf .k-svg-icon,
.k-treeview-leaf .k-image,
.k-treeview-leaf .k-sprite {
    margin-right: 0.5rem;
}

.k-treeview-leaf.k-focus {
    z-index: 1;
}

.k-treeview .k-treeview-load-more-button {
    cursor: pointer;
}

.k-treeview .k-treeview-load-more-button:hover, .k-treeview .k-treeview-load-more-button.k-hover, .k-treeview .k-treeview-load-more-button:focus, .k-treeview .k-treeview-load-more-button.k-focus {
    text-decoration: underline;
}

.k-rtl .k-treeview .k-treeview-item,
[dir="rtl"] .k-treeview .k-treeview-item,
.k-treeview.k-rtl .k-treeview-item,
.k-treeview[dir="rtl"] .k-treeview-item {
    padding-left: 0;
    padding-right: 16px;
}

.k-rtl .k-treeview .k-treeview-toggle,
[dir="rtl"] .k-treeview .k-treeview-toggle,
.k-treeview.k-rtl .k-treeview-toggle,
.k-treeview[dir="rtl"] .k-treeview-toggle {
    margin-left: 0;
    margin-right: -16px;
}

.k-rtl .k-treeview .k-treeview-loading,
[dir="rtl"] .k-treeview .k-treeview-loading,
.k-treeview.k-rtl .k-treeview-loading,
.k-treeview[dir="rtl"] .k-treeview-loading {
    margin-right: 0;
    margin-left: 0.5rem;
}

.k-rtl .k-treeview .k-treeview-leaf .k-icon,
.k-rtl .k-treeview .k-treeview-leaf .k-svg-icon,
.k-rtl .k-treeview .k-treeview-leaf .k-image,
.k-rtl .k-treeview .k-treeview-leaf .k-sprite,
.k-rtl .k-treeview .k-in .k-icon,
.k-rtl .k-treeview .k-in .k-svg-icon,
.k-rtl .k-treeview .k-in .k-image,
.k-rtl .k-treeview .k-in .k-sprite,
[dir="rtl"] .k-treeview .k-treeview-leaf .k-icon,
[dir="rtl"] .k-treeview .k-treeview-leaf .k-svg-icon,
[dir="rtl"] .k-treeview .k-treeview-leaf .k-image,
[dir="rtl"] .k-treeview .k-treeview-leaf .k-sprite,
[dir="rtl"] .k-treeview .k-in .k-icon,
[dir="rtl"] .k-treeview .k-in .k-svg-icon,
[dir="rtl"] .k-treeview .k-in .k-image,
[dir="rtl"] .k-treeview .k-in .k-sprite,
.k-treeview.k-rtl .k-treeview-leaf .k-icon,
.k-treeview.k-rtl .k-treeview-leaf .k-svg-icon,
.k-treeview.k-rtl .k-treeview-leaf .k-image,
.k-treeview.k-rtl .k-treeview-leaf .k-sprite,
.k-treeview.k-rtl .k-in .k-icon,
.k-treeview.k-rtl .k-in .k-svg-icon,
.k-treeview.k-rtl .k-in .k-image,
.k-treeview.k-rtl .k-in .k-sprite,
.k-treeview[dir="rtl"] .k-treeview-leaf .k-icon,
.k-treeview[dir="rtl"] .k-treeview-leaf .k-svg-icon,
.k-treeview[dir="rtl"] .k-treeview-leaf .k-image,
.k-treeview[dir="rtl"] .k-treeview-leaf .k-sprite,
.k-treeview[dir="rtl"] .k-in .k-icon,
.k-treeview[dir="rtl"] .k-in .k-svg-icon,
.k-treeview[dir="rtl"] .k-in .k-image,
.k-treeview[dir="rtl"] .k-in .k-sprite {
    margin-right: 0;
    margin-left: 0.5rem;
}

.k-treeview-sm {
    font-size: 0.875rem;
    line-height: 1.4285714286;
}

.k-treeview-sm .k-treeview-leaf {
    padding-block: 0.25rem;
    padding-inline: 0.5rem;
}

.k-treeview-md {
    font-size: 1rem;
    line-height: 1.5;
}

.k-treeview-md .k-treeview-leaf {
    padding-block: 0.25rem;
    padding-inline: 0.75rem;
}

.k-treeview-lg {
    font-size: 1rem;
    line-height: 1.5;
}

.k-treeview-lg .k-treeview-leaf {
    padding-block: 0.5rem;
    padding-inline: 0.75rem;
}

.k-treeview-leaf {
    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-treeview {
    color: #212529;
}

.k-treeview-leaf:hover, .k-treeview-leaf.k-hover {
    border-color: #e9ecef;
    color: #16181b;
    background-color: #e9ecef;
}

.k-treeview-leaf:focus, .k-treeview-leaf.k-focus {
    box-shadow: inset 0 0 0 2px rgba(33, 37, 41, 0.15);
}

.k-treeview-leaf.k-selected {
    border-color: #0d6efd;
    color: #ffffff;
    background-color: #0d6efd;
}

.k-treeview .k-treeview-load-more-button {
    color: #0d6efd;
    background-color: transparent;
}

.k-treeview .k-treeview-load-more-button:hover, .k-treeview .k-treeview-load-more-button.k-hover {
    color: #0a58ca;
    background-color: transparent;
}

.k-treeview .k-treeview-load-more-button:focus, .k-treeview .k-treeview-load-more-button.k-focus {
    color: #0a58ca;
    background-color: transparent;
    box-shadow: inset 0 0 0 2px rgba(33, 37, 41, 0.15);
}

.k-popup-dropdowntree,
.k-dropdowntree-popup,
.k-multiselecttree-popup {
    padding: 0;
}

.k-popup-dropdowntree .k-check-all,
.k-dropdowntree-popup .k-check-all,
.k-multiselecttree-popup .k-check-all {
    padding: 0.5rem 0.5rem 0;
}

.k-popup-dropdowntree .k-treeview,
.k-dropdowntree-popup .k-treeview,
.k-multiselecttree-popup .k-treeview {
    padding-block: 0.5rem;
    padding-inline: 0.5rem;
}

.k-rating {
    margin: 0;
    padding: 0;
    border-width: 0;
    box-sizing: border-box;
    outline: 0;
    background: none;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    line-height: 1.5;
    display: inline-flex;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-rating *,
.k-rating *::before,
.k-rating *::after {
    box-sizing: border-box;
}

.k-rating.k-readonly {
    pointer-events: none;
}

.k-rating-container {
    flex: 0 1 auto;
    position: relative;
    margin-block: 0;
    margin-inline: 0.5rem;
}

.k-rating-container .k-rating-item {
    display: inline-flex;
    position: relative;
    padding-block: 0.5rem;
    padding-inline: 0.5rem;
    align-items: center;
    vertical-align: middle;
    margin: 0;
    outline: 0;
    overflow: hidden;
    transition: color 200ms ease-out 0s;
}

.k-rating-container .k-rating-item * {
    pointer-events: none;
}

.k-rating-container .k-rating-item .k-icon {
    font-size: 24px;
}

.k-rating-container .k-rating-item .k-svg-icon {
    width: 24px;
    height: 24px;
}

.k-rating-container .k-rating-item .k-rating-precision-part,
.k-rating-container .k-rating-item .k-rating-precision-complement {
    display: inherit;
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    overflow: hidden;
}

.k-rating-container .k-rating-item .k-rating-precision-complement {
    direction: rtl;
}

.k-rating-container .k-rating-item svg {
    fill: currentColor;
}

.k-rating-label {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    line-height: 2;
    margin-block: 0.5rem;
    margin-inline: 1rem;
}

.k-rtl .k-rating-precision-part,
[dir="rtl"] .k-rating-precision-part {
    left: auto;
    right: 0.5rem;
}

.k-rtl .k-rating-item .k-rating-precision-complement,
[dir="rtl"] .k-rating-item .k-rating-precision-complement {
    direction: ltr;
}

.k-rating {
    color: #212529;
}

.k-rating:focus .k-rating-item > .k-icon, .k-rating.k-focus .k-rating-item > .k-icon {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.k-rating:focus .k-rating-item > .k-svg-icon, .k-rating.k-focus .k-rating-item > .k-svg-icon {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.k-rating:focus .k-rating-item.k-selected > .k-icon, .k-rating.k-focus .k-rating-item.k-selected > .k-icon {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.k-rating:focus .k-rating-item.k-selected > .k-svg-icon, .k-rating.k-focus .k-rating-item.k-selected > .k-svg-icon {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.k-rating-item {
    color: #6c757d;
}

.k-rating-item.k-selected {
    color: #0d6efd;
}

.k-rating-item.k-selected:focus, .k-rating-item.k-selected.k-focus {
    color: #0d6efd;
}

.k-rating-item:hover, .k-rating-item.k-hover {
    color: #0d6efd;
    cursor: pointer;
}

.k-switch {
    box-sizing: border-box;
    outline: 0;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    line-height: 1;
    position: relative;
    cursor: pointer;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-switch *,
.k-switch *::before,
.k-switch *::after {
    box-sizing: border-box;
}

.k-switch [type="checkbox"] {
    display: none;
}

.k-switch[aria-readonly="true"] {
    pointer-events: none;
}

.k-switch.k-readonly {
    pointer-events: none;
}

.k-switch-track {
    border-width: 1px;
    border-style: solid;
    outline: 0;
    display: flex;
    flex-flow: row nowrap;
    flex: 1 0 auto;
    position: relative;
    transition: background-color 200ms ease-in-out;
}

.k-switch-thumb-wrap {
    width: 0;
    height: 0;
    overflow: visible;
    position: absolute;
    transition: left 200ms ease-in-out;
    top: 50%;
}

.k-switch-thumb {
    display: block;
    position: absolute;
    transform: translate(-50%, -50%);
}

.k-switch-label-on,
.k-switch-label-off {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    overflow: hidden;
}

.k-switch-sm {
    width: 48px;
    height: 26px;
}

.k-switch-sm .k-switch-track {
    width: 48px;
    height: 26px;
}

.k-switch-sm .k-switch-thumb {
    width: 20px;
    height: 20px;
}

.k-switch-sm.k-switch-on .k-switch-thumb-wrap {
    left: calc( 100% - 10px - 3px);
}

.k-switch-sm.k-switch-off .k-switch-thumb-wrap {
    left: calc( 10px + 3px);
}

.k-switch-sm[dir="rtl"] .k-switch-label-on,
[dir="rtl"] .k-switch-sm .k-switch-label-on,
.k-rtl .k-switch-sm .k-switch-label-on {
    left: auto;
}

.k-switch-sm[dir="rtl"] .k-switch-label-off,
[dir="rtl"] .k-switch-sm .k-switch-label-off,
.k-rtl .k-switch-sm .k-switch-label-off {
    right: auto;
}

.k-switch-sm[dir="rtl"].k-switch-on .k-switch-thumb-wrap,
[dir="rtl"] .k-switch-sm.k-switch-on .k-switch-thumb-wrap,
.k-rtl .k-switch-sm.k-switch-on .k-switch-thumb-wrap {
    left: calc( 10px + 3px);
}

.k-switch-sm[dir="rtl"].k-switch-off .k-switch-thumb-wrap,
[dir="rtl"] .k-switch-sm.k-switch-off .k-switch-thumb-wrap,
.k-rtl .k-switch-sm.k-switch-off .k-switch-thumb-wrap {
    left: calc( 100% - 10px - 3px);
}

.k-switch-md {
    width: 56px;
    height: 30px;
}

.k-switch-md .k-switch-track {
    width: 56px;
    height: 30px;
}

.k-switch-md .k-switch-thumb {
    width: 24px;
    height: 24px;
}

.k-switch-md.k-switch-on .k-switch-thumb-wrap {
    left: calc( 100% - 12px - 3px);
}

.k-switch-md.k-switch-off .k-switch-thumb-wrap {
    left: calc( 12px + 3px);
}

.k-switch-md[dir="rtl"] .k-switch-label-on,
[dir="rtl"] .k-switch-md .k-switch-label-on,
.k-rtl .k-switch-md .k-switch-label-on {
    left: auto;
}

.k-switch-md[dir="rtl"] .k-switch-label-off,
[dir="rtl"] .k-switch-md .k-switch-label-off,
.k-rtl .k-switch-md .k-switch-label-off {
    right: auto;
}

.k-switch-md[dir="rtl"].k-switch-on .k-switch-thumb-wrap,
[dir="rtl"] .k-switch-md.k-switch-on .k-switch-thumb-wrap,
.k-rtl .k-switch-md.k-switch-on .k-switch-thumb-wrap {
    left: calc( 12px + 3px);
}

.k-switch-md[dir="rtl"].k-switch-off .k-switch-thumb-wrap,
[dir="rtl"] .k-switch-md.k-switch-off .k-switch-thumb-wrap,
.k-rtl .k-switch-md.k-switch-off .k-switch-thumb-wrap {
    left: calc( 100% - 12px - 3px);
}

.k-switch-lg {
    width: 64px;
    height: 34px;
}

.k-switch-lg .k-switch-track {
    width: 64px;
    height: 34px;
}

.k-switch-lg .k-switch-thumb {
    width: 28px;
    height: 28px;
}

.k-switch-lg.k-switch-on .k-switch-thumb-wrap {
    left: calc( 100% - 14px - 3px);
}

.k-switch-lg.k-switch-off .k-switch-thumb-wrap {
    left: calc( 14px + 3px);
}

.k-switch-lg[dir="rtl"] .k-switch-label-on,
[dir="rtl"] .k-switch-lg .k-switch-label-on,
.k-rtl .k-switch-lg .k-switch-label-on {
    left: auto;
}

.k-switch-lg[dir="rtl"] .k-switch-label-off,
[dir="rtl"] .k-switch-lg .k-switch-label-off,
.k-rtl .k-switch-lg .k-switch-label-off {
    right: auto;
}

.k-switch-lg[dir="rtl"].k-switch-on .k-switch-thumb-wrap,
[dir="rtl"] .k-switch-lg.k-switch-on .k-switch-thumb-wrap,
.k-rtl .k-switch-lg.k-switch-on .k-switch-thumb-wrap {
    left: calc( 14px + 3px);
}

.k-switch-lg[dir="rtl"].k-switch-off .k-switch-thumb-wrap,
[dir="rtl"] .k-switch-lg.k-switch-off .k-switch-thumb-wrap,
.k-rtl .k-switch-lg.k-switch-off .k-switch-thumb-wrap {
    left: calc( 100% - 14px - 3px);
}

.k-switch[dir="rtl"] .k-switch-thumb,
[dir="rtl"] .k-switch .k-switch-thumb,
.k-switch.k-rtl .k-switch-thumb,
.k-rtl .k-switch .k-switch-thumb {
    transform: translate(50%, -50%);
}

.k-switch.k-disabled {
    opacity: 1;
    filter: none;
}

.k-switch-off .k-switch-track {
    border-color: #adb5bd;
    background-color: #ffffff;
}

.k-switch-off .k-switch-thumb {
    background-color: #adb5bd;
}

.k-switch-off:focus .k-switch-track, .k-switch-off.k-focus .k-switch-track {
    border-color: #86b7fe;
    outline: 0.25rem solid rgba(13, 110, 253, 0.25);
}

.k-switch-off:disabled .k-switch-track, .k-switch-off.k-disabled .k-switch-track {
    background-color: #e9ecef;
}

.k-switch-off .k-switch-label-on {
    color: transparent;
}

.k-switch-on .k-switch-track {
    border-color: #0d6efd;
    background-color: #0d6efd;
}

.k-switch-on .k-switch-thumb {
    background-color: white;
}

.k-switch-on:focus .k-switch-track, .k-switch-on.k-focus .k-switch-track {
    outline: 0.25rem solid rgba(13, 110, 253, 0.25);
}

.k-switch-on:disabled .k-switch-track, .k-switch-on.k-disabled .k-switch-track {
    background-color: #86b7fe;
}

.k-switch-on .k-switch-label-off {
    color: transparent;
}

.k-external-dropzone {
    height: 220px;
    display: flex;
    flex-flow: row nowrap;
}

.k-dropzone-inner {
    padding-block: 0.5rem;
    padding-inline: 0.5rem;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    font-size: 1rem;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    line-height: 1.5;
    flex: 1 1 auto;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    position: relative;
}

.k-dropzone-inner .k-icon,
.k-dropzone-inner .k-dropzone-icon {
    margin-bottom: 1.5rem;
    font-size: 48px;
}

.k-dropzone-inner .k-svg-icon {
    width: 48px;
    height: 48px;
}

.k-dropzone-inner .k-dropzone-hint {
    margin-bottom: 0.5rem;
}

.k-dropzone-inner .k-dropzone-note {
    font-size: 0.75rem;
}

.k-dropzone-inner {
    border-color: #dee2e6;
    color: #212529;
    background-color: #f8f9fa;
}

.k-dropzone-inner .k-icon,
.k-dropzone-inner .k-dropzone-icon {
    color: #afb1b2;
}

.k-dropzone-inner .k-dropzone-note {
    color: #6c757d;
}

.k-external-dropzone-hover .k-icon,
.k-external-dropzone-hover .k-dropzone-icon {
    color: #0d6efd;
}

.k-upload {
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
    display: block;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-upload *,
.k-upload *::before,
.k-upload *::after {
    box-sizing: border-box;
}

.k-upload .k-upload-button {
    min-width: 7em;
}

.k-upload .k-dropzone,
.k-upload .k-upload-dropzone {
    padding-block: 0.5rem;
    padding-inline: 0.5rem;
    border-width: 0;
    text-align: end;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background-color: transparent;
}

.k-upload .k-dropzone .k-dropzone-hint,
.k-upload .k-upload-dropzone .k-dropzone-hint {
    font-style: normal;
    font-weight: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    flex: 1;
}

.k-upload .k-dropzone .k-upload-status,
.k-upload .k-upload-dropzone .k-upload-status {
    font-weight: normal;
    display: flex;
    align-items: center;
    position: relative;
}

.k-upload .k-dropzone .k-upload-status > .k-icon,
.k-upload .k-dropzone .k-upload-status > .k-svg-icon,
.k-upload .k-upload-dropzone .k-upload-status > .k-icon,
.k-upload .k-upload-dropzone .k-upload-status > .k-svg-icon {
    margin-inline-end: 0.5rem;
}

.k-upload .k-dropzone .k-upload-status + .k-dropzone-hint,
.k-upload .k-upload-dropzone .k-upload-status + .k-dropzone-hint {
    display: none;
}

.k-upload .k-dropzone-active .k-upload-status {
    display: none;
}

.k-upload .k-dropzone-active .k-upload-status + .k-dropzone-hint {
    display: block;
}

.k-upload .k-upload-files {
    max-height: 300px;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    border-width: 1px 0 0;
    border-style: solid;
    border-color: inherit;
    list-style: none;
}

.k-upload .k-upload-files .k-file-multiple,
.k-upload .k-upload-files .k-file-single {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.k-upload .k-upload-files .k-file-single {
    align-items: center;
}

.k-upload .k-upload-files .k-file-multiple {
    align-items: flex-start;
}

.k-upload .k-upload-files .k-file {
    padding: 1rem 1rem calc(1rem + 2px);
    border-width: 0 0 1px;
    border-style: solid;
    outline: none;
    display: flex;
    align-items: flex-start;
    position: relative;
}

.k-upload .k-upload-files .k-file:last-child {
    border-width: 0;
}

.k-upload .k-upload-files .k-filename {
    margin-left: 1rem;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
}

.k-upload .k-upload-files .k-upload-pct {
    margin-block: 0;
    margin-inline: 0.5rem;
    font-weight: normal;
    vertical-align: middle;
}

.k-upload .k-upload-files ~ .k-clear-selected,
.k-upload .k-upload-files ~ .k-upload-selected {
    margin-top: -0.5rem;
    border-width: 0;
}

.k-upload .k-upload-files ~ .k-upload-selected {
    border-left-width: 1px;
    border-left-style: solid;
    margin-left: -1px;
}

.k-upload .k-upload-files .k-file-name,
.k-upload .k-upload-files .k-file-size,
.k-upload .k-upload-files .k-file-validation-message,
.k-upload .k-upload-files .k-file-summary {
    display: block;
}

.k-upload .k-upload-files .k-file-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
}

.k-upload .k-upload-files .k-file-size,
.k-upload .k-upload-files .k-file-summary,
.k-upload .k-upload-files .k-file-validation-message {
    font-size: 11px;
    line-height: 1;
}

.k-upload .k-upload-files .k-file-icon-wrapper .k-file-icon {
    font-size: calc( 16px * 2);
}

.k-upload .k-upload-files .k-file-icon-wrapper .k-file-state {
    position: absolute;
}

.k-upload .k-upload-files .k-file-state {
    visibility: hidden;
}

.k-upload .k-upload-files .k-file-info {
    min-height: calc( 16px * 2);
    display: block;
    overflow: hidden;
    flex: 1 0 0;
}

.k-upload .k-multiple-files-wrapper,
.k-upload .k-file-single > .k-file-info {
    margin-inline-start: 1rem;
    min-height: calc( 16px * 2);
    display: block;
    overflow: hidden;
    flex: 1 0 0;
}

.k-upload .k-multiple-files-wrapper .k-file-info {
    margin-bottom: 12px;
    display: block;
}

.k-upload .k-multiple-files-wrapper .k-file-summary {
    margin-top: -4px;
}

.k-upload .k-progressbar {
    --kendo-progressbar-height: 2px;
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.5rem;
    width: auto;
}

.k-upload .k-actions, .k-upload .k-edit-buttons,
.k-upload .k-action-buttons,
.k-upload .k-columnmenu-actions, .k-upload .k-form-buttons {
    border-top-width: 1px;
}

.k-upload-button-wrap {
    position: relative;
    direction: ltr;
}

.k-upload-button-wrap input {
    font: 170px monospace !important;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.k-upload-button-wrap input[disabled],
.k-upload-button-wrap input.k-disabled {
    visibility: hidden;
}

.k-upload {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-upload .k-dropzone,
.k-upload .k-upload-dropzone {
    border-color: #dee2e6;
    color: #212529;
    background-color: #f8f9fa;
}

.k-upload .k-dropzone.k-hover,
.k-upload .k-upload-dropzone.k-hover {
    background-color: #f4f5f6;
}

.k-upload .k-dropzone .k-dropzone-hint,
.k-upload .k-upload-dropzone .k-dropzone-hint {
    color: #6c757d;
}

.k-upload .k-upload-files,
.k-upload .k-file {
    border-color: #dee2e6;
}

.k-upload .k-file.k-focus {
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.13);
}

.k-upload .k-file .k-upload-action.k-focus {
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.13);
}

.k-upload .k-upload-status {
    color: #6c757d;
}

.k-upload .k-file-progress .k-progressbar .k-selected {
    background-color: #0dcaf0;
}

.k-upload .k-file-success .k-file-validation-message {
    color: #198754;
}

.k-upload .k-file-success .k-progressbar .k-selected {
    background-color: #198754;
}

.k-upload .k-file-error .k-file-validation-message {
    color: #dc3545;
}

.k-upload .k-file-error .k-progressbar .k-selected {
    background-color: #dc3545;
}

.k-upload .k-file-icon-wrapper {
    color: #6c757d;
    border-color: #6c757d;
}

.k-upload .k-file-size,
.k-upload .k-file-validation-message,
.k-upload .k-file-summary {
    color: #6c757d;
}

.k-upload .k-multiple-files-wrapper .k-file-summary {
    color: #212529;
}

.k-upload.k-invalid, .k-upload.ng-invalid.ng-touched, .k-upload.ng-invalid.ng-dirty {
    border-color: #dc3545;
}

.k-appbar {
    padding-block: 0.5rem;
    padding-inline: 0.5rem;
    border-width: 0px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    line-height: 1.5;
    list-style: none;
    display: flex;
    gap: 0.5rem;
    flex-flow: row wrap;
    align-items: center;
    overflow: hidden;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-appbar *,
.k-appbar *::before,
.k-appbar *::after {
    box-sizing: border-box;
}

.k-appbar > * {
    flex-shrink: 0;
}

.k-appbar .k-appbar-section {
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
}

.k-appbar .k-appbar-spacer {
    flex: 1 0 auto;
}

.k-appbar .k-appbar-spacer-sized {
    flex-grow: 0;
}

.k-appbar .k-appbar-separator {
    margin: 0;
    width: 0;
    min-height: 1em;
    border-style: solid;
    border-width: 0 0 0 1px;
    display: inline-block;
}

.k-appbar .k-input,
.k-appbar .k-picker {
    width: 10em;
}

.k-appbar .k-color-picker, .k-appbar .k-colorpicker {
    width: min-content;
}

.k-appbar-static {
    position: static;
}

.k-appbar-sticky {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.k-appbar-fixed {
    width: 100%;
    position: fixed;
    z-index: 1;
}

.k-appbar-top {
    top: 0;
    bottom: auto;
}

.k-appbar-bottom {
    top: auto;
    bottom: 0;
}

.k-appbar-bottom.k-appbar-fixed {
    bottom: 0;
}

.k-appbar {
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.16);
}

.k-appbar-bottom {
    box-shadow: 0px -1px 1px rgba(0, 0, 0, 0.16);
}

.k-appbar-primary {
    color: white;
    background-color: #0d6efd;
}

.k-appbar-secondary {
    color: white;
    background-color: #6c757d;
}

.k-appbar-tertiary {
    color: white;
    background-color: #6f42c1;
}

.k-appbar-info {
    color: white;
    background-color: #0dcaf0;
}

.k-appbar-success {
    color: white;
    background-color: #198754;
}

.k-appbar-warning {
    color: black;
    background-color: #ffc107;
}

.k-appbar-error {
    color: white;
    background-color: #dc3545;
}

.k-appbar-dark {
    color: white;
    background-color: #212529;
}

.k-appbar-light {
    color: black;
    background-color: #f8f9fa;
}

.k-appbar-inverse {
    color: white;
    background-color: #212529;
}

.k-fab {
    padding: 0;
    border-width: 0;
    border-style: solid;
    border-color: transparent;
    box-sizing: border-box;
    color: inherit;
    background-color: transparent;
    font-size: 1rem;
    line-height: 1.5;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    text-align: center;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    outline: none;
}

.k-fab *,
.k-fab *::before,
.k-fab *::after {
    box-sizing: border-box;
}

.k-fab:focus {
    outline: none;
}

.k-fab-icon {
    width: 24px;
    height: 24px;
}

.k-icon-wrapper-host:not(:only-child) .k-fab-icon, .k-fab-icon:not(:only-child) {
    margin-inline-end: 0.125rem;
    margin-inline-start: -0.125rem;
}

.k-fab-sm {
    padding: 0.5rem 0.5rem;
}

.k-fab-md {
    padding: 1rem 1rem;
}

.k-fab-lg {
    padding: 1.5rem 1.5rem;
}

.k-fab-items {
    margin: 0;
    padding-block: 1rem;
    padding-inline: 0px;
    display: flex;
}

.k-fab-items-bottom {
    flex-direction: column;
}

.k-fab-items-bottom .k-fab-item:last-child {
    margin-block-end: 0;
}

.k-fab-items-top {
    flex-direction: column-reverse;
}

.k-fab-items-top .k-fab-item:first-child {
    margin-block-end: 0;
}

.k-fab-item {
    list-style-type: none;
    margin-block-end: 0.5rem;
    outline: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
}

.k-fab-item.k-text-right {
    flex-direction: row;
}

.k-fab-item.k-text-right .k-fab-item-text {
    margin-right: 0.5rem;
}

.k-fab-item.k-text-left {
    flex-direction: row-reverse;
}

.k-fab-item.k-text-left .k-fab-item-text {
    margin-left: 0.5rem;
}

.k-fab-item-text {
    padding-block: 0.25rem;
    padding-inline: 0.25rem;
    border-width: 1px;
    border-radius: 4px;
    font-size: 0.75rem;
    line-height: 14px;
}

.k-fab-item-icon {
    width: 24px;
    height: 24px;
    padding-block: 0.5rem;
    padding-inline: 0.5rem;
    border-width: 0;
    border-radius: 50%;
    box-sizing: content-box;
    outline: none;
}

.k-rtl .k-fab-popup .k-fab-item.k-text-left,
[dir="rtl"] .k-fab-popup .k-fab-item.k-text-left {
    flex-direction: row;
}

.k-rtl .k-fab-popup .k-fab-item.k-text-right,
[dir="rtl"] .k-fab-popup .k-fab-item.k-text-right {
    flex-direction: row-reverse;
}

.k-fab-solid-primary {
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.14), 0px 1px 18px rgba(0, 0, 0, 0.12), 0px 3px 5px rgba(0, 0, 0, 0.2);
    outline: 1px solid #0d6efd;
    outline-offset: -1px;
    border-color: #0d6efd;
    color: white;
    background-color: #0d6efd;
}

.k-fab-solid-secondary {
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.14), 0px 1px 18px rgba(0, 0, 0, 0.12), 0px 3px 5px rgba(0, 0, 0, 0.2);
    outline: 1px solid #6c757d;
    outline-offset: -1px;
    border-color: #6c757d;
    color: white;
    background-color: #6c757d;
}

.k-fab-solid-tertiary {
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.14), 0px 1px 18px rgba(0, 0, 0, 0.12), 0px 3px 5px rgba(0, 0, 0, 0.2);
    outline: 1px solid #6f42c1;
    outline-offset: -1px;
    border-color: #6f42c1;
    color: white;
    background-color: #6f42c1;
}

.k-fab-solid-info {
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.14), 0px 1px 18px rgba(0, 0, 0, 0.12), 0px 3px 5px rgba(0, 0, 0, 0.2);
    outline: 1px solid #0dcaf0;
    outline-offset: -1px;
    border-color: #0dcaf0;
    color: black;
    background-color: #0dcaf0;
}

.k-fab-solid-success {
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.14), 0px 1px 18px rgba(0, 0, 0, 0.12), 0px 3px 5px rgba(0, 0, 0, 0.2);
    outline: 1px solid #198754;
    outline-offset: -1px;
    border-color: #198754;
    color: white;
    background-color: #198754;
}

.k-fab-solid-warning {
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.14), 0px 1px 18px rgba(0, 0, 0, 0.12), 0px 3px 5px rgba(0, 0, 0, 0.2);
    outline: 1px solid #ffc107;
    outline-offset: -1px;
    border-color: #ffc107;
    color: black;
    background-color: #ffc107;
}

.k-fab-solid-error {
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.14), 0px 1px 18px rgba(0, 0, 0, 0.12), 0px 3px 5px rgba(0, 0, 0, 0.2);
    outline: 1px solid #dc3545;
    outline-offset: -1px;
    border-color: #dc3545;
    color: white;
    background-color: #dc3545;
}

.k-fab-solid-dark {
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.14), 0px 1px 18px rgba(0, 0, 0, 0.12), 0px 3px 5px rgba(0, 0, 0, 0.2);
    outline: 1px solid #212529;
    outline-offset: -1px;
    border-color: #212529;
    color: white;
    background-color: #212529;
}

.k-fab-solid-light {
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.14), 0px 1px 18px rgba(0, 0, 0, 0.12), 0px 3px 5px rgba(0, 0, 0, 0.2);
    outline: 1px solid #f8f9fa;
    outline-offset: -1px;
    border-color: #f8f9fa;
    color: black;
    background-color: #f8f9fa;
}

.k-fab-solid-inverse {
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.14), 0px 1px 18px rgba(0, 0, 0, 0.12), 0px 3px 5px rgba(0, 0, 0, 0.2);
    outline: 1px solid #212529;
    outline-offset: -1px;
    border-color: #212529;
    color: white;
    background-color: #212529;
}

.k-fab-solid-primary:hover,
.k-fab-solid-primary.k-hover {
    border-color: #0257d5;
    color: white;
    background-color: #025ce2;
}

.k-fab-solid-secondary:hover,
.k-fab-solid-secondary.k-hover {
    border-color: #545b62;
    color: white;
    background-color: #5a6268;
}

.k-fab-solid-tertiary:hover,
.k-fab-solid-tertiary.k-hover {
    border-color: #59339d;
    color: white;
    background-color: #5e37a6;
}

.k-fab-solid-info:hover,
.k-fab-solid-info.k-hover {
    border-color: #0aa1c0;
    color: black;
    background-color: #0babcc;
}

.k-fab-solid-success:hover,
.k-fab-solid-success.k-hover {
    border-color: #115c39;
    color: white;
    background-color: #136740;
}

.k-fab-solid-warning:hover,
.k-fab-solid-warning.k-hover {
    border-color: #d39e00;
    color: black;
    background-color: #e0a800;
}

.k-fab-solid-error:hover,
.k-fab-solid-error.k-hover {
    border-color: #bd2130;
    color: white;
    background-color: #c82333;
}

.k-fab-solid-dark:hover,
.k-fab-solid-dark.k-hover {
    border-color: #0a0c0d;
    color: white;
    background-color: #101214;
}

.k-fab-solid-light:hover,
.k-fab-solid-light.k-hover {
    border-color: #dae0e5;
    color: black;
    background-color: #e2e6ea;
}

.k-fab-solid-inverse:hover,
.k-fab-solid-inverse.k-hover {
    border-color: #0a0c0d;
    color: white;
    background-color: #101214;
}

.k-fab-solid-primary:focus,
.k-fab-solid-primary.k-focus {
    outline-style: solid;
    outline-width: 3px;
    outline-color: rgba(13, 110, 253, 0.5);
}

.k-fab-solid-secondary:focus,
.k-fab-solid-secondary.k-focus {
    outline-style: solid;
    outline-width: 3px;
    outline-color: rgba(108, 117, 125, 0.5);
}

.k-fab-solid-tertiary:focus,
.k-fab-solid-tertiary.k-focus {
    outline-style: solid;
    outline-width: 3px;
    outline-color: rgba(111, 66, 193, 0.5);
}

.k-fab-solid-info:focus,
.k-fab-solid-info.k-focus {
    outline-style: solid;
    outline-width: 3px;
    outline-color: rgba(13, 202, 240, 0.5);
}

.k-fab-solid-success:focus,
.k-fab-solid-success.k-focus {
    outline-style: solid;
    outline-width: 3px;
    outline-color: rgba(25, 135, 84, 0.5);
}

.k-fab-solid-warning:focus,
.k-fab-solid-warning.k-focus {
    outline-style: solid;
    outline-width: 3px;
    outline-color: rgba(255, 193, 7, 0.5);
}

.k-fab-solid-error:focus,
.k-fab-solid-error.k-focus {
    outline-style: solid;
    outline-width: 3px;
    outline-color: rgba(220, 53, 69, 0.5);
}

.k-fab-solid-dark:focus,
.k-fab-solid-dark.k-focus {
    outline-style: solid;
    outline-width: 3px;
    outline-color: rgba(33, 37, 41, 0.5);
}

.k-fab-solid-light:focus,
.k-fab-solid-light.k-focus {
    outline-style: solid;
    outline-width: 3px;
    outline-color: rgba(248, 249, 250, 0.5);
}

.k-fab-solid-inverse:focus,
.k-fab-solid-inverse.k-focus {
    outline-style: solid;
    outline-width: 3px;
    outline-color: rgba(33, 37, 41, 0.5);
}

.k-fab-solid-primary:active,
.k-fab-solid-primary.k-active,
.k-fab-solid-primary.k-selected {
    border-color: #0252c9;
    color: white;
    background-color: #0257d5;
}

.k-fab-solid-secondary:active,
.k-fab-solid-secondary.k-active,
.k-fab-solid-secondary.k-selected {
    border-color: #4e555b;
    color: white;
    background-color: #545b62;
}

.k-fab-solid-tertiary:active,
.k-fab-solid-tertiary.k-active,
.k-fab-solid-tertiary.k-selected {
    border-color: #533093;
    color: white;
    background-color: #59339d;
}

.k-fab-solid-info:active,
.k-fab-solid-info.k-active,
.k-fab-solid-info.k-selected {
    border-color: #0a97b4;
    color: black;
    background-color: #0aa1c0;
}

.k-fab-solid-success:active,
.k-fab-solid-success.k-active,
.k-fab-solid-success.k-selected {
    border-color: #0f5133;
    color: white;
    background-color: #115c39;
}

.k-fab-solid-warning:active,
.k-fab-solid-warning.k-active,
.k-fab-solid-warning.k-selected {
    border-color: #c69500;
    color: black;
    background-color: #d39e00;
}

.k-fab-solid-error:active,
.k-fab-solid-error.k-active,
.k-fab-solid-error.k-selected {
    border-color: #b21f2d;
    color: white;
    background-color: #bd2130;
}

.k-fab-solid-dark:active,
.k-fab-solid-dark.k-active,
.k-fab-solid-dark.k-selected {
    border-color: #050506;
    color: white;
    background-color: #0a0c0d;
}

.k-fab-solid-light:active,
.k-fab-solid-light.k-active,
.k-fab-solid-light.k-selected {
    border-color: #d3d9df;
    color: black;
    background-color: #dae0e5;
}

.k-fab-solid-inverse:active,
.k-fab-solid-inverse.k-active,
.k-fab-solid-inverse.k-selected {
    border-color: #050506;
    color: white;
    background-color: #0a0c0d;
}

.k-fab-solid-primary:disabled,
.k-fab-solid-primary.k-disabled {
    box-shadow: 0px 6px 10px rgba(91, 91, 91, 0.1744), 0px 1px 18px rgba(101, 101, 101, 0.1552), 0px 3px 5px rgba(70, 70, 70, 0.232);
    background-color: #64a2fe;
    color: white;
    opacity: 1;
}

.k-fab-solid-secondary:disabled,
.k-fab-solid-secondary.k-disabled {
    box-shadow: 0px 6px 10px rgba(91, 91, 91, 0.1744), 0px 1px 18px rgba(101, 101, 101, 0.1552), 0px 3px 5px rgba(70, 70, 70, 0.232);
    background-color: #a1a7ac;
    color: white;
    opacity: 1;
}

.k-fab-solid-tertiary:disabled,
.k-fab-solid-tertiary.k-disabled {
    box-shadow: 0px 6px 10px rgba(91, 91, 91, 0.1744), 0px 1px 18px rgba(101, 101, 101, 0.1552), 0px 3px 5px rgba(70, 70, 70, 0.232);
    background-color: #a386d7;
    color: white;
    opacity: 1;
}

.k-fab-solid-info:disabled,
.k-fab-solid-info.k-disabled {
    box-shadow: 0px 6px 10px rgba(91, 91, 91, 0.1744), 0px 1px 18px rgba(101, 101, 101, 0.1552), 0px 3px 5px rgba(70, 70, 70, 0.232);
    background-color: #64ddf5;
    color: #666666;
    opacity: 1;
}

.k-fab-solid-success:disabled,
.k-fab-solid-success.k-disabled {
    box-shadow: 0px 6px 10px rgba(91, 91, 91, 0.1744), 0px 1px 18px rgba(101, 101, 101, 0.1552), 0px 3px 5px rgba(70, 70, 70, 0.232);
    background-color: #6cb292;
    color: white;
    opacity: 1;
}

.k-fab-solid-warning:disabled,
.k-fab-solid-warning.k-disabled {
    box-shadow: 0px 6px 10px rgba(91, 91, 91, 0.1744), 0px 1px 18px rgba(101, 101, 101, 0.1552), 0px 3px 5px rgba(70, 70, 70, 0.232);
    background-color: #ffd760;
    color: #666666;
    opacity: 1;
}

.k-fab-solid-error:disabled,
.k-fab-solid-error.k-disabled {
    box-shadow: 0px 6px 10px rgba(91, 91, 91, 0.1744), 0px 1px 18px rgba(101, 101, 101, 0.1552), 0px 3px 5px rgba(70, 70, 70, 0.232);
    background-color: #e97e88;
    color: white;
    opacity: 1;
}

.k-fab-solid-dark:disabled,
.k-fab-solid-dark.k-disabled {
    box-shadow: 0px 6px 10px rgba(91, 91, 91, 0.1744), 0px 1px 18px rgba(101, 101, 101, 0.1552), 0px 3px 5px rgba(70, 70, 70, 0.232);
    background-color: #717376;
    color: white;
    opacity: 1;
}

.k-fab-solid-light:disabled,
.k-fab-solid-light.k-disabled {
    box-shadow: 0px 6px 10px rgba(91, 91, 91, 0.1744), 0px 1px 18px rgba(101, 101, 101, 0.1552), 0px 3px 5px rgba(70, 70, 70, 0.232);
    background-color: #fbfbfc;
    color: #666666;
    opacity: 1;
}

.k-fab-solid-inverse:disabled,
.k-fab-solid-inverse.k-disabled {
    box-shadow: 0px 6px 10px rgba(91, 91, 91, 0.1744), 0px 1px 18px rgba(101, 101, 101, 0.1552), 0px 3px 5px rgba(70, 70, 70, 0.232);
    background-color: #717376;
    color: white;
    opacity: 1;
}

.k-fab-item-text {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.14), 0px 1px 18px rgba(0, 0, 0, 0.12), 0px 3px 5px rgba(0, 0, 0, 0.2);
}

.k-fab-item-icon {
    border-color: #e4e7eb;
    color: #212529;
    background-color: #e4e7eb;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.14), 0px 1px 18px rgba(0, 0, 0, 0.12), 0px 3px 5px rgba(0, 0, 0, 0.2);
    outline: 1px solid #e4e7eb;
    outline-offset: -1px;
}

.k-fab-item:hover .k-fab-item-icon,
.k-fab-item.k-hover .k-fab-item-icon {
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.14), 0px 1px 18px rgba(0, 0, 0, 0.12), 0px 3px 5px rgba(0, 0, 0, 0.2);
    outline: 1px solid #c7cdd5;
    outline-offset: -1px;
    border-color: #c7cdd5;
    color: black;
    background-color: #ced3db;
}

.k-fab-item:focus .k-fab-item-text,
.k-fab-item.k-focus .k-fab-item-text,
.k-fab-item:focus .k-fab-item-icon,
.k-fab-item.k-focus .k-fab-item-icon {
    outline-style: solid;
    outline-width: 3px;
    outline-color: rgba(228, 231, 235, 0.5);
}

.k-fab-item:active .k-fab-item-icon,
.k-fab-item.k-active .k-fab-item-icon {
    outline: 1px solid #bfc6d0;
    outline-offset: -1px;
    border-color: #bfc6d0;
    color: black;
    background-color: #c7cdd5;
}

.k-fab-item:disabled,
.k-fab-item.k-disabled {
    opacity: 1;
}

.k-fab-item:disabled .k-fab-item-text,
.k-fab-item:disabled .k-fab-item-icon,
.k-fab-item.k-disabled .k-fab-item-text,
.k-fab-item.k-disabled .k-fab-item-icon {
    box-shadow: 0px 6px 10px rgba(91, 91, 91, 0.1744), 0px 1px 18px rgba(101, 101, 101, 0.1552), 0px 3px 5px rgba(70, 70, 70, 0.232);
    background-color: white;
    color: #afb1b2;
}

.k-actionsheet-container {
    width: 100%;
    height: 100%;
    max-width: clamp(100vw, 100%, 100%);
    max-height: clamp(100vh, 100%, 100%);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    overflow: hidden;
    transform: translateZ(0);
}

.k-actionsheet-container > .k-overlay {
    position: absolute;
    z-index: 1;
}

.k-actionsheet-container > .k-animation-container {
    width: 100%;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    pointer-events: none;
}

.k-actionsheet-container > .k-animation-container > .k-child-animation-container {
    position: absolute;
}

.k-actionsheet-container > .k-actionsheet {
    position: absolute;
    z-index: 2;
}

.k-actionsheet-container .k-actionsheet {
    pointer-events: all;
}

.k-actionsheet {
    width: var(--kendo-actionsheet-width, 360px);
    height: var(--kendo-actionsheet-height, 60vh);
    max-width: var(--kendo-actionsheet-max-width, 100%);
    max-height: var(--kendo-actionsheet-max-height, 60vh);
    border-width: 0;
    border-style: solid;
    border-color: transparent;
    box-sizing: border-box;
    font-size: 1rem;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    line-height: 1.5;
    overflow: hidden;
    position: relative;
}

.k-actionsheet *,
.k-actionsheet *::before,
.k-actionsheet *::after {
    box-sizing: border-box;
}

.k-actionsheet-titlebar, .k-actionsheet-jq .k-actionsheet-header {
    padding-block: 0.5rem;
    padding-inline: 1rem;
    border-width: 0;
    border-style: solid;
    border-color: transparent;
    flex: none;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    gap: 1rem;
}

.k-actionsheet-titlebar-group {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    width: 100%;
}

.k-actionsheet-title {
    flex: 1;
}

.k-actionsheet-subtitle {
    font-size: 0.875rem;
    line-height: 1.25;
}

.k-actionsheet-actions {
    flex: none;
}

.k-actionsheet-content {
    flex: 1;
    overflow: auto;
    position: relative;
}

.k-actionsheet-footer {
    flex: none;
}

.k-actionsheet-items {
    margin: 0;
    padding: 0;
    list-style: none;
    flex: none;
}

.k-actionsheet-item {
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-flow: row nowrap;
    outline: none;
}

.k-actionsheet-action {
    margin: 0;
    padding-block: 0.5rem;
    padding-inline: 1rem;
    min-height: 40px;
    box-sizing: border-box;
    color: inherit;
    text-decoration: none;
    outline: 0;
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    gap: 12px;
}

.k-actionsheet-item-text {
    display: flex;
    flex-flow: column nowrap;
}

.k-actionsheet-item-description {
    font-size: 0.875em;
}

.k-actionsheet .k-hr {
    margin: 0;
    flex: none;
}

.k-actionsheet-top {
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-width: 0px;
    border-top-width: 0;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.k-actionsheet-bottom {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-width: 0px;
    border-bottom-width: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.k-actionsheet-left {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-width: 0px;
    border-left-width: 0;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.k-actionsheet-right {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-width: 0px;
    border-right-width: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.k-actionsheet-fullscreen {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    height: 100%;
}

.k-animation-container > .k-actionsheet {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    transform: none;
}

.k-adaptive-actionsheet {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
}

.k-adaptive-actionsheet .k-actionsheet-titlebar, .k-adaptive-actionsheet .k-actionsheet-jq .k-actionsheet-header, .k-actionsheet-jq .k-adaptive-actionsheet .k-actionsheet-header {
    padding-block: 1rem;
    padding-inline: 1rem;
    border-bottom-width: 1px;
}

.k-adaptive-actionsheet .k-actionsheet-content {
    padding-block: 0.5rem;
    padding-inline: 1rem;
}

.k-adaptive-actionsheet .k-actionsheet-footer {
    padding-block: 0.5rem;
    padding-inline: 1rem;
}

.k-adaptive-actionsheet .k-actionsheet-filter {
    width: calc( min(100%, calc( 360px - 2rem) ));
}

.k-adaptive-actionsheet .k-actionsheet-content,
.k-adaptive-actionsheet .k-actionsheet-footer {
    margin-inline: auto;
    width: min(100%, 360px);
}

.k-adaptive-actionsheet .k-list-container,
.k-adaptive-actionsheet .k-treeview {
    height: 100%;
}

.k-adaptive-actionsheet .k-list-filter {
    width: 100%;
    padding-inline: 0;
}

.k-adaptive-actionsheet .k-calendar {
    margin-inline: auto;
    border-width: 0;
    display: flex;
}

.k-adaptive-actionsheet .k-timeselector {
    height: 100%;
    border-width: 0;
    overflow: hidden;
}

.k-adaptive-actionsheet .k-timeselector .k-time-part {
    display: contents;
}

.k-adaptive-actionsheet .k-timeselector .k-time-list-wrapper {
    height: 100%;
}

.k-adaptive-actionsheet .k-datetime-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
}

.k-adaptive-actionsheet .k-datetime-selector {
    flex: 1 1 auto;
}

.k-adaptive-actionsheet .k-datetime-calendar-wrap {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    flex: 0 0 100%;
}

.k-adaptive-actionsheet .k-datetime-time-wrap {
    width: 100%;
    position: absolute;
    top: 0;
    left: 100%;
    bottom: 0;
    flex: 0 0 100%;
}

.k-adaptive-actionsheet .k-scrollable-wrap {
    height: 100%;
    overflow-y: auto;
}

.k-adaptive-actionsheet .k-data-table {
    max-height: 100%;
    overflow: hidden;
    display: flex;
    flex-flow: column nowrap;
}

.k-actionsheet-jq.k-actionsheet {
    height: auto;
}

.k-actionsheet-jq .k-actionsheet-header {
    align-items: flex-start;
}

.k-actionsheet-jq .k-actionsheet-action {
    align-items: center;
}

.k-actionsheet {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
    box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.2), 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12);
}

.k-actionsheet-subtitle {
    color: #6c757d;
}

.k-actionsheet-item:hover, .k-actionsheet-item.k-hover {
    background-color: #e9ecef;
}

.k-actionsheet-item:focus, .k-actionsheet-item.k-focus {
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.13);
}

.k-actionsheet-item-description {
    color: #6c757d;
}

.k-actionsheet .k-hr {
    border-color: #dee2e6;
}

.k-adaptive-actionsheet .k-actionsheet-titlebar, .k-adaptive-actionsheet .k-actionsheet-jq .k-actionsheet-header, .k-actionsheet-jq .k-adaptive-actionsheet .k-actionsheet-header {
    border-color: #dee2e6;
}

.k-window {
    border-radius: 0.375rem;
    padding: 0;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    line-height: 1.5;
    display: inline-flex;
    flex-direction: column;
    position: absolute;
    z-index: 10002;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-window.k-window-maximized {
    max-width: 100vw;
    max-height: 100vh;
    box-shadow: none;
}

.k-window-sm {
    width: 300px;
}

.k-window-md {
    width: 800px;
}

.k-window-lg {
    width: 1200px;
}

.k-window-titlebar {
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
    padding-block: 1rem;
    padding-inline: 1rem;
    border-width: 0 0 1px;
    border-style: solid;
    white-space: nowrap;
    display: flex;
    flex-direction: row;
    flex-shrink: 0;
    align-items: center;
}

.k-window-minimized .k-window-titlebar {
    border-width: 0;
}

.k-window-title {
    padding-block: .5em;
    padding-inline: 0;
    margin-block: -.5em;
    margin-inline: 0;
    font-size: 1.25rem;
    line-height: 1.5;
    text-overflow: ellipsis;
    overflow: hidden;
    cursor: default;
    flex: 1;
    display: flex;
    flex-flow: row nowrap;
}

.k-window-title::before {
    content: "\200b";
}

.k-window-titlebar-actions {
    margin-block: -5em;
    margin-inline: 0;
    margin-inline-end: calc( 1rem - 1rem);
    line-height: 1;
    display: flex;
    gap: 0.5rem;
    flex-flow: row nowrap;
    flex-shrink: 0;
    align-items: center;
    vertical-align: top;
}

.k-window-titlebar-action {
    flex-shrink: 0;
    opacity: 0.5;
}

.k-window-titlebar-action:hover {
    opacity: 0.75;
}

.k-window-content,
.k-prompt-container {
    padding-block: 1rem;
    padding-inline: 1rem;
    border-width: 0;
    border-color: inherit;
    color: inherit;
    background: none;
    outline: 0;
    overflow: auto;
    position: relative;
    flex: 1 1 auto;
}

.k-window-content + .k-prompt-container {
    margin-top: -0.5rem;
}

.k-window-content:first-child {
    padding-top: clamp(1rem, 1rem, 1rem);
}

.k-window-content:last-child {
    padding-bottom: clamp(1rem, 1rem, 1rem);
}

.k-window-iframecontent {
    padding: 0;
    overflow: visible;
}

.k-window-iframecontent .k-content-frame {
    vertical-align: top;
    border: 0;
    width: 100%;
    height: 100%;
}

.k-window-actions {
    border-bottom-right-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
    padding-block: 0.5rem;
    padding-inline: 0.5rem;
    border-width: 1px 0 0;
    border-style: solid;
    border-color: inherit;
    flex: 0 0 auto;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    overflow: hidden;
}

.k-prompt-container > .k-textarea {
    width: 100%;
}

.k-window .k-resize-n {
    top: 0;
}

.k-window .k-resize-e {
    right: 0;
}

.k-window .k-resize-s {
    bottom: 0;
}

.k-window .k-resize-w {
    left: 0;
}

.k-window {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-window-titlebar {
    border-color: #dee2e6;
}

.k-window-primary .k-window-titlebar {
    color: white;
    background-color: #0d6efd;
}

.k-window-light .k-window-titlebar {
    color: black;
    background-color: #f8f9fa;
}

.k-window-dark .k-window-titlebar {
    color: white;
    background-color: #212529;
}

.k-dialog-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    outline: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
}

.k-dialog-wrapper .k-dialog {
    position: relative;
}

.k-dialog {
    padding: 0;
    position: fixed;
    box-sizing: border-box;
}

.k-dialog.k-dialog-centered {
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

.k-dialog .k-multiselect {
    width: 100%;
}

.k-dialog-actions {
    border-bottom-right-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
    padding-block: 0.5rem;
    padding-inline: 0.5rem;
    border-width: 1px 0 0;
    border-style: solid;
    border-color: inherit;
    flex: 0 0 auto;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    gap: 0.5rem;
    overflow: hidden;
}

.k-dialog-primary .k-dialog-titlebar {
    color: white;
    background-color: #0d6efd;
}

.k-dialog-light .k-dialog-titlebar {
    color: black;
    background-color: #f8f9fa;
}

.k-dialog-dark .k-dialog-titlebar {
    color: white;
    background-color: #212529;
}

.k-drawer-container {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
}

kendo-drawer.k-drawer,
kendo-drawer .k-drawer-wrapper {
    transition: none;
}

.k-drawer {
    height: 100%;
    max-width: 100%;
    border-width: 0;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    transition: all 300ms ease-in-out;
    overflow: hidden;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-drawer *,
.k-drawer *::before,
.k-drawer *::after {
    box-sizing: border-box;
}

.k-drawer-mini .k-drawer.k-drawer-start,
.k-drawer-expanded .k-drawer.k-drawer-start,
.k-drawer-left.k-drawer-mini .k-drawer,
.k-drawer-left.k-drawer-expanded .k-drawer {
    border-right-width: 1px;
}

.k-drawer-mini .k-drawer.k-drawer-end,
.k-drawer-expanded .k-drawer.k-drawer-end,
.k-drawer-right.k-drawer-mini .k-drawer,
.k-drawer-right.k-drawer-expanded .k-drawer {
    border-left-width: 1px;
}

.k-drawer.k-drawer-start,
.k-drawer-left .k-drawer {
    top: 0;
    left: 0;
}

.k-drawer.k-drawer-end,
.k-drawer-right .k-drawer {
    top: 0;
    right: 0;
}

.k-drawer-content {
    flex: 1 1 auto;
}

.k-drawer-overlay .k-drawer {
    max-width: 80vw;
    position: fixed;
    z-index: 10002;
    border: 0;
}

.k-drawer-overlay > .k-overlay {
    display: none;
}

.k-drawer-overlay.k-drawer-expanded > .k-overlay {
    display: block;
}

.k-drawer-push {
    display: flex;
    flex-direction: row;
}

.k-drawer-push .k-drawer {
    height: auto;
    position: relative;
    align-self: stretch;
}

.k-drawer-push .k-drawer.k-drawer-end,
.k-drawer-push.k-drawer-right .k-drawer {
    order: 1;
}

.k-drawer-wrapper {
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
    transition: all 300ms ease-in-out;
}

.k-drawer-wrapper::-webkit-scrollbar {
    width: 7px;
}

.k-drawer-wrapper::-webkit-scrollbar-thumb {
    border-radius: 20px;
}

.k-drawer-items,
.k-drawer-items ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.k-drawer-item {
    padding-block: 0.5rem;
    padding-inline: 1rem;
    outline: 0;
    color: inherit;
    font-size: 16px;
    line-height: 2;
    display: flex;
    flex-flow: row nowrap;
    gap: 1rem;
    cursor: pointer;
}

.k-drawer-item > .k-drawer-link {
    margin-block: -0.5rem;
    margin-inline: -1rem;
    padding-block: 0.5rem;
    padding-inline: 1rem;
    color: inherit;
    display: flex;
    flex-flow: row nowrap;
    flex: 1 0 auto;
    gap: 1rem;
}

.k-drawer-item .k-svg-icon,
.k-drawer-item .k-icon {
    height: auto;
    font-size: 16px;
    line-height: 2;
    flex-shrink: 0;
}

.k-drawer-item .k-svg-icon.k-i-none,
.k-drawer-item .k-icon.k-i-none {
    margin: 0;
}

.k-drawer-item .k-item-text {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.k-drawer-item .k-drawer-toggle {
    margin-inline-start: auto;
    cursor: pointer;
    display: flex;
}

.k-drawer-item.k-level-1 {
    padding-inline-start: 2rem;
}

.k-drawer-item.k-level-2 {
    padding-inline-start: 3rem;
}

.k-drawer-item.k-level-3 {
    padding-inline-start: 4rem;
}

.k-drawer-item.k-level-4 {
    padding-inline-start: 5rem;
}

.k-drawer-item.k-level-5 {
    padding-inline-start: 6rem;
}

.k-drawer-separator {
    padding: 0;
    height: 1px;
}

.k-drawer-mini .k-drawer-wrapper {
    width: calc( 2 * 1rem + 16px);
}

.k-rtl.k-drawer-mini .k-drawer-start,
.k-rtl .k-drawer-mini .k-drawer-start,
.k-rtl .k-drawer-expanded .k-drawer-start,
.k-rtl.k-drawer-expanded .k-drawer-start,
[dir="rtl"].k-drawer-mini .k-drawer-start,
[dir="rtl"] .k-drawer-mini .k-drawer-start,
[dir="rtl"] .k-drawer-expanded .k-drawer-start,
[dir="rtl"].k-drawer-expanded .k-drawer-start {
    border-left-width: 1px;
    border-right-width: 0;
}

.k-rtl.k-drawer-mini .k-drawer-end,
.k-rtl .k-drawer-mini .k-drawer-end,
.k-rtl.k-drawer-expanded .k-drawer-end .k-drawer-expanded .k-drawer-end,
[dir="rtl"].k-drawer-mini .k-drawer-end,
[dir="rtl"] .k-drawer-mini .k-drawer-end,
[dir="rtl"].k-drawer-expanded .k-drawer-end .k-drawer-expanded .k-drawer-end {
    border-left-width: 0;
    border-right-width: 1px;
}

.k-rtl.k-drawer-overlay .k-drawer-start,
.k-rtl .k-drawer-overlay .k-drawer-start,
[dir="rtl"].k-drawer-overlay .k-drawer-start,
[dir="rtl"] .k-drawer-overlay .k-drawer-start {
    left: auto;
    right: 0;
}

.k-rtl.k-drawer-overlay .k-drawer-end,
.k-rtl .k-drawer-overlay .k-drawer-end,
[dir="rtl"].k-drawer-overlay .k-drawer-end,
[dir="rtl"] .k-drawer-overlay .k-drawer-end {
    left: 0;
    right: auto;
}

.k-rtl .k-drawer-left.k-drawer-push .k-drawer,
[dir="rtl"] .k-drawer-left.k-drawer-push .k-drawer {
    order: 1;
}

.k-rtl .k-drawer-right.k-drawer-push .k-drawer,
[dir="rtl"] .k-drawer-right.k-drawer-push .k-drawer {
    order: 0;
}

.k-drawer {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-drawer-wrapper {
    scrollbar-color: rgba(156, 156, 156, 0.7) #dedede;
}

.k-drawer-wrapper::-webkit-scrollbar-track {
    background: #dedede;
}

.k-drawer-wrapper::-webkit-scrollbar-thumb {
    background: rgba(156, 156, 156, 0.7);
}

.k-drawer-wrapper::-webkit-scrollbar-thumb:hover {
    background: #9c9c9c;
}

.k-drawer-item:hover, .k-drawer-item.k-hover {
    color: #16181b;
    background-color: #e9ecef;
}

.k-drawer-item:focus, .k-drawer-item.k-focus {
    background-color: #e9ecef;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.15);
}

.k-drawer-item:focus:hover, .k-drawer-item:focus.k-hover, .k-drawer-item.k-focus:hover, .k-drawer-item.k-focus.k-hover {
    color: #16181b;
    background-color: #e9ecef;
}

.k-drawer-item.k-selected {
    color: #ffffff;
    background-color: #0d6efd;
}

.k-drawer-item.k-selected:hover, .k-drawer-item.k-selected.k-hover {
    color: #ffffff;
    background-color: #0c65e9;
}

.k-drawer-separator {
    background-color: #dee2e6;
}

.k-notification-group {
    max-height: 100%;
    display: inline-flex;
    flex-flow: column-reverse wrap;
    position: fixed;
    z-index: 1000;
}

.k-notification-container {
    margin-block: 0.5rem;
    margin-inline: 0;
    display: inline-flex;
    vertical-align: top;
}

.k-notification-container-animating {
    overflow: hidden;
}

.k-notification {
    border-radius: 0.375rem;
    padding-block: 1rem;
    padding-inline: 1rem;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 0.875rem;
    line-height: 1.5;
    cursor: default;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-notification *,
.k-notification *::before,
.k-notification *::after {
    box-sizing: border-box;
}

.k-notification > .k-notification-content {
    flex: 1 1 auto;
}

.k-notification-actions {
    flex: none;
    display: flex;
    gap: 0.5rem;
    flex-flow: row nowrap;
    align-items: center;
    align-self: center;
    cursor: pointer;
}

.k-notification-action {
    flex: none;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    align-self: center;
}

.k-notification {
    border-color: #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-notification-inverse {
    border-color: #d3d3d4;
    color: #111315;
    background-color: #c1c2c3;
}

.k-notification-light {
    border-color: #fefefe;
    color: #818182;
    background-color: #fdfdfe;
}

.k-notification-dark {
    border-color: #d3d3d4;
    color: #111315;
    background-color: #c1c2c3;
}

.k-notification-error {
    border-color: #f8d7da;
    color: #721c24;
    background-color: #f5c6cb;
}

.k-notification-warning {
    border-color: #fff3cd;
    color: #856404;
    background-color: #ffeeba;
}

.k-notification-success {
    border-color: #d1e7dd;
    color: #0d462c;
    background-color: #bfddcf;
}

.k-notification-info {
    border-color: #cff4fc;
    color: #07697d;
    background-color: #bbf0fb;
}

.k-notification-tertiary {
    border-color: #e2d9f3;
    color: #3a2264;
    background-color: #d7caee;
}

.k-notification-secondary {
    border-color: #e2e3e5;
    color: #383d41;
    background-color: #d6d8db;
}

.k-notification-primary {
    border-color: #cfe2ff;
    color: #073984;
    background-color: #bbd6fe;
}

kendo-card,
kendo-card-header,
kendo-card-body,
kendo-card-actions,
kendo-card-footer {
    display: block;
}

.k-card {
    border-radius: 0.375rem;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-card *,
.k-card *::before,
.k-card *::after {
    box-sizing: border-box;
}

.k-card > .k-card-inner {
    border-radius: calc( 0.375rem - 1px);
    display: flex;
    flex-direction: inherit;
    overflow: hidden;
    position: relative;
}

.k-card-horizontal {
    flex-flow: row nowrap;
}

.k-card-vertical {
    flex-flow: column nowrap;
}

.k-card-header {
    padding-block: 1rem;
    padding-inline: 1rem;
    border-width: 0 0 1px;
    border-style: solid;
    outline: 0;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.k-card-header .k-card-title,
.k-card-header .k-card-subtitle {
    margin-bottom: 0;
}

.k-card-header .k-card-title + .k-card-subtitle,
.k-card-header .k-card-subtitle + .k-card-subtitle {
    margin-top: 0.75rem;
}

.k-card-footer {
    padding-block: 1rem;
    padding-inline: 1rem;
    border-width: 1px 0 0;
    border-style: solid;
    outline: 0;
    flex-shrink: 0;
}

.k-card-body {
    padding-block: 1rem;
    padding-inline: 1rem;
    outline: 0;
    flex: 1 1 auto;
}

.k-card-body p {
    margin: 0 0 1rem;
}

.k-card-body > .k-last,
.k-card-body > :last-child {
    margin-bottom: 0;
}

.k-card-body > .k-card-actions {
    padding: 0;
}

.k-card-avatar,
.k-card .k-avatar {
    margin-right: 1rem;
    width: 45px;
    height: 45px;
    flex-basis: 45px;
}

.k-card-image,
.k-card-media {
    border: 0;
    max-width: 100%;
    flex-shrink: 0;
    overflow: hidden;
}

.k-card-image > img,
.k-card-media > img {
    border: 0;
    max-width: 100%;
}

.k-card-horizontal .k-card-image, .k-card-horizontal
.k-card-media {
    max-width: 100px;
    object-fit: cover;
}

.k-card-title {
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 500;
}

.k-card-subtitle {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 500;
}

.k-card-separator {
    margin: 0;
    border-width: 0;
    border-style: solid;
    border-color: inherit;
    display: block;
    flex: 0 0 auto;
    align-self: stretch;
}

.k-card-separator.k-separator-vertical,
.k-card-horizontal > .k-card-separator {
    border-left-width: 1px;
}

.k-card-separator.k-separator-horizontal,
.k-card-vertical > .k-card-separator {
    border-top-width: 1px;
}

.k-card > .k-hr {
    margin: 0;
    flex: 0 0 auto;
    border-color: inherit;
}

.k-card-actions {
    padding-block: 0.5rem;
    padding-inline: 0.5rem;
    border-width: 0;
    border-style: solid;
    border-color: inherit;
    overflow: hidden;
    display: flex;
    flex-shrink: 0;
    flex-basis: auto;
    gap: 0.5rem;
}

.k-card-actions-start {
    justify-content: flex-start;
}

.k-card-actions-end {
    justify-content: flex-end;
}

.k-card-actions-center {
    justify-content: center;
}

.k-card-actions-horizontal {
    flex-flow: row nowrap;
}

.k-card-actions-vertical {
    flex-flow: column nowrap;
}

.k-card-actions-stretched > * {
    flex: 1 1 auto;
}

.k-card-action {
    border-width: 0;
    border-style: solid;
    border-color: inherit;
    display: inline-flex;
}

.k-card-list {
    display: flex;
    flex-flow: column nowrap;
    align-items: stretch;
    gap: 1rem;
    flex: 0 0 auto;
}

.k-card-list .k-card {
    flex: 0 0 auto;
}

.k-card-deck {
    display: flex;
    flex-flow: row nowrap;
    align-items: stretch;
    gap: 1rem;
    flex: 0 0 auto;
}

.k-card-deck .k-card {
    flex: 0 0 auto;
}

.k-card-deck-scrollwrap {
    padding-bottom: 3px;
    width: 100%;
    box-sizing: content-box;
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.k-card-deck-scrollwrap > .k-button {
    border-radius: 0px;
    flex: 0 0 auto;
    position: absolute;
    z-index: 1;
}

.k-card-deck-scrollwrap > .k-button:first-child {
    left: -1px;
}

.k-card-deck-scrollwrap > .k-button:last-child {
    right: -1px;
}

.k-card-deck-scrollwrap > .k-card-deck {
    margin-bottom: -20px;
    padding-bottom: 20px;
    flex: 1 1 auto;
}

.k-card-group {
    display: flex;
    flex-flow: row nowrap;
    align-items: stretch;
    flex: 0 0 auto;
}

.k-card-group .k-card {
    border-radius: 0;
    flex: 0 0 auto;
}

.k-card-group .k-card + .k-card {
    margin-inline-start: 1px;
}

.k-card-group .k-card.k-first {
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
}

.k-card-group .k-card.k-last {
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}

.k-card-group .k-card.k-only {
    border-radius: 0.375rem;
}

.k-card-with-callout {
    overflow: visible;
}

.k-card-callout {
    margin: 0;
    width: 1.3em;
    height: 1.3em;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    position: absolute;
}

.k-card-callout.k-callout-n {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.k-card-callout.k-callout-e {
    top: 50%;
    right: 0;
    transform: translate(50%, -50%) rotate(-45deg);
}

.k-card-callout.k-callout-s {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%) rotate(45deg);
}

.k-card-callout.k-callout-w {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%) rotate(45deg);
}

.k-card-flat {
    box-shadow: none;
}

.k-card {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-card .k-card-inner {
    background-color: inherit;
    border-color: inherit;
}

.k-card:focus, .k-card.k-focus {
    box-shadow: 0 0 0 3px rgba(222, 226, 230, 0.5);
}

.k-card.k-selected {
    box-shadow: 0 0 0 3px rgba(222, 226, 230, 0.5);
}

.k-card-actions {
    border-color: #dee2e6;
}

.k-card-header {
    border-color: #dee2e6;
    color: #212529;
    background-color: #f8f9fa;
}

.k-card-footer {
    border-color: #dee2e6;
    color: #212529;
    background-color: #f8f9fa;
}

.k-card-separator,
.k-card .k-separator {
    border-color: #dee2e6;
}

.k-card-subtitle {
    color: #6c757d;
}

.k-card-primary {
    background-color: #cfe2ff;
    color: #073984;
    border-color: #bbd6fe;
}

.k-card-primary .k-card-subtitle {
    color: inherit;
}

.k-card-secondary {
    background-color: #e2e3e5;
    color: #383d41;
    border-color: #d6d8db;
}

.k-card-secondary .k-card-subtitle {
    color: inherit;
}

.k-card-tertiary {
    background-color: #e2d9f3;
    color: #3a2264;
    border-color: #d7caee;
}

.k-card-tertiary .k-card-subtitle {
    color: inherit;
}

.k-card-info {
    background-color: #cff4fc;
    color: #07697d;
    border-color: #bbf0fb;
}

.k-card-info .k-card-subtitle {
    color: inherit;
}

.k-card-success {
    background-color: #d1e7dd;
    color: #0d462c;
    border-color: #bfddcf;
}

.k-card-success .k-card-subtitle {
    color: inherit;
}

.k-card-warning {
    background-color: #fff3cd;
    color: #856404;
    border-color: #ffeeba;
}

.k-card-warning .k-card-subtitle {
    color: inherit;
}

.k-card-error {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

.k-card-error .k-card-subtitle {
    color: inherit;
}

.k-card-dark {
    background-color: #d3d3d4;
    color: #111315;
    border-color: #c1c2c3;
}

.k-card-dark .k-card-subtitle {
    color: inherit;
}

.k-card-light {
    background-color: #fefefe;
    color: #818182;
    border-color: #fdfdfe;
}

.k-card-light .k-card-subtitle {
    color: inherit;
}

.k-card-inverse {
    background-color: #d3d3d4;
    color: #111315;
    border-color: #c1c2c3;
}

.k-card-inverse .k-card-subtitle {
    color: inherit;
}

.k-card-wrap:focus > .k-card, .k-card-wrap.k-focus > .k-card, .k-card-wrap.k-selected > .k-card {
    box-shadow: 0 0 0 3px rgba(222, 226, 230, 0.5);
}

.k-card-callout {
    border-color: inherit;
    background-color: inherit;
    box-shadow: inherit;
}

.k-popover {
    border-radius: 0.375rem;
    padding: 0;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-size: 1rem;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    line-height: 1.5;
    display: flex;
    flex-flow: column nowrap;
    z-index: 12000;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-popover *,
.k-popover *::before,
.k-popover *::after {
    box-sizing: border-box;
}

.k-popover-inner {
    height: inherit;
    position: relative;
    border-radius: inherit;
    border-color: inherit;
}

.k-popover-header {
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
    padding-block: 1rem;
    padding-inline: 1rem;
    border-width: 0 0 1px;
    border-style: solid;
    border-color: inherit;
}

.k-popover-body {
    padding-block: 1rem;
    padding-inline: 1rem;
}

.k-popover-actions {
    border-width: 1px 0 0;
}

.k-popover-callout {
    margin: 0;
    width: 1.3em;
    height: 1.3em;
    border-width: 1px;
    border-style: solid;
    position: absolute;
}

.k-popover-callout.k-callout-n {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.k-popover-callout.k-callout-e {
    top: 50%;
    right: 0;
    transform: translate(50%, -50%) rotate(-45deg);
}

.k-popover-callout.k-callout-s {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%) rotate(45deg);
}

.k-popover-callout.k-callout-w {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%) rotate(45deg);
}

.k-popover {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-popover-inner {
    background-color: inherit;
    border-color: inherit;
}

.k-popover-callout {
    border-color: inherit;
    background-color: inherit;
    box-shadow: inherit;
}

.k-rpanel-left,
.k-rpanel-right {
    position: fixed;
    display: block;
    overflow: auto;
    min-width: 320px;
    height: 100%;
    top: 0;
}

.k-rpanel-left + *,
.k-rpanel-right + * {
    overflow: auto;
}

.k-rpanel-left.k-rpanel-expanded,
.k-rpanel-right.k-rpanel-expanded {
    transform: translateX(0) translateZ(0);
}

.k-rpanel-left {
    transform: translateX(-100%) translateZ(0);
    left: 0;
}

.k-rpanel-right {
    transform: translateX(100%) translateZ(0);
    right: 0;
}

.k-rpanel-top {
    position: static;
    max-height: 0;
}

.k-rpanel-top.k-rpanel-expanded {
    max-height: 568px;
    overflow: visible !important;
}

.k-rpanel-toggle {
    touch-action: manipulation;
}

.k-bottom-nav {
    padding-block: 0px;
    padding-inline: 0px;
    width: 100%;
    border-width: 0;
    border-style: solid;
    border-color: transparent;
    box-sizing: border-box;
    font-size: 1rem;
    line-height: normal;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    letter-spacing: 0.2px;
    display: flex;
    flex-flow: row nowrap;
    white-space: nowrap;
    gap: 0px;
    overflow: hidden;
    outline: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-bottom-nav *,
.k-bottom-nav *::before,
.k-bottom-nav *::after {
    box-sizing: border-box;
}

.k-bottom-nav-border {
    border-width: 1px 0px 0px 0px;
}

.k-bottom-nav-shadow {
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.12);
}

.k-bottom-nav-item {
    padding-block: 0;
    padding-inline: 0.5rem;
    min-width: 72px;
    min-height: calc( 40px + 1rem - 0px);
    border-width: 0;
    box-sizing: border-box;
    font: inherit;
    display: inline-flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    gap: 0 0.25rem;
    text-decoration: none;
    cursor: pointer;
    color: inherit;
    background-color: inherit;
    border-color: inherit;
    outline: none;
}

.k-bottom-nav-item:focus {
    outline: none;
}

.k-bottom-nav-item:hover {
    color: inherit;
    text-decoration: none;
}

.k-bottom-nav-item > .k-bottom-nav-link {
    margin-block: 0;
    margin-inline: -0.5rem;
    padding-block: 0;
    padding-inline: 0.5rem;
    width: 100%;
    color: inherit;
    display: flex;
    flex-flow: row nowrap;
    flex: 1 0 auto;
    align-items: center;
    justify-content: center;
    outline: 0;
}

.k-bottom-nav-item.k-disabled {
    background-color: initial;
}

.k-bottom-nav-item-icon {
    font-size: 1.5rem;
}

.k-bottom-nav-item-text {
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.k-bottom-nav-item-flow-horizontal .k-bottom-nav-item {
    flex-flow: row nowrap;
}

.k-bottom-nav-item-flow-vertical .k-bottom-nav-item {
    flex-direction: column;
}

.k-bottom-nav.k-pos-fixed, .k-bottom-nav.k-fixed {
    bottom: 0;
    z-index: 1;
}

.k-bottom-nav-solid.k-bottom-nav-primary {
    color: #aaccfe;
    background-color: #0d6efd;
}

.k-bottom-nav-solid.k-bottom-nav-primary .k-bottom-nav-item.k-focus,
.k-bottom-nav-solid.k-bottom-nav-primary .k-bottom-nav-item:focus {
    background-color: rgba(170, 204, 254, 0.2);
}

.k-bottom-nav-solid.k-bottom-nav-primary .k-bottom-nav-item.k-selected {
    color: white;
}

.k-bottom-nav-solid.k-bottom-nav-secondary {
    color: #cccfd2;
    background-color: #6c757d;
}

.k-bottom-nav-solid.k-bottom-nav-secondary .k-bottom-nav-item.k-focus,
.k-bottom-nav-solid.k-bottom-nav-secondary .k-bottom-nav-item:focus {
    background-color: rgba(204, 207, 210, 0.2);
}

.k-bottom-nav-solid.k-bottom-nav-secondary .k-bottom-nav-item.k-selected {
    color: white;
}

.k-bottom-nav-solid.k-bottom-nav-tertiary {
    color: #cdbde9;
    background-color: #6f42c1;
}

.k-bottom-nav-solid.k-bottom-nav-tertiary .k-bottom-nav-item.k-focus,
.k-bottom-nav-solid.k-bottom-nav-tertiary .k-bottom-nav-item:focus {
    background-color: rgba(205, 189, 233, 0.2);
}

.k-bottom-nav-solid.k-bottom-nav-tertiary .k-bottom-nav-item.k-selected {
    color: white;
}

.k-bottom-nav-solid.k-bottom-nav-info {
    color: #aaecfa;
    background-color: #0dcaf0;
}

.k-bottom-nav-solid.k-bottom-nav-info .k-bottom-nav-item.k-focus,
.k-bottom-nav-solid.k-bottom-nav-info .k-bottom-nav-item:focus {
    background-color: rgba(170, 236, 250, 0.2);
}

.k-bottom-nav-solid.k-bottom-nav-info .k-bottom-nav-item.k-selected {
    color: white;
}

.k-bottom-nav-solid.k-bottom-nav-success {
    color: #afd5c3;
    background-color: #198754;
}

.k-bottom-nav-solid.k-bottom-nav-success .k-bottom-nav-item.k-focus,
.k-bottom-nav-solid.k-bottom-nav-success .k-bottom-nav-item:focus {
    background-color: rgba(175, 213, 195, 0.2);
}

.k-bottom-nav-solid.k-bottom-nav-success .k-bottom-nav-item.k-selected {
    color: white;
}

.k-bottom-nav-solid.k-bottom-nav-warning {
    color: #594402;
    background-color: #ffc107;
}

.k-bottom-nav-solid.k-bottom-nav-warning .k-bottom-nav-item.k-focus,
.k-bottom-nav-solid.k-bottom-nav-warning .k-bottom-nav-item:focus {
    background-color: rgba(89, 68, 2, 0.2);
}

.k-bottom-nav-solid.k-bottom-nav-warning .k-bottom-nav-item.k-selected {
    color: black;
}

.k-bottom-nav-solid.k-bottom-nav-error {
    color: #f3b8be;
    background-color: #dc3545;
}

.k-bottom-nav-solid.k-bottom-nav-error .k-bottom-nav-item.k-focus,
.k-bottom-nav-solid.k-bottom-nav-error .k-bottom-nav-item:focus {
    background-color: rgba(243, 184, 190, 0.2);
}

.k-bottom-nav-solid.k-bottom-nav-error .k-bottom-nav-item.k-selected {
    color: white;
}

.k-bottom-nav-solid.k-bottom-nav-dark {
    color: #b1b3b4;
    background-color: #212529;
}

.k-bottom-nav-solid.k-bottom-nav-dark .k-bottom-nav-item.k-focus,
.k-bottom-nav-solid.k-bottom-nav-dark .k-bottom-nav-item:focus {
    background-color: rgba(177, 179, 180, 0.2);
}

.k-bottom-nav-solid.k-bottom-nav-dark .k-bottom-nav-item.k-selected {
    color: white;
}

.k-bottom-nav-solid.k-bottom-nav-light {
    color: #575758;
    background-color: #f8f9fa;
}

.k-bottom-nav-solid.k-bottom-nav-light .k-bottom-nav-item.k-focus,
.k-bottom-nav-solid.k-bottom-nav-light .k-bottom-nav-item:focus {
    background-color: rgba(87, 87, 88, 0.2);
}

.k-bottom-nav-solid.k-bottom-nav-light .k-bottom-nav-item.k-selected {
    color: black;
}

.k-bottom-nav-solid.k-bottom-nav-inverse {
    color: #b1b3b4;
    background-color: #212529;
}

.k-bottom-nav-solid.k-bottom-nav-inverse .k-bottom-nav-item.k-focus,
.k-bottom-nav-solid.k-bottom-nav-inverse .k-bottom-nav-item:focus {
    background-color: rgba(177, 179, 180, 0.2);
}

.k-bottom-nav-solid.k-bottom-nav-inverse .k-bottom-nav-item.k-selected {
    color: white;
}

.k-bottom-nav-flat {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-bottom-nav-flat .k-bottom-nav-item.k-focus,
.k-bottom-nav-flat .k-bottom-nav-item:focus {
    background-color: rgba(33, 37, 41, 0.05);
}

.k-bottom-nav-flat.k-bottom-nav-primary .k-bottom-nav-item.k-selected {
    color: #0d6efd;
}

.k-bottom-nav-flat.k-bottom-nav-secondary .k-bottom-nav-item.k-selected {
    color: #52595f;
}

.k-bottom-nav-flat.k-bottom-nav-tertiary .k-bottom-nav-item.k-selected {
    color: #6f42c1;
}

.k-bottom-nav-flat.k-bottom-nav-info .k-bottom-nav-item.k-selected {
    color: #0dcaf0;
}

.k-bottom-nav-flat.k-bottom-nav-success .k-bottom-nav-item.k-selected {
    color: #198754;
}

.k-bottom-nav-flat.k-bottom-nav-warning .k-bottom-nav-item.k-selected {
    color: #ffc107;
}

.k-bottom-nav-flat.k-bottom-nav-error .k-bottom-nav-item.k-selected {
    color: #dc3545;
}

.k-bottom-nav-flat.k-bottom-nav-dark .k-bottom-nav-item.k-selected {
    color: #212529;
}

.k-bottom-nav-flat.k-bottom-nav-light .k-bottom-nav-item.k-selected {
    color: #bcbdbe;
}

.k-bottom-nav-flat.k-bottom-nav-inverse .k-bottom-nav-item.k-selected {
    color: #212529;
}

.k-breadcrumb {
    border-width: 0px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    line-height: 1.5;
    display: flex;
    flex-direction: row;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-breadcrumb *,
.k-breadcrumb *::before,
.k-breadcrumb *::after {
    box-sizing: border-box;
}

.k-breadcrumb-container,
.k-breadcrumb-root-item-container {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-flow: row nowrap;
    overflow: hidden;
}

.k-breadcrumb-container.k-flex-wrap {
    flex-wrap: wrap;
}

.k-breadcrumb-root-item-container {
    align-items: flex-start;
    flex-shrink: 0;
}

.k-breadcrumb-item {
    vertical-align: middle;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    overflow: hidden;
}

.k-breadcrumb-root-item {
    flex-shrink: 0;
}

.k-breadcrumb-link,
.k-breadcrumb-root-link {
    border-radius: 0.375rem;
    padding-block: 0.5rem;
    padding-inline: 0.75rem;
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
    outline: none;
    cursor: pointer;
    position: relative;
    display: inline-flex;
    align-items: center;
    align-self: stretch;
    overflow: hidden;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.k-breadcrumb-root-link {
    margin-inline-end: 0.75rem;
}

.k-breadcrumb-link > .k-image,
.k-breadcrumb-icontext-link .k-icon,
.k-breadcrumb-icontext-link .k-svg-icon {
    margin-inline-end: 0.5rem;
}

.k-breadcrumb-icon-link {
    padding-block: 0.75rem;
    padding-inline: 0.75rem;
}

.k-breadcrumb-delimiter,
.k-breadcrumb-delimiter-icon {
    color: inherit;
    font-size: 12px;
    opacity: 0.65;
}

.k-breadcrumb-input-container {
    width: 100%;
}

.k-breadcrumb-input-container .k-breadcrumb-input-container {
    border-color: transparent;
}

.k-breadcrumb-link,
.k-breadcrumb-root-link {
    text-decoration: underline;
}

.k-breadcrumb-current-item .k-disabled, .k-breadcrumb-last-item .k-disabled {
    opacity: 1;
    filter: none;
}

.k-breadcrumb {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-breadcrumb:focus, .k-breadcrumb.k-focus {
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.06);
}

.k-breadcrumb-link {
    color: #0d6efd;
}

.k-breadcrumb-link:hover, .k-breadcrumb-link.k-hover {
    color: #0a58ca;
}

.k-breadcrumb-link:focus, .k-breadcrumb-link.k-focus {
    box-shadow: inset 0 0 0 3px rgba(33, 37, 41, 0.25);
}

.k-breadcrumb-root-link {
    color: #0d6efd;
}

.k-breadcrumb-root-link:hover, .k-breadcrumb-root-link.k-hover {
    color: #0a58ca;
}

.k-breadcrumb-root-link:focus, .k-breadcrumb-root-link.k-focus {
    box-shadow: inset 0 0 0 3px rgba(33, 37, 41, 0.25);
}

.k-breadcrumb-current-item .k-breadcrumb-link, .k-breadcrumb-last-item .k-breadcrumb-link {
    color: #6c757d;
}

.k-pager {
    padding: 0;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    line-height: 1.5;
    white-space: nowrap;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    cursor: default;
    flex: 0 0 auto;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-pager *,
.k-pager *::before,
.k-pager *::after {
    box-sizing: border-box;
}

.k-rtl .k-pager .k-i-caret-alt-to-left,
.k-rtl .k-pager .k-i-caret-alt-to-right,
.k-rtl .k-pager .k-i-caret-alt-left,
.k-rtl .k-pager .k-i-caret-alt-right,
.k-rtl .k-pager .k-i-arrow-end-left,
.k-rtl .k-pager .k-i-arrow-60-left,
.k-rtl .k-pager .k-i-arrow-60-right,
.k-rtl .k-pager .k-i-arrow-end-right,
.k-rtl .k-pager .k-i-seek-w,
.k-rtl .k-pager .k-i-arrow-w,
.k-rtl .k-pager .k-i-arrow-e,
.k-rtl .k-pager .k-i-seek-e, .k-pager[dir="rtl"] .k-i-caret-alt-to-left,
.k-pager[dir="rtl"] .k-i-caret-alt-to-right,
.k-pager[dir="rtl"] .k-i-caret-alt-left,
.k-pager[dir="rtl"] .k-i-caret-alt-right,
.k-pager[dir="rtl"] .k-i-arrow-end-left,
.k-pager[dir="rtl"] .k-i-arrow-60-left,
.k-pager[dir="rtl"] .k-i-arrow-60-right,
.k-pager[dir="rtl"] .k-i-arrow-end-right,
.k-pager[dir="rtl"] .k-i-seek-w,
.k-pager[dir="rtl"] .k-i-arrow-w,
.k-pager[dir="rtl"] .k-i-arrow-e,
.k-pager[dir="rtl"] .k-i-seek-e,
[dir="rtl"] .k-pager .k-i-caret-alt-to-left,
[dir="rtl"] .k-pager .k-i-caret-alt-to-right,
[dir="rtl"] .k-pager .k-i-caret-alt-left,
[dir="rtl"] .k-pager .k-i-caret-alt-right,
[dir="rtl"] .k-pager .k-i-arrow-end-left,
[dir="rtl"] .k-pager .k-i-arrow-60-left,
[dir="rtl"] .k-pager .k-i-arrow-60-right,
[dir="rtl"] .k-pager .k-i-arrow-end-right,
[dir="rtl"] .k-pager .k-i-seek-w,
[dir="rtl"] .k-pager .k-i-arrow-w,
[dir="rtl"] .k-pager .k-i-arrow-e,
[dir="rtl"] .k-pager .k-i-seek-e {
    transform: scaleX(-1);
}

.k-pager-input, .k-pager-sizes, .k-pager-info, .k-pager-mobile-sm .k-pager-numbers-wrap select.k-dropdown-list, .k-pager-mobile-sm .k-pager-numbers-wrap select.k-dropdown,
.k-pager-mobile-sm .k-pager-numbers-wrap select.k-dropdownlist {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.k-pager-nav {
    color: inherit;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.k-pager-nav:hover {
    z-index: 2;
}

.k-disabled.k-pager-nav {
    color: inherit;
}

.k-pager-numbers-wrap {
    display: flex;
    flex-direction: row;
    position: relative;
}

.k-pager-numbers-wrap select.k-dropdown-list, .k-pager-numbers-wrap select.k-dropdown,
.k-pager-numbers-wrap select.k-dropdownlist {
    cursor: pointer;
    display: none;
}

.k-pager-numbers {
    display: flex;
    flex-direction: row;
}

.k-pager-numbers .k-selected {
    cursor: inherit;
    z-index: 2;
}

.k-pager-nav + .k-pager-nav,
.k-pager-nav + .k-pager-numbers-wrap,
.k-pager-numbers-wrap + .k-pager-nav {
    margin-left: -1px;
}

.k-rtl .k-pager-nav + .k-pager-nav,
[dir="rtl"] .k-pager-nav + .k-pager-nav, .k-rtl
.k-pager-nav + .k-pager-numbers-wrap,
[dir="rtl"]
.k-pager-nav + .k-pager-numbers-wrap, .k-rtl
.k-pager-numbers-wrap + .k-pager-nav,
[dir="rtl"]
.k-pager-numbers-wrap + .k-pager-nav {
    margin-left: 0;
    margin-right: -1px;
}

.k-pager-input .k-textbox {
    margin-block: 0;
    margin-inline: 1ex;
    width: 5em;
}

.k-pager-sizes .k-dropdown-list, .k-pager-sizes .k-dropdown,
.k-pager-sizes .k-dropdownlist,
.k-pager-sizes > select {
    margin-right: 1ex;
}

.k-pager-sizes .k-input-inner,
.k-pager-sizes .k-input-value-text {
    text-overflow: clip;
}

.k-rtl .k-pager-sizes .k-dropdown-list, .k-rtl .k-pager-sizes .k-dropdown,
.k-rtl .k-pager-sizes .k-dropdownlist,
.k-rtl .k-pager-sizes > select,
[dir="rtl"] .k-pager-sizes .k-dropdown-list,
[dir="rtl"] .k-pager-sizes .k-dropdown,
[dir="rtl"] .k-pager-sizes .k-dropdownlist,
[dir="rtl"] .k-pager-sizes > select {
    margin-left: 1ex;
    margin-right: 0;
}

.k-pager-info {
    text-align: end;
    justify-content: flex-end;
    flex: 1 1 0%;
    order: 9;
}

.k-pager-refresh {
    margin-inline-start: auto;
    color: inherit;
    order: 10;
}

.k-pager-mobile-sm {
    overflow: visible;
}

.k-pager-mobile-sm .k-pager-numbers-wrap {
    border-color: inherit;
}

.k-pager-mobile-sm .k-pager-numbers-wrap select.k-dropdown-list, .k-pager-mobile-sm .k-pager-numbers-wrap select.k-dropdown,
.k-pager-mobile-sm .k-pager-numbers-wrap select.k-dropdownlist {
    margin-left: 1rem;
    margin-right: 1rem;
    width: 5em;
}

.k-pager-mobile-md .k-pager-info,
.k-pager-mobile-sm .k-pager-info,
.k-pager-mobile-sm .k-pager-sizes,
.k-pager-mobile-sm .k-pager-numbers {
    display: none;
}

.k-pager-sm {
    padding-inline: 0.25rem;
    padding-block: 0.25rem;
    gap: 0.875rem;
}

.k-pager-sm .k-pager-numbers-wrap .k-button {
    min-width: calc( 1.4285714286em + 0.5rem + 2px);
}

.k-pager-sm .k-pager-numbers-wrap .k-pager-input {
    margin-inline-start: 0.875rem;
    margin-inline-end: 0.875rem;
}

.k-pager-sm .k-pager-sizes .k-dropdown-list, .k-pager-sm .k-pager-sizes .k-dropdown,
.k-pager-sm .k-pager-sizes .k-dropdownlist,
.k-pager-sm .k-pager-sizes > select {
    width: 5em;
}

.k-pager-md {
    padding-inline: 0.5rem;
    padding-block: 0.5rem;
    gap: 1rem;
}

.k-pager-md .k-pager-numbers-wrap .k-button {
    min-width: calc( 1.5em + 0.75rem + 2px);
}

.k-pager-md .k-pager-numbers-wrap .k-pager-input {
    margin-inline-start: 1rem;
    margin-inline-end: 1rem;
}

.k-pager-md .k-pager-sizes .k-dropdown-list, .k-pager-md .k-pager-sizes .k-dropdown,
.k-pager-md .k-pager-sizes .k-dropdownlist,
.k-pager-md .k-pager-sizes > select {
    width: 5em;
}

.k-pager-lg {
    padding-inline: 0.625rem;
    padding-block: 0.625rem;
    gap: 1.125rem;
}

.k-pager-lg .k-pager-numbers-wrap .k-button {
    min-width: calc( 1.5em + 1rem + 2px);
}

.k-pager-lg .k-pager-numbers-wrap .k-pager-input {
    margin-inline-start: 1.125rem;
    margin-inline-end: 1.125rem;
}

.k-pager-lg .k-pager-sizes .k-dropdown-list, .k-pager-lg .k-pager-sizes .k-dropdown,
.k-pager-lg .k-pager-sizes .k-dropdownlist,
.k-pager-lg .k-pager-sizes > select {
    width: 6em;
}

.k-pager-nav {
    border-radius: 0;
}

.k-pager-first {
    border-radius: 0.25rem 0 0 0.25rem;
}

.k-pager-last {
    border-radius: 0 0.25rem 0.25rem 0;
}

.k-rtl .k-pager-first,
[dir="rtl"] .k-pager-first {
    border-radius: 0 0.25rem 0.25rem 0;
}

.k-rtl .k-pager-last,
[dir="rtl"] .k-pager-last {
    border-radius: 0.25rem 0 0 0.25rem;
}

.k-pager {
    border-color: #dee2e6;
    color: #212529;
    background-color: #f8f9fa;
}

.k-pager:focus, .k-pager.k-focus {
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.08);
}

.k-stepper {
    border-width: 0px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-size: 1rem;
    line-height: 1.5;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    display: block;
    position: relative;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    color: inherit;
    background: none;
}

.k-stepper *,
.k-stepper *::before,
.k-stepper *::after {
    box-sizing: border-box;
}

.k-stepper .k-step-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    position: relative;
    z-index: 1;
}

.k-stepper .k-step-link {
    outline: none;
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.k-stepper .k-step-indicator {
    border-radius: 50%;
    margin: 3px;
    width: 28px;
    height: 28px;
    border-width: 1px;
    border-style: solid;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    position: relative;
    z-index: 1;
    overflow: visible;
    transition-property: color, background-color, border-color;
    transition-duration: .4s;
    transition-timing-function: ease-in-out;
}

.k-stepper .k-step-indicator::after {
    border-radius: 100%;
    content: "";
    border-width: 1px;
    border-style: solid;
    border-color: inherit;
    pointer-events: none;
    display: none;
    position: absolute;
    top: calc( -1 * calc( 1px + 3px));
    right: calc( -1 * calc( 1px + 3px));
    bottom: calc( -1 * calc( 1px + 3px));
    left: calc( -1 * calc( 1px + 3px));
    z-index: 2;
}

.k-stepper .k-step.k-focus .k-step-indicator::after,
.k-stepper .k-step-link:focus .k-step-indicator::after {
    display: block;
}

.k-stepper .k-step-label {
    max-width: clamp(100%, 10em, 100%);
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.k-stepper .k-step-label:only-child {
    border-radius: 15px;
    padding-block: 5px;
    padding-inline: 12px;
    border-width: 0;
}

.k-stepper .k-step-label .k-step-text {
    max-width: calc(10em - (16px + 0.5rem));
    flex-grow: 1;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.k-stepper .k-step-label .k-icon,
.k-stepper .k-step-label .k-svg-icon {
    margin-left: 0.5rem;
}

.k-stepper .k-step-current .k-step-label {
    font-weight: bold;
}

.k-stepper .k-step-label-optional {
    flex-basis: 100%;
    font-size: 0.875rem;
}

.k-stepper .k-step-disabled,
.k-stepper .k-step.k-disabled {
    opacity: 1;
    pointer-events: none;
}

.k-stepper .k-step-disabled .k-step-link,
.k-stepper .k-step.k-disabled .k-step-link {
    cursor: default;
}

.k-stepper .k-step-disabled .k-step-label-optional,
.k-stepper .k-step.k-disabled .k-step-label-optional {
    color: inherit;
}

.k-stepper .k-progressbar {
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}

.k-stepper .k-progressbar-horizontal {
    grid-row: 1 / -1;
}

.k-stepper .k-progressbar-vertical {
    position: absolute;
}

.k-step-list-horizontal {
    flex-direction: row;
    grid-row: 1;
}

.k-step-list-horizontal .k-step {
    flex: 1 0 auto;
    text-align: center;
}

.k-step-list-horizontal .k-step-link {
    margin: auto;
    max-width: 10em;
    flex-direction: column;
}

.k-step-list-horizontal .k-step-label {
    text-align: center;
}

.k-step-list-horizontal .k-step-indicator + .k-step-label {
    margin-top: calc(8px - 3px);
}

.k-step-list-horizontal ~ .k-progressbar {
    width: 100%;
    height: 2px;
    top: calc(((28px + 2 * 2px) / 2) + 2px / 2);
}

.k-step-list-vertical {
    flex-direction: column;
}

.k-step-list-vertical .k-step {
    min-height: calc((28px + 2 * 1px + 2 * 2px) + 20px);
}

.k-step-list-vertical .k-step-label {
    justify-content: flex-start;
}

.k-step-list-vertical .k-step-indicator + .k-step-label {
    margin-left: 12px;
}

.k-step-list-vertical ~ .k-progressbar {
    width: 2px;
    height: 100%;
    min-height: 20px;
    left: calc((28px + 2 * 1px + 2 * 2px) / 2);
}

.k-step-list-vertical .k-step-content {
    height: 0;
    overflow: hidden;
    transition: height 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.k-step-list-vertical .k-step-current .k-step-content {
    height: auto;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 30px;
    padding-block: 20px;
    padding-inline: 10px;
}

.k-rtl .k-stepper,
.k-stepper[dir="rtl"] {
    direction: rtl;
}

.k-rtl .k-stepper .k-step-label .k-icon,
.k-rtl .k-stepper .k-step-label .k-svg-icon,
.k-stepper[dir="rtl"] .k-step-label .k-icon,
.k-stepper[dir="rtl"] .k-step-label .k-svg-icon {
    margin-left: 0;
    margin-right: 0.5rem;
}

.k-rtl .k-stepper .k-step-list-vertical .k-step-indicator + .k-step-label,
.k-stepper[dir="rtl"] .k-step-list-vertical .k-step-indicator + .k-step-label {
    margin-left: 0;
    margin-right: 12px;
}

.k-rtl .k-stepper .k-step-list-vertical ~ .k-progressbar,
.k-stepper[dir="rtl"] .k-step-list-vertical ~ .k-progressbar {
    left: auto;
    right: calc((28px + 2 * 1px + 2 * 2px) / 2);
}

.k-stepper {
    color: #212529;
}

.k-stepper .k-step:hover .k-step-indicator, .k-stepper .k-step.k-hover .k-step-indicator, .k-stepper .k-step.k-step-hover .k-step-indicator {
    background-color: #ebebeb;
}

.k-stepper .k-step.k-focus .k-step-label:only-child,
.k-stepper .k-step .k-step-link:focus .k-step-label:only-child {
    box-shadow: inset 0 0 0 2px #dee2e6;
}

.k-stepper .k-step.k-step-disabled .k-step-indicator, .k-stepper .k-step.k-disabled .k-step-indicator, .k-stepper .k-step:disabled .k-step-indicator {
    color: #8f8f8f;
}

.k-stepper .k-step.k-step-disabled .k-step-label, .k-stepper .k-step.k-disabled .k-step-label, .k-stepper .k-step:disabled .k-step-label {
    color: #8f8f8f;
}

.k-stepper .k-step-indicator {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-stepper .k-step-indicator::after {
    box-shadow: inset 0 0 0 2px #ffffff;
}

.k-stepper .k-step-label:only-child {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-stepper .k-step-done .k-step-indicator {
    border-color: #0d6efd;
    color: white;
    background-color: #0d6efd;
}

.k-stepper .k-step-done:hover .k-step-indicator, .k-stepper .k-step-done.k-hover .k-step-indicator, .k-stepper .k-step-done.k-step-hover .k-step-indicator {
    background-color: #0c65e9;
}

.k-stepper .k-step-done.k-step-disabled .k-step-indicator, .k-stepper .k-step-done.k-disabled .k-step-indicator, .k-stepper .k-step-done:disabled .k-step-indicator {
    border-color: #6ea8fe;
    color: white;
    background-color: #6ea8fe;
}

.k-stepper .k-step-current .k-step-indicator {
    border-color: #0d6efd;
    color: white;
    background-color: #0d6efd;
}

.k-stepper .k-step-current:hover .k-step-indicator, .k-stepper .k-step-current.k-hover .k-step-indicator, .k-stepper .k-step-current.k-step-hover .k-step-indicator {
    background-color: #0c65e9;
}

.k-stepper .k-step-current.k-step-disabled .k-step-indicator, .k-stepper .k-step-current.k-disabled .k-step-indicator, .k-stepper .k-step-current:disabled .k-step-indicator {
    border-color: #6ea8fe;
    color: white;
    background-color: #6ea8fe;
}

.k-stepper .k-step-success .k-step-label .k-icon,
.k-stepper .k-step-success .k-step-label .k-svg-icon {
    color: #198754;
}

.k-stepper .k-step-error .k-step-label {
    color: #dc3545;
}

.k-stepper .k-step-error .k-step-label {
    color: #dc3545;
}

.k-stepper .k-step-error:hover .k-step-label, .k-stepper .k-step-error.k-hover .k-step-label, .k-stepper .k-step-error.k-step-hover .k-step-label {
    color: #dc3545;
}

.k-stepper .k-step-label-optional {
    color: #6c757d;
}

.k-tabstrip-wrapper {
    padding-block: 0px;
    padding-inline: 0px;
    box-sizing: border-box;
    border-width: 0px;
    border-style: solid;
    display: flex;
    flex-direction: column;
}

.k-tabstrip {
    border-width: 0;
    border-color: transparent;
    box-sizing: border-box;
    outline: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    line-height: 1.5;
    color: inherit;
    background-color: transparent;
    display: flex;
    flex-flow: column nowrap;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-tabstrip-wrapper > .k-tabstrip {
    flex: 1 1 auto;
}

.k-tabstrip-items-wrapper {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: inherit;
    position: relative;
}

.k-tabstrip-items {
    box-sizing: border-box;
    outline: 0;
    display: flex;
    flex-direction: inherit;
    flex-wrap: wrap;
    flex: 1 1 auto;
    gap: 0;
}

.k-tabstrip-items *,
.k-tabstrip-items *::before,
.k-tabstrip-items *::after {
    box-sizing: border-box;
}

.k-tabstrip-items .k-item {
    margin: 0;
    padding: 0;
    border: 1px solid transparent;
    position: relative;
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-items: stretch;
    outline: 0;
}

.k-tabstrip-items .k-tab-on-top {
    z-index: 1;
}

.k-tabstrip-items .k-link {
    padding-block: 0.5rem;
    padding-inline: 1rem;
    color: inherit;
    cursor: pointer;
    display: inline-flex;
    vertical-align: middle;
    flex: 1 1 auto;
    flex-direction: row;
    align-content: center;
    align-items: center;
}

.k-tabstrip-content,
.k-tabstrip > .k-content {
    margin: 0 !important;
    padding-block: 1rem;
    padding-inline: 1rem;
    box-sizing: border-box;
    border-width: 1px;
    border-style: solid;
    border-color: inherit;
    display: none;
    overflow: auto;
    flex: 1 1 auto;
    position: relative;
}

.k-tabstrip-content.k-active,
.k-tabstrip > .k-content.k-active {
    display: block;
}

.k-tabstrip-content:focus, .k-tabstrip-content.k-focus,
.k-tabstrip > .k-content:focus,
.k-tabstrip > .k-content.k-focus {
    outline-width: 1px;
    outline-style: dotted;
    outline-offset: -1px;
}

.k-tabstrip-items .k-loading {
    width: 20%;
    height: 0;
    border: 0;
    border-top: 1px solid transparent;
    border-color: inherit;
    background: none;
    position: absolute;
    top: 0;
    left: 0;
    transition: width .2s linear;
    display: none;
}

.k-tabstrip-items .k-loading.k-complete {
    width: 100%;
    border-top-width: 0;
}

.k-tabstrip-scrollable > .k-tabstrip-items-wrapper > .k-tabstrip-items {
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: hidden;
}

.k-tabstrip-scrollable > .k-tabstrip-items-wrapper > .k-button {
    padding-block: 0.25rem;
    padding-inline: 0.25rem;
    width: auto;
    height: auto;
    flex: none;
    align-self: stretch;
    aspect-ratio: auto;
}

.k-tabstrip-scrollable > .k-tabstrip-items-wrapper > .k-button .k-button-icon {
    min-width: auto;
    min-height: auto;
}

.k-tabstrip-horizontal, .k-tabstrip-top > .k-tabstrip-items-wrapper, .k-tabstrip-bottom > .k-tabstrip-items-wrapper {
    flex-direction: row;
}

.k-tabstrip-vertical, .k-tabstrip-left > .k-tabstrip-items-wrapper, .k-tabstrip-right > .k-tabstrip-items-wrapper {
    flex-direction: column;
}

.k-tabstrip-top > .k-tabstrip-items-wrapper {
    border-bottom-width: 1px;
}

.k-tabstrip-top > .k-tabstrip-items-wrapper .k-item {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    border-bottom-width: 0;
}

.k-tabstrip-top > .k-tabstrip-items-wrapper .k-item:active,
.k-tabstrip-top > .k-tabstrip-items-wrapper .k-item.k-active {
    margin-bottom: -1px;
    border-bottom-width: 1px;
    border-bottom-color: transparent !important;
}

.k-tabstrip-top > .k-content,
.k-tabstrip-top > .k-tabstrip-content {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    border-top-width: 0 !important;
}

.k-tabstrip-bottom > .k-tabstrip-items-wrapper {
    border-top-width: 1px;
}

.k-tabstrip-bottom > .k-tabstrip-items-wrapper .k-item {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    border-top-width: 0;
}

.k-tabstrip-bottom > .k-tabstrip-items-wrapper .k-item:active,
.k-tabstrip-bottom > .k-tabstrip-items-wrapper .k-item.k-active {
    margin-top: -1px;
    border-top-width: 1px;
    border-top-color: transparent !important;
}

.k-tabstrip-bottom > .k-content,
.k-tabstrip-bottom > .k-tabstrip-content {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    border-bottom-width: 0 !important;
}

.k-tabstrip-left {
    flex-direction: row;
}

.k-tabstrip-left > .k-tabstrip-items-wrapper {
    border-right-width: 1px;
}

.k-tabstrip-left > .k-tabstrip-items-wrapper .k-item {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    border-right-width: 0;
}

.k-tabstrip-left > .k-tabstrip-items-wrapper .k-item:active,
.k-tabstrip-left > .k-tabstrip-items-wrapper .k-item.k-active {
    margin-right: -1px;
    border-right-width: 1px;
    border-right-color: transparent !important;
}

.k-tabstrip-left > .k-content,
.k-tabstrip-left > .k-tabstrip-content {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    border-left-width: 0 !important;
}

.k-tabstrip-right {
    flex-direction: row-reverse;
}

.k-tabstrip-right > .k-tabstrip-items-wrapper {
    border-left-width: 1px;
}

.k-tabstrip-right > .k-tabstrip-items-wrapper .k-item {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    border-left-width: 0;
}

.k-tabstrip-right > .k-tabstrip-items-wrapper .k-item:active,
.k-tabstrip-right > .k-tabstrip-items-wrapper .k-item.k-active {
    margin-left: -1px;
    border-left-width: 1px;
    border-left-color: transparent !important;
}

.k-tabstrip-right > .k-content,
.k-tabstrip-right > .k-tabstrip-content {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    border-right-width: 0;
}

.k-tabstrip-items-start {
    justify-content: flex-start;
}

.k-tabstrip-items-center {
    justify-content: center;
}

.k-tabstrip-items-end {
    justify-content: flex-end;
}

.k-tabstrip-items-justify {
    justify-content: space-between;
}

.k-tabstrip-items-stretched > * {
    flex: 1 0 0;
}

.k-rtl .k-tabstrip.k-tabstrip-left > .k-tabstrip-items-wrapper, .k-rtl .k-tabstrip.k-tabstrip-right > .k-tabstrip-items-wrapper,
.k-tabstrip[dir="rtl"].k-tabstrip-left > .k-tabstrip-items-wrapper,
.k-tabstrip[dir="rtl"].k-tabstrip-right > .k-tabstrip-items-wrapper {
    order: 1;
}

.k-rtl .k-tabstrip.k-tabstrip-left > .k-content, .k-rtl .k-tabstrip.k-tabstrip-right > .k-content,
.k-tabstrip[dir="rtl"].k-tabstrip-left > .k-content,
.k-tabstrip[dir="rtl"].k-tabstrip-right > .k-content {
    order: 0;
}

.k-rtl .k-tabstrip.k-tabstrip-left > .k-tabstrip-content, .k-rtl .k-tabstrip.k-tabstrip-right > .k-tabstrip-content,
.k-tabstrip[dir="rtl"].k-tabstrip-left > .k-tabstrip-content,
.k-tabstrip[dir="rtl"].k-tabstrip-right > .k-tabstrip-content {
    order: 0;
}

.k-rtl .k-tabstrip .k-tabstrip-prev .k-button-icon,
.k-rtl .k-tabstrip .k-tabstrip-next .k-button-icon,
.k-tabstrip[dir="rtl"] .k-tabstrip-prev .k-button-icon,
.k-tabstrip[dir="rtl"] .k-tabstrip-next .k-button-icon {
    transform: scaleX(-1);
}

.k-tabstrip-items-wrapper {
    border-color: #dee2e6;
    color: #212529;
}

.k-tabstrip-items-wrapper .k-item {
    color: #0d6efd;
}

.k-tabstrip-items-wrapper .k-item:hover, .k-tabstrip-items-wrapper .k-item.k-hover {
    border-color: #e9ecef;
    color: #0a58ca;
}

.k-tabstrip-items-wrapper .k-item:active, .k-tabstrip-items-wrapper .k-item.k-active, .k-tabstrip-items-wrapper .k-item.k-selected {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-tabstrip-items-wrapper .k-item:focus, .k-tabstrip-items-wrapper .k-item.k-focus {
    box-shadow: inset 0 0 0 3px rgba(33, 37, 41, 0.15);
}

.k-tabstrip-items-wrapper .k-item.k-tabstrip-dragging {
    box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.15);
}

.k-tabstrip-content,
.k-tabstrip > .k-content {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-tabstrip-content:focus, .k-tabstrip-content.k-focus,
.k-tabstrip > .k-content:focus,
.k-tabstrip > .k-content.k-focus {
    outline-color: #212529;
}

.k-wizard {
    padding-block: 1.25rem;
    padding-inline: 1.25rem;
    border-width: 0px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-size: 1rem;
    line-height: 1.5;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    position: relative;
    color: inherit;
    background: none;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.k-wizard .k-wizard-steps {
    box-sizing: border-box;
    display: flex;
    overflow: hidden;
}

.k-wizard .k-wizard-step {
    box-sizing: border-box;
    padding: calc(0.5rem + 2px);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
}

.k-wizard .k-wizard-step:focus, .k-wizard .k-wizard-step.k-focus {
    outline-width: 1px;
    outline-style: dotted;
    outline-offset: -1px;
}

.k-wizard .k-wizard-content {
    box-sizing: border-box;
    overflow-y: auto;
}

.k-wizard .k-wizard-buttons {
    margin-top: 2rem;
    box-sizing: border-box;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.k-wizard .k-wizard-buttons .k-button {
    margin-right: 10px;
}

.k-wizard .k-wizard-buttons .k-wizard-pager {
    vertical-align: middle;
}

.k-wizard .k-wizard-buttons-right .k-button:last-of-type {
    margin-right: 0;
}

.k-wizard .k-stepper .k-step-list-vertical .k-step {
    flex: 1 0 auto;
}

.k-wizard .k-stepper .k-step-indicator {
    flex-shrink: 0;
}

.k-wizard-horizontal {
    flex-direction: column;
}

.k-wizard-horizontal .k-wizard-steps {
    margin-top: 2rem;
}

.k-wizard-horizontal .k-wizard-steps,
.k-wizard-horizontal .k-wizard-content {
    flex: 1 1 auto;
}

.k-wizard-vertical .k-wizard-steps {
    flex: 1 0 0%;
}

.k-wizard-vertical .k-wizard-content {
    flex: 1 1 0%;
}

.k-wizard-vertical .k-wizard-steps {
    margin-left: 2rem;
}

.k-wizard-left {
    flex-direction: row-reverse;
}

.k-wizard-left .k-wizard-steps {
    margin-right: 2rem;
    margin-left: 0;
}

.k-wizard-step:focus, .k-wizard-step.k-focus {
    outline-color: #656565;
}

.k-expander {
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    overflow: hidden;
    outline: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-expander *,
.k-expander *::before,
.k-expander *::after {
    box-sizing: border-box;
}

.k-rtl .k-expander .k-expander-indicator, .k-expander.k-rtl .k-expander-indicator, .k-expander[dir="rtl"] .k-expander-indicator {
    margin-left: 0;
    margin-right: 0.75rem;
}

.k-expander-header {
    padding-block: 1rem;
    padding-inline: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.k-expander-spacer {
    flex: 1 1 auto;
}

.k-expander-title {
    text-transform: uppercase;
    font-weight: 500;
}

.k-expander-indicator {
    margin-left: 0.75rem;
}

.k-expander-content {
    padding-block: 1.5rem;
    padding-inline: 1.5rem;
}

.k-expander + .k-expander.k-expanded,
.k-expander.k-expanded + .k-expander {
    margin-top: 0.75rem;
}

.k-expander:not(.k-expanded) + .k-expander:not(.k-expanded) {
    border-top-width: 0;
}

.k-expander {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-expander.k-focus {
    box-shadow: inset 0 0 0 3px rgba(33, 37, 41, 0.15);
}

.k-expander-header {
    color: #212529;
    background-color: transparent;
    outline: none;
}

.k-expander-header:hover, .k-expander-header.k-hover {
    background-color: rgba(0, 0, 0, 0.04);
}

.k-expander-header.k-focus {
    box-shadow: inset 0 0 0 3px rgba(33, 37, 41, 0.15);
}

.k-expander-title {
    color: #0d6efd;
}

.k-expander-sub-title {
    color: #6c757d;
}

.k-panelbar {
    margin: 0;
    padding: 0;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    line-height: 1.5;
    list-style: none;
    display: block;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-panelbar *,
.k-panelbar *::before,
.k-panelbar *::after {
    box-sizing: border-box;
}

.k-panelbar > .k-item,
.k-panelbar > .k-panelbar-header {
    border-width: 0;
    border-style: solid;
    border-color: inherit;
    display: block;
}

.k-panelbar > .k-item > .k-link,
.k-panelbar > .k-panelbar-header > .k-link {
    padding-block: 1rem;
    padding-inline: 1.5rem;
    color: inherit;
    background: none;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    flex-flow: row nowrap;
    gap: 0.5rem;
    align-items: center;
    align-content: center;
    position: relative;
    user-select: none;
    cursor: default;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.k-panelbar > .k-item + .k-item,
.k-panelbar > .k-panelbar-header + .k-panelbar-header {
    border-top-width: 1px;
}

.k-panelbar .k-group,
.k-panelbar .k-panelbar-group {
    margin: 0;
    padding: 0;
    border-width: 0;
    border-color: inherit;
    color: inherit;
    background-color: transparent;
    list-style: none;
}

.k-panelbar .k-group > .k-item,
.k-panelbar .k-panelbar-group > .k-panelbar-item {
    display: block;
}

.k-panelbar .k-group > .k-item > .k-link,
.k-panelbar .k-panelbar-group > .k-panelbar-item > .k-link {
    padding-block: 0.75rem;
    padding-inline: 1.5rem;
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-flow: row nowrap;
    gap: 0.5rem;
    align-items: center;
    align-content: center;
    position: relative;
    user-select: none;
    cursor: default;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.k-panelbar .k-group > .k-item.k-level-1 .k-link,
.k-panelbar .k-panelbar-group > .k-panelbar-item.k-level-1 .k-link {
    padding-left: 1.5rem;
}

.k-panelbar .k-group > .k-item.k-level-2 .k-link,
.k-panelbar .k-panelbar-group > .k-panelbar-item.k-level-2 .k-link {
    padding-left: 3rem;
}

.k-panelbar .k-group > .k-item.k-level-3 .k-link,
.k-panelbar .k-panelbar-group > .k-panelbar-item.k-level-3 .k-link {
    padding-left: 4.5rem;
}

.k-panelbar .k-group > .k-item.k-level-4 .k-link,
.k-panelbar .k-panelbar-group > .k-panelbar-item.k-level-4 .k-link {
    padding-left: 6rem;
}

.k-panelbar .k-panelbar-item {
    outline-style: none;
}

.k-panelbar .k-panelbar-content {
    display: flow-root;
}

.k-panelbar .k-panelbar-expand,
.k-panelbar .k-panelbar-collapse,
.k-panelbar .k-panelbar-toggle {
    margin-inline-start: auto;
}

.k-panelbar .k-group .k-panelbar-expand,
.k-panelbar .k-group .k-panelbar-collapse,
.k-panelbar .k-panelbar-group .k-panelbar-toggle {
    margin-inline-end: calc( 1.5rem - 1.5rem);
}

.k-rtl .k-panelbar .k-group > .k-item.k-level-1 .k-link,
.k-rtl .k-panelbar .k-panelbar-group > .k-panelbar-item.k-level-1 .k-link, .k-panelbar.k-rtl .k-group > .k-item.k-level-1 .k-link,
.k-panelbar.k-rtl .k-panelbar-group > .k-panelbar-item.k-level-1 .k-link, .k-panelbar[dir="rtl"] .k-group > .k-item.k-level-1 .k-link,
.k-panelbar[dir="rtl"] .k-panelbar-group > .k-panelbar-item.k-level-1 .k-link {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.k-rtl .k-panelbar .k-group > .k-item.k-level-2 .k-link,
.k-rtl .k-panelbar .k-panelbar-group > .k-panelbar-item.k-level-2 .k-link, .k-panelbar.k-rtl .k-group > .k-item.k-level-2 .k-link,
.k-panelbar.k-rtl .k-panelbar-group > .k-panelbar-item.k-level-2 .k-link, .k-panelbar[dir="rtl"] .k-group > .k-item.k-level-2 .k-link,
.k-panelbar[dir="rtl"] .k-panelbar-group > .k-panelbar-item.k-level-2 .k-link {
    padding-left: 1.5rem;
    padding-right: 3rem;
}

.k-rtl .k-panelbar .k-group > .k-item.k-level-3 .k-link,
.k-rtl .k-panelbar .k-panelbar-group > .k-panelbar-item.k-level-3 .k-link, .k-panelbar.k-rtl .k-group > .k-item.k-level-3 .k-link,
.k-panelbar.k-rtl .k-panelbar-group > .k-panelbar-item.k-level-3 .k-link, .k-panelbar[dir="rtl"] .k-group > .k-item.k-level-3 .k-link,
.k-panelbar[dir="rtl"] .k-panelbar-group > .k-panelbar-item.k-level-3 .k-link {
    padding-left: 1.5rem;
    padding-right: 4.5rem;
}

.k-rtl .k-panelbar .k-group > .k-item.k-level-4 .k-link,
.k-rtl .k-panelbar .k-panelbar-group > .k-panelbar-item.k-level-4 .k-link, .k-panelbar.k-rtl .k-group > .k-item.k-level-4 .k-link,
.k-panelbar.k-rtl .k-panelbar-group > .k-panelbar-item.k-level-4 .k-link, .k-panelbar[dir="rtl"] .k-group > .k-item.k-level-4 .k-link,
.k-panelbar[dir="rtl"] .k-panelbar-group > .k-panelbar-item.k-level-4 .k-link {
    padding-left: 1.5rem;
    padding-right: 6rem;
}

.k-panelbar {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-panelbar > .k-item > .k-link,
.k-panelbar > .k-panelbar-header > .k-link {
    color: #0d6efd;
    background-color: #ffffff;
}

.k-panelbar > .k-item > .k-link .k-icon,
.k-panelbar > .k-item > .k-link .k-svg-icon,
.k-panelbar > .k-item > .k-link .k-panelbar-item-icon,
.k-panelbar > .k-panelbar-header > .k-link .k-icon,
.k-panelbar > .k-panelbar-header > .k-link .k-svg-icon,
.k-panelbar > .k-panelbar-header > .k-link .k-panelbar-item-icon {
    color: #212529;
}

.k-panelbar > .k-item > .k-link:hover,
.k-panelbar > .k-item > .k-link.k-hover,
.k-panelbar > .k-panelbar-header > .k-link:hover,
.k-panelbar > .k-panelbar-header > .k-link.k-hover {
    background-color: whitesmoke;
}

.k-panelbar > .k-item > .k-link:focus,
.k-panelbar > .k-item > .k-link.k-focus,
.k-panelbar > .k-panelbar-header > .k-link:focus,
.k-panelbar > .k-panelbar-header > .k-link.k-focus {
    box-shadow: inset 0 0 0 3px rgba(33, 37, 41, 0.15);
}

.k-panelbar > .k-item > .k-link.k-selected,
.k-panelbar > .k-panelbar-header > .k-link.k-selected {
    color: #ffffff;
    background-color: #0d6efd;
}

.k-panelbar > .k-item > .k-link.k-selected .k-icon,
.k-panelbar > .k-item > .k-link.k-selected .k-svg-icon,
.k-panelbar > .k-item > .k-link.k-selected .k-panelbar-item-icon,
.k-panelbar > .k-panelbar-header > .k-link.k-selected .k-icon,
.k-panelbar > .k-panelbar-header > .k-link.k-selected .k-svg-icon,
.k-panelbar > .k-panelbar-header > .k-link.k-selected .k-panelbar-item-icon {
    color: inherit;
}

.k-panelbar > .k-item > .k-link.k-selected:hover,
.k-panelbar > .k-item > .k-link.k-selected.k-hover,
.k-panelbar > .k-panelbar-header > .k-link.k-selected:hover,
.k-panelbar > .k-panelbar-header > .k-link.k-selected.k-hover {
    background-color: #0c65e9;
}

.k-panelbar .k-group > .k-item > .k-link:hover,
.k-panelbar .k-group > .k-item > .k-link.k-hover,
.k-panelbar .k-group > .k-panelbar-item > .k-link:hover,
.k-panelbar .k-group > .k-panelbar-item > .k-link.k-hover,
.k-panelbar .k-panelbar-group > .k-item > .k-link:hover,
.k-panelbar .k-panelbar-group > .k-item > .k-link.k-hover,
.k-panelbar .k-panelbar-group > .k-panelbar-item > .k-link:hover,
.k-panelbar .k-panelbar-group > .k-panelbar-item > .k-link.k-hover {
    background-color: #ebebeb;
}

.k-panelbar .k-group > .k-item > .k-link:focus,
.k-panelbar .k-group > .k-item > .k-link.k-focus,
.k-panelbar .k-group > .k-panelbar-item > .k-link:focus,
.k-panelbar .k-group > .k-panelbar-item > .k-link.k-focus,
.k-panelbar .k-panelbar-group > .k-item > .k-link:focus,
.k-panelbar .k-panelbar-group > .k-item > .k-link.k-focus,
.k-panelbar .k-panelbar-group > .k-panelbar-item > .k-link:focus,
.k-panelbar .k-panelbar-group > .k-panelbar-item > .k-link.k-focus {
    box-shadow: inset 0 0 0 3px rgba(33, 37, 41, 0.15);
}

.k-panelbar .k-group > .k-item > .k-link.k-selected,
.k-panelbar .k-group > .k-panelbar-item > .k-link.k-selected,
.k-panelbar .k-panelbar-group > .k-item > .k-link.k-selected,
.k-panelbar .k-panelbar-group > .k-panelbar-item > .k-link.k-selected {
    color: #ffffff;
    background-color: #0d6efd;
}

.k-panelbar .k-group > .k-item > .k-link.k-selected:hover,
.k-panelbar .k-group > .k-item > .k-link.k-selected.k-hover,
.k-panelbar .k-group > .k-panelbar-item > .k-link.k-selected:hover,
.k-panelbar .k-group > .k-panelbar-item > .k-link.k-selected.k-hover,
.k-panelbar .k-panelbar-group > .k-item > .k-link.k-selected:hover,
.k-panelbar .k-panelbar-group > .k-item > .k-link.k-selected.k-hover,
.k-panelbar .k-panelbar-group > .k-panelbar-item > .k-link.k-selected:hover,
.k-panelbar .k-panelbar-group > .k-panelbar-item > .k-link.k-selected.k-hover {
    background-color: #0c65e9;
}

.k-splitter {
    height: 300px;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    line-height: 1.5;
    display: block;
    position: relative;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-splitter .k-pane {
    overflow: hidden;
}

.k-splitter .k-scrollable {
    overflow: auto;
}

.k-splitter .k-splitter-resizing {
    overflow: hidden;
}

.k-pane > .k-splitter {
    border-width: 0;
    overflow: hidden;
}

.k-splitter .k-pane-loading {
    position: static;
    top: 50%;
    left: 50%;
}

.k-ghost-splitbar,
.k-splitbar {
    border-style: solid;
    outline: 0;
    position: absolute;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.k-ghost-splitbar .k-collapse-prev,
.k-ghost-splitbar .k-collapse-next,
.k-splitbar .k-collapse-prev,
.k-splitbar .k-collapse-next {
    cursor: pointer;
}

.k-ghost-splitbar .k-icon,
.k-splitbar .k-icon {
    font-size: 10px;
}

.k-ghost-splitbar .k-svg-icon,
.k-splitbar .k-svg-icon {
    width: 10px;
    height: 10px;
}

.k-splitbar-draggable-horizontal {
    cursor: col-resize;
}

.k-splitbar-draggable-vertical {
    cursor: row-resize;
}

.k-ghost-splitbar-horizontal,
.k-splitbar-horizontal {
    width: 8px;
    border-width: 0;
    background-repeat: repeat-y;
    flex-direction: column;
    top: 0;
}

.k-ghost-splitbar-vertical,
.k-splitbar-vertical {
    height: 8px;
    border-width: 0;
    background-repeat: repeat-x;
    flex-direction: row;
    left: 0;
}

.k-splitbar-static-horizontal {
    width: 1px;
}

.k-splitbar-static-vertical {
    height: 1px;
}

.k-splitbar-draggable-horizontal .k-resize-handle {
    width: 2px;
    height: 20px;
    position: static;
    z-index: 1;
}

.k-splitbar .k-resize-handle {
    display: none;
    background-color: currentColor;
}

.k-splitbar-draggable-horizontal .k-resize-handle,
.k-splitbar-draggable-vertical .k-resize-handle {
    display: block;
}

.k-splitbar-horizontal .k-collapse-prev {
    margin-bottom: 7px;
}

.k-splitbar-horizontal .k-collapse-next {
    margin-top: 7px;
}

.k-splitbar-vertical .k-collapse-prev {
    margin-right: 7px;
}

.k-splitbar-vertical .k-collapse-next {
    margin-left: 7px;
}

.k-splitbar-draggable-vertical .k-resize-handle {
    width: 20px;
    height: 2px;
    position: static;
    z-index: 1;
}

.k-pane > .k-splitter-overlay {
    opacity: 0;
    position: absolute;
}

.k-splitter-flex {
    display: flex;
    width: 100%;
    height: auto;
}

.k-splitter-flex .k-pane {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    min-height: 0;
    max-height: 100%;
    height: 100%;
}

.k-splitter-flex .k-pane-static {
    flex-grow: 0;
    flex-shrink: 0;
}

.k-splitter-flex .k-pane-flex {
    display: flex;
}

.k-splitter-flex .k-splitbar {
    position: static;
    flex: 0 0 auto;
}

.k-splitter-flex .k-pane.k-hidden, .k-splitter-flex .k-pane[hidden],
.k-splitter-flex .k-pane-flex.k-hidden,
.k-splitter-flex .k-pane-flex[hidden] {
    flex: 0 1 0% !important;
    overflow: hidden !important;
    display: block !important;
}

.k-splitter-flex.k-splitter-horizontal {
    flex-direction: row;
}

.k-splitter-flex.k-splitter-horizontal[dir="rtl"] > .k-splitbar > .k-collapse-next,
.k-splitter-flex.k-splitter-horizontal[dir="rtl"] > .k-splitbar > .k-collapse-prev {
    transform: scaleX(-1);
}

.k-splitter-flex.k-splitter-vertical {
    flex-direction: column;
}

.k-splitter {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-splitbar {
    color: #212529;
    background-color: #f8f9fa;
}

.k-splitbar:hover,
.k-splitbar.k-hover,
.k-splitbar-horizontal-hover,
.k-splitbar-vertical-hover {
    color: #212529;
    background-color: #eeeff0;
}

.k-splitbar:focus,
.k-splitbar.k-focus {
    color: #ffffff;
    background: #0d6efd;
}

.k-ghost-splitbar {
    background-color: #eeeff0;
}

.k-tilelayout {
    border-width: 0px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    display: grid;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-tilelayout .k-card {
    box-shadow: none;
    border-width: 1px;
}

.k-tilelayout-item {
    position: relative;
    z-index: 0;
}

.k-layout-item-hint {
    border-radius: 0.375rem;
    border-width: 1px;
    border-style: solid;
    position: relative;
}

.k-layout-item-hint.k-layout-item-hint-resize {
    z-index: 3;
}

.k-tilelayout-item-header.k-card-header {
    z-index: 0;
}

.k-tilelayout-item-body {
    min-height: 0;
}

.k-tilelayout {
    background-color: #f8f9fa;
}

.k-tilelayout-item:focus,
.k-tilelayout-item.k-focus {
    box-shadow: 0 0 0 3px rgba(222, 226, 230, 0.5);
}

.k-layout-item-hint {
    border-color: #dee2e6;
    background-color: rgba(255, 255, 255, 0.2);
}

.k-pane-wrapper {
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    line-height: 1.5;
    display: block;
    position: relative;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-pane-wrapper .k-pane {
    width: 100%;
    height: 100%;
    user-select: none;
    box-sizing: border-box;
    font-family: sans-serif;
    overflow-x: hidden;
}

.k-pane-wrapper .k-view {
    top: 0;
    left: 0;
    position: relative;
    border: 0;
    box-sizing: border-box;
    outline: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    line-height: 1.5;
    display: flex;
    height: 100%;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    align-content: stretch;
    vertical-align: top;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-pane-wrapper .k-content {
    min-height: 1px;
    flex: 1;
    align-items: stretch;
    display: block;
    width: auto;
    overflow: hidden;
    position: relative;
}

.k-pane-wrapper > div.k-pane {
    box-shadow: none;
    font-weight: normal;
}

.k-pane-wrapper .k-popup-edit-form .k-content,
.k-pane-wrapper .k-grid-edit-form .k-content,
.k-pane-wrapper .k-grid-header-menu .k-content,
.k-pane-wrapper .k-grid-filter-menu .k-content {
    overflow-y: auto;
}

.k-pane-wrapper .k-popup-edit-form .k-content > .k-scroll-container,
.k-pane-wrapper .k-grid-edit-form .k-content > .k-scroll-container,
.k-pane-wrapper .k-grid-header-menu .k-content > .k-scroll-container,
.k-pane-wrapper .k-grid-filter-menu .k-content > .k-scroll-container {
    position: absolute;
    width: 100%;
    min-height: 100%;
    box-sizing: border-box;
}

.k-pane-wrapper .k-grid-edit-form .k-popup-edit-form,
.k-pane-wrapper .k-grid-edit-form .k-edit-form-container {
    width: auto;
    min-width: auto;
}

.k-grid.k-grid-mobile {
    border-width: 0;
}

.k-grid-mobile .k-resize-handle-inner::before {
    content: "\e01e";
    position: absolute;
    font: 16px/1 "WebComponentsIcons";
    top: calc(50% - 1px);
    left: 50%;
    transform: translate(-50%, -50%);
    padding: .2em;
}

.k-grid-mobile .k-header a {
    user-select: none;
}

.k-pane-wrapper .k-scheduler-edit-form .k-recur-view {
    padding: 0;
    flex-direction: column;
    align-items: stretch;
}

.k-pane-wrapper .k-scheduler-edit-form .k-recur-view > .k-listgroup-form-row {
    margin: 0;
}

.k-pane-wrapper .k-scheduler-edit-form .k-recur-items-wrap {
    width: 100%;
    margin-block: -1px;
    margin-inline: 0;
}

.k-pane-wrapper .k-scheduler-edit-form .k-scheduler-recur-end-wrap {
    white-space: nowrap;
}

.k-scheduler.k-scheduler-mobile {
    border-width: 0;
}

.k-scheduler-mobile th {
    font-weight: normal;
}

.k-scheduler-mobile .k-event:hover .k-resize-handle {
    visibility: hidden;
}

.k-scheduler-mobile .k-scheduler-toolbar {
    padding-block: 0.5rem;
    padding-inline: 0.5rem;
}

.k-scheduler-mobile .k-scheduler-toolbar > * {
    margin: 0;
}

.k-scheduler-mobile .k-scheduler-toolbar::before {
    display: none;
}

.k-scheduler-mobile .k-scheduler-toolbar .k-scheduler-navigation {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    margin: 0;
}

.k-scheduler-mobile .k-scheduler-toolbar .k-scheduler-navigation .k-nav-current {
    line-height: 1;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: space-evenly;
    gap: 0;
}

.k-scheduler-mobile .k-scheduler-toolbar .k-scheduler-views-wrapper .k-views-dropdown {
    display: inline-block;
}

.k-scheduler-mobile .k-scheduler-footer {
    padding-block: 0.5rem;
    padding-inline: 0.5rem;
    display: flex;
    justify-content: space-between;
}

.k-scheduler-mobile .k-scheduler-footer > * {
    margin: 0;
}

.k-scheduler-mobile .k-scheduler-footer::before {
    display: none;
}

.k-scheduler-mobile .k-scheduler-monthview .k-hidden {
    height: 40px;
}

.k-scheduler-mobile .k-scheduler-monthview .k-scheduler-table td {
    height: 40px;
    vertical-align: top;
    text-align: center;
}

.k-scheduler-mobile .k-scheduler-monthview .k-events-container {
    position: absolute;
    text-align: center;
    height: 6px;
    line-height: 6px;
}

.k-scheduler-mobile .k-scheduler-monthview .k-event {
    position: static;
    padding: 4px;
    border-radius: 50%;
    display: inline-block;
    width: 4px;
    height: 4px;
    min-height: 0;
    margin: 1px;
}

.k-scheduler-mobile .k-scheduler-dayview .k-mobile-header.k-mobile-horizontal-header .k-scheduler-times table tr:first-child {
    display: none;
}

.k-scheduler-mobile .k-scheduler-dayview .k-mobile-header .k-scheduler-header .k-scheduler-date-group {
    display: none;
}

.k-scheduler-mobile .k-scheduler-header-wrap > div {
    overflow: visible;
}

.k-scheduler-mobile .k-scheduler-agendaview .k-mobile-header {
    display: none;
}

.k-scheduler-mobile .k-scheduler-agendaview .k-scheduler-table {
    table-layout: auto;
}

.k-scheduler-mobile .k-scheduler-agendaview .k-scheduler-table .k-scheduler-groupcolumn {
    width: 1%;
}

.k-scheduler-mobile .k-scheduler-agendaview .k-scheduler-table td {
    white-space: normal;
}

.k-scheduler-mobile .k-mobile-header .k-scheduler-table td,
.k-scheduler-mobile .k-mobile-header .k-scheduler-table th {
    height: 1.5em;
}

.k-scheduler-mobile .k-time-text,
.k-scheduler-mobile .k-time-period {
    display: block;
    line-height: 1;
}

.k-scheduler-mobile .k-time-period {
    font-size: .7em;
}

.k-scheduler-mobile .k-scheduler-table td,
.k-scheduler-mobile .k-scheduler-table th {
    height: 2em;
    vertical-align: middle;
}

.k-scheduler-mobile .k-scheduler-datecolumn-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.k-scheduler-mobile .k-task {
    display: flex;
    align-items: center;
}

.k-scheduler-mobile .k-task .k-scheduler-mark {
    border-radius: 50%;
}

.k-scheduler-mobile .k-task .k-i-reload,
.k-scheduler-mobile .k-task .k-i-arrow-rotate-cw {
    font-size: 1em;
    margin-right: .5em;
}

.k-scheduler-mobile .k-task .k-scheduler-task-text {
    flex: 1 1 0%;
}

.k-scheduler-mobile .k-scheduler-times .k-scheduler-group-cell,
.k-scheduler-mobile .k-scheduler-times .k-scheduler-groupcolumn,
.k-scheduler-mobile .k-scheduler-agenda .k-scheduler-group-cell,
.k-scheduler-mobile .k-scheduler-agenda .k-scheduler-groupcolumn {
    vertical-align: top;
}

.k-scheduler-mobile .k-scheduler-times .k-scheduler-group-cell .k-scheduler-group-text,
.k-scheduler-mobile .k-scheduler-times .k-scheduler-groupcolumn .k-scheduler-group-text,
.k-scheduler-mobile .k-scheduler-agenda .k-scheduler-group-cell .k-scheduler-group-text,
.k-scheduler-mobile .k-scheduler-agenda .k-scheduler-groupcolumn .k-scheduler-group-text {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    white-space: nowrap;
}

.k-scheduler-mobile .k-scrollbar-h tr + tr .k-scheduler-times {
    border-bottom-width: 0;
}

.k-pane-wrapper .k-appbar {
    padding: 0.25rem;
}

.k-pane-wrapper .k-list-title,
.k-pane-wrapper .k-filter-help-text {
    padding-block: 0.5rem;
    padding-inline: 1rem;
    display: block;
}

.k-pane-wrapper .k-listgroup-title {
    padding-block: 0.5rem;
    padding-inline: 1rem;
    font-weight: bold;
    text-transform: uppercase;
}

.k-pane-wrapper .k-listgroup .k-listgroup-item {
    border-color: inherit;
}

.k-pane-wrapper .k-listgroup + .k-listgroup {
    margin-top: 1rem;
}

.k-pane-wrapper .k-column-menu {
    padding: 0.5rem;
    display: flex;
    flex-flow: column nowrap;
    gap: 0.5rem;
}

.k-pane-wrapper .k-column-menu .k-filter-item .k-filterable * {
    pointer-events: none;
}

.k-pane-wrapper .k-column-menu .k-list-title,
.k-pane-wrapper .k-column-menu .k-listgroup-title {
    padding: 0;
}

.k-pane-wrapper .k-column-menu .k-listgroup {
    margin-inline: -0.5rem;
}

.k-pane-wrapper .k-filter-menu {
    padding: 0.5rem;
    display: flex;
    flex-flow: column nowrap;
    gap: 0.5rem;
}

.k-pane-wrapper .k-filter-menu .k-list-title {
    padding: 0;
}

.k-pane-wrapper .k-filter-menu .k-list-filter {
    padding: 0;
    display: flex;
    flex-flow: column nowrap;
    gap: inherit;
}

.k-pane-wrapper .k-filter-menu .k-filter-tools {
    display: flex;
    flex-flow: row nowrap;
    gap: inherit;
}

.k-pane-wrapper .k-filter-menu .k-listgroup {
    margin-inline: -0.5rem;
}

.k-pane-wrapper .k-popup-edit-form .k-recur-editor-wrap {
    display: flex;
}

.k-pane-wrapper .k-popup-edit-form .k-mobiletimezoneeditor {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    flex: 1 1 auto;
}

.k-pane-wrapper .k-multicheck-wrap.k-listgroup {
    overflow-y: auto;
}

.k-pane-wrapper .k-pager-wrap.k-pager-sm,
.k-pane-wrapper .k-pager.k-pager-sm {
    justify-content: center;
}

.k-pane-wrapper .k-pager-wrap.k-pager-sm .k-pager-refresh,
.k-pane-wrapper .k-pager.k-pager-sm .k-pager-refresh {
    display: none;
}

.k-rtl .k-pane-wrapper .k-header-cancel .k-i-arrow-chevron-left,
.k-rtl .k-pane-wrapper .k-listgroup-item .k-select .k-i-arrow-chevron-right, .k-pane-wrapper[dir="rtl"] .k-header-cancel .k-i-arrow-chevron-left,
.k-pane-wrapper[dir="rtl"] .k-listgroup-item .k-select .k-i-arrow-chevron-right,
[dir="rtl"] .k-pane-wrapper .k-header-cancel .k-i-arrow-chevron-left,
[dir="rtl"] .k-pane-wrapper .k-listgroup-item .k-select .k-i-arrow-chevron-right {
    transform: scaleX(-1);
}

.k-rtl .k-pane-wrapper .k-scheduler-mobile .k-scheduler-toolbar > ul > li, .k-pane-wrapper[dir="rtl"] .k-scheduler-mobile .k-scheduler-toolbar > ul > li,
[dir="rtl"] .k-pane-wrapper .k-scheduler-mobile .k-scheduler-toolbar > ul > li {
    border: 0;
}

.k-rtl .k-pane-wrapper .k-scheduler-mobile .k-scheduler-toolbar .k-nav-prev,
.k-rtl .k-pane-wrapper .k-scheduler-mobile .k-scheduler-toolbar .k-nav-next, .k-pane-wrapper[dir="rtl"] .k-scheduler-mobile .k-scheduler-toolbar .k-nav-prev,
.k-pane-wrapper[dir="rtl"] .k-scheduler-mobile .k-scheduler-toolbar .k-nav-next,
[dir="rtl"] .k-pane-wrapper .k-scheduler-mobile .k-scheduler-toolbar .k-nav-prev,
[dir="rtl"] .k-pane-wrapper .k-scheduler-mobile .k-scheduler-toolbar .k-nav-next {
    transform: scaleX(-1);
}

.k-rtl .k-pane-wrapper .k-scheduler-mobile .k-task .k-i-reload, .k-pane-wrapper[dir="rtl"] .k-scheduler-mobile .k-task .k-i-reload,
[dir="rtl"] .k-pane-wrapper .k-scheduler-mobile .k-task .k-i-reload {
    margin-left: .5em;
    margin-right: 0;
}

.k-pane-wrapper,
.k-view {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-pane-wrapper .k-pane > .k-view > .k-content {
    background-position: 50% 50%;
    background-color: #fafafa;
}

.k-pane-wrapper .k-pane .k-grid-mobile .k-column-active + th.k-header {
    border-left-color: #212529;
}

.k-pane-wrapper .k-pane .k-grid-mobile .k-resize-handle-inner::before {
    background-color: #f8f9fa;
}

.k-pane-wrapper .k-pane .k-scheduler-mobile .k-nav-current {
    color: #0d6efd;
}

.k-pane-wrapper .k-pane .k-scheduler-mobile .k-scheduler-times,
.k-pane-wrapper .k-pane .k-scheduler-mobile .k-scheduler-header,
.k-pane-wrapper .k-pane .k-scheduler-mobile .k-scheduler-groupcolumn,
.k-pane-wrapper .k-pane .k-scheduler-mobile .k-mobile-scheduler-agendadate {
    color: inherit;
}

.k-pane-wrapper .k-pane .k-scheduler-mobile .k-time-period,
.k-pane-wrapper .k-pane .k-scheduler-mobile .k-mobile-scheduler-agendaweekday {
    color: #6c757d;
}

.k-pane-wrapper .k-pane .k-scheduler-mobile .k-scheduler-times,
.k-pane-wrapper .k-pane .k-scheduler-mobile .k-scheduler-header,
.k-pane-wrapper .k-pane .k-scheduler-mobile .k-scheduler-header-wrap,
.k-pane-wrapper .k-pane .k-scheduler-mobile .k-scheduler-datecolumn,
.k-pane-wrapper .k-pane .k-scheduler-mobile .k-scheduler-groupcolumn,
.k-pane-wrapper .k-pane .k-scheduler-mobile .k-scheduler-group-cell,
.k-pane-wrapper .k-pane .k-scheduler-mobile .k-scheduler-header-all-day {
    background-color: #fafafa;
}

.k-pane-wrapper .k-pane .k-scheduler-mobile .k-scheduler-toolbar .k-scheduler-tools > li {
    display: inline-block;
    background-color: inherit;
}

.k-pane-wrapper .k-pane .k-grid-edit-form .k-item,
.k-pane-wrapper .k-pane .k-grid-edit-form .k-link,
.k-pane-wrapper .k-pane .k-grid-header-menu .k-item,
.k-pane-wrapper .k-pane .k-grid-header-menu .k-link,
.k-pane-wrapper .k-pane .k-grid-filter-menu .k-item,
.k-pane-wrapper .k-pane .k-grid-filter-menu .k-link,
.k-pane-wrapper .k-pane .k-scheduler-edit-form .k-item,
.k-pane-wrapper .k-pane .k-scheduler-edit-form .k-link {
    color: #212529;
}

.k-pane-wrapper .k-pane .k-grid-edit-form .k-clear,
.k-pane-wrapper .k-pane .k-grid-edit-form .k-select-all,
.k-pane-wrapper .k-pane .k-grid-edit-form .k-scheduler-delete,
.k-pane-wrapper .k-pane .k-grid-edit-form .k-scheduler-resetSeries,
.k-pane-wrapper .k-pane .k-grid-header-menu .k-clear,
.k-pane-wrapper .k-pane .k-grid-header-menu .k-select-all,
.k-pane-wrapper .k-pane .k-grid-header-menu .k-scheduler-delete,
.k-pane-wrapper .k-pane .k-grid-header-menu .k-scheduler-resetSeries,
.k-pane-wrapper .k-pane .k-grid-filter-menu .k-clear,
.k-pane-wrapper .k-pane .k-grid-filter-menu .k-select-all,
.k-pane-wrapper .k-pane .k-grid-filter-menu .k-scheduler-delete,
.k-pane-wrapper .k-pane .k-grid-filter-menu .k-scheduler-resetSeries,
.k-pane-wrapper .k-pane .k-scheduler-edit-form .k-clear,
.k-pane-wrapper .k-pane .k-scheduler-edit-form .k-select-all,
.k-pane-wrapper .k-pane .k-scheduler-edit-form .k-scheduler-delete,
.k-pane-wrapper .k-pane .k-scheduler-edit-form .k-scheduler-resetSeries {
    color: #0d6efd;
}

.k-pane-wrapper .k-pane .k-column-menu .k-listgroup-item.k-selected {
    color: #0d6efd;
    background: none;
}

.k-pane-wrapper .k-pane .k-column-menu .k-listgroup-item.k-selected .k-link {
    color: inherit;
}

.k-grid {
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    position: relative;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-grid.k-grid-display-block {
    display: block;
}

.k-grid .k-grid-container {
    display: flex;
    flex: 1 1 auto;
    overflow: hidden;
    position: relative;
}

.k-grid .k-grid-aria-root {
    border-color: inherit;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    overflow: hidden;
}

.k-grid .k-table {
    margin: 0;
    width: 100%;
    max-width: none;
    border-width: 0;
    border-color: inherit;
    border-collapse: separate;
    border-spacing: 0;
    box-sizing: content-box;
    empty-cells: show;
    outline: 0;
}

.k-grid .k-grid-header .k-table,
.k-grid .k-grid-content .k-table,
.k-grid .k-grid-footer .k-table {
    table-layout: fixed;
}

.k-grid .k-table-thead,
.k-grid .k-table-tbody,
.k-grid .k-table-tfoot {
    text-align: start;
    border-color: inherit;
}

.k-grid .k-table-row {
    border-color: inherit;
}

.k-grid .k-table-th,
.k-grid td,
.k-grid .k-table-td {
    border-width: 0;
    border-inline-start-width: 1px;
    border-style: solid;
    border-color: inherit;
    outline: 0;
    font-weight: inherit;
    text-align: inherit;
    position: static;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: content-box;
}

.k-grid .k-table-th:first-child,
.k-grid td:first-child,
.k-grid .k-table-td:first-child {
    border-inline-start-width: 0;
}

.k-grid .k-table-th:focus,
.k-grid td:focus,
.k-grid .k-table-td:focus {
    outline: none;
}

.k-grid .k-table-th .k-placeholder-line,
.k-grid td .k-placeholder-line,
.k-grid .k-table-td .k-placeholder-line {
    width: 80%;
}

.k-grid .k-table-th > .k-radio,
.k-grid .k-table-th > .k-radio-wrap,
.k-grid .k-table-th > .k-checkbox,
.k-grid .k-table-th > .k-checkbox-wrap,
.k-grid td > .k-radio,
.k-grid td > .k-radio-wrap,
.k-grid td > .k-checkbox,
.k-grid td > .k-checkbox-wrap,
.k-grid .k-table-td > .k-radio,
.k-grid .k-table-td > .k-radio-wrap,
.k-grid .k-table-td > .k-checkbox,
.k-grid .k-table-td > .k-checkbox-wrap {
    vertical-align: top;
}

.k-grid .k-table-th {
    border-block-end-width: 1px;
    white-space: nowrap;
}

.k-grid td,
.k-grid .k-table-td {
    border-block-end-width: 0px;
    white-space: unset;
    vertical-align: middle;
}

.k-grid a {
    color: inherit;
    text-decoration: none;
}

.k-grid a:hover {
    text-decoration: none;
}

.k-grid .k-grid-header-wrap {
    box-sizing: content-box;
}

.k-grid .k-grid-header {
    border-bottom-width: 1px;
}

.k-grid .k-grid-header .k-table {
    margin-bottom: -1px;
}

.k-grid .k-grid-header.k-grid-draggable-header {
    user-select: none;
    touch-action: none;
}

.k-grid .k-grid-header .k-table-th {
    position: relative;
    vertical-align: bottom;
    cursor: default;
}

.k-grid .k-grid-header .k-table-th:first-child {
    border-inline-start-width: 0;
}

.k-grid .k-grid-header .k-table-th.k-first {
    border-inline-start-width: 1px;
}

.k-grid .k-grid-header .k-table-th > .k-link {
    line-height: inherit;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    outline: 0;
}

.k-grid .k-grid-header .k-table-th > .k-link:focus {
    text-decoration: none;
}

.k-grid .k-grid-header .k-grid-filter,
.k-grid .k-grid-header .k-header-column-menu,
.k-grid .k-grid-header .k-grid-header-menu {
    box-sizing: border-box;
    outline: 0;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    position: absolute;
    inset-inline-end: 0.5rem;
    z-index: 1;
}

.k-grid .k-grid-header .k-grid-filter:hover,
.k-grid .k-grid-header .k-header-column-menu:hover,
.k-grid .k-grid-header .k-grid-header-menu:hover {
    cursor: pointer;
}

.k-grid .k-grid-header .k-cell-inner > .k-link > .k-sort-icon {
    vertical-align: text-top;
    margin-inline-start: calc( 1rem - 1px);
}

.k-grid .k-grid-header .k-cell-inner > .k-link > .k-sort-icon .k-icon,
.k-grid .k-grid-header .k-cell-inner > .k-link > .k-sort-icon .k-svg-icon {
    display: flex;
}

.k-grid .k-grid-header .k-sort-order {
    display: inline-block;
    vertical-align: top;
    height: 16px;
    font-size: 12px;
    margin-top: 2px;
    margin-inline-start: -2px;
}

.k-grid .k-grid-header .k-filterable > .k-cell-inner .k-link {
    padding-inline-end: 0;
}

.k-grid .k-cell-inner {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: inherit;
    overflow: hidden;
}

.k-grid .k-cell-inner > .k-link {
    width: auto;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: inherit;
    flex: 1;
    overflow: hidden;
}

.k-grid .k-cell-inner > .k-link > .k-sort-icon {
    margin-inline-start: 0;
    display: inline-block;
    flex-shrink: 0;
}

.k-grid .k-cell-inner .k-sort-order {
    flex-shrink: 0;
    line-height: normal;
}

.k-grid .k-cell-inner .k-grid-filter,
.k-grid .k-cell-inner .k-header-column-menu,
.k-grid .k-cell-inner .k-grid-header-menu {
    position: static;
    margin-inline-end: 0.5rem;
}

.k-grid .k-group-col,
.k-grid .k-hierarchy-col {
    padding: 0;
    width: 32px;
}

.k-grid .k-grouping-row p {
    margin: 0;
    display: flex;
    align-items: center;
    align-content: center;
}

.k-grid .k-grouping-row td,
.k-grid .k-grouping-row .k-table-td {
    overflow: visible;
}

.k-grid .k-grouping-row + .k-table-row td,
.k-grid .k-grouping-row + .k-table-row .k-table-td {
    border-top-width: 1px;
}

.k-grid .k-grouping-row .k-group-cell,
.k-grid .k-grouping-row + .k-table-row .k-group-cell {
    border-top-width: 0;
    text-overflow: clip;
}

.k-grid .k-grouping-row .k-icon,
.k-grid .k-grouping-row .k-svg-icon {
    margin-inline-start: calc( 8px - 0.5rem);
    margin-inline-end: 8px;
    text-decoration: none;
}

.k-grid .k-table .k-group-footer td,
.k-grid .k-table .k-group-footer .k-table-td {
    border-style: solid;
    border-width: 1px 0;
}

.k-grid .k-group-footer .k-group-cell + td,
.k-grid .k-group-footer .k-group-cell + .k-table-td {
    border-inline-start-width: 1px;
}

.k-grid .k-hierarchy-cell,
.k-grid .k-drag-cell {
    text-align: center;
    overflow: visible;
}

.k-grid .k-hierarchy-cell > .k-icon,
.k-grid .k-drag-cell > .k-icon {
    padding-block: 0.5rem;
    padding-inline: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    outline: 0;
}

.k-grid .k-hierarchy-cell + .k-grid-content-sticky {
    border-inline-start-width: 1px;
}

.k-grid .k-detail-row .k-detail-cell {
    border-inline-start-width: 0;
}

.k-grid .k-dirty-cell {
    position: relative;
}

.k-grid .k-dirty-cell.k-edit-cell {
    position: static;
}

.k-grid .k-dirty-cell.k-grid-content-sticky {
    position: sticky;
}

.k-grid .k-dirty {
    border-width: 5px;
    border-color: transparent;
    border-block-start-color: currentColor;
    border-inline-start-color: currentColor;
    inset-inline-start: 0;
    inset-inline-end: auto;
}

.k-grid .k-grid-content-locked + .k-grid-content {
    box-sizing: content-box;
}

.k-grid .k-grid-content-expander {
    position: absolute;
    visibility: hidden;
    height: 1px;
    bottom: 1px;
}

.k-grid .k-grid-filter,
.k-grid .k-header-column-menu,
.k-grid .k-grid-header-menu,
.k-grid .k-hierarchy-cell .k-icon {
    border-width: 0;
}

.k-grid .k-drag-col {
    padding: 0;
    width: 48px;
}

.k-grid .k-drag-cell {
    cursor: move;
}

.k-grid-toolbar {
    border-width: 0 0 1px;
    flex-shrink: 0;
}

.k-grid-toolbar-bottom {
    border-width: 1px 0 0;
}

.k-grouping-header {
    border-width: 0 0 1px;
    border-style: solid;
    border-color: inherit;
    white-space: normal;
    display: flex;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
}

.k-grouping-header::before {
    content: "";
    height: calc( 1.25em + 0.5rem + 2px);
    display: inline-block;
    vertical-align: middle;
}

.k-grouping-header .k-chip-list {
    flex-grow: 0;
    display: contents;
}

.k-grouping-header > .k-grouping-drop-container {
    flex-grow: 1;
    padding-block: 0.5rem;
    margin-block: -0.5rem;
    display: inline-flex;
    align-self: stretch;
    align-items: center;
}

.k-grouping-dropclue {
    width: 12px;
    position: absolute;
    top: 3px;
    box-sizing: content-box;
}

.k-grouping-dropclue::before, .k-grouping-dropclue::after {
    display: inline-block;
    content: "";
    position: absolute;
}

.k-grouping-dropclue::before {
    border-width: 6px;
    border-style: solid;
    border-left-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    top: 0;
}

.k-grouping-dropclue::after {
    width: 2px;
    height: calc(100% - 6px);
    top: 6px;
    inset-inline-start: calc( 6px - 1px);
}

.k-grid-header-wrap,
.k-grid-footer-wrap {
    margin-inline-end: -1px;
    width: 100%;
    border-width: 0;
    border-inline-end-width: 1px;
    border-style: solid;
    border-color: inherit;
    position: relative;
    overflow: hidden;
}

.k-grid-header-locked + .k-grid-header-wrap.k-auto-scrollable {
    margin-inline-end: 0;
}

.k-grid-header,
.k-grid-footer {
    padding-inline-start: 0;
    padding-inline-end: var(--kendo-scrollbar-width, 17px);
    border-width: 0;
    border-style: solid;
    border-color: inherit;
    flex: 0 0 auto;
}

div.k-grid-header,
div.k-grid-footer {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.k-column-resizer {
    width: .5em;
    height: 1000%;
    display: block;
    position: absolute;
    top: 0;
    inset-inline-end: 0;
    cursor: col-resize;
}

.k-row-resizer {
    display: block;
    height: 0.125rem;
    width: 100%;
    background: none;
}

.k-grid-footer {
    border-top-width: 1px;
}

.k-grid-footer td,
.k-grid-footer .k-table-td {
    height: calc( 1.5 * 1em);
}

.k-grid-footer td,
.k-group-footer td,
.k-grouping-row td,
.k-grid-footer .k-table-td,
.k-group-footer .k-table-td,
.k-grouping-row .k-table-td {
    font-weight: bold;
}

.k-grid-filter-popup {
    min-width: 200px;
}

.k-grid-column-menu-standalone a.k-grid-filter {
    position: initial;
    display: inline-block;
    margin-block: -4px;
    margin-inline: 0;
    padding-block: 4px;
    padding-inline: 8px;
}

.k-filter-row {
    line-height: 1.5;
}

.k-filter-row td,
.k-filter-row .k-table-td,
.k-filter-row .k-table-th {
    border-width: 0;
    border-block-end-width: 1px;
    border-inline-start-width: 1px;
    white-space: nowrap;
}

.k-filter-row td:first-child,
.k-filter-row .k-table-td:first-child {
    border-inline-start-width: 0;
}

.k-filter-row .k-multiselect {
    height: auto;
}

.k-filtercell {
    width: auto;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.k-filtercell > span,
.k-filtercell .k-filtercell-wrapper {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    flex: 1 1 auto;
}

.k-filtercell > span > .k-button,
.k-filtercell .k-filtercell-wrapper > .k-button {
    flex: none;
}

.k-filtercell .k-input,
.k-filtercell .k-picker {
    width: auto;
    flex: 1 1 auto;
}

.k-filtercell .k-color-picker, .k-filtercell .k-colorpicker,
.k-filtercell .k-dropdown-operator {
    width: min-content;
    flex: none;
}

.k-grid-content,
.k-grid-content-locked {
    border-color: inherit;
    outline: 0;
}

.k-grid-content .k-table-row:last-child > td,
.k-grid-content .k-table-row:last-child > .k-table-td,
.k-grid-content-locked .k-table-row:last-child > td,
.k-grid-content-locked .k-table-row:last-child > .k-table-td {
    border-bottom-width: 0;
}

.k-grid-content {
    width: 100%;
    min-height: 0;
    overflow: auto;
    overflow-x: auto;
    overflow-y: scroll;
    position: relative;
    flex: 1;
}

.k-virtual-scrollable-wrap {
    height: 100%;
    overflow-y: hidden;
    position: relative;
}

.k-grid .k-edit-cell,
.k-grid .k-command-cell,
.k-grid .k-grid-edit-row td,
.k-grid .k-grid-edit-row .k-table-td {
    text-overflow: clip;
}

.k-grid .k-edit-cell > input:not([type="checkbox"]):not([type="radio"]),
.k-grid .k-edit-cell > select,
.k-grid .k-edit-cell > .k-widget:not(.k-switch),
.k-grid .k-grid-edit-row td > input:not([type="checkbox"]):not([type="radio"]),
.k-grid .k-grid-edit-row td > select,
.k-grid .k-grid-edit-row td > .k-widget:not(.k-switch),
.k-grid .k-grid-edit-row .k-table-td > input:not([type="checkbox"]):not([type="radio"]),
.k-grid .k-grid-edit-row .k-table-td > select,
.k-grid .k-grid-edit-row .k-table-td > .k-widget:not(.k-switch) {
    width: 100%;
    vertical-align: middle;
    box-sizing: border-box;
}

.k-grid .k-edit-cell > .k-radio,
.k-grid .k-edit-cell > .k-checkbox,
.k-grid .k-edit-cell > .k-radio-wrap,
.k-grid .k-edit-cell > .k-checkbox-wrap,
.k-grid .k-grid-edit-row td > .k-radio,
.k-grid .k-grid-edit-row td > .k-checkbox,
.k-grid .k-grid-edit-row td > .k-radio-wrap,
.k-grid .k-grid-edit-row td > .k-checkbox-wrap,
.k-grid .k-grid-edit-row .k-table-td > .k-radio,
.k-grid .k-grid-edit-row .k-table-td > .k-checkbox,
.k-grid .k-grid-edit-row .k-table-td > .k-radio-wrap,
.k-grid .k-grid-edit-row .k-table-td > .k-checkbox-wrap {
    vertical-align: middle;
}

.k-grid .k-command-cell > .k-button {
    vertical-align: middle;
}

.k-grid .k-command-cell > .k-button + .k-button {
    margin-inline-end: unset;
    margin-inline-start: 0.5rem;
}

.k-grid > .k-resize-handle,
.k-grid-header .k-resize-handle {
    height: 25px;
    cursor: col-resize;
    position: absolute;
    z-index: 2;
}

.k-selection-aggregates {
    border-width: 1px 0 0;
    border-style: solid;
    line-height: 1.5;
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

.k-selection-aggregates-item-value {
    font-weight: 700;
}

.k-grid-pager {
    border-width: 1px 0 0;
    border-color: inherit;
    font-size: inherit;
}

.k-grid-pager-top {
    border-width: 0 0 1px;
}

.k-pager-input .k-numerictextbox {
    margin-block: 0;
    margin-inline: 0.5rem;
    width: 3em;
}

.k-grid-virtual .k-grid-content .k-grid-table-wrap {
    float: left;
    width: 100%;
}

.k-grid-virtual .k-grid-content .k-grid-table {
    position: relative;
    float: left;
    z-index: 1;
}

.k-grid-virtual .k-grid-content > .k-height-container {
    position: relative;
    float: left;
}

.k-grid-virtual .k-grid-content::after {
    content: "";
    display: block;
    clear: both;
}

.k-width-container {
    position: absolute;
    visibility: hidden;
}

.k-width-container div {
    height: 1px;
}

.k-grid-add-row td,
.k-grid-add-row .k-table-td {
    border-bottom-style: solid;
    border-bottom-width: 1px;
}

.k-grid-lockedcolumns {
    white-space: nowrap;
}

.k-grid-content,
.k-grid-content-locked {
    white-space: normal;
}

.k-grid-content-locked,
.k-grid-footer-locked,
.k-grid-header-locked {
    flex: 0 0 auto;
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
    position: relative;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    box-sizing: content-box;
}

.k-grid-content-locked + .k-grid-content.k-auto-scrollable,
.k-grid-footer-locked + .k-grid-content.k-auto-scrollable,
.k-grid-header-locked + .k-grid-content.k-auto-scrollable {
    display: inline-block;
}

.k-grid-content-locked .k-table,
.k-grid-footer-locked .k-table,
.k-grid-header-locked .k-table {
    border-width: 0;
}

.k-grid-content,
.k-grid-footer-wrap,
.k-grid-header-wrap {
    flex: 1 1 auto;
    display: inline-block;
    vertical-align: top;
}

.k-grid-content.k-auto-scrollable,
.k-grid-footer-wrap.k-auto-scrollable,
.k-grid-header-wrap.k-auto-scrollable {
    display: block;
}

.k-grid-header-locked > .k-grid-header-table,
.k-grid-header-wrap > .k-grid-header-table {
    margin-bottom: -1px;
}

.k-grid-header .k-table-th.k-grid-header-sticky,
.k-grid-header .k-filter-row .k-grid-header-sticky,
.k-grid .k-grid-content-sticky,
.k-grid .k-grid-row-sticky,
.k-grid .k-grid-footer-sticky {
    position: sticky;
    z-index: 2;
}

.k-grid-header .k-table-th.k-grid-header-sticky.k-edit-cell,
.k-grid-header .k-filter-row .k-grid-header-sticky.k-edit-cell,
.k-grid .k-grid-content-sticky.k-edit-cell,
.k-grid .k-grid-row-sticky.k-edit-cell,
.k-grid .k-grid-footer-sticky.k-edit-cell {
    overflow: visible;
    z-index: 3;
}

kendo-grid .k-table-row.k-grid-row-sticky {
    border: 0;
    position: static;
    z-index: auto;
}

kendo-grid .k-grid-row-sticky td,
kendo-grid .k-grid-row-sticky .k-table-td {
    border-bottom-width: 1px;
    border-top-width: 1px;
    position: sticky;
    top: inherit;
    bottom: inherit;
    z-index: 2;
}

kendo-grid .k-grid-row-sticky td.k-grid-content-sticky,
kendo-grid .k-grid-row-sticky.k-table-alt-row td.k-grid-content-sticky,
kendo-grid .k-grid-row-sticky .k-table-td.k-grid-content-sticky,
kendo-grid .k-grid-row-sticky.k-table-alt-row .k-table-td.k-grid-content-sticky {
    z-index: 3;
}

kendo-grid .k-grid-header-locked .k-table-th.k-grid-header-sticky:last-child,
kendo-grid .k-grid-content-locked .k-table-row .k-grid-content-sticky:last-child {
    border-inline-end: 0;
}

kendo-grid .k-grid-header .k-grid-column-menu,
kendo-grid .k-grid-header .k-grid-header-menu {
    z-index: 1;
}

.k-grid-content-sticky.k-grid-row-sticky {
    z-index: 3;
}

.k-grid .k-table .k-grid-header-sticky,
.k-grid .k-table .k-grid-content-sticky,
.k-grid .k-table .k-grid-footer-sticky {
    border-inline-end-width: 1px;
}

.k-grid .k-table .k-grid-header-sticky:not([style*="display: none"]) + td,
.k-grid .k-table .k-grid-header-sticky:not([style*="display: none"]) + .k-table-td,
.k-grid .k-table .k-grid-header-sticky:not([style*="display: none"]) + .k-table-th,
.k-grid .k-table .k-grid-content-sticky:not([style*="display: none"]) + td,
.k-grid .k-table .k-grid-content-sticky:not([style*="display: none"]) + .k-table-td,
.k-grid .k-table .k-grid-content-sticky:not([style*="display: none"]) + .k-table-th,
.k-grid .k-table .k-grid-footer-sticky:not([style*="display: none"]) + td,
.k-grid .k-table .k-grid-footer-sticky:not([style*="display: none"]) + .k-table-td,
.k-grid .k-table .k-grid-footer-sticky:not([style*="display: none"]) + .k-table-th {
    border-inline-start-width: 0;
}

.k-grid .k-grid-row-sticky {
    border-bottom-width: 1px;
    border-top-width: 1px;
}

.k-grid-header-sticky.k-table-th.k-grid-no-left-border.k-first {
    border-inline-start-width: 0;
}

.k-grid.k-grid-no-scrollbar .k-grid-header-wrap,
.k-grid.k-grid-no-scrollbar .k-grid-footer-wrap {
    margin: 0;
    border-width: 0;
}

.k-grid.k-grid-no-scrollbar .k-grid-header,
.k-grid.k-grid-no-scrollbar .k-grid-footer {
    padding: 0;
}

.k-grid.k-grid-no-scrollbar .k-grid-content {
    overflow-y: auto;
}

.k-grid-norecords {
    text-align: center;
}

div.k-grid-norecords {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.k-grid-norecords-template {
    box-sizing: border-box;
    margin-block: 0;
    margin-inline: auto;
    width: 20em;
    height: 4em;
    border: 1px solid;
    line-height: 4em;
}

.k-column-title {
    min-width: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex-shrink: 1;
    overflow: hidden;
}

.k-grid-sm .k-table-th {
    padding-block: 0.25rem;
    padding-inline: 0.25rem;
}

.k-grid-sm td,
.k-grid-sm .k-table-td {
    padding-block: 0.25rem;
    padding-inline: 0.25rem;
}

.k-grid-sm .k-grouping-header {
    padding-block: 0.25rem;
    padding-inline: 0.5rem;
    gap: 0.25rem;
}

.k-grid-sm .k-grouping-header::before {
    margin-inline-start: -0.25rem;
}

.k-grid-sm .k-grid-header .k-table-th > .k-link {
    margin-block: -0.25rem;
    margin-inline: -0.25rem;
    padding-block: 0.25rem;
    padding-inline: 0.25rem;
}

.k-grid-sm .k-grid-header .k-grid-filter,
.k-grid-sm .k-grid-header .k-header-column-menu,
.k-grid-sm .k-grid-header .k-grid-header-menu {
    padding: 0.25rem;
    width: calc( 1.4285714286em + 0.5rem + 2px);
    height: calc( 1.4285714286em + 0.5rem + 2px);
    bottom: calc( 0.25rem + calc( 1.5 * 1em)/2 - calc( 1.5em + 0.75rem)/2);
}

.k-grid-sm .k-table-th > .k-cell-inner {
    margin-block: -0.25rem;
    margin-inline: -0.25rem;
}

.k-grid-sm .k-table-th > .k-cell-inner > .k-link {
    padding-block: 0.25rem;
    padding-inline: 0.25rem;
}

.k-grid-sm .k-grouping-row .k-icon,
.k-grid-sm .k-grouping-row .k-svg-icon {
    margin-inline-start: calc( 8px - 0.25rem);
}

.k-grid-sm .k-grouping-dropclue {
    height: calc( calc( 1.25em + 0.25rem + 2px) + 6px);
}

.k-grid-sm .k-hierarchy-cell,
.k-grid-sm .k-drag-cell {
    padding: 0;
}

.k-grid-sm .k-hierarchy-cell > .k-icon,
.k-grid-sm .k-hierarchy-cell > .k-svg-icon,
.k-grid-sm .k-drag-cell > .k-icon,
.k-grid-sm .k-drag-cell > .k-svg-icon {
    padding-block: 0.25rem;
    padding-inline: 0;
}

.k-grid-sm .k-edit-cell,
.k-grid-sm .k-command-cell,
.k-grid-sm .k-grid-edit-row td,
.k-grid-sm .k-grid-edit-row .k-table-td {
    padding-block: 0.25rem;
    padding-inline: 0.25rem;
}

.k-grid-sm .k-filter-row td,
.k-grid-sm .k-filter-row .k-table-td,
.k-grid-sm .k-filter-row .k-table-th {
    padding-block: 0.375rem;
    padding-inline: 0.375rem;
}

.k-grid-sm .k-filtercell > span,
.k-grid-sm .k-filtercell .k-filtercell-wrapper {
    gap: 0.125rem;
}

.k-grid-sm .k-selection-aggregates {
    padding-block: 0.25rem;
    padding-inline: 0.25rem;
}

.k-grid-sm .k-resizer-wrap {
    display: block;
    width: 100%;
    padding-block-start: calc( 0.25rem - 0.125rem);
    padding-block-end: 0.25rem;
    position: absolute;
    background: none;
    cursor: row-resize;
}

.k-grid-md .k-table-th {
    padding-block: 0.5rem;
    padding-inline: 0.5rem;
}

.k-grid-md td,
.k-grid-md .k-table-td {
    padding-block: 0.5rem;
    padding-inline: 0.5rem;
}

.k-grid-md .k-grouping-header {
    padding-block: 0.5rem;
    padding-inline: 0.5rem;
    gap: 0.5rem;
}

.k-grid-md .k-grouping-header::before {
    margin-inline-start: -0.5rem;
}

.k-grid-md .k-grid-header .k-table-th > .k-link {
    margin-block: -0.5rem;
    margin-inline: -0.5rem;
    padding-block: 0.5rem;
    padding-inline: 0.5rem;
}

.k-grid-md .k-grid-header .k-grid-filter,
.k-grid-md .k-grid-header .k-header-column-menu,
.k-grid-md .k-grid-header .k-grid-header-menu {
    padding: 0.375rem;
    width: calc( 1.5em + 0.75rem + 2px);
    height: calc( 1.5em + 0.75rem + 2px);
    bottom: calc( 0.5rem + calc( 1.5 * 1em)/2 - calc( 1.5em + 0.75rem)/2);
}

.k-grid-md .k-table-th > .k-cell-inner {
    margin-block: -0.5rem;
    margin-inline: -0.5rem;
}

.k-grid-md .k-table-th > .k-cell-inner > .k-link {
    padding-block: 0.5rem;
    padding-inline: 0.5rem;
}

.k-grid-md .k-grouping-row .k-icon,
.k-grid-md .k-grouping-row .k-svg-icon {
    margin-inline-start: calc( 8px - 0.5rem);
}

.k-grid-md .k-grouping-dropclue {
    height: calc( calc( 1.25em + 0.5rem + 2px) + 6px);
}

.k-grid-md .k-hierarchy-cell,
.k-grid-md .k-drag-cell {
    padding: 0;
}

.k-grid-md .k-hierarchy-cell > .k-icon,
.k-grid-md .k-hierarchy-cell > .k-svg-icon,
.k-grid-md .k-drag-cell > .k-icon,
.k-grid-md .k-drag-cell > .k-svg-icon {
    padding-block: 0.5rem;
    padding-inline: 0;
}

.k-grid-md .k-edit-cell,
.k-grid-md .k-command-cell,
.k-grid-md .k-grid-edit-row td,
.k-grid-md .k-grid-edit-row .k-table-td {
    padding-block: 5px;
    padding-inline: 0.5rem;
}

.k-grid-md .k-filter-row td,
.k-grid-md .k-filter-row .k-table-td,
.k-grid-md .k-filter-row .k-table-th {
    padding-block: 0.5rem;
    padding-inline: 0.5rem;
}

.k-grid-md .k-filtercell > span,
.k-grid-md .k-filtercell .k-filtercell-wrapper {
    gap: 0.25rem;
}

.k-grid-md .k-selection-aggregates {
    padding-block: 0.5rem;
    padding-inline: 0.5rem;
}

.k-grid-md .k-resizer-wrap {
    display: block;
    width: 100%;
    padding-block-start: calc( 5px - 0.125rem);
    padding-block-end: 5px;
    position: absolute;
    background: none;
    cursor: row-resize;
}

.k-loading-pdf-mask {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

.k-loading-pdf-mask > .k-i-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 64px;
}

.k-loading-pdf-mask .k-loading-pdf-progress {
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.k-pdf-export .k-loading-pdf-mask {
    display: none;
}

.k-grid-pdf-export-element {
    position: absolute;
    left: -10000px;
    top: -10000px;
}

.k-grid-pdf-export-element .k-filter-row {
    display: none;
}

.k-pdf-export-shadow .k-grid {
    float: left;
    width: auto !important;
}

.k-pdf-export-shadow .k-grid,
.k-pdf-export-shadow .k-grid-content,
.k-pdf-export-shadow .k-grid-content-locked {
    height: auto !important;
    overflow: visible;
}

.k-pdf-export-shadow .k-grid-header-locked + .k-grid-header-wrap,
.k-pdf-export-shadow .k-grid-header-locked + .k-grid-content,
.k-pdf-export-shadow .k-grid-header-locked + .k-grid-footer-wrap {
    width: auto !important;
}

.k-pdf-export-shadow .k-grid-header,
.k-pdf-export-shadow .k-grid[data-role="grid"] .k-grid-footer {
    padding: 0 !important;
}

.k-filter-menu-popup {
    width: 250px;
}

.k-filter-menu {
    box-sizing: border-box;
}

.k-filter-menu-container {
    padding: 0.5rem;
    box-sizing: border-box;
    display: flex;
    flex-flow: column nowrap;
    align-items: stretch;
    gap: 0.5rem;
}

.k-filter-menu-container .k-filter-and {
    width: min-content;
    align-self: start;
}

.k-filter-menu-container .k-actions, .k-filter-menu-container .k-edit-buttons,
.k-filter-menu-container .k-action-buttons,
.k-filter-menu-container .k-columnmenu-actions, .k-filter-menu-container .k-form-buttons {
    margin: 0;
    padding: 0;
}

.k-filter-menu-container kendo-numeric-filter-menu,
.k-filter-menu-container kendo-grid-string-filter-menu,
.k-filter-menu-container kendo-grid-date-filter-menu,
.k-filter-menu-container kendo-grid-numeric-filter-menu,
.k-filter-menu-container kendo-grid-filter-menu-input-wrapper,
.k-filter-menu-container kendo-treelist-string-filter-menu,
.k-filter-menu-container kendo-treelist-date-filter-menu,
.k-filter-menu-container kendo-treelist-numeric-filter-menu,
.k-filter-menu-container kendo-treelist-filter-menu-input-wrapper {
    display: flex;
    flex-flow: column nowrap;
    align-items: stretch;
    gap: 0.5rem;
}

.k-filter-menu.k-popup .k-filter-menu-container,
.k-grid-filter-popup.k-popup .k-filter-menu-container {
    width: 250px;
}

.k-popup .k-multicheck-wrap {
    margin: 0;
    padding: 0;
    max-height: 300px;
    white-space: nowrap;
    overflow: auto;
    list-style: none;
}

.k-popup .k-multicheck-wrap .k-item,
.k-popup .k-multicheck-wrap .k-check-all-wrap {
    padding-block: 0.25rem;
    padding-inline: 1rem;
    display: flex;
    flex-flow: row nowrap;
}

.k-filter-selected-items {
    font-weight: bold;
    line-height: normal;
    white-space: nowrap;
}

.k-autofitting {
    width: auto !important;
    table-layout: auto !important;
}

.k-autofitting .k-table-th,
.k-autofitting td,
.k-autofitting .k-table-td {
    white-space: nowrap !important;
}

.k-autofitting .k-detail-row {
    display: none !important;
}

.k-column-menu-popup,
.k-grid-columnmenu-popup {
    width: 250px;
    box-sizing: border-box;
}

.k-column-menu-popup.k-popup,
.k-grid-columnmenu-popup.k-popup {
    max-width: 100%;
}

.k-column-menu-popup .k-actions, .k-column-menu-popup .k-edit-buttons,
.k-column-menu-popup .k-action-buttons,
.k-column-menu-popup .k-columnmenu-actions, .k-column-menu-popup .k-form-buttons,
.k-grid-columnmenu-popup .k-actions,
.k-grid-columnmenu-popup .k-edit-buttons,
.k-grid-columnmenu-popup .k-action-buttons,
.k-grid-columnmenu-popup .k-columnmenu-actions,
.k-grid-columnmenu-popup .k-form-buttons {
    margin: 0;
}

.k-column-menu {
    box-sizing: border-box;
}

.k-column-menu .k-menu:not(.k-context-menu) {
    font-weight: 400;
}

.k-column-menu .k-expander {
    border: 0;
    background: inherit;
}

.k-column-menu .k-expander .k-columnmenu-item {
    display: flex;
    align-items: center;
}

.k-column-menu-tabbed {
    border-radius: 0.25rem 0.25rem 0 0;
}

.k-column-menu-tabbed .k-tabstrip-items {
    margin: -1px -1px 0;
}

.k-column-menu-tabbed .k-tabstrip-items .k-item {
    flex: 1;
}

.k-column-menu-tabbed .k-tabstrip-items .k-link {
    justify-content: center;
}

.k-column-menu-tabbed .k-tabstrip-content {
    padding-inline: 0;
    padding-block: 0.5rem;
    border-width: 0;
}

.k-column-list {
    padding: 0;
    margin: 0;
    list-style: none;
    max-height: 200px;
    overflow-x: hidden;
    overflow-y: auto;
}

.k-column-chooser-title,
.k-column-list-item {
    padding-block: 0.25rem;
    padding-inline: 1rem;
}

.k-column-list-item {
    margin: 0;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    position: relative;
}

.k-column-list-item .k-checkbox-label {
    margin: 0;
}

.k-columns-items-wrap {
    padding-block: 0.5rem;
    padding-inline: 0;
}

.k-columnmenu-item {
    padding-block: 0.25rem;
    padding-inline: 1rem;
    outline: 0;
    cursor: pointer;
}

.k-columnmenu-item > .k-icon,
.k-columnmenu-item > .k-svg-icon {
    margin-inline-end: 0.5rem;
}

.k-columnmenu-item-wrapper + .k-columnmenu-item-wrapper {
    border-top: 1px solid;
    border-top-color: #dee2e6;
}

.k-columnmenu-item-content {
    overflow: hidden;
}

.k-column-menu-group-header {
    padding-block: 0.25rem;
    padding-inline: 1rem;
    display: flex;
    flex: 0 0 auto;
    position: relative;
    user-select: none;
}

.k-column-menu-group-header-text {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: bold;
    text-transform: uppercase;
    flex: 1 1 auto;
}

.k-grid {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-grid .k-table {
    background-color: inherit;
}

.k-grid td,
.k-grid .k-table-td,
.k-grid .k-grid-content,
.k-grid .k-grid-header-locked,
.k-grid .k-grid-content-locked {
    border-color: #dee2e6;
}

.k-grid .k-table-alt-row {
    background-color: rgba(0, 0, 0, 0.04);
}

.k-grid tbody > tr:not(.k-detail-row):hover,
.k-grid .k-table-tbody > .k-table-row:not(.k-detail-row).k-hover {
    background-color: rgba(0, 0, 0, 0.08);
}

.k-grid .k-table-th.k-selected,
.k-grid td.k-selected,
.k-grid .k-table-td.k-selected,
.k-grid .k-table-row.k-selected > td,
.k-grid .k-table-row.k-selected > .k-table-td {
    color: #212529;
    background-color: rgba(13, 110, 253, 0.25);
}

.k-grid .k-table-th:focus, .k-grid .k-table-th.k-focus,
.k-grid td:focus,
.k-grid td.k-focus,
.k-grid .k-table-td:focus,
.k-grid .k-table-td.k-focus,
.k-grid .k-master-row > td:focus,
.k-grid .k-master-row > td.k-focus,
.k-grid .k-grouping-row > td:focus,
.k-grid .k-grouping-row > td.k-focus,
.k-grid .k-detail-row > td:focus,
.k-grid .k-detail-row > td.k-focus,
.k-grid .k-group-footer > td:focus,
.k-grid .k-group-footer > td.k-focus,
.k-grid .k-master-row > .k-table-td:focus,
.k-grid .k-master-row > .k-table-td.k-focus,
.k-grid .k-grouping-row > .k-table-td:focus,
.k-grid .k-grouping-row > .k-table-td.k-focus,
.k-grid .k-detail-row > .k-table-td:focus,
.k-grid .k-detail-row > .k-table-td.k-focus,
.k-grid .k-group-footer > .k-table-td:focus,
.k-grid .k-group-footer > .k-table-td.k-focus,
.k-grid .k-grid-pager:focus,
.k-grid .k-grid-pager.k-focus {
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.08);
}

.k-grid col.k-sorted,
.k-grid .k-table-th.k-sorted {
    background-color: rgba(0, 0, 0, 0.02);
}

.k-grid .k-grid-header-locked,
.k-grid .k-grid-content-locked,
.k-grid .k-grid-header-locked .k-header,
.k-grid .k-grid-content-locked td,
.k-grid .k-grid-content-locked .k-table-td {
    border-color: rgba(33, 37, 41, 0.5);
}

.k-grid .k-grid-header-locked .k-header {
    border-bottom-color: #dee2e6;
}

.k-grid .k-grid-content-locked .k-group-footer td,
.k-grid .k-grid-content-locked .k-group-footer .k-table-td,
.k-grid .k-grid-content-locked .k-group-cell {
    border-color: #dee2e6;
}

.k-grid .k-grid-content-locked .k-grouping-row + .k-table-row td,
.k-grid .k-grid-content-locked .k-grouping-row + .k-table-row .k-table-td {
    border-top-color: #dee2e6;
}

.k-grid .k-grid-content-locked .k-selected td,
.k-grid .k-grid-content-locked .k-selected .k-table-td {
    background-color: #c3dbff;
}

.k-grid .k-grid-content-locked .k-selected.k-table-alt-row td,
.k-grid .k-grid-content-locked .k-selected.k-table-alt-row .k-table-td {
    background-color: #bdd4f7;
}

.k-grid .k-grid-content-locked .k-selected:hover td,
.k-grid .k-grid-content-locked .k-selected.k-hover td,
.k-grid .k-grid-content-locked .k-selected:hover .k-table-td,
.k-grid .k-grid-content-locked .k-selected.k-hover .k-table-td {
    background-color: #b8cff1;
}

.k-grid-toolbar {
    border-color: inherit;
}

.k-grouping-header {
    border-color: #dee2e6;
    color: #212529;
    background-color: #f8f9fa;
}

.k-grid-header {
    border-color: #dee2e6;
    color: #212529;
    background-color: #f8f9fa;
}

.k-grid-header .k-sort-icon,
.k-grid-header .k-sort-order {
    color: #0d6efd;
}

.k-grid-header .k-grid-filter:focus, .k-grid-header .k-grid-filter.k-focus,
.k-grid-header .k-header-column-menu:focus,
.k-grid-header .k-header-column-menu.k-focus,
.k-grid-header .k-grid-header-menu:focus,
.k-grid-header .k-grid-header-menu.k-focus,
.k-grid-header .k-hierarchy-cell .k-icon:focus,
.k-grid-header .k-hierarchy-cell .k-icon.k-focus,
.k-grid-header .k-hierarchy-cell .k-svg-icon:focus,
.k-grid-header .k-hierarchy-cell .k-svg-icon.k-focus {
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.k-grid-header .k-grid-filter.k-active,
.k-grid-header .k-header-column-menu.k-active,
.k-grid-header .k-grid-header-menu.k-active,
.k-grid-header .k-hierarchy-cell .k-icon.k-active,
.k-grid-header .k-hierarchy-cell .k-svg-icon.k-active {
    color: #ffffff;
    background-color: #0d6efd;
}

.k-grid-header .k-grid-header-sticky,
.k-grid-header .k-grid-header-sticky.k-sorted {
    color: #212529;
    background-color: #f8f9fa;
    border-right-color: rgba(33, 37, 41, 0.5);
    border-left-color: rgba(33, 37, 41, 0.5);
}

.k-grid-footer .k-grid-footer-sticky {
    background-color: #f8f9fa;
}

.k-selection-aggregates {
    border-color: #dee2e6;
    color: #212529;
    background-color: #f8f9fa;
}

.k-master-row .k-grid-content-sticky {
    border-color: rgba(33, 37, 41, 0.5);
    color: #212529;
    background-color: #ffffff;
    border-top-color: #dee2e6;
}

.k-master-row .k-grid-row-sticky {
    border-top-color: rgba(33, 37, 41, 0.5);
    border-bottom-color: rgba(33, 37, 41, 0.5);
    background-color: #ffffff;
}

.k-master-row.k-table-alt-row .k-grid-content-sticky,
.k-master-row.k-table-alt-row .k-grid-row-sticky {
    background-color: whitesmoke;
}

.k-master-row.k-selected .k-grid-content-sticky,
.k-master-row.k-selected .k-grid-row-sticky,
.k-master-row td.k-grid-content-sticky.k-selected,
.k-master-row .k-table-td.k-grid-content-sticky.k-selected {
    background-color: #c3dbff;
}

.k-master-row.k-selected.k-table-alt-row .k-grid-content-sticky,
.k-master-row.k-selected.k-table-alt-row .k-grid-row-sticky,
.k-master-row.k-table-alt-row td.k-grid-content-sticky.k-selected,
.k-master-row.k-table-alt-row .k-table-td.k-grid-content-sticky.k-selected {
    background-color: #bdd4f7;
}

.k-master-row:hover .k-grid-content-sticky,
.k-master-row.k-hover .k-grid-content-sticky,
.k-master-row:hover .k-grid-row-sticky,
.k-master-row.k-hover .k-grid-row-sticky {
    background-color: #ebebeb;
}

.k-master-row.k-selected:hover .k-grid-content-sticky,
.k-master-row.k-selected.k-hover .k-grid-content-sticky,
.k-master-row.k-selected:hover .k-grid-row-sticky,
.k-master-row.k-selected.k-hover .k-grid-row-sticky,
.k-master-row:hover td.k-grid-content-sticky.k-selected,
.k-master-row.k-hover td.k-grid-content-sticky.k-selected,
.k-master-row:hover .k-table-td.k-grid-content-sticky.k-selected,
.k-master-row.k-hover .k-table-td.k-grid-content-sticky.k-selected {
    background-color: #b8cff1;
}

kendo-grid.k-grid .k-grid-content-sticky {
    border-top-color: #dee2e6;
    border-left-color: rgba(33, 37, 41, 0.5);
    border-right-color: rgba(33, 37, 41, 0.5);
    background-color: #ffffff;
}

kendo-grid.k-grid .k-grid-content-sticky:hover, kendo-grid.k-grid .k-grid-content-sticky.k-hover {
    background-color: #ebebeb;
}

kendo-grid.k-grid .k-grid-row-sticky td,
kendo-grid.k-grid .k-grid-row-sticky .k-table-td {
    border-top-color: rgba(33, 37, 41, 0.5);
    border-bottom-color: rgba(33, 37, 41, 0.5);
    background-color: #ffffff;
}

kendo-grid.k-grid .k-grid-row-sticky td:hover td,
kendo-grid.k-grid .k-grid-row-sticky td.k-hover td,
kendo-grid.k-grid .k-grid-row-sticky td:hover .k-table-td,
kendo-grid.k-grid .k-grid-row-sticky td.k-hover .k-table-td,
kendo-grid.k-grid .k-grid-row-sticky .k-table-td:hover td,
kendo-grid.k-grid .k-grid-row-sticky .k-table-td.k-hover td,
kendo-grid.k-grid .k-grid-row-sticky .k-table-td:hover .k-table-td,
kendo-grid.k-grid .k-grid-row-sticky .k-table-td.k-hover .k-table-td {
    background-color: #ebebeb;
}

kendo-grid.k-grid .k-table-alt-row .k-grid-content-sticky,
kendo-grid.k-grid .k-grid-row-sticky.k-table-alt-row td,
kendo-grid.k-grid .k-grid-row-sticky.k-table-alt-row .k-table-td {
    background-color: whitesmoke;
}

kendo-grid.k-grid .k-table-row.k-selected .k-grid-content-sticky,
kendo-grid.k-grid .k-selected.k-grid-row-sticky td,
kendo-grid.k-grid .k-grid-row-sticky td.k-selected,
kendo-grid.k-grid .k-selected.k-grid-row-sticky .k-table-td,
kendo-grid.k-grid .k-grid-row-sticky .k-table-td.k-selected,
kendo-grid.k-grid .k-selected.k-grid-content-sticky {
    background-color: #c3dbff;
}

kendo-grid.k-grid .k-table-row.k-selected.k-table-alt-row .k-grid-content-sticky,
kendo-grid.k-grid .k-selected.k-table-alt-row.k-grid-row-sticky td,
kendo-grid.k-grid .k-selected.k-table-alt-row.k-grid-row-sticky .k-table-td,
kendo-grid.k-grid .k-table-alt-row .k-selected.k-grid-content-sticky {
    background-color: #bdd4f7;
}

kendo-grid.k-grid .k-table-row:hover .k-grid-content-sticky,
kendo-grid.k-grid .k-table-row.k-hover .k-grid-content-sticky,
kendo-grid.k-grid .k-grid-row-sticky:hover td,
kendo-grid.k-grid .k-grid-row-sticky.k-hover td,
kendo-grid.k-grid .k-grid-row-sticky.k-table-alt-row:hover td,
kendo-grid.k-grid .k-grid-row-sticky.k-table-alt-row.k-hover td,
kendo-grid.k-grid .k-grid-row-sticky:hover .k-table-td,
kendo-grid.k-grid .k-grid-row-sticky.k-hover .k-table-td,
kendo-grid.k-grid .k-grid-row-sticky.k-table-alt-row:hover .k-table-td,
kendo-grid.k-grid .k-grid-row-sticky.k-table-alt-row.k-hover .k-table-td,
kendo-grid.k-grid .k-table-alt-row:hover .k-grid-content-sticky,
kendo-grid.k-grid .k-table-alt-row.k-hover .k-grid-content-sticky {
    background-color: #ebebeb;
}

kendo-grid.k-grid .k-table-row.k-selected:hover .k-grid-content-sticky,
kendo-grid.k-grid .k-table-row.k-selected.k-hover .k-grid-content-sticky,
kendo-grid.k-grid .k-selected.k-grid-row-sticky:hover td,
kendo-grid.k-grid .k-selected.k-grid-row-sticky.k-hover td,
kendo-grid.k-grid .k-selected.k-table-alt-row.k-grid-row-sticky:hover td,
kendo-grid.k-grid .k-selected.k-table-alt-row.k-grid-row-sticky.k-hover td,
kendo-grid.k-grid .k-selected.k-grid-row-sticky:hover .k-table-td,
kendo-grid.k-grid .k-selected.k-grid-row-sticky.k-hover .k-table-td,
kendo-grid.k-grid .k-selected.k-table-alt-row.k-grid-row-sticky:hover .k-table-td,
kendo-grid.k-grid .k-selected.k-table-alt-row.k-grid-row-sticky.k-hover .k-table-td,
kendo-grid.k-grid .k-table-row.k-selected.k-table-alt-row:hover .k-grid-content-sticky,
kendo-grid.k-grid .k-table-row.k-selected.k-table-alt-row.k-hover .k-grid-content-sticky,
kendo-grid.k-grid .k-grid-row-sticky:hover td.k-selected,
kendo-grid.k-grid .k-grid-row-sticky.k-hover td.k-selected,
kendo-grid.k-grid .k-grid-row-sticky:hover .k-table-td.k-selected,
kendo-grid.k-grid .k-grid-row-sticky.k-hover .k-table-td.k-selected,
kendo-grid.k-grid .k-table-row:hover .k-grid-content-sticky.k-selected,
kendo-grid.k-grid .k-table-row.k-hover .k-grid-content-sticky.k-selected {
    background-color: #b8cff1;
}

.k-grouping-row .k-grid-content-sticky {
    background-color: #f8f9fa;
}

.k-grouping-row:hover .k-grid-content-sticky,
.k-grouping-row.k-hover .k-grid-content-sticky {
    background-color: #ebebeb;
}

.k-group-footer td,
.k-group-footer .k-table-td,
.k-group-footer .k-grid-footer-sticky {
    background-color: #f8f9fa;
}

.k-group-footer:hover .k-grid-footer-sticky,
.k-group-footer.k-hover .k-grid-footer-sticky {
    background-color: #f8f9fa;
}

.k-grid-footer {
    border-color: #dee2e6;
    color: #212529;
    background-color: #f8f9fa;
}

.k-grid-footer .k-grid-footer-locked {
    border-color: inherit;
}

.k-grid-footer .k-grid-footer-sticky {
    border-color: rgba(33, 37, 41, 0.5);
    background-color: #f8f9fa;
}

.k-grouping-row,
.k-group-cell {
    border-color: #dee2e6;
    color: #212529;
    background-color: #f8f9fa;
}

.k-column-list-item:hover,
.k-columnmenu-item:hover {
    color: #16181b;
    background-color: #e9ecef;
}

.k-columnmenu-item:focus,
.k-columnmenu-item.k-focus {
    box-shadow: inset 0 0 0 3px rgba(33, 37, 41, 0.15);
}

.k-column-list-wrapper {
    border-color: inherit;
}

.k-columnmenu-item.k-selected {
    color: #ffffff;
    background-color: #0d6efd;
}

.k-column-menu .k-menu:not(.k-context-menu) {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-column-menu .k-menu:not(.k-context-menu) .k-item:hover, .k-column-menu .k-menu:not(.k-context-menu) .k-item.k-hover {
    color: #16181b;
    background-color: #e9ecef;
}

.k-column-menu .k-menu:not(.k-context-menu) .k-item.k-selected {
    color: #ffffff;
    background-color: #0d6efd;
}

.k-column-menu .k-menu:not(.k-context-menu) .k-item:focus, .k-column-menu .k-menu:not(.k-context-menu) .k-item.k-focus {
    box-shadow: inset 0 0 0 3px rgba(33, 37, 41, 0.15);
}

.k-column-menu-tabbed {
    background-color: #f8f9fa;
}

.k-column-menu-group-header-text {
    border-color: #dee2e6;
    color: #212529;
}

.k-check-all-wrap {
    border-color: #dee2e6;
}

.k-grid-norecords-template {
    background-color: #ffffff;
    border-color: #dee2e6;
}

.k-resizer-wrap.k-hover .k-row-resizer {
    background-color: rgba(0, 0, 0, 0.12);
}

.k-resizer-wrap.k-active .k-row-resizer {
    background-color: #0d6efd;
}

.k-listview {
    margin: 0;
    padding: 0;
    border-width: 0;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    line-height: 1.5;
    flex-flow: column nowrap;
    position: relative;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

.k-listview-bordered {
    border-width: 1px;
}

.k-listview-header {
    border-width: 0;
    border-style: solid;
    border-color: inherit;
}

.k-listview-bordered > .k-listview-header {
    border-bottom-width: 1px;
}

.k-listview-content {
    margin: 0;
    padding: 0;
    outline: 0;
    flex-grow: 1;
    position: relative;
    overflow: auto;
}

.k-listview-content::after {
    height: 0;
    clear: both;
    display: block;
}

.k-listview-content.k-d-flex::after, .k-listview-content.k-d-flex-row::after, .k-listview-content.k-d-flex-col::after,
.k-listview-content.k-d-grid::after {
    display: none;
}

.k-listview-content-padding-rectangle {
    padding-block: 0.25rem;
    padding-inline: 0.25rem;
}

.k-listview-content-padding-square {
    padding: 0.25rem;
}

.k-listview-item {
    padding: 0;
    border-width: 0;
    outline: 0;
    border-style: solid;
    box-sizing: border-box;
    flex-shrink: 0;
}

.k-listview-item-padding-rectangle {
    padding-block: 0.25rem;
    padding-inline: 0.25rem;
}

.k-listview-item-padding-rectangle .k-listview-link {
    margin-block: -0.25rem;
    margin-inline: -0.25rem;
    padding-block: 0.25rem;
    padding-inline: 0.25rem;
}

.k-listview-item-padding-square {
    padding: 0.25rem;
}

.k-listview-item-padding-square .k-listview-link {
    margin: -0.25rem;
    padding: 0.25rem;
}

.k-listview-footer {
    border-width: 0;
    border-style: solid;
    border-color: inherit;
}

.k-listview-bordered > .k-listview-footer {
    border-top-width: 1px;
}

.k-listview-pager {
    border-width: 0;
    border-color: inherit;
}

.k-listview-bordered > .k-listview-pager-top {
    border-block-end-width: var(--kendo-listview-border-width, 1px);
}

.k-listview-bordered > .k-listview-pager-bottom {
    border-block-start-width: var(--kendo-listview-border-width, 1px);
}

.k-listview-borders-all .k-listview-item {
    border-width: 1px;
}

.k-listview-borders-horizontal .k-listview-item {
    border-top-width: 1px;
}

.k-listview-borders-horizontal .k-listview-item:first-child {
    border-top-width: 0;
}

.k-listview-borders-vertical .k-listview-item {
    border-left-width: 1px;
}

.k-listview-borders-vertical .k-listview-item:first-child {
    border-left-width: 0;
}

.k-listview {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-listview-content > .k-focus {
    box-shadow: inset 0 0 0 3px rgba(33, 37, 41, 0.15);
}

.k-listview-content > .k-selected {
    background-color: rgba(13, 110, 253, 0.25);
}

.k-listview-item {
    border-color: #dee2e6;
}

.k-spreadsheet {
    width: 800px;
    height: 600px;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    cursor: default;
    position: relative;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-spreadsheet .k-vertical-align-center {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.k-spreadsheet .k-vertical-align-bottom {
    position: relative;
    top: 100%;
    transform: translateY(-100%);
}

.k-spreadsheet .k-tabstrip-wrapper {
    border-width: 0 0 1px;
    border-style: solid;
    border-color: inherit;
    position: relative;
}

.k-spreadsheet-quick-access-toolbar {
    padding: 0.5rem;
    display: inline-flex;
    flex-direction: row;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
}

.k-spreadsheet-tabstrip {
    padding-top: 0.5rem;
    position: relative;
    z-index: 1;
}

.k-spreadsheet-tabstrip .k-tabstrip-items-wrapper {
    margin: 0;
}

.k-spreadsheet-tabstrip .k-loading {
    display: none;
}

.k-spreadsheet-tabstrip .k-content,
.k-spreadsheet-tabstrip .k-tabstrip-content {
    border-radius: 0;
    padding: 0;
    border-width: 0;
    overflow: hidden;
}

.k-spreadsheet-toolbar {
    border-width: 0;
}

.k-spreadsheet-toolbar [data-tool="backgroundColor"],
.k-spreadsheet-toolbar [data-tool="textColor"],
.k-spreadsheet-toolbar [data-tool="borders"],
.k-spreadsheet-toolbar [data-tool="alignment"],
.k-spreadsheet-toolbar [data-tool="merge"],
.k-spreadsheet-toolbar [data-tool="freeze"] {
    width: auto;
    min-width: calc( 1.5 * 1em);
}

.k-spreadsheet-toolbar .k-color-picker, .k-spreadsheet-toolbar .k-colorpicker {
    width: min-content;
}

.k-spreadsheet-action-bar {
    border-width: 0 0 1px;
    border-style: solid;
    border-color: inherit;
    font-size: 12px;
    font-family: Arial, Verdana, sans-serif;
    position: relative;
    display: flex;
    flex-direction: row;
}

.k-spreadsheet-name-editor {
    width: 10em;
    border-width: 0 1px 0 0;
    border-style: solid;
    border-color: inherit;
}

.k-spreadsheet-formula-bar {
    border-color: inherit;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 1;
}

.k-spreadsheet-formula-bar > .k-i-formula-fx {
    padding-block: 0;
    padding-inline: 0.5rem;
    box-sizing: content-box;
    border-width: 0 1px 0 0;
    border-style: solid;
    border-color: inherit;
    flex-shrink: 0;
}

.k-spreadsheet-formula-bar .k-tooltip,
.k-spreadsheet-formula-bar .k-group-header,
.k-spreadsheet-formula-bar .k-list-scroller {
    display: none;
}

.k-spreadsheet-formula-bar .k-spreadsheet-formula-input {
    padding-block: 0.375rem;
    padding-inline: 0.75rem;
    line-height: 1.5;
}

.k-spreadsheet-formula-bar .k-spreadsheet-formula-input.k-spreadsheet-array-formula::before {
    content: "{";
    font-weight: 700;
}

.k-spreadsheet-formula-bar .k-spreadsheet-formula-input.k-spreadsheet-array-formula::after {
    content: "}";
    font-weight: 700;
}

.k-spreadsheet-formula-input {
    outline: 0;
    white-space: pre;
    flex: 1;
    box-sizing: border-box;
}

.k-spreadsheet-formula-input > .k-syntax-func.k-syntax-at-point,
.k-spreadsheet-formula-input > .k-syntax-bool.k-syntax-at-point,
.k-spreadsheet-formula-input > .k-syntax-ref.k-syntax-at-point,
.k-spreadsheet-formula-input > .k-syntax-str.k-syntax-at-point,
.k-spreadsheet-formula-input > .k-syntax-num.k-syntax-at-point {
    text-decoration: underline;
}

.k-spreadsheet-formula-input > .k-series-a,
.k-spreadsheet-formula-input > .k-series-b,
.k-spreadsheet-formula-input > .k-series-c,
.k-spreadsheet-formula-input > .k-series-d {
    background-color: transparent;
}

.k-spreadsheet-formula-list {
    min-width: 100px;
}

.k-spreadsheet-formula-list .k-item {
    padding-block: 0.25rem;
    padding-inline: 1rem;
}

.k-syntax-func,
.k-syntax-startexp {
    font-weight: bold;
}

.k-spreadsheet-cell-editor {
    padding-block: 0;
    padding-inline: 3px;
    line-height: 20px;
    display: none;
    overflow: hidden;
    position: absolute;
    z-index: 2000;
}

.k-spreadsheet-sheets-bar {
    padding: 0 0 0.25rem 0.25rem;
    border-width: 1px 0 0;
    border-style: solid;
    border-color: inherit;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    position: relative;
}

.k-spreadsheet-sheets-bar-add {
    align-self: center;
}

.k-spreadsheet-sheets-bar-add:not(:hover) {
    border-color: transparent;
    color: inherit;
    background: none;
}

.k-spreadsheet-sheets-items {
    flex: 1;
    overflow: hidden;
}

.k-spreadsheet-sheets-items .k-tabstrip-items-wrapper {
    margin: 0;
    border-width: 0;
}

.k-spreadsheet-sheets-items .k-item .k-link {
    display: inline-block;
}

.k-spreadsheet-sheets-items .k-item .k-spreadsheet-sheets-remove {
    margin-right: 0.5rem;
    margin-left: -0.5rem;
    padding: 0;
    line-height: 1;
    display: inline-flex;
    flex-direction: row;
    vertical-align: middle;
    align-self: center;
}

.k-spreadsheet-view {
    height: auto !important;
    border-color: inherit;
    font-size: 12px;
    font-family: Arial, Verdana, Sans-serif;
    flex: 1;
    position: relative;
    overflow: hidden;
}

.k-spreadsheet-view .k-disabled {
    pointer-events: auto;
}

.k-spreadsheet-fixed-container {
    width: 100%;
    height: 100%;
    border-color: inherit;
    box-sizing: border-box;
    user-select: none;
    position: absolute;
    z-index: 2;
    overflow: hidden;
}

.k-spreadsheet-overflow {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    border-color: inherit;
}

.k-spreadsheet-pane {
    padding: 0 1px 0 0;
    border-width: 2px 0 0 2px;
    border-style: solid;
    border-color: inherit;
    box-sizing: border-box;
    position: absolute;
    overflow: hidden;
}

.k-spreadsheet-pane.k-top {
    border-top-width: 0;
}

.k-spreadsheet-pane.k-left {
    border-left-width: 0;
}

.k-spreadsheet-top-corner {
    border-width: 0 1px 1px 0;
    border-style: solid;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10000;
}

.k-spreadsheet-top-corner::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    right: 0;
    border: 6px solid transparent;
    border-right-color: inherit;
    border-bottom-color: inherit;
}

.k-spreadsheet-scroller {
    width: 100%;
    height: 100%;
    overflow: scroll;
    position: absolute;
    z-index: 1;
}

@media (hover: none), (pointer: coarse) {
    .k-spreadsheet-scroller {
        z-index: 3;
    }
}

.k-spreadsheet-haxis,
.k-spreadsheet-vaxis {
    border: 0 solid;
    border-color: inherit;
    position: absolute;
}

.k-spreadsheet-haxis {
    border-width: 1px 0 0;
    left: 0;
}

.k-spreadsheet-vaxis {
    border-width: 0 0 0 1px;
    top: 0;
}

.k-spreadsheet-row-header,
.k-spreadsheet-column-header {
    text-align: center;
    z-index: 100;
}

.k-spreadsheet-row-header > div,
.k-spreadsheet-column-header > div {
    position: relative;
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: inherit;
}

.k-spreadsheet-row-header > div::after,
.k-spreadsheet-column-header > div::after {
    content: "";
    border-width: 0;
    border-style: solid;
    border-color: inherit;
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.k-spreadsheet-row-header {
    position: relative;
}

.k-spreadsheet-column-header {
    position: absolute;
}

.k-spreadsheet-row-header > div {
    border-top-width: 1px;
}

.k-spreadsheet-row-header > div:first-child {
    border-top-width: 0;
}

.k-spreadsheet-row-header > .k-selection-partial::after,
.k-spreadsheet-row-header > .k-selection-full::after {
    border-right-width: 2px;
    display: block;
}

.k-spreadsheet-column-header > div {
    border-left-width: 1px;
}

.k-spreadsheet-column-header > div:first-child {
    border-left-width: 0;
}

.k-spreadsheet-column-header > .k-selection-partial::after,
.k-spreadsheet-column-header > .k-selection-full::after {
    border-bottom-width: 2px;
    display: block;
}

.k-spreadsheet-data {
    border-color: inherit;
    cursor: cell;
    position: relative;
}

.k-spreadsheet-cell {
    padding: 1px;
    box-sizing: border-box;
    position: absolute;
    line-height: normal;
    white-space: pre;
    overflow: hidden;
}

.k-spreadsheet-merged-cells-wrapers {
    position: relative;
}

.k-spreadsheet-disabled-mask {
    position: absolute;
}

.k-spreadsheet .k-selection-wrapper {
    position: relative;
    cursor: cell;
}

.k-spreadsheet .k-spreadsheet-selection {
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    position: absolute;
}

.k-spreadsheet .k-spreadsheet-selection-highlight {
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    position: absolute;
}

.k-spreadsheet .k-spreadsheet-editor-button {
    position: absolute;
    padding: 0;
    z-index: 60;
}

.k-spreadsheet-active-cell {
    outline-color: transparent !important;
    z-index: 10;
}

.k-spreadsheet .k-auto-fill-wrapper {
    position: relative;
}

.k-spreadsheet .k-auto-fill,
.k-spreadsheet .k-auto-fill-punch,
.k-spreadsheet .k-auto-fill-br-hint {
    box-sizing: border-box;
    position: absolute;
}

.k-spreadsheet .k-auto-fill {
    border-width: 1px;
    border-style: solid;
    cursor: crosshair;
}

.k-spreadsheet .k-single-selection::after {
    content: "";
    margin-bottom: -4px;
    margin-right: -4px;
    width: 6px;
    height: 6px;
    border-width: 1px;
    border-style: solid;
    border-radius: 50%;
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 100;
    cursor: crosshair;
}

.k-spreadsheet .k-selection-full::after,
.k-spreadsheet .k-selection-partial::after {
    display: none;
}

.k-spreadsheet .k-autofill-wrapper {
    position: relative;
    cursor: cell;
}

.k-spreadsheet-vborder {
    position: absolute;
    border-left-style: solid;
    border-left-width: 1px;
}

.k-spreadsheet-hborder {
    position: absolute;
    border-top-style: solid;
    border-top-width: 1px;
}

.k-spreadsheet-has-comment::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    border-width: 3px;
    border-style: solid;
}

.k-dirty {
    left: 0;
    right: auto;
}

.k-spreadsheet .k-filter-wrapper {
    position: relative;
    z-index: 50;
}

.k-spreadsheet .k-filter-range {
    border-width: 1px;
    border-style: solid;
    position: absolute;
    box-sizing: border-box;
}

.k-spreadsheet-filter {
    border-radius: 0.375rem;
    line-height: 1;
    position: absolute;
    cursor: pointer;
}

.k-spreadsheet-filter .k-icon {
    vertical-align: middle;
}

.k-spreadsheet-filter-menu {
    width: 280px;
}

.k-spreadsheet-filter-menu .k-animation-container {
    position: relative;
}

.k-spreadsheet-filter-menu > .k-menu,
.k-spreadsheet-filter-menu > .k-menu.k-menu-vertical {
    border-width: 0;
}

.k-spreadsheet-filter-menu > .k-menu .k-item,
.k-spreadsheet-filter-menu > .k-menu.k-menu-vertical .k-item {
    color: inherit;
}

.k-spreadsheet-filter-menu > .k-menu .k-link,
.k-spreadsheet-filter-menu > .k-menu.k-menu-vertical .k-link {
    padding-left: calc( 16px + 1rem);
}

.k-spreadsheet-filter-menu > .k-menu .k-icon,
.k-spreadsheet-filter-menu > .k-menu .k-svg-icon,
.k-spreadsheet-filter-menu > .k-menu.k-menu-vertical .k-icon,
.k-spreadsheet-filter-menu > .k-menu.k-menu-vertical .k-svg-icon {
    margin-left: calc(-1 * ( 16px + 0.5rem ));
    margin-right: 0.5rem;
}

.k-spreadsheet-filter-menu .k-spreadsheet-value-treeview-wrapper {
    height: 200px;
    border-width: 1px;
    border-style: solid;
    overflow-y: scroll;
    overflow-x: auto;
}

.k-spreadsheet-filter-menu .k-spreadsheet-value-treeview-wrapper .k-treeview {
    padding: 0.5rem;
    overflow: visible;
}

.k-spreadsheet-filter-menu .k-details,
.k-spreadsheet-filter-menu .k-expander {
    padding: 0;
    border-width: 1px 0 0;
    border-style: solid;
    border-color: inherit;
}

.k-spreadsheet-filter-menu .k-expander {
    border: 0;
    background: inherit;
}

.k-spreadsheet-filter-menu .k-details-summary,
.k-spreadsheet-filter-menu .k-columnmenu-item {
    padding-block: 0.25rem;
    padding-inline: 1rem;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.k-spreadsheet-filter-menu .k-details-summary > .k-icon,
.k-spreadsheet-filter-menu .k-details-summary > .k-svg-icon,
.k-spreadsheet-filter-menu .k-columnmenu-item > .k-icon,
.k-spreadsheet-filter-menu .k-columnmenu-item > .k-svg-icon {
    margin-right: 0.5rem;
}

.k-spreadsheet-filter-menu .k-details-content,
.k-spreadsheet-filter-menu .k-columnmenu-item-content {
    padding: 0.5rem;
    display: flex;
    flex-flow: column nowrap;
    gap: 0.5rem;
}

.k-spreadsheet-filter-menu .k-details-content .k-filter-and,
.k-spreadsheet-filter-menu .k-columnmenu-item-content .k-filter-and {
    width: min-content;
    align-self: flex-start;
}

.k-spreadsheet-filter-menu .k-actions, .k-spreadsheet-filter-menu .k-edit-buttons,
.k-spreadsheet-filter-menu .k-action-buttons,
.k-spreadsheet-filter-menu .k-columnmenu-actions, .k-spreadsheet-filter-menu .k-form-buttons {
    margin: 0;
    padding: 0;
}

.k-spreadsheet-popup {
    padding: 0;
}

.k-spreadsheet-popup .k-separator {
    display: block;
}

.k-spreadsheet-popup .k-reset-color,
.k-spreadsheet-popup .k-custom-color {
    border-radius: 0;
    width: 100%;
    border-width: 0;
    box-sizing: border-box;
    display: flex;
}

.k-spreadsheet-popup .k-reset-color {
    border-bottom-width: 1px;
}

.k-spreadsheet-popup .k-custom-color {
    border-top-width: 1px;
}

.k-spreadsheet-popup .k-spreadsheet-border-type-palette {
    width: 12.5rem;
    height: 5rem;
    display: flex;
    flex-flow: row wrap;
    align-content: space-around;
    justify-content: space-around;
}

.k-spreadsheet-format-popup .k-item {
    justify-content: space-between;
}

.k-spreadsheet-format-popup .k-spreadsheet-sample {
    order: 1;
}

.k-spreadsheet-sample {
    opacity: .7;
}

.k-spreadsheet-clipboard,
.k-spreadsheet-clipboard-paste {
    margin: 0;
    padding: 0;
    width: 1px;
    height: 1px;
    border: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.k-spreadsheet-window .k-edit-form-container {
    width: auto;
    min-width: 0;
}

.k-spreadsheet-format-cells .k-spreadsheet-preview {
    margin-top: 0.5rem;
    text-align: center;
}

.k-spreadsheet-format-cells .k-list-scroller {
    margin-top: 0.5rem;
    height: 210px;
    border-width: 1px;
    border-style: solid;
    border-color: inherit;
}

.k-export-config {
    clear: both;
    position: relative;
}

.k-export-config::after {
    content: "";
    clear: both;
    display: block;
}

.k-export-config .k-edit-field {
    margin-left: 5%;
    width: 45%;
    float: left;
}

.k-export-config .k-page-orientation {
    position: absolute;
    right: 0;
    top: 0.5rem;
}

.k-export-config .k-page-orientation .k-icon {
    font-size: 6em;
}

.k-export-config .k-page-orientation .k-svg-icon {
    width: 6em;
    height: 6em;
}

.k-spreadsheet-insert-comment textarea {
    height: auto;
}

.k-spreadsheet-insert-image-dialog {
    border-radius: 0.375rem;
    border-style: dashed;
    border-width: 2px;
}

.k-spreadsheet-insert-image-dialog label {
    display: flex;
    justify-content: center;
    min-width: 100%;
    width: 355px;
    height: 230px;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAcwAAAGQCAYAAAAjl1AKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA4ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ1IDc5LjE2MzQ5OSwgMjAxOC8wOC8xMy0xNjo0MDoyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDphMGVmMzZmZi04YmI1LTRlN2YtOTcwMS04OTU5ZTg1N2ZhY2MiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MDNDOTBDNUQ2OUJGMTFFOTkwMzY4RTI3NjZBQTdENkMiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MDNDOTBDNUM2OUJGMTFFOTkwMzY4RTI3NjZBQTdENkMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpjMmZmZjM0Mi05NjEyLTQwM2YtYWZhYS01MTE1ZjQ2NThmMWMiIHN0UmVmOmRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDphYjlhMmUwMy1kNmIwLTY3NGMtODc4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);
    background-size: auto 70%;
    background-position: 50% 30%;
    background-repeat: no-repeat;
}

.k-spreadsheet-insert-image-dialog label div {
    display: flex;
    align-self: flex-end;
    margin-bottom: 30px;
    pointer-events: none;
}

.k-spreadsheet-insert-image-dialog label input {
    display: none;
}

.k-spreadsheet-insert-image-dialog .k-spreadsheet-has-image {
    background-size: auto 90%;
    background-position: 50% 50%;
}

.k-spreadsheet-insert-image-dialog .k-spreadsheet-has-image:hover div,
.k-spreadsheet-insert-image-dialog .k-spreadsheet-has-image.k-hover div {
    margin: 0;
    align-self: center;
    opacity: 1;
}

.k-spreadsheet-insert-image-dialog .k-spreadsheet-has-image div {
    opacity: 0;
}

.k-spreadsheet-drawing {
    position: absolute;
    box-sizing: border-box;
    z-index: 101;
}

.k-spreadsheet-drawing.k-spreadsheet-active-drawing {
    outline-style: solid;
    outline-width: 2px;
}

.k-spreadsheet-drawing .k-spreadsheet-drawing-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: 50% 50%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    cursor: move;
}

.k-spreadsheet-drawing .k-spreadsheet-drawing-handle {
    width: 6px;
    height: 6px;
    border-style: solid;
    border-width: 1px;
    border-radius: 0.5rem;
    position: absolute;
    transform: translate(-50%, -50%);
}

.k-spreadsheet-drawing .k-spreadsheet-drawing-handle.N {
    left: 50%;
    top: 0;
    cursor: ns-resize;
}

.k-spreadsheet-drawing .k-spreadsheet-drawing-handle.NE {
    left: 100%;
    top: 0;
    cursor: nesw-resize;
}

.k-spreadsheet-drawing .k-spreadsheet-drawing-handle.E {
    left: 100%;
    top: 50%;
    cursor: ew-resize;
}

.k-spreadsheet-drawing .k-spreadsheet-drawing-handle.SE {
    left: 100%;
    top: 100%;
    cursor: nwse-resize;
}

.k-spreadsheet-drawing .k-spreadsheet-drawing-handle.S {
    left: 50%;
    top: 100%;
    cursor: ns-resize;
}

.k-spreadsheet-drawing .k-spreadsheet-drawing-handle.SW {
    left: 0;
    top: 100%;
    cursor: nesw-resize;
}

.k-spreadsheet-drawing .k-spreadsheet-drawing-handle.W {
    left: 0;
    top: 50%;
    cursor: ew-resize;
}

.k-spreadsheet-drawing .k-spreadsheet-drawing-handle.NW {
    left: 0;
    top: 0;
    cursor: nwse-resize;
}

.k-spreadsheet-drawing .k-spreadsheet-insert-image-dialog .k-spreadsheet-has-image:hover, .k-spreadsheet-drawing .k-spreadsheet-insert-image-dialog .k-spreadsheet-has-image.k-hover {
    border-radius: 0.375rem;
}

.k-rtl .k-spreadsheet .k-dirty,
.k-spreadsheet[dir="rtl"] .k-dirty {
    right: 0;
    left: auto;
}

.k-rtl .k-spreadsheet .k-spreadsheet-has-comment::after,
.k-spreadsheet[dir="rtl"] .k-spreadsheet-has-comment::after {
    left: 0;
    right: auto;
}

.k-spreadsheet-filter-menu > .k-menu,
.k-spreadsheet-filter-menu > .k-menu:not(.k-context-menu) {
    background: none;
    color: inherit;
    font-weight: inherit;
    font-size: inherit;
}

.k-spreadsheet {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-spreadsheet-top-corner,
.k-spreadsheet-row-header,
.k-spreadsheet-column-header {
    border-color: #dee2e6;
    color: #212529;
    background-color: #f8f9fa;
}

.k-syntax-ref {
    color: #ff8822;
}

.k-syntax-num {
    color: #0099ff;
}

.k-syntax-str {
    color: #38b714;
}

.k-syntax-error {
    color: red;
}

.k-syntax-bool {
    color: #a9169c;
}

.k-syntax-paren-match {
    background-color: #caf200;
}

.k-spreadsheet-cell-editor {
    color: #212529;
    background-color: #ffffff;
}

.k-spreadsheet-merged-cell {
    background-color: #ffffff;
}

.k-spreadsheet .k-selection-full,
.k-spreadsheet .k-selection-partial {
    background-color: rgba(13, 110, 253, 0.25);
}

.k-spreadsheet-selection {
    border-color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.25);
    box-shadow: inset 0 0 0 1px #0d6efd;
}

.k-spreadsheet .k-single-selection::after {
    border-color: #ffffff;
    background-color: #0d6efd;
}

.k-spreadsheet-active-cell {
    box-shadow: inset 0 0 0 1px #0d6efd;
    background-color: #ffffff;
}

.k-spreadsheet-active-cell.k-right {
    box-shadow: inset 0 0 0 1px #0d6efd, inset -1px 0 0 1px #0d6efd;
}

.k-spreadsheet-active-cell.k-bottom {
    box-shadow: inset 0 0 0 1px #0d6efd, inset 0 -1px 0 1px #0d6efd;
}

.k-spreadsheet-active-cell.k-bottom.k-right {
    box-shadow: inset 0 0 0 1px #0d6efd, inset -1px -1px 0 1px #0d6efd;
}

.k-spreadsheet .k-auto-fill {
    border-color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.25);
    box-shadow: inset 0 0 0 1px #0d6efd;
}

.k-spreadsheet .k-auto-fill-punch {
    background-color: rgba(255, 255, 255, 0.5);
}

.k-spreadsheet .k-resize-handle,
.k-spreadsheet .k-resize-hint-handle,
.k-spreadsheet .k-resize-hint-marker {
    background-color: #0d6efd;
}

.k-spreadsheet-has-comment::after {
    border-color: #0d6efd #0d6efd transparent transparent;
}

.k-dirty {
    border-color: #dc3545 transparent transparent #dc3545;
}

.k-spreadsheet .k-filter-range {
    border-color: #0d6efd;
}

.k-spreadsheet-filter {
    border-color: #e4e7eb;
    color: #212529;
    background-color: #e4e7eb;
    box-shadow: inset 0 0 0 1px #e4e7eb;
}

.k-spreadsheet-filter.k-active {
    border-color: #bfc6d0;
    background-color: #c7cdd5;
}

.k-spreadsheet-filter:hover {
    border-color: #c7cdd5;
    background-color: #ced3db;
}

.k-spreadsheet-filter-menu > .k-menu .k-item.k-hover,
.k-spreadsheet-filter-menu > .k-menu:not(.k-context-menu) .k-item.k-hover {
    color: #16181b;
    background-color: #e9ecef;
}

.k-spreadsheet-filter-menu .k-spreadsheet-value-treeview-wrapper {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-spreadsheet-insert-image-dialog {
    border-color: #dee2e6;
}

.k-spreadsheet-insert-image-dialog .k-spreadsheet-has-image:hover, .k-spreadsheet-insert-image-dialog .k-spreadsheet-has-image.k-hover {
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.5);
}

.k-spreadsheet-insert-image-dialog .k-spreadsheet-has-image:hover div,
.k-spreadsheet-insert-image-dialog .k-spreadsheet-has-image.k-hover div {
    color: #ffffff;
}

.k-spreadsheet-drawing.k-spreadsheet-active-drawing {
    outline-color: #0d6efd;
}

.k-spreadsheet-drawing .k-spreadsheet-drawing-handle {
    border-color: #0d6efd;
    background-color: #0d6efd;
}

.k-spreadsheet-drawing-anchor-cell {
    background: rgba(13, 110, 253, 0.25);
}

.k-spreadsheet-popup .k-button:hover,
.k-spreadsheet-popup .k-button.k-hover {
    color: #16181b;
    background-color: #e9ecef;
}

.k-spreadsheet-popup .k-button:active,
.k-spreadsheet-popup .k-button.k-active,
.k-spreadsheet-popup .k-button.k-selected {
    color: #ffffff;
    background-color: #0d6efd;
}

.k-rtl .k-spreadsheet .k-spreadsheet-has-comment::after,
.k-spreadsheet[dir="rtl"] .k-spreadsheet-has-comment::after,
[dir="rtl"] .k-spreadsheet .k-spreadsheet-has-comment::after {
    border-color: #0d6efd transparent transparent #0d6efd;
}

.k-rtl .k-spreadsheet .k-dirty,
.k-spreadsheet[dir="rtl"] .k-dirty,
[dir="rtl"] .k-spreadsheet .k-dirty {
    border-color: #dc3545 #dc3545 transparent transparent;
}

.k-pivotgrid {
    border-width: 1px;
    border-style: solid;
    box-sizing: content-box;
    font-size: 1rem;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    line-height: 1.5;
    text-align: start;
    vertical-align: top;
    display: grid;
    grid-template-columns: 300px auto;
    grid-template-rows: 75px auto;
    position: relative;
}

.k-pivotgrid table {
    margin: 0;
    width: 100%;
    max-width: none;
    border-width: 0;
    border-color: inherit;
    border-collapse: separate;
    border-spacing: 0;
    outline: 0;
    text-align: inherit;
    empty-cells: show;
}

.k-pivotgrid thead,
.k-pivotgrid tbody,
.k-pivotgrid th,
.k-pivotgrid tr,
.k-pivotgrid td {
    border-color: inherit;
    text-align: inherit;
}

.k-pivotgrid-table {
    table-layout: fixed;
}

.k-pivotgrid-table th {
    font-weight: 400;
    text-transform: initial;
}

.k-pivotgrid-table .k-pivotgrid-header-root {
    font-weight: 600;
    text-transform: uppercase;
}

.k-pivotgrid-empty-cell {
    border-right-style: solid;
    border-right-width: 1px;
    border-bottom-style: solid;
    border-bottom-width: 1px;
}

.k-pivotgrid-empty-cell:focus {
    outline: none;
}

.k-pivotgrid-column-headers {
    overflow: hidden;
}

.k-pivotgrid-column-headers .k-pivotgrid-table {
    padding-inline-start: 0;
    padding-inline-end: var(--kendo-scrollbar-width, 17px);
}

.k-pivotgrid-column-headers .k-pivotgrid-cell {
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-left-style: solid;
    border-left-width: 1px;
}

.k-pivotgrid-column-headers .k-pivotgrid-cell:first-child {
    border-left-width: 0;
}

.k-pivotgrid-column-headers .k-pivotgrid-cell.k-first {
    border-left-width: 1px;
}

.k-pivotgrid-row-headers {
    overflow: hidden;
}

.k-pivotgrid-row-headers .k-pivotgrid-table {
    padding-bottom: var(--kendo-scrollbar-width, 17px);
}

.k-pivotgrid-row-headers .k-pivotgrid-cell {
    border-right-style: solid;
    border-right-width: 1px;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    white-space: nowrap;
}

.k-pivotgrid-values {
    border-color: inherit;
    overflow: scroll;
}

.k-pivotgrid-values .k-pivotgrid-cell {
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-left-style: solid;
    border-left-width: 1px;
}

.k-pivotgrid-values .k-pivotgrid-cell:first-child {
    border-left-width: 0;
}

.k-pivotgrid-cell {
    padding-block: 0.5rem;
    padding-inline: 0.5rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: top;
    overflow: hidden;
}

.k-pivotgrid-cell:focus {
    outline: none;
}

.k-pivotgrid-cell .k-icon,
.k-pivotgrid-cell .k-svg-icon {
    cursor: pointer;
    padding-inline-end: 8px;
}

.k-pivotgrid-total {
    font-weight: 600;
}

.k-column-menu .k-treeview {
    padding-block: 0px;
    padding-inline: 1.5rem;
    overflow: auto;
}

.k-pivotgrid-configurator {
    display: flex;
}

.k-pivotgrid-configurator-panel {
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 2;
}

.k-pivotgrid-configurator-button {
    padding-block: 0.25rem;
    padding-inline: 0.25rem;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    cursor: pointer;
    user-select: none;
}

.k-flex-row .k-pivotgrid-configurator-button, .k-d-flex-row .k-pivotgrid-configurator-button,
.k-flex-row-reverse .k-pivotgrid-configurator-button {
    display: flex;
    align-items: center;
}

.k-flex-row .k-pivotgrid-configurator-button span, .k-d-flex-row .k-pivotgrid-configurator-button span,
.k-flex-row-reverse .k-pivotgrid-configurator-button span {
    writing-mode: vertical-rl;
}

.k-flex-row .k-pivotgrid-configurator-button .k-icon, .k-d-flex-row .k-pivotgrid-configurator-button .k-icon,
.k-flex-row .k-pivotgrid-configurator-button .k-svg-icon,
.k-d-flex-row .k-pivotgrid-configurator-button .k-svg-icon,
.k-flex-row-reverse .k-pivotgrid-configurator-button .k-icon,
.k-flex-row-reverse .k-pivotgrid-configurator-button .k-svg-icon {
    vertical-align: baseline;
}

.k-flex-row-reverse .k-pivotgrid-configurator-button > span {
    transform: rotate(-180deg);
}

.k-flex-col .k-pivotgrid-configurator-button, .k-d-flex-col .k-pivotgrid-configurator-button, .k-flex-column .k-pivotgrid-configurator-button,
.k-flex-col-reverse .k-pivotgrid-configurator-button,
.k-flex-column-reverse .k-pivotgrid-configurator-button {
    text-align: center;
}

.k-pivotgrid-configurator-overlay {
    position: absolute;
    overflow: hidden;
    z-index: 2;
}

.k-flex-row .k-pivotgrid-configurator-overlay, .k-d-flex-row .k-pivotgrid-configurator-overlay {
    right: calc( 1.5em + 0.5rem + 2px);
}

.k-flex-row-reverse .k-pivotgrid-configurator-overlay {
    left: calc( 1.5em + 0.5rem + 2px);
}

.k-flex-col .k-pivotgrid-configurator-overlay, .k-d-flex-col .k-pivotgrid-configurator-overlay, .k-flex-column .k-pivotgrid-configurator-overlay {
    bottom: calc( 1.5em + 0.5rem + 2px);
}

.k-flex-col-reverse .k-pivotgrid-configurator-overlay, .k-flex-column-reverse .k-pivotgrid-configurator-overlay {
    top: calc( 1.5em + 0.5rem + 2px);
}

.k-pivotgrid-configurator-header {
    padding-block: 0.75rem;
    padding-inline: 1rem;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.k-pivotgrid-configurator-header-text {
    word-break: normal;
    overflow-wrap: anywhere;
}

.k-pivotgrid-configurator-content {
    padding-block: 0.25rem;
    padding-inline: 1rem;
    flex: 1 1 auto;
    overflow: auto;
}

.k-pivotgrid-configurator-content .k-form .k-label {
    font-size: 16px;
    font-weight: 500;
    align-items: flex-start;
}

.k-pivotgrid-configurator-content .k-form .k-dropdown-list, .k-pivotgrid-configurator-content .k-form .k-dropdown,
.k-pivotgrid-configurator-content .k-form .k-dropdownlist {
    max-width: 90px;
}

.k-pivotgrid-configurator-content .k-form .k-textbox {
    flex-basis: 50%;
}

.k-pivotgrid-configurator-content .k-row-fields,
.k-pivotgrid-configurator-content .k-column-fields,
.k-pivotgrid-configurator-content .k-filter-fields {
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.k-pivotgrid-configurator-content .k-value-fields {
    margin-block: 0.5rem;
    margin-inline: 0px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.k-pivotgrid-configurator-content .k-select-all .k-checkbox {
    margin-inline-end: 0.25rem;
}

.k-pivotgrid-configurator-content .k-fields-list-wrapper {
    max-height: 200px;
    border-width: 1px;
    border-style: solid;
    flex: 1 1 auto;
    overflow-x: hidden;
    overflow-y: auto;
}

.k-pivotgrid-configurator-content .k-settings-description {
    margin-top: 1rem;
    text-align: center;
}

.k-pivotgrid-configurator-content .k-treeview {
    padding-block: 0px;
    padding-inline: 1.5rem;
    overflow: auto;
}

.k-calculated-field {
    padding-block: 1rem;
    padding-inline: 1rem;
    border-width: 1px;
    border-radius: 0.375rem;
    border-style: solid;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.k-calculated-field-header {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.k-calculated-field-header .k-textbox {
    min-width: 200px;
}

.k-calculated-field-header-text {
    margin-right: 5px;
    word-break: normal;
    overflow-wrap: anywhere;
}

.k-calculated-field-header-actions {
    flex-shrink: 0;
    align-self: flex-start;
}

.k-calculated-field-content .k-textbox {
    width: 100%;
}

.k-calculated-field-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.k-calculated-field-actions .k-icon,
.k-calculated-field-actions .k-svg-icon {
    margin-right: 0.5rem;
}

.k-calculated-field-actions .k-dropdown-list, .k-calculated-field-actions .k-dropdown,
.k-calculated-field-actions .k-dropdownlist {
    max-width: 100px;
}

.k-filter-menu .k-calculated-item {
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.k-pivotgrid-configurator-vertical {
    min-width: 320px;
}

.k-flex-row .k-pivotgrid-configurator-vertical.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel, .k-d-flex-row .k-pivotgrid-configurator-vertical.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel,
.k-flex-row-reverse .k-pivotgrid-configurator-vertical.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel {
    border-right-width: 0;
    border-left-width: 0;
}

.k-pivotgrid-configurator-horizontal {
    width: 100%;
    height: 420px;
}

.k-pivotgrid-configurator-horizontal .k-pivotgrid-configurator-content .k-form {
    display: flex;
    flex-direction: row;
}

.k-pivotgrid-configurator-horizontal .k-pivotgrid-configurator-content .k-form-field-wrapper {
    padding-left: 1rem;
}

.k-pivotgrid-configurator-horizontal .k-pivotgrid-configurator-content .k-form-field-wrapper > *:first-child {
    margin-top: 0;
}

.k-pivotgrid-configurator-horizontal .k-pivotgrid-configurator-content .k-form-field-wrapper:first-child {
    padding-left: 0;
    flex: 1 1 30%;
}

.k-pivotgrid-configurator-horizontal .k-pivotgrid-configurator-content .k-form-field-wrapper:nth-child(2) {
    flex: 1 1 30%;
}

.k-pivotgrid-configurator-horizontal .k-pivotgrid-configurator-content .k-form-field-wrapper:last-child {
    border-left-width: 1px;
    border-left-style: solid;
    flex: 1 1 40%;
}

.k-pivotgrid-configurator-horizontal .k-pivotgrid-configurator-content .k-row-fields,
.k-pivotgrid-configurator-horizontal .k-pivotgrid-configurator-content .k-column-fields,
.k-pivotgrid-configurator-horizontal .k-pivotgrid-configurator-content .k-filter-fields {
    max-height: 100px;
    overflow-x: hidden;
    overflow-y: auto;
}

.k-pivotgrid-configurator-horizontal .k-pivotgrid-configurator-content .k-value-fields {
    max-height: 250px;
    flex-flow: row wrap;
    overflow-x: hidden;
    overflow-y: auto;
}

.k-flex-col .k-pivotgrid-configurator-horizontal.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel, .k-d-flex-col .k-pivotgrid-configurator-horizontal.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel, .k-flex-column .k-pivotgrid-configurator-horizontal.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel,
.k-flex-col-reverse .k-pivotgrid-configurator-horizontal.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel,
.k-flex-column-reverse .k-pivotgrid-configurator-horizontal.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel {
    border-top-width: 0;
    border-bottom-width: 0;
}

.k-pdf-export-shadow .k-pivotgrid {
    height: auto !important;
}

.k-pdf-export-shadow .k-pivotgrid-values {
    height: auto;
    overflow: visible;
}

.k-pdf-export-shadow .k-pivotgrid-column-headers .k-pivotgrid-table {
    padding-inline-end: 0;
}

.k-pivot {
    border-width: 1px;
    border-style: solid;
    position: relative;
}

.k-pivot .k-grid td {
    white-space: nowrap;
}

.k-pivot .k-grid-content {
    flex: 1 1 auto;
}

.k-pivot-toolbar {
    border-width: 0 0 1px;
    border-style: solid;
    align-items: flex-start;
    flex-wrap: wrap;
    box-shadow: none;
}

.k-pivot-toolbar > * {
    max-width: 100%;
}

.k-pivot-toolbar::before {
    display: none;
}

.k-pivot-layout {
    border-spacing: 0;
    table-layout: auto;
}

.k-pivot-layout .k-grid-footer,
.k-pivot-layout .k-grid .k-table-alt-row {
    font-weight: bold;
}

.k-pivot-layout > tbody,
.k-pivot .k-table-td,
.k-pivot td {
    vertical-align: top;
}

.k-pivot-layout > tbody > tr > td {
    padding: 0;
}

.k-pivot-rowheaders > .k-grid,
.k-pivot-table > .k-grid {
    border-width: 0;
    color: inherit;
    background: none;
}

.k-pivot-rowheaders > .k-grid td:first-child,
.k-pivot-table .k-grid-header .k-header.k-first {
    border-left-width: 1px;
}

.k-pivot-rowheaders > .k-grid td.k-first {
    border-left-width: 0;
}

.k-pivot-rowheaders > .k-grid {
    overflow: hidden;
}

.k-pivot-table {
    border-left-width: 1px;
    border-left-style: solid;
}

.k-pivot-table .k-grid-header-wrap {
    margin-right: -1px;
}

.k-pivot-table .k-grid-header-wrap > table {
    height: 100%;
}

.k-pivot .k-grid-header .k-header {
    vertical-align: top;
}

.k-pivot .k-grid tr .k-grid-footer {
    border-bottom-width: 0;
}

.k-pivot .k-grid tr:last-child:not(.k-grid-footer) td:not(.k-grid-footer) {
    border-bottom-width: 1px;
}

.k-pivot-layout .k-grid td {
    border-bottom-width: 1px;
}

.k-pivot-layout .k-grid-footer > td {
    border-top-width: 0;
}

.k-pivot-filter-window .k-treeview {
    max-height: 600px;
}

.k-pivotgrid-wrapper {
    box-sizing: border-box;
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    gap: 0.5rem;
}

.k-pivotgrid-wrapper > .k-pivotgrid-configurator-panel {
    max-width: 320px;
    flex: none;
}

.k-pivotgrid-wrapper > .k-pivot {
    flex: 1;
}

.k-pivotgrid-configurator-panel.kendo-jquery {
    box-sizing: border-box;
    display: inline-flex;
}

.k-pivotgrid-configurator-panel.kendo-jquery .k-pivotgrid-configurator {
    height: 100%;
}

.k-pivotgrid-configurator-panel.kendo-jquery .k-pivotgrid-configurator-content {
    padding: 1rem;
    max-height: 100%;
    display: flex;
    flex-flow: column nowrap;
    gap: 1rem;
    overflow-x: hidden;
    overflow-y: auto;
}

.k-pivotgrid-configurator-panel.kendo-jquery .k-pivotgrid-targets {
    display: flex;
    flex-flow: column nowrap;
    gap: 1rem;
}

.k-pivotgrid-configurator-panel.kendo-jquery .k-pivotgrid-configurator-section {
    display: flex;
    flex-flow: column nowrap;
    gap: 0.5rem;
}

.k-pivotgrid-configurator-panel.kendo-jquery .k-column-fields {
    margin: 0;
    padding: 0.25rem;
    max-height: 200px;
    border-width: 1px;
    border-style: solid;
    display: flex;
    flex-flow: row wrap;
    gap: 0.25rem;
    overflow-x: hidden;
    overflow-y: auto;
}

.k-pivotgrid-configurator-panel.kendo-jquery .k-column-fields > * {
    margin: 0;
}

.k-pivotgrid {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-pivotgrid-column-headers,
.k-pivotgrid-row-headers,
.k-pivotgrid-empty-cell {
    border-color: #dee2e6;
    color: #212529;
    background-color: #f8f9fa;
}

.k-pivotgrid-empty-cell {
    border-color: #babec1;
}

.k-pivotgrid-row-headers .k-pivotgrid-row .k-pivotgrid-cell:last-child {
    border-right-color: #babec1;
}

.k-pivotgrid-column-headers .k-pivotgrid-column-total:nth-last-of-type(2) .k-pivotgrid-cell:not(.k-pivotgrid-expanded),
.k-pivotgrid-column-headers .k-pivotgrid-row:last-child {
    border-bottom-color: #babec1;
}

.k-pivotgrid-header-total,
.k-pivotgrid-total {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ebebeb;
}

.k-pivotgrid-row-headers tbody > .k-pivotgrid-row:hover,
.k-pivotgrid-row-headers tbody > .k-pivotgrid-row.k-hover,
.k-pivotgrid-column-headers tbody > .k-pivotgrid-row:hover,
.k-pivotgrid-column-headers tbody > .k-pivotgrid-row.k-hover,
.k-pivotgrid-values tbody > .k-pivotgrid-row:hover,
.k-pivotgrid-values tbody > .k-pivotgrid-row.k-hover {
    background-color: #ededed;
}

.k-pivotgrid-cell:focus,
.k-pivotgrid-cell.k-focus,
.k-pivotgrid-empty-cell:focus,
.k-pivotgrid-empty-cell.k-focus,
.k-master-row > .k-pivotgrid-cell:focus,
.k-grouping-row > .k-pivotgrid-cell:focus,
.k-detail-row > .k-pivotgrid-cell:focus,
.k-group-footer > .k-pivotgrid-cell:focus {
    box-shadow: inset 0 0 0 3px rgba(33, 37, 41, 0.15);
}

.k-pivotgrid-cell.k-selected,
.k-pivotgrid-row.k-selected > .k-pivotgrid-cell {
    background-color: rgba(13, 110, 253, 0.25);
}

.k-pivotgrid-configurator-button,
.k-pivotgrid-configurator-panel {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-pivotgrid-configurator-header {
    color: #212529;
}

.k-pivotgrid-configurator-content .k-fields-list-wrapper {
    border-color: #dee2e6;
}

.k-calculated-field {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-calculated-field-header {
    color: #212529;
}

.k-filter-menu .k-calculated-item {
    border-color: #dee2e6;
}

.k-pivotgrid-configurator-content .k-form-field-wrapper {
    border-color: #dee2e6;
}

.k-flex-row .k-pivotgrid-configurator-overlay, .k-d-flex-row .k-pivotgrid-configurator-overlay {
    box-shadow: -3px 0px 6px rgba(0, 0, 0, 0.16);
}

.k-flex-row-reverse .k-pivotgrid-configurator-overlay {
    box-shadow: 3px 0px 6px rgba(0, 0, 0, 0.16);
}

.k-flex-col .k-pivotgrid-configurator-overlay, .k-d-flex-col .k-pivotgrid-configurator-overlay, .k-flex-column .k-pivotgrid-configurator-overlay {
    box-shadow: 0px -3px 6px rgba(0, 0, 0, 0.16);
}

.k-flex-col-reverse .k-pivotgrid-configurator-overlay, .k-flex-column-reverse .k-pivotgrid-configurator-overlay {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.k-pivot {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-pivot-table {
    border-color: #dee2e6;
}

.k-pivot-rowheaders {
    border-color: #dee2e6;
    color: #212529;
    background-color: #f8f9fa;
}

.k-pivot-toolbar {
    border-color: #dee2e6;
    color: #212529;
    background-color: #f8f9fa;
}

.k-pivot-toolbar .k-empty {
    color: #6c757d;
}

.k-pivot .k-alt {
    background-color: #f8f9fa;
}

.k-pivot-toolbar,
.k-pivot-table,
.k-pivot-rowheaders > .k-grid td:first-child,
.k-pivot-table .k-grid-header .k-header.k-first {
    border-color: #dee2e6;
}

.k-header.k-alt {
    background-color: #eeeff0;
}

.k-pivot-layout .k-grid-footer {
    color: #212529;
    background-color: #f8f9fa;
}

.k-i-kpi-trend-increase,
.k-i-kpi-trend-decrease,
.k-i-kpi-trend-equal {
    color: inherit;
}

.k-i-kpi-status-hold {
    color: #ffc107;
}

.k-i-kpi-status-deny {
    color: #dc3545;
}

.k-i-kpi-status-open {
    color: #198754;
}

.k-pivotgrid-configurator-panel.kendo-jquery .k-column-fields {
    border-color: #dee2e6;
}

.k-treelist.k-grid-display-block.k-grid-lockedcolumns {
    display: block;
}

.k-treelist .k-status {
    padding-block: .4em;
    padding-inline: .6em;
    line-height: 1.6em;
}

.k-treelist .k-status .k-loading {
    vertical-align: baseline;
    margin-right: 5px;
    display: none;
}

.k-treelist tr.k-hidden {
    display: none;
}

.k-treelist .k-treelist-dragging,
.k-treelist .k-treelist-dragging .k-hover {
    cursor: default;
}

.k-treelist .k-drop-hint {
    transform: translate(0, -50%);
}

.k-treelist .k-table-row.k-footer td,
.k-treelist .k-table-row.k-footer-template td,
.k-treelist .k-table-row.k-footer .k-table-td,
.k-treelist .k-table-row.k-footer-template .k-table-td {
    border-width: 1px 0;
    border-style: solid;
    font-weight: bold;
}

.k-treelist .k-table-row.k-footer + .k-table-row.k-footer td,
.k-treelist .k-table-row.k-footer + .k-table-row.k-footer .k-table-td {
    border-top-width: 0;
}

.k-treelist-scrollable > .k-table,
.k-treelist-scrollable .k-grid-header .k-table-row,
.k-treelist-scrollable .k-grid-header .k-table-th {
    background-color: inherit;
}

.k-treelist-scrollable .k-grid-toolbar {
    position: sticky;
    z-index: 3;
    top: 0;
    left: 0;
}

.k-treelist-scrollable .k-grid-header .k-table-th {
    position: sticky;
    z-index: 1;
}

.k-treelist-scrollable .k-grid-header .k-table-th.k-grid-header-sticky {
    z-index: 3;
}

.k-treelist-scrollable thead.k-grid-header {
    padding-right: 0;
}

.k-treelist-scrollable .k-table-row.k-group-footer + .k-table-row.k-group-footer td {
    border-top-width: 0;
}

.k-treelist-scrollable[dir="rtl"] thead.k-grid-header,
.k-rtl .k-treelist-scrollable thead.k-grid-header {
    padding-left: 0;
}

.k-drag-separator {
    display: inline-block;
    border-right: 1px solid;
    height: 1em;
    vertical-align: top;
    margin-block: 0;
    margin-inline: .5em;
}

.k-treelist tr.k-footer td,
.k-treelist tr.k-footer-template td {
    font-weight: normal;
}

.k-treelist-scrollable .k-group-footer td {
    font-weight: normal;
}

.k-treelist tr.k-footer,
.k-treelist tr.k-footer-template {
    background-color: #f8f9fa;
}

.k-treelist tr.k-footer:hover,
.k-treelist tr.k-footer-template:hover {
    background-color: #f8f9fa;
}

.k-treelist-scrollable .k-group-footer td,
.k-treelist-scrollable .k-grouping-row td,
.k-treelist-scrollable tbody .k-group-cell {
    background-color: #f8f9fa;
}

.k-filter {
    box-sizing: border-box;
    border-width: 0;
    display: inline-block;
    background-color: transparent;
}

.k-filter *,
.k-filter *::before,
.k-filter *::after {
    box-sizing: border-box;
}

.k-filter ul {
    padding: 0;
}

.k-filter ul li {
    list-style-type: none;
}

.k-filter .k-filter-container,
.k-filter .k-filter-preview {
    margin-bottom: 2.1em;
}

.k-filter .k-filter-lines,
.k-filter .k-filter-item {
    padding-left: 1rem;
}

.k-filter .k-filter-toolbar {
    display: inline-flex;
    position: relative;
    padding-block: 0.5rem;
    padding-inline: 0;
}

.k-filter .k-filter-toolbar::before {
    content: "";
    position: absolute;
    width: 1rem;
    height: 1px;
    top: 50%;
    left: -1rem;
}

.k-filter .k-filter-toolbar .k-toolbar {
    border-style: solid;
}

.k-filter .k-filter-operator .k-dropdown-list, .k-filter .k-filter-operator .k-dropdown,
.k-filter .k-filter-operator .k-dropdownlist {
    width: 15em;
}

.k-filter .k-filter-item {
    position: relative;
}

.k-filter .k-filter-item::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    top: -0.5rem;
    left: 0;
}

.k-filter .k-filter-lines .k-filter-item:last-child > .k-filter-toolbar::after,
.k-filter .k-filter-lines .k-filter-item:last-child > * > .k-filter-toolbar::after {
    content: "";
    position: absolute;
    width: 1px;
    top: calc(-0.5rem - 1px);
    bottom: 50%;
    left: -1rem;
}

.k-filter .k-filter-group-main::before,
.k-filter .k-filter-group-main > .k-filter-toolbar::before,
.k-filter .k-filter-group-main > .k-filter-toolbar::after,
.k-filter .k-filter-group-main > * > .k-filter-toolbar::before,
.k-filter .k-filter-group-main > * > .k-filter-toolbar::after,
.k-filter .k-filter-lines .k-filter-item:last-child::before {
    display: none;
}

.k-rtl .k-filter .k-filter-lines,
.k-rtl .k-filter .k-filter-item, .k-filter[dir="rtl"] .k-filter-lines,
.k-filter[dir="rtl"] .k-filter-item,
[dir="rtl"] .k-filter .k-filter-lines,
[dir="rtl"] .k-filter .k-filter-item {
    padding-left: 0;
    padding-right: 1rem;
}

.k-rtl .k-filter .k-filter-toolbar::before, .k-filter[dir="rtl"] .k-filter-toolbar::before,
[dir="rtl"] .k-filter .k-filter-toolbar::before {
    left: auto;
    right: -1rem;
}

.k-rtl .k-filter .k-filter-item::before, .k-filter[dir="rtl"] .k-filter-item::before,
[dir="rtl"] .k-filter .k-filter-item::before {
    left: auto;
    right: 0;
}

.k-rtl .k-filter .k-filter-lines .k-filter-item:last-child > .k-filter-toolbar::after,
.k-rtl .k-filter .k-filter-lines .k-filter-item:last-child > * > .k-filter-toolbar::after, .k-filter[dir="rtl"] .k-filter-lines .k-filter-item:last-child > .k-filter-toolbar::after,
.k-filter[dir="rtl"] .k-filter-lines .k-filter-item:last-child > * > .k-filter-toolbar::after,
[dir="rtl"] .k-filter .k-filter-lines .k-filter-item:last-child > .k-filter-toolbar::after,
[dir="rtl"] .k-filter .k-filter-lines .k-filter-item:last-child > * > .k-filter-toolbar::after {
    left: auto;
    right: -1rem;
}

.k-filter {
    color: #212529;
}

.k-filter .k-filter-preview-field {
    color: #0d6efd;
}

.k-filter .k-filter-preview-operator {
    color: #6c757d;
}

.k-filter .k-filter-item::before,
.k-filter .k-filter-toolbar::before,
.k-filter .k-filter-lines .k-filter-item:last-child > .k-filter-toolbar::after,
.k-filter .k-filter-lines .k-filter-item:last-child > * > .k-filter-toolbar::after {
    background-color: #dee2e6;
}

.k-filter .k-toolbar:focus,
.k-filter .k-toolbar.k-focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.k-filemanager {
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    line-height: 1.5;
    display: flex;
    flex-flow: column nowrap;
}

.k-filemanager-header {
    border-color: inherit;
}

.k-filemanager-toolbar {
    border-width: 0;
    border-bottom-width: 1px;
    border-color: inherit;
    flex-shrink: 0;
}

.k-filemanager-content-container {
    border-color: inherit;
    box-sizing: border-box;
    flex: 1 1 0%;
    display: flex;
    flex-flow: row nowrap;
    align-items: stretch;
    overflow: hidden;
}

.k-filemanager-navigation {
    padding-block: 1rem;
    padding-inline: 1rem;
    width: 20%;
    border-width: 0;
    border-right-width: 1px;
    border-style: solid;
    border-color: inherit;
    box-sizing: border-box;
    flex-shrink: 0;
    overflow: auto;
}

.k-filemanager-treeview {
    overflow: visible;
}

.k-filemanager-content {
    border-color: inherit;
    flex: 1 1 0%;
    display: flex;
    flex-flow: column nowrap;
    align-items: stretch;
    overflow: hidden;
}

.k-filemanager-view {
    overflow: auto;
}

.k-filemanager-breadcrumb {
    border-width: 0;
    border-bottom-width: 1px;
    padding-block: 0.5rem;
    padding-inline: 0.5rem;
    flex-shrink: 0;
}

.k-filemanager-listview {
    border-width: 0;
    flex: 1 1 0%;
}

.k-filemanager-listview .k-listview-item {
    padding-block: 1rem;
    padding-inline: 1rem;
    width: 120px;
    height: 120px;
    text-align: center;
}

.k-filemanager-listview .k-file-preview {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.k-filemanager-listview .k-file-icon {
    font-size: 48px;
}

.k-filemanager-listview .k-file-name {
    margin-top: 0.5rem;
    display: block;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.k-filemanager-listview .k-file-edit-input input {
    width: 100%;
}

.k-filemanager-grid {
    border-width: 0;
    flex: 1 1 0%;
}

.k-filemanager-grid .k-file-preview {
    margin-right: 0.5rem;
    display: inline-flex;
    flex-direction: row;
    vertical-align: middle;
}

.k-filemanager-grid .k-file-name {
    display: inline-flex;
    flex-direction: row;
    vertical-align: middle;
}

.k-filemanager-preview {
    padding: 3rem 1rem 1rem;
    width: 20%;
    min-height: calc( 4rem + 192px + 3rem);
    border-width: 0;
    border-left-width: 1px;
    border-style: solid;
    border-color: inherit;
    box-sizing: border-box;
    text-align: center;
    overflow-y: auto;
    flex-shrink: 0;
}

.k-filemanager-preview .k-file-preview {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.k-filemanager-preview .k-file-icon {
    font-size: 96px;
}

.k-filemanager-preview .k-file-name {
    margin-top: 1rem;
    display: block;
}

.k-filemanager-preview .k-single-file-selected {
    font-weight: bold;
}

.k-filemanager-preview .k-multiple-files-selected {
    font-weight: bold;
}

.k-filemanager-preview .k-file-meta {
    margin: 1rem 0 0;
    box-sizing: border-box;
    text-align: start;
    display: flex;
    flex-flow: row wrap;
    grid-column-gap: 0.25rem;
}

.k-filemanager-preview .k-file-meta-label {
    display: inline-block;
}

.k-filemanager-preview .k-file-meta-value {
    margin: 0;
}

.k-filemanager-preview .k-file-type {
    text-transform: capitalize;
}

.k-filemanager-preview .k-line-break {
    margin: 1rem 0 0;
    width: 100%;
    flex: 1 1 100%;
    flex-flow: row nowrap;
}

.k-filemanager .k-splitbar {
    flex-shrink: 0;
    display: inline-flex;
    position: relative;
    border-width: 0 1px;
    border-style: solid;
    border-color: inherit;
}

.k-filemanager-upload-dialog .k-upload-files {
    max-height: 200px;
    overflow-y: auto;
}

.k-filemanager-drag-hint {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.k-filemanager {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-filemanager-breadcrumb {
    background-color: #f8f9fa;
}

.k-filemanager-listview .k-listview-item .k-file-icon {
    color: #686b6d;
}

.k-filemanager-listview .k-listview-item.k-selected .k-file-icon {
    border-color: transparent;
    color: inherit;
    background-color: transparent;
}

.k-filemanager-preview .k-file-icon {
    color: #686b6d;
}

.k-taskboard {
    box-sizing: border-box;
    font-size: 1rem;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    position: relative;
}

.k-taskboard *,
.k-taskboard *::before,
.k-taskboard *::after {
    box-sizing: border-box;
}

.k-taskboard-toolbar {
    padding-block: 1rem;
    padding-inline: 1rem;
    border-width: 0;
    box-shadow: none;
    background: none;
}

.k-taskboard-content {
    padding: 0 1rem 1rem;
    display: flex;
    position: relative;
    flex: 1 1 auto;
    overflow-x: auto;
}

.k-taskboard-columns-container {
    outline: none;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    gap: 1rem;
    overflow-x: visible;
}

.k-taskboard-column {
    width: 320px;
    border-width: 1px;
    border-radius: 0.25rem;
    border-style: solid;
    outline: none;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    overflow: hidden;
}

.k-taskboard-column-header {
    padding-block: 0.75rem;
    padding-inline: 0.75rem;
    font-weight: 500;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
}

.k-taskboard-column-header-actions {
    display: inline-flex;
    flex-shrink: 0;
    align-self: flex-start;
    gap: 0.5rem;
}

.k-taskboard-column-cards-container {
    margin-bottom: 0.75rem;
    padding-block: 0px;
    padding-inline: 0.75rem;
    outline: none;
    overflow: auto;
    flex: 1 1 auto;
}

.k-taskboard-column-cards {
    padding-block: 0.25rem;
    padding-inline: 0px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem 0;
}

.k-taskboard-column-new .k-taskboard-column-header,
.k-taskboard-column-edit .k-taskboard-column-header {
    font-weight: inherit;
}

.k-taskboard-column-new .k-taskboard-column-header-text,
.k-taskboard-column-edit .k-taskboard-column-header-text {
    flex: 1 1 100%;
}

.k-taskboard-pane {
    width: 320px;
    border-width: 1px;
    border-style: solid;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 2;
}

.k-taskboard-pane-header {
    padding-block: 0.75rem;
    padding-inline: 1rem;
    font-weight: 500;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.k-taskboard-pane-header-text {
    word-break: normal;
    overflow-wrap: anywhere;
}

.k-taskboard-pane-header-actions {
    flex-shrink: 0;
    align-self: flex-start;
}

.k-taskboard-pane-content {
    padding-block: 0px;
    padding-inline: 1rem;
    overflow: auto;
    flex: 1 1 auto;
}

.k-taskboard-pane-actions {
    padding-block: 0.75rem;
    padding-inline: 1rem;
}

.k-taskboard-pane-start {
    right: auto;
    left: 0;
}

.k-taskboard-card {
    border-radius: 0.375rem;
    border-width: 1px;
}

.k-taskboard-card.k-taskboard-card-category {
    border-left-width: 4px;
}

.k-taskboard-card .k-card-header .k-card-body,
.k-taskboard-card .k-card-footer {
    padding-block: 1rem;
    padding-inline: 1rem;
}

.k-taskboard-card .k-card-header {
    align-items: center;
}

.k-taskboard-card .k-card-title {
    font-size: inherit;
    font-weight: inherit;
    word-break: normal;
    overflow-wrap: anywhere;
}

.k-taskboard-card .k-card-title:focus, .k-taskboard-card .k-card-title.k-focus, .k-taskboard-card .k-card-title:hover, .k-taskboard-card .k-card-title.k-hover {
    text-decoration: underline;
}

.k-taskboard-card .k-card-header-actions {
    align-self: flex-start;
}

.k-taskboard-drag-placeholder {
    border-radius: 0.375rem;
    border-width: 1px;
    border-style: solid;
    position: relative;
}

.k-rtl .k-taskboard-card.k-taskboard-card-category, .k-taskboard-card.k-taskboard-card-category.k-rtl,
[dir="rtl"] .k-taskboard-card.k-taskboard-card-category, .k-taskboard-card.k-taskboard-card-category[dir="rtl"] {
    border-left-width: 1px;
    border-right-width: 4px;
}

.k-taskboard-column {
    border-color: transparent;
    background-color: #f8f9fa;
}

.k-taskboard-column:focus,
.k-taskboard-column.k-focus {
    border-color: #b6b7b8;
}

.k-taskboard-column-header {
    color: #212529;
}

.k-taskboard-pane {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-taskboard-pane-header {
    color: #212529;
}

.k-taskboard-card {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-taskboard-card .k-card-title {
    color: #0d6efd;
}

.k-taskboard-card .k-card-title:focus, .k-taskboard-card .k-card-title.k-focus {
    color: #0b5cd5;
}

.k-taskboard-card .k-card-title:hover, .k-taskboard-card .k-card-title.k-hover {
    color: #0b5cd5;
}

.k-taskboard-card:focus, .k-taskboard-card.k-focus {
    box-shadow: 0 0 0 3px rgba(222, 226, 230, 0.5);
    border-color: #b6b9bd;
}

.k-taskboard-card:hover, .k-taskboard-card.k-hover {
    border-color: #c8cbcf;
}

.k-taskboard-card.k-selected {
    border-color: #b6d3fe;
    box-shadow: none;
}

.k-taskboard-card.k-disabled {
    outline: none;
    cursor: default;
    opacity: 0.65;
    filter: grayscale(0.1);
    pointer-events: none;
    box-shadow: none;
}

.k-taskboard-drag-placeholder {
    border-color: #dee2e6;
    background-color: rgba(0, 0, 0, 0.1);
}

.k-editor {
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    line-height: 1.5;
    display: flex;
    flex-flow: column nowrap;
    position: relative;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-editor.k-readonly .k-editor-content {
    pointer-events: auto;
}

.k-editor.k-readonly .k-editor-content.k-focus {
    outline-width: 1px;
    outline-style: dashed;
}

.k-editor-inline {
    border-radius: 0.375rem;
    padding-block: 0.25rem;
    padding-inline: 0.5rem;
    border: 1px solid transparent;
    word-wrap: break-word;
    overflow: auto;
    background: none;
}

.k-editor-resizable {
    resize: both;
    overflow: auto;
}

.k-editor-resize-handles-wrapper {
    position: absolute;
    visibility: hidden;
}

.k-editor-resize-handle {
    width: 8px;
    height: 8px;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    position: absolute;
    visibility: visible;
    z-index: 100;
}

.k-editor-resize-handle.northwest {
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    cursor: nw-resize;
}

.k-editor-resize-handle.north {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: n-resize;
}

.k-editor-resize-handle.northeast {
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
    cursor: ne-resize;
}

.k-editor-resize-handle.southwest {
    left: 0;
    bottom: 0;
    transform: translate(-50%, 50%);
    cursor: sw-resize;
}

.k-editor-resize-handle.south {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    cursor: s-resize;
}

.k-editor-resize-handle.southeast {
    right: 0;
    bottom: 0;
    transform: translate(50%, 50%);
    cursor: se-resize;
}

.k-editor-resize-handle.west {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    cursor: w-resize;
}

.k-editor-resize-handle.east {
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    cursor: e-resize;
}

.ProseMirror-selectednode {
    outline-width: 2px;
    outline-style: solid;
}

.ProseMirror-hideselection {
    caret-color: transparent;
}

.ProseMirror-hideselection *::selection,
.ProseMirror-hideselection *::-moz-selection {
    background: transparent;
}

.k-editor-toolbar {
    border-width: 0 0 1px 0;
    flex-shrink: 0;
}

.k-editor-toolbar .k-editor-export .k-icon,
.k-editor-toolbar .k-editor-export .k-svg-icon {
    margin-right: 0.25em;
}

.k-editor-toolbar .k-editor-export .k-icon,
.k-editor-toolbar .k-editor-export .k-svg-icon,
.k-editor-toolbar .k-editor-export .k-export-tool-text {
    vertical-align: middle;
}

.k-editor-content {
    flex: 1 1 auto;
    overflow-y: auto;
}

.k-editor-content > .k-iframe {
    width: 100%;
    height: 100%;
    border-width: 0;
    display: block;
}

.k-editor-content > .ProseMirror {
    padding: 1rem;
    width: 100%;
    height: 100%;
    position: relative;
    box-sizing: border-box;
    outline: none;
    white-space: pre-wrap;
    overflow: auto;
}

.k-editor-content > .ProseMirror table {
    white-space: pre-wrap;
}

.k-editor-content > .ProseMirror .k-placeholder::before {
    content: attr(data-placeholder);
    height: 0;
    color: #6c757d;
    float: left;
    opacity: 1;
    cursor: text;
    user-select: none;
}

.k-editor-content > .ProseMirror[contenteditable="false"] {
    cursor: unset !important;
}

.k-editor-content > .ProseMirror[contenteditable="false"] .k-editor-resize-handles-wrapper,
.k-editor-content > .ProseMirror[contenteditable="false"] .k-editor-resize-handle,
.k-editor-content > .ProseMirror[contenteditable="false"] .row-resize-handle,
.k-editor-content > .ProseMirror[contenteditable="false"] .column-resize-handle {
    display: none;
}

.k-editor-content > .ProseMirror[contenteditable="false"] img,
.k-editor-content > .ProseMirror[contenteditable="false"] table {
    pointer-events: none;
}

.k-editor-content > .ProseMirror[contenteditable="false"] .ProseMirror-selectednode {
    outline: none;
}

.k-editor-content p {
    margin: 0 0 1rem;
}

.k-editor-content td p,
.k-editor-content th p,
.k-editor-content li p {
    margin: 0;
}

.k-editor-content table {
    margin: 0;
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
    overflow: hidden;
}

.k-editor-content td,
.k-editor-content th {
    min-width: 1em;
    border: 1px solid;
    padding-block: 3px;
    padding-inline: 5px;
    vertical-align: top;
    box-sizing: border-box;
    position: relative;
}

.k-editor-content th {
    font-weight: bold;
    text-align: start;
}

.k-editor-content td {
    text-align: start;
}

.k-editor-content .selectedCell::after {
    z-index: 2;
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    pointer-events: none;
}

.k-edit-form-content {
    flex: 1 1 auto;
    overflow: auto;
    margin-block: -1rem;
    margin-inline: -1rem;
    padding-block: 1rem;
    padding-inline: 1rem;
}

.k-ct-popup {
    box-sizing: border-box;
    width: 190px;
    padding: 5px;
}

.k-ct-popup .k-button {
    width: 100%;
}

.k-ct-popup .k-ct-cell {
    margin: 1px;
    width: 20px;
    height: 20px;
    box-sizing: border-box;
    border: 1px solid;
    border-color: inherit;
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
    opacity: .7;
    pointer-events: all;
}

.k-editor .k-resize-handle {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 13px 13px;
    border-color: transparent;
    border-bottom-color: inherit;
    cursor: se-resize;
}

.k-editor .k-resize-handle .k-i-arrow-45-down-right,
.k-editor .k-resize-handle .k-i-caret-br {
    display: none;
}

.k-editor-find-replace .k-content {
    position: relative;
}

.k-editor-find-replace .k-actions, .k-editor-find-replace .k-edit-buttons,
.k-editor-find-replace .k-action-buttons,
.k-editor-find-replace .k-columnmenu-actions, .k-editor-find-replace .k-form-buttons {
    padding: 0;
}

.k-editor-find-replace .k-search-options {
    display: flex;
    flex-direction: column;
    padding: 10px 0 40px;
}

.k-editor-find-replace .k-matches-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.k-textarea.k-editor-textarea {
    width: 100%;
    height: 100%;
    resize: none;
}

.k-filebrowser {
    max-width: 100%;
}

.k-filebrowser .k-floatwrap {
    display: flex;
}

.k-filebrowser .k-floatwrap::after {
    display: none;
}

.k-filebrowser .k-breadcrumbs {
    flex: 1;
}

.k-filebrowser .k-search-wrap {
    margin: 0 0 0 1rem;
    width: 150px;
    display: flex;
    align-items: center;
}

.k-filebrowser .k-search-wrap .k-input {
    flex: 1;
    width: 100px;
}

.k-filebrowser .k-search-wrap .k-icon,
.k-filebrowser .k-search-wrap .k-svg-icon {
    margin: 0;
    position: static;
}

.k-filebrowser .k-filebrowser-toolbar {
    margin: 1rem 0 0 0;
}

.k-filebrowser .k-upload {
    padding: 0;
    border-width: 0;
    background: none;
}

.k-filebrowser .k-upload .k-upload-button {
    margin: 0;
}

.k-filebrowser .k-upload .k-upload-status {
    display: none;
}

.k-filebrowser .k-upload-files {
    display: none;
}

.k-filebrowser .k-tiles {
    display: flex;
    flex-flow: row wrap;
    height: 390px;
    max-height: 50vh;
    margin: 0 0 1rem 0;
    padding-block: 0.5rem;
    padding-inline: 1rem;
    border-top-width: 0;
    overflow: auto;
}

.k-filebrowser .k-tile {
    width: 33%;
    height: 90px;
    padding-block: 0.5rem;
    padding-inline: 1rem;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    border-radius: 0.375rem;
}

.k-filebrowser .k-tile .k-i-file,
.k-filebrowser .k-tile .k-i-folder {
    font-size: 4em;
}

.k-filebrowser .k-tile input {
    width: 100px;
}

.k-filebrowser .k-tile strong {
    display: block;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
}

.k-filebrowser .k-tile-empty {
    display: block;
    margin: auto;
}

.k-filebrowser .k-tile-empty.k-selected {
    color: inherit;
    border-width: 0;
    background-image: none;
    background-color: transparent;
}

.k-filebrowser .k-tile-empty strong {
    opacity: .5;
    font-size: 3em;
    font-weight: 400;
}

.k-filebrowser .k-thumb {
    float: left;
    margin-right: 0.5rem;
}

.k-filebrowser .k-breadcrumbs-wrap {
    position: absolute;
    left: 0.75rem;
    top: 0.375rem;
}

.k-filebrowser .k-breadcrumbs-wrap .k-icon,
.k-filebrowser .k-breadcrumbs-wrap .k-svg-icon {
    position: static;
    margin-top: 0;
}

.k-editor-table-wizard-window .k-tabstrip-wrapper {
    display: flex;
    flex: 1 1 auto;
    overflow: auto;
}

.k-editor-table-wizard-window .k-tabstrip-wrapper .k-tabstrip.k-root-tabs {
    flex: 1 1 auto;
    margin-bottom: 0;
}

.k-editor-table-wizard-window .k-numerictextbox {
    width: 10em;
}

.k-editor-table-wizard-window .k-numerictextbox + .k-dropdown-list, .k-editor-table-wizard-window .k-numerictextbox + .k-dropdown,
.k-editor-table-wizard-window .k-numerictextbox + .k-dropdownlist {
    width: 5em;
}

.k-editor-table-wizard-window .k-numerictextbox + .k-color-picker, .k-editor-table-wizard-window .k-numerictextbox + .k-colorpicker, .k-editor-table-wizard-window .k-numerictextbox + .k-dropdown-list, .k-editor-table-wizard-window .k-numerictextbox + .k-dropdown,
.k-editor-table-wizard-window .k-numerictextbox + .k-dropdownlist {
    margin-left: 0.5rem;
}

.k-editor-table-wizard-window .k-color-picker, .k-editor-table-wizard-window .k-colorpicker {
    vertical-align: middle;
}

.k-editor-table-wizard-window .k-edit-field > .k-checkbox {
    position: relative;
}

.k-editor-inline .k-table {
    width: 100%;
    border-spacing: 0;
    margin: 0 0 1em;
}

.k-editor-inline .k-table,
.k-editor-inline .k-table td {
    outline: 0;
    border-width: 1px;
    border-style: dotted;
}

.k-editor-inline .k-table td {
    min-width: 1px;
    padding-block: 0.25rem;
    padding-inline: 0.5rem;
}

.k-editor-inline .k-element-resize-handle-wrapper {
    position: absolute;
    width: 5px;
    height: 5px;
    border-width: 1px;
    border-style: solid;
    z-index: 100;
}

.k-editor-inline .k-element-resize-handle-wrapper .k-element-resize-handle {
    width: 100%;
    height: 100%;
}

.k-editor-inline .k-element-resize-handle-wrapper .k-element-resize-handle.k-resize-east {
    cursor: e-resize;
}

.k-editor-inline .k-element-resize-handle-wrapper .k-element-resize-handle.k-resize-north {
    cursor: n-resize;
}

.k-editor-inline .k-element-resize-handle-wrapper .k-element-resize-handle.k-resize-northeast {
    cursor: ne-resize;
}

.k-editor-inline .k-element-resize-handle-wrapper .k-element-resize-handle.k-resize-northwest {
    cursor: nw-resize;
}

.k-editor-inline .k-element-resize-handle-wrapper .k-element-resize-handle.k-resize-south {
    cursor: s-resize;
}

.k-editor-inline .k-element-resize-handle-wrapper .k-element-resize-handle.k-resize-southeast {
    cursor: se-resize;
}

.k-editor-inline .k-element-resize-handle-wrapper .k-element-resize-handle.k-resize-southwest {
    cursor: sw-resize;
}

.k-editor-inline .k-element-resize-handle-wrapper .k-element-resize-handle.k-resize-west {
    cursor: w-resize;
}

.k-editor-inline .k-column-resize-handle-wrapper {
    position: absolute;
    height: 10px;
    width: 10px;
    cursor: col-resize;
    z-index: 2;
}

.k-editor-inline .k-column-resize-handle-wrapper .k-column-resize-handle {
    width: 100%;
    height: 100%;
}

.k-editor-inline .k-column-resize-handle-wrapper .k-column-resize-handle .k-column-resize-marker {
    width: 2px;
    height: 100%;
    margin-block: 0;
    margin-inline: auto;
    display: none;
    opacity: .8;
}

.k-editor-inline .k-row-resize-handle-wrapper {
    position: absolute;
    z-index: 2;
    cursor: row-resize;
    width: 10px;
    height: 10px;
}

.k-editor-inline .k-row-resize-handle-wrapper .k-row-resize-handle {
    display: table;
    width: 100%;
    height: 100%;
}

.k-editor-inline .k-row-resize-handle-wrapper .k-row-resize-marker-wrapper {
    display: table-cell;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

.k-editor-inline .k-row-resize-handle-wrapper .k-row-resize-marker {
    display: none;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 2px;
    opacity: .8;
}

.k-editor {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-editor.k-readonly .k-editor-content.k-focus {
    outline-color: #212529;
}

.k-editor-inline .k-table,
.k-editor-inline .k-table td {
    border-color: #cccccc;
}

.k-editor-inline .k-element-resize-handle-wrapper {
    background-color: #ffffff;
    border-color: #000000;
}

.k-editor-inline .k-column-resize-handle-wrapper .k-column-resize-handle .k-column-resize-marker {
    background-color: #00b0ff;
}

.k-editor-inline .k-row-resize-handle-wrapper .k-row-resize-marker {
    background-color: #00b0ff;
}

.k-editor-inline:hover, .k-editor-inline.k-hover, .k-editor-inline.k-active {
    border-color: #dee2e6;
}

.k-editor-resize-handle {
    background-color: #ffffff;
    border-color: #000000;
}

.ProseMirror-selectednode {
    outline-color: #8cf;
}

.k-ct-popup .k-selected {
    border-color: #0c65e9;
    color: #ffffff;
    background-color: #0d6efd;
    background-image: none;
}

.k-editor-content .k-text-selected, .k-editor-content::selection {
    color: white;
    background-color: #0d6efd;
}

.k-editor-content .k-text-highlighted {
    background-color: #cfe2ff;
}

.k-editor-content td,
.k-editor-content th {
    border-color: #dddddd;
}

.k-editor-content .selectedCell::after {
    background-color: rgba(200, 200, 255, 0.4);
}

.k-imageeditor {
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, 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-imageeditor *,
.k-imageeditor *::before,
.k-imageeditor *::after {
    box-sizing: border-box;
}

.k-imageeditor-toolbar {
    border-width: 0;
    border-bottom-width: 1px;
}

.k-imageeditor-content {
    border-width: 0;
    border-style: solid;
    border-color: inherit;
    display: flex;
    flex-flow: row nowrap;
}

.k-imageeditor-canvas-container {
    flex: 1 1 100%;
    display: flex;
    flex-flow: row nowrap;
    overflow: auto;
}

.k-imageeditor-canvas {
    margin: auto;
    display: flex;
    flex-direction: column;
    position: relative;
}

.k-imageeditor-action-pane {
    padding-block: 2rem;
    padding-inline: 1rem;
    width: calc( 240px + 1px);
    border-width: 0;
    border-left-width: 1px;
    border-style: solid;
    border-color: inherit;
    box-sizing: border-box;
    flex: none;
    overflow-y: auto;
}

.k-imageeditor-action-pane .k-input-inner,
.k-imageeditor-action-pane .k-input-value-text {
    text-overflow: clip;
}

.k-imageeditor-crop-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.k-imageeditor-crop {
    width: 100%;
    height: 100%;
    border-width: 1px;
    border-style: dashed;
    box-sizing: border-box;
    position: absolute;
}

.k-imageeditor-crop .k-resize-handle {
    margin-block: 1px;
    margin-inline: 1px;
    border-style: solid;
    border-width: 0 2px 2px 0;
}

.k-imageeditor-crop .k-resize-sw,
.k-imageeditor-crop .k-resize-se,
.k-imageeditor-crop .k-resize-nw,
.k-imageeditor-crop .k-resize-ne {
    width: 15px;
    height: 15px;
}

.k-imageeditor-crop .k-resize-n,
.k-imageeditor-crop .k-resize-s {
    left: calc( 50% - (7.5px));
    width: 15px;
    height: 0;
}

.k-imageeditor-crop .k-resize-w,
.k-imageeditor-crop .k-resize-e {
    top: calc( 50% - (7.5px));
    width: 0;
    height: 15px;
}

.k-imageeditor-crop .k-resize-ne {
    transform: rotate(-90deg);
}

.k-imageeditor-crop .k-resize-nw {
    transform: rotate(-180deg);
}

.k-imageeditor-crop .k-resize-sw {
    transform: rotate(90deg);
}

.k-imageeditor-crop .k-resize-n {
    top: 0;
}

.k-imageeditor-crop .k-resize-s {
    bottom: 0;
}

.k-imageeditor-crop .k-resize-w {
    left: 0;
}

.k-imageeditor-crop .k-resize-e {
    right: 0;
}

.k-imageeditor {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-imageeditor-content {
    background-color: #c6c6c6;
}

.k-imageeditor-canvas {
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.09) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.09) 75%, rgba(0, 0, 0, 0.09)), linear-gradient(45deg, rgba(0, 0, 0, 0.09) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.09) 75%, rgba(0, 0, 0, 0.09)), white;
    background-repeat: repeat, repeat;
    background-position: 0px 0px, calc( 10px / 2) calc( 10px / 2);
    transform-origin: 0 0 0;
    background-origin: padding-box, padding-box;
    background-size: 10px 10px, 10px 10px;
    box-shadow: none;
    text-shadow: none;
    transition: none;
    transform: scaleX(1) scaleY(1) scaleZ(1);
}

.k-imageeditor-action-pane {
    background-color: #ffffff;
}

.k-imageeditor-crop {
    border-color: white;
}

.k-imageeditor-crop-overlay {
    background-color: rgba(0, 0, 0, 0.3);
}

.k-gantt {
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    line-height: 1.5;
    display: flex;
    flex-flow: column nowrap;
    position: relative;
    white-space: nowrap;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-gantt .k-table-td {
    white-space: nowrap;
}

.k-gantt td {
    overflow: hidden;
    white-space: nowrap;
    vertical-align: top;
}

.k-gantt .k-grid-header tr {
    height: calc( calc( 1.5 * 1em) + 1rem + 1px);
}

.k-gantt .k-grid-header .k-header {
    position: static;
}

.k-gantt .k-treelist .k-grid-header .k-header {
    position: relative;
}

.k-gantt .k-grid-content tr {
    height: calc( calc( 1.5 * 1em) + 1rem + 0px);
}

.k-gantt.k-gantt-planned .k-grid-content tr {
    height: calc( calc( 1.5 * 1em) * 1.7 + 1rem + 0px);
}

.k-gantt .k-gantt-layout {
    white-space: normal;
    vertical-align: top;
    display: inline-block;
}

.k-gantt .k-splitbar {
    position: relative;
    display: inline-flex;
}

.k-gantt .k-treelist-scrollable {
    width: 100%;
    border-width: 0;
    overflow: auto;
}

.k-gantt .k-treelist-scrollable .k-grid-header .k-header {
    position: sticky;
}

.k-gantt .k-treelist-scrollable .k-grid-header th,
.k-gantt .k-treelist-scrollable .k-grid-content-sticky {
    z-index: 4;
}

.k-gantt .k-treelist-scrollable .k-grid-header th.k-grid-header-sticky {
    z-index: 5;
}

.k-gantt .k-treelist-scrollable .k-grid-header tr:first-child th:last-child,
.k-gantt .k-treelist-scrollable tbody td:last-child {
    padding: 0;
    vertical-align: top;
}

.k-gantt .k-treelist-scrollable .k-grid-header th:last-child .k-header {
    padding-block: 0.5rem;
    padding-inline: 0.5rem;
    border-width: 0 0 1px 1px;
    white-space: nowrap;
}

.k-gantt .k-treelist-scrollable tr.k-selected > td:last-child {
    background: transparent;
}

.k-gantt .k-treelist-scrollable .k-task {
    display: inline-flex;
    flex-flow: row nowrap;
    white-space: nowrap;
    z-index: 3;
}

.k-gantt .k-treelist-scrollable .k-task:hover .k-task-start,
.k-gantt .k-treelist-scrollable .k-task:hover .k-task-end {
    display: block;
}

.k-gantt .k-treelist-scrollable .k-task:hover .k-task-draghandle {
    visibility: visible;
}

.k-gantt .k-treelist-scrollable .k-task-content {
    padding-block: 0.25rem;
    padding-inline: 0.5rem;
    display: block;
    line-height: normal;
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.k-gantt .k-treelist-scrollable .k-task-actions {
    flex-shrink: 0;
}

.k-gantt .k-treelist-scrollable .k-task-milestone {
    border: 0;
    transform: none;
    background: none;
}

.k-gantt .k-treelist-scrollable .k-task-milestone .k-task-milestone-content {
    width: 100%;
    height: 100%;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    transform: rotate(45deg);
}

.k-gantt .k-treelist-scrollable .k-task-summary {
    height: 15px;
    clip-path: polygon(-20px 0, calc(100% + 20px) 0, calc(100% + 20px) 100%, 100% 100%, calc(100% - 8px) calc(100% - 5px), 8px calc(100% - 5px), 0 100%, -20px 100%);
}

.k-gantt .k-treelist-scrollable .k-task-summary-complete {
    width: 100%;
    height: 15px;
}

.k-gantt .k-treelist-scrollable .k-task-start {
    transform: translateX(-140%) translateY(-50%);
}

.k-gantt .k-treelist-scrollable .k-task-end {
    transform: translateX(140%) translateY(-50%);
}

.k-gantt .k-treelist-scrollable .k-master-row:hover .k-task-dot {
    display: block;
}

.k-gantt .k-treelist-scrollable .k-gantt-columns {
    background: transparent;
    pointer-events: none;
    table-layout: fixed;
}

.k-gantt .k-gantt-dependencies-svg {
    position: absolute;
    top: 0;
    left: 0;
    overflow: visible;
    pointer-events: none;
    z-index: 2;
}

.k-gantt .k-gantt-dependencies-svg polyline {
    stroke-width: 2px;
}

.k-gantt-header {
    border-width: 0 0 1px;
    flex-shrink: 0;
    z-index: 6;
}

.k-gantt-footer {
    border-width: 1px 0 0;
    flex-shrink: 0;
}

.k-gantt-toggle {
    display: none;
}

.k-gantt-views-wrapper {
    margin-left: auto;
}

.k-gantt-views-wrapper .k-views-dropdown {
    width: auto;
    font-size: inherit;
    display: none;
    cursor: pointer;
}

@media (max-width: 480px) {
    .k-gantt-toolbar .k-gantt-toggle {
        display: inline-flex;
    }
    .k-gantt-toolbar .k-gantt-pdf,
    .k-gantt-toolbar .k-gantt-create {
        padding: 0.375rem;
        width: calc( 1.5em + 0.75rem + 2px);
        height: calc( 1.5em + 0.75rem + 2px);
    }
    .k-gantt-toolbar .k-gantt-pdf .k-button-text,
    .k-gantt-toolbar .k-gantt-create .k-button-text {
        display: none;
    }
}

@media (max-width: 1024px) {
    .k-gantt-views-wrapper .k-gantt-views {
        display: none;
    }
    .k-gantt-views-wrapper .k-views-dropdown {
        display: flex;
    }
}

.k-gantt-content {
    display: flex;
    flex-flow: row nowrap;
    align-items: stretch;
    flex: 1 1 auto;
    overflow: hidden;
}

.k-gantt-treelist .k-treelist {
    height: 100%;
    border-width: 0;
}

.k-gantt-treelist .k-grid-header,
.k-gantt-treelist .k-grid-footer {
    padding: 0 !important;
}

.k-gantt-treelist .k-grid-header tr {
    height: calc( calc( 1.5 * 1em) * 2 + 2rem + 2px);
    vertical-align: bottom;
}

.k-gantt-treelist .k-grid-content {
    overflow: hidden;
    overflow-x: scroll;
}

.k-gantt-treelist .k-grid-content td {
    vertical-align: middle;
}

.k-gantt-treelist .k-gantt-treelist-nested-columns .k-grid-header tr {
    height: calc( calc( 1.5 * 1em) + 1rem + 1px);
}

.k-gantt-treelist.k-gantt-treelist-scrollable .k-grid-content {
    overflow: scroll;
}

.k-gantt-timeline .k-timeline {
    height: 100%;
    border-width: 0;
    display: flex;
}

.k-gantt-timeline .k-grid-content {
    overflow-x: scroll;
}

.k-gantt-timeline .k-header {
    padding-block: 0.5rem;
    padding-inline: 0.5rem;
    border-width: 0 0 1px 1px;
    white-space: nowrap;
}

.k-gantt-tables {
    position: relative;
    border-color: inherit;
}

.k-gantt-rows,
.k-gantt-columns {
    border-color: inherit;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
}

.k-gantt-dependencies {
    opacity: .7;
    position: absolute;
    top: 0;
    left: 0;
}

.k-gantt-dependencies .k-arrow-e,
.k-gantt-dependencies .k-arrow-w {
    width: 0;
    height: 0;
    border: 5px solid transparent;
    position: absolute;
    top: -4px;
}

.k-gantt-dependencies .k-arrow-e {
    border-left-color: currentColor;
    right: -6px;
}

.k-gantt-dependencies .k-arrow-w {
    border-right-color: currentColor;
    left: -6px;
}

.k-gantt-line {
    background-color: currentColor;
    border-color: currentColor;
    position: absolute;
}

.k-gantt-line.k-selected {
    z-index: 3;
}

.k-gantt-line-h {
    height: 2px;
}

.k-gantt-line-v {
    width: 2px;
}

.k-gantt-dependency-hint {
    z-index: 4;
}

.k-gantt-tasks {
    position: relative;
}

.k-gantt-tasks td,
.k-gantt-tasks .k-table-td {
    padding: 0;
    border-width: 0;
    position: relative;
    vertical-align: middle;
}

.k-gantt-tasks td::after {
    content: "\200b";
}

.k-task-wrap {
    margin-block: 0;
    margin-inline: -21px;
    padding-block: 5px;
    padding-inline: 21px;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    z-index: 2;
}

.k-task-wrap.k-drag-hint {
    position: absolute;
}

.k-task {
    position: relative;
    flex: 1 1 auto;
}

.k-task-dot {
    width: calc( 8px + 8px);
    height: calc( 8px + 8px);
    line-height: 1;
    cursor: pointer;
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.k-task-wrap:hover .k-task-dot,
.k-task-wrap.k-origin .k-task-dot {
    display: block;
}

.k-task-dot::before {
    content: "";
    width: 8px;
    height: 8px;
    border-width: 0;
    border-style: solid;
    border-radius: 100%;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.k-task-dot:hover::before,
.k-task-dot.k-hover::before {
    border-width: 1px;
}

.k-task-start {
    left: 0;
}

.k-task-end {
    right: 0;
}

.k-task-draghandle {
    margin-left: 16px;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-top-width: 0;
    border-bottom-color: inherit;
    position: absolute;
    bottom: 0;
    cursor: e-resize;
    visibility: hidden;
}

.k-task-wrap:hover .k-task-draghandle {
    visibility: visible;
}

.k-milestone-wrap {
    margin-block: 0;
    margin-inline: -2em;
}

.k-task-milestone {
    width: 1em;
    height: 1em;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    transform: rotate(45deg);
}

.k-task-summary {
    height: 10px;
    display: inline-block;
    vertical-align: top;
}

.k-task-summary,
.k-task-summary-complete {
    background-color: currentColor;
}

.k-task-summary::before, .k-task-summary::after,
.k-task-summary-complete::before,
.k-task-summary-complete::after {
    content: "";
    width: 0;
    height: 0;
    border: 8px solid transparent;
    position: absolute;
    top: 0;
    display: none;
}

.k-task-summary::before,
.k-task-summary-complete::before {
    border-left-color: currentColor;
    left: 0;
}

.k-task-summary::after,
.k-task-summary-complete::after {
    border-right-color: currentColor;
    right: 0;
}

.k-task-summary-complete {
    height: 10px;
    position: relative;
    z-index: 2;
}

.k-task-summary-progress {
    height: 15px;
    overflow: hidden;
}

.k-task-single {
    border-radius: 0.375rem;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    cursor: default;
}

.k-task-single .k-resize-handle {
    opacity: .5;
    z-index: 2;
    visibility: hidden;
}

.k-task-single .k-resize-handle::before {
    position: absolute;
    top: 2px;
    bottom: 2px;
}

.k-task-single .k-resize-w {
    left: 0;
}

.k-task-single .k-resize-w::before {
    left: 2px;
    border-left-width: 1px;
}

.k-task-single .k-resize-e {
    right: 0;
}

.k-task-single .k-resize-e::before {
    right: 2px;
    border-left-width: 1px;
}

.k-task-single:hover .k-resize-handle,
.k-task-single:hover .k-task-actions {
    visibility: visible;
}

.k-task-complete {
    border-radius: 0.375rem;
    width: 20%;
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
}

.k-task-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    white-space: nowrap;
}

.k-task-template {
    padding-block: 0.25rem;
    padding-inline: 0.5rem;
    line-height: normal;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.k-task-actions {
    padding: 0.25rem;
    white-space: nowrap;
    display: flex;
    flex-direction: row;
    align-items: center;
    visibility: hidden;
    z-index: 1;
}

.k-task-actions > .k-link {
    display: inline-flex;
}

.k-resources-wrap {
    position: absolute;
    display: inline-block;
    z-index: 2;
    margin-left: 20px;
    margin-top: -2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.k-resources-wrap .k-resource {
    margin-block: 0;
    margin-inline: 5px;
}

.k-task-details {
    padding-block: 0.5rem;
    padding-inline: 1rem;
    white-space: nowrap;
}

.k-task-details strong {
    font-size: 1.25rem;
    font-weight: normal;
    display: block;
}

.k-task-details .k-task-pct {
    font-size: calc( 16px * 2);
}

.k-task-details ul {
    line-height: normal;
}

.k-gantt-planned .k-gantt-dependencies,
.k-gantt-planned .k-task-dot,
.k-gantt-planned .k-resources-wrap {
    margin-top: 0.6em;
}

.k-gantt-planned .k-task-wrap {
    flex-direction: column;
    align-items: flex-start;
}

.k-gantt-planned .k-task-inner-wrap {
    display: inline-flex;
}

.k-gantt-planned .k-task-wrap.k-drag-hint {
    top: 0.35em;
}

.k-gantt-planned .k-summary-wrap.k-drag-hint {
    top: 1em;
}

.k-gantt-planned .k-milestone-wrap.k-drag-hint {
    top: 0.85em;
}

.k-task-planned {
    margin: 0 0 0.35em;
    line-height: 0.75em;
    display: flex;
    align-items: center;
}

.k-task-planned .k-task-moment {
    border-width: 2px;
    border-radius: calc( ( 4px + 6px ) / 2);
    border-style: solid;
    height: 6px;
    width: 6px;
}

.k-task-planned .k-task-duration {
    height: 2px;
}

.k-task-planned .k-task-moment.k-moment-left {
    margin-left: calc( 1px - calc( ( 4px + 6px ) / 2));
}

.k-task-planned:hover .k-task-duration {
    height: calc( 2px + 1px);
}

.k-milestone-wrap .k-task-moment {
    margin-left: 6px;
}

.k-planned-tooltip .k-task-content {
    display: block;
}

.k-task-offset-wrap .k-task-content .k-resize-e {
    display: none;
}

.k-task-offset {
    flex-direction: row-reverse;
    display: flex;
}

.k-task-offset .k-resize-handle {
    right: 0;
    z-index: 2;
    visibility: hidden;
    margin-right: 1.2em;
}

.k-task-offset .k-resize-handle::before {
    border-left-width: 1px;
    position: absolute;
    top: 45%;
    bottom: .5em;
    margin-right: 2px;
}

.k-task-single:hover + .k-task-offset .k-task-actions,
.k-task-offset:hover .k-task-actions,
.k-task-single:hover + .k-task-offset .k-resize-handle,
.k-task-offset:hover .k-resize-handle {
    visibility: visible;
}

.k-gantt-tooltip-validation {
    max-width: 200px;
    display: block;
}

.k-gantt-tooltip-validation::before {
    content: "";
    width: 4px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.k-gantt-tooltip-validation-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.k-gantt-tooltip-validation-label {
    display: inline-flex;
    min-width: 50px;
}

.k-gantt-tooltip-validation-value {
    font-weight: 700;
}

.k-gantt-tooltip-validation-label,
.k-gantt-tooltip-validation-value {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.k-pdf-export-shadow .k-gantt {
    float: left;
}

.k-pdf-export-shadow .k-gantt,
.k-pdf-export-shadow .k-gantt-timeline,
.k-pdf-export-shadow .k-gantt-dependencies {
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
}

.k-pdf-export-shadow .k-gantt-treelist .k-treelist {
    display: block;
}

.k-pdf-export-shadow .k-gantt-layout.k-splitbar {
    display: none;
}

.k-gantt-edit-form .k-gantt-delete {
    float: left;
}

.k-rtl .k-gantt-rows,
.k-rtl .k-gantt-columns,
[dir="rtl"] .k-gantt-rows,
[dir="rtl"] .k-gantt-columns {
    left: auto;
    right: 0;
}

.k-rtl .k-task-wrap:not(.k-milestone-wrap),
[dir="rtl"] .k-task-wrap:not(.k-milestone-wrap) {
    margin-block: 0;
    margin-inline: -26px;
}

.k-rtl .k-gantt-timeline .k-header,
[dir="rtl"] .k-gantt-timeline .k-header {
    border-width: 0 1px 1px 0;
}

.k-rtl .k-gantt-timeline .k-header:first-child,
[dir="rtl"] .k-gantt-timeline .k-header:first-child {
    border-right-width: 0;
}

.k-rtl .k-gantt-timeline .k-task-start,
[dir="rtl"] .k-gantt-timeline .k-task-start {
    left: auto;
    right: 0;
}

.k-rtl .k-gantt-timeline .k-task-end,
[dir="rtl"] .k-gantt-timeline .k-task-end {
    right: auto;
    left: 0;
}

.k-rtl .k-task-content,
[dir="rtl"] .k-task-content {
    text-align: end;
}

.k-rtl .k-task-complete,
[dir="rtl"] .k-task-complete {
    left: auto;
    right: 0;
}

.k-rtl .k-task-draghandle,
[dir="rtl"] .k-task-draghandle {
    margin-left: 0;
    margin-right: 16px;
}

.k-rtl .k-gantt-dependencies,
[dir="rtl"] .k-gantt-dependencies {
    left: auto;
    right: 0;
}

.k-rtl .k-gantt-delete,
[dir="rtl"] .k-gantt-delete {
    float: right;
}

.k-rtl .k-task-offset-wrap .k-task-content .k-resize-e,
[dir="rtl"] .k-task-offset-wrap .k-task-content .k-resize-e {
    display: block;
}

.k-rtl .k-task-offset-wrap .k-task-content .k-resize-w,
[dir="rtl"] .k-task-offset-wrap .k-task-content .k-resize-w {
    display: none;
}

.k-rtl .k-milestone-wrap,
[dir="rtl"] .k-milestone-wrap {
    margin-left: -2.3em;
}

.k-rtl .k-milestone-wrap .k-task-moment,
[dir="rtl"] .k-milestone-wrap .k-task-moment {
    margin-right: 0.2em;
}

.k-rtl .k-gantt-timeline .k-milestone-wrap .k-task-start,
[dir="rtl"] .k-gantt-timeline .k-milestone-wrap .k-task-start {
    right: -0.1em;
}

.k-rtl .k-gantt-tooltip-validation::before,
[dir="rtl"] .k-gantt-tooltip-validation::before {
    left: auto;
    right: 0;
}

.k-gantt {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-gantt .k-treelist-scrollable .k-task-milestone .k-task-milestone-content {
    border-color: #babec1;
    background-color: #dee2e6;
}

.k-gantt .k-treelist-scrollable .k-task-milestone.k-selected .k-task-milestone-content {
    border-color: #0c65e9;
    background-color: #0d6efd;
}

.k-gantt .k-gantt-dependencies-svg polyline {
    fill: none;
    stroke: #909294;
}

.k-gantt .k-gantt-dependencies-svg polyline.k-selected {
    stroke: #0d6efd;
}

.k-gantt-footer {
    box-shadow: none;
}

.k-gantt-treelist .k-treelist,
.k-gantt-treelist .k-grid-content {
    background-color: transparent;
}

.k-gantt .k-nonwork-hour {
    background-color: rgba(0, 0, 0, 0.025);
}

.k-task-dot::before {
    background-color: #212529;
}

.k-task-dot:hover::before,
.k-task-dot.k-hover::before {
    border-color: #212529;
    background-color: #ffffff;
}

.k-task-milestone {
    border-color: #babec1;
    background-color: #dee2e6;
}

.k-task-milestone.k-task-delayed {
    background-image: repeating-linear-gradient(90deg, #ffffff, #ffffff 2px, #dc3545 2px, #dc3545 4px);
}

.k-task-milestone.k-task-advanced {
    background-color: #198754;
}

.k-task-milestone.k-selected {
    background-image: none;
    border-color: #0c65e9;
    background-color: #0d6efd;
}

.k-task-summary {
    color: #909294;
}

.k-task-summary.k-task-delayed {
    color: #ea868f;
}

.k-task-summary.k-task-advanced {
    color: #75b798;
}

.k-task-summary-complete {
    color: #212529;
}

.k-task-delayed .k-task-summary-complete {
    color: #dc3545;
}

.k-task-advanced .k-task-summary-complete {
    color: #198754;
}

.k-task-summary.k-selected {
    color: #86b7fe;
}

.k-task-summary.k-selected .k-task-summary-complete {
    color: #0d6efd;
}

.k-task-single {
    border-color: #ced4da;
    color: black;
    background-color: #dee2e6;
}

.k-task-single.k-task-delayed {
    background-color: #ea868f;
}

.k-task-single.k-task-advanced {
    background-color: #75b798;
}

.k-task-single .k-task-complete {
    background-color: #ced4da;
}

.k-task-delayed .k-task-complete {
    background-color: #dc3545;
}

.k-task-advanced .k-task-complete {
    background-color: #198754;
}

.k-task-single.k-selected {
    border-color: #0d6efd;
    color: #ffffff;
    background-color: #86b7fe;
}

.k-task-single.k-selected .k-task-complete {
    background-color: #0d6efd;
}

.k-gantt-line {
    color: #909294;
}

.k-gantt-line.k-selected {
    color: #0d6efd;
}

.k-task-planned .k-task-moment {
    border-color: #0d6efd;
    background-color: transparent;
}

.k-task-planned .k-task-duration {
    background-color: #0d6efd;
}

.k-task-planned:hover .k-task-moment {
    background-color: #0d6efd;
}

.k-task-offset {
    background-image: repeating-linear-gradient(135deg, #ffffff, #ffffff 2px, #dc3545 2px, #dc3545 4px);
}

.k-task-offset .k-resize-e::before {
    border-color: #000000;
}

.k-task-offset .k-task-actions {
    color: #000000;
}

.k-task-offset:hover {
    background-image: repeating-linear-gradient(135deg, #ffffff, #ffffff 2px, #ea868f 2px, #ea868f 4px);
}

.k-pdf-export .k-task-offset {
    background-color: #dc3545;
}

.k-offset-tooltip-delayed {
    background-color: #dc3545;
}

.k-planned-tooltip {
    background-color: #0d6efd;
}

.k-gantt-tooltip-validation::before {
    background-color: #656565;
}

.k-gantt-tooltip-valid::before {
    background-color: #198754;
}

.k-gantt-tooltip-invalid::before {
    background-color: #dc3545;
}

.k-scheduler {
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-scheduler table,
.k-scheduler thead,
.k-scheduler tfoot,
.k-scheduler tbody,
.k-scheduler tr,
.k-scheduler th,
.k-scheduler td,
.k-scheduler div,
.k-scheduler > * {
    border-color: inherit;
}

kendo-scheduler.k-scheduler {
    overflow: hidden;
}

kendo-scheduler.k-scheduler.k-readonly-scheduler .k-event-delete {
    display: none;
}

.k-scheduler-table {
    width: 100%;
    max-width: none;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
}

.k-scheduler-table td,
.k-scheduler-table th {
    padding-block: 0.75rem;
    padding-inline: 0.75rem;
    height: calc( 1.5 * 1em);
    overflow: hidden;
    white-space: nowrap;
    border-style: solid;
    border-width: 0 0 1px 1px;
    vertical-align: top;
    box-sizing: content-box;
}

.k-scheduler-table td:first-child,
.k-scheduler-table th:first-child {
    border-left-width: 0;
}

.k-scheduler-table .k-middle-row td {
    border-bottom-style: dotted;
}

.k-scheduler-table .k-link {
    cursor: pointer;
}

.k-scheduler-layout-flex {
    overflow: auto;
}

.k-scheduler-layout-flex .k-scheduler-head {
    position: sticky;
    top: 0;
    z-index: 3;
}

.k-scheduler-layout-flex .k-scheduler-body {
    position: relative;
}

.k-scheduler-layout-flex .k-scheduler-head,
.k-scheduler-layout-flex .k-scheduler-body {
    display: flex;
    flex: 100%;
    flex-wrap: wrap;
}

.k-scheduler-layout-flex .k-scheduler-row {
    display: flex;
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
}

.k-scheduler-layout-flex .k-scheduler-group {
    display: flex;
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
    flex-wrap: wrap;
}

.k-scheduler-layout-flex .k-scheduler-group .k-group-cell {
    display: flex;
    flex: 1 1 auto;
    flex-wrap: wrap;
    overflow: auto;
}

.k-scheduler-layout-flex .k-scheduler-group .k-group-content {
    padding: 0;
    display: flex;
    flex: 1 1 100%;
    width: 100%;
    border-width: 0;
    flex-wrap: wrap;
}

.k-scheduler-layout-flex .k-scheduler-group.k-group-horizontal .k-group-cell {
    flex-basis: 100%;
    border-width: 0;
    padding: 0;
}

.k-scheduler-layout-flex.k-scheduler-timeline-view .k-scheduler-body .k-scheduler-cell {
    flex-basis: auto;
}

.k-scheduler-layout-flex .k-more-events {
    bottom: 2px;
    left: 0;
    width: 100%;
}

.k-scheduler-layout-flex .k-scheduler-cell {
    display: flex;
    flex: 1 1 100%;
    padding-block: 0.75rem;
    padding-inline: 0.75rem;
    min-height: 1.5em;
    overflow: hidden;
    white-space: nowrap;
    border-style: solid;
    border-width: 0 1px 1px 0;
    vertical-align: top;
    box-sizing: content-box;
}

.k-scheduler-layout-flex .k-scheduler-cell.k-slot-cell {
    position: relative;
}

.k-scheduler-layout-flex .k-scheduler-cell.k-heading-cell {
    justify-content: center;
    font-weight: bold;
}

.k-scheduler-layout-flex .k-scheduler-cell.k-side-cell {
    justify-content: flex-end;
    flex-grow: 0;
    flex-basis: auto;
    overflow: visible;
}

.k-scheduler-layout-flex .k-scheduler-cell.k-major-cell {
    border-bottom-width: 0;
}

.k-scheduler-layout-flex .k-middle-row .k-scheduler-cell {
    border-bottom-style: dotted;
}

.k-scheduler-layout-flex .k-resource-cell {
    flex: none;
    display: flex;
    flex-wrap: wrap;
    overflow: visible;
}

.k-scheduler-layout-flex .k-resource-content {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    border-width: 0;
}

.k-scheduler-layout-flex .k-sticky-cell {
    display: flex;
    flex-wrap: wrap;
    flex-basis: 0;
    position: sticky;
    left: 0;
    z-index: 3;
}

.k-scheduler-toolbar {
    border-width: 0;
    border-bottom-width: 1px;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.k-scheduler-toolbar .k-widget {
    font-size: inherit;
}

.k-scheduler-toolbar .k-nav-current {
    color: inherit;
    outline: 0;
    text-decoration: none;
    display: inline-flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.k-scheduler-toolbar .k-scheduler-search {
    display: inline-flex;
    flex-flow: row nowrap;
}

.k-scheduler-views-wrapper .k-views-dropdown {
    width: auto;
    font: inherit;
    display: none;
}

@media (max-width: 1024px) {
    .k-scheduler-views-wrapper .k-scheduler-views {
        display: none;
    }
    .k-scheduler-views-wrapper .k-views-dropdown {
        display: inline-block;
    }
}

.k-scheduler-footer {
    box-shadow: none;
    border-width: 0;
    border-top-width: 1px;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
}

.k-scheduler-layout {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    flex: 1 1 auto;
    position: relative;
    z-index: 1;
}

.k-scheduler-layout > tbody > tr > td {
    padding: 0;
    vertical-align: top;
}

.k-scheduler-layout td.k-selected,
.k-scheduler-layout .k-scheduler-cell.k-selected {
    outline: none;
}

.k-scheduler-layout tr + tr .k-scheduler-times tr th,
.k-scheduler-layout .k-scheduler-pane + .k-scheduler-pane .k-scheduler-times tr th {
    border-bottom-color: transparent;
}

.k-scheduler-layout tr + tr .k-scheduler-times tr .k-slot-cell,
.k-scheduler-layout tr + tr .k-scheduler-times tr .k-scheduler-times-all-day,
.k-scheduler-layout tr + tr .k-scheduler-times tr:last-child th,
.k-scheduler-layout .k-scheduler-pane + .k-scheduler-pane .k-scheduler-times tr .k-slot-cell,
.k-scheduler-layout .k-scheduler-pane + .k-scheduler-pane .k-scheduler-times tr .k-scheduler-times-all-day,
.k-scheduler-layout .k-scheduler-pane + .k-scheduler-pane .k-scheduler-times tr:last-child th {
    border-bottom-color: inherit;
}

.k-scheduler-layout.k-scheduler-flex-layout {
    display: flex;
    flex-direction: column;
}

.k-scheduler-layout.k-scheduler-flex-layout.k-scheduler-weekview .k-scheduler-pane:first-child .k-scheduler-table, .k-scheduler-layout.k-scheduler-flex-layout.k-scheduler-dayview .k-scheduler-pane:first-child .k-scheduler-table {
    table-layout: fixed;
}

.k-scheduler-header,
.k-scheduler-view-header {
    padding-inline-end: var(--kendo-scrollbar-width, 17px);
}

.k-scheduler-header th {
    text-align: center;
}

.k-scheduler-header,
.k-scheduler-header-wrap,
.k-scheduler-header-wrap > div {
    border-color: inherit;
    overflow: hidden;
}

.k-scheduler-header-wrap {
    border-width: 0;
    border-style: solid;
    position: relative;
}

.k-scheduler-times {
    border-color: inherit;
    position: relative;
    overflow: hidden;
}

.k-scheduler-times .k-scheduler-table {
    table-layout: auto;
}

.k-scheduler-times th {
    border-width: 0 1px 1px 0;
    text-align: end;
}

.k-scheduler-times .k-slot-cell,
.k-scheduler-times .k-scheduler-times-all-day {
    border-bottom-color: inherit;
}

.k-scheduler-times .k-slot-cell.k-last-resource {
    border-right: 0;
}

.k-scheduler-times .k-slot-cell.k-empty-slot {
    padding-left: 0;
    padding-right: 0;
}

.k-scheduler-datecolumn {
    width: 12em;
}

.k-scheduler-timecolumn {
    width: 11em;
    white-space: nowrap;
}

.k-scheduler-content {
    border-color: inherit;
    position: relative;
    overflow: auto;
}

.k-scheduler-content:focus {
    outline: none;
}

kendo-scheduler .k-event,
.k-event {
    border-radius: 0.375rem;
    min-height: 25px;
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-radius: 0.375rem;
    text-align: start;
    outline: 0;
    cursor: default;
    position: absolute;
    overflow: hidden;
    padding-right: 1rem;
}

kendo-scheduler .k-event > div,
.k-event > div {
    position: relative;
    z-index: 2;
}

kendo-scheduler .k-event .k-event-template,
.k-event .k-event-template {
    line-height: calc( 25px - (2 * 0.25rem));
    padding-block: 0.5rem;
    padding-inline: 1rem;
}

kendo-scheduler .k-event .k-event-time,
.k-event .k-event-time {
    padding-bottom: 0;
    font-size: .875em;
    white-space: nowrap;
    display: none;
}

kendo-scheduler .k-event .k-event-actions,
.k-event .k-event-actions {
    white-space: nowrap;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1rem;
    z-index: 2;
}

kendo-scheduler .k-event .k-event-actions .k-event-delete,
.k-event .k-event-actions .k-event-delete {
    opacity: .5;
    visibility: hidden;
}

kendo-scheduler .k-event .k-event-actions:hover .k-event-delete, kendo-scheduler .k-event .k-event-actions.k-hover .k-event-delete,
.k-event .k-event-actions:hover .k-event-delete,
.k-event .k-event-actions.k-hover .k-event-delete {
    opacity: 1;
}

kendo-scheduler .k-event .k-event-actions .k-icon,
kendo-scheduler .k-event .k-event-actions .k-svg-icon,
.k-event .k-event-actions .k-icon,
.k-event .k-event-actions .k-svg-icon {
    line-height: normal;
    font-size: inherit;
}

kendo-scheduler .k-event .k-event-actions a,
.k-event .k-event-actions a {
    color: inherit;
}

kendo-scheduler .k-event .k-event-actions:first-child,
.k-event .k-event-actions:first-child {
    margin: 0.25rem 0.4ex 0 0.5rem;
    top: 0;
    right: 0;
    float: left;
    position: relative;
    opacity: 1;
    visibility: visible;
    line-height: normal;
}

kendo-scheduler .k-event .k-resize-handle,
.k-event .k-resize-handle {
    z-index: 4;
    opacity: .5;
    visibility: hidden;
}

kendo-scheduler .k-event .k-resize-handle::before,
.k-event .k-resize-handle::before {
    border-color: currentColor;
}

kendo-scheduler .k-event .k-resize-n,
.k-event .k-resize-n {
    height: .5em;
    top: 0;
}

kendo-scheduler .k-event .k-resize-s,
.k-event .k-resize-s {
    height: .5em;
    bottom: 0;
}

kendo-scheduler .k-event .k-resize-n::before,
kendo-scheduler .k-event .k-resize-s::before,
.k-event .k-resize-n::before,
.k-event .k-resize-s::before {
    width: 2rem;
    border-bottom-width: 1px;
}

kendo-scheduler .k-event .k-resize-w,
.k-event .k-resize-w {
    width: .5em;
    left: 0;
}

kendo-scheduler .k-event .k-resize-e,
.k-event .k-resize-e {
    width: .5em;
    right: 0;
}

kendo-scheduler .k-event .k-resize-w::before,
kendo-scheduler .k-event .k-resize-e::before,
.k-event .k-resize-w::before,
.k-event .k-resize-e::before {
    height: 2rem;
    border-left-width: 1px;
}

kendo-scheduler .k-event:hover .k-event-actions .k-event-delete,
kendo-scheduler .k-event:hover .k-resize-handle, kendo-scheduler .k-event.k-hover .k-event-actions .k-event-delete,
kendo-scheduler .k-event.k-hover .k-resize-handle,
.k-event:hover .k-event-actions .k-event-delete,
.k-event:hover .k-resize-handle,
.k-event.k-hover .k-event-actions .k-event-delete,
.k-event.k-hover .k-resize-handle {
    visibility: visible;
}

kendo-scheduler .k-event.k-event-drag-hint .k-event-time,
.k-event.k-event-drag-hint .k-event-time {
    display: block;
}

kendo-scheduler .k-event .k-event-top-actions,
kendo-scheduler .k-event .k-event-bottom-actions,
.k-event .k-event-top-actions,
.k-event .k-event-bottom-actions {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
}

kendo-scheduler .k-event .k-event-bottom-actions,
.k-event .k-event-bottom-actions {
    top: auto;
    bottom: 0;
}

.k-scheduler-mark {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: middle;
}

.k-more-events {
    padding: 0;
    height: 13px;
    border-style: solid;
    border-width: 1px;
    overflow: hidden;
    position: absolute;
    justify-content: center;
}

.k-more-events > .k-icon,
.k-more-events > .k-svg-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.k-current-time {
    position: absolute;
}

.k-current-time.k-current-time-arrow-left, .k-current-time.k-current-time-arrow-right, .k-current-time.k-current-time-arrow-down {
    width: 0;
    height: 0;
    background: transparent;
    border: 4px solid transparent;
}

.k-event-drag-hint {
    opacity: .5;
    z-index: 3;
}

.k-event-drag-hint .k-event-actions,
.k-event-drag-hint .k-event-top-actions,
.k-event-drag-hint .k-event-bottom-actions,
.k-event-drag-hint .k-resize-handle {
    display: none;
}

.k-event-drag-hint .k-event-time {
    display: block;
}

.k-scheduler-marquee {
    border-width: 0;
    border-style: solid;
}

.k-scheduler-marquee .k-label-top,
.k-scheduler-marquee .k-label-bottom {
    font-size: .75em;
    position: absolute;
}

.k-scheduler-marquee .k-label-top {
    left: 0.5rem;
    top: 0.25rem;
}

.k-scheduler-marquee .k-label-bottom {
    right: 0.5rem;
    bottom: 0.25rem;
}

.k-scheduler-marquee.k-first::before, .k-scheduler-marquee.k-last::after {
    content: "";
    border-width: 3px;
    border-style: solid;
    position: absolute;
    width: 0;
    height: 0;
}

.k-scheduler-marquee.k-first::before {
    top: 0;
    left: 0;
    border-right-color: transparent;
    border-bottom-color: transparent;
}

.k-scheduler-marquee.k-last::after {
    bottom: 0;
    right: 0;
    border-left-color: transparent;
    border-top-color: transparent;
}

.k-pdf-export-shadow .k-scheduler,
.k-scheduler-pdf-export .k-scheduler-content,
.k-scheduler-pdf-export .k-scheduler-times {
    height: auto !important;
    overflow: visible !important;
}

.k-scheduler-pdf-export {
    overflow: hidden;
}

.k-scheduler-pdf-export .k-scheduler-header {
    padding: 0 !important;
}

.k-scheduler-pdf-export .k-scheduler-header-wrap {
    border-width: 0 !important;
}

.k-scheduler-pdf-export .k-scheduler-header .k-scheduler-table,
.k-scheduler-pdf-export .k-scheduler-content .k-scheduler-table {
    width: 100% !important;
}

.k-recurrence-editor {
    display: flex;
    flex-direction: column;
}

kendo-scheduler .k-recurrence-editor {
    display: block;
}

.k-scheduler-monthview .k-scheduler-table {
    height: 100%;
}

.k-scheduler-monthview .k-scheduler-table td {
    height: 80px;
    text-align: end;
}

.k-scheduler-monthview .k-scheduler-body .k-scheduler-cell {
    min-height: 80px;
}

.k-scheduler-monthview .k-hidden {
    padding-left: 0 !important;
    padding-right: 0 !important;
    border-right-width: 0 !important;
}

.k-scheduler-monthview .k-scheduler-table-auto,
.k-scheduler-monthview .k-scheduler-table-auto td,
.k-scheduler-monthview .k-scheduler-content .k-scheduler-table-auto {
    height: auto;
}

.k-scheduler-monthview .k-scheduler-content {
    overflow-y: scroll;
}

.k-scheduler-monthview.k-scheduler-flex-layout .k-scheduler-content {
    overflow-y: auto;
}

.k-scheduler-agendaview .k-scheduler-mark {
    margin-right: .5em;
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: middle;
}

.k-scheduler-agendaview .k-scheduler-table th:first-child,
.k-scheduler-agendaview .k-scheduler-table td:first-child {
    border-left-width: 1px;
}

.k-scheduler-agendaview .k-scheduler-table td.k-first {
    border-left-width: 0;
}

.k-scheduler-agendaview .k-task > .k-event-delete {
    color: inherit;
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    opacity: .5;
    visibility: hidden;
}

.k-scheduler-agendaview .k-hover .k-task > .k-event-delete,
.k-scheduler-agendaview .k-scheduler-content tr:hover .k-event-delete,
.k-scheduler-agendaview .k-scheduler-content .k-scheduler-row:hover .k-event-delete,
.k-scheduler-agendaview .k-scheduler-content .k-scheduler-row.k-hover .k-event-delete {
    visibility: visible;
}

.k-scheduler-agendaday {
    margin: 0 .2em 0 0;
    font-size: 3em;
    line-height: 1;
    font-weight: 400;
    float: left;
}

.k-scheduler-agendaweek {
    display: block;
    margin: .4em 0 0;
    line-height: 1;
    font-style: normal;
}

.k-scheduler-agendadate {
    font-size: .75em;
}

.k-scheduler-timelineview .k-slot-cell {
    overflow: hidden;
}

.k-scheduler-timelineview .k-scheduler-content {
    overflow: auto;
}

.k-scheduler-pane {
    display: flex;
    flex-direction: row;
}

.k-scheduler-pane .k-scheduler-times {
    flex: 0 0 auto;
}

.k-scheduler-pane .k-scheduler-times .k-scheduler-table {
    height: 100%;
}

.k-scheduler-pane .k-scheduler-header,
.k-scheduler-pane .k-scheduler-content {
    flex: 1 1 auto;
}

.k-scheduler-yearview .k-scheduler-body {
    padding-block: 1rem;
    padding-inline: 1rem;
    justify-content: center;
}

.k-scheduler-yearview .k-calendar {
    width: 100%;
    border-width: 0;
}

.k-scheduler-yearview .k-calendar .k-calendar-view {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.k-scheduler-yearview .k-calendar .k-content {
    flex: 0;
}

.k-scheduler-yearview .k-calendar .k-link {
    position: relative;
}

.k-scheduler-yearview .k-calendar td.k-selected {
    background-color: inherit;
}

.k-scheduler-yearview .k-day-indicator {
    margin-top: calc( 38px - (0.25rem * 2));
    width: 3px;
    height: 3px;
    border-radius: 50%;
    position: absolute;
    left: calc( 50% - 1.5px);
}

.k-scheduler-tooltip {
    padding-block: 0.75rem;
    padding-inline: 0.75rem;
    border-width: 0;
    color: inherit;
}

.k-scheduler-tooltip .k-tooltip-title {
    margin-bottom: 0.75rem;
}

.k-scheduler-tooltip .k-tooltip-title .k-month {
    font-size: 0.875rem;
    text-transform: uppercase;
}

.k-scheduler-tooltip .k-tooltip-title .k-day {
    font-size: 1.75rem;
}

.k-scheduler-tooltip .k-tooltip-events-container {
    overflow: auto;
}

.k-scheduler-tooltip .k-tooltip-events {
    max-height: 250px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.k-scheduler-tooltip .k-tooltip-event {
    padding-block: 0.25rem;
    padding-inline: 0.5rem;
    border-radius: 0.375rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    gap: 0.5rem;
}

.k-scheduler-tooltip .k-tooltip-event .k-event-time {
    display: flex;
    flex-shrink: 0;
    font-size: inherit;
}

.k-scheduler-tooltip .k-no-data, .k-scheduler-tooltip .k-nodata {
    height: auto;
    min-height: auto;
    color: inherit;
}

.k-scheduler-edit-dialog .k-dialog {
    max-height: 100vh;
}

.k-scheduler-edit-form .k-edit-form-container {
    width: 100%;
}

.k-scheduler-edit-form .k-edit-label {
    width: 17%;
}

.k-scheduler-edit-form .k-edit-field {
    width: 77%;
}

.k-scheduler-edit-form .k-edit-field > ul > li {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.k-scheduler-edit-form .k-recurrence-editor .k-radio-list .k-radio-wrap,
.k-scheduler-edit-form .k-recurrence-editor .k-checkbox-list .k-checkbox-wrap {
    align-self: center;
}

.k-scheduler-edit-form .k-recur-interval,
.k-scheduler-edit-form .k-recur-count,
.k-scheduler-edit-form .k-recur-monthday {
    width: 5em;
}

.k-scheduler-edit-form .k-recur-until,
.k-scheduler-edit-form .k-recur-month,
.k-scheduler-edit-form .k-recur-weekday,
.k-scheduler-edit-form .k-recur-weekday-offset {
    width: 10em;
}

.k-scheduler-edit-form .k-scheduler-datetime-picker {
    display: flex;
    flex-flow: row nowrap;
    gap: 0.5rem;
}

.k-rtl .k-scheduler-header th,
.k-rtl .k-scheduler-table td {
    border-width: 0 1px 1px 0;
}

.k-rtl .k-scheduler-table td:first-child,
.k-rtl .k-scheduler-table th:first-child {
    border-right-width: 0;
}

.k-rtl .k-scheduler-times th {
    border-width: 0 0 1px 1px;
}

.k-rtl .k-scheduler .k-scrollbar-v .k-scheduler-header-wrap {
    border-right-width: 0;
    border-left-width: 1px;
}

.k-rtl .k-event {
    padding-right: 0;
    padding-left: 1rem;
}

.k-rtl .k-event .k-resize-w {
    left: auto;
    right: 0;
}

.k-rtl .k-event .k-resize-e {
    right: auto;
    left: 0;
}

.k-rtl .k-event .k-event-actions {
    right: auto;
    left: 2px;
}

.k-rtl .k-event .k-event-actions:first-child {
    margin: 0.25rem 0.5rem 0 0.4ex;
    float: right;
}

.k-rtl .k-scheduler-agendaview .k-task > .k-event-delete {
    left: 2px;
    right: auto;
}

.k-rtl .k-scheduler-agendaview .k-task .k-scheduler-mark {
    margin-left: .5em;
    margin-right: 0;
}

.k-rtl .k-scheduler-marquee .k-label-top {
    left: auto;
    right: 4px;
}

.k-rtl .k-scheduler-marquee .k-label-bottom {
    left: 4px;
    right: auto;
}

.k-rtl .k-scheduler-edit-form .k-scheduler-delete {
    float: right;
}

.k-rtl .k-scheduler .k-i-caret-alt-left,
.k-rtl .k-scheduler .k-i-caret-alt-right,
.k-rtl .k-scheduler .k-i-arrow-60-left,
.k-rtl .k-scheduler .k-i-arrow-60-right,
.k-rtl .k-scheduler .k-current-time-arrow-right, .k-rtl.k-scheduler .k-i-caret-alt-left,
.k-rtl.k-scheduler .k-i-caret-alt-right,
.k-rtl.k-scheduler .k-i-arrow-60-left,
.k-rtl.k-scheduler .k-i-arrow-60-right,
.k-rtl.k-scheduler .k-current-time-arrow-right {
    transform: scaleX(-1);
}

.k-rtl .k-scheduler .k-scheduler-header-wrap, .k-rtl.k-scheduler .k-scheduler-header-wrap {
    border-right-width: 0;
}

.k-rtl .k-scheduler .k-scheduler-agendaday, .k-rtl.k-scheduler .k-scheduler-agendaday {
    float: right;
    margin: 0 0 0 .2em;
}

.k-rtl .k-scheduler .k-scheduler-agendaview .k-scheduler-table td:first-child,
.k-rtl .k-scheduler .k-scheduler-agendaview .k-scheduler-table th:first-child, .k-rtl.k-scheduler .k-scheduler-agendaview .k-scheduler-table td:first-child,
.k-rtl.k-scheduler .k-scheduler-agendaview .k-scheduler-table th:first-child {
    border-left-width: 0;
}

.k-rtl .k-scheduler .k-scheduler-agendaview .k-scheduler-table tr + tr td:first-child,
.k-rtl .k-scheduler .k-scheduler-agendaview .k-scheduler-table tr + tr th:first-child, .k-rtl.k-scheduler .k-scheduler-agendaview .k-scheduler-table tr + tr td:first-child,
.k-rtl.k-scheduler .k-scheduler-agendaview .k-scheduler-table tr + tr th:first-child {
    border-right-width: 1px;
}

.k-safari .k-scheduler-tooltip .k-tooltip-event:not(:last-child) {
    margin-bottom: 0.5rem;
}

.k-safari .k-scheduler-yearview .k-calendar-view .k-month {
    margin-block: 0;
    margin-inline: 0.5rem;
}

kendo-scheduler .k-event::before,
.k-event::before {
    display: none;
    left: 0;
}

.k-rtl kendo-scheduler .k-event::before, .k-rtl
.k-event::before {
    right: 0;
}

kendo-scheduler .k-event .k-event-template,
.k-event .k-event-template {
    padding-block: 0.25rem;
    padding-inline: 0.5rem;
    font-size: 0.875rem;
}

kendo-scheduler .k-event .k-event-actions,
.k-event .k-event-actions {
    right: 0.5rem;
    font-size: 0.875rem;
}

kendo-scheduler .k-event .k-event-actions:first-child,
.k-event .k-event-actions:first-child {
    margin: 0.1ex 0.4ex 0 0.5rem;
}

.k-scheduler {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-current-time {
    background: #ff0000;
}

.k-current-time.k-current-time-arrow-left {
    border-right-color: #ff0000;
}

.k-current-time.k-current-time-arrow-right {
    border-left-color: #ff0000;
}

.k-current-time.k-current-time-arrow-down {
    border-top-color: #ff0000;
}

.k-scheduler-toolbar {
    border-color: #dee2e6;
    color: #212529;
    background-color: #f8f9fa;
}

.k-scheduler-footer {
    border-color: #dee2e6;
    color: #212529;
    background-color: #f8f9fa;
}

.k-scheduler-header {
    background-color: #f8f9fa;
}

.k-scheduler-header-wrap {
    background-color: #ffffff;
}

.k-scheduler-nonwork,
.k-scheduler .k-nonwork-hour {
    background-color: whitesmoke;
}

.k-scheduler-other-month,
.k-scheduler .k-other-month {
    background-color: whitesmoke;
}

.k-scheduler-layout td.k-selected,
.k-scheduler-layout .k-scheduler-cell.k-selected {
    background-color: rgba(13, 110, 253, 0.25);
}

.k-scheduler-layout-flex .k-scheduler-head,
.k-scheduler-layout-flex .k-sticky-cell {
    background-color: #ffffff;
}

.k-event {
    color: #ffffff;
    background-color: #3485fd;
}

.k-event.k-selected {
    color: #ffffff;
    background-color: #0d6efd;
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.k-event-inverse {
    color: black;
}

.k-event-ongoing {
    box-shadow: inset 0px 0px 0px 1px #ff0000;
}

.k-scheduler-marquee::before,
.k-scheduler-marquee::after {
    border-color: #0d6efd;
}

.k-scheduler-edit-dialog .k-dialog-actions {
    border-color: #dee2e6;
}

.k-scheduler-agendaview .k-scheduler-content tr:hover,
.k-scheduler-agendaview .k-scheduler-content tr.k-hover,
.k-scheduler-agendaview .k-scheduler-content .k-scheduler-row:hover,
.k-scheduler-agendaview .k-scheduler-content .k-scheduler-row.k-hover {
    border-color: #d6d9dc;
    color: #16181b;
    background-color: #e9ecef;
}

.k-scheduler-agendaview .k-scheduler-content tr:hover .k-scheduler-datecolumn,
.k-scheduler-agendaview .k-scheduler-content tr:hover .k-scheduler-groupcolumn,
.k-scheduler-agendaview .k-scheduler-content tr.k-hover .k-scheduler-datecolumn,
.k-scheduler-agendaview .k-scheduler-content tr.k-hover .k-scheduler-groupcolumn {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-scheduler-agendaview .k-scheduler-content tr.k-selected {
    background-color: rgba(13, 110, 253, 0.25);
}

.k-scheduler-agendaview .k-scheduler-content tr.k-selected .k-scheduler-datecolumn,
.k-scheduler-agendaview .k-scheduler-content tr.k-selected .k-scheduler-groupcolumn {
    background-color: #ffffff;
}

.k-scheduler-yearview .k-day-indicator {
    background-color: #0d6efd;
}

.k-scheduler-yearview .k-selected .k-day-indicator {
    background-color: white;
}

.k-tooltip.k-scheduler-tooltip {
    color: #212529;
    background-color: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.k-tooltip.k-scheduler-tooltip .k-callout {
    color: white;
}

.k-chat {
    margin: auto;
    max-width: 500px;
    height: 600px;
    max-height: 100%;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-chat .k-message-list {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.k-chat .k-message-list-content {
    padding-block: 16px;
    padding-inline: 16px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
}

.k-chat .k-message-list-content > * + * {
    margin-top: 16px;
}

.k-chat .k-message-group {
    max-width: 80%;
    background: none;
    box-sizing: border-box;
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    position: relative;
}

.k-chat .k-message-group:not(.k-alt) {
    align-items: flex-start;
    text-align: start;
}

.k-chat .k-message-group:not(.k-alt) .k-message-time {
    margin-left: 8px;
    left: 100%;
}

.k-chat .k-message-group:not(.k-alt) .k-message-status {
    left: 0;
}

.k-chat .k-message-group:not(.k-alt) .k-first .k-bubble,
.k-chat .k-message-group:not(.k-alt) .k-only .k-bubble {
    border-bottom-left-radius: 2px;
}

.k-chat .k-message-group:not(.k-alt) .k-middle .k-bubble,
.k-chat .k-message-group:not(.k-alt) .k-last .k-bubble {
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}

.k-chat .k-message-group.k-alt {
    align-self: flex-end;
    align-items: flex-end;
    text-align: end;
}

.k-chat .k-message-group.k-alt .k-message-time {
    margin-right: 8px;
    right: 100%;
}

.k-chat .k-message-group.k-alt .k-message-status {
    right: 0;
}

.k-chat .k-message-group.k-alt .k-first .k-bubble,
.k-chat .k-message-group.k-alt .k-only .k-bubble {
    border-bottom-right-radius: 2px;
}

.k-chat .k-message-group.k-alt .k-middle .k-bubble,
.k-chat .k-message-group.k-alt .k-last .k-bubble {
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

.k-chat .k-message {
    max-width: 100%;
    margin: 2px 0 0;
    position: relative;
    transition: margin .2s ease-in-out;
    outline: none;
}

.k-chat .k-message-time,
.k-chat .k-message-status {
    font-size: smaller;
    line-height: normal;
    white-space: nowrap;
    pointer-events: none;
    position: absolute;
}

.k-chat .k-message-time {
    opacity: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity .2s ease-in-out;
}

.k-chat .k-message-status {
    margin-top: 2px;
    height: 0;
    overflow: hidden;
    top: 100%;
    transition: height .2s ease-in-out;
}

.k-chat .k-bubble {
    border-radius: 12px;
    padding-block: 8px;
    padding-inline: 16px;
    border-width: 1px;
    border-style: solid;
    line-height: 1.25;
    word-wrap: break-word;
    white-space: pre-wrap;
}

.k-chat .k-bubble a {
    color: inherit;
    text-decoration: underline;
}

.k-chat .k-message.k-selected {
    margin-bottom: 16px;
    border: 0;
    color: inherit;
    background: none;
}

.k-chat .k-message.k-selected .k-message-time {
    opacity: 1;
}

.k-chat .k-message.k-selected .k-message-status {
    height: 1.2em;
}

.k-chat .k-message-error,
.k-chat .k-message-sending {
    margin-bottom: 16px;
}

.k-chat .k-message-error .k-message-status,
.k-chat .k-message-sending .k-message-status {
    height: 1.2em;
}

.k-chat .k-avatar {
    border-radius: 100%;
    margin: 0;
    width: 32px;
    height: 32px;
    position: absolute;
}

.k-message-group:not(.k-alt) > .k-avatar {
    left: 0;
    bottom: 0;
}

.k-message-group.k-alt > .k-avatar {
    right: 0;
    bottom: 0;
}

.k-chat .k-avatars .k-message-group:not(.k-alt):not(.k-no-avatar) {
    padding-left: calc( 32px + 8px);
}

.k-chat .k-avatars .k-message-group.k-alt:not(.k-no-avatar) {
    padding-right: calc( 32px + 8px);
}

.k-author {
    margin: 0;
    font-size: smaller;
    line-height: normal;
}

.k-chat .k-author {
    margin: 0;
}

.k-chat .k-timestamp {
    font-size: smaller;
    text-transform: uppercase;
    text-align: center;
    align-self: stretch;
}

.k-quick-replies {
    display: block;
    max-width: 100%;
}

.k-quick-reply {
    border-radius: 100px;
    margin-right: 8px;
    margin-bottom: 4px;
    padding-block: 8px;
    padding-inline: 12px;
    border-width: 1px;
    border-style: solid;
    line-height: 1.25;
    cursor: pointer;
    user-select: none;
    display: inline-block;
    flex: 0 0 auto;
    transition-property: color, background-color, border-color;
    transition-duration: .2s;
    transition-timing-function: ease-in-out;
    outline: none;
}

.k-scrollable-quick-replies {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
    display: flex;
    flex-flow: row nowrap;
    flex: 0 0 auto;
    overflow-x: auto;
    overflow-y: hidden;
}

.k-scrollable-quick-replies::-webkit-scrollbar {
    display: none;
}

.k-scrollable-quick-replies .k-quick-reply {
    margin: 0;
}

.k-scrollable-quick-replies .k-quick-reply + .k-quick-reply {
    margin-left: 8px;
}

.k-message-box {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    border-width: 1px 0 0;
    border-style: solid;
    border-color: inherit !important;
    border-radius: 0 !important;
    flex: none;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.k-message-box:focus, .k-message-box.k-focus, .k-message-box:focus-within {
    outline: 0;
    box-shadow: none;
}

.k-message-box .k-button {
    border-width: 0;
    flex-shrink: 0;
}

.k-message-box .k-button svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    display: inline-block;
}

.k-rtl .k-message-box .k-button, .k-message-box .k-button[dir="rtl"] {
    transform: scaleX(-1);
}

.k-chat .k-card-list {
    margin: 2px 0 0;
}

.k-chat .k-card-deck {
    max-width: calc(100% + 32px);
    box-sizing: border-box;
    margin-left: -16px;
    margin-right: -16px;
    padding: 16px 16px 16px;
    overflow: hidden;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.k-chat .k-card-deck .k-card,
.k-chat .k-card-deck .k-card-wrap {
    width: 200px;
}

.k-chat .k-card-deck-scrollwrap {
    margin-right: -16px;
    margin-left: -16px;
    padding-left: 16px;
    padding-right: 16px;
}

.k-chat .k-card-deck-scrollwrap > .k-card-deck {
    margin-bottom: -20px;
    padding-bottom: 20px;
}

.k-chat .k-card-deck .k-card-wrap {
    display: flex;
    flex-flow: row nowrap;
    align-items: stretch;
    flex: 0 0 auto;
    padding-bottom: 5px;
}

.k-chat .k-card-deck .k-card-wrap .k-card {
    flex: 0 0 auto;
}

.k-chat .k-card-deck .k-card-wrap.k-selected {
    background: none;
}

.k-typing-indicator {
    padding: 0;
    border-radius: 50px;
    display: inline-flex;
    flex-flow: row nowrap;
}

.k-typing-indicator span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex: 0 0 8px;
    background-color: currentColor;
    opacity: .4;
}

.k-typing-indicator span:nth-of-type(1) {
    animation: 1s k-animation-blink infinite 0.3333s;
}

.k-typing-indicator span:nth-of-type(2) {
    animation: 1s k-animation-blink infinite 0.6666s;
}

.k-typing-indicator span:nth-of-type(3) {
    animation: 1s k-animation-blink infinite 0.9999s;
}

.k-typing-indicator span + span {
    margin-left: 5px;
}

@keyframes k-animation-blink {
    50% {
        opacity: 1;
    }
}

.k-chat-toolbar,
.k-chat .k-toolbar-box {
    padding-block: 0.5rem;
    padding-inline: 0.5rem;
    width: 100%;
    border-width: 1px 0 0;
    box-sizing: border-box;
    flex: none;
    overflow: hidden;
    position: relative;
}

.k-chat-toolbar::before,
.k-chat .k-toolbar-box::before {
    display: none;
}

.k-chat-toolbar .k-button-list,
.k-chat .k-toolbar-box .k-button-list {
    display: flex;
    flex-flow: row nowrap;
    overflow: hidden;
    scroll-behavior: smooth;
}

.k-chat-toolbar .k-button,
.k-chat .k-toolbar-box .k-button {
    flex: none;
}

.k-chat-toolbar .k-scroll-button,
.k-chat .k-toolbar-box .k-scroll-button {
    padding: 0 0.25rem;
    height: 100%;
    aspect-ratio: auto;
    position: absolute;
    z-index: 2;
    top: 0;
}

.k-chat-toolbar .k-scroll-button .k-button-icon,
.k-chat .k-toolbar-box .k-scroll-button .k-button-icon {
    min-width: auto;
    min-height: auto;
}

.k-chat-toolbar .k-scroll-button-left,
.k-chat .k-toolbar-box .k-scroll-button-left {
    left: 0;
}

.k-chat-toolbar .k-scroll-button-right,
.k-chat .k-toolbar-box .k-scroll-button-right {
    right: 0;
}

.k-rtl .k-message-group:not(.k-alt) .k-message-time,
[dir="rtl"] .k-message-group:not(.k-alt) .k-message-time {
    margin-left: 0;
    margin-right: 8px;
    left: auto;
    right: 100%;
}

.k-rtl .k-message-group:not(.k-alt) .k-message-status,
[dir="rtl"] .k-message-group:not(.k-alt) .k-message-status {
    left: auto;
    right: 0;
}

.k-rtl .k-message-group.k-alt .k-message-time,
[dir="rtl"] .k-message-group.k-alt .k-message-time {
    margin-right: 0;
    margin-left: 8px;
    right: auto;
    left: 100%;
}

.k-rtl .k-message-group.k-alt .k-message-status,
[dir="rtl"] .k-message-group.k-alt .k-message-status {
    right: auto;
    left: 0;
}

.k-rtl .k-message-group:not(.k-alt) > .k-avatar,
[dir="rtl"] .k-message-group:not(.k-alt) > .k-avatar {
    left: auto;
    right: 0;
}

.k-rtl .k-message-group.k-alt > .k-avatar,
[dir="rtl"] .k-message-group.k-alt > .k-avatar {
    right: auto;
    left: 0;
}

.k-rtl .k-avatars .k-message-group:not(.k-alt):not(.k-no-avatar),
[dir="rtl"] .k-avatars .k-message-group:not(.k-alt):not(.k-no-avatar) {
    padding-left: 0;
    padding-right: calc( 32px + 8px);
}

.k-rtl .k-avatars .k-message-group.k-alt:not(.k-no-avatar),
[dir="rtl"] .k-avatars .k-message-group.k-alt:not(.k-no-avatar) {
    padding-right: 0;
    padding-left: calc( 32px + 8px);
}

.k-rtl .k-chat .k-card-deck .k-card-wrap + .k-card-wrap,
[dir="rtl"] .k-chat .k-card-deck .k-card-wrap + .k-card-wrap {
    margin-left: 0;
    margin-right: 1rem;
}

.k-rtl .k-quick-reply,
[dir="rtl"] .k-quick-reply {
    margin-right: 0;
    margin-left: 8px;
}

.k-chat {
    border-color: #dee2e6;
    color: #212529;
    background-color: #fafafa;
}

.k-chat .k-timestamp {
    color: #6c757d;
}

.k-chat .k-author {
    font-weight: bold;
}

.k-chat .k-bubble {
    border-color: #e4e7eb;
    color: #212529;
    background-color: #e4e7eb;
    box-shadow: none;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    order: -1;
}

.k-chat .k-bubble a {
    color: #0d6efd;
}

.k-chat .k-bubble a:hover {
    color: #0a58ca;
}

.k-chat .k-bubble:hover {
    box-shadow: none;
}

.k-chat .k-selected .k-bubble {
    box-shadow: none;
}

.k-chat .k-alt .k-bubble {
    border-color: #0d6efd;
    color: white;
    background-color: #0d6efd;
    box-shadow: none;
}

.k-chat .k-alt .k-bubble:hover {
    box-shadow: none;
}

.k-chat .k-alt .k-selected .k-bubble {
    box-shadow: none;
}

.k-chat .k-quick-reply {
    border-color: #0d6efd;
    color: #0d6efd;
    background-color: transparent;
}

.k-chat .k-quick-reply:hover {
    border-color: #0d6efd;
    color: white;
    background-color: #0d6efd;
}

.k-chat-toolbar,
.k-chat .k-toolbar-box {
    border-color: inherit;
    color: #212529;
    background-color: #f8f9fa;
}

.k-mediaplayer {
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    line-height: 1.5;
    display: block;
    position: relative;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-mediaplayer *,
.k-mediaplayer *::before,
.k-mediaplayer *::after {
    box-sizing: border-box;
}

.k-mediaplayer > iframe {
    width: 100%;
    height: 100%;
    border: 0;
    vertical-align: top;
}

.k-mediaplayer-titlebar {
    padding-block: 0.5rem;
    padding-inline: 0.5rem;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
}

.k-mediaplayer-toolbar-wrap {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    right: 0;
}

.k-mediaplayer-toolbar {
    border-width: 0;
    width: 100% !important;
    box-shadow: none;
}

.k-mediaplayer-toolbar .k-dropdown-list, .k-mediaplayer-toolbar .k-dropdown,
.k-mediaplayer-toolbar .k-dropdownlist {
    width: auto;
}

.k-mediaplayer-time-wrap {
    flex: 1;
}

.k-mediaplayer-volume-wrap {
    padding: 0 7px;
    align-items: center;
}

.k-mediaplayer-volume {
    width: 100px;
}

.k-slider.k-mediaplayer-seekbar {
    width: 100%;
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    transform: translateY(-50%);
}

.k-mediaplayer-seekbar .k-slider-track {
    width: 100% !important;
    border-radius: 0;
}

.k-mediaplayer-seekbar .k-slider-selection {
    border-radius: 0;
}

.k-mediaplayer-fullscreen {
    z-index: 10000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

.k-mediaplayer {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-mediaplayer-titlebar {
    color: #ffffff;
    background-image: linear-gradient(rgba(33, 37, 41, 0.7), rgba(33, 37, 41, 0));
    text-shadow: 0 0 2px rgba(33, 37, 41, 0.5);
}

.k-timeline {
    box-sizing: border-box;
    outline: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    line-height: 1.5;
    display: block;
    background-color: transparent;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-timeline *,
.k-timeline *::before,
.k-timeline *::after, .k-timeline::before, .k-timeline::after {
    box-sizing: border-box;
}

.k-timeline ul {
    margin: 0;
    padding: 0;
}

.k-timeline ul li {
    list-style-type: none;
}

.k-timeline .k-timeline-flag {
    display: inline-block;
    text-align: center;
    padding-block: 0.375rem;
    padding-inline: 0.75rem;
    border-radius: 0.375rem;
    line-height: 1.5;
    min-width: 80px;
    max-width: calc(80px + 2 * 40px);
    position: relative;
    z-index: 1;
}

.k-timeline .k-timeline-circle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.k-timeline.k-timeline-dates-hidden .k-timeline-date {
    display: none;
}

.k-timeline .k-event-collapse {
    display: none;
}

.k-timeline.k-timeline-collapsible .k-card-header {
    cursor: pointer;
}

.k-timeline.k-timeline-collapsible .k-event-collapse {
    display: flex;
}

.k-timeline-card .k-card {
    position: relative;
    overflow: visible;
}

.k-timeline-card .k-card .k-card-header {
    overflow: visible;
    border-bottom: 0;
}

.k-timeline-card .k-card .k-card-header + .k-card-body {
    padding-top: 0;
}

.k-timeline-card .k-card .k-card-body {
    overflow-y: auto;
    scrollbar-width: thin;
}

.k-timeline-card .k-card .k-card-body::-webkit-scrollbar {
    width: 5px;
}

.k-timeline-card .k-card .k-card-body::-webkit-scrollbar-thumb {
    border-radius: 0.375rem;
}

.k-timeline-card .k-timeline-card-callout.k-callout-w, .k-timeline-card .k-timeline-card-callout.k-callout-e {
    top: 36px;
}

.k-timeline-vertical,
.k-timeline-horizontal {
    padding-block: 0;
    padding-inline: 40px;
    margin-block: 40px;
    margin-inline: 0;
    width: 100%;
    position: relative;
    border: 0;
}

.k-timeline-vertical::after,
.k-timeline-horizontal .k-timeline-track-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    border-width: 1px;
    border-style: solid;
}

.k-timeline-vertical {
    padding-left: calc(calc(40px + (80px - 6px) / 2) + 50px);
}

.k-timeline-vertical.k-timeline-dates-hidden {
    padding-left: calc(40px + (80px - 6px) / 2);
}

.k-timeline-vertical::after {
    height: 100%;
    width: 6px;
    transform: translateX(-50%);
    border-radius: 0.5rem;
}

.k-timeline-vertical .k-timeline-flag-wrap {
    display: flex;
    align-items: center;
}

.k-timeline-vertical .k-timeline-flag-wrap:first-child {
    padding-top: 40px;
}

.k-timeline-vertical .k-timeline-flag {
    transform: translateX(-50%);
}

.k-timeline-vertical .k-timeline-date-wrap {
    position: absolute;
    padding-right: 1rem;
    margin-top: 36px;
    transform: translate(-100%, -50%);
    text-align: end;
}

.k-timeline-vertical .k-timeline-event {
    display: flex;
    align-items: flex-start;
    padding-block: 40px;
    padding-inline: 0;
}

.k-timeline-vertical .k-timeline-card {
    padding-left: 1rem;
}

.k-timeline-vertical .k-timeline-card .k-card {
    margin-left: 1rem;
    min-height: calc(2 * (36px - 1px));
    width: 400px;
    max-width: 100%;
}

.k-timeline-vertical .k-timeline-card .k-card .k-card-header {
    border-radius: 0.375rem;
}

.k-timeline-vertical .k-timeline-card .k-card .k-card-title {
    display: flex;
    justify-content: space-between;
}

.k-timeline-vertical .k-timeline-card .k-card .k-card-title .k-event-title {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.k-timeline-vertical .k-timeline-card .k-event-collapse {
    margin-block: -0.5rem;
    margin-inline: 0;
    transform: rotate(90deg);
    transition: transform .2s ease-in-out;
}

.k-timeline-vertical .k-timeline-card.k-collapsed .k-card-body,
.k-timeline-vertical .k-timeline-card.k-collapsed .k-card-actions {
    display: none;
}

.k-timeline-vertical .k-timeline-card.k-collapsed .k-event-collapse {
    transform: rotate(0deg);
}

.k-timeline-vertical .k-timeline-circle {
    margin-top: 36px;
    transform: translate(-50%, -50%);
    margin-right: -8px;
}

.k-timeline-vertical.k-timeline-alternating {
    padding-left: 40px;
}

.k-timeline-vertical.k-timeline-alternating::after {
    left: 50%;
}

.k-timeline-vertical.k-timeline-alternating .k-timeline-flag-wrap {
    justify-content: center;
}

.k-timeline-vertical.k-timeline-alternating .k-timeline-flag {
    transform: translateX(0);
}

.k-timeline-vertical.k-timeline-alternating .k-timeline-event {
    justify-content: space-between;
}

.k-timeline-vertical.k-timeline-alternating .k-timeline-event.k-reverse {
    flex-direction: row-reverse;
}

.k-timeline-vertical.k-timeline-alternating .k-timeline-event.k-reverse .k-timeline-date-wrap {
    text-align: start;
    padding-right: 0;
    padding-left: 1rem;
}

.k-timeline-vertical.k-timeline-alternating .k-timeline-event.k-reverse .k-timeline-card {
    padding-left: 0;
    padding-right: 1rem;
}

.k-timeline-vertical.k-timeline-alternating .k-timeline-event.k-reverse .k-timeline-card .k-card {
    margin-right: 1rem;
    margin-left: auto;
}

.k-timeline-vertical.k-timeline-alternating .k-timeline-card,
.k-timeline-vertical.k-timeline-alternating .k-timeline-date-wrap {
    flex-basis: 50%;
    min-width: 0;
}

.k-timeline-vertical.k-timeline-alternating .k-timeline-date-wrap {
    position: static;
    transform: translateY(-50%);
}

.k-timeline-vertical.k-timeline-alternating .k-timeline-circle {
    transform: translateY(-50%);
    margin-right: 0;
}

.k-timeline-horizontal .k-timeline-track-item {
    flex: 1 0 20%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    flex-direction: column;
}

.k-timeline-horizontal .k-timeline-track-item:hover {
    cursor: pointer;
}

.k-timeline-horizontal .k-timeline-track-item.k-timeline-flag-wrap:hover {
    cursor: default;
}

.k-timeline-horizontal .k-timeline-date-wrap {
    margin-top: auto;
    margin-bottom: 10px;
}

.k-timeline-horizontal .k-timeline-card {
    height: 100%;
}

.k-timeline-horizontal .k-card {
    max-height: 100%;
}

.k-timeline-horizontal .k-timeline-events-list {
    overflow-x: hidden;
    padding-top: 1rem;
}

.k-timeline-horizontal .k-timeline-events-list .k-timeline-scrollable-wrap {
    position: relative;
    height: 600px;
}

.k-timeline-horizontal .k-timeline-events-list .k-timeline-scrollable-wrap .k-timeline-event {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.k-timeline-horizontal .k-timeline-track-wrap {
    position: relative;
    padding: 19px 0;
}

.k-timeline-horizontal .k-timeline-track-wrap::after {
    top: auto;
    bottom: calc(19px + 3px);
    left: calc(38px - 2 * 1px);
    right: calc(38px - 2 * 1px);
    transform: translateY(-50%);
    height: 6px;
}

.k-timeline-horizontal .k-timeline-track-wrap .k-timeline-track {
    overflow: hidden;
    margin-block: 0;
    margin-inline: 38px;
    position: relative;
    z-index: 2;
}

.k-timeline-horizontal .k-timeline-track-wrap .k-timeline-track .k-timeline-scrollable-wrap {
    transition: transform 1s ease-in-out;
}

.k-timeline-horizontal .k-timeline-track-wrap .k-timeline-flag {
    margin-bottom: calc(6px + 2 * 1px + 4px + 10px);
    position: relative;
    min-width: 80px;
}

.k-timeline-horizontal .k-timeline-track-wrap .k-timeline-flag::after {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%) rotate(45deg);
}

.k-timeline-horizontal .k-timeline-scrollable-wrap {
    padding-bottom: 3px;
    display: flex;
    outline: 0;
}

.k-timeline-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    position: absolute;
    bottom: calc(6px + 3px + 2 * 1px);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.k-timeline-arrow-left {
    left: 0;
}

.k-timeline-arrow-right {
    right: 0;
}

.k-timeline-mobile {
    padding-block: 0;
    padding-inline: 1rem;
    margin-block: 1rem;
    margin-inline: 0;
}

.k-timeline-mobile .k-timeline-flag {
    max-width: calc(80px + 2 * 1rem);
}

.k-timeline-mobile.k-timeline-horizontal .k-timeline-flag-wrap {
    display: none;
}

.k-timeline-mobile.k-timeline-vertical {
    padding-left: calc(calc(1rem + (80px - 6px) / 2) + 50px);
}

.k-timeline-mobile.k-timeline-vertical.k-timeline-dates-hidden {
    padding-left: calc(1rem + (80px - 6px) / 2);
}

.k-timeline-mobile.k-timeline-vertical.k-timeline-alternating {
    padding-left: 1rem;
}

.k-timeline-mobile.k-timeline-vertical .k-timeline-card {
    width: 100%;
}

.k-timeline-mobile.k-timeline-vertical .k-timeline-card .k-card {
    width: auto;
}

.k-timeline-card .k-card-header {
    padding-top: 1rem;
}

.k-timeline .k-timeline-flag {
    color: white;
    background-color: #0d6efd;
}

.k-timeline .k-timeline-circle {
    background-color: #0d6efd;
}

.k-timeline .k-timeline-card .k-card-header {
    background-color: #ffffff;
    color: #212529;
}

.k-timeline .k-timeline-card .k-card-body {
    scrollbar-color: #dee2e6 #ffffff;
}

.k-timeline .k-timeline-card .k-card-body::-webkit-scrollbar-track {
    background: #ffffff;
}

.k-timeline .k-timeline-card .k-card-body::-webkit-scrollbar-thumb {
    background: #dee2e6;
}

.k-timeline .k-timeline-card .k-card-body::-webkit-scrollbar-thumb:hover {
    background: #d6d9dc;
}

.k-timeline .k-timeline-date {
    color: #212529;
}

.k-timeline .k-timeline-arrow.k-disabled {
    opacity: 1;
    color: #6f7174;
    background-color: #edeff2;
    border-color: #edeff2;
}

.k-timeline-vertical::after,
.k-timeline-horizontal .k-timeline-track-wrap::after {
    background-color: #e4e7eb;
    border-color: #e4e7eb;
}

.k-timeline-horizontal .k-timeline-flag::after {
    background-color: #0d6efd;
}

.k-timeline-track-item.k-focus .k-timeline-circle {
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.5);
}

.k-pdf-viewer {
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    position: relative;
    outline: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-pdf-viewer .k-toolbar {
    border-top-width: 0;
    border-right-width: 0;
    border-left-width: 0;
    border-color: inherit;
    flex: 0 0 auto;
    z-index: 2;
}

.k-pdf-viewer .k-toolbar .k-pager-wrap,
.k-pdf-viewer .k-toolbar .k-pager {
    padding: 0;
    border-width: 0;
    color: inherit;
    background: none;
    overflow: visible;
}

.k-pdf-viewer .k-canvas {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    outline: none;
}

.k-pdf-viewer .k-canvas .k-enable-text-select, .k-pdf-viewer .k-canvas.k-enable-text-select {
    user-select: text;
    cursor: text;
}

.k-pdf-viewer .k-canvas .k-enable-panning, .k-pdf-viewer .k-canvas.k-enable-panning {
    cursor: grab;
}

.k-pdf-viewer .k-canvas .k-enable-panning span::selection,
.k-pdf-viewer .k-canvas.k-enable-panning span::selection {
    background-color: transparent;
}

.k-pdf-viewer .k-pdf-viewer-pages {
    flex: 1 1 auto;
}

.k-pdf-viewer .k-page {
    position: relative;
    margin-block: 30px;
    margin-inline: auto;
}

.k-pdf-viewer .k-page canvas {
    direction: ltr;
}

.k-pdf-viewer .k-page .k-text-layer {
    position: absolute;
    top: 0;
    left: 0;
    opacity: .2;
    overflow: hidden;
}

.k-pdf-viewer .k-page .k-text-layer > span {
    position: absolute;
    line-height: 1.2;
    transform-origin: 0% 0%;
    color: transparent;
}

.k-pdf-viewer .k-page .k-text-layer mark {
    color: transparent;
}

.k-pdf-viewer .k-page .k-text-layer .k-search-highlight-mark {
    color: transparent;
}

.k-pdf-viewer .k-blank-page {
    margin: 0;
    display: flex;
    flex-flow: column nowrap;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background-color: inherit !important;
}

.k-pdf-viewer .k-blank-page .k-upload,
.k-pdf-viewer .k-blank-page .k-dropzone,
.k-pdf-viewer .k-blank-page .k-dropzone-inner {
    border: 0;
    background: none;
}

.k-pdf-viewer .k-blank-page > .k-icon {
    font-size: calc( 16px * 3);
}

.k-pdf-viewer .k-blank-page > .k-svg-icon {
    width: calc( 16px * 3);
    height: calc( 16px * 3);
}

.k-pdf-viewer-search-dialog {
    padding: 0 !important;
}

.k-search-panel, .k-search-container {
    padding-block: calc( 0.5rem * 2);
    padding-inline: 0.5rem;
    display: flex;
    gap: 0.5rem;
    flex-flow: row nowrap;
    flex: 0 0 auto;
    justify-content: flex-start;
    align-items: center;
}

.k-search-panel .k-search-dialog-draghandle, .k-search-container .k-search-dialog-draghandle {
    cursor: move;
    margin-left: 0;
}

.k-search-panel .k-textbox, .k-search-container .k-textbox {
    width: 10em;
    flex: none;
}

.k-search-panel .k-textbox .k-button, .k-search-container .k-textbox .k-button {
    border-width: 0;
}

.k-search-panel .k-search-matches, .k-search-container .k-search-matches {
    display: inline-flex;
    gap: 0.5rem;
}

.k-pdf-viewer-canvas > .k-search-panel, .k-pdf-viewer-canvas > .k-search-container {
    width: max-content;
    margin-top: calc( (calc( 1.5em + 0.75rem + 2px) + ( 2 * 1px ) + ( 2 * calc( 0.5rem * 2) )) * -1);
    border-width: 1px;
    border-style: solid;
    border-radius: 0.25rem;
    z-index: 10;
}

.k-pdf-viewer {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-pdf-viewer .k-canvas {
    background-color: #fafafa;
}

.k-pdf-viewer .k-page {
    border-color: #dee2e6;
    color: #212529;
    background-color: white;
    box-shadow: 0 0 15px #dee2e6;
}

.k-pdf-viewer .k-blank-page > .k-icon,
.k-pdf-viewer .k-blank-page > .k-svg-icon {
    color: #afb1b2;
}

.k-pdf-viewer .k-search-highlight {
    background-color: #212529;
}

.k-pdf-viewer .k-search-highlight-mark {
    background-color: yellow;
}

.k-pdf-viewer-canvas > .k-search-panel, .k-pdf-viewer-canvas > .k-search-container {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.km-scrollview,
.km-scroll-container {
    user-select: none;
    border-collapse: separate;
}

.km-scroll-wrapper {
    position: relative;
}

.km-scroll-header {
    position: absolute;
    z-index: 1001;
    width: 100%;
    top: 0;
    left: 0;
}

.km-scroller-pull {
    width: 100%;
    display: block;
    position: absolute;
    line-height: 3em;
    font-size: 1.4em;
    text-align: center;
    transform: translate3d(0, -3em, 0);
}

.km-scroller-pull .km-template {
    display: inline-block;
    min-width: 200px;
    text-align: start;
}

.km-load-more .km-icon,
.km-widget .km-scroller-pull .km-icon {
    display: inline-block;
    height: 2rem;
    margin-right: 1rem;
    vertical-align: middle;
    width: 2rem;
    font-size: 2rem;
    transform: rotate(0deg);
    transition: transform 300ms linear;
}

.km-widget .km-scroller-release .km-icon {
    transform: rotate(180deg);
}

.km-widget .km-scroller-refresh .km-icon {
    transition: none;
}

.km-touch-scrollbar {
    position: absolute;
    visibility: hidden;
    z-index: 200000;
    height: .4em;
    width: .4em;
    opacity: 0;
    transform-origin: 0 0;
    transition: opacity .3s linear;
}

.k-map .km-touch-scrollbar,
.k-diagram .km-touch-scrollbar {
    display: none;
}

.km-vertical-scrollbar {
    height: 100%;
    right: 2px;
    top: 0;
}

.km-horizontal-scrollbar {
    width: 100%;
    left: 0;
    bottom: 2px;
}

.km-touch-scrollbar {
    background-color: #333333;
}

kendo-scrollview.k-scrollview-wrap,
kendo-scrollview.k-scrollview,
.k-scrollview {
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    outline: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
    overflow: hidden;
    display: block;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.k-scrollview-wrap .k-scrollview,
.k-scrollview .k-scrollview-wrap {
    list-style-type: none;
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    cursor: default;
    white-space: nowrap;
}

.k-scrollview-wrap .k-scrollview img,
.k-scrollview .k-scrollview-wrap img {
    user-select: none;
}

.k-scrollview-wrap .k-scrollview > li,
.k-scrollview .k-scrollview-wrap > li {
    display: inline-block;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.k-scrollview-wrap .k-scrollview > [data-role="page"],
.k-scrollview .k-scrollview-wrap > [data-role="page"] {
    vertical-align: top;
    display: inline-block;
    min-height: 1px;
}

.k-scrollview-wrap.k-scrollview-animate {
    display: flex;
    flex-flow: row nowrap;
    width: calc( var(--kendo-scrollview-views, 1) * 100%);
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transform: translateX(calc( -100% / var(--kendo-scrollview-views, 1) * ( var(--kendo-scrollview-current, 1) - 1)));
}

.k-scrollview-wrap.k-scrollview-animate .k-scrollview-view {
    width: calc( 100% / var(--kendo-scrollview-views, 1));
    flex: 0 0 calc( 100% / var(--kendo-scrollview-views, 1));
}

[dir="rtl"] .k-scrollview-wrap.k-scrollview-animate,
.k-rtl .k-scrollview-wrap.k-scrollview-animate {
    transform: translateX(calc( 100% / var(--kendo-scrollview-views, 1) * ( var(--kendo-scrollview-current, 1) - 1)));
}

kendo-scrollview.k-scrollview-wrap kendo-scrollview-pager,
kendo-scrollview.k-scrollview kendo-scrollview-pager,
.k-scrollview-nav-wrap {
    padding: 0;
    margin: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc( 10px + 0px + 40px);
    text-align: center;
}

kendo-scrollview.k-scrollview-wrap kendo-scrollview-pager,
kendo-scrollview.k-scrollview kendo-scrollview-pager {
    pointer-events: none;
}

kendo-scrollview.k-scrollview-wrap .k-scrollview-nav,
kendo-scrollview.k-scrollview .k-scrollview-nav {
    pointer-events: initial;
}

.k-scrollview-pageable,
.k-scrollview-nav {
    margin: 0;
    padding: 20px;
    max-width: 100%;
    box-sizing: border-box;
    line-height: 0;
    text-align: center;
    white-space: nowrap;
    list-style: none;
    display: inline-flex;
    align-items: center;
    overflow-x: scroll;
    overflow-y: hidden;
    pointer-events: initial;
}

.k-scrollview-pageable:focus,
.k-scrollview-nav:focus {
    outline: none;
}

.k-scrollview-pageable > .k-button,
.k-scrollview-nav > .k-link {
    margin-block: 0;
    margin-inline: 10px;
    padding: 0;
    width: 10px;
    height: 10px;
    border-width: 0px;
    border-style: solid;
    border-radius: 50%;
    box-sizing: content-box;
    display: inline-block;
    position: relative;
    flex: 0 0 auto;
    cursor: pointer;
    pointer-events: all;
    vertical-align: top;
}

.k-scrollview-pageable > .k-button::before,
.k-scrollview-nav > .k-link::before {
    content: "";
    width: 30px;
    height: 30px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: initial;
    border-radius: 0;
}

.k-scrollview-next,
.k-scrollview-prev {
    display: table;
    position: absolute;
    padding: 0;
    height: 60%;
    top: 20%;
    text-decoration: none;
    user-select: none;
    cursor: pointer;
}

.k-scrollview-next .k-icon,
.k-scrollview-next .k-svg-icon,
.k-scrollview-prev .k-icon,
.k-scrollview-prev .k-svg-icon {
    display: table-cell;
    overflow: visible;
    margin: 0;
    padding: 0;
    vertical-align: middle;
    font-size: 4.5em;
    font-weight: normal;
}

.k-scrollview-next .k-svg-icon,
.k-scrollview-prev .k-svg-icon {
    font-size: inherit;
    width: 4.5em;
    height: 4.5em;
}

.k-scrollview-prev {
    left: 0;
}

.k-scrollview-next {
    right: 0;
}

.k-scrollview-animation {
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
}

@supports (-webkit-user-select: none) {
    kendo-scrollview.k-scrollview-wrap ul.k-scrollview li > *,
    kendo-scrollview.k-scrollview ul.k-scrollview-wrap li > *,
    div.k-scrollview ul.k-scrollview-wrap li > * {
        pointer-events: auto;
    }
}

@supports not (-webkit-user-select: none) {
    kendo-scrollview.k-scrollview-wrap ul.k-scrollview li > *,
    kendo-scrollview.k-scrollview ul.k-scrollview-wrap li > *,
    div.k-scrollview ul.k-scrollview-wrap li > * {
        pointer-events: none;
    }
}

kendo-scrollview.k-scrollview-wrap,
.k-scrollview {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

kendo-scrollview.k-scrollview-wrap.k-scrollview-dark kendo-scrollview-pager,
kendo-scrollview.k-scrollview-wrap.k-scrollview-dark .k-scrollview-nav-wrap,
.k-scrollview.k-scrollview-dark kendo-scrollview-pager,
.k-scrollview.k-scrollview-dark .k-scrollview-nav-wrap {
    background-color: rgba(0, 0, 0, 0.4);
}

kendo-scrollview.k-scrollview-wrap.k-scrollview-dark .k-scrollview-next,
kendo-scrollview.k-scrollview-wrap.k-scrollview-dark .k-scrollview-prev,
.k-scrollview.k-scrollview-dark .k-scrollview-next,
.k-scrollview.k-scrollview-dark .k-scrollview-prev {
    color: rgba(0, 0, 0, 0.4);
}

kendo-scrollview.k-scrollview-wrap.k-scrollview-light kendo-scrollview-pager,
kendo-scrollview.k-scrollview-wrap.k-scrollview-light .k-scrollview-nav-wrap,
.k-scrollview.k-scrollview-light kendo-scrollview-pager,
.k-scrollview.k-scrollview-light .k-scrollview-nav-wrap {
    background-color: rgba(255, 255, 255, 0.4);
}

.k-scrollview:focus,
.k-scrollview-wrap:focus {
    outline: none;
}

.k-scrollview-next,
.k-scrollview-prev {
    color: white;
    background-color: rgba(0, 0, 0, 0);
    text-shadow: rgba(0, 0, 0, 0.3) 0 0 15px;
    opacity: 0.7;
    outline-width: 0;
}

.k-scrollview-next:focus, .k-scrollview-next.k-focus,
.k-scrollview-prev:focus,
.k-scrollview-prev.k-focus {
    color: white;
    opacity: 1;
}

.k-scrollview-next:focus .k-icon::before, .k-scrollview-next.k-focus .k-icon::before,
.k-scrollview-prev:focus .k-icon::before,
.k-scrollview-prev.k-focus .k-icon::before {
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.13);
}

.k-scrollview-next:hover, .k-scrollview-next.k-hover,
.k-scrollview-prev:hover,
.k-scrollview-prev.k-hover {
    color: white;
    opacity: 1;
}

.k-scrollview-pageable > .k-button,
.k-scrollview-nav > .k-link {
    background-color: #e4e7eb;
    border-color: #e4e7eb;
}

.k-scrollview-pageable > .k-button.k-primary,
.k-scrollview-nav > .k-link.k-primary {
    background: #0d6efd;
    border: #0d6efd;
}

.k-scrollview-pageable > .k-button:focus, .k-scrollview-pageable > .k-button.k-focus,
.k-scrollview-nav > .k-link:focus,
.k-scrollview-nav > .k-link.k-focus {
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.13);
}

.k-scrollview-nav > .k-link:hover,
.k-scrollview-nav > .k-link.k-hover {
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.13);
}

.k-scrollview-pageable > .k-button {
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.08);
}

.k-barcode {
    display: inline-block;
}

.k-barcode > div {
    height: 150px;
}

.k-var--chart-font {
    font-size: 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", "Noto Sans", "Liberation Sans", Arial, 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 300ms cubic-bezier(0, 0.33, 0.19, 1), top 300ms cubic-bezier(0, 0.33, 0.19, 1);
}

.k-sparkline-tooltip-wrapper,
.k-chart-tooltip-wrapper {
    z-index: 12000;
}

.k-sparkline-tooltip-wrapper .k-popup,
.k-chart-tooltip-wrapper .k-popup {
    padding: 0;
    border-width: 0;
    background: transparent;
}

.k-chart-tooltip table {
    border-spacing: 0;
    border-collapse: collapse;
}

.k-chart-tooltip {
    border-radius: 0.375rem;
    font-size: 0.929rem;
    line-height: 1.5;
    padding-block: 0.25rem;
    padding-inline: 0.5rem;
}

.k-chart-tooltip th {
    width: auto;
    text-align: center;
    padding: 1px;
}

.k-chart-tooltip td {
    width: auto;
    text-align: start;
    padding-block: 0.25rem;
    padding-inline: 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;
    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.375rem;
    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;
}

.k-chart-donut-center {
    position: absolute;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border-radius: 50%;
    text-align: center;
    border: 4px solid transparent;
    box-sizing: border-box;
}

.k-pdf-export .k-chart .k-animation-container,
.k-pdf-export .k-sparkline .k-animation-container,
.k-pdf-export .k-stockchart .k-animation-container {
    display: none;
}

.k-diagram {
    height: 600px;
}

.k-diagram .km-scroll-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.k-diagram .km-scroll-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.k-canvas-container {
    width: 100%;
    height: 100%;
}

.k-treemap {
    height: 400px;
    box-sizing: border-box;
    border-width: 1px;
    border-style: solid;
    outline: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, 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-block: 0.25rem;
    padding-inline: 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-block: 0.5rem;
    padding-inline: 0.25rem;
    width: calc( 1.5 * 1em);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: absolute;
    top: 0;
    bottom: 0;
}

.k-treemap .k-treemap-title-vertical > div {
    transform-origin: right;
    transform: rotate(-90deg);
    position: absolute;
    top: 0;
    right: 1em;
}

.k-treemap .k-treemap-wrap {
    border-color: inherit;
    color: inherit;
    background-color: inherit;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.k-treemap .k-treemap-title + .k-treemap-wrap {
    top: calc( 0.5rem + (1.5 * 1rem) + 1px);
}

.k-treemap .k-treemap-title-vertical + .k-treemap-wrap {
    left: calc( 0.5rem + (1.5 * 1rem) + 1px);
}

.k-treemap .k-leaf {
    padding: 0.5rem;
}

.k-gauge {
    text-align: start;
    position: relative;
}

.k-arcgauge,
.k-circulargauge {
    display: inline-block;
}

.k-arcgauge-label,
.k-circulargauge-label {
    position: absolute;
    text-align: center;
    padding: 0;
    margin: 0;
}

.k-qrcode {
    display: inline-block;
}

.k-qrcode > div {
    height: 150px;
}

.k-var--primary {
    background-color: #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.375rem;
}

.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-map {
    height: 600px;
    box-sizing: border-box;
    border-width: 0px;
    border-style: solid;
    font-size: 1rem;
    line-height: 1.5;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.k-map *,
.k-map *::before,
.k-map *::after {
    box-sizing: border-box;
}

.k-map .km-scroll-wrapper {
    width: 100%;
    height: 100%;
    user-select: none;
    position: absolute;
}

.k-map .km-scroll-container {
    height: 100%;
}

.k-map .k-touch-scrollbar {
    display: none;
}

.k-map .k-layer {
    position: absolute;
    left: 0;
    top: 0;
}

.k-map .k-marker {
    transform: translate(-50%, -100%);
    font-size: calc( 16px * 2);
    cursor: pointer;
    position: absolute;
    overflow: visible;
}

.k-map .k-attribution {
    padding-block: 0.25rem;
    padding-inline: 0.5rem;
    border-width: 0;
    font-size: 0.75rem;
    z-index: 1000;
}

.k-map-controls {
    position: absolute;
    display: flex;
    align-items: center;
}

.k-navigator {
    margin: 1rem;
    width: calc( 48px + 4px);
    height: calc( 48px + 4px);
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    border-radius: 50%;
    position: relative;
}

.k-pdf-export .k-navigator {
    display: none;
}

.k-navigator .k-button {
    padding: 0;
    width: auto;
    height: auto;
    line-height: 1;
    box-shadow: none;
    position: absolute;
}

.k-navigator .k-button .k-icon,
.k-navigator .k-button .k-svg-icon {
    min-width: 0;
    min-height: 0;
}

.k-navigator .k-navigator-n,
.k-navigator .k-navigator-up {
    transform: translateX(-50%);
    top: 2px;
    left: 50%;
}

.k-navigator .k-navigator-e,
.k-navigator .k-navigator-right {
    transform: translateY(-50%);
    right: 2px;
    top: 50%;
}

.k-navigator .k-navigator-s,
.k-navigator .k-navigator-down {
    transform: translateX(-50%);
    bottom: 2px;
    left: 50%;
}

.k-navigator .k-navigator-w,
.k-navigator .k-navigator-left {
    transform: translateY(-50%);
    left: 2px;
    top: 50%;
}

.k-zoom-control {
    margin: 1rem;
    border: 0;
    background: none;
    display: flex;
}

.k-pdf-export .k-zoom-control {
    display: none;
}

.k-map {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-map .k-navigator {
    border-color: #e4e7eb;
    color: #212529;
    background-color: #e4e7eb;
}

.k-map .k-marker {
    color: #0d6efd;
}

.k-map .k-attribution {
    background-color: rgba(255, 255, 255, 0.8);
}

.k-orgchart {
    width: 100%;
    padding-block: 1.5rem;
    padding-inline: 1.5rem;
    box-sizing: border-box;
    font-size: 1rem;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    line-height: 1.5;
    overflow: auto;
}

.k-orgchart *,
.k-orgchart *::before,
.k-orgchart *::after {
    box-sizing: border-box;
}

.k-orgchart-container {
    margin-block: 0;
    margin-inline: auto;
    width: 100%;
    height: 100%;
    position: relative;
}

.k-orgchart-group {
    gap: 1.5rem;
}

.k-orgchart-group.k-vstack > .k-orgchart-node-container, .k-orgchart-group.k-vbox > .k-orgchart-node-container {
    gap: 0;
}

.k-orgchart-node-container {
    gap: 1.5rem;
}

.k-orgchart-node-group-container {
    border-radius: 0.375rem;
    padding-block: 1.5rem;
    padding-inline: 1.5rem;
    border-width: 1px;
    border-style: solid;
    outline: 0;
}

.k-orgchart-node-group-title {
    margin: 0 0 0.375rem;
    font-size: 1.25rem;
    line-height: 1.25;
}

.k-orgchart-node-group-subtitle {
    margin: 0 0 1.5rem;
    font-size: 1rem;
}

.k-orgchart-card {
    width: 300px;
    border-width: 1px;
}

.k-orgchart-card .k-card-title {
    margin: 0 0 0px;
}

.k-orgchart-card .k-card-subtitle {
    margin: 0 0 0px;
}

.k-orgchart-card .k-card-body {
    border-width: 2px 0 0;
    border-style: solid;
    flex-grow: 0;
}

.k-orgchart-card .k-card-body .k-card-title-wrap {
    margin: 0 0.75rem 0 0;
    min-width: 0;
    min-height: 45px;
}

.k-orgchart-line {
    background-color: currentColor;
}

.k-orgchart-line-h {
    height: 1px;
}

.k-orgchart-line-v {
    margin-block: 0;
    margin-inline: auto;
    width: 1px;
    height: 25px;
}

.k-orgchart-button {
    z-index: 1;
}

.k-orgchart {
    border-color: #dee2e6;
    color: #212529;
    background-color: #ffffff;
}

.k-orgchart-card .k-card-body {
    border-color: transparent;
}

.k-orgchart-card:focus, .k-orgchart-card.k-focus {
    box-shadow: 0 0 0 3px rgba(222, 226, 230, 0.5);
}

.k-orgchart-node-group-container {
    border-color: #e4e5e6;
    color: #212529;
    background-color: #f8f9fa;
}

.k-orgchart-node-group-container:focus,
.k-orgchart-node-group-container.k-focus {
    box-shadow: 0 0 0 3px rgba(222, 226, 230, 0.5);
}

.k-orgchart-node-group-subtitle {
    color: #6c757d;
}

.k-orgchart-line-h,
.k-orgchart-line-v {
    color: #e4e5e6;
}

.k-signature {
    width: 246px;
    min-height: 108px;
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.k-signature.k-signature-maximized {
    width: 750px;
    height: 252px;
}

.k-signature.k-signature-maximized > .k-signature-line {
    border-bottom-width: 3px;
}

.k-signature-actions {
    display: flex;
    width: min-content;
    margin-inline-start: auto;
    gap: 0.25rem;
    z-index: 2;
}

.k-signature-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
    outline: none;
}

.k-signature-line {
    position: absolute;
    bottom: 33%;
    z-index: 2;
    pointer-events: none;
    border-bottom-width: 1px;
    border-bottom-style: dashed;
}

.k-signature-sm {
    padding-inline: 0.5rem;
    padding-block: 0.125rem;
}

.k-signature-sm .k-signature-line {
    width: calc( 100% - 2 * 0.5rem);
}

.k-signature-md {
    padding-inline: 0.75rem;
    padding-block: 0.25rem;
}

.k-signature-md .k-signature-line {
    width: calc( 100% - 2 * 0.75rem);
}

.k-signature-lg {
    padding-inline: 1rem;
    padding-block: 0.5rem;
}

.k-signature-lg .k-signature-line {
    width: calc( 100% - 2 * 1rem);
}

.k-signature-lg {
    min-height: 110px;
}

.k-signature .k-signature-line {
    border-bottom-color: rgba(13, 202, 240, 0.24);
}

@charset "UTF-8";
/*!
 * Bootstrap  v5.2.3 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Copyright 2011-2022 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-2xl: 2rem;
  --bs-border-radius-pill: 50rem;
  --bs-link-color: #0d6efd;
  --bs-link-hover-color: #0a58ca;
  --bs-code-color: #d63384;
  --bs-highlight-bg: #fff3cd;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid;
  opacity: 0.25;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1, .h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}

h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h4, .h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title] {
  text-decoration: underline dotted;
  cursor: help;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small, .small {
  font-size: 0.875em;
}

mark, .mark {
  padding: 0.1875em;
  background-color: var(--bs-highlight-bg);
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: var(--bs-link-color);
  text-decoration: underline;
}
a:hover {
  color: var(--bs-link-hover-color);
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: var(--bs-code-color);
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  color: var(--bs-body-bg);
  background-color: var(--bs-body-color);
  border-radius: 0.25rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}

.display-2 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}

.display-3 {
  font-size: calc(1.525rem + 3.3vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-3 {
    font-size: 4rem;
  }
}

.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}

.display-5 {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}

.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-6 {
    font-size: 2.5rem;
  }
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 0.875em;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.blockquote > :last-child {
  margin-bottom: 0;
}

.blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 0.875em;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "— ";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid var(--bs-border-color);
  border-radius: 0.375rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 0.875em;
  color: #6c757d;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.table {
  --bs-table-color: var(--bs-body-color);
  --bs-table-bg: transparent;
  --bs-table-border-color: var(--bs-border-color);
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: var(--bs-body-color);
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: var(--bs-body-color);
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: var(--bs-body-color);
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  color: var(--bs-table-color);
  vertical-align: top;
  border-color: var(--bs-table-border-color);
}
.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
.table > tbody {
  vertical-align: inherit;
}
.table > thead {
  vertical-align: bottom;
}

.table-group-divider {
  border-top: 2px solid currentcolor;
}

.caption-top {
  caption-side: top;
}

.table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem;
}

.table-bordered > :not(caption) > * {
  border-width: 1px 0;
}
.table-bordered > :not(caption) > * > * {
  border-width: 0 1px;
}

.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}
.table-borderless > :not(:first-child) {
  border-top-width: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color);
}

.table-striped-columns > :not(caption) > tr > :nth-child(even) {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color);
}

.table-active {
  --bs-table-accent-bg: var(--bs-table-active-bg);
  color: var(--bs-table-active-color);
}

.table-hover > tbody > tr:hover > * {
  --bs-table-accent-bg: var(--bs-table-hover-bg);
  color: var(--bs-table-hover-color);
}

.table-primary {
  --bs-table-color: #000;
  --bs-table-bg: #cfe2ff;
  --bs-table-border-color: #bacbe6;
  --bs-table-striped-bg: #c5d7f2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bacbe6;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfd1ec;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-secondary {
  --bs-table-color: #000;
  --bs-table-bg: #e2e3e5;
  --bs-table-border-color: #cbccce;
  --bs-table-striped-bg: #d7d8da;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #cbccce;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #d1d2d4;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-success {
  --bs-table-color: #000;
  --bs-table-bg: #d1e7dd;
  --bs-table-border-color: #bcd0c7;
  --bs-table-striped-bg: #c7dbd2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bcd0c7;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c1d6cc;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-info {
  --bs-table-color: #000;
  --bs-table-bg: #cff4fc;
  --bs-table-border-color: #badce3;
  --bs-table-striped-bg: #c5e8ef;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #badce3;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfe2e9;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-warning {
  --bs-table-color: #000;
  --bs-table-bg: #fff3cd;
  --bs-table-border-color: #e6dbb9;
  --bs-table-striped-bg: #f2e7c3;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e6dbb9;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ece1be;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-danger {
  --bs-table-color: #000;
  --bs-table-bg: #f8d7da;
  --bs-table-border-color: #dfc2c4;
  --bs-table-striped-bg: #eccccf;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfc2c4;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5c7ca;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-light {
  --bs-table-color: #000;
  --bs-table-bg: #f8f9fa;
  --bs-table-border-color: #dfe0e1;
  --bs-table-striped-bg: #ecedee;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfe0e1;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5e6e7;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-dark {
  --bs-table-color: #fff;
  --bs-table-bg: #212529;
  --bs-table-border-color: #373b3e;
  --bs-table-striped-bg: #2c3034;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #373b3e;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #323539;
  --bs-table-hover-color: #fff;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1399.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.form-label {
  margin-bottom: 0.5rem;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
}

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #6c757d;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  appearance: none;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control[type=file] {
  overflow: hidden;
}
.form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-control::-webkit-date-and-time-value {
  height: 1.5em;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled {
  background-color: #e9ecef;
  opacity: 1;
}
.form-control::file-selector-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::file-selector-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #dde0e3;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext:focus {
  outline: 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}
.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  margin-inline-end: 0.5rem;
}

.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.5rem;
}
.form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  margin-inline-end: 1rem;
}

textarea.form-control {
  min-height: calc(1.5em + 0.75rem + 2px);
}
textarea.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
}
textarea.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
}

.form-control-color {
  width: 3rem;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem;
}
.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control-color::-moz-color-swatch {
  border: 0 !important;
  border-radius: 0.375rem;
}
.form-control-color::-webkit-color-swatch {
  border-radius: 0.375rem;
}
.form-control-color.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
}
.form-control-color.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27%3e%3cpath fill=%27none%27 stroke=%27%23343a40%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27m2 5 6 6 6-6%27/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-select {
    transition: none;
  }
}
.form-select:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}
.form-select:disabled {
  background-color: #e9ecef;
}
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #212529;
}

.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}

.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
  border-radius: 0.5rem;
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-reverse {
  padding-right: 1.5em;
  padding-left: 0;
  text-align: right;
}
.form-check-reverse .form-check-input {
  float: right;
  margin-right: -1.5em;
  margin-left: 0;
}

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  appearance: none;
  print-color-adjust: exact;
}
.form-check-input[type=checkbox] {
  border-radius: 0.25em;
}
.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input:active {
  filter: brightness(90%);
}
.form-check-input:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 20 20%27%3e%3cpath fill=%27none%27 stroke=%27%23fff%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%273%27 d=%27m6 10 3 3 6-6%27/%3e%3c/svg%3e");
}
.form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%27-4 -4 8 8%27%3e%3ccircle r=%272%27 fill=%27%23fff%27/%3e%3c/svg%3e");
}
.form-check-input[type=checkbox]:indeterminate {
  background-color: #0d6efd;
  border-color: #0d6efd;
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 20 20%27%3e%3cpath fill=%27none%27 stroke=%27%23fff%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%273%27 d=%27M6 10h8%27/%3e%3c/svg%3e");
}
.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  cursor: default;
  opacity: 0.5;
}

.form-switch {
  padding-left: 2.5em;
}
.form-switch .form-check-input {
  width: 2em;
  margin-left: -2.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%27-4 -4 8 8%27%3e%3ccircle r=%273%27 fill=%27rgba%280, 0, 0, 0.25%29%27/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2em;
  transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    transition: none;
  }
}
.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%27-4 -4 8 8%27%3e%3ccircle r=%273%27 fill=%27%2386b7fe%27/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%27-4 -4 8 8%27%3e%3ccircle r=%273%27 fill=%27%23fff%27/%3e%3c/svg%3e");
}
.form-switch.form-check-reverse {
  padding-right: 2.5em;
  padding-left: 0;
}
.form-switch.form-check-reverse .form-check-input {
  margin-right: -2.5em;
  margin-left: 0;
}

.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  pointer-events: none;
  filter: none;
  opacity: 0.65;
}

.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  background-color: transparent;
  appearance: none;
}
.form-range:focus {
  outline: 0;
}
.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-range::-moz-focus-outer {
  border: 0;
}
.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    transition: none;
  }
}
.form-range::-webkit-slider-thumb:active {
  background-color: #b6d4fe;
}
.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    transition: none;
  }
}
.form-range::-moz-range-thumb:active {
  background-color: #b6d4fe;
}
.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range:disabled {
  pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.form-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.form-floating {
  position: relative;
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext,
.form-floating > .form-select {
  height: calc(3.5rem + 2px);
  line-height: 1.25;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1rem 0.75rem;
  overflow: hidden;
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    transition: none;
  }
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext {
  padding: 1rem 0.75rem;
}
.form-floating > .form-control::placeholder,
.form-floating > .form-control-plaintext::placeholder {
  color: transparent;
}
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown),
.form-floating > .form-control-plaintext:focus,
.form-floating > .form-control-plaintext:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill,
.form-floating > .form-control-plaintext:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-control-plaintext ~ label,
.form-floating > .form-select ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control-plaintext ~ label {
  border-width: 1px 0;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-select,
.input-group > .form-floating {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group > .form-control:focus,
.input-group > .form-select:focus,
.input-group > .form-floating:focus-within {
  z-index: 5;
}
.input-group .btn {
  position: relative;
  z-index: 2;
}
.input-group .btn:focus {
  z-index: 5;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
}

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.5rem;
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}

.input-group-lg > .form-select,
.input-group-sm > .form-select {
  padding-right: 3rem;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3),
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control,
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4),
.input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-control,
.input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .form-floating:not(:first-child) > .form-control,
.input-group > .form-floating:not(:first-child) > .form-select {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #198754;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(25, 135, 84, 0.9);
  border-radius: 0.375rem;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #198754;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 8 8%27%3e%3cpath fill=%27%23198754%27 d=%27M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z%27/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:valid, .form-select.is-valid {
  border-color: #198754;
}
.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27%3e%3cpath fill=%27none%27 stroke=%27%23343a40%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27m2 5 6 6 6-6%27/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 8 8%27%3e%3cpath fill=%27%23198754%27 d=%27M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z%27/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.was-validated .form-control-color:valid, .form-control-color.is-valid {
  width: calc(3rem + calc(1.5em + 0.75rem));
}

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: #198754;
}
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: #198754;
}
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #198754;
}

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group > .form-control:not(:focus):valid, .input-group > .form-control:not(:focus).is-valid,
.was-validated .input-group > .form-select:not(:focus):valid,
.input-group > .form-select:not(:focus).is-valid,
.was-validated .input-group > .form-floating:not(:focus-within):valid,
.input-group > .form-floating:not(:focus-within).is-valid {
  z-index: 3;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.375rem;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 12 12%27 width=%2712%27 height=%2712%27 fill=%27none%27 stroke=%27%23dc3545%27%3e%3ccircle cx=%276%27 cy=%276%27 r=%274.5%27/%3e%3cpath stroke-linejoin=%27round%27 d=%27M5.8 3.6h.4L6 6.5z%27/%3e%3ccircle cx=%276%27 cy=%278.2%27 r=%27.6%27 fill=%27%23dc3545%27 stroke=%27none%27/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: #dc3545;
}
.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27%3e%3cpath fill=%27none%27 stroke=%27%23343a40%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27m2 5 6 6 6-6%27/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 12 12%27 width=%2712%27 height=%2712%27 fill=%27none%27 stroke=%27%23dc3545%27%3e%3ccircle cx=%276%27 cy=%276%27 r=%274.5%27/%3e%3cpath stroke-linejoin=%27round%27 d=%27M5.8 3.6h.4L6 6.5z%27/%3e%3ccircle cx=%276%27 cy=%278.2%27 r=%27.6%27 fill=%27%23dc3545%27 stroke=%27none%27/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-control-color:invalid, .form-control-color.is-invalid {
  width: calc(3rem + calc(1.5em + 0.75rem));
}

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: #dc3545;
}
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: #dc3545;
}
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group > .form-control:not(:focus):invalid, .input-group > .form-control:not(:focus).is-invalid,
.was-validated .input-group > .form-select:not(:focus):invalid,
.input-group > .form-select:not(:focus).is-invalid,
.was-validated .input-group > .form-floating:not(:focus-within):invalid,
.input-group > .form-floating:not(:focus-within).is-invalid {
  z-index: 4;
}

.btn {
  --bs-btn-padding-x: 0.75rem;
  --bs-btn-padding-y: 0.375rem;
  --bs-btn-font-family: ;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 400;
  --bs-btn-line-height: 1.5;
  --bs-btn-color: #212529;
  --bs-btn-bg: transparent;
  --bs-btn-border-width: 1px;
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: 0.375rem;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  --bs-btn-disabled-opacity: 0.65;
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}
.btn-check + .btn:hover {
  color: var(--bs-btn-color);
  background-color: var(--bs-btn-bg);
  border-color: var(--bs-btn-border-color);
}
.btn:focus-visible {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:focus-visible + .btn {
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-active-bg);
  border-color: var(--bs-btn-active-border-color);
}
.btn-check:checked + .btn:focus-visible, :not(.btn-check) + .btn:active:focus-visible, .btn:first-child:active:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible {
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn:disabled, .btn.disabled, fieldset:disabled .btn {
  color: var(--bs-btn-disabled-color);
  pointer-events: none;
  background-color: var(--bs-btn-disabled-bg);
  border-color: var(--bs-btn-disabled-border-color);
  opacity: var(--bs-btn-disabled-opacity);
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #0d6efd;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0b5ed7;
  --bs-btn-hover-border-color: #0a58ca;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0a58ca;
  --bs-btn-active-border-color: #0a53be;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0d6efd;
  --bs-btn-disabled-border-color: #0d6efd;
}

.btn-secondary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #6c757d;
  --bs-btn-border-color: #6c757d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #5c636a;
  --bs-btn-hover-border-color: #565e64;
  --bs-btn-focus-shadow-rgb: 130, 138, 145;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #565e64;
  --bs-btn-active-border-color: #51585e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #6c757d;
  --bs-btn-disabled-border-color: #6c757d;
}

.btn-success {
  --bs-btn-color: #fff;
  --bs-btn-bg: #198754;
  --bs-btn-border-color: #198754;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #157347;
  --bs-btn-hover-border-color: #146c43;
  --bs-btn-focus-shadow-rgb: 60, 153, 110;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #146c43;
  --bs-btn-active-border-color: #13653f;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #198754;
  --bs-btn-disabled-border-color: #198754;
}

.btn-info {
  --bs-btn-color: #000;
  --bs-btn-bg: #0dcaf0;
  --bs-btn-border-color: #0dcaf0;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #31d2f2;
  --bs-btn-hover-border-color: #25cff2;
  --bs-btn-focus-shadow-rgb: 11, 172, 204;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #3dd5f3;
  --bs-btn-active-border-color: #25cff2;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #0dcaf0;
  --bs-btn-disabled-border-color: #0dcaf0;
}

.btn-warning {
  --bs-btn-color: #000;
  --bs-btn-bg: #ffc107;
  --bs-btn-border-color: #ffc107;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ffca2c;
  --bs-btn-hover-border-color: #ffc720;
  --bs-btn-focus-shadow-rgb: 217, 164, 6;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffcd39;
  --bs-btn-active-border-color: #ffc720;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #ffc107;
  --bs-btn-disabled-border-color: #ffc107;
}

.btn-danger {
  --bs-btn-color: #fff;
  --bs-btn-bg: #dc3545;
  --bs-btn-border-color: #dc3545;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #bb2d3b;
  --bs-btn-hover-border-color: #b02a37;
  --bs-btn-focus-shadow-rgb: 225, 83, 97;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #b02a37;
  --bs-btn-active-border-color: #a52834;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #dc3545;
  --bs-btn-disabled-border-color: #dc3545;
}

.btn-light {
  --bs-btn-color: #000;
  --bs-btn-bg: #f8f9fa;
  --bs-btn-border-color: #f8f9fa;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #d3d4d5;
  --bs-btn-hover-border-color: #c6c7c8;
  --bs-btn-focus-shadow-rgb: 211, 212, 213;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #c6c7c8;
  --bs-btn-active-border-color: #babbbc;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #f8f9fa;
  --bs-btn-disabled-border-color: #f8f9fa;
}

.btn-dark {
  --bs-btn-color: #fff;
  --bs-btn-bg: #212529;
  --bs-btn-border-color: #212529;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #424649;
  --bs-btn-hover-border-color: #373b3e;
  --bs-btn-focus-shadow-rgb: 66, 70, 73;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #4d5154;
  --bs-btn-active-border-color: #373b3e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #212529;
  --bs-btn-disabled-border-color: #212529;
}

.btn-outline-primary {
  --bs-btn-color: #0d6efd;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0d6efd;
  --bs-btn-hover-border-color: #0d6efd;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0d6efd;
  --bs-btn-active-border-color: #0d6efd;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #0d6efd;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #0d6efd;
  --bs-gradient: none;
}

.btn-outline-secondary {
  --bs-btn-color: #6c757d;
  --bs-btn-border-color: #6c757d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #6c757d;
  --bs-btn-hover-border-color: #6c757d;
  --bs-btn-focus-shadow-rgb: 108, 117, 125;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #6c757d;
  --bs-btn-active-border-color: #6c757d;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #6c757d;
  --bs-gradient: none;
}

.btn-outline-success {
  --bs-btn-color: #198754;
  --bs-btn-border-color: #198754;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #198754;
  --bs-btn-hover-border-color: #198754;
  --bs-btn-focus-shadow-rgb: 25, 135, 84;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #198754;
  --bs-btn-active-border-color: #198754;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #198754;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #198754;
  --bs-gradient: none;
}

.btn-outline-info {
  --bs-btn-color: #0dcaf0;
  --bs-btn-border-color: #0dcaf0;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #0dcaf0;
  --bs-btn-hover-border-color: #0dcaf0;
  --bs-btn-focus-shadow-rgb: 13, 202, 240;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #0dcaf0;
  --bs-btn-active-border-color: #0dcaf0;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #0dcaf0;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #0dcaf0;
  --bs-gradient: none;
}

.btn-outline-warning {
  --bs-btn-color: #ffc107;
  --bs-btn-border-color: #ffc107;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ffc107;
  --bs-btn-hover-border-color: #ffc107;
  --bs-btn-focus-shadow-rgb: 255, 193, 7;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffc107;
  --bs-btn-active-border-color: #ffc107;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #ffc107;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #ffc107;
  --bs-gradient: none;
}

.btn-outline-danger {
  --bs-btn-color: #dc3545;
  --bs-btn-border-color: #dc3545;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #dc3545;
  --bs-btn-hover-border-color: #dc3545;
  --bs-btn-focus-shadow-rgb: 220, 53, 69;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #dc3545;
  --bs-btn-active-border-color: #dc3545;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #dc3545;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #dc3545;
  --bs-gradient: none;
}

.btn-outline-light {
  --bs-btn-color: #f8f9fa;
  --bs-btn-border-color: #f8f9fa;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #f8f9fa;
  --bs-btn-hover-border-color: #f8f9fa;
  --bs-btn-focus-shadow-rgb: 248, 249, 250;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #f8f9fa;
  --bs-btn-active-border-color: #f8f9fa;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #f8f9fa;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #f8f9fa;
  --bs-gradient: none;
}

.btn-outline-dark {
  --bs-btn-color: #212529;
  --bs-btn-border-color: #212529;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #212529;
  --bs-btn-hover-border-color: #212529;
  --bs-btn-focus-shadow-rgb: 33, 37, 41;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #212529;
  --bs-btn-active-border-color: #212529;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #212529;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #212529;
  --bs-gradient: none;
}

.btn-link {
  --bs-btn-font-weight: 400;
  --bs-btn-color: var(--bs-link-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: var(--bs-link-hover-color);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-color: var(--bs-link-hover-color);
  --bs-btn-active-border-color: transparent;
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-border-color: transparent;
  --bs-btn-box-shadow: none;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  text-decoration: underline;
}
.btn-link:focus-visible {
  color: var(--bs-btn-color);
}
.btn-link:hover {
  color: var(--bs-btn-hover-color);
}

.btn-lg, .btn-group-lg > .btn {
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-font-size: 1.25rem;
  --bs-btn-border-radius: 0.5rem;
}

.btn-sm, .btn-group-sm > .btn {
  --bs-btn-padding-y: 0.25rem;
  --bs-btn-padding-x: 0.5rem;
  --bs-btn-font-size: 0.875rem;
  --bs-btn-border-radius: 0.25rem;
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}

.dropup,
.dropend,
.dropdown,
.dropstart,
.dropup-center,
.dropdown-center {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  --bs-dropdown-zindex: 1000;
  --bs-dropdown-min-width: 10rem;
  --bs-dropdown-padding-x: 0;
  --bs-dropdown-padding-y: 0.5rem;
  --bs-dropdown-spacer: 0.125rem;
  --bs-dropdown-font-size: 1rem;
  --bs-dropdown-color: #212529;
  --bs-dropdown-bg: #fff;
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-border-radius: 0.375rem;
  --bs-dropdown-border-width: 1px;
  --bs-dropdown-inner-border-radius: calc(0.375rem - 1px);
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-divider-margin-y: 0.5rem;
  --bs-dropdown-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-dropdown-link-color: #212529;
  --bs-dropdown-link-hover-color: #1e2125;
  --bs-dropdown-link-hover-bg: #e9ecef;
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #0d6efd;
  --bs-dropdown-link-disabled-color: #adb5bd;
  --bs-dropdown-item-padding-x: 1rem;
  --bs-dropdown-item-padding-y: 0.25rem;
  --bs-dropdown-header-color: #6c757d;
  --bs-dropdown-header-padding-x: 1rem;
  --bs-dropdown-header-padding-y: 0.5rem;
  position: absolute;
  z-index: var(--bs-dropdown-zindex);
  display: none;
  min-width: var(--bs-dropdown-min-width);
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  margin: 0;
  font-size: var(--bs-dropdown-font-size);
  color: var(--bs-dropdown-color);
  text-align: left;
  list-style: none;
  background-color: var(--bs-dropdown-bg);
  background-clip: padding-box;
  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  border-radius: var(--bs-dropdown-border-radius);
}
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: var(--bs-dropdown-spacer);
}

.dropdown-menu-start {
  --bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}

.dropdown-menu-end {
  --bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-end {
    --bs-position: end;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-end {
    --bs-position: end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-end {
    --bs-position: end;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: var(--bs-dropdown-spacer);
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: var(--bs-dropdown-spacer);
}
.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropend .dropdown-toggle::after {
  vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: var(--bs-dropdown-spacer);
}
.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropstart .dropdown-toggle::after {
  display: none;
}
.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: var(--bs-dropdown-divider-margin-y) 0;
  overflow: hidden;
  border-top: 1px solid var(--bs-dropdown-divider-bg);
  opacity: 1;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  clear: both;
  font-weight: 400;
  color: var(--bs-dropdown-link-color);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: var(--bs-dropdown-link-hover-color);
  background-color: var(--bs-dropdown-link-hover-bg);
}
.dropdown-item.active, .dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: var(--bs-dropdown-link-active-bg);
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: var(--bs-dropdown-link-disabled-color);
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
  margin-bottom: 0;
  font-size: 0.875rem;
  color: var(--bs-dropdown-header-color);
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  color: var(--bs-dropdown-link-color);
}

.dropdown-menu-dark {
  --bs-dropdown-color: #dee2e6;
  --bs-dropdown-bg: #343a40;
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-box-shadow: ;
  --bs-dropdown-link-color: #dee2e6;
  --bs-dropdown-link-hover-color: #fff;
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #0d6efd;
  --bs-dropdown-link-disabled-color: #adb5bd;
  --bs-dropdown-header-color: #adb5bd;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn-check:checked + .btn,
.btn-group > .btn-check:focus + .btn,
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn-check:checked + .btn,
.btn-group-vertical > .btn-check:focus + .btn,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}

.btn-group {
  border-radius: 0.375rem;
}
.btn-group > :not(.btn-check:first-child) + .btn,
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn.dropdown-toggle-split:first-child,
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:nth-child(n+3),
.btn-group > :not(.btn-check) + .btn,
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn ~ .btn,
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-link-color);
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
  --bs-nav-link-disabled-color: #6c757d;
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--bs-nav-link-color);
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover, .nav-link:focus {
  color: var(--bs-nav-link-hover-color);
}
.nav-link.disabled {
  color: var(--bs-nav-link-disabled-color);
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  --bs-nav-tabs-border-width: 1px;
  --bs-nav-tabs-border-color: #dee2e6;
  --bs-nav-tabs-border-radius: 0.375rem;
  --bs-nav-tabs-link-hover-border-color: #e9ecef #e9ecef #dee2e6;
  --bs-nav-tabs-link-active-color: #495057;
  --bs-nav-tabs-link-active-bg: #fff;
  --bs-nav-tabs-link-active-border-color: #dee2e6 #dee2e6 #fff;
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
}
.nav-tabs .nav-link {
  margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
  background: none;
  border: var(--bs-nav-tabs-border-width) solid transparent;
  border-top-left-radius: var(--bs-nav-tabs-border-radius);
  border-top-right-radius: var(--bs-nav-tabs-border-radius);
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: var(--bs-nav-tabs-link-hover-border-color);
}
.nav-tabs .nav-link.disabled, .nav-tabs .nav-link:disabled {
  color: var(--bs-nav-link-disabled-color);
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: var(--bs-nav-tabs-link-active-color);
  background-color: var(--bs-nav-tabs-link-active-bg);
  border-color: var(--bs-nav-tabs-link-active-border-color);
}
.nav-tabs .dropdown-menu {
  margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills {
  --bs-nav-pills-border-radius: 0.375rem;
  --bs-nav-pills-link-active-color: #fff;
  --bs-nav-pills-link-active-bg: #0d6efd;
}
.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: var(--bs-nav-pills-border-radius);
}
.nav-pills .nav-link:disabled {
  color: var(--bs-nav-link-disabled-color);
  background-color: transparent;
  border-color: transparent;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--bs-nav-pills-link-active-color);
  background-color: var(--bs-nav-pills-link-active-bg);
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.navbar {
  --bs-navbar-padding-x: 0;
  --bs-navbar-padding-y: 0.5rem;
  --bs-navbar-color: rgba(0, 0, 0, 0.55);
  --bs-navbar-hover-color: rgba(0, 0, 0, 0.7);
  --bs-navbar-disabled-color: rgba(0, 0, 0, 0.3);
  --bs-navbar-active-color: rgba(0, 0, 0, 0.9);
  --bs-navbar-brand-padding-y: 0.3125rem;
  --bs-navbar-brand-margin-end: 1rem;
  --bs-navbar-brand-font-size: 1.25rem;
  --bs-navbar-brand-color: rgba(0, 0, 0, 0.9);
  --bs-navbar-brand-hover-color: rgba(0, 0, 0, 0.9);
  --bs-navbar-nav-link-padding-x: 0.5rem;
  --bs-navbar-toggler-padding-y: 0.25rem;
  --bs-navbar-toggler-padding-x: 0.75rem;
  --bs-navbar-toggler-font-size: 1.25rem;
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 30 30%27%3e%3cpath stroke=%27rgba%280, 0, 0, 0.55%29%27 stroke-linecap=%27round%27 stroke-miterlimit=%2710%27 stroke-width=%272%27 d=%27M4 7h22M4 15h22M4 23h22%27/%3e%3c/svg%3e");
  --bs-navbar-toggler-border-color: rgba(0, 0, 0, 0.1);
  --bs-navbar-toggler-border-radius: 0.375rem;
  --bs-navbar-toggler-focus-width: 0.25rem;
  --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
}
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-sm,
.navbar > .container-md,
.navbar > .container-lg,
.navbar > .container-xl,
.navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  padding-top: var(--bs-navbar-brand-padding-y);
  padding-bottom: var(--bs-navbar-brand-padding-y);
  margin-right: var(--bs-navbar-brand-margin-end);
  font-size: var(--bs-navbar-brand-font-size);
  color: var(--bs-navbar-brand-color);
  text-decoration: none;
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  color: var(--bs-navbar-brand-hover-color);
}

.navbar-nav {
  --bs-nav-link-padding-x: 0;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-navbar-color);
  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .show > .nav-link,
.navbar-nav .nav-link.active {
  color: var(--bs-navbar-active-color);
}
.navbar-nav .dropdown-menu {
  position: static;
}

.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--bs-navbar-color);
}
.navbar-text a,
.navbar-text a:hover,
.navbar-text a:focus {
  color: var(--bs-navbar-active-color);
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  font-size: var(--bs-navbar-toggler-font-size);
  line-height: 1;
  color: var(--bs-navbar-color);
  background-color: transparent;
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  border-radius: var(--bs-navbar-toggler-border-radius);
  transition: var(--bs-navbar-toggler-transition);
}
@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: var(--bs-navbar-toggler-icon-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
  .navbar-expand-sm .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-sm .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-sm .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
  .navbar-expand-md .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-md .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-md .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
  .navbar-expand-lg .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-lg .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-lg .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xl .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-xl .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-xl .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1400px) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xxl .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-xxl .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-xxl .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: var(--bs-navbar-nav-link-padding-x);
  padding-left: var(--bs-navbar-nav-link-padding-x);
}
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}
.navbar-expand .offcanvas {
  position: static;
  z-index: auto;
  flex-grow: 1;
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
  background-color: transparent !important;
  border: 0 !important;
  transform: none !important;
  transition: none;
}
.navbar-expand .offcanvas .offcanvas-header {
  display: none;
}
.navbar-expand .offcanvas .offcanvas-body {
  display: flex;
  flex-grow: 0;
  padding: 0;
  overflow-y: visible;
}

.navbar-dark {
  --bs-navbar-color: rgba(255, 255, 255, 0.55);
  --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
  --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
  --bs-navbar-active-color: #fff;
  --bs-navbar-brand-color: #fff;
  --bs-navbar-brand-hover-color: #fff;
  --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 30 30%27%3e%3cpath stroke=%27rgba%28255, 255, 255, 0.55%29%27 stroke-linecap=%27round%27 stroke-miterlimit=%2710%27 stroke-width=%272%27 d=%27M4 7h22M4 15h22M4 23h22%27/%3e%3c/svg%3e");
}

.card {
  --bs-card-spacer-y: 1rem;
  --bs-card-spacer-x: 1rem;
  --bs-card-title-spacer-y: 0.5rem;
  --bs-card-border-width: 1px;
  --bs-card-border-color: var(--bs-border-color-translucent);
  --bs-card-border-radius: 0.375rem;
  --bs-card-box-shadow: ;
  --bs-card-inner-border-radius: calc(0.375rem - 1px);
  --bs-card-cap-padding-y: 0.5rem;
  --bs-card-cap-padding-x: 1rem;
  --bs-card-cap-bg: rgba(0, 0, 0, 0.03);
  --bs-card-cap-color: ;
  --bs-card-height: ;
  --bs-card-color: ;
  --bs-card-bg: #fff;
  --bs-card-img-overlay-padding: 1rem;
  --bs-card-group-margin: 0.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  border-radius: var(--bs-card-border-radius);
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  color: var(--bs-card-color);
}

.card-title {
  margin-bottom: var(--bs-card-title-spacer-y);
}

.card-subtitle {
  margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link + .card-link {
  margin-left: var(--bs-card-spacer-x);
}

.card-header {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  margin-bottom: 0;
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
}
.card-header:first-child {
  border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
}

.card-footer {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
}
.card-footer:last-child {
  border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
}

.card-header-tabs {
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
  border-bottom: 0;
}
.card-header-tabs .nav-link.active {
  background-color: var(--bs-card-bg);
  border-bottom-color: var(--bs-card-bg);
}

.card-header-pills {
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: var(--bs-card-img-overlay-padding);
  border-radius: var(--bs-card-inner-border-radius);
}

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
}

.card-group > .card {
  margin-bottom: var(--bs-card-group-margin);
}
@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.accordion {
  --bs-accordion-color: #212529;
  --bs-accordion-bg: #fff;
  --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  --bs-accordion-border-color: var(--bs-border-color);
  --bs-accordion-border-width: 1px;
  --bs-accordion-border-radius: 0.375rem;
  --bs-accordion-inner-border-radius: calc(0.375rem - 1px);
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: #212529;
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27 fill=%27%23212529%27%3e%3cpath fill-rule=%27evenodd%27 d=%27M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z%27/%3e%3c/svg%3e");
  --bs-accordion-btn-icon-width: 1.25rem;
  --bs-accordion-btn-icon-transform: rotate(-180deg);
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27 fill=%27%230c63e4%27%3e%3cpath fill-rule=%27evenodd%27 d=%27M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z%27/%3e%3c/svg%3e");
  --bs-accordion-btn-focus-border-color: #86b7fe;
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: #0c63e4;
  --bs-accordion-active-bg: #e7f1ff;
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 1rem;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}
.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: var(--bs-accordion-active-bg);
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-active-icon);
  transform: var(--bs-accordion-btn-icon-transform);
}
.accordion-button::after {
  flex-shrink: 0;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  margin-left: auto;
  content: "";
  background-image: var(--bs-accordion-btn-icon);
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  transition: var(--bs-accordion-btn-icon-transition);
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  border-color: var(--bs-accordion-btn-focus-border-color);
  outline: 0;
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}
.accordion-item:first-of-type {
  border-top-left-radius: var(--bs-accordion-border-radius);
  border-top-right-radius: var(--bs-accordion-border-radius);
}
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: var(--bs-accordion-inner-border-radius);
  border-top-right-radius: var(--bs-accordion-inner-border-radius);
}
.accordion-item:not(:first-of-type) {
  border-top: 0;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}
.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
  border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
}
.accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}

.accordion-body {
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
}

.accordion-flush .accordion-collapse {
  border-width: 0;
}
.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.accordion-flush .accordion-item:first-child {
  border-top: 0;
}
.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}
.accordion-flush .accordion-item .accordion-button, .accordion-flush .accordion-item .accordion-button.collapsed {
  border-radius: 0;
}

.breadcrumb {
  --bs-breadcrumb-padding-x: 0;
  --bs-breadcrumb-padding-y: 0;
  --bs-breadcrumb-margin-bottom: 1rem;
  --bs-breadcrumb-bg: ;
  --bs-breadcrumb-border-radius: ;
  --bs-breadcrumb-divider-color: #6c757d;
  --bs-breadcrumb-item-padding-x: 0.5rem;
  --bs-breadcrumb-item-active-color: #6c757d;
  display: flex;
  flex-wrap: wrap;
  padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
  margin-bottom: var(--bs-breadcrumb-margin-bottom);
  font-size: var(--bs-breadcrumb-font-size);
  list-style: none;
  background-color: var(--bs-breadcrumb-bg);
  border-radius: var(--bs-breadcrumb-border-radius);
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: var(--bs-breadcrumb-item-padding-x);
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: var(--bs-breadcrumb-divider-color);
  content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
}
.breadcrumb-item.active {
  color: var(--bs-breadcrumb-item-active-color);
}

.pagination {
  --bs-pagination-padding-x: 0.75rem;
  --bs-pagination-padding-y: 0.375rem;
  --bs-pagination-font-size: 1rem;
  --bs-pagination-color: var(--bs-link-color);
  --bs-pagination-bg: #fff;
  --bs-pagination-border-width: 1px;
  --bs-pagination-border-color: #dee2e6;
  --bs-pagination-border-radius: 0.375rem;
  --bs-pagination-hover-color: var(--bs-link-hover-color);
  --bs-pagination-hover-bg: #e9ecef;
  --bs-pagination-hover-border-color: #dee2e6;
  --bs-pagination-focus-color: var(--bs-link-hover-color);
  --bs-pagination-focus-bg: #e9ecef;
  --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-pagination-active-color: #fff;
  --bs-pagination-active-bg: #0d6efd;
  --bs-pagination-active-border-color: #0d6efd;
  --bs-pagination-disabled-color: #6c757d;
  --bs-pagination-disabled-bg: #fff;
  --bs-pagination-disabled-border-color: #dee2e6;
  display: flex;
  padding-left: 0;
  list-style: none;
}

.page-link {
  position: relative;
  display: block;
  padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  font-size: var(--bs-pagination-font-size);
  color: var(--bs-pagination-color);
  text-decoration: none;
  background-color: var(--bs-pagination-bg);
  border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .page-link {
    transition: none;
  }
}
.page-link:hover {
  z-index: 2;
  color: var(--bs-pagination-hover-color);
  background-color: var(--bs-pagination-hover-bg);
  border-color: var(--bs-pagination-hover-border-color);
}
.page-link:focus {
  z-index: 3;
  color: var(--bs-pagination-focus-color);
  background-color: var(--bs-pagination-focus-bg);
  outline: 0;
  box-shadow: var(--bs-pagination-focus-box-shadow);
}
.page-link.active, .active > .page-link {
  z-index: 3;
  color: var(--bs-pagination-active-color);
  background-color: var(--bs-pagination-active-bg);
  border-color: var(--bs-pagination-active-border-color);
}
.page-link.disabled, .disabled > .page-link {
  color: var(--bs-pagination-disabled-color);
  pointer-events: none;
  background-color: var(--bs-pagination-disabled-bg);
  border-color: var(--bs-pagination-disabled-border-color);
}

.page-item:not(:first-child) .page-link {
  margin-left: -1px;
}
.page-item:first-child .page-link {
  border-top-left-radius: var(--bs-pagination-border-radius);
  border-bottom-left-radius: var(--bs-pagination-border-radius);
}
.page-item:last-child .page-link {
  border-top-right-radius: var(--bs-pagination-border-radius);
  border-bottom-right-radius: var(--bs-pagination-border-radius);
}

.pagination-lg {
  --bs-pagination-padding-x: 1.5rem;
  --bs-pagination-padding-y: 0.75rem;
  --bs-pagination-font-size: 1.25rem;
  --bs-pagination-border-radius: 0.5rem;
}

.pagination-sm {
  --bs-pagination-padding-x: 0.5rem;
  --bs-pagination-padding-y: 0.25rem;
  --bs-pagination-font-size: 0.875rem;
  --bs-pagination-border-radius: 0.25rem;
}

.badge {
  --bs-badge-padding-x: 0.65em;
  --bs-badge-padding-y: 0.35em;
  --bs-badge-font-size: 0.75em;
  --bs-badge-font-weight: 700;
  --bs-badge-color: #fff;
  --bs-badge-border-radius: 0.375rem;
  display: inline-block;
  padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
  font-size: var(--bs-badge-font-size);
  font-weight: var(--bs-badge-font-weight);
  line-height: 1;
  color: var(--bs-badge-color);
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: var(--bs-badge-border-radius);
}
.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.alert {
  --bs-alert-bg: transparent;
  --bs-alert-padding-x: 1rem;
  --bs-alert-padding-y: 1rem;
  --bs-alert-margin-bottom: 1rem;
  --bs-alert-color: inherit;
  --bs-alert-border-color: transparent;
  --bs-alert-border: 1px solid var(--bs-alert-border-color);
  --bs-alert-border-radius: 0.375rem;
  position: relative;
  padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
  margin-bottom: var(--bs-alert-margin-bottom);
  color: var(--bs-alert-color);
  background-color: var(--bs-alert-bg);
  border: var(--bs-alert-border);
  border-radius: var(--bs-alert-border-radius);
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 3rem;
}
.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
}

.alert-primary {
  --bs-alert-color: #084298;
  --bs-alert-bg: #cfe2ff;
  --bs-alert-border-color: #b6d4fe;
}
.alert-primary .alert-link {
  color: #06357a;
}

.alert-secondary {
  --bs-alert-color: #41464b;
  --bs-alert-bg: #e2e3e5;
  --bs-alert-border-color: #d3d6d8;
}
.alert-secondary .alert-link {
  color: #34383c;
}

.alert-success {
  --bs-alert-color: #0f5132;
  --bs-alert-bg: #d1e7dd;
  --bs-alert-border-color: #badbcc;
}
.alert-success .alert-link {
  color: #0c4128;
}

.alert-info {
  --bs-alert-color: #055160;
  --bs-alert-bg: #cff4fc;
  --bs-alert-border-color: #b6effb;
}
.alert-info .alert-link {
  color: #04414d;
}

.alert-warning {
  --bs-alert-color: #664d03;
  --bs-alert-bg: #fff3cd;
  --bs-alert-border-color: #ffecb5;
}
.alert-warning .alert-link {
  color: #523e02;
}

.alert-danger {
  --bs-alert-color: #842029;
  --bs-alert-bg: #f8d7da;
  --bs-alert-border-color: #f5c2c7;
}
.alert-danger .alert-link {
  color: #6a1a21;
}

.alert-light {
  --bs-alert-color: #636464;
  --bs-alert-bg: #fefefe;
  --bs-alert-border-color: #fdfdfe;
}
.alert-light .alert-link {
  color: #4f5050;
}

.alert-dark {
  --bs-alert-color: #141619;
  --bs-alert-bg: #d3d3d4;
  --bs-alert-border-color: #bcbebf;
}
.alert-dark .alert-link {
  color: #101214;
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}
.progress {
  --bs-progress-height: 1rem;
  --bs-progress-font-size: 0.75rem;
  --bs-progress-bg: #e9ecef;
  --bs-progress-border-radius: 0.375rem;
  --bs-progress-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  --bs-progress-bar-color: #fff;
  --bs-progress-bar-bg: #0d6efd;
  --bs-progress-bar-transition: width 0.6s ease;
  display: flex;
  height: var(--bs-progress-height);
  overflow: hidden;
  font-size: var(--bs-progress-font-size);
  background-color: var(--bs-progress-bg);
  border-radius: var(--bs-progress-border-radius);
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: var(--bs-progress-bar-color);
  text-align: center;
  white-space: nowrap;
  background-color: var(--bs-progress-bar-bg);
  transition: var(--bs-progress-bar-transition);
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: var(--bs-progress-height) var(--bs-progress-height);
}

.progress-bar-animated {
  animation: 1s linear infinite progress-bar-stripes;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    animation: none;
  }
}

.list-group {
  --bs-list-group-color: #212529;
  --bs-list-group-bg: #fff;
  --bs-list-group-border-color: rgba(0, 0, 0, 0.125);
  --bs-list-group-border-width: 1px;
  --bs-list-group-border-radius: 0.375rem;
  --bs-list-group-item-padding-x: 1rem;
  --bs-list-group-item-padding-y: 0.5rem;
  --bs-list-group-action-color: #495057;
  --bs-list-group-action-hover-color: #495057;
  --bs-list-group-action-hover-bg: #f8f9fa;
  --bs-list-group-action-active-color: #212529;
  --bs-list-group-action-active-bg: #e9ecef;
  --bs-list-group-disabled-color: #6c757d;
  --bs-list-group-disabled-bg: #fff;
  --bs-list-group-active-color: #fff;
  --bs-list-group-active-bg: #0d6efd;
  --bs-list-group-active-border-color: #0d6efd;
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: var(--bs-list-group-border-radius);
}

.list-group-numbered {
  list-style-type: none;
  counter-reset: section;
}
.list-group-numbered > .list-group-item::before {
  content: counters(section, ".") ". ";
  counter-increment: section;
}

.list-group-item-action {
  width: 100%;
  color: var(--bs-list-group-action-color);
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: var(--bs-list-group-action-hover-color);
  text-decoration: none;
  background-color: var(--bs-list-group-action-hover-bg);
}
.list-group-item-action:active {
  color: var(--bs-list-group-action-active-color);
  background-color: var(--bs-list-group-action-active-bg);
}

.list-group-item {
  position: relative;
  display: block;
  padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
  color: var(--bs-list-group-color);
  text-decoration: none;
  background-color: var(--bs-list-group-bg);
  border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
}
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: var(--bs-list-group-disabled-color);
  pointer-events: none;
  background-color: var(--bs-list-group-disabled-bg);
}
.list-group-item.active {
  z-index: 2;
  color: var(--bs-list-group-active-color);
  background-color: var(--bs-list-group-active-bg);
  border-color: var(--bs-list-group-active-border-color);
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: calc(-1 * var(--bs-list-group-border-width));
  border-top-width: var(--bs-list-group-border-width);
}

.list-group-horizontal {
  flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child:not(:last-child) {
  border-bottom-left-radius: var(--bs-list-group-border-radius);
  border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child:not(:first-child) {
  border-top-right-radius: var(--bs-list-group-border-radius);
  border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: var(--bs-list-group-border-width);
  border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: calc(-1 * var(--bs-list-group-border-width));
  border-left-width: var(--bs-list-group-border-width);
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 1400px) {
  .list-group-horizontal-xxl {
    flex-direction: row;
  }
  .list-group-horizontal-xxl > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
.list-group-flush {
  border-radius: 0;
}
.list-group-flush > .list-group-item {
  border-width: 0 0 var(--bs-list-group-border-width);
}
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: #084298;
  background-color: #cfe2ff;
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #084298;
  background-color: #bacbe6;
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #084298;
  border-color: #084298;
}

.list-group-item-secondary {
  color: #41464b;
  background-color: #e2e3e5;
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #41464b;
  background-color: #cbccce;
}
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #41464b;
  border-color: #41464b;
}

.list-group-item-success {
  color: #0f5132;
  background-color: #d1e7dd;
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #0f5132;
  background-color: #bcd0c7;
}
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #0f5132;
  border-color: #0f5132;
}

.list-group-item-info {
  color: #055160;
  background-color: #cff4fc;
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #055160;
  background-color: #badce3;
}
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #055160;
  border-color: #055160;
}

.list-group-item-warning {
  color: #664d03;
  background-color: #fff3cd;
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #664d03;
  background-color: #e6dbb9;
}
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #664d03;
  border-color: #664d03;
}

.list-group-item-danger {
  color: #842029;
  background-color: #f8d7da;
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #842029;
  background-color: #dfc2c4;
}
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #842029;
  border-color: #842029;
}

.list-group-item-light {
  color: #636464;
  background-color: #fefefe;
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #636464;
  background-color: #e5e5e5;
}
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #636464;
  border-color: #636464;
}

.list-group-item-dark {
  color: #141619;
  background-color: #d3d3d4;
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #141619;
  background-color: #bebebf;
}
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #141619;
  border-color: #141619;
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27 fill=%27%23000%27%3e%3cpath d=%27M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z%27/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.375rem;
  opacity: 0.5;
}
.btn-close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}
.btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  opacity: 1;
}
.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  user-select: none;
  opacity: 0.25;
}

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.toast {
  --bs-toast-zindex: 1090;
  --bs-toast-padding-x: 0.75rem;
  --bs-toast-padding-y: 0.5rem;
  --bs-toast-spacing: 1.5rem;
  --bs-toast-max-width: 350px;
  --bs-toast-font-size: 0.875rem;
  --bs-toast-color: ;
  --bs-toast-bg: rgba(255, 255, 255, 0.85);
  --bs-toast-border-width: 1px;
  --bs-toast-border-color: var(--bs-border-color-translucent);
  --bs-toast-border-radius: 0.375rem;
  --bs-toast-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-toast-header-color: #6c757d;
  --bs-toast-header-bg: rgba(255, 255, 255, 0.85);
  --bs-toast-header-border-color: rgba(0, 0, 0, 0.05);
  width: var(--bs-toast-max-width);
  max-width: 100%;
  font-size: var(--bs-toast-font-size);
  color: var(--bs-toast-color);
  pointer-events: auto;
  background-color: var(--bs-toast-bg);
  background-clip: padding-box;
  border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
  box-shadow: var(--bs-toast-box-shadow);
  border-radius: var(--bs-toast-border-radius);
}
.toast.showing {
  opacity: 0;
}
.toast:not(.show) {
  display: none;
}

.toast-container {
  --bs-toast-zindex: 1090;
  position: absolute;
  z-index: var(--bs-toast-zindex);
  width: max-content;
  max-width: 100%;
  pointer-events: none;
}
.toast-container > :not(:last-child) {
  margin-bottom: var(--bs-toast-spacing);
}

.toast-header {
  display: flex;
  align-items: center;
  padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
  color: var(--bs-toast-header-color);
  background-color: var(--bs-toast-header-bg);
  background-clip: padding-box;
  border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
  border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
  border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
}
.toast-header .btn-close {
  margin-right: calc(-0.5 * var(--bs-toast-padding-x));
  margin-left: var(--bs-toast-padding-x);
}

.toast-body {
  padding: var(--bs-toast-padding-x);
  word-wrap: break-word;
}

.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: ;
  --bs-modal-bg: #fff;
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: 1px;
  --bs-modal-border-radius: 0.5rem;
  --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-modal-inner-border-radius: calc(0.5rem - 1px);
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: 1px;
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: 1px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - var(--bs-modal-margin) * 2);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: var(--bs-modal-bg);
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  outline: 0;
}

.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #000;
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg);
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-modal-header-padding);
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius);
}
.modal-header .btn-close {
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
  margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: var(--bs-modal-title-line-height);
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: var(--bs-modal-padding);
}

.modal-footer {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
  background-color: var(--bs-modal-footer-bg);
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}
.modal-footer > * {
  margin: calc(var(--bs-modal-footer-gap) * 0.5);
}

@media (min-width: 576px) {
  .modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }
  .modal-dialog {
    max-width: var(--bs-modal-width);
    margin-right: auto;
    margin-left: auto;
  }
  .modal-sm {
    --bs-modal-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    --bs-modal-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    --bs-modal-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header,
.modal-fullscreen .modal-footer {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header,
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header,
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header,
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header,
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header,
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
}
.tooltip {
  --bs-tooltip-zindex: 1080;
  --bs-tooltip-max-width: 200px;
  --bs-tooltip-padding-x: 0.5rem;
  --bs-tooltip-padding-y: 0.25rem;
  --bs-tooltip-margin: ;
  --bs-tooltip-font-size: 0.875rem;
  --bs-tooltip-color: #fff;
  --bs-tooltip-bg: #000;
  --bs-tooltip-border-radius: 0.375rem;
  --bs-tooltip-opacity: 0.9;
  --bs-tooltip-arrow-width: 0.8rem;
  --bs-tooltip-arrow-height: 0.4rem;
  z-index: var(--bs-tooltip-zindex);
  display: block;
  padding: var(--bs-tooltip-arrow-height);
  margin: var(--bs-tooltip-margin);
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: var(--bs-tooltip-font-size);
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: var(--bs-tooltip-opacity);
}
.tooltip .tooltip-arrow {
  display: block;
  width: var(--bs-tooltip-arrow-width);
  height: var(--bs-tooltip-arrow-height);
}
.tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  bottom: 0;
}
.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  top: -1px;
  border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
  border-top-color: var(--bs-tooltip-bg);
}

/* rtl:begin:ignore */
.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  left: 0;
  width: var(--bs-tooltip-arrow-height);
  height: var(--bs-tooltip-arrow-width);
}
.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  right: -1px;
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
  border-right-color: var(--bs-tooltip-bg);
}

/* rtl:end:ignore */
.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  top: 0;
}
.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  bottom: -1px;
  border-width: 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
  border-bottom-color: var(--bs-tooltip-bg);
}

/* rtl:begin:ignore */
.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  right: 0;
  width: var(--bs-tooltip-arrow-height);
  height: var(--bs-tooltip-arrow-width);
}
.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  left: -1px;
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
  border-left-color: var(--bs-tooltip-bg);
}

/* rtl:end:ignore */
.tooltip-inner {
  max-width: var(--bs-tooltip-max-width);
  padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
  color: var(--bs-tooltip-color);
  text-align: center;
  background-color: var(--bs-tooltip-bg);
  border-radius: var(--bs-tooltip-border-radius);
}

.popover {
  --bs-popover-zindex: 1070;
  --bs-popover-max-width: 276px;
  --bs-popover-font-size: 0.875rem;
  --bs-popover-bg: #fff;
  --bs-popover-border-width: 1px;
  --bs-popover-border-color: var(--bs-border-color-translucent);
  --bs-popover-border-radius: 0.5rem;
  --bs-popover-inner-border-radius: calc(0.5rem - 1px);
  --bs-popover-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-popover-header-padding-x: 1rem;
  --bs-popover-header-padding-y: 0.5rem;
  --bs-popover-header-font-size: 1rem;
  --bs-popover-header-color: ;
  --bs-popover-header-bg: #f0f0f0;
  --bs-popover-body-padding-x: 1rem;
  --bs-popover-body-padding-y: 1rem;
  --bs-popover-body-color: #212529;
  --bs-popover-arrow-width: 1rem;
  --bs-popover-arrow-height: 0.5rem;
  --bs-popover-arrow-border: var(--bs-popover-border-color);
  z-index: var(--bs-popover-zindex);
  display: block;
  max-width: var(--bs-popover-max-width);
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: var(--bs-popover-font-size);
  word-wrap: break-word;
  background-color: var(--bs-popover-bg);
  background-clip: padding-box;
  border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  border-radius: var(--bs-popover-border-radius);
}
.popover .popover-arrow {
  display: block;
  width: var(--bs-popover-arrow-width);
  height: var(--bs-popover-arrow-height);
}
.popover .popover-arrow::before, .popover .popover-arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
  border-width: 0;
}

.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before, .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
}
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  bottom: 0;
  border-top-color: var(--bs-popover-arrow-border);
}
.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  bottom: var(--bs-popover-border-width);
  border-top-color: var(--bs-popover-bg);
}

/* rtl:begin:ignore */
.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
  left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  width: var(--bs-popover-arrow-height);
  height: var(--bs-popover-arrow-width);
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before, .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  left: 0;
  border-right-color: var(--bs-popover-arrow-border);
}
.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  left: var(--bs-popover-border-width);
  border-right-color: var(--bs-popover-bg);
}

/* rtl:end:ignore */
.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before, .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  border-width: 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
}
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  top: 0;
  border-bottom-color: var(--bs-popover-arrow-border);
}
.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  top: var(--bs-popover-border-width);
  border-bottom-color: var(--bs-popover-bg);
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: var(--bs-popover-arrow-width);
  margin-left: calc(-0.5 * var(--bs-popover-arrow-width));
  content: "";
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
}

/* rtl:begin:ignore */
.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
  right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  width: var(--bs-popover-arrow-height);
  height: var(--bs-popover-arrow-width);
}
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before, .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
}
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  right: 0;
  border-left-color: var(--bs-popover-arrow-border);
}
.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  right: var(--bs-popover-border-width);
  border-left-color: var(--bs-popover-bg);
}

/* rtl:end:ignore */
.popover-header {
  padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
  margin-bottom: 0;
  font-size: var(--bs-popover-header-font-size);
  color: var(--bs-popover-header-color);
  background-color: var(--bs-popover-header-bg);
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  border-top-left-radius: var(--bs-popover-inner-border-radius);
  border-top-right-radius: var(--bs-popover-inner-border-radius);
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
  color: var(--bs-popover-body-color);
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-start,
  .carousel-fade .active.carousel-item-end {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}

/* rtl:options: {
  "autoRename": true,
  "stringMap":[ {
    "name"    : "prev-next",
    "search"  : "prev",
    "replace" : "next"
  } ]
} */
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27 fill=%27%23fff%27%3e%3cpath d=%27M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z%27/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27 fill=%27%23fff%27%3e%3cpath d=%27M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z%27/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
  list-style: none;
}
.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
}

.carousel-dark .carousel-control-prev-icon,
.carousel-dark .carousel-control-next-icon {
  filter: invert(1) grayscale(100);
}
.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #000;
}
.carousel-dark .carousel-caption {
  color: #000;
}

.spinner-grow,
.spinner-border {
  display: inline-block;
  width: var(--bs-spinner-width);
  height: var(--bs-spinner-height);
  vertical-align: var(--bs-spinner-vertical-align);
  border-radius: 50%;
  animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg) /* rtl:ignore */;
  }
}
.spinner-border {
  --bs-spinner-width: 2rem;
  --bs-spinner-height: 2rem;
  --bs-spinner-vertical-align: -0.125em;
  --bs-spinner-border-width: 0.25em;
  --bs-spinner-animation-speed: 0.75s;
  --bs-spinner-animation-name: spinner-border;
  border: var(--bs-spinner-border-width) solid currentcolor;
  border-right-color: transparent;
}

.spinner-border-sm {
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem;
  --bs-spinner-border-width: 0.2em;
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
.spinner-grow {
  --bs-spinner-width: 2rem;
  --bs-spinner-height: 2rem;
  --bs-spinner-vertical-align: -0.125em;
  --bs-spinner-animation-speed: 0.75s;
  --bs-spinner-animation-name: spinner-grow;
  background-color: currentcolor;
  opacity: 0;
}

.spinner-grow-sm {
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
  .spinner-grow {
    --bs-spinner-animation-speed: 1.5s;
  }
}
.offcanvas, .offcanvas-xxl, .offcanvas-xl, .offcanvas-lg, .offcanvas-md, .offcanvas-sm {
  --bs-offcanvas-zindex: 1045;
  --bs-offcanvas-width: 400px;
  --bs-offcanvas-height: 30vh;
  --bs-offcanvas-padding-x: 1rem;
  --bs-offcanvas-padding-y: 1rem;
  --bs-offcanvas-color: ;
  --bs-offcanvas-bg: #fff;
  --bs-offcanvas-border-width: 1px;
  --bs-offcanvas-border-color: var(--bs-border-color-translucent);
  --bs-offcanvas-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

@media (max-width: 575.98px) {
  .offcanvas-sm {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: transform 0.3s ease-in-out;
  }
}
@media (max-width: 575.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-sm {
    transition: none;
  }
}
@media (max-width: 575.98px) {
  .offcanvas-sm.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-sm.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-sm.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-sm.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-sm.showing, .offcanvas-sm.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-sm.showing, .offcanvas-sm.hiding, .offcanvas-sm.show {
    visibility: visible;
  }
}
@media (min-width: 576px) {
  .offcanvas-sm {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-sm .offcanvas-header {
    display: none;
  }
  .offcanvas-sm .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 767.98px) {
  .offcanvas-md {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: transform 0.3s ease-in-out;
  }
}
@media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-md {
    transition: none;
  }
}
@media (max-width: 767.98px) {
  .offcanvas-md.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-md.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-md.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-md.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-md.showing, .offcanvas-md.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-md.showing, .offcanvas-md.hiding, .offcanvas-md.show {
    visibility: visible;
  }
}
@media (min-width: 768px) {
  .offcanvas-md {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-md .offcanvas-header {
    display: none;
  }
  .offcanvas-md .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 991.98px) {
  .offcanvas-lg {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: transform 0.3s ease-in-out;
  }
}
@media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-lg {
    transition: none;
  }
}
@media (max-width: 991.98px) {
  .offcanvas-lg.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-lg.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-lg.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-lg.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-lg.showing, .offcanvas-lg.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-lg.showing, .offcanvas-lg.hiding, .offcanvas-lg.show {
    visibility: visible;
  }
}
@media (min-width: 992px) {
  .offcanvas-lg {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-lg .offcanvas-header {
    display: none;
  }
  .offcanvas-lg .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 1199.98px) {
  .offcanvas-xl {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: transform 0.3s ease-in-out;
  }
}
@media (max-width: 1199.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-xl {
    transition: none;
  }
}
@media (max-width: 1199.98px) {
  .offcanvas-xl.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-xl.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-xl.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-xl.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-xl.showing, .offcanvas-xl.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-xl.showing, .offcanvas-xl.hiding, .offcanvas-xl.show {
    visibility: visible;
  }
}
@media (min-width: 1200px) {
  .offcanvas-xl {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-xl .offcanvas-header {
    display: none;
  }
  .offcanvas-xl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 1399.98px) {
  .offcanvas-xxl {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: transform 0.3s ease-in-out;
  }
}
@media (max-width: 1399.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-xxl {
    transition: none;
  }
}
@media (max-width: 1399.98px) {
  .offcanvas-xxl.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-xxl.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-xxl.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-xxl.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-xxl.showing, .offcanvas-xxl.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-xxl.showing, .offcanvas-xxl.hiding, .offcanvas-xxl.show {
    visibility: visible;
  }
}
@media (min-width: 1400px) {
  .offcanvas-xxl {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-xxl .offcanvas-header {
    display: none;
  }
  .offcanvas-xxl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: var(--bs-offcanvas-zindex);
  display: flex;
  flex-direction: column;
  max-width: 100%;
  color: var(--bs-offcanvas-color);
  visibility: hidden;
  background-color: var(--bs-offcanvas-bg);
  background-clip: padding-box;
  outline: 0;
  transition: transform 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .offcanvas {
    transition: none;
  }
}
.offcanvas.offcanvas-start {
  top: 0;
  left: 0;
  width: var(--bs-offcanvas-width);
  border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateX(-100%);
}
.offcanvas.offcanvas-end {
  top: 0;
  right: 0;
  width: var(--bs-offcanvas-width);
  border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateX(100%);
}
.offcanvas.offcanvas-top {
  top: 0;
  right: 0;
  left: 0;
  height: var(--bs-offcanvas-height);
  max-height: 100%;
  border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateY(-100%);
}
.offcanvas.offcanvas-bottom {
  right: 0;
  left: 0;
  height: var(--bs-offcanvas-height);
  max-height: 100%;
  border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateY(100%);
}
.offcanvas.showing, .offcanvas.show:not(.hiding) {
  transform: none;
}
.offcanvas.showing, .offcanvas.hiding, .offcanvas.show {
  visibility: visible;
}

.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.offcanvas-backdrop.fade {
  opacity: 0;
}
.offcanvas-backdrop.show {
  opacity: 0.5;
}

.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
}
.offcanvas-header .btn-close {
  padding: calc(var(--bs-offcanvas-padding-y) * 0.5) calc(var(--bs-offcanvas-padding-x) * 0.5);
  margin-top: calc(-0.5 * var(--bs-offcanvas-padding-y));
  margin-right: calc(-0.5 * var(--bs-offcanvas-padding-x));
  margin-bottom: calc(-0.5 * var(--bs-offcanvas-padding-y));
}

.offcanvas-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.offcanvas-body {
  flex-grow: 1;
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  overflow-y: auto;
}

.placeholder {
  display: inline-block;
  min-height: 1em;
  vertical-align: middle;
  cursor: wait;
  background-color: currentcolor;
  opacity: 0.5;
}
.placeholder.btn::before {
  display: inline-block;
  content: "";
}

.placeholder-xs {
  min-height: 0.6em;
}

.placeholder-sm {
  min-height: 0.8em;
}

.placeholder-lg {
  min-height: 1.2em;
}

.placeholder-glow .placeholder {
  animation: placeholder-glow 2s ease-in-out infinite;
}

@keyframes placeholder-glow {
  50% {
    opacity: 0.2;
  }
}
.placeholder-wave {
  mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  mask-size: 200% 100%;
  animation: placeholder-wave 2s linear infinite;
}

@keyframes placeholder-wave {
  100% {
    mask-position: -200% 0%;
  }
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.text-bg-primary {
  color: #fff !important;
  background-color: RGBA(13, 110, 253, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-secondary {
  color: #fff !important;
  background-color: RGBA(108, 117, 125, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-success {
  color: #fff !important;
  background-color: RGBA(25, 135, 84, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-info {
  color: #000 !important;
  background-color: RGBA(13, 202, 240, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-warning {
  color: #000 !important;
  background-color: RGBA(255, 193, 7, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-danger {
  color: #fff !important;
  background-color: RGBA(220, 53, 69, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-light {
  color: #000 !important;
  background-color: RGBA(248, 249, 250, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-dark {
  color: #fff !important;
  background-color: RGBA(33, 37, 41, var(--bs-bg-opacity, 1)) !important;
}

.link-primary {
  color: #0d6efd !important;
}
.link-primary:hover, .link-primary:focus {
  color: #0a58ca !important;
}

.link-secondary {
  color: #6c757d !important;
}
.link-secondary:hover, .link-secondary:focus {
  color: #565e64 !important;
}

.link-success {
  color: #198754 !important;
}
.link-success:hover, .link-success:focus {
  color: #146c43 !important;
}

.link-info {
  color: #0dcaf0 !important;
}
.link-info:hover, .link-info:focus {
  color: #3dd5f3 !important;
}

.link-warning {
  color: #ffc107 !important;
}
.link-warning:hover, .link-warning:focus {
  color: #ffcd39 !important;
}

.link-danger {
  color: #dc3545 !important;
}
.link-danger:hover, .link-danger:focus {
  color: #b02a37 !important;
}

.link-light {
  color: #f8f9fa !important;
}
.link-light:hover, .link-light:focus {
  color: #f9fafb !important;
}

.link-dark {
  color: #212529 !important;
}
.link-dark:hover, .link-dark:focus {
  color: #1a1e21 !important;
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

.sticky-bottom {
  position: sticky;
  bottom: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-sm-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-md-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-lg-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xxl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}

.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vr {
  display: inline-block;
  align-self: stretch;
  width: 1px;
  min-height: 1em;
  background-color: currentcolor;
  opacity: 0.25;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.opacity-0 {
  opacity: 0 !important;
}

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.top-0 {
  top: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  transform: translateY(-50%) !important;
}

.border {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border-primary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}

.border-secondary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}

.border-success {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
}

.border-info {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
}

.border-warning {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
}

.border-danger {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}

.border-light {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
}

.border-dark {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}

.border-white {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
}

.border-1 {
  --bs-border-width: 1px;
}

.border-2 {
  --bs-border-width: 2px;
}

.border-3 {
  --bs-border-width: 3px;
}

.border-4 {
  --bs-border-width: 4px;
}

.border-5 {
  --bs-border-width: 5px;
}

.border-opacity-10 {
  --bs-border-opacity: 0.1;
}

.border-opacity-25 {
  --bs-border-opacity: 0.25;
}

.border-opacity-50 {
  --bs-border-opacity: 0.5;
}

.border-opacity-75 {
  --bs-border-opacity: 0.75;
}

.border-opacity-100 {
  --bs-border-opacity: 1;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: #6c757d !important;
}

.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}

.text-opacity-25 {
  --bs-text-opacity: 0.25;
}

.text-opacity-50 {
  --bs-text-opacity: 0.5;
}

.text-opacity-75 {
  --bs-text-opacity: 0.75;
}

.text-opacity-100 {
  --bs-text-opacity: 1;
}

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}

.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
  --bs-bg-opacity: 1;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  user-select: all !important;
}

.user-select-auto {
  user-select: auto !important;
}

.user-select-none {
  user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: var(--bs-border-radius-sm) !important;
}

.rounded-2 {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-3 {
  border-radius: var(--bs-border-radius-lg) !important;
}

.rounded-4 {
  border-radius: var(--bs-border-radius-xl) !important;
}

.rounded-5 {
  border-radius: var(--bs-border-radius-2xl) !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: var(--bs-border-radius-pill) !important;
}

.rounded-top {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-end {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-bottom {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

.rounded-start {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-1 {
    gap: 0.25rem !important;
  }
  .gap-sm-2 {
    gap: 0.5rem !important;
  }
  .gap-sm-3 {
    gap: 1rem !important;
  }
  .gap-sm-4 {
    gap: 1.5rem !important;
  }
  .gap-sm-5 {
    gap: 3rem !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }
  .float-md-end {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-1 {
    gap: 0.25rem !important;
  }
  .gap-md-2 {
    gap: 0.5rem !important;
  }
  .gap-md-3 {
    gap: 1rem !important;
  }
  .gap-md-4 {
    gap: 1.5rem !important;
  }
  .gap-md-5 {
    gap: 3rem !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }
  .float-lg-end {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-1 {
    gap: 0.25rem !important;
  }
  .gap-lg-2 {
    gap: 0.5rem !important;
  }
  .gap-lg-3 {
    gap: 1rem !important;
  }
  .gap-lg-4 {
    gap: 1.5rem !important;
  }
  .gap-lg-5 {
    gap: 3rem !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }
  .float-xl-end {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-1 {
    gap: 0.25rem !important;
  }
  .gap-xl-2 {
    gap: 0.5rem !important;
  }
  .gap-xl-3 {
    gap: 1rem !important;
  }
  .gap-xl-4 {
    gap: 1.5rem !important;
  }
  .gap-xl-5 {
    gap: 3rem !important;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
  .gap-xxl-0 {
    gap: 0 !important;
  }
  .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  .gap-xxl-3 {
    gap: 1rem !important;
  }
  .gap-xxl-4 {
    gap: 1.5rem !important;
  }
  .gap-xxl-5 {
    gap: 3rem !important;
  }
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }
  .fs-2 {
    font-size: 2rem !important;
  }
  .fs-3 {
    font-size: 1.75rem !important;
  }
  .fs-4 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
/*!
 * Bootstrap Icons v1.13.1 (https://icons.getbootstrap.com/)
 * Copyright 2019-2024 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE)
 */
@font-face {
  font-display: block;
  font-family: "bootstrap-icons";
  src: url(92ea18a81d737146ff04.woff2) format("woff2"), url(1295669cd4e305c97f2c.woff) format("woff");
}
.bi::before,
[class^=bi-]::before,
[class*=" bi-"]::before {
  display: inline-block;
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.bi-123::before {
  content: "\f67f";
}

.bi-alarm-fill::before {
  content: "\f101";
}

.bi-alarm::before {
  content: "\f102";
}

.bi-align-bottom::before {
  content: "\f103";
}

.bi-align-center::before {
  content: "\f104";
}

.bi-align-end::before {
  content: "\f105";
}

.bi-align-middle::before {
  content: "\f106";
}

.bi-align-start::before {
  content: "\f107";
}

.bi-align-top::before {
  content: "\f108";
}

.bi-alt::before {
  content: "\f109";
}

.bi-app-indicator::before {
  content: "\f10a";
}

.bi-app::before {
  content: "\f10b";
}

.bi-archive-fill::before {
  content: "\f10c";
}

.bi-archive::before {
  content: "\f10d";
}

.bi-arrow-90deg-down::before {
  content: "\f10e";
}

.bi-arrow-90deg-left::before {
  content: "\f10f";
}

.bi-arrow-90deg-right::before {
  content: "\f110";
}

.bi-arrow-90deg-up::before {
  content: "\f111";
}

.bi-arrow-bar-down::before {
  content: "\f112";
}

.bi-arrow-bar-left::before {
  content: "\f113";
}

.bi-arrow-bar-right::before {
  content: "\f114";
}

.bi-arrow-bar-up::before {
  content: "\f115";
}

.bi-arrow-clockwise::before {
  content: "\f116";
}

.bi-arrow-counterclockwise::before {
  content: "\f117";
}

.bi-arrow-down-circle-fill::before {
  content: "\f118";
}

.bi-arrow-down-circle::before {
  content: "\f119";
}

.bi-arrow-down-left-circle-fill::before {
  content: "\f11a";
}

.bi-arrow-down-left-circle::before {
  content: "\f11b";
}

.bi-arrow-down-left-square-fill::before {
  content: "\f11c";
}

.bi-arrow-down-left-square::before {
  content: "\f11d";
}

.bi-arrow-down-left::before {
  content: "\f11e";
}

.bi-arrow-down-right-circle-fill::before {
  content: "\f11f";
}

.bi-arrow-down-right-circle::before {
  content: "\f120";
}

.bi-arrow-down-right-square-fill::before {
  content: "\f121";
}

.bi-arrow-down-right-square::before {
  content: "\f122";
}

.bi-arrow-down-right::before {
  content: "\f123";
}

.bi-arrow-down-short::before {
  content: "\f124";
}

.bi-arrow-down-square-fill::before {
  content: "\f125";
}

.bi-arrow-down-square::before {
  content: "\f126";
}

.bi-arrow-down-up::before {
  content: "\f127";
}

.bi-arrow-down::before {
  content: "\f128";
}

.bi-arrow-left-circle-fill::before {
  content: "\f129";
}

.bi-arrow-left-circle::before {
  content: "\f12a";
}

.bi-arrow-left-right::before {
  content: "\f12b";
}

.bi-arrow-left-short::before {
  content: "\f12c";
}

.bi-arrow-left-square-fill::before {
  content: "\f12d";
}

.bi-arrow-left-square::before {
  content: "\f12e";
}

.bi-arrow-left::before {
  content: "\f12f";
}

.bi-arrow-repeat::before {
  content: "\f130";
}

.bi-arrow-return-left::before {
  content: "\f131";
}

.bi-arrow-return-right::before {
  content: "\f132";
}

.bi-arrow-right-circle-fill::before {
  content: "\f133";
}

.bi-arrow-right-circle::before {
  content: "\f134";
}

.bi-arrow-right-short::before {
  content: "\f135";
}

.bi-arrow-right-square-fill::before {
  content: "\f136";
}

.bi-arrow-right-square::before {
  content: "\f137";
}

.bi-arrow-right::before {
  content: "\f138";
}

.bi-arrow-up-circle-fill::before {
  content: "\f139";
}

.bi-arrow-up-circle::before {
  content: "\f13a";
}

.bi-arrow-up-left-circle-fill::before {
  content: "\f13b";
}

.bi-arrow-up-left-circle::before {
  content: "\f13c";
}

.bi-arrow-up-left-square-fill::before {
  content: "\f13d";
}

.bi-arrow-up-left-square::before {
  content: "\f13e";
}

.bi-arrow-up-left::before {
  content: "\f13f";
}

.bi-arrow-up-right-circle-fill::before {
  content: "\f140";
}

.bi-arrow-up-right-circle::before {
  content: "\f141";
}

.bi-arrow-up-right-square-fill::before {
  content: "\f142";
}

.bi-arrow-up-right-square::before {
  content: "\f143";
}

.bi-arrow-up-right::before {
  content: "\f144";
}

.bi-arrow-up-short::before {
  content: "\f145";
}

.bi-arrow-up-square-fill::before {
  content: "\f146";
}

.bi-arrow-up-square::before {
  content: "\f147";
}

.bi-arrow-up::before {
  content: "\f148";
}

.bi-arrows-angle-contract::before {
  content: "\f149";
}

.bi-arrows-angle-expand::before {
  content: "\f14a";
}

.bi-arrows-collapse::before {
  content: "\f14b";
}

.bi-arrows-expand::before {
  content: "\f14c";
}

.bi-arrows-fullscreen::before {
  content: "\f14d";
}

.bi-arrows-move::before {
  content: "\f14e";
}

.bi-aspect-ratio-fill::before {
  content: "\f14f";
}

.bi-aspect-ratio::before {
  content: "\f150";
}

.bi-asterisk::before {
  content: "\f151";
}

.bi-at::before {
  content: "\f152";
}

.bi-award-fill::before {
  content: "\f153";
}

.bi-award::before {
  content: "\f154";
}

.bi-back::before {
  content: "\f155";
}

.bi-backspace-fill::before {
  content: "\f156";
}

.bi-backspace-reverse-fill::before {
  content: "\f157";
}

.bi-backspace-reverse::before {
  content: "\f158";
}

.bi-backspace::before {
  content: "\f159";
}

.bi-badge-3d-fill::before {
  content: "\f15a";
}

.bi-badge-3d::before {
  content: "\f15b";
}

.bi-badge-4k-fill::before {
  content: "\f15c";
}

.bi-badge-4k::before {
  content: "\f15d";
}

.bi-badge-8k-fill::before {
  content: "\f15e";
}

.bi-badge-8k::before {
  content: "\f15f";
}

.bi-badge-ad-fill::before {
  content: "\f160";
}

.bi-badge-ad::before {
  content: "\f161";
}

.bi-badge-ar-fill::before {
  content: "\f162";
}

.bi-badge-ar::before {
  content: "\f163";
}

.bi-badge-cc-fill::before {
  content: "\f164";
}

.bi-badge-cc::before {
  content: "\f165";
}

.bi-badge-hd-fill::before {
  content: "\f166";
}

.bi-badge-hd::before {
  content: "\f167";
}

.bi-badge-tm-fill::before {
  content: "\f168";
}

.bi-badge-tm::before {
  content: "\f169";
}

.bi-badge-vo-fill::before {
  content: "\f16a";
}

.bi-badge-vo::before {
  content: "\f16b";
}

.bi-badge-vr-fill::before {
  content: "\f16c";
}

.bi-badge-vr::before {
  content: "\f16d";
}

.bi-badge-wc-fill::before {
  content: "\f16e";
}

.bi-badge-wc::before {
  content: "\f16f";
}

.bi-bag-check-fill::before {
  content: "\f170";
}

.bi-bag-check::before {
  content: "\f171";
}

.bi-bag-dash-fill::before {
  content: "\f172";
}

.bi-bag-dash::before {
  content: "\f173";
}

.bi-bag-fill::before {
  content: "\f174";
}

.bi-bag-plus-fill::before {
  content: "\f175";
}

.bi-bag-plus::before {
  content: "\f176";
}

.bi-bag-x-fill::before {
  content: "\f177";
}

.bi-bag-x::before {
  content: "\f178";
}

.bi-bag::before {
  content: "\f179";
}

.bi-bar-chart-fill::before {
  content: "\f17a";
}

.bi-bar-chart-line-fill::before {
  content: "\f17b";
}

.bi-bar-chart-line::before {
  content: "\f17c";
}

.bi-bar-chart-steps::before {
  content: "\f17d";
}

.bi-bar-chart::before {
  content: "\f17e";
}

.bi-basket-fill::before {
  content: "\f17f";
}

.bi-basket::before {
  content: "\f180";
}

.bi-basket2-fill::before {
  content: "\f181";
}

.bi-basket2::before {
  content: "\f182";
}

.bi-basket3-fill::before {
  content: "\f183";
}

.bi-basket3::before {
  content: "\f184";
}

.bi-battery-charging::before {
  content: "\f185";
}

.bi-battery-full::before {
  content: "\f186";
}

.bi-battery-half::before {
  content: "\f187";
}

.bi-battery::before {
  content: "\f188";
}

.bi-bell-fill::before {
  content: "\f189";
}

.bi-bell::before {
  content: "\f18a";
}

.bi-bezier::before {
  content: "\f18b";
}

.bi-bezier2::before {
  content: "\f18c";
}

.bi-bicycle::before {
  content: "\f18d";
}

.bi-binoculars-fill::before {
  content: "\f18e";
}

.bi-binoculars::before {
  content: "\f18f";
}

.bi-blockquote-left::before {
  content: "\f190";
}

.bi-blockquote-right::before {
  content: "\f191";
}

.bi-book-fill::before {
  content: "\f192";
}

.bi-book-half::before {
  content: "\f193";
}

.bi-book::before {
  content: "\f194";
}

.bi-bookmark-check-fill::before {
  content: "\f195";
}

.bi-bookmark-check::before {
  content: "\f196";
}

.bi-bookmark-dash-fill::before {
  content: "\f197";
}

.bi-bookmark-dash::before {
  content: "\f198";
}

.bi-bookmark-fill::before {
  content: "\f199";
}

.bi-bookmark-heart-fill::before {
  content: "\f19a";
}

.bi-bookmark-heart::before {
  content: "\f19b";
}

.bi-bookmark-plus-fill::before {
  content: "\f19c";
}

.bi-bookmark-plus::before {
  content: "\f19d";
}

.bi-bookmark-star-fill::before {
  content: "\f19e";
}

.bi-bookmark-star::before {
  content: "\f19f";
}

.bi-bookmark-x-fill::before {
  content: "\f1a0";
}

.bi-bookmark-x::before {
  content: "\f1a1";
}

.bi-bookmark::before {
  content: "\f1a2";
}

.bi-bookmarks-fill::before {
  content: "\f1a3";
}

.bi-bookmarks::before {
  content: "\f1a4";
}

.bi-bookshelf::before {
  content: "\f1a5";
}

.bi-bootstrap-fill::before {
  content: "\f1a6";
}

.bi-bootstrap-reboot::before {
  content: "\f1a7";
}

.bi-bootstrap::before {
  content: "\f1a8";
}

.bi-border-all::before {
  content: "\f1a9";
}

.bi-border-bottom::before {
  content: "\f1aa";
}

.bi-border-center::before {
  content: "\f1ab";
}

.bi-border-inner::before {
  content: "\f1ac";
}

.bi-border-left::before {
  content: "\f1ad";
}

.bi-border-middle::before {
  content: "\f1ae";
}

.bi-border-outer::before {
  content: "\f1af";
}

.bi-border-right::before {
  content: "\f1b0";
}

.bi-border-style::before {
  content: "\f1b1";
}

.bi-border-top::before {
  content: "\f1b2";
}

.bi-border-width::before {
  content: "\f1b3";
}

.bi-border::before {
  content: "\f1b4";
}

.bi-bounding-box-circles::before {
  content: "\f1b5";
}

.bi-bounding-box::before {
  content: "\f1b6";
}

.bi-box-arrow-down-left::before {
  content: "\f1b7";
}

.bi-box-arrow-down-right::before {
  content: "\f1b8";
}

.bi-box-arrow-down::before {
  content: "\f1b9";
}

.bi-box-arrow-in-down-left::before {
  content: "\f1ba";
}

.bi-box-arrow-in-down-right::before {
  content: "\f1bb";
}

.bi-box-arrow-in-down::before {
  content: "\f1bc";
}

.bi-box-arrow-in-left::before {
  content: "\f1bd";
}

.bi-box-arrow-in-right::before {
  content: "\f1be";
}

.bi-box-arrow-in-up-left::before {
  content: "\f1bf";
}

.bi-box-arrow-in-up-right::before {
  content: "\f1c0";
}

.bi-box-arrow-in-up::before {
  content: "\f1c1";
}

.bi-box-arrow-left::before {
  content: "\f1c2";
}

.bi-box-arrow-right::before {
  content: "\f1c3";
}

.bi-box-arrow-up-left::before {
  content: "\f1c4";
}

.bi-box-arrow-up-right::before {
  content: "\f1c5";
}

.bi-box-arrow-up::before {
  content: "\f1c6";
}

.bi-box-seam::before {
  content: "\f1c7";
}

.bi-box::before {
  content: "\f1c8";
}

.bi-braces::before {
  content: "\f1c9";
}

.bi-bricks::before {
  content: "\f1ca";
}

.bi-briefcase-fill::before {
  content: "\f1cb";
}

.bi-briefcase::before {
  content: "\f1cc";
}

.bi-brightness-alt-high-fill::before {
  content: "\f1cd";
}

.bi-brightness-alt-high::before {
  content: "\f1ce";
}

.bi-brightness-alt-low-fill::before {
  content: "\f1cf";
}

.bi-brightness-alt-low::before {
  content: "\f1d0";
}

.bi-brightness-high-fill::before {
  content: "\f1d1";
}

.bi-brightness-high::before {
  content: "\f1d2";
}

.bi-brightness-low-fill::before {
  content: "\f1d3";
}

.bi-brightness-low::before {
  content: "\f1d4";
}

.bi-broadcast-pin::before {
  content: "\f1d5";
}

.bi-broadcast::before {
  content: "\f1d6";
}

.bi-brush-fill::before {
  content: "\f1d7";
}

.bi-brush::before {
  content: "\f1d8";
}

.bi-bucket-fill::before {
  content: "\f1d9";
}

.bi-bucket::before {
  content: "\f1da";
}

.bi-bug-fill::before {
  content: "\f1db";
}

.bi-bug::before {
  content: "\f1dc";
}

.bi-building::before {
  content: "\f1dd";
}

.bi-bullseye::before {
  content: "\f1de";
}

.bi-calculator-fill::before {
  content: "\f1df";
}

.bi-calculator::before {
  content: "\f1e0";
}

.bi-calendar-check-fill::before {
  content: "\f1e1";
}

.bi-calendar-check::before {
  content: "\f1e2";
}

.bi-calendar-date-fill::before {
  content: "\f1e3";
}

.bi-calendar-date::before {
  content: "\f1e4";
}

.bi-calendar-day-fill::before {
  content: "\f1e5";
}

.bi-calendar-day::before {
  content: "\f1e6";
}

.bi-calendar-event-fill::before {
  content: "\f1e7";
}

.bi-calendar-event::before {
  content: "\f1e8";
}

.bi-calendar-fill::before {
  content: "\f1e9";
}

.bi-calendar-minus-fill::before {
  content: "\f1ea";
}

.bi-calendar-minus::before {
  content: "\f1eb";
}

.bi-calendar-month-fill::before {
  content: "\f1ec";
}

.bi-calendar-month::before {
  content: "\f1ed";
}

.bi-calendar-plus-fill::before {
  content: "\f1ee";
}

.bi-calendar-plus::before {
  content: "\f1ef";
}

.bi-calendar-range-fill::before {
  content: "\f1f0";
}

.bi-calendar-range::before {
  content: "\f1f1";
}

.bi-calendar-week-fill::before {
  content: "\f1f2";
}

.bi-calendar-week::before {
  content: "\f1f3";
}

.bi-calendar-x-fill::before {
  content: "\f1f4";
}

.bi-calendar-x::before {
  content: "\f1f5";
}

.bi-calendar::before {
  content: "\f1f6";
}

.bi-calendar2-check-fill::before {
  content: "\f1f7";
}

.bi-calendar2-check::before {
  content: "\f1f8";
}

.bi-calendar2-date-fill::before {
  content: "\f1f9";
}

.bi-calendar2-date::before {
  content: "\f1fa";
}

.bi-calendar2-day-fill::before {
  content: "\f1fb";
}

.bi-calendar2-day::before {
  content: "\f1fc";
}

.bi-calendar2-event-fill::before {
  content: "\f1fd";
}

.bi-calendar2-event::before {
  content: "\f1fe";
}

.bi-calendar2-fill::before {
  content: "\f1ff";
}

.bi-calendar2-minus-fill::before {
  content: "\f200";
}

.bi-calendar2-minus::before {
  content: "\f201";
}

.bi-calendar2-month-fill::before {
  content: "\f202";
}

.bi-calendar2-month::before {
  content: "\f203";
}

.bi-calendar2-plus-fill::before {
  content: "\f204";
}

.bi-calendar2-plus::before {
  content: "\f205";
}

.bi-calendar2-range-fill::before {
  content: "\f206";
}

.bi-calendar2-range::before {
  content: "\f207";
}

.bi-calendar2-week-fill::before {
  content: "\f208";
}

.bi-calendar2-week::before {
  content: "\f209";
}

.bi-calendar2-x-fill::before {
  content: "\f20a";
}

.bi-calendar2-x::before {
  content: "\f20b";
}

.bi-calendar2::before {
  content: "\f20c";
}

.bi-calendar3-event-fill::before {
  content: "\f20d";
}

.bi-calendar3-event::before {
  content: "\f20e";
}

.bi-calendar3-fill::before {
  content: "\f20f";
}

.bi-calendar3-range-fill::before {
  content: "\f210";
}

.bi-calendar3-range::before {
  content: "\f211";
}

.bi-calendar3-week-fill::before {
  content: "\f212";
}

.bi-calendar3-week::before {
  content: "\f213";
}

.bi-calendar3::before {
  content: "\f214";
}

.bi-calendar4-event::before {
  content: "\f215";
}

.bi-calendar4-range::before {
  content: "\f216";
}

.bi-calendar4-week::before {
  content: "\f217";
}

.bi-calendar4::before {
  content: "\f218";
}

.bi-camera-fill::before {
  content: "\f219";
}

.bi-camera-reels-fill::before {
  content: "\f21a";
}

.bi-camera-reels::before {
  content: "\f21b";
}

.bi-camera-video-fill::before {
  content: "\f21c";
}

.bi-camera-video-off-fill::before {
  content: "\f21d";
}

.bi-camera-video-off::before {
  content: "\f21e";
}

.bi-camera-video::before {
  content: "\f21f";
}

.bi-camera::before {
  content: "\f220";
}

.bi-camera2::before {
  content: "\f221";
}

.bi-capslock-fill::before {
  content: "\f222";
}

.bi-capslock::before {
  content: "\f223";
}

.bi-card-checklist::before {
  content: "\f224";
}

.bi-card-heading::before {
  content: "\f225";
}

.bi-card-image::before {
  content: "\f226";
}

.bi-card-list::before {
  content: "\f227";
}

.bi-card-text::before {
  content: "\f228";
}

.bi-caret-down-fill::before {
  content: "\f229";
}

.bi-caret-down-square-fill::before {
  content: "\f22a";
}

.bi-caret-down-square::before {
  content: "\f22b";
}

.bi-caret-down::before {
  content: "\f22c";
}

.bi-caret-left-fill::before {
  content: "\f22d";
}

.bi-caret-left-square-fill::before {
  content: "\f22e";
}

.bi-caret-left-square::before {
  content: "\f22f";
}

.bi-caret-left::before {
  content: "\f230";
}

.bi-caret-right-fill::before {
  content: "\f231";
}

.bi-caret-right-square-fill::before {
  content: "\f232";
}

.bi-caret-right-square::before {
  content: "\f233";
}

.bi-caret-right::before {
  content: "\f234";
}

.bi-caret-up-fill::before {
  content: "\f235";
}

.bi-caret-up-square-fill::before {
  content: "\f236";
}

.bi-caret-up-square::before {
  content: "\f237";
}

.bi-caret-up::before {
  content: "\f238";
}

.bi-cart-check-fill::before {
  content: "\f239";
}

.bi-cart-check::before {
  content: "\f23a";
}

.bi-cart-dash-fill::before {
  content: "\f23b";
}

.bi-cart-dash::before {
  content: "\f23c";
}

.bi-cart-fill::before {
  content: "\f23d";
}

.bi-cart-plus-fill::before {
  content: "\f23e";
}

.bi-cart-plus::before {
  content: "\f23f";
}

.bi-cart-x-fill::before {
  content: "\f240";
}

.bi-cart-x::before {
  content: "\f241";
}

.bi-cart::before {
  content: "\f242";
}

.bi-cart2::before {
  content: "\f243";
}

.bi-cart3::before {
  content: "\f244";
}

.bi-cart4::before {
  content: "\f245";
}

.bi-cash-stack::before {
  content: "\f246";
}

.bi-cash::before {
  content: "\f247";
}

.bi-cast::before {
  content: "\f248";
}

.bi-chat-dots-fill::before {
  content: "\f249";
}

.bi-chat-dots::before {
  content: "\f24a";
}

.bi-chat-fill::before {
  content: "\f24b";
}

.bi-chat-left-dots-fill::before {
  content: "\f24c";
}

.bi-chat-left-dots::before {
  content: "\f24d";
}

.bi-chat-left-fill::before {
  content: "\f24e";
}

.bi-chat-left-quote-fill::before {
  content: "\f24f";
}

.bi-chat-left-quote::before {
  content: "\f250";
}

.bi-chat-left-text-fill::before {
  content: "\f251";
}

.bi-chat-left-text::before {
  content: "\f252";
}

.bi-chat-left::before {
  content: "\f253";
}

.bi-chat-quote-fill::before {
  content: "\f254";
}

.bi-chat-quote::before {
  content: "\f255";
}

.bi-chat-right-dots-fill::before {
  content: "\f256";
}

.bi-chat-right-dots::before {
  content: "\f257";
}

.bi-chat-right-fill::before {
  content: "\f258";
}

.bi-chat-right-quote-fill::before {
  content: "\f259";
}

.bi-chat-right-quote::before {
  content: "\f25a";
}

.bi-chat-right-text-fill::before {
  content: "\f25b";
}

.bi-chat-right-text::before {
  content: "\f25c";
}

.bi-chat-right::before {
  content: "\f25d";
}

.bi-chat-square-dots-fill::before {
  content: "\f25e";
}

.bi-chat-square-dots::before {
  content: "\f25f";
}

.bi-chat-square-fill::before {
  content: "\f260";
}

.bi-chat-square-quote-fill::before {
  content: "\f261";
}

.bi-chat-square-quote::before {
  content: "\f262";
}

.bi-chat-square-text-fill::before {
  content: "\f263";
}

.bi-chat-square-text::before {
  content: "\f264";
}

.bi-chat-square::before {
  content: "\f265";
}

.bi-chat-text-fill::before {
  content: "\f266";
}

.bi-chat-text::before {
  content: "\f267";
}

.bi-chat::before {
  content: "\f268";
}

.bi-check-all::before {
  content: "\f269";
}

.bi-check-circle-fill::before {
  content: "\f26a";
}

.bi-check-circle::before {
  content: "\f26b";
}

.bi-check-square-fill::before {
  content: "\f26c";
}

.bi-check-square::before {
  content: "\f26d";
}

.bi-check::before {
  content: "\f26e";
}

.bi-check2-all::before {
  content: "\f26f";
}

.bi-check2-circle::before {
  content: "\f270";
}

.bi-check2-square::before {
  content: "\f271";
}

.bi-check2::before {
  content: "\f272";
}

.bi-chevron-bar-contract::before {
  content: "\f273";
}

.bi-chevron-bar-down::before {
  content: "\f274";
}

.bi-chevron-bar-expand::before {
  content: "\f275";
}

.bi-chevron-bar-left::before {
  content: "\f276";
}

.bi-chevron-bar-right::before {
  content: "\f277";
}

.bi-chevron-bar-up::before {
  content: "\f278";
}

.bi-chevron-compact-down::before {
  content: "\f279";
}

.bi-chevron-compact-left::before {
  content: "\f27a";
}

.bi-chevron-compact-right::before {
  content: "\f27b";
}

.bi-chevron-compact-up::before {
  content: "\f27c";
}

.bi-chevron-contract::before {
  content: "\f27d";
}

.bi-chevron-double-down::before {
  content: "\f27e";
}

.bi-chevron-double-left::before {
  content: "\f27f";
}

.bi-chevron-double-right::before {
  content: "\f280";
}

.bi-chevron-double-up::before {
  content: "\f281";
}

.bi-chevron-down::before {
  content: "\f282";
}

.bi-chevron-expand::before {
  content: "\f283";
}

.bi-chevron-left::before {
  content: "\f284";
}

.bi-chevron-right::before {
  content: "\f285";
}

.bi-chevron-up::before {
  content: "\f286";
}

.bi-circle-fill::before {
  content: "\f287";
}

.bi-circle-half::before {
  content: "\f288";
}

.bi-circle-square::before {
  content: "\f289";
}

.bi-circle::before {
  content: "\f28a";
}

.bi-clipboard-check::before {
  content: "\f28b";
}

.bi-clipboard-data::before {
  content: "\f28c";
}

.bi-clipboard-minus::before {
  content: "\f28d";
}

.bi-clipboard-plus::before {
  content: "\f28e";
}

.bi-clipboard-x::before {
  content: "\f28f";
}

.bi-clipboard::before {
  content: "\f290";
}

.bi-clock-fill::before {
  content: "\f291";
}

.bi-clock-history::before {
  content: "\f292";
}

.bi-clock::before {
  content: "\f293";
}

.bi-cloud-arrow-down-fill::before {
  content: "\f294";
}

.bi-cloud-arrow-down::before {
  content: "\f295";
}

.bi-cloud-arrow-up-fill::before {
  content: "\f296";
}

.bi-cloud-arrow-up::before {
  content: "\f297";
}

.bi-cloud-check-fill::before {
  content: "\f298";
}

.bi-cloud-check::before {
  content: "\f299";
}

.bi-cloud-download-fill::before {
  content: "\f29a";
}

.bi-cloud-download::before {
  content: "\f29b";
}

.bi-cloud-drizzle-fill::before {
  content: "\f29c";
}

.bi-cloud-drizzle::before {
  content: "\f29d";
}

.bi-cloud-fill::before {
  content: "\f29e";
}

.bi-cloud-fog-fill::before {
  content: "\f29f";
}

.bi-cloud-fog::before {
  content: "\f2a0";
}

.bi-cloud-fog2-fill::before {
  content: "\f2a1";
}

.bi-cloud-fog2::before {
  content: "\f2a2";
}

.bi-cloud-hail-fill::before {
  content: "\f2a3";
}

.bi-cloud-hail::before {
  content: "\f2a4";
}

.bi-cloud-haze-fill::before {
  content: "\f2a6";
}

.bi-cloud-haze::before {
  content: "\f2a7";
}

.bi-cloud-haze2-fill::before {
  content: "\f2a8";
}

.bi-cloud-lightning-fill::before {
  content: "\f2a9";
}

.bi-cloud-lightning-rain-fill::before {
  content: "\f2aa";
}

.bi-cloud-lightning-rain::before {
  content: "\f2ab";
}

.bi-cloud-lightning::before {
  content: "\f2ac";
}

.bi-cloud-minus-fill::before {
  content: "\f2ad";
}

.bi-cloud-minus::before {
  content: "\f2ae";
}

.bi-cloud-moon-fill::before {
  content: "\f2af";
}

.bi-cloud-moon::before {
  content: "\f2b0";
}

.bi-cloud-plus-fill::before {
  content: "\f2b1";
}

.bi-cloud-plus::before {
  content: "\f2b2";
}

.bi-cloud-rain-fill::before {
  content: "\f2b3";
}

.bi-cloud-rain-heavy-fill::before {
  content: "\f2b4";
}

.bi-cloud-rain-heavy::before {
  content: "\f2b5";
}

.bi-cloud-rain::before {
  content: "\f2b6";
}

.bi-cloud-slash-fill::before {
  content: "\f2b7";
}

.bi-cloud-slash::before {
  content: "\f2b8";
}

.bi-cloud-sleet-fill::before {
  content: "\f2b9";
}

.bi-cloud-sleet::before {
  content: "\f2ba";
}

.bi-cloud-snow-fill::before {
  content: "\f2bb";
}

.bi-cloud-snow::before {
  content: "\f2bc";
}

.bi-cloud-sun-fill::before {
  content: "\f2bd";
}

.bi-cloud-sun::before {
  content: "\f2be";
}

.bi-cloud-upload-fill::before {
  content: "\f2bf";
}

.bi-cloud-upload::before {
  content: "\f2c0";
}

.bi-cloud::before {
  content: "\f2c1";
}

.bi-clouds-fill::before {
  content: "\f2c2";
}

.bi-clouds::before {
  content: "\f2c3";
}

.bi-cloudy-fill::before {
  content: "\f2c4";
}

.bi-cloudy::before {
  content: "\f2c5";
}

.bi-code-slash::before {
  content: "\f2c6";
}

.bi-code-square::before {
  content: "\f2c7";
}

.bi-code::before {
  content: "\f2c8";
}

.bi-collection-fill::before {
  content: "\f2c9";
}

.bi-collection-play-fill::before {
  content: "\f2ca";
}

.bi-collection-play::before {
  content: "\f2cb";
}

.bi-collection::before {
  content: "\f2cc";
}

.bi-columns-gap::before {
  content: "\f2cd";
}

.bi-columns::before {
  content: "\f2ce";
}

.bi-command::before {
  content: "\f2cf";
}

.bi-compass-fill::before {
  content: "\f2d0";
}

.bi-compass::before {
  content: "\f2d1";
}

.bi-cone-striped::before {
  content: "\f2d2";
}

.bi-cone::before {
  content: "\f2d3";
}

.bi-controller::before {
  content: "\f2d4";
}

.bi-cpu-fill::before {
  content: "\f2d5";
}

.bi-cpu::before {
  content: "\f2d6";
}

.bi-credit-card-2-back-fill::before {
  content: "\f2d7";
}

.bi-credit-card-2-back::before {
  content: "\f2d8";
}

.bi-credit-card-2-front-fill::before {
  content: "\f2d9";
}

.bi-credit-card-2-front::before {
  content: "\f2da";
}

.bi-credit-card-fill::before {
  content: "\f2db";
}

.bi-credit-card::before {
  content: "\f2dc";
}

.bi-crop::before {
  content: "\f2dd";
}

.bi-cup-fill::before {
  content: "\f2de";
}

.bi-cup-straw::before {
  content: "\f2df";
}

.bi-cup::before {
  content: "\f2e0";
}

.bi-cursor-fill::before {
  content: "\f2e1";
}

.bi-cursor-text::before {
  content: "\f2e2";
}

.bi-cursor::before {
  content: "\f2e3";
}

.bi-dash-circle-dotted::before {
  content: "\f2e4";
}

.bi-dash-circle-fill::before {
  content: "\f2e5";
}

.bi-dash-circle::before {
  content: "\f2e6";
}

.bi-dash-square-dotted::before {
  content: "\f2e7";
}

.bi-dash-square-fill::before {
  content: "\f2e8";
}

.bi-dash-square::before {
  content: "\f2e9";
}

.bi-dash::before {
  content: "\f2ea";
}

.bi-diagram-2-fill::before {
  content: "\f2eb";
}

.bi-diagram-2::before {
  content: "\f2ec";
}

.bi-diagram-3-fill::before {
  content: "\f2ed";
}

.bi-diagram-3::before {
  content: "\f2ee";
}

.bi-diamond-fill::before {
  content: "\f2ef";
}

.bi-diamond-half::before {
  content: "\f2f0";
}

.bi-diamond::before {
  content: "\f2f1";
}

.bi-dice-1-fill::before {
  content: "\f2f2";
}

.bi-dice-1::before {
  content: "\f2f3";
}

.bi-dice-2-fill::before {
  content: "\f2f4";
}

.bi-dice-2::before {
  content: "\f2f5";
}

.bi-dice-3-fill::before {
  content: "\f2f6";
}

.bi-dice-3::before {
  content: "\f2f7";
}

.bi-dice-4-fill::before {
  content: "\f2f8";
}

.bi-dice-4::before {
  content: "\f2f9";
}

.bi-dice-5-fill::before {
  content: "\f2fa";
}

.bi-dice-5::before {
  content: "\f2fb";
}

.bi-dice-6-fill::before {
  content: "\f2fc";
}

.bi-dice-6::before {
  content: "\f2fd";
}

.bi-disc-fill::before {
  content: "\f2fe";
}

.bi-disc::before {
  content: "\f2ff";
}

.bi-discord::before {
  content: "\f300";
}

.bi-display-fill::before {
  content: "\f301";
}

.bi-display::before {
  content: "\f302";
}

.bi-distribute-horizontal::before {
  content: "\f303";
}

.bi-distribute-vertical::before {
  content: "\f304";
}

.bi-door-closed-fill::before {
  content: "\f305";
}

.bi-door-closed::before {
  content: "\f306";
}

.bi-door-open-fill::before {
  content: "\f307";
}

.bi-door-open::before {
  content: "\f308";
}

.bi-dot::before {
  content: "\f309";
}

.bi-download::before {
  content: "\f30a";
}

.bi-droplet-fill::before {
  content: "\f30b";
}

.bi-droplet-half::before {
  content: "\f30c";
}

.bi-droplet::before {
  content: "\f30d";
}

.bi-earbuds::before {
  content: "\f30e";
}

.bi-easel-fill::before {
  content: "\f30f";
}

.bi-easel::before {
  content: "\f310";
}

.bi-egg-fill::before {
  content: "\f311";
}

.bi-egg-fried::before {
  content: "\f312";
}

.bi-egg::before {
  content: "\f313";
}

.bi-eject-fill::before {
  content: "\f314";
}

.bi-eject::before {
  content: "\f315";
}

.bi-emoji-angry-fill::before {
  content: "\f316";
}

.bi-emoji-angry::before {
  content: "\f317";
}

.bi-emoji-dizzy-fill::before {
  content: "\f318";
}

.bi-emoji-dizzy::before {
  content: "\f319";
}

.bi-emoji-expressionless-fill::before {
  content: "\f31a";
}

.bi-emoji-expressionless::before {
  content: "\f31b";
}

.bi-emoji-frown-fill::before {
  content: "\f31c";
}

.bi-emoji-frown::before {
  content: "\f31d";
}

.bi-emoji-heart-eyes-fill::before {
  content: "\f31e";
}

.bi-emoji-heart-eyes::before {
  content: "\f31f";
}

.bi-emoji-laughing-fill::before {
  content: "\f320";
}

.bi-emoji-laughing::before {
  content: "\f321";
}

.bi-emoji-neutral-fill::before {
  content: "\f322";
}

.bi-emoji-neutral::before {
  content: "\f323";
}

.bi-emoji-smile-fill::before {
  content: "\f324";
}

.bi-emoji-smile-upside-down-fill::before {
  content: "\f325";
}

.bi-emoji-smile-upside-down::before {
  content: "\f326";
}

.bi-emoji-smile::before {
  content: "\f327";
}

.bi-emoji-sunglasses-fill::before {
  content: "\f328";
}

.bi-emoji-sunglasses::before {
  content: "\f329";
}

.bi-emoji-wink-fill::before {
  content: "\f32a";
}

.bi-emoji-wink::before {
  content: "\f32b";
}

.bi-envelope-fill::before {
  content: "\f32c";
}

.bi-envelope-open-fill::before {
  content: "\f32d";
}

.bi-envelope-open::before {
  content: "\f32e";
}

.bi-envelope::before {
  content: "\f32f";
}

.bi-eraser-fill::before {
  content: "\f330";
}

.bi-eraser::before {
  content: "\f331";
}

.bi-exclamation-circle-fill::before {
  content: "\f332";
}

.bi-exclamation-circle::before {
  content: "\f333";
}

.bi-exclamation-diamond-fill::before {
  content: "\f334";
}

.bi-exclamation-diamond::before {
  content: "\f335";
}

.bi-exclamation-octagon-fill::before {
  content: "\f336";
}

.bi-exclamation-octagon::before {
  content: "\f337";
}

.bi-exclamation-square-fill::before {
  content: "\f338";
}

.bi-exclamation-square::before {
  content: "\f339";
}

.bi-exclamation-triangle-fill::before {
  content: "\f33a";
}

.bi-exclamation-triangle::before {
  content: "\f33b";
}

.bi-exclamation::before {
  content: "\f33c";
}

.bi-exclude::before {
  content: "\f33d";
}

.bi-eye-fill::before {
  content: "\f33e";
}

.bi-eye-slash-fill::before {
  content: "\f33f";
}

.bi-eye-slash::before {
  content: "\f340";
}

.bi-eye::before {
  content: "\f341";
}

.bi-eyedropper::before {
  content: "\f342";
}

.bi-eyeglasses::before {
  content: "\f343";
}

.bi-facebook::before {
  content: "\f344";
}

.bi-file-arrow-down-fill::before {
  content: "\f345";
}

.bi-file-arrow-down::before {
  content: "\f346";
}

.bi-file-arrow-up-fill::before {
  content: "\f347";
}

.bi-file-arrow-up::before {
  content: "\f348";
}

.bi-file-bar-graph-fill::before {
  content: "\f349";
}

.bi-file-bar-graph::before {
  content: "\f34a";
}

.bi-file-binary-fill::before {
  content: "\f34b";
}

.bi-file-binary::before {
  content: "\f34c";
}

.bi-file-break-fill::before {
  content: "\f34d";
}

.bi-file-break::before {
  content: "\f34e";
}

.bi-file-check-fill::before {
  content: "\f34f";
}

.bi-file-check::before {
  content: "\f350";
}

.bi-file-code-fill::before {
  content: "\f351";
}

.bi-file-code::before {
  content: "\f352";
}

.bi-file-diff-fill::before {
  content: "\f353";
}

.bi-file-diff::before {
  content: "\f354";
}

.bi-file-earmark-arrow-down-fill::before {
  content: "\f355";
}

.bi-file-earmark-arrow-down::before {
  content: "\f356";
}

.bi-file-earmark-arrow-up-fill::before {
  content: "\f357";
}

.bi-file-earmark-arrow-up::before {
  content: "\f358";
}

.bi-file-earmark-bar-graph-fill::before {
  content: "\f359";
}

.bi-file-earmark-bar-graph::before {
  content: "\f35a";
}

.bi-file-earmark-binary-fill::before {
  content: "\f35b";
}

.bi-file-earmark-binary::before {
  content: "\f35c";
}

.bi-file-earmark-break-fill::before {
  content: "\f35d";
}

.bi-file-earmark-break::before {
  content: "\f35e";
}

.bi-file-earmark-check-fill::before {
  content: "\f35f";
}

.bi-file-earmark-check::before {
  content: "\f360";
}

.bi-file-earmark-code-fill::before {
  content: "\f361";
}

.bi-file-earmark-code::before {
  content: "\f362";
}

.bi-file-earmark-diff-fill::before {
  content: "\f363";
}

.bi-file-earmark-diff::before {
  content: "\f364";
}

.bi-file-earmark-easel-fill::before {
  content: "\f365";
}

.bi-file-earmark-easel::before {
  content: "\f366";
}

.bi-file-earmark-excel-fill::before {
  content: "\f367";
}

.bi-file-earmark-excel::before {
  content: "\f368";
}

.bi-file-earmark-fill::before {
  content: "\f369";
}

.bi-file-earmark-font-fill::before {
  content: "\f36a";
}

.bi-file-earmark-font::before {
  content: "\f36b";
}

.bi-file-earmark-image-fill::before {
  content: "\f36c";
}

.bi-file-earmark-image::before {
  content: "\f36d";
}

.bi-file-earmark-lock-fill::before {
  content: "\f36e";
}

.bi-file-earmark-lock::before {
  content: "\f36f";
}

.bi-file-earmark-lock2-fill::before {
  content: "\f370";
}

.bi-file-earmark-lock2::before {
  content: "\f371";
}

.bi-file-earmark-medical-fill::before {
  content: "\f372";
}

.bi-file-earmark-medical::before {
  content: "\f373";
}

.bi-file-earmark-minus-fill::before {
  content: "\f374";
}

.bi-file-earmark-minus::before {
  content: "\f375";
}

.bi-file-earmark-music-fill::before {
  content: "\f376";
}

.bi-file-earmark-music::before {
  content: "\f377";
}

.bi-file-earmark-person-fill::before {
  content: "\f378";
}

.bi-file-earmark-person::before {
  content: "\f379";
}

.bi-file-earmark-play-fill::before {
  content: "\f37a";
}

.bi-file-earmark-play::before {
  content: "\f37b";
}

.bi-file-earmark-plus-fill::before {
  content: "\f37c";
}

.bi-file-earmark-plus::before {
  content: "\f37d";
}

.bi-file-earmark-post-fill::before {
  content: "\f37e";
}

.bi-file-earmark-post::before {
  content: "\f37f";
}

.bi-file-earmark-ppt-fill::before {
  content: "\f380";
}

.bi-file-earmark-ppt::before {
  content: "\f381";
}

.bi-file-earmark-richtext-fill::before {
  content: "\f382";
}

.bi-file-earmark-richtext::before {
  content: "\f383";
}

.bi-file-earmark-ruled-fill::before {
  content: "\f384";
}

.bi-file-earmark-ruled::before {
  content: "\f385";
}

.bi-file-earmark-slides-fill::before {
  content: "\f386";
}

.bi-file-earmark-slides::before {
  content: "\f387";
}

.bi-file-earmark-spreadsheet-fill::before {
  content: "\f388";
}

.bi-file-earmark-spreadsheet::before {
  content: "\f389";
}

.bi-file-earmark-text-fill::before {
  content: "\f38a";
}

.bi-file-earmark-text::before {
  content: "\f38b";
}

.bi-file-earmark-word-fill::before {
  content: "\f38c";
}

.bi-file-earmark-word::before {
  content: "\f38d";
}

.bi-file-earmark-x-fill::before {
  content: "\f38e";
}

.bi-file-earmark-x::before {
  content: "\f38f";
}

.bi-file-earmark-zip-fill::before {
  content: "\f390";
}

.bi-file-earmark-zip::before {
  content: "\f391";
}

.bi-file-earmark::before {
  content: "\f392";
}

.bi-file-easel-fill::before {
  content: "\f393";
}

.bi-file-easel::before {
  content: "\f394";
}

.bi-file-excel-fill::before {
  content: "\f395";
}

.bi-file-excel::before {
  content: "\f396";
}

.bi-file-fill::before {
  content: "\f397";
}

.bi-file-font-fill::before {
  content: "\f398";
}

.bi-file-font::before {
  content: "\f399";
}

.bi-file-image-fill::before {
  content: "\f39a";
}

.bi-file-image::before {
  content: "\f39b";
}

.bi-file-lock-fill::before {
  content: "\f39c";
}

.bi-file-lock::before {
  content: "\f39d";
}

.bi-file-lock2-fill::before {
  content: "\f39e";
}

.bi-file-lock2::before {
  content: "\f39f";
}

.bi-file-medical-fill::before {
  content: "\f3a0";
}

.bi-file-medical::before {
  content: "\f3a1";
}

.bi-file-minus-fill::before {
  content: "\f3a2";
}

.bi-file-minus::before {
  content: "\f3a3";
}

.bi-file-music-fill::before {
  content: "\f3a4";
}

.bi-file-music::before {
  content: "\f3a5";
}

.bi-file-person-fill::before {
  content: "\f3a6";
}

.bi-file-person::before {
  content: "\f3a7";
}

.bi-file-play-fill::before {
  content: "\f3a8";
}

.bi-file-play::before {
  content: "\f3a9";
}

.bi-file-plus-fill::before {
  content: "\f3aa";
}

.bi-file-plus::before {
  content: "\f3ab";
}

.bi-file-post-fill::before {
  content: "\f3ac";
}

.bi-file-post::before {
  content: "\f3ad";
}

.bi-file-ppt-fill::before {
  content: "\f3ae";
}

.bi-file-ppt::before {
  content: "\f3af";
}

.bi-file-richtext-fill::before {
  content: "\f3b0";
}

.bi-file-richtext::before {
  content: "\f3b1";
}

.bi-file-ruled-fill::before {
  content: "\f3b2";
}

.bi-file-ruled::before {
  content: "\f3b3";
}

.bi-file-slides-fill::before {
  content: "\f3b4";
}

.bi-file-slides::before {
  content: "\f3b5";
}

.bi-file-spreadsheet-fill::before {
  content: "\f3b6";
}

.bi-file-spreadsheet::before {
  content: "\f3b7";
}

.bi-file-text-fill::before {
  content: "\f3b8";
}

.bi-file-text::before {
  content: "\f3b9";
}

.bi-file-word-fill::before {
  content: "\f3ba";
}

.bi-file-word::before {
  content: "\f3bb";
}

.bi-file-x-fill::before {
  content: "\f3bc";
}

.bi-file-x::before {
  content: "\f3bd";
}

.bi-file-zip-fill::before {
  content: "\f3be";
}

.bi-file-zip::before {
  content: "\f3bf";
}

.bi-file::before {
  content: "\f3c0";
}

.bi-files-alt::before {
  content: "\f3c1";
}

.bi-files::before {
  content: "\f3c2";
}

.bi-film::before {
  content: "\f3c3";
}

.bi-filter-circle-fill::before {
  content: "\f3c4";
}

.bi-filter-circle::before {
  content: "\f3c5";
}

.bi-filter-left::before {
  content: "\f3c6";
}

.bi-filter-right::before {
  content: "\f3c7";
}

.bi-filter-square-fill::before {
  content: "\f3c8";
}

.bi-filter-square::before {
  content: "\f3c9";
}

.bi-filter::before {
  content: "\f3ca";
}

.bi-flag-fill::before {
  content: "\f3cb";
}

.bi-flag::before {
  content: "\f3cc";
}

.bi-flower1::before {
  content: "\f3cd";
}

.bi-flower2::before {
  content: "\f3ce";
}

.bi-flower3::before {
  content: "\f3cf";
}

.bi-folder-check::before {
  content: "\f3d0";
}

.bi-folder-fill::before {
  content: "\f3d1";
}

.bi-folder-minus::before {
  content: "\f3d2";
}

.bi-folder-plus::before {
  content: "\f3d3";
}

.bi-folder-symlink-fill::before {
  content: "\f3d4";
}

.bi-folder-symlink::before {
  content: "\f3d5";
}

.bi-folder-x::before {
  content: "\f3d6";
}

.bi-folder::before {
  content: "\f3d7";
}

.bi-folder2-open::before {
  content: "\f3d8";
}

.bi-folder2::before {
  content: "\f3d9";
}

.bi-fonts::before {
  content: "\f3da";
}

.bi-forward-fill::before {
  content: "\f3db";
}

.bi-forward::before {
  content: "\f3dc";
}

.bi-front::before {
  content: "\f3dd";
}

.bi-fullscreen-exit::before {
  content: "\f3de";
}

.bi-fullscreen::before {
  content: "\f3df";
}

.bi-funnel-fill::before {
  content: "\f3e0";
}

.bi-funnel::before {
  content: "\f3e1";
}

.bi-gear-fill::before {
  content: "\f3e2";
}

.bi-gear-wide-connected::before {
  content: "\f3e3";
}

.bi-gear-wide::before {
  content: "\f3e4";
}

.bi-gear::before {
  content: "\f3e5";
}

.bi-gem::before {
  content: "\f3e6";
}

.bi-geo-alt-fill::before {
  content: "\f3e7";
}

.bi-geo-alt::before {
  content: "\f3e8";
}

.bi-geo-fill::before {
  content: "\f3e9";
}

.bi-geo::before {
  content: "\f3ea";
}

.bi-gift-fill::before {
  content: "\f3eb";
}

.bi-gift::before {
  content: "\f3ec";
}

.bi-github::before {
  content: "\f3ed";
}

.bi-globe::before {
  content: "\f3ee";
}

.bi-globe2::before {
  content: "\f3ef";
}

.bi-google::before {
  content: "\f3f0";
}

.bi-graph-down::before {
  content: "\f3f1";
}

.bi-graph-up::before {
  content: "\f3f2";
}

.bi-grid-1x2-fill::before {
  content: "\f3f3";
}

.bi-grid-1x2::before {
  content: "\f3f4";
}

.bi-grid-3x2-gap-fill::before {
  content: "\f3f5";
}

.bi-grid-3x2-gap::before {
  content: "\f3f6";
}

.bi-grid-3x2::before {
  content: "\f3f7";
}

.bi-grid-3x3-gap-fill::before {
  content: "\f3f8";
}

.bi-grid-3x3-gap::before {
  content: "\f3f9";
}

.bi-grid-3x3::before {
  content: "\f3fa";
}

.bi-grid-fill::before {
  content: "\f3fb";
}

.bi-grid::before {
  content: "\f3fc";
}

.bi-grip-horizontal::before {
  content: "\f3fd";
}

.bi-grip-vertical::before {
  content: "\f3fe";
}

.bi-hammer::before {
  content: "\f3ff";
}

.bi-hand-index-fill::before {
  content: "\f400";
}

.bi-hand-index-thumb-fill::before {
  content: "\f401";
}

.bi-hand-index-thumb::before {
  content: "\f402";
}

.bi-hand-index::before {
  content: "\f403";
}

.bi-hand-thumbs-down-fill::before {
  content: "\f404";
}

.bi-hand-thumbs-down::before {
  content: "\f405";
}

.bi-hand-thumbs-up-fill::before {
  content: "\f406";
}

.bi-hand-thumbs-up::before {
  content: "\f407";
}

.bi-handbag-fill::before {
  content: "\f408";
}

.bi-handbag::before {
  content: "\f409";
}

.bi-hash::before {
  content: "\f40a";
}

.bi-hdd-fill::before {
  content: "\f40b";
}

.bi-hdd-network-fill::before {
  content: "\f40c";
}

.bi-hdd-network::before {
  content: "\f40d";
}

.bi-hdd-rack-fill::before {
  content: "\f40e";
}

.bi-hdd-rack::before {
  content: "\f40f";
}

.bi-hdd-stack-fill::before {
  content: "\f410";
}

.bi-hdd-stack::before {
  content: "\f411";
}

.bi-hdd::before {
  content: "\f412";
}

.bi-headphones::before {
  content: "\f413";
}

.bi-headset::before {
  content: "\f414";
}

.bi-heart-fill::before {
  content: "\f415";
}

.bi-heart-half::before {
  content: "\f416";
}

.bi-heart::before {
  content: "\f417";
}

.bi-heptagon-fill::before {
  content: "\f418";
}

.bi-heptagon-half::before {
  content: "\f419";
}

.bi-heptagon::before {
  content: "\f41a";
}

.bi-hexagon-fill::before {
  content: "\f41b";
}

.bi-hexagon-half::before {
  content: "\f41c";
}

.bi-hexagon::before {
  content: "\f41d";
}

.bi-hourglass-bottom::before {
  content: "\f41e";
}

.bi-hourglass-split::before {
  content: "\f41f";
}

.bi-hourglass-top::before {
  content: "\f420";
}

.bi-hourglass::before {
  content: "\f421";
}

.bi-house-door-fill::before {
  content: "\f422";
}

.bi-house-door::before {
  content: "\f423";
}

.bi-house-fill::before {
  content: "\f424";
}

.bi-house::before {
  content: "\f425";
}

.bi-hr::before {
  content: "\f426";
}

.bi-hurricane::before {
  content: "\f427";
}

.bi-image-alt::before {
  content: "\f428";
}

.bi-image-fill::before {
  content: "\f429";
}

.bi-image::before {
  content: "\f42a";
}

.bi-images::before {
  content: "\f42b";
}

.bi-inbox-fill::before {
  content: "\f42c";
}

.bi-inbox::before {
  content: "\f42d";
}

.bi-inboxes-fill::before {
  content: "\f42e";
}

.bi-inboxes::before {
  content: "\f42f";
}

.bi-info-circle-fill::before {
  content: "\f430";
}

.bi-info-circle::before {
  content: "\f431";
}

.bi-info-square-fill::before {
  content: "\f432";
}

.bi-info-square::before {
  content: "\f433";
}

.bi-info::before {
  content: "\f434";
}

.bi-input-cursor-text::before {
  content: "\f435";
}

.bi-input-cursor::before {
  content: "\f436";
}

.bi-instagram::before {
  content: "\f437";
}

.bi-intersect::before {
  content: "\f438";
}

.bi-journal-album::before {
  content: "\f439";
}

.bi-journal-arrow-down::before {
  content: "\f43a";
}

.bi-journal-arrow-up::before {
  content: "\f43b";
}

.bi-journal-bookmark-fill::before {
  content: "\f43c";
}

.bi-journal-bookmark::before {
  content: "\f43d";
}

.bi-journal-check::before {
  content: "\f43e";
}

.bi-journal-code::before {
  content: "\f43f";
}

.bi-journal-medical::before {
  content: "\f440";
}

.bi-journal-minus::before {
  content: "\f441";
}

.bi-journal-plus::before {
  content: "\f442";
}

.bi-journal-richtext::before {
  content: "\f443";
}

.bi-journal-text::before {
  content: "\f444";
}

.bi-journal-x::before {
  content: "\f445";
}

.bi-journal::before {
  content: "\f446";
}

.bi-journals::before {
  content: "\f447";
}

.bi-joystick::before {
  content: "\f448";
}

.bi-justify-left::before {
  content: "\f449";
}

.bi-justify-right::before {
  content: "\f44a";
}

.bi-justify::before {
  content: "\f44b";
}

.bi-kanban-fill::before {
  content: "\f44c";
}

.bi-kanban::before {
  content: "\f44d";
}

.bi-key-fill::before {
  content: "\f44e";
}

.bi-key::before {
  content: "\f44f";
}

.bi-keyboard-fill::before {
  content: "\f450";
}

.bi-keyboard::before {
  content: "\f451";
}

.bi-ladder::before {
  content: "\f452";
}

.bi-lamp-fill::before {
  content: "\f453";
}

.bi-lamp::before {
  content: "\f454";
}

.bi-laptop-fill::before {
  content: "\f455";
}

.bi-laptop::before {
  content: "\f456";
}

.bi-layer-backward::before {
  content: "\f457";
}

.bi-layer-forward::before {
  content: "\f458";
}

.bi-layers-fill::before {
  content: "\f459";
}

.bi-layers-half::before {
  content: "\f45a";
}

.bi-layers::before {
  content: "\f45b";
}

.bi-layout-sidebar-inset-reverse::before {
  content: "\f45c";
}

.bi-layout-sidebar-inset::before {
  content: "\f45d";
}

.bi-layout-sidebar-reverse::before {
  content: "\f45e";
}

.bi-layout-sidebar::before {
  content: "\f45f";
}

.bi-layout-split::before {
  content: "\f460";
}

.bi-layout-text-sidebar-reverse::before {
  content: "\f461";
}

.bi-layout-text-sidebar::before {
  content: "\f462";
}

.bi-layout-text-window-reverse::before {
  content: "\f463";
}

.bi-layout-text-window::before {
  content: "\f464";
}

.bi-layout-three-columns::before {
  content: "\f465";
}

.bi-layout-wtf::before {
  content: "\f466";
}

.bi-life-preserver::before {
  content: "\f467";
}

.bi-lightbulb-fill::before {
  content: "\f468";
}

.bi-lightbulb-off-fill::before {
  content: "\f469";
}

.bi-lightbulb-off::before {
  content: "\f46a";
}

.bi-lightbulb::before {
  content: "\f46b";
}

.bi-lightning-charge-fill::before {
  content: "\f46c";
}

.bi-lightning-charge::before {
  content: "\f46d";
}

.bi-lightning-fill::before {
  content: "\f46e";
}

.bi-lightning::before {
  content: "\f46f";
}

.bi-link-45deg::before {
  content: "\f470";
}

.bi-link::before {
  content: "\f471";
}

.bi-linkedin::before {
  content: "\f472";
}

.bi-list-check::before {
  content: "\f473";
}

.bi-list-nested::before {
  content: "\f474";
}

.bi-list-ol::before {
  content: "\f475";
}

.bi-list-stars::before {
  content: "\f476";
}

.bi-list-task::before {
  content: "\f477";
}

.bi-list-ul::before {
  content: "\f478";
}

.bi-list::before {
  content: "\f479";
}

.bi-lock-fill::before {
  content: "\f47a";
}

.bi-lock::before {
  content: "\f47b";
}

.bi-mailbox::before {
  content: "\f47c";
}

.bi-mailbox2::before {
  content: "\f47d";
}

.bi-map-fill::before {
  content: "\f47e";
}

.bi-map::before {
  content: "\f47f";
}

.bi-markdown-fill::before {
  content: "\f480";
}

.bi-markdown::before {
  content: "\f481";
}

.bi-mask::before {
  content: "\f482";
}

.bi-megaphone-fill::before {
  content: "\f483";
}

.bi-megaphone::before {
  content: "\f484";
}

.bi-menu-app-fill::before {
  content: "\f485";
}

.bi-menu-app::before {
  content: "\f486";
}

.bi-menu-button-fill::before {
  content: "\f487";
}

.bi-menu-button-wide-fill::before {
  content: "\f488";
}

.bi-menu-button-wide::before {
  content: "\f489";
}

.bi-menu-button::before {
  content: "\f48a";
}

.bi-menu-down::before {
  content: "\f48b";
}

.bi-menu-up::before {
  content: "\f48c";
}

.bi-mic-fill::before {
  content: "\f48d";
}

.bi-mic-mute-fill::before {
  content: "\f48e";
}

.bi-mic-mute::before {
  content: "\f48f";
}

.bi-mic::before {
  content: "\f490";
}

.bi-minecart-loaded::before {
  content: "\f491";
}

.bi-minecart::before {
  content: "\f492";
}

.bi-moisture::before {
  content: "\f493";
}

.bi-moon-fill::before {
  content: "\f494";
}

.bi-moon-stars-fill::before {
  content: "\f495";
}

.bi-moon-stars::before {
  content: "\f496";
}

.bi-moon::before {
  content: "\f497";
}

.bi-mouse-fill::before {
  content: "\f498";
}

.bi-mouse::before {
  content: "\f499";
}

.bi-mouse2-fill::before {
  content: "\f49a";
}

.bi-mouse2::before {
  content: "\f49b";
}

.bi-mouse3-fill::before {
  content: "\f49c";
}

.bi-mouse3::before {
  content: "\f49d";
}

.bi-music-note-beamed::before {
  content: "\f49e";
}

.bi-music-note-list::before {
  content: "\f49f";
}

.bi-music-note::before {
  content: "\f4a0";
}

.bi-music-player-fill::before {
  content: "\f4a1";
}

.bi-music-player::before {
  content: "\f4a2";
}

.bi-newspaper::before {
  content: "\f4a3";
}

.bi-node-minus-fill::before {
  content: "\f4a4";
}

.bi-node-minus::before {
  content: "\f4a5";
}

.bi-node-plus-fill::before {
  content: "\f4a6";
}

.bi-node-plus::before {
  content: "\f4a7";
}

.bi-nut-fill::before {
  content: "\f4a8";
}

.bi-nut::before {
  content: "\f4a9";
}

.bi-octagon-fill::before {
  content: "\f4aa";
}

.bi-octagon-half::before {
  content: "\f4ab";
}

.bi-octagon::before {
  content: "\f4ac";
}

.bi-option::before {
  content: "\f4ad";
}

.bi-outlet::before {
  content: "\f4ae";
}

.bi-paint-bucket::before {
  content: "\f4af";
}

.bi-palette-fill::before {
  content: "\f4b0";
}

.bi-palette::before {
  content: "\f4b1";
}

.bi-palette2::before {
  content: "\f4b2";
}

.bi-paperclip::before {
  content: "\f4b3";
}

.bi-paragraph::before {
  content: "\f4b4";
}

.bi-patch-check-fill::before {
  content: "\f4b5";
}

.bi-patch-check::before {
  content: "\f4b6";
}

.bi-patch-exclamation-fill::before {
  content: "\f4b7";
}

.bi-patch-exclamation::before {
  content: "\f4b8";
}

.bi-patch-minus-fill::before {
  content: "\f4b9";
}

.bi-patch-minus::before {
  content: "\f4ba";
}

.bi-patch-plus-fill::before {
  content: "\f4bb";
}

.bi-patch-plus::before {
  content: "\f4bc";
}

.bi-patch-question-fill::before {
  content: "\f4bd";
}

.bi-patch-question::before {
  content: "\f4be";
}

.bi-pause-btn-fill::before {
  content: "\f4bf";
}

.bi-pause-btn::before {
  content: "\f4c0";
}

.bi-pause-circle-fill::before {
  content: "\f4c1";
}

.bi-pause-circle::before {
  content: "\f4c2";
}

.bi-pause-fill::before {
  content: "\f4c3";
}

.bi-pause::before {
  content: "\f4c4";
}

.bi-peace-fill::before {
  content: "\f4c5";
}

.bi-peace::before {
  content: "\f4c6";
}

.bi-pen-fill::before {
  content: "\f4c7";
}

.bi-pen::before {
  content: "\f4c8";
}

.bi-pencil-fill::before {
  content: "\f4c9";
}

.bi-pencil-square::before {
  content: "\f4ca";
}

.bi-pencil::before {
  content: "\f4cb";
}

.bi-pentagon-fill::before {
  content: "\f4cc";
}

.bi-pentagon-half::before {
  content: "\f4cd";
}

.bi-pentagon::before {
  content: "\f4ce";
}

.bi-people-fill::before {
  content: "\f4cf";
}

.bi-people::before {
  content: "\f4d0";
}

.bi-percent::before {
  content: "\f4d1";
}

.bi-person-badge-fill::before {
  content: "\f4d2";
}

.bi-person-badge::before {
  content: "\f4d3";
}

.bi-person-bounding-box::before {
  content: "\f4d4";
}

.bi-person-check-fill::before {
  content: "\f4d5";
}

.bi-person-check::before {
  content: "\f4d6";
}

.bi-person-circle::before {
  content: "\f4d7";
}

.bi-person-dash-fill::before {
  content: "\f4d8";
}

.bi-person-dash::before {
  content: "\f4d9";
}

.bi-person-fill::before {
  content: "\f4da";
}

.bi-person-lines-fill::before {
  content: "\f4db";
}

.bi-person-plus-fill::before {
  content: "\f4dc";
}

.bi-person-plus::before {
  content: "\f4dd";
}

.bi-person-square::before {
  content: "\f4de";
}

.bi-person-x-fill::before {
  content: "\f4df";
}

.bi-person-x::before {
  content: "\f4e0";
}

.bi-person::before {
  content: "\f4e1";
}

.bi-phone-fill::before {
  content: "\f4e2";
}

.bi-phone-landscape-fill::before {
  content: "\f4e3";
}

.bi-phone-landscape::before {
  content: "\f4e4";
}

.bi-phone-vibrate-fill::before {
  content: "\f4e5";
}

.bi-phone-vibrate::before {
  content: "\f4e6";
}

.bi-phone::before {
  content: "\f4e7";
}

.bi-pie-chart-fill::before {
  content: "\f4e8";
}

.bi-pie-chart::before {
  content: "\f4e9";
}

.bi-pin-angle-fill::before {
  content: "\f4ea";
}

.bi-pin-angle::before {
  content: "\f4eb";
}

.bi-pin-fill::before {
  content: "\f4ec";
}

.bi-pin::before {
  content: "\f4ed";
}

.bi-pip-fill::before {
  content: "\f4ee";
}

.bi-pip::before {
  content: "\f4ef";
}

.bi-play-btn-fill::before {
  content: "\f4f0";
}

.bi-play-btn::before {
  content: "\f4f1";
}

.bi-play-circle-fill::before {
  content: "\f4f2";
}

.bi-play-circle::before {
  content: "\f4f3";
}

.bi-play-fill::before {
  content: "\f4f4";
}

.bi-play::before {
  content: "\f4f5";
}

.bi-plug-fill::before {
  content: "\f4f6";
}

.bi-plug::before {
  content: "\f4f7";
}

.bi-plus-circle-dotted::before {
  content: "\f4f8";
}

.bi-plus-circle-fill::before {
  content: "\f4f9";
}

.bi-plus-circle::before {
  content: "\f4fa";
}

.bi-plus-square-dotted::before {
  content: "\f4fb";
}

.bi-plus-square-fill::before {
  content: "\f4fc";
}

.bi-plus-square::before {
  content: "\f4fd";
}

.bi-plus::before {
  content: "\f4fe";
}

.bi-power::before {
  content: "\f4ff";
}

.bi-printer-fill::before {
  content: "\f500";
}

.bi-printer::before {
  content: "\f501";
}

.bi-puzzle-fill::before {
  content: "\f502";
}

.bi-puzzle::before {
  content: "\f503";
}

.bi-question-circle-fill::before {
  content: "\f504";
}

.bi-question-circle::before {
  content: "\f505";
}

.bi-question-diamond-fill::before {
  content: "\f506";
}

.bi-question-diamond::before {
  content: "\f507";
}

.bi-question-octagon-fill::before {
  content: "\f508";
}

.bi-question-octagon::before {
  content: "\f509";
}

.bi-question-square-fill::before {
  content: "\f50a";
}

.bi-question-square::before {
  content: "\f50b";
}

.bi-question::before {
  content: "\f50c";
}

.bi-rainbow::before {
  content: "\f50d";
}

.bi-receipt-cutoff::before {
  content: "\f50e";
}

.bi-receipt::before {
  content: "\f50f";
}

.bi-reception-0::before {
  content: "\f510";
}

.bi-reception-1::before {
  content: "\f511";
}

.bi-reception-2::before {
  content: "\f512";
}

.bi-reception-3::before {
  content: "\f513";
}

.bi-reception-4::before {
  content: "\f514";
}

.bi-record-btn-fill::before {
  content: "\f515";
}

.bi-record-btn::before {
  content: "\f516";
}

.bi-record-circle-fill::before {
  content: "\f517";
}

.bi-record-circle::before {
  content: "\f518";
}

.bi-record-fill::before {
  content: "\f519";
}

.bi-record::before {
  content: "\f51a";
}

.bi-record2-fill::before {
  content: "\f51b";
}

.bi-record2::before {
  content: "\f51c";
}

.bi-reply-all-fill::before {
  content: "\f51d";
}

.bi-reply-all::before {
  content: "\f51e";
}

.bi-reply-fill::before {
  content: "\f51f";
}

.bi-reply::before {
  content: "\f520";
}

.bi-rss-fill::before {
  content: "\f521";
}

.bi-rss::before {
  content: "\f522";
}

.bi-rulers::before {
  content: "\f523";
}

.bi-save-fill::before {
  content: "\f524";
}

.bi-save::before {
  content: "\f525";
}

.bi-save2-fill::before {
  content: "\f526";
}

.bi-save2::before {
  content: "\f527";
}

.bi-scissors::before {
  content: "\f528";
}

.bi-screwdriver::before {
  content: "\f529";
}

.bi-search::before {
  content: "\f52a";
}

.bi-segmented-nav::before {
  content: "\f52b";
}

.bi-server::before {
  content: "\f52c";
}

.bi-share-fill::before {
  content: "\f52d";
}

.bi-share::before {
  content: "\f52e";
}

.bi-shield-check::before {
  content: "\f52f";
}

.bi-shield-exclamation::before {
  content: "\f530";
}

.bi-shield-fill-check::before {
  content: "\f531";
}

.bi-shield-fill-exclamation::before {
  content: "\f532";
}

.bi-shield-fill-minus::before {
  content: "\f533";
}

.bi-shield-fill-plus::before {
  content: "\f534";
}

.bi-shield-fill-x::before {
  content: "\f535";
}

.bi-shield-fill::before {
  content: "\f536";
}

.bi-shield-lock-fill::before {
  content: "\f537";
}

.bi-shield-lock::before {
  content: "\f538";
}

.bi-shield-minus::before {
  content: "\f539";
}

.bi-shield-plus::before {
  content: "\f53a";
}

.bi-shield-shaded::before {
  content: "\f53b";
}

.bi-shield-slash-fill::before {
  content: "\f53c";
}

.bi-shield-slash::before {
  content: "\f53d";
}

.bi-shield-x::before {
  content: "\f53e";
}

.bi-shield::before {
  content: "\f53f";
}

.bi-shift-fill::before {
  content: "\f540";
}

.bi-shift::before {
  content: "\f541";
}

.bi-shop-window::before {
  content: "\f542";
}

.bi-shop::before {
  content: "\f543";
}

.bi-shuffle::before {
  content: "\f544";
}

.bi-signpost-2-fill::before {
  content: "\f545";
}

.bi-signpost-2::before {
  content: "\f546";
}

.bi-signpost-fill::before {
  content: "\f547";
}

.bi-signpost-split-fill::before {
  content: "\f548";
}

.bi-signpost-split::before {
  content: "\f549";
}

.bi-signpost::before {
  content: "\f54a";
}

.bi-sim-fill::before {
  content: "\f54b";
}

.bi-sim::before {
  content: "\f54c";
}

.bi-skip-backward-btn-fill::before {
  content: "\f54d";
}

.bi-skip-backward-btn::before {
  content: "\f54e";
}

.bi-skip-backward-circle-fill::before {
  content: "\f54f";
}

.bi-skip-backward-circle::before {
  content: "\f550";
}

.bi-skip-backward-fill::before {
  content: "\f551";
}

.bi-skip-backward::before {
  content: "\f552";
}

.bi-skip-end-btn-fill::before {
  content: "\f553";
}

.bi-skip-end-btn::before {
  content: "\f554";
}

.bi-skip-end-circle-fill::before {
  content: "\f555";
}

.bi-skip-end-circle::before {
  content: "\f556";
}

.bi-skip-end-fill::before {
  content: "\f557";
}

.bi-skip-end::before {
  content: "\f558";
}

.bi-skip-forward-btn-fill::before {
  content: "\f559";
}

.bi-skip-forward-btn::before {
  content: "\f55a";
}

.bi-skip-forward-circle-fill::before {
  content: "\f55b";
}

.bi-skip-forward-circle::before {
  content: "\f55c";
}

.bi-skip-forward-fill::before {
  content: "\f55d";
}

.bi-skip-forward::before {
  content: "\f55e";
}

.bi-skip-start-btn-fill::before {
  content: "\f55f";
}

.bi-skip-start-btn::before {
  content: "\f560";
}

.bi-skip-start-circle-fill::before {
  content: "\f561";
}

.bi-skip-start-circle::before {
  content: "\f562";
}

.bi-skip-start-fill::before {
  content: "\f563";
}

.bi-skip-start::before {
  content: "\f564";
}

.bi-slack::before {
  content: "\f565";
}

.bi-slash-circle-fill::before {
  content: "\f566";
}

.bi-slash-circle::before {
  content: "\f567";
}

.bi-slash-square-fill::before {
  content: "\f568";
}

.bi-slash-square::before {
  content: "\f569";
}

.bi-slash::before {
  content: "\f56a";
}

.bi-sliders::before {
  content: "\f56b";
}

.bi-smartwatch::before {
  content: "\f56c";
}

.bi-snow::before {
  content: "\f56d";
}

.bi-snow2::before {
  content: "\f56e";
}

.bi-snow3::before {
  content: "\f56f";
}

.bi-sort-alpha-down-alt::before {
  content: "\f570";
}

.bi-sort-alpha-down::before {
  content: "\f571";
}

.bi-sort-alpha-up-alt::before {
  content: "\f572";
}

.bi-sort-alpha-up::before {
  content: "\f573";
}

.bi-sort-down-alt::before {
  content: "\f574";
}

.bi-sort-down::before {
  content: "\f575";
}

.bi-sort-numeric-down-alt::before {
  content: "\f576";
}

.bi-sort-numeric-down::before {
  content: "\f577";
}

.bi-sort-numeric-up-alt::before {
  content: "\f578";
}

.bi-sort-numeric-up::before {
  content: "\f579";
}

.bi-sort-up-alt::before {
  content: "\f57a";
}

.bi-sort-up::before {
  content: "\f57b";
}

.bi-soundwave::before {
  content: "\f57c";
}

.bi-speaker-fill::before {
  content: "\f57d";
}

.bi-speaker::before {
  content: "\f57e";
}

.bi-speedometer::before {
  content: "\f57f";
}

.bi-speedometer2::before {
  content: "\f580";
}

.bi-spellcheck::before {
  content: "\f581";
}

.bi-square-fill::before {
  content: "\f582";
}

.bi-square-half::before {
  content: "\f583";
}

.bi-square::before {
  content: "\f584";
}

.bi-stack::before {
  content: "\f585";
}

.bi-star-fill::before {
  content: "\f586";
}

.bi-star-half::before {
  content: "\f587";
}

.bi-star::before {
  content: "\f588";
}

.bi-stars::before {
  content: "\f589";
}

.bi-stickies-fill::before {
  content: "\f58a";
}

.bi-stickies::before {
  content: "\f58b";
}

.bi-sticky-fill::before {
  content: "\f58c";
}

.bi-sticky::before {
  content: "\f58d";
}

.bi-stop-btn-fill::before {
  content: "\f58e";
}

.bi-stop-btn::before {
  content: "\f58f";
}

.bi-stop-circle-fill::before {
  content: "\f590";
}

.bi-stop-circle::before {
  content: "\f591";
}

.bi-stop-fill::before {
  content: "\f592";
}

.bi-stop::before {
  content: "\f593";
}

.bi-stoplights-fill::before {
  content: "\f594";
}

.bi-stoplights::before {
  content: "\f595";
}

.bi-stopwatch-fill::before {
  content: "\f596";
}

.bi-stopwatch::before {
  content: "\f597";
}

.bi-subtract::before {
  content: "\f598";
}

.bi-suit-club-fill::before {
  content: "\f599";
}

.bi-suit-club::before {
  content: "\f59a";
}

.bi-suit-diamond-fill::before {
  content: "\f59b";
}

.bi-suit-diamond::before {
  content: "\f59c";
}

.bi-suit-heart-fill::before {
  content: "\f59d";
}

.bi-suit-heart::before {
  content: "\f59e";
}

.bi-suit-spade-fill::before {
  content: "\f59f";
}

.bi-suit-spade::before {
  content: "\f5a0";
}

.bi-sun-fill::before {
  content: "\f5a1";
}

.bi-sun::before {
  content: "\f5a2";
}

.bi-sunglasses::before {
  content: "\f5a3";
}

.bi-sunrise-fill::before {
  content: "\f5a4";
}

.bi-sunrise::before {
  content: "\f5a5";
}

.bi-sunset-fill::before {
  content: "\f5a6";
}

.bi-sunset::before {
  content: "\f5a7";
}

.bi-symmetry-horizontal::before {
  content: "\f5a8";
}

.bi-symmetry-vertical::before {
  content: "\f5a9";
}

.bi-table::before {
  content: "\f5aa";
}

.bi-tablet-fill::before {
  content: "\f5ab";
}

.bi-tablet-landscape-fill::before {
  content: "\f5ac";
}

.bi-tablet-landscape::before {
  content: "\f5ad";
}

.bi-tablet::before {
  content: "\f5ae";
}

.bi-tag-fill::before {
  content: "\f5af";
}

.bi-tag::before {
  content: "\f5b0";
}

.bi-tags-fill::before {
  content: "\f5b1";
}

.bi-tags::before {
  content: "\f5b2";
}

.bi-telegram::before {
  content: "\f5b3";
}

.bi-telephone-fill::before {
  content: "\f5b4";
}

.bi-telephone-forward-fill::before {
  content: "\f5b5";
}

.bi-telephone-forward::before {
  content: "\f5b6";
}

.bi-telephone-inbound-fill::before {
  content: "\f5b7";
}

.bi-telephone-inbound::before {
  content: "\f5b8";
}

.bi-telephone-minus-fill::before {
  content: "\f5b9";
}

.bi-telephone-minus::before {
  content: "\f5ba";
}

.bi-telephone-outbound-fill::before {
  content: "\f5bb";
}

.bi-telephone-outbound::before {
  content: "\f5bc";
}

.bi-telephone-plus-fill::before {
  content: "\f5bd";
}

.bi-telephone-plus::before {
  content: "\f5be";
}

.bi-telephone-x-fill::before {
  content: "\f5bf";
}

.bi-telephone-x::before {
  content: "\f5c0";
}

.bi-telephone::before {
  content: "\f5c1";
}

.bi-terminal-fill::before {
  content: "\f5c2";
}

.bi-terminal::before {
  content: "\f5c3";
}

.bi-text-center::before {
  content: "\f5c4";
}

.bi-text-indent-left::before {
  content: "\f5c5";
}

.bi-text-indent-right::before {
  content: "\f5c6";
}

.bi-text-left::before {
  content: "\f5c7";
}

.bi-text-paragraph::before {
  content: "\f5c8";
}

.bi-text-right::before {
  content: "\f5c9";
}

.bi-textarea-resize::before {
  content: "\f5ca";
}

.bi-textarea-t::before {
  content: "\f5cb";
}

.bi-textarea::before {
  content: "\f5cc";
}

.bi-thermometer-half::before {
  content: "\f5cd";
}

.bi-thermometer-high::before {
  content: "\f5ce";
}

.bi-thermometer-low::before {
  content: "\f5cf";
}

.bi-thermometer-snow::before {
  content: "\f5d0";
}

.bi-thermometer-sun::before {
  content: "\f5d1";
}

.bi-thermometer::before {
  content: "\f5d2";
}

.bi-three-dots-vertical::before {
  content: "\f5d3";
}

.bi-three-dots::before {
  content: "\f5d4";
}

.bi-toggle-off::before {
  content: "\f5d5";
}

.bi-toggle-on::before {
  content: "\f5d6";
}

.bi-toggle2-off::before {
  content: "\f5d7";
}

.bi-toggle2-on::before {
  content: "\f5d8";
}

.bi-toggles::before {
  content: "\f5d9";
}

.bi-toggles2::before {
  content: "\f5da";
}

.bi-tools::before {
  content: "\f5db";
}

.bi-tornado::before {
  content: "\f5dc";
}

.bi-trash-fill::before {
  content: "\f5dd";
}

.bi-trash::before {
  content: "\f5de";
}

.bi-trash2-fill::before {
  content: "\f5df";
}

.bi-trash2::before {
  content: "\f5e0";
}

.bi-tree-fill::before {
  content: "\f5e1";
}

.bi-tree::before {
  content: "\f5e2";
}

.bi-triangle-fill::before {
  content: "\f5e3";
}

.bi-triangle-half::before {
  content: "\f5e4";
}

.bi-triangle::before {
  content: "\f5e5";
}

.bi-trophy-fill::before {
  content: "\f5e6";
}

.bi-trophy::before {
  content: "\f5e7";
}

.bi-tropical-storm::before {
  content: "\f5e8";
}

.bi-truck-flatbed::before {
  content: "\f5e9";
}

.bi-truck::before {
  content: "\f5ea";
}

.bi-tsunami::before {
  content: "\f5eb";
}

.bi-tv-fill::before {
  content: "\f5ec";
}

.bi-tv::before {
  content: "\f5ed";
}

.bi-twitch::before {
  content: "\f5ee";
}

.bi-twitter::before {
  content: "\f5ef";
}

.bi-type-bold::before {
  content: "\f5f0";
}

.bi-type-h1::before {
  content: "\f5f1";
}

.bi-type-h2::before {
  content: "\f5f2";
}

.bi-type-h3::before {
  content: "\f5f3";
}

.bi-type-italic::before {
  content: "\f5f4";
}

.bi-type-strikethrough::before {
  content: "\f5f5";
}

.bi-type-underline::before {
  content: "\f5f6";
}

.bi-type::before {
  content: "\f5f7";
}

.bi-ui-checks-grid::before {
  content: "\f5f8";
}

.bi-ui-checks::before {
  content: "\f5f9";
}

.bi-ui-radios-grid::before {
  content: "\f5fa";
}

.bi-ui-radios::before {
  content: "\f5fb";
}

.bi-umbrella-fill::before {
  content: "\f5fc";
}

.bi-umbrella::before {
  content: "\f5fd";
}

.bi-union::before {
  content: "\f5fe";
}

.bi-unlock-fill::before {
  content: "\f5ff";
}

.bi-unlock::before {
  content: "\f600";
}

.bi-upc-scan::before {
  content: "\f601";
}

.bi-upc::before {
  content: "\f602";
}

.bi-upload::before {
  content: "\f603";
}

.bi-vector-pen::before {
  content: "\f604";
}

.bi-view-list::before {
  content: "\f605";
}

.bi-view-stacked::before {
  content: "\f606";
}

.bi-vinyl-fill::before {
  content: "\f607";
}

.bi-vinyl::before {
  content: "\f608";
}

.bi-voicemail::before {
  content: "\f609";
}

.bi-volume-down-fill::before {
  content: "\f60a";
}

.bi-volume-down::before {
  content: "\f60b";
}

.bi-volume-mute-fill::before {
  content: "\f60c";
}

.bi-volume-mute::before {
  content: "\f60d";
}

.bi-volume-off-fill::before {
  content: "\f60e";
}

.bi-volume-off::before {
  content: "\f60f";
}

.bi-volume-up-fill::before {
  content: "\f610";
}

.bi-volume-up::before {
  content: "\f611";
}

.bi-vr::before {
  content: "\f612";
}

.bi-wallet-fill::before {
  content: "\f613";
}

.bi-wallet::before {
  content: "\f614";
}

.bi-wallet2::before {
  content: "\f615";
}

.bi-watch::before {
  content: "\f616";
}

.bi-water::before {
  content: "\f617";
}

.bi-whatsapp::before {
  content: "\f618";
}

.bi-wifi-1::before {
  content: "\f619";
}

.bi-wifi-2::before {
  content: "\f61a";
}

.bi-wifi-off::before {
  content: "\f61b";
}

.bi-wifi::before {
  content: "\f61c";
}

.bi-wind::before {
  content: "\f61d";
}

.bi-window-dock::before {
  content: "\f61e";
}

.bi-window-sidebar::before {
  content: "\f61f";
}

.bi-window::before {
  content: "\f620";
}

.bi-wrench::before {
  content: "\f621";
}

.bi-x-circle-fill::before {
  content: "\f622";
}

.bi-x-circle::before {
  content: "\f623";
}

.bi-x-diamond-fill::before {
  content: "\f624";
}

.bi-x-diamond::before {
  content: "\f625";
}

.bi-x-octagon-fill::before {
  content: "\f626";
}

.bi-x-octagon::before {
  content: "\f627";
}

.bi-x-square-fill::before {
  content: "\f628";
}

.bi-x-square::before {
  content: "\f629";
}

.bi-x::before {
  content: "\f62a";
}

.bi-youtube::before {
  content: "\f62b";
}

.bi-zoom-in::before {
  content: "\f62c";
}

.bi-zoom-out::before {
  content: "\f62d";
}

.bi-bank::before {
  content: "\f62e";
}

.bi-bank2::before {
  content: "\f62f";
}

.bi-bell-slash-fill::before {
  content: "\f630";
}

.bi-bell-slash::before {
  content: "\f631";
}

.bi-cash-coin::before {
  content: "\f632";
}

.bi-check-lg::before {
  content: "\f633";
}

.bi-coin::before {
  content: "\f634";
}

.bi-currency-bitcoin::before {
  content: "\f635";
}

.bi-currency-dollar::before {
  content: "\f636";
}

.bi-currency-euro::before {
  content: "\f637";
}

.bi-currency-exchange::before {
  content: "\f638";
}

.bi-currency-pound::before {
  content: "\f639";
}

.bi-currency-yen::before {
  content: "\f63a";
}

.bi-dash-lg::before {
  content: "\f63b";
}

.bi-exclamation-lg::before {
  content: "\f63c";
}

.bi-file-earmark-pdf-fill::before {
  content: "\f63d";
}

.bi-file-earmark-pdf::before {
  content: "\f63e";
}

.bi-file-pdf-fill::before {
  content: "\f63f";
}

.bi-file-pdf::before {
  content: "\f640";
}

.bi-gender-ambiguous::before {
  content: "\f641";
}

.bi-gender-female::before {
  content: "\f642";
}

.bi-gender-male::before {
  content: "\f643";
}

.bi-gender-trans::before {
  content: "\f644";
}

.bi-headset-vr::before {
  content: "\f645";
}

.bi-info-lg::before {
  content: "\f646";
}

.bi-mastodon::before {
  content: "\f647";
}

.bi-messenger::before {
  content: "\f648";
}

.bi-piggy-bank-fill::before {
  content: "\f649";
}

.bi-piggy-bank::before {
  content: "\f64a";
}

.bi-pin-map-fill::before {
  content: "\f64b";
}

.bi-pin-map::before {
  content: "\f64c";
}

.bi-plus-lg::before {
  content: "\f64d";
}

.bi-question-lg::before {
  content: "\f64e";
}

.bi-recycle::before {
  content: "\f64f";
}

.bi-reddit::before {
  content: "\f650";
}

.bi-safe-fill::before {
  content: "\f651";
}

.bi-safe2-fill::before {
  content: "\f652";
}

.bi-safe2::before {
  content: "\f653";
}

.bi-sd-card-fill::before {
  content: "\f654";
}

.bi-sd-card::before {
  content: "\f655";
}

.bi-skype::before {
  content: "\f656";
}

.bi-slash-lg::before {
  content: "\f657";
}

.bi-translate::before {
  content: "\f658";
}

.bi-x-lg::before {
  content: "\f659";
}

.bi-safe::before {
  content: "\f65a";
}

.bi-apple::before {
  content: "\f65b";
}

.bi-microsoft::before {
  content: "\f65d";
}

.bi-windows::before {
  content: "\f65e";
}

.bi-behance::before {
  content: "\f65c";
}

.bi-dribbble::before {
  content: "\f65f";
}

.bi-line::before {
  content: "\f660";
}

.bi-medium::before {
  content: "\f661";
}

.bi-paypal::before {
  content: "\f662";
}

.bi-pinterest::before {
  content: "\f663";
}

.bi-signal::before {
  content: "\f664";
}

.bi-snapchat::before {
  content: "\f665";
}

.bi-spotify::before {
  content: "\f666";
}

.bi-stack-overflow::before {
  content: "\f667";
}

.bi-strava::before {
  content: "\f668";
}

.bi-wordpress::before {
  content: "\f669";
}

.bi-vimeo::before {
  content: "\f66a";
}

.bi-activity::before {
  content: "\f66b";
}

.bi-easel2-fill::before {
  content: "\f66c";
}

.bi-easel2::before {
  content: "\f66d";
}

.bi-easel3-fill::before {
  content: "\f66e";
}

.bi-easel3::before {
  content: "\f66f";
}

.bi-fan::before {
  content: "\f670";
}

.bi-fingerprint::before {
  content: "\f671";
}

.bi-graph-down-arrow::before {
  content: "\f672";
}

.bi-graph-up-arrow::before {
  content: "\f673";
}

.bi-hypnotize::before {
  content: "\f674";
}

.bi-magic::before {
  content: "\f675";
}

.bi-person-rolodex::before {
  content: "\f676";
}

.bi-person-video::before {
  content: "\f677";
}

.bi-person-video2::before {
  content: "\f678";
}

.bi-person-video3::before {
  content: "\f679";
}

.bi-person-workspace::before {
  content: "\f67a";
}

.bi-radioactive::before {
  content: "\f67b";
}

.bi-webcam-fill::before {
  content: "\f67c";
}

.bi-webcam::before {
  content: "\f67d";
}

.bi-yin-yang::before {
  content: "\f67e";
}

.bi-bandaid-fill::before {
  content: "\f680";
}

.bi-bandaid::before {
  content: "\f681";
}

.bi-bluetooth::before {
  content: "\f682";
}

.bi-body-text::before {
  content: "\f683";
}

.bi-boombox::before {
  content: "\f684";
}

.bi-boxes::before {
  content: "\f685";
}

.bi-dpad-fill::before {
  content: "\f686";
}

.bi-dpad::before {
  content: "\f687";
}

.bi-ear-fill::before {
  content: "\f688";
}

.bi-ear::before {
  content: "\f689";
}

.bi-envelope-check-fill::before {
  content: "\f68b";
}

.bi-envelope-check::before {
  content: "\f68c";
}

.bi-envelope-dash-fill::before {
  content: "\f68e";
}

.bi-envelope-dash::before {
  content: "\f68f";
}

.bi-envelope-exclamation-fill::before {
  content: "\f691";
}

.bi-envelope-exclamation::before {
  content: "\f692";
}

.bi-envelope-plus-fill::before {
  content: "\f693";
}

.bi-envelope-plus::before {
  content: "\f694";
}

.bi-envelope-slash-fill::before {
  content: "\f696";
}

.bi-envelope-slash::before {
  content: "\f697";
}

.bi-envelope-x-fill::before {
  content: "\f699";
}

.bi-envelope-x::before {
  content: "\f69a";
}

.bi-explicit-fill::before {
  content: "\f69b";
}

.bi-explicit::before {
  content: "\f69c";
}

.bi-git::before {
  content: "\f69d";
}

.bi-infinity::before {
  content: "\f69e";
}

.bi-list-columns-reverse::before {
  content: "\f69f";
}

.bi-list-columns::before {
  content: "\f6a0";
}

.bi-meta::before {
  content: "\f6a1";
}

.bi-nintendo-switch::before {
  content: "\f6a4";
}

.bi-pc-display-horizontal::before {
  content: "\f6a5";
}

.bi-pc-display::before {
  content: "\f6a6";
}

.bi-pc-horizontal::before {
  content: "\f6a7";
}

.bi-pc::before {
  content: "\f6a8";
}

.bi-playstation::before {
  content: "\f6a9";
}

.bi-plus-slash-minus::before {
  content: "\f6aa";
}

.bi-projector-fill::before {
  content: "\f6ab";
}

.bi-projector::before {
  content: "\f6ac";
}

.bi-qr-code-scan::before {
  content: "\f6ad";
}

.bi-qr-code::before {
  content: "\f6ae";
}

.bi-quora::before {
  content: "\f6af";
}

.bi-quote::before {
  content: "\f6b0";
}

.bi-robot::before {
  content: "\f6b1";
}

.bi-send-check-fill::before {
  content: "\f6b2";
}

.bi-send-check::before {
  content: "\f6b3";
}

.bi-send-dash-fill::before {
  content: "\f6b4";
}

.bi-send-dash::before {
  content: "\f6b5";
}

.bi-send-exclamation-fill::before {
  content: "\f6b7";
}

.bi-send-exclamation::before {
  content: "\f6b8";
}

.bi-send-fill::before {
  content: "\f6b9";
}

.bi-send-plus-fill::before {
  content: "\f6ba";
}

.bi-send-plus::before {
  content: "\f6bb";
}

.bi-send-slash-fill::before {
  content: "\f6bc";
}

.bi-send-slash::before {
  content: "\f6bd";
}

.bi-send-x-fill::before {
  content: "\f6be";
}

.bi-send-x::before {
  content: "\f6bf";
}

.bi-send::before {
  content: "\f6c0";
}

.bi-steam::before {
  content: "\f6c1";
}

.bi-terminal-dash::before {
  content: "\f6c3";
}

.bi-terminal-plus::before {
  content: "\f6c4";
}

.bi-terminal-split::before {
  content: "\f6c5";
}

.bi-ticket-detailed-fill::before {
  content: "\f6c6";
}

.bi-ticket-detailed::before {
  content: "\f6c7";
}

.bi-ticket-fill::before {
  content: "\f6c8";
}

.bi-ticket-perforated-fill::before {
  content: "\f6c9";
}

.bi-ticket-perforated::before {
  content: "\f6ca";
}

.bi-ticket::before {
  content: "\f6cb";
}

.bi-tiktok::before {
  content: "\f6cc";
}

.bi-window-dash::before {
  content: "\f6cd";
}

.bi-window-desktop::before {
  content: "\f6ce";
}

.bi-window-fullscreen::before {
  content: "\f6cf";
}

.bi-window-plus::before {
  content: "\f6d0";
}

.bi-window-split::before {
  content: "\f6d1";
}

.bi-window-stack::before {
  content: "\f6d2";
}

.bi-window-x::before {
  content: "\f6d3";
}

.bi-xbox::before {
  content: "\f6d4";
}

.bi-ethernet::before {
  content: "\f6d5";
}

.bi-hdmi-fill::before {
  content: "\f6d6";
}

.bi-hdmi::before {
  content: "\f6d7";
}

.bi-usb-c-fill::before {
  content: "\f6d8";
}

.bi-usb-c::before {
  content: "\f6d9";
}

.bi-usb-fill::before {
  content: "\f6da";
}

.bi-usb-plug-fill::before {
  content: "\f6db";
}

.bi-usb-plug::before {
  content: "\f6dc";
}

.bi-usb-symbol::before {
  content: "\f6dd";
}

.bi-usb::before {
  content: "\f6de";
}

.bi-boombox-fill::before {
  content: "\f6df";
}

.bi-displayport::before {
  content: "\f6e1";
}

.bi-gpu-card::before {
  content: "\f6e2";
}

.bi-memory::before {
  content: "\f6e3";
}

.bi-modem-fill::before {
  content: "\f6e4";
}

.bi-modem::before {
  content: "\f6e5";
}

.bi-motherboard-fill::before {
  content: "\f6e6";
}

.bi-motherboard::before {
  content: "\f6e7";
}

.bi-optical-audio-fill::before {
  content: "\f6e8";
}

.bi-optical-audio::before {
  content: "\f6e9";
}

.bi-pci-card::before {
  content: "\f6ea";
}

.bi-router-fill::before {
  content: "\f6eb";
}

.bi-router::before {
  content: "\f6ec";
}

.bi-thunderbolt-fill::before {
  content: "\f6ef";
}

.bi-thunderbolt::before {
  content: "\f6f0";
}

.bi-usb-drive-fill::before {
  content: "\f6f1";
}

.bi-usb-drive::before {
  content: "\f6f2";
}

.bi-usb-micro-fill::before {
  content: "\f6f3";
}

.bi-usb-micro::before {
  content: "\f6f4";
}

.bi-usb-mini-fill::before {
  content: "\f6f5";
}

.bi-usb-mini::before {
  content: "\f6f6";
}

.bi-cloud-haze2::before {
  content: "\f6f7";
}

.bi-device-hdd-fill::before {
  content: "\f6f8";
}

.bi-device-hdd::before {
  content: "\f6f9";
}

.bi-device-ssd-fill::before {
  content: "\f6fa";
}

.bi-device-ssd::before {
  content: "\f6fb";
}

.bi-displayport-fill::before {
  content: "\f6fc";
}

.bi-mortarboard-fill::before {
  content: "\f6fd";
}

.bi-mortarboard::before {
  content: "\f6fe";
}

.bi-terminal-x::before {
  content: "\f6ff";
}

.bi-arrow-through-heart-fill::before {
  content: "\f700";
}

.bi-arrow-through-heart::before {
  content: "\f701";
}

.bi-badge-sd-fill::before {
  content: "\f702";
}

.bi-badge-sd::before {
  content: "\f703";
}

.bi-bag-heart-fill::before {
  content: "\f704";
}

.bi-bag-heart::before {
  content: "\f705";
}

.bi-balloon-fill::before {
  content: "\f706";
}

.bi-balloon-heart-fill::before {
  content: "\f707";
}

.bi-balloon-heart::before {
  content: "\f708";
}

.bi-balloon::before {
  content: "\f709";
}

.bi-box2-fill::before {
  content: "\f70a";
}

.bi-box2-heart-fill::before {
  content: "\f70b";
}

.bi-box2-heart::before {
  content: "\f70c";
}

.bi-box2::before {
  content: "\f70d";
}

.bi-braces-asterisk::before {
  content: "\f70e";
}

.bi-calendar-heart-fill::before {
  content: "\f70f";
}

.bi-calendar-heart::before {
  content: "\f710";
}

.bi-calendar2-heart-fill::before {
  content: "\f711";
}

.bi-calendar2-heart::before {
  content: "\f712";
}

.bi-chat-heart-fill::before {
  content: "\f713";
}

.bi-chat-heart::before {
  content: "\f714";
}

.bi-chat-left-heart-fill::before {
  content: "\f715";
}

.bi-chat-left-heart::before {
  content: "\f716";
}

.bi-chat-right-heart-fill::before {
  content: "\f717";
}

.bi-chat-right-heart::before {
  content: "\f718";
}

.bi-chat-square-heart-fill::before {
  content: "\f719";
}

.bi-chat-square-heart::before {
  content: "\f71a";
}

.bi-clipboard-check-fill::before {
  content: "\f71b";
}

.bi-clipboard-data-fill::before {
  content: "\f71c";
}

.bi-clipboard-fill::before {
  content: "\f71d";
}

.bi-clipboard-heart-fill::before {
  content: "\f71e";
}

.bi-clipboard-heart::before {
  content: "\f71f";
}

.bi-clipboard-minus-fill::before {
  content: "\f720";
}

.bi-clipboard-plus-fill::before {
  content: "\f721";
}

.bi-clipboard-pulse::before {
  content: "\f722";
}

.bi-clipboard-x-fill::before {
  content: "\f723";
}

.bi-clipboard2-check-fill::before {
  content: "\f724";
}

.bi-clipboard2-check::before {
  content: "\f725";
}

.bi-clipboard2-data-fill::before {
  content: "\f726";
}

.bi-clipboard2-data::before {
  content: "\f727";
}

.bi-clipboard2-fill::before {
  content: "\f728";
}

.bi-clipboard2-heart-fill::before {
  content: "\f729";
}

.bi-clipboard2-heart::before {
  content: "\f72a";
}

.bi-clipboard2-minus-fill::before {
  content: "\f72b";
}

.bi-clipboard2-minus::before {
  content: "\f72c";
}

.bi-clipboard2-plus-fill::before {
  content: "\f72d";
}

.bi-clipboard2-plus::before {
  content: "\f72e";
}

.bi-clipboard2-pulse-fill::before {
  content: "\f72f";
}

.bi-clipboard2-pulse::before {
  content: "\f730";
}

.bi-clipboard2-x-fill::before {
  content: "\f731";
}

.bi-clipboard2-x::before {
  content: "\f732";
}

.bi-clipboard2::before {
  content: "\f733";
}

.bi-emoji-kiss-fill::before {
  content: "\f734";
}

.bi-emoji-kiss::before {
  content: "\f735";
}

.bi-envelope-heart-fill::before {
  content: "\f736";
}

.bi-envelope-heart::before {
  content: "\f737";
}

.bi-envelope-open-heart-fill::before {
  content: "\f738";
}

.bi-envelope-open-heart::before {
  content: "\f739";
}

.bi-envelope-paper-fill::before {
  content: "\f73a";
}

.bi-envelope-paper-heart-fill::before {
  content: "\f73b";
}

.bi-envelope-paper-heart::before {
  content: "\f73c";
}

.bi-envelope-paper::before {
  content: "\f73d";
}

.bi-filetype-aac::before {
  content: "\f73e";
}

.bi-filetype-ai::before {
  content: "\f73f";
}

.bi-filetype-bmp::before {
  content: "\f740";
}

.bi-filetype-cs::before {
  content: "\f741";
}

.bi-filetype-css::before {
  content: "\f742";
}

.bi-filetype-csv::before {
  content: "\f743";
}

.bi-filetype-doc::before {
  content: "\f744";
}

.bi-filetype-docx::before {
  content: "\f745";
}

.bi-filetype-exe::before {
  content: "\f746";
}

.bi-filetype-gif::before {
  content: "\f747";
}

.bi-filetype-heic::before {
  content: "\f748";
}

.bi-filetype-html::before {
  content: "\f749";
}

.bi-filetype-java::before {
  content: "\f74a";
}

.bi-filetype-jpg::before {
  content: "\f74b";
}

.bi-filetype-js::before {
  content: "\f74c";
}

.bi-filetype-jsx::before {
  content: "\f74d";
}

.bi-filetype-key::before {
  content: "\f74e";
}

.bi-filetype-m4p::before {
  content: "\f74f";
}

.bi-filetype-md::before {
  content: "\f750";
}

.bi-filetype-mdx::before {
  content: "\f751";
}

.bi-filetype-mov::before {
  content: "\f752";
}

.bi-filetype-mp3::before {
  content: "\f753";
}

.bi-filetype-mp4::before {
  content: "\f754";
}

.bi-filetype-otf::before {
  content: "\f755";
}

.bi-filetype-pdf::before {
  content: "\f756";
}

.bi-filetype-php::before {
  content: "\f757";
}

.bi-filetype-png::before {
  content: "\f758";
}

.bi-filetype-ppt::before {
  content: "\f75a";
}

.bi-filetype-psd::before {
  content: "\f75b";
}

.bi-filetype-py::before {
  content: "\f75c";
}

.bi-filetype-raw::before {
  content: "\f75d";
}

.bi-filetype-rb::before {
  content: "\f75e";
}

.bi-filetype-sass::before {
  content: "\f75f";
}

.bi-filetype-scss::before {
  content: "\f760";
}

.bi-filetype-sh::before {
  content: "\f761";
}

.bi-filetype-svg::before {
  content: "\f762";
}

.bi-filetype-tiff::before {
  content: "\f763";
}

.bi-filetype-tsx::before {
  content: "\f764";
}

.bi-filetype-ttf::before {
  content: "\f765";
}

.bi-filetype-txt::before {
  content: "\f766";
}

.bi-filetype-wav::before {
  content: "\f767";
}

.bi-filetype-woff::before {
  content: "\f768";
}

.bi-filetype-xls::before {
  content: "\f76a";
}

.bi-filetype-xml::before {
  content: "\f76b";
}

.bi-filetype-yml::before {
  content: "\f76c";
}

.bi-heart-arrow::before {
  content: "\f76d";
}

.bi-heart-pulse-fill::before {
  content: "\f76e";
}

.bi-heart-pulse::before {
  content: "\f76f";
}

.bi-heartbreak-fill::before {
  content: "\f770";
}

.bi-heartbreak::before {
  content: "\f771";
}

.bi-hearts::before {
  content: "\f772";
}

.bi-hospital-fill::before {
  content: "\f773";
}

.bi-hospital::before {
  content: "\f774";
}

.bi-house-heart-fill::before {
  content: "\f775";
}

.bi-house-heart::before {
  content: "\f776";
}

.bi-incognito::before {
  content: "\f777";
}

.bi-magnet-fill::before {
  content: "\f778";
}

.bi-magnet::before {
  content: "\f779";
}

.bi-person-heart::before {
  content: "\f77a";
}

.bi-person-hearts::before {
  content: "\f77b";
}

.bi-phone-flip::before {
  content: "\f77c";
}

.bi-plugin::before {
  content: "\f77d";
}

.bi-postage-fill::before {
  content: "\f77e";
}

.bi-postage-heart-fill::before {
  content: "\f77f";
}

.bi-postage-heart::before {
  content: "\f780";
}

.bi-postage::before {
  content: "\f781";
}

.bi-postcard-fill::before {
  content: "\f782";
}

.bi-postcard-heart-fill::before {
  content: "\f783";
}

.bi-postcard-heart::before {
  content: "\f784";
}

.bi-postcard::before {
  content: "\f785";
}

.bi-search-heart-fill::before {
  content: "\f786";
}

.bi-search-heart::before {
  content: "\f787";
}

.bi-sliders2-vertical::before {
  content: "\f788";
}

.bi-sliders2::before {
  content: "\f789";
}

.bi-trash3-fill::before {
  content: "\f78a";
}

.bi-trash3::before {
  content: "\f78b";
}

.bi-valentine::before {
  content: "\f78c";
}

.bi-valentine2::before {
  content: "\f78d";
}

.bi-wrench-adjustable-circle-fill::before {
  content: "\f78e";
}

.bi-wrench-adjustable-circle::before {
  content: "\f78f";
}

.bi-wrench-adjustable::before {
  content: "\f790";
}

.bi-filetype-json::before {
  content: "\f791";
}

.bi-filetype-pptx::before {
  content: "\f792";
}

.bi-filetype-xlsx::before {
  content: "\f793";
}

.bi-1-circle-fill::before {
  content: "\f796";
}

.bi-1-circle::before {
  content: "\f797";
}

.bi-1-square-fill::before {
  content: "\f798";
}

.bi-1-square::before {
  content: "\f799";
}

.bi-2-circle-fill::before {
  content: "\f79c";
}

.bi-2-circle::before {
  content: "\f79d";
}

.bi-2-square-fill::before {
  content: "\f79e";
}

.bi-2-square::before {
  content: "\f79f";
}

.bi-3-circle-fill::before {
  content: "\f7a2";
}

.bi-3-circle::before {
  content: "\f7a3";
}

.bi-3-square-fill::before {
  content: "\f7a4";
}

.bi-3-square::before {
  content: "\f7a5";
}

.bi-4-circle-fill::before {
  content: "\f7a8";
}

.bi-4-circle::before {
  content: "\f7a9";
}

.bi-4-square-fill::before {
  content: "\f7aa";
}

.bi-4-square::before {
  content: "\f7ab";
}

.bi-5-circle-fill::before {
  content: "\f7ae";
}

.bi-5-circle::before {
  content: "\f7af";
}

.bi-5-square-fill::before {
  content: "\f7b0";
}

.bi-5-square::before {
  content: "\f7b1";
}

.bi-6-circle-fill::before {
  content: "\f7b4";
}

.bi-6-circle::before {
  content: "\f7b5";
}

.bi-6-square-fill::before {
  content: "\f7b6";
}

.bi-6-square::before {
  content: "\f7b7";
}

.bi-7-circle-fill::before {
  content: "\f7ba";
}

.bi-7-circle::before {
  content: "\f7bb";
}

.bi-7-square-fill::before {
  content: "\f7bc";
}

.bi-7-square::before {
  content: "\f7bd";
}

.bi-8-circle-fill::before {
  content: "\f7c0";
}

.bi-8-circle::before {
  content: "\f7c1";
}

.bi-8-square-fill::before {
  content: "\f7c2";
}

.bi-8-square::before {
  content: "\f7c3";
}

.bi-9-circle-fill::before {
  content: "\f7c6";
}

.bi-9-circle::before {
  content: "\f7c7";
}

.bi-9-square-fill::before {
  content: "\f7c8";
}

.bi-9-square::before {
  content: "\f7c9";
}

.bi-airplane-engines-fill::before {
  content: "\f7ca";
}

.bi-airplane-engines::before {
  content: "\f7cb";
}

.bi-airplane-fill::before {
  content: "\f7cc";
}

.bi-airplane::before {
  content: "\f7cd";
}

.bi-alexa::before {
  content: "\f7ce";
}

.bi-alipay::before {
  content: "\f7cf";
}

.bi-android::before {
  content: "\f7d0";
}

.bi-android2::before {
  content: "\f7d1";
}

.bi-box-fill::before {
  content: "\f7d2";
}

.bi-box-seam-fill::before {
  content: "\f7d3";
}

.bi-browser-chrome::before {
  content: "\f7d4";
}

.bi-browser-edge::before {
  content: "\f7d5";
}

.bi-browser-firefox::before {
  content: "\f7d6";
}

.bi-browser-safari::before {
  content: "\f7d7";
}

.bi-c-circle-fill::before {
  content: "\f7da";
}

.bi-c-circle::before {
  content: "\f7db";
}

.bi-c-square-fill::before {
  content: "\f7dc";
}

.bi-c-square::before {
  content: "\f7dd";
}

.bi-capsule-pill::before {
  content: "\f7de";
}

.bi-capsule::before {
  content: "\f7df";
}

.bi-car-front-fill::before {
  content: "\f7e0";
}

.bi-car-front::before {
  content: "\f7e1";
}

.bi-cassette-fill::before {
  content: "\f7e2";
}

.bi-cassette::before {
  content: "\f7e3";
}

.bi-cc-circle-fill::before {
  content: "\f7e6";
}

.bi-cc-circle::before {
  content: "\f7e7";
}

.bi-cc-square-fill::before {
  content: "\f7e8";
}

.bi-cc-square::before {
  content: "\f7e9";
}

.bi-cup-hot-fill::before {
  content: "\f7ea";
}

.bi-cup-hot::before {
  content: "\f7eb";
}

.bi-currency-rupee::before {
  content: "\f7ec";
}

.bi-dropbox::before {
  content: "\f7ed";
}

.bi-escape::before {
  content: "\f7ee";
}

.bi-fast-forward-btn-fill::before {
  content: "\f7ef";
}

.bi-fast-forward-btn::before {
  content: "\f7f0";
}

.bi-fast-forward-circle-fill::before {
  content: "\f7f1";
}

.bi-fast-forward-circle::before {
  content: "\f7f2";
}

.bi-fast-forward-fill::before {
  content: "\f7f3";
}

.bi-fast-forward::before {
  content: "\f7f4";
}

.bi-filetype-sql::before {
  content: "\f7f5";
}

.bi-fire::before {
  content: "\f7f6";
}

.bi-google-play::before {
  content: "\f7f7";
}

.bi-h-circle-fill::before {
  content: "\f7fa";
}

.bi-h-circle::before {
  content: "\f7fb";
}

.bi-h-square-fill::before {
  content: "\f7fc";
}

.bi-h-square::before {
  content: "\f7fd";
}

.bi-indent::before {
  content: "\f7fe";
}

.bi-lungs-fill::before {
  content: "\f7ff";
}

.bi-lungs::before {
  content: "\f800";
}

.bi-microsoft-teams::before {
  content: "\f801";
}

.bi-p-circle-fill::before {
  content: "\f804";
}

.bi-p-circle::before {
  content: "\f805";
}

.bi-p-square-fill::before {
  content: "\f806";
}

.bi-p-square::before {
  content: "\f807";
}

.bi-pass-fill::before {
  content: "\f808";
}

.bi-pass::before {
  content: "\f809";
}

.bi-prescription::before {
  content: "\f80a";
}

.bi-prescription2::before {
  content: "\f80b";
}

.bi-r-circle-fill::before {
  content: "\f80e";
}

.bi-r-circle::before {
  content: "\f80f";
}

.bi-r-square-fill::before {
  content: "\f810";
}

.bi-r-square::before {
  content: "\f811";
}

.bi-repeat-1::before {
  content: "\f812";
}

.bi-repeat::before {
  content: "\f813";
}

.bi-rewind-btn-fill::before {
  content: "\f814";
}

.bi-rewind-btn::before {
  content: "\f815";
}

.bi-rewind-circle-fill::before {
  content: "\f816";
}

.bi-rewind-circle::before {
  content: "\f817";
}

.bi-rewind-fill::before {
  content: "\f818";
}

.bi-rewind::before {
  content: "\f819";
}

.bi-train-freight-front-fill::before {
  content: "\f81a";
}

.bi-train-freight-front::before {
  content: "\f81b";
}

.bi-train-front-fill::before {
  content: "\f81c";
}

.bi-train-front::before {
  content: "\f81d";
}

.bi-train-lightrail-front-fill::before {
  content: "\f81e";
}

.bi-train-lightrail-front::before {
  content: "\f81f";
}

.bi-truck-front-fill::before {
  content: "\f820";
}

.bi-truck-front::before {
  content: "\f821";
}

.bi-ubuntu::before {
  content: "\f822";
}

.bi-unindent::before {
  content: "\f823";
}

.bi-unity::before {
  content: "\f824";
}

.bi-universal-access-circle::before {
  content: "\f825";
}

.bi-universal-access::before {
  content: "\f826";
}

.bi-virus::before {
  content: "\f827";
}

.bi-virus2::before {
  content: "\f828";
}

.bi-wechat::before {
  content: "\f829";
}

.bi-yelp::before {
  content: "\f82a";
}

.bi-sign-stop-fill::before {
  content: "\f82b";
}

.bi-sign-stop-lights-fill::before {
  content: "\f82c";
}

.bi-sign-stop-lights::before {
  content: "\f82d";
}

.bi-sign-stop::before {
  content: "\f82e";
}

.bi-sign-turn-left-fill::before {
  content: "\f82f";
}

.bi-sign-turn-left::before {
  content: "\f830";
}

.bi-sign-turn-right-fill::before {
  content: "\f831";
}

.bi-sign-turn-right::before {
  content: "\f832";
}

.bi-sign-turn-slight-left-fill::before {
  content: "\f833";
}

.bi-sign-turn-slight-left::before {
  content: "\f834";
}

.bi-sign-turn-slight-right-fill::before {
  content: "\f835";
}

.bi-sign-turn-slight-right::before {
  content: "\f836";
}

.bi-sign-yield-fill::before {
  content: "\f837";
}

.bi-sign-yield::before {
  content: "\f838";
}

.bi-ev-station-fill::before {
  content: "\f839";
}

.bi-ev-station::before {
  content: "\f83a";
}

.bi-fuel-pump-diesel-fill::before {
  content: "\f83b";
}

.bi-fuel-pump-diesel::before {
  content: "\f83c";
}

.bi-fuel-pump-fill::before {
  content: "\f83d";
}

.bi-fuel-pump::before {
  content: "\f83e";
}

.bi-0-circle-fill::before {
  content: "\f83f";
}

.bi-0-circle::before {
  content: "\f840";
}

.bi-0-square-fill::before {
  content: "\f841";
}

.bi-0-square::before {
  content: "\f842";
}

.bi-rocket-fill::before {
  content: "\f843";
}

.bi-rocket-takeoff-fill::before {
  content: "\f844";
}

.bi-rocket-takeoff::before {
  content: "\f845";
}

.bi-rocket::before {
  content: "\f846";
}

.bi-stripe::before {
  content: "\f847";
}

.bi-subscript::before {
  content: "\f848";
}

.bi-superscript::before {
  content: "\f849";
}

.bi-trello::before {
  content: "\f84a";
}

.bi-envelope-at-fill::before {
  content: "\f84b";
}

.bi-envelope-at::before {
  content: "\f84c";
}

.bi-regex::before {
  content: "\f84d";
}

.bi-text-wrap::before {
  content: "\f84e";
}

.bi-sign-dead-end-fill::before {
  content: "\f84f";
}

.bi-sign-dead-end::before {
  content: "\f850";
}

.bi-sign-do-not-enter-fill::before {
  content: "\f851";
}

.bi-sign-do-not-enter::before {
  content: "\f852";
}

.bi-sign-intersection-fill::before {
  content: "\f853";
}

.bi-sign-intersection-side-fill::before {
  content: "\f854";
}

.bi-sign-intersection-side::before {
  content: "\f855";
}

.bi-sign-intersection-t-fill::before {
  content: "\f856";
}

.bi-sign-intersection-t::before {
  content: "\f857";
}

.bi-sign-intersection-y-fill::before {
  content: "\f858";
}

.bi-sign-intersection-y::before {
  content: "\f859";
}

.bi-sign-intersection::before {
  content: "\f85a";
}

.bi-sign-merge-left-fill::before {
  content: "\f85b";
}

.bi-sign-merge-left::before {
  content: "\f85c";
}

.bi-sign-merge-right-fill::before {
  content: "\f85d";
}

.bi-sign-merge-right::before {
  content: "\f85e";
}

.bi-sign-no-left-turn-fill::before {
  content: "\f85f";
}

.bi-sign-no-left-turn::before {
  content: "\f860";
}

.bi-sign-no-parking-fill::before {
  content: "\f861";
}

.bi-sign-no-parking::before {
  content: "\f862";
}

.bi-sign-no-right-turn-fill::before {
  content: "\f863";
}

.bi-sign-no-right-turn::before {
  content: "\f864";
}

.bi-sign-railroad-fill::before {
  content: "\f865";
}

.bi-sign-railroad::before {
  content: "\f866";
}

.bi-building-add::before {
  content: "\f867";
}

.bi-building-check::before {
  content: "\f868";
}

.bi-building-dash::before {
  content: "\f869";
}

.bi-building-down::before {
  content: "\f86a";
}

.bi-building-exclamation::before {
  content: "\f86b";
}

.bi-building-fill-add::before {
  content: "\f86c";
}

.bi-building-fill-check::before {
  content: "\f86d";
}

.bi-building-fill-dash::before {
  content: "\f86e";
}

.bi-building-fill-down::before {
  content: "\f86f";
}

.bi-building-fill-exclamation::before {
  content: "\f870";
}

.bi-building-fill-gear::before {
  content: "\f871";
}

.bi-building-fill-lock::before {
  content: "\f872";
}

.bi-building-fill-slash::before {
  content: "\f873";
}

.bi-building-fill-up::before {
  content: "\f874";
}

.bi-building-fill-x::before {
  content: "\f875";
}

.bi-building-fill::before {
  content: "\f876";
}

.bi-building-gear::before {
  content: "\f877";
}

.bi-building-lock::before {
  content: "\f878";
}

.bi-building-slash::before {
  content: "\f879";
}

.bi-building-up::before {
  content: "\f87a";
}

.bi-building-x::before {
  content: "\f87b";
}

.bi-buildings-fill::before {
  content: "\f87c";
}

.bi-buildings::before {
  content: "\f87d";
}

.bi-bus-front-fill::before {
  content: "\f87e";
}

.bi-bus-front::before {
  content: "\f87f";
}

.bi-ev-front-fill::before {
  content: "\f880";
}

.bi-ev-front::before {
  content: "\f881";
}

.bi-globe-americas::before {
  content: "\f882";
}

.bi-globe-asia-australia::before {
  content: "\f883";
}

.bi-globe-central-south-asia::before {
  content: "\f884";
}

.bi-globe-europe-africa::before {
  content: "\f885";
}

.bi-house-add-fill::before {
  content: "\f886";
}

.bi-house-add::before {
  content: "\f887";
}

.bi-house-check-fill::before {
  content: "\f888";
}

.bi-house-check::before {
  content: "\f889";
}

.bi-house-dash-fill::before {
  content: "\f88a";
}

.bi-house-dash::before {
  content: "\f88b";
}

.bi-house-down-fill::before {
  content: "\f88c";
}

.bi-house-down::before {
  content: "\f88d";
}

.bi-house-exclamation-fill::before {
  content: "\f88e";
}

.bi-house-exclamation::before {
  content: "\f88f";
}

.bi-house-gear-fill::before {
  content: "\f890";
}

.bi-house-gear::before {
  content: "\f891";
}

.bi-house-lock-fill::before {
  content: "\f892";
}

.bi-house-lock::before {
  content: "\f893";
}

.bi-house-slash-fill::before {
  content: "\f894";
}

.bi-house-slash::before {
  content: "\f895";
}

.bi-house-up-fill::before {
  content: "\f896";
}

.bi-house-up::before {
  content: "\f897";
}

.bi-house-x-fill::before {
  content: "\f898";
}

.bi-house-x::before {
  content: "\f899";
}

.bi-person-add::before {
  content: "\f89a";
}

.bi-person-down::before {
  content: "\f89b";
}

.bi-person-exclamation::before {
  content: "\f89c";
}

.bi-person-fill-add::before {
  content: "\f89d";
}

.bi-person-fill-check::before {
  content: "\f89e";
}

.bi-person-fill-dash::before {
  content: "\f89f";
}

.bi-person-fill-down::before {
  content: "\f8a0";
}

.bi-person-fill-exclamation::before {
  content: "\f8a1";
}

.bi-person-fill-gear::before {
  content: "\f8a2";
}

.bi-person-fill-lock::before {
  content: "\f8a3";
}

.bi-person-fill-slash::before {
  content: "\f8a4";
}

.bi-person-fill-up::before {
  content: "\f8a5";
}

.bi-person-fill-x::before {
  content: "\f8a6";
}

.bi-person-gear::before {
  content: "\f8a7";
}

.bi-person-lock::before {
  content: "\f8a8";
}

.bi-person-slash::before {
  content: "\f8a9";
}

.bi-person-up::before {
  content: "\f8aa";
}

.bi-scooter::before {
  content: "\f8ab";
}

.bi-taxi-front-fill::before {
  content: "\f8ac";
}

.bi-taxi-front::before {
  content: "\f8ad";
}

.bi-amd::before {
  content: "\f8ae";
}

.bi-database-add::before {
  content: "\f8af";
}

.bi-database-check::before {
  content: "\f8b0";
}

.bi-database-dash::before {
  content: "\f8b1";
}

.bi-database-down::before {
  content: "\f8b2";
}

.bi-database-exclamation::before {
  content: "\f8b3";
}

.bi-database-fill-add::before {
  content: "\f8b4";
}

.bi-database-fill-check::before {
  content: "\f8b5";
}

.bi-database-fill-dash::before {
  content: "\f8b6";
}

.bi-database-fill-down::before {
  content: "\f8b7";
}

.bi-database-fill-exclamation::before {
  content: "\f8b8";
}

.bi-database-fill-gear::before {
  content: "\f8b9";
}

.bi-database-fill-lock::before {
  content: "\f8ba";
}

.bi-database-fill-slash::before {
  content: "\f8bb";
}

.bi-database-fill-up::before {
  content: "\f8bc";
}

.bi-database-fill-x::before {
  content: "\f8bd";
}

.bi-database-fill::before {
  content: "\f8be";
}

.bi-database-gear::before {
  content: "\f8bf";
}

.bi-database-lock::before {
  content: "\f8c0";
}

.bi-database-slash::before {
  content: "\f8c1";
}

.bi-database-up::before {
  content: "\f8c2";
}

.bi-database-x::before {
  content: "\f8c3";
}

.bi-database::before {
  content: "\f8c4";
}

.bi-houses-fill::before {
  content: "\f8c5";
}

.bi-houses::before {
  content: "\f8c6";
}

.bi-nvidia::before {
  content: "\f8c7";
}

.bi-person-vcard-fill::before {
  content: "\f8c8";
}

.bi-person-vcard::before {
  content: "\f8c9";
}

.bi-sina-weibo::before {
  content: "\f8ca";
}

.bi-tencent-qq::before {
  content: "\f8cb";
}

.bi-wikipedia::before {
  content: "\f8cc";
}

.bi-alphabet-uppercase::before {
  content: "\f2a5";
}

.bi-alphabet::before {
  content: "\f68a";
}

.bi-amazon::before {
  content: "\f68d";
}

.bi-arrows-collapse-vertical::before {
  content: "\f690";
}

.bi-arrows-expand-vertical::before {
  content: "\f695";
}

.bi-arrows-vertical::before {
  content: "\f698";
}

.bi-arrows::before {
  content: "\f6a2";
}

.bi-ban-fill::before {
  content: "\f6a3";
}

.bi-ban::before {
  content: "\f6b6";
}

.bi-bing::before {
  content: "\f6c2";
}

.bi-cake::before {
  content: "\f6e0";
}

.bi-cake2::before {
  content: "\f6ed";
}

.bi-cookie::before {
  content: "\f6ee";
}

.bi-copy::before {
  content: "\f759";
}

.bi-crosshair::before {
  content: "\f769";
}

.bi-crosshair2::before {
  content: "\f794";
}

.bi-emoji-astonished-fill::before {
  content: "\f795";
}

.bi-emoji-astonished::before {
  content: "\f79a";
}

.bi-emoji-grimace-fill::before {
  content: "\f79b";
}

.bi-emoji-grimace::before {
  content: "\f7a0";
}

.bi-emoji-grin-fill::before {
  content: "\f7a1";
}

.bi-emoji-grin::before {
  content: "\f7a6";
}

.bi-emoji-surprise-fill::before {
  content: "\f7a7";
}

.bi-emoji-surprise::before {
  content: "\f7ac";
}

.bi-emoji-tear-fill::before {
  content: "\f7ad";
}

.bi-emoji-tear::before {
  content: "\f7b2";
}

.bi-envelope-arrow-down-fill::before {
  content: "\f7b3";
}

.bi-envelope-arrow-down::before {
  content: "\f7b8";
}

.bi-envelope-arrow-up-fill::before {
  content: "\f7b9";
}

.bi-envelope-arrow-up::before {
  content: "\f7be";
}

.bi-feather::before {
  content: "\f7bf";
}

.bi-feather2::before {
  content: "\f7c4";
}

.bi-floppy-fill::before {
  content: "\f7c5";
}

.bi-floppy::before {
  content: "\f7d8";
}

.bi-floppy2-fill::before {
  content: "\f7d9";
}

.bi-floppy2::before {
  content: "\f7e4";
}

.bi-gitlab::before {
  content: "\f7e5";
}

.bi-highlighter::before {
  content: "\f7f8";
}

.bi-marker-tip::before {
  content: "\f802";
}

.bi-nvme-fill::before {
  content: "\f803";
}

.bi-nvme::before {
  content: "\f80c";
}

.bi-opencollective::before {
  content: "\f80d";
}

.bi-pci-card-network::before {
  content: "\f8cd";
}

.bi-pci-card-sound::before {
  content: "\f8ce";
}

.bi-radar::before {
  content: "\f8cf";
}

.bi-send-arrow-down-fill::before {
  content: "\f8d0";
}

.bi-send-arrow-down::before {
  content: "\f8d1";
}

.bi-send-arrow-up-fill::before {
  content: "\f8d2";
}

.bi-send-arrow-up::before {
  content: "\f8d3";
}

.bi-sim-slash-fill::before {
  content: "\f8d4";
}

.bi-sim-slash::before {
  content: "\f8d5";
}

.bi-sourceforge::before {
  content: "\f8d6";
}

.bi-substack::before {
  content: "\f8d7";
}

.bi-threads-fill::before {
  content: "\f8d8";
}

.bi-threads::before {
  content: "\f8d9";
}

.bi-transparency::before {
  content: "\f8da";
}

.bi-twitter-x::before {
  content: "\f8db";
}

.bi-type-h4::before {
  content: "\f8dc";
}

.bi-type-h5::before {
  content: "\f8dd";
}

.bi-type-h6::before {
  content: "\f8de";
}

.bi-backpack-fill::before {
  content: "\f8df";
}

.bi-backpack::before {
  content: "\f8e0";
}

.bi-backpack2-fill::before {
  content: "\f8e1";
}

.bi-backpack2::before {
  content: "\f8e2";
}

.bi-backpack3-fill::before {
  content: "\f8e3";
}

.bi-backpack3::before {
  content: "\f8e4";
}

.bi-backpack4-fill::before {
  content: "\f8e5";
}

.bi-backpack4::before {
  content: "\f8e6";
}

.bi-brilliance::before {
  content: "\f8e7";
}

.bi-cake-fill::before {
  content: "\f8e8";
}

.bi-cake2-fill::before {
  content: "\f8e9";
}

.bi-duffle-fill::before {
  content: "\f8ea";
}

.bi-duffle::before {
  content: "\f8eb";
}

.bi-exposure::before {
  content: "\f8ec";
}

.bi-gender-neuter::before {
  content: "\f8ed";
}

.bi-highlights::before {
  content: "\f8ee";
}

.bi-luggage-fill::before {
  content: "\f8ef";
}

.bi-luggage::before {
  content: "\f8f0";
}

.bi-mailbox-flag::before {
  content: "\f8f1";
}

.bi-mailbox2-flag::before {
  content: "\f8f2";
}

.bi-noise-reduction::before {
  content: "\f8f3";
}

.bi-passport-fill::before {
  content: "\f8f4";
}

.bi-passport::before {
  content: "\f8f5";
}

.bi-person-arms-up::before {
  content: "\f8f6";
}

.bi-person-raised-hand::before {
  content: "\f8f7";
}

.bi-person-standing-dress::before {
  content: "\f8f8";
}

.bi-person-standing::before {
  content: "\f8f9";
}

.bi-person-walking::before {
  content: "\f8fa";
}

.bi-person-wheelchair::before {
  content: "\f8fb";
}

.bi-shadows::before {
  content: "\f8fc";
}

.bi-suitcase-fill::before {
  content: "\f8fd";
}

.bi-suitcase-lg-fill::before {
  content: "\f8fe";
}

.bi-suitcase-lg::before {
  content: "\f8ff";
}

.bi-suitcase::before {
  content: "豈";
}

.bi-suitcase2-fill::before {
  content: "更";
}

.bi-suitcase2::before {
  content: "車";
}

.bi-vignette::before {
  content: "賈";
}

.bi-bluesky::before {
  content: "\f7f9";
}

.bi-tux::before {
  content: "滑";
}

.bi-beaker-fill::before {
  content: "串";
}

.bi-beaker::before {
  content: "句";
}

.bi-flask-fill::before {
  content: "龜";
}

.bi-flask-florence-fill::before {
  content: "龜";
}

.bi-flask-florence::before {
  content: "契";
}

.bi-flask::before {
  content: "金";
}

.bi-leaf-fill::before {
  content: "喇";
}

.bi-leaf::before {
  content: "奈";
}

.bi-measuring-cup-fill::before {
  content: "懶";
}

.bi-measuring-cup::before {
  content: "癩";
}

.bi-unlock2-fill::before {
  content: "羅";
}

.bi-unlock2::before {
  content: "蘿";
}

.bi-battery-low::before {
  content: "螺";
}

.bi-anthropic::before {
  content: "裸";
}

.bi-apple-music::before {
  content: "邏";
}

.bi-claude::before {
  content: "樂";
}

.bi-openai::before {
  content: "洛";
}

.bi-perplexity::before {
  content: "烙";
}

.bi-css::before {
  content: "珞";
}

.bi-javascript::before {
  content: "落";
}

.bi-typescript::before {
  content: "酪";
}

.bi-fork-knife::before {
  content: "駱";
}

.bi-globe-americas-fill::before {
  content: "亂";
}

.bi-globe-asia-australia-fill::before {
  content: "卵";
}

.bi-globe-central-south-asia-fill::before {
  content: "欄";
}

.bi-globe-europe-africa-fill::before {
  content: "爛";
}

html {
  display: flex;
}

.sync-wrapper {
  display: flex;
  justify-content: space-between;
}
.sync-wrapper span {
  align-self: center;
}
.sync-wrapper .btn {
  visibility: hidden;
  margin-left: 0.5rem;
}
.sync-wrapper:hover .btn {
  visibility: visible;
}

.k-grid.rows-cols-inverted .k-table-th > .k-cell-inner {
  margin-block: -1px;
  margin-inline: 0;
}
.k-grid.rows-cols-inverted .k-edit-cell, .k-grid.rows-cols-inverted .k-command-cell, .k-grid.rows-cols-inverted .k-grid-edit-row td, .k-grid.rows-cols-inverted .k-grid-edit-row .k-table-td {
  padding-block: 2px;
  padding-inline: 0.5rem;
}
.k-grid.rows-cols-inverted .k-grid-header {
  padding: 0 !important;
}
.k-grid.rows-cols-inverted table {
  width: auto;
  white-space: nowrap;
  display: flex;
}
.k-grid.rows-cols-inverted tr {
  display: inline-block;
}
.k-grid.rows-cols-inverted thead tr {
  display: inline;
}
.k-grid.rows-cols-inverted th, .k-grid.rows-cols-inverted td {
  display: block;
  border-bottom: 1px solid #e0e0e0;
  border-top: 1px solid transparent;
  height: 38px;
  padding: 2px 0.5rem;
}
