﻿:root {
    --producer-orange: #df4907;
    --producer-font-family: Helvetica Now Display;
}

.k-notification-group {
    margin-top: 60px;
}

.k-form, .k-form-inline {
    color: #555;
}

span.k-input ::placeholder,
span.k-picker ::placeholder {
    color: rgba(0, 0, 0, 0.25);
}

.k-form .k-form-legend, 
.k-form-inline .k-form-legend {
    /*no bottom border to form group*/
    border: 0;
    /* Don't auto capitalize text*/
    text-transform: none;
}

/* removes leagend from form when applied to TelerikForm Class attribute*/
.no-k-form-legend .k-form-legend {
    display: none;
}

/* sets first column to fixed width of 200px in FormGroup with Columns="2" when applied to TelerikForm Class attribute */
.k-form-cols-2-200px-auto .k-grid-cols-2 {
    grid-template-columns: 200px auto;
}

/* sets second column to fixed width of 200px in FormGroup with Columns="2" when applied to TelerikForm Class attribute */
.k-form-cols-2-auto-200px .k-grid-cols-2 {
    grid-template-columns: auto 200px;
}

/*--- start of .k-form-fieldset class extentions (FormGroup styling) ---*/
/* applied when formgroup-styling added to TelerikForm Class attribute, and following added to FormGroup Class attribute */

/* turns off FormGroup padding */
.formgroup-styling .no-padding {
    padding: 0;
}

/* turns off FormGroup margin */
.formgroup-styling .no-margin {
    margin: 0px;
}

/* pads top of FormGroup 13px */
.formgroup-styling .pad-top-13px {
    padding-top: 13px;
}

/* turns off FormGroup margin when formgroup-no-margin applied to TelerikForm Class attribute */
.formgroup-no-margin .k-form-fieldset {
    margin: 0;
}

/*--- end of .k-form-fieldset class extentions (FormGroup styling) ---*/

.toolbar-buttons button {
    margin-right: 8px;
}

.avatar {
    width: 180px;
    height: auto;
}

    .avatar .k-card-avatar, .k-card .k-avatar {
        margin-right: 0px;
        flex-basis: 160px !important;
    }

.dropzone-over .k-dropzone-inner {
    border: 2px #df4907 dashed;
}

.k-dropzone-inner {
    padding-block: 0px;
    padding-inline: 0px;
}

.k-avatar-image > img {
    object-fit: scale-down;
    width: 98%;
    height: 98%;
}

.sign-in-button {
    width: 232px;
    border-radius: 4px;
    box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.12), 0px 4px 16px 0px rgba(0, 0, 0, 0.12);
}

/* Start - Customized Switch control*/
.k-switch-md {
    width: 28px;
    height: 16px;
}

    .k-switch-md .k-switch-track {
        width: 28px;
        height: 16px;
    }

    .k-switch-md .k-switch-thumb {
        width: 12px;
        height: 12px;
    }

    .k-switch-md.k-switch-off .k-switch-thumb-wrap {
        left: 8px;
    }

    .k-switch-md.k-switch-on .k-switch-thumb-wrap {
        left: calc(100% - 8px);
    }
/* End - Customized Switch control*/

/* Start - Customized Checkbox controls*/
/* Checkbox styles */
div.k-form-field.checkbox-items {
    width: 100%;
    display: flex !important;
    align-items: center;
}

    div.k-form-field.checkbox-items label {
        padding-left: 5px;
        padding-right: 5px;
    }

.k-checkbox .k-disabled,
.k-checkbox:disabled {
    background-color: #e0e0e0; /* Light grey background */
    border-color: #b0b0b0; /* Grey border */
    cursor: not-allowed; /* Change cursor to indicate disabled state */
}

.k-checkbox .custom-checkbox-border {
    border-color: var(--kendo-color-border-alt);
}
/* End = Customized Checkbox controls*/

.bold-grid-header .k-grid-header th,
.k-grid-header th {
    font-weight: bold;
}