.k-header>.k-grid-filter,
.k-header>.k-header-column-menu {
    background: transparent;
}

.k-widget.k-tooltip-validation {
    border-color: rgb(255 192 0);
    background-color: rgb(255 192 0);
    color: rgb(0 0 0);
}

.k-widget.k-widget-2021 .k-panelbar .k-tabstrip-items .k-icon,
.k-widget.k-widget-2021 .k-tabstrip-items .k-icon {
    margin: 8px 4px 0 0px;
}


/*button icon*/
.btn-action .k-font-icon,
.k-widget.k-widget-2021 .k-panelbar .k-tabstrip-items .k-font-icon,
.k-widget.k-widget-2021 .k-tabstrip-items .k-font-icon {
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: 1em;
    height: 1em;
    text-align: center;
    vertical-align: middle;
    background-image: none;
    font: 16px/1 WebComponentsIcons;
    speak: none;
    font-variant: normal;
    text-transform: none;
    text-indent: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: inherit;
}

.btn-action i.k-font-icon,
.btn-action i.k-icon {
    top: 0;
}

.btn-action .k-font-icon:before {
    margin: auto;
    width: 1em;
    height: 1em;
    line-height: 1;
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.btn-action .k-font-icon.k-i-redo-large::before {
    content: "\e101";
}

.btn-action .k-font-icon.k-i-undo-large::before {
    content: "\e101";
}

.btn-action .k-font-icon.k-i-insert-image::before {
    content: "\e652";
}



.k-widget.k-widget-2021 .k-panelbar .k-tabstrip-items .k-font-icon,
.k-widget.k-widget-2021 .k-tabstrip-items .k-font-icon {
    margin: 0;
}

.k-widget.k-widget-2021 .k-panelbar .k-tabstrip-items .k-font-icon.k-i-x:before,
.k-widget.k-widget-2021 .k-tabstrip-items .k-font-icon.k-i-x:before {
    content: "\e11b";
}


.k-grid-content.k-auto-scrollable .k-grid-norecords {
    justify-content: space-around;
}

.k-widget.k-widget-2021.k-window.k-display-inline-flex {
    box-sizing: content-box;
}

.k-widget.k-widget-2021.multiSelectHeight {
    max-height: 60px;
    overflow-y: auto;
}

.k-widget.k-widget-2021.multiSelectHeight::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: rgb(245 245 245);
}

.k-widget.k-widget-2021.multiSelectHeight::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background-color: rgb(198 198 198);
}


/* .data-wrap .k-dropdown .k-icon {
    top: -1px;
} */
.k-combobox.k-combobox-clearable .k-select .k-icon.k-i-arrow-60-down {
    top: -2px;
}

.k-grid-content-locked,
.k-grid-content-locked td,
.k-grid-header-locked,
.k-grid-header-locked .k-header {
    border-left-color: #d5d5d5;
    border-right-color: #d5d5d5;
}

.k-spreadsheet>.k-spreadsheet-view .k-state-disabled {
    color: #2e2e2e;
}

.k-widget.k-dropdown[aria-readonly="true"]{
    opacity: 0.65;
}
.k-widget.k-dropdown[aria-readonly="true"] .k-state-focused .k-input {
    color: #f5f5f5;
}
.k-widget.k-dropdown[aria-readonly="true"] .k-state-hover .k-input {
    color: #f5f5f5;
}


.k-grid.k-widget input[type=checkbox] {
    position: relative;
    top:0px !important;
    margin: 0 !important;
    cursor: pointer;
}
.k-grid.k-widget input[type=checkbox]::before{
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    width: 11px;
    height: 11px;
    line-height: 11px;
    text-align: center;
    color: #999;

    border-radius: 0px;
    background: #f0fff0;
    border-color: #e5e5e5;
    outline: none;
    border-width: 2px;
    border-style: solid;
    -ms-transition: border-color 0.3s;
    -moz-transition: border-color 0.3s;
    -webkit-transition: border-color 0.3s;
}
.k-grid.k-widget input[type=checkbox]:checked::before {
    color: #999;
    content: '\f00c';
    font: normal 9px/12px FontAwesome;
    text-align: center;
    border-color: #999;
}
.k-grid.k-widget input[type=checkbox]:disabled::before {
    cursor: not-allowed;
    pointer-events: none;
    content: '';
    background: #e5e5e5;
    width: 10px;
    height: 10px;
    line-height: 10px;
    border-color: #e5e5e5;
}