/* START - define variable css*/
:root {
    --cyan: #3192d0;
    --light-grey: #b5b5b5;
}
/* END - define variable css*/

/*START - custom css toolbar background*/
.telerik-grid-toolbar__background--white .k-grid-toolbar {
    background: white;
}
/*END - custom css toolbar background*/

/*START - custom css grid scroll*/
.telerik-grid__scroll--custom .k-grid-header {
    padding-right: 0 !important;
}

.telerik-grid__scroll--custom .k-header {
    border-width: 0px;
}

telerik-grid__scroll--custom td[data-col-index="0"] {
    padding-left: 20px;
}

.telerik-grid__scroll--custom td {
    border-width: 0px;
    padding-left: 20px;
}

.telerik-grid__scroll--custom th[data-cell-navigation-id="0"] {
    padding-left: 20px;
}

.telerik-grid__scroll--custom .k-grid-content {
    overflow: auto;
}

    .telerik-grid__scroll--custom .k-grid-content::-webkit-scrollbar {
        height: 7px;
        width: 7px;
    }

    .telerik-grid__scroll--custom .k-grid-content::-webkit-scrollbar-thumb {
        background: #06466f !important;
        border-radius: 20px;
    }

/*END - custom css grid scroll*/

/*START - custom css dropdown list*/
.telerik-dropdown-list__background--white {
    background: inherit;
    color: var(--cyan);
    width: auto;
}

    .telerik-dropdown-list__background--white:hover {
        background: inherit;
    }

.telerik-dropdown-list__scroll--custom .k-list-content.k-list-scroller::-webkit-scrollbar {
    height: 7px;
    width: 7px;
}

.telerik-dropdown-list__scroll--custom .k-list-content.k-list-scroller::-webkit-scrollbar-thumb {
    background: #06466f !important;
    border-radius: 20px;
}

/*END - custom css dropdown list*/

.telerik-window__window-content--custom .k-window-content {
    padding: 0;
}

.gray-bg {
    background-color: var(--gray)
}

.modal-scroll {
    max-height: calc(100vh - 300px);
    overflow: auto;
}

    .modal-scroll::-webkit-scrollbar {
        height: 7px;
        width: 7px;
    }

    .modal-scroll::-webkit-scrollbar-thumb {
        background: #06466f !important;
        border-radius: 20px;
    }

/*START - custom css telerik form*/
.telerik-form__content--custom .k-form-fieldset {
    margin: 0;
    padding: 0;
}

.telerik-form-legend__border--none .k-form-legend {
    border: none;
}

.telerik-form-legend__text--capitalize .k-form-legend {
    font-size: 1.75rem;
    font-weight: 500;
    margin: 0;
    text-transform: capitalize;
}

.telerik-form-legend__visibility--hidden .k-form-legend {
    visibility: hidden;
}

.telerik-form-legend__display--none .k-form-legend {
    display: none;
}

/*END - custom css telerik form*/

.telerik-grid__text-align--center td {
    text-align: center;
}

.telerik-grid__text-align--center th {
    text-align: center;
}
/*END - custom css telerik form*/

/*START - custom css telerik stepper*/

.custom-stepper .k-stepper > .k-progressbar {
    height: 2px;
    top: 23px;
}

    .custom-stepper .k-stepper > .k-progressbar .k-selected {
        background: linear-gradient(to right, var(--cyan), var(--cyan));
    }

.custom-stepper .custom-step {
    width: 100%;
    height: 50px;
    border: 2px solid var(--light-grey);
    border-radius: 5px;
    background-clip: padding-box;
    box-sizing: border-box;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    cursor: pointer;
}


.custom-stepper .k-step:not(.k-step-done):not(.k-step-current) .custom-step {
    border: 2px solid var(--light-grey);
}

.custom-stepper .k-step-list-horizontal .k-step-link {
    margin: 0;
    max-width: 7em;
}

.custom-stepper .k-step-link .step-label {
    color: var(--light-grey);
    font-weight: bold;
    position: static;
    transform: none;
    white-space: pre-wrap;
}

.custom-stepper .k-step-current .step-label {
    color: var(--white);
}

.custom-stepper .k-step-done .step-label {
    color: var(--cyan);
}

.custom-stepper .k-step-done .custom-step {
    background-color: var(--white);
    border-color: var(--cyan);
    color: var(--cyan);
}

/*END - custom css telerik stepper*/

/*START - custom css telerik link button*/

.telerik-button-link__text-decoration--none,
.telerik-button-link__text-decoration--none:hover,
.telerik-button-link__text-decoration--none:focus,
.telerik-button-link__text-decoration--none:active {
    text-decoration: none;
    outline: none;
    border: none;
    background-color: transparent;
    box-shadow: none;
}

.telerik-button-link__color--cyan .k-button-text {
    color: var(--cyan);
}

/*END - custom css telerik link button*/

/*START - custom css telerik grid hierarchy*/

.k-grid tr.no-children td.k-hierarchy-cell * {
    display: none;
}

.k-grid tr.no-children td.k-hierarchy-cell {
    pointer-events: none;
}

.k-grid .repair-order-link {
    text-decoration: underline !important;
}


/*END - custom css telerik grid hierarchy*/
/*END - custom css telerik link button*/


/*START - custom css telerik textbox with icon*/

/* enable absolute position for the icon */
.tb-icon-container {
    position: relative;
}

    /* position icon over textbox */
    .tb-icon-container .search-icon {
        position: absolute;
        z-index: 1;
        top: 8px;
        left: 15px;
    }

    /* add space to textbox without floating label */
    .tb-icon-container .k-textbox input,
    /* add space to floating label over the textbox */
    .k-floating-label-container.k-empty:not(.k-focus) .k-label {
        padding-left: 2em;
    }

/*END - custom css telerik textbox with icon*/


/*START - custom css telerik list view */

.custom-listview {
    display: flex;
    flex-direction: column;
}

    .custom-listview .k-listview-content {
        flex: 1;
        overflow-y: auto;
    }

    .custom-listview .k-listview-header {
        position: sticky;
        top: 0;
        background-color: #fff;
        z-index: 1;
    }

    .custom-listview .k-listview-footer {
        position: sticky;
        bottom: 0;
        background-color: #fff;
        z-index: 1;
    }
/*END - custom css telerik list view */

/*START - custom css scrollbar behavior */

.custom-scrollbar-y {
    overflow-y: scroll;
}

    .custom-scrollbar-y::-webkit-scrollbar {
        width: 7px;
        background-color: inherit;
    }

    .custom-scrollbar-y::-webkit-scrollbar-thumb {
        background: #06466f !important;
        border-radius: 20px;
    }

/*END - custom css scrollbar behavior */


/*START - custom css date range styles */

.k-calendar-monthview {
    min-height: 340px;
    display: flex;
    flex-direction: row;
    align-items: baseline;
    padding: 0 1rem;
}
.k-calendar-header {
    flex-direction: column;
    gap: 10px;
}
.k-calendar .k-disabled {
    color: var(--null-color);
    border-radius: 0;
}
.k-range-mid {
    background-color: var(--fill-color);
}

.k-link.customeDateRange--primaryFocus {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff;
}

.k-link.customeDateRange--tertiaryFocus {
    background-color: var(--tertiary-color) !important;
    border-color: var(--tertiary-color) !important;
    color: #fff;
}

.k-calendar {
    position: unset;
}
    .k-calendar .k-other-month {
        color: transparent;
        visibility: hidden;
    }
        .k-calendar .k-other-month:hover {
            color: transparent;
            background-color: transparent;
          
        }
.customDateRangeForm .validation-errors {
    list-style-type: none;
    color: #d51923;
    padding: 0;
}
/*END - custom css date range styles */