﻿
/*This file should be referenced once from index.html*/

.wz-intro {
    background-color: black;
    background-image: url(../images/synergy-intro.gif);
    background-repeat: no-repeat;
    background-position: top;
    display: none;
}

@media (max-width: 640.98px) {
    .wz-background {
        background-color: white;
    }
    .wz-mobile-only {
        display: block !important;
    }
}

@media (min-width: 641px) {
    .wz-background {
        background-image: url(../images/RR_OfficeExterior2.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
    }
    .wz-mobile-only {
        display: none !important;
    }
}

div.wz-article-content {
    position: relative;
    background-color: white;
}

/*.k-window.telerik-blazor {
    pointer-events: auto;
    cursor: default;
}*/

.k-window.telerik-blazor.wz-disable-me {
    pointer-events: none;
    cursor: wait;
}

/* center wrap grid column headers */
/* applies to GridColumn and GridCommandColumn controls only */
.k-grid th.wz-center-wrap {
    justify-content: center;
    text-align: center;
    white-space: normal;
    vertical-align: middle;
}
.k-grid th.wz-center-wrap .k-column-title {
    white-space: normal;
}

/* adds ellipsis to longer grid cell values */
/* template */
div.wz-ellipsis,
/* OnCellRender */
.k-grid td.wz-ellipsis,
/* OnRowRender */
.k-grid tr.wz-ellipsis .k-table-td {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* min/max size of filter fields when resizing screen */
/* so that there are no overlapping or too spread out fields */
.wz-min-max-size {
    min-width: 230px;
    max-width: 230px;
}

/* negates wz-resize-grid if screen is too small */
.wz-no-resize-grid {
    width: 100% !important;
    height: 100% !important;
}

/* push grid row count to the right */
.wz-position-right {
    position: absolute;
    right: 20px;
}

/* center the contents of a grid cell */
/* applies to TelerikGrid controls only */
.wz-center-cell td {
    text-align: center !important;
}

/* Ensure the notification is on top of all other elements */
.notification-parent .k-notification-group {
    z-index: 99999; 
}