/**
 * Similar file to kendo.css but for stuff that needs to be run before loading in Kendo.
**/

/* A modified code fragment from the old DAVIS-KENDO-Theme.css */
/* Used to fix some old text inputs, date inputs etc. #14441 */
.form-control .k-input, .form-control .k-textbox {
    padding: 0;
    width: 100%;
    height: 100% !important;
    box-sizing: border-box;
    border: 0;
    outline: 0;
    color: inherit;
    background: none;
    font: inherit;
    font-size: 1rem;
    font-family: inherit;
    -ms-flex: 1;
    flex: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-appearance: none
}

.form-control.k-textbox {
    border-radius: 4px !important;
}

    .form-control.k-textbox:focus, *:focus, input:focus, div:focus, span:focus {
        box-shadow: none;
    }
/* --- */
