/* disable or prevent users from resizing the ASP.Net Multiline TextBox in browsers like Google Chrome, Mozilla Firefox and Apple Safari*/
textarea
{
    resize: none;
    font-size: 10pt
}

input[disabled]:not([type='checkbox']), input[readonly]:not([type='checkbox']), select[disabled], select[readonly], checkbox[disabled], checkbox[readonly], textarea[disabled], textarea[readonly]
{
    background-color: #ffffff !important;
    color: #555;
    cursor: default;
}

input.Error
{
    border-width: 2px;
    border-style: solid;
    border-color: Red;
}

span.Difference
{
    background-color: LightGreen;
}

img
{
    border: 0;
}

.GridButtons {
    margin: 5px 0px;
}

@media (min-width: 576px) { /* -sm */
    .GridButtons {
        display: flex;
        width: auto;
        float: right;
        gap: .25rem;
    }
}

.GridButton
{
    padding: 3px 15px ;
}

@media (max-width: 576px) { /* -sm */
    .GridButton {
        width: 100%;
        padding: .25rem 0;
        margin: .25rem 0;
    }
}

.inputMask {
    background-color: #F0F0F0;
}

.message-content
{
    height: 30em !important;
    width: 100% !important;
}

.message-footer-content {
    height: 12em !important;
    width: 100% !important;
}

.scrolldiv {
    padding: 5px;
    width: 100%;
    max-height: 20em;
    overflow-x: hidden;
    overflow-y: auto;
    text-align: justify;
}

.aviso-row-border {
    border-right: solid 1px #000000
}

.submit-button {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

@media (min-width: 576px) { /* -sm */
    .submit-button {
        display: flex;
        flex-direction: unset;
        justify-content: end;
    }
}

.aviso-error-status {
    margin: 2em 0 1em 0;
}

.clickable {
    cursor: pointer;
}

.click-effect:hover, .click-effect:active {
    background-color: #ccccccaa
}

.grid-pop-edit {
    min-width: 70em;
}

.text-break {
    white-space: inherit !important;
}

.aviso-street-extras {
    width: 11em;
}

.client-type-chooser:hover {
    background-color: #cfcfcf;
    color: black;
}

.Header {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 100%;
    font-weight: bold;
}

/* DxUpload - Upload Button wird nicht angezeigt */
.dx-upload-no-upload-btns .dxbl-upload-upload-btn {
    display: none;
}

/* DxUpload - 'Datei auswählen' Button nach oben  */
.dx-upload-no-upload-btns .dxuc-button-container {
    align-items: center !important;
}

/* DxUpload - Reload Button wird nicht angezeigt */
.dx-upload-no-action-btns .dxbl-upload-reload-btn {
    display: none;
}

/* DxUpload - Cancel Button wird nicht angezeigt */
.dx-upload-no-action-btns .dxbl-upload-cancel-btn {
    display: none;
}

.ExportGrid {
    max-height: 40em;
}

.file-drop-zone {
    height: 5em;
    background-color: white;
    width: 100% !important;
    border-style: solid;
    border-radius: 0.25em;
    border-width: 1px;
    border-color: #6c757d;
    cursor: pointer;
}

.file-drop-zone:hover {
    border-width: 3px !important;
}

.file-drop-zone.file-drop-zone-hover {
    border-width: 3px !important;
}

.file-drop-zone > * {
    pointer-events: none;
}