@charset "UTF-8";
/*!
CSS THEME CONFIG DO NOT REMOVE START
[{
    "variableName": "--primary-color",
    "displayName": "Primary Color",
    "enabled": true,
    "defaultValue": "#430071",
    "dependants": [{
        "variableName": "--interactive-color",
        "displayName": "Interactive color",
        "enabled": true,
        "defaultValue": "#0078D7",
        "weight": 1
      },
      {
        "variableName": "--highlight-color",
        "displayName": "Highlight color",
        "enabled": true,
        "defaultValue": "#B5D7EF",
        "weight": 0.8
      },
      {
        "variableName": "--activerow-color",
        "displayName": "Active row color",
        "enabled": true,
        "defaultValue": "#E0E4E8",
        "weight": 0.9
      },
      {
        "variableName": "--altrow-color",
        "displayName": "Alternative row color",
        "enabled": true,
        "defaultValue": "#F2F6FA",
        "weight": 0.98
      },
      {
        "variableName": "--altrow-color-new",
        "displayName": "Alternative row color",
        "enabled": true,
        "defaultValue": "red",
        "weight": 0.98
      },
      {
        "variableName": "--activerow-color-new",
        "displayName": "Alternative row color",
        "enabled": true,
        "defaultValue": "green",
        "weight": 0.98
      }
    ]
  },
  {
    "variableName": "--background-color",
    "displayName": "Background Color",
    "enabled": false,
    "defaultValue": "#F5F7F8"
  },
  {
    "variableName": "--backcolor-blue",
    "displayName": "Blue",
    "enabled": true,
    "defaultValue": "#4b86e5"
  },
  {
    "variableName": "--backcolor-indigo",
    "displayName": "Indigo",
    "enabled": true,
    "defaultValue": "#6610f2"
  },
  {
    "variableName": "--backcolor-purple",
    "displayName": "Purple",
    "enabled": true,
    "defaultValue": "#6f42c1"
  },
  {
    "variableName": "--backcolor-pink",
    "displayName": "Pink",
    "enabled": true,
    "defaultValue": "#e83e8c"
  },
  {
    "variableName": "--backcolor-red",
    "displayName": "Red",
    "enabled": true,
    "defaultValue": "#e14251"
  },
  {
    "variableName": "--backcolor-orange",
    "displayName": "Orange",
    "enabled": true,
    "defaultValue": "#fd7e14"
  },
  {
    "variableName": "--backcolor-yellow",
    "displayName": "Yellow",
    "enabled": true,
    "defaultValue": "#f2c541"
  },
  {
    "variableName": "--backcolor-green",
    "displayName": "Green",
    "enabled": true,
    "defaultValue": "#4cad63"
  },
  {
    "variableName": "--backcolor-teal",
    "displayName": "Teal",
    "enabled": true,
    "defaultValue": "#20c997"
  },
  {
    "variableName": "--backcolor-gray",
    "displayName": "Gray",
    "enabled": true,
    "defaultValue": "#868e96"
  },
  {
    "variableName": "--backcolor-graydark",
    "displayName": "Dark Gray",
    "enabled": true,
    "defaultValue": "#343a40"
  },
  {
    "variableName": "--backcolor-primary",
    "displayName": "Primary",
    "enabled": true,
    "defaultValue": "#007c09"
  },
  {
    "variableName": "--backcolor-info",
    "displayName": "Info",
    "enabled": true,
    "defaultValue": "#17a2b8"
  },
  {
    "variableName": "--backcolor-warning",
    "displayName": "Warning",
    "enabled": true,
    "defaultValue": "#ffc107"
  }
]
CSS THEME CONFIG DO NOT REMOVE END
*/
@supports (-webkit-overflow-scrolling: touch) {
    /* CSS specific to iOS devices */
    html, body {
        height: 100%;
        overflow: auto;
        /*-webkit-overflow-scrolling: touch;
    	commented out ios momentum scrolling because it lead to reports not being handled correctly
    	double iframe
    	ScreenId=GL632000
    */
    }
}

.widget-caption {
    border-bottom: #e0e4e8 1px solid;
}

.widget-caption__title {
    color: #4a4a4a;
    text-transform: uppercase;
    letter-spacing: -0.4px;
    padding: 6px 10px;
    font-size: 16px;
    font-weight: 400;
    height: 36px;
    line-height: 23px;
    box-sizing: border-box;
}

.dashboard-params .FormContent {
    background-color: #fff;
}

.dashboard-card {
    color: #fff;
    box-sizing: border-box;
    cursor: pointer;
}

.dashboard-card__icon {
    font-size: 28px;
    width: 28px;
    height: 28px;
    margin-right: 6px;
    padding: 10px;
    flex: 0;
    order: 0;
}

.dashboard-card__trend {
    padding: 10px;
    padding-left: 0;
    flex: none;
}

.dashboard__card__mini {
    border-radius: 5px;
}

    .dashboard__card__mini .dashboard-card__title {
        order: 1;
        flex: 1 1 0%;
        display: block;
        padding: 0;
        text-transform: uppercase;
        font-size: 14px;
        text-align: left;
        align-self: center;
        word-break: break-word;
    }

    .dashboard__card__mini .dashboard-card__value {
        font-size: 28px;
        padding: 10px;
        flex: 0 1 0%;
        text-align: right;
        order: 2;
    }

        .dashboard__card__mini .dashboard-card__value > * {
            display: inline-block;
        }

    .dashboard__card__mini .dashboard-card__details {
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        font-size: 11px;
        text-transform: none;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1;
        cursor: pointer;
        padding: 4px 0 2px 4px;
        opacity: 0;
        color: #fff;
    }

        .dashboard__card__mini .dashboard-card__details button {
            background-color: transparent;
            border: 0;
            color: inherit;
            cursor: pointer;
            width: 100%;
            text-align: left;
            font-size: 11px;
        }

    .dashboard__card__mini:hover .dashboard-card__details {
        opacity: 1;
        background: rgba(0, 0, 0, 0.31);
        z-index: 10;
    }

    .dashboard__card__mini:hover .dashboard-card__title {
        z-index: 10;
    }

    .dashboard__card__mini:hover .dashboard-card-cover {
        opacity: 0.13;
        background: #000;
    }

    .dashboard__card__mini.reload .last-updated {
        display: none;
    }

.dashboard-card-cover {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.dashboard__card__full {
    border-radius: 5px;
}

    .dashboard__card__full .dashboard-card__data {
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 10;
    }

.dashboard-card__data-top {
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
}

.dashboard__card__full .dashboard-card__title {
    order: 6;
    flex: 1 1 100%;
    display: block;
    padding: 0 10px;
    text-transform: uppercase;
    font-size: 14px;
    text-align: right;
    word-break: break-word;
}

.dashboard__card__full .dashboard-card__value {
    font-size: 28px;
    padding: 10px;
    flex: 1 1 auto;
    text-align: right;
    order: 2;
}

    .dashboard__card__full .dashboard-card__value > * {
        display: inline-block;
    }

.dashboard-card__value table {
    font-size: 28px;
}

.dashboard__card__full .dashboard-card__details {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 11px;
    text-transform: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1;
    cursor: pointer;
    padding: 4px 0 2px 4px;
    opacity: 0;
    color: #fff;
}

    .dashboard__card__full .dashboard-card__details button {
        background-color: transparent;
        border: 0;
        color: inherit;
        cursor: pointer;
        width: 100%;
        text-align: left;
        font-size: 11px;
    }

.dashboard__card__full:hover .dashboard-card__details {
    opacity: 1;
    background: rgba(0, 0, 0, 0.31);
    z-index: 10;
}

.dashboard__card__full:hover .dashboard-card__title {
    z-index: 10;
}

.dashboard__card__full:hover .dashboard-card-cover {
    opacity: 0.13;
    background: #000;
}

.dashboard-card__details:hover ~ .dashboard-card-cover {
    display: none;
}

.dashboard-card__details:hover ~ .dashboard-card-cover {
    display: none;
}

.dashboard-card__details .dashboard-card__button-text {
    display: none;
}

.dashboard-card__details:hover qp-last-update.au-target {
    display: none;
}

.dashboard-card__details:hover .dashboard-card__button-text {
    display: inline;
}

.dashboard__card__full.reload .last-updated {
    display: none;
}

.dashboard-card__details {
    display: none;
    transition: all ease-out 0.15s;
}

    .dashboard-card__details i.ac {
        font-size: 1.5em;
        line-height: 1;
        position: absolute;
        right: 5px;
        top: 7px;
    }

.dashboard-card__toolbar {
    display: flex;
    flex-flow: row;
    flex-wrap: nowrap;
    white-space: nowrap;
    border-bottom: 1px solid #e0e4e8;
}

.dashboard-card__toolbarbutton-caption {
    min-width: 50px;
}

    .dashboard-card__toolbarbutton-caption .toolsList > li {
        display: block;
    }

    .dashboard-card__toolbarbutton-caption .toolsBtn {
        width: 100%;
        display: block;
    }

.dashboard-card__toolBtnNormal {
    text-overflow: ellipsis;
    overflow: hidden;
    display: block !important;
    text-align: left !important;
}

.dashboard-card__div-btnRefresh {
    flex: 0 0 145px;
    text-align: left;
    align-self: center;
}

    .dashboard-card__div-btnRefresh .Button {
        background: transparent !important;
        border: 0px !important;
        text-transform: none !important;
        font-size: 11px !important;
    }

        .dashboard-card__div-btnRefresh .Button:hover {
            opacity: 1;
            cursor: pointer;
        }

.dash-wrapper .dashboard-card__div-btnRefresh {
    display: none;
}

.dash-wrapper:hover .dashboard-card__div-btnRefresh {
    display: block;
}

.dash-wrapper .dashboard-card__cover-button-text {
    display: none;
}

.dashboard-card__toolbar .dashboard-card__button-text {
    text-align: left;
}

.dash-wrapper .dashboard-card__div-btnRefresh:hover qp-last-update {
    display: none;
}

.dash-wrapper .dashboard-card__div-btnRefresh:hover .dashboard-card__cover-button-text {
    display: inline-block;
    text-align: left;
}

.dash-wrapper.reload .dashboard-card__cover-button-text,
.dash-wrapper.reload qp-last-update {
    display: none;
}

.dash-wrapper.reload .dashboard-card__div-btnRefresh {
    display: block;
}

.widget-link .link > a {
    position: relative;
    font-size: 16px;
    text-decoration: none;
    color: #007ACC;
    color: var(--primary-color, #007ACC);
    display: flex;
    align-items: flex-start;
}

.widget-link .link .text {
    padding-top: 3px;
}

.widget-link .link .ac {
    font-size: 27px;
    width: 27px;
    height: 27px;
    margin-right: 6px;
}

.widget-link .description {
    margin-left: 33px;
    color: RGBA(0, 0, 0, 0.5);
}

.dashboard-gauge .qp-gauge {
    cursor: pointer;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
}

.widget-captionbar {
    display: flex;
    align-items: stretch;
    height: 37px;
}

    .widget-captionbar .widget_caption__title {
        display: flex;
        align-items: stretch;
        height: 37px;
        width: 100%;
        overflow: hidden;
        text-transform: uppercase;
    }

    .widget-captionbar .dashboard-card__cover-button-text {
        display: none;
    }

.widget-captionbar__button {
    white-space: nowrap;
    font-size: 16px;
    padding: 5px 10px;
    text-transform: uppercase;
    border: 0;
    background-color: white;
}

    .widget-captionbar__button:hover {
        color: white;
        background-color: #007ACC;
        background-color: var(--primary-color, #007ACC);
    }

    .widget-captionbar__button:focus {
        border: 0;
    }

/*--------------- Tag styles ---------------*/
html {
    border: 0px;
}

body, input, textarea {
    font-family: Arial, sans-serif !important;
}

body {
    background-color: #FFFFFF;
    height: 100%;
    margin: 0px;
    padding: 0 0 0 5px;
    border: 0px;
    line-height: normal !important;
    -webkit-tap-highlight-color: transparent;
    /*-ms-touch-action: none;*/
}

.GridMain, .GridMainT, .GridMainS {
    -ms-touch-action: pinch-zoom;
}

label, span.checkBox, .tree, .NewsListTable, .GridMain, .GridMainT, .GridMainS {
    -o-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: -none;
    user-select: none;
}

input[type=checkbox] {
    margin-bottom: 0px;
    margin-left: 0px;
    height: 15px;
}

form.rtl input[type=checkbox] {
    margin-right: 0px;
    margin-left: 5px;
}

.Button, .toolsBtn, .sprite-icon {
    -webkit-tap-highlight-color: #AFBCCD;
}

div.wiki, .allowSelect {
    -o-user-select: text;
    -webkit-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

form {
    padding: 0px;
    margin: 0px;
}

textarea {
    box-shadow: none !important;
    outline: none;
}

select, input[type=text], a.editor, div {
    outline: none;
}

body {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
    font-size: 16px;
}

label, input, legend, select, textarea, *.label, *.labelH, *.labelB, *.labelTitle, *.dropDown, div.ddTable, div.informer,
*.selector, *.editor, div.req-l, div.req-r, div.caption, *.screenID, *.menuIsland, *.toolsList, .FormCaption, .FormContent,
.GridRow, GridHeader, .GridCaption, .GridEditorText, .GridRowForm, .GridCellButton, .GridPagerCell, .ddSearch,
.GridSearchText, .Button, .ButtonT, .ButtonF, .SmartPanel, .SmartPanelC, .SmartPanelF, .SearchBoxE, .SearchBoxB,
.moduleLink, .screenTitle, .linkTitle, .wikiEdit textarea, .ButtonE, .SearchBox input, .calendar, .selDropItem,
.toolLabel, .toolsBtn, .tree, .CalendarTimeColumnRow, .CalendarCurrentTime, .tabNormal, .tabContent, .selDropLink,
.WizardCaption, .WizardContent, .NavPanelBar, .NavPanelBarA, .NavPanelCaption, .StatusText, .LoginCaption,
.LoginLabel, .LoginLink, .DashCaption, .DashContent, .DashEnquiryButton, .DashCell, .DashHeaderCell, .DashButton,
.DashCalendarButton, .ScheduleContentBackground, .ScheduleContentBackgroundPersist, .ScheduleContentBackgroundOutOfWork,
.ScheduleContentBackgroundPersistOutOfWork, .NewsListRowsMain, .NewsToolBarButtonNormal, .NewsToolBarButtonHover,
.NewsToolBarButtonPushed, .TasksAndEventsLabel, .TasksAndEventsLabelHover, .ComparerContent, span.PopupImgCaption,
.ValidationBanner, .ValidationTable, .LicenseBanner, .login_link, .login_error, .extlogin_caption, #tooltip,
.progressStrip, .dash-wrapper, .pivotTable {
    font-size: 13px;
}

label {
    color: rgba(0, 0, 0, 0.64);
}

td.fill {
    width: 100%;
    vertical-align: top;
}

div.outerFill {
    position: relative;
}

div.innerFill {
    overflow: hidden;
    position: absolute;
    width: 100%;
}

div.contentHolder {
    overflow: auto;
    position: absolute;
    height: 100%;
    width: 100%;
}

table.canOverflow {
    width: 100%;
    table-layout: fixed;
}

    table.canOverflow td {
        overflow: hidden;
    }

.inline-block {
    display: inline-block;
}

#page-caption.fixed {
    position: fixed;
    background-color: white;
    width: 100%;
    z-index: 4200;
}

    #page-caption.fixed > div:last-child {
        border-bottom: 1px solid #D2D4D7;
        margin-right: 5px;
    }

/*------------------ Tooltip Css classes ------------------ */
#tooltip {
    font-size: 13px;
    border-radius: 5px;
    background-color: #007ACC;
    background-color: var(--primary-color, #007ACC);
    border: 1px solid #007ACC;
    border: 1px solid var(--primary-color, #007ACC);
    color: RGBA(255, 255, 255, 0.87);
    font-weight: 700;
    margin: 0px;
    padding: 5px;
    min-width: 80px;
    word-wrap: break-word;
}

    #tooltip a {
        color: RGBA(0, 0, 0, 0.87);
        font-size: 11px;
        float: right;
    }

    #tooltip .arrow {
        width: 50px;
        height: 14px;
        overflow: hidden;
        position: absolute;
        left: 50%;
        margin-left: -35px;
        bottom: -14px;
    }

        #tooltip .arrow.top {
            top: -14px;
            bottom: auto;
        }

        #tooltip .arrow.left {
            left: 20%;
        }

        #tooltip .arrow:after {
            background-color: #007ACC;
            background-color: var(--primary-color, #007ACC);
            border: 1px solid #007ACC;
            border: 1px solid var(--primary-color, #007ACC);
            content: "";
            position: absolute;
            left: 20px;
            top: -18px;
            width: 25px;
            height: 25px;
            transform: rotate(45deg);
        }

        #tooltip .arrow.top:after {
            bottom: -18px;
            top: auto;
        }

    #tooltip.error, #tooltip.error .arrow:after {
        background-color: #e51c23;
        border-color: #e51c23;
    }

    #tooltip.warn, #tooltip.warn .arrow:after {
        background-color: #ffeb3b;
        border-color: Brown;
        color: RGBA(0, 0, 0, 0.87);
    }

/*------------------ Progress bar Css classes ------------------ */
.progress {
    position: absolute;
    width: 100%;
    left: 0px;
    top: 0px;
    opacity: 0.6;
    background-color: #E6E6E6;
    vertical-align: middle;
    text-align: center;
    z-index: 20000;
}

.progressStrip {
    position: absolute;
    width: 300px;
    height: 24px;
    margin-left: -120px;
    left: 50%;
    top: 40%;
    z-index: 40000;
}

    .progressStrip .border {
        border: 2px solid #D2D4D7;
        border-radius: 5px;
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 3;
    }

    .progressStrip .fill {
        border: 2px solid #D2D4D7;
        border-radius: 5px;
        background-color: white;
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .progressStrip .bar {
        background-color: #50CA5E;
        position: absolute;
        top: 2px;
        left: 2px;
        height: 24px;
        width: 0px;
        box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        z-index: 2;
    }

    .progressStrip .label {
        position: relative;
        top: 2px;
        left: 2px;
        height: 24px;
        width: 296px;
        padding-left: 4px;
        padding-top: 4px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        z-index: 3;
    }

/*------------------ Process panel Css classes ------------------ */
.ProgressSmartPanelCollapsed {
    height: 213px;
}

.ProgressSmartPanelExpanded {
    height: 600px;
}

.ProgressSmartPanel {
    width: 802px;
}

    .ProgressSmartPanel .SmartPanelC {
        border: 0;
        cursor: default;
        font-family: Arial;
        font-size: 13px;
        font-weight: bold;
        font-style: normal;
        height: 19px;
        border-bottom: 1px solid #e6e6e6;
        background-color: white;
        color: #333333;
    }

    .ProgressSmartPanel .SmartPanelCN {
        padding: 0px;
        background-color: white;
    }

    .ProgressSmartPanel .Button {
        background-color: #d6d8db;
    }

.ProgressContent {
    background-color: white;
    padding: 20px;
    padding-bottom: 0;
}

    .ProgressContent .panelContent {
        overflow: hidden;
    }

.ProgressToolbar {
    padding-bottom: 20px;
}

.StatusCompleted .ProgressBarOuter {
    display: none;
}

.StatusError .ProgressBarOuter {
    display: none;
}

.ProgressBarOuter {
    height: 10px;
    background-color: #ededed;
    margin-bottom: 20px;
    margin-top: 7px;
}

#ProgressBar {
    height: 10px;
    color: white;
    font-size: 16px;
    width: 0%;
    vertical-align: middle;
}

.BtnFirst {
    margin-left: 0 !important;
}

.BtnLast {
    margin-right: 0 !important;
}

.ProgressBarInProcess {
    background-image: linear-gradient(to left top, #56baff 25%, transparent 25%, transparent 50%, #56baff 50%, #56baff 75%, transparent 75%, transparent);
    background-color: #98d5ff;
    background-size: 2rem 1rem;
    animation: progress-bar-stripes 1s linear infinite;
    width: 0;
}

.ProgressBarTransitionProgress {
    transition: width 1s ease-in-out;
}

.ProgressBarInitializing {
    background-image: linear-gradient(to left, transparent 25%, #56baff 25%, #56baff 75%, transparent 75%, transparent);
    background-color: #98d5ff;
    background-size: 100% 1rem;
    animation: glow-position 5s linear infinite;
    width: 100%;
}

@keyframes glow-position {
    from {
        background-position-x: 0;
    }

    to {
        background-position-x: 100rem;
    }
}

@keyframes progress-bar-stripes {
    from {
        background-position: 2rem 0;
    }

    to {
        background-position: 0 0;
    }
}

.LabelAbbrError {
    border-bottom: 1px dashed #ff0000;
    color: #ff0000;
}

.LabelAbbrWarning {
    border-bottom: 1px dashed #ffc107;
    color: #ffc107;
}

.ButtonBar {
    text-align: center;
    height: 50px;
}

.ProgressBtnNum {
    text-transform: none;
    text-align: left;
}

.ProgressBtnLabel {
    padding-top: 4px;
    text-transform: none;
    text-align: left;
    float: left;
    display: inline-block;
    max-width: 95px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.ProgressBtnIcon {
    float: left;
    display: inline-block;
    padding-top: 1px;
    font-size: 24px;
}

div.progressButton {
    display: none;
}

.LabelStatus {
    font-family: Arial;
    font-size: 13px;
    color: #333333;
    border: 0 !important;
}

.StatusCompleted .LabelStatus {
    font-family: Arial;
    font-size: 16px;
    color: #333333;
    border: 0 !important;
}

.StatusError .LabelStatus {
    font-family: Arial;
    font-size: 16px;
    color: #333333;
    border: 0 !important;
}

.ProgressToolbar .toolsBtn {
    font-family: Arial;
    font-size: 16px;
    width: 146px;
    height: 60px;
    border-radius: 2px;
    text-transform: none !important;
    text-align: left !important;
}

.BtnCompleted .toolBtnNormal {
    background-color: #28a745;
    color: #ffffff;
    border-radius: 2px;
}

.BtnCompleted.toolsBtn:hover .toolBtnNormal {
    background-color: #228c3b;
    color: #ffffff;
    border-radius: 2px;
}

.BtnErrors .toolBtnNormal {
    background-color: #dc3545;
    color: #ffffff;
    border-radius: 2px;
}

.BtnErrors.toolsBtn:hover .toolBtnNormal {
    background-color: #c73041;
    color: #ffffff;
    border-radius: 2px;
}

.BtnWarnings .toolBtnNormal {
    background-color: #ffc107;
    color: #333333;
    border-radius: 2px;
}

.BtnWarnings.toolsBtn:hover .toolBtnNormal {
    background-color: #e8b007;
    color: #333333;
    border-radius: 2px;
}

.BtnNormal .toolBtnNormal {
    background-color: #ededed;
    color: #333333;
    border-radius: 2px;
}

.BtnDisabled .toolBtnNormal {
    background-color: #ededed;
    color: #9b9b9b;
    border-radius: 2px;
}

.BtnColorDisabled .toolBtnNormal {
    opacity: 0.5;
    border-radius: 2px;
}

.ProgressBarC1 {
    background-color: #98d5ff;
}

/*------------------ Login Css classes ------------------ */
div#login_bg {
    height: 100%;
    width: 100%;
    left: 0px;
    top: 0px;
    overflow: hidden;
    position: fixed;
    z-index: 0;
    transition: opacity 1s ease 0s;
    background: none repeat scroll 0 0 white;
}

img#login_bg_image {
    height: 100%;
    width: 100%;
    position: fixed;
}

.login_img {
    width: 250px;
    border-width: 0px;
}

div#login_panel {
    background: none repeat scroll 0 0 #ffffff;
    position: absolute;
    right: 0px;
    z-index: 1;
    width: 500px;
    padding: 0 40px;
    overflow-x: hidden;
    overflow-y: auto;
}

    div#login_panel.mobile {
        width: 100%;
        left: 0px;
        right: auto;
        padding: 10px;
    }

        div#login_panel.mobile div#login_logo {
            padding-bottom: 10px;
        }

        div#login_panel.mobile div#login_data {
            min-height: 450px;
        }

div#login_data {
    height: 100%;
    overflow: hidden;
}

div#login_copyright {
    position: absolute;
    bottom: 0px;
    padding-bottom: 20px;
    padding-right: 40px;
    display: none;
}

#login_customization {
    overflow-x: hidden;
    overflow-y: auto;
    word-break: break-all;
    width: 100%;
    background: white;
}

div#login_logo {
    overflow: hidden;
    height: 110px;
    position: fixed;
    background: white;
    width: 420px;
    z-index: 20;
}

    div#login_logo > a.logo {
        margin-top: 20px;
    }

div#login_user {
    overflow: hidden;
}

.login_lang,
.login_user,
.login_pass,
.login_company,
.login_button,
.logincancel_button,
.extlogin_button,
.extlogin_wide_button,
.login_tenant {
    font-size: 15px;
    font-weight: 400;
}

    .login_lang:-ms-input-placeholder, .login_user:-ms-input-placeholder, .login_pass:-ms-input-placeholder, .login_company:-ms-input-placeholder, .login_button:-ms-input-placeholder, .logincancel_button:-ms-input-placeholder, .extlogin_button:-ms-input-placeholder, .extlogin_wide_button:-ms-input-placeholder, .login_tenant:-ms-input-placeholder {
        color: #a7a7a7;
    }

    .login_lang::placeholder,
    .login_user::placeholder,
    .login_pass::placeholder,
    .login_company::placeholder,
    .login_button::placeholder,
    .logincancel_button::placeholder,
    .extlogin_button::placeholder,
    .extlogin_wide_button::placeholder,
    .login_tenant::placeholder {
        color: #a7a7a7;
    }

.login_lang {
    font-size: 13px;
    float: right;
    width: 120px;
    margin-top: 27px;
    padding: 4px;
    border-radius: 3px;
    border: solid 1px RGBA(0, 0, 0, 0.12);
    z-index: 10;
    position: absolute;
    right: 0;
}

.login_user,
.login_pass,
.login_tenant {
    width: 100%;
    padding: 6px 16px;
    margin-bottom: 15px;
    border: solid 1px RGBA(0, 0, 0, 0.12);
    border-radius: 8px;
    height: 40px;
}

    .login_pass.dummy {
        background-color: RGBA(0, 0, 0, 0.12);
    }

.input_with_button_wrapper {
    display: flex;
    align-items: center;
}

    .input_with_button_wrapper .cross_button {
        margin-left: -30px;
        margin-bottom: 13px;
    }

.login_company {
    width: 100%;
    font-size: 16px;
    margin-bottom: 15px;
    padding: 8px 16px;
    border-radius: 8px;
    border: solid 1px RGBA(0, 0, 0, 0.12);
    height: 40px;
}

#loginPasswordContainer {
    margin-top: 25px;
}

.logincancel_button, .login_button {
    padding: 7px 20px;
    border-radius: 8px;
    height: 40px;
}

.login_button {
    color: white;
    background-color: #027acc;
    border: solid 1px #027acc;
    margin-right: 10px;
    -webkit-appearance: none;
}

    .login_button:hover {
        background-color: #3399cc;
    }

    .login_button:disabled {
        background-color: #d3d3d2;
        border: solid 1px #d3d3d2;
    }

.login_button_wide {
    width: 150px;
}

.logincancel_button {
    color: black;
    margin-right: 10px;
    background-color: #ecedf0;
    border: solid 1px #ecedf0;
}

    .logincancel_button:hover {
        background-color: #e0e4e8;
    }

.extlogin_caption {
    padding: 5px 0px;
    font-size: 13px;
}

.extlogin_button {
    float: left;
    color: white;
    width: 50px;
    background-color: #43abf7;
    border: solid 1px #43abf7;
    border-radius: 5px;
    margin-right: 10px;
}

    .extlogin_button:hover {
        background-color: #3399cc;
    }

#login_ext {
    margin-top: 25px;
}

.extlogin_wide_button {
    display: flex;
    align-items: center;
    height: 40px;
    margin-bottom: 15px;
    background: #f1f1f1;
    text-decoration: none;
    color: #000000;
    font-size: 15px;
    border-radius: 8px;
}

    .extlogin_wide_button:hover {
        background: #e0e4e8;
    }

    .extlogin_wide_button img {
        margin: 7px 15px;
        height: 25px;
        width: 25px;
    }

.big_caption, .signin_caption, .tenant_caption {
    margin-bottom: 15px;
    font-size: 22px;
}

.tenant_caption {
    display: block;
}

.signin_caption {
    display: block;
}

    .signin_caption:empty:before {
        content: " ";
    }

#custErrorDetails {
    overflow-x: auto;
}

#login_info {
    padding: 10px 0px;
}

#login_errBox {
    display: table-cell;
    height: 70px;
    vertical-align: middle;
    width: 400px;
    padding-top: 110px;
}

.login_error {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: red;
    margin-bottom: 10px;
    overflow-wrap: anywhere;
}

#login_links {
    padding: 5px 0px;
}

.login_link {
    font-size: 13px;
    color: #027acc;
    margin-right: 10px;
    text-decoration: none;
    float: right;
}

    .login_link.multy-factor {
        float: left;
    }

#loginButtonsContainer {
    line-height: 40px;
    clear: both;
}

.multi-factor-tip .pass-text {
    margin-top: 10px;
}

.multi-factor-method {
    padding-top: 20px;
    margin-top: 0px;
}

.auth-caption {
    margin-top: 10px;
    margin-bottom: 5px;
}

    .auth-caption > span {
        font-size: 16px;
        font-weight: bold;
        vertical-align: middle;
    }

    .auth-caption > .ac {
        font-size: 28px;
        margin-right: 5px;
        vertical-align: middle;
    }

.auth-info {
    display: block;
    margin-top: 10px;
}

.list-group.auth .list-group-item {
    font-size: 14px;
    padding: 8px;
    padding-left: 0px;
    cursor: pointer;
    color: RGBA(0, 0, 0, 0.87);
}

    .list-group.auth .list-group-item:hover {
        background-color: #B5D7EF;
        color: black;
    }

    .list-group.auth .list-group-item .ac {
        font-size: 28px;
        vertical-align: middle;
    }

    .list-group.auth .list-group-item span {
        color: #007bff;
        vertical-align: middle;
    }

/*------------------ Frameset Css classes ------------------ */
.logo {
    float: left;
    display: inline-block;
    padding-right: 5px;
}

.logoImg {
    height: 37px;
    width: 150px;
    border-width: 0px;
    margin-left: 10px;
}

.loginTitleBg {
    background: url(Images/loginBg.gif);
    text-align: center;
}

img[id$=imgLogo] {
    float: left;
}

.projectLink {
    position: relative;
    display: block;
    border-bottom: 1px solid #BBBBBB;
    padding: 9px 5px 11px 10px;
    font-size: 19px;
    color: RGBA(0, 0, 0, 0.87);
    background-color: #E0E4E8;
}

    .projectLink.transparent {
        background-color: transparent;
        border-bottom: none;
    }

.moduleLink {
    display: inline-block;
    margin: 10px 5px 5px 10px;
    color: RGBA(0, 0, 0, 0.87);
    text-decoration: none;
    font-size: 19px;
}

form.rtl .moduleLink {
    margin: 9px 10px 5px 5px;
}

.moduleLink:hover {
    text-decoration: underline;
}

.leftFrame {
    vertical-align: top;
    padding: 0px;
    background-color: #F5F7F8;
    background-color: var(--background-color, #F5F7F8);
    border-right: 1px solid #D2D4D7;
}

.rightFrame {
    vertical-align: top;
    padding: 0px;
}

.menuHidden .screenFrame {
    border-left: 1px solid #D2D4D7;
    padding-left: 4px;
}

.menuTree > ul, .menuTree > div > ul {
    padding-top: 8px !important;
}

.searchFrame {
    padding: 10px 10px 15px 10px;
}

.menuFrameI {
    background-color: White;
    overflow: hidden;
    position: relative;
}

.menuPanel {
    overflow: auto;
    position: relative;
}

.menuTree {
    border-width: 0px !important;
    height: 100%;
    width: 100%;
    overflow: auto;
    position: absolute !important;
}

.menuTreeHlp {
    height: 100%;
    width: 100%;
    position: absolute;
    overflow: hidden;
}

.hideFrameBox {
    position: absolute;
    top: 4px;
    left: -25px;
    padding: 10px 0px 0px 2px;
    z-index: 5000;
    background-color: #FFFFFF;
    border: 1px solid #D2D4D7;
    border-right-width: 0px;
    width: 18px;
    height: 22px;
}

    .hideFrameBox:hover {
        background-color: #D2D4D7;
        cursor: pointer;
    }

.menuHidden .hideFrameBox {
    left: -20px;
}

form.rtl .hideFrameBox {
    left: auto;
    right: -20px;
    padding: 10px 2px 0px 0px;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    tranform: rotate(180deg);
}

.toolLabel.activeProject, .toolLabel.publishedProject {
    font-weight: 700;
    font-size: 13px;
}

.toolLabel.activeProject {
    padding-right: 50px;
}

.toolLabel.publishedProject {
    padding-right: 10px;
}

.custProjectTitle {
    display: table-cell;
    height: 40px;
    vertical-align: middle;
    padding-left: 5px;
}

.custProjectTopBtn {
    position: absolute;
    top: 5px;
    right: 0px;
    min-width: 40px !important;
    height: 30px !important;
}

.frame-shadow {
    position: absolute;
    top: 0px;
    height: 100%;
    width: 100%;
    background-color: #D2D4D7;
    z-index: 900;
    opacity: 0.6;
}

    .frame-shadow.spinner {
        background-color: white;
        opacity: 1;
    }

table.screenFrame td.layer-visible {
    position: relative;
    padding-right: 60px;
}

.layer-cont {
    display: flex;
    position: absolute;
    top: 0px;
    height: 100%;
    width: 640px;
    max-width: 100%;
    min-width: 400px;
    right: 0px;
    border-left: 1px solid #D2D4D7;
    z-index: 500;
    background-color: white;
    overflow-x: hidden;
}

    .layer-cont .disabled {
        opacity: 0.5;
    }

        .layer-cont .disabled .actions .list-group-item:hover {
            background-color: initial !important;
        }

    .layer-cont .actions, .layer-cont .content {
        flex: 1;
        overflow-y: hidden;
        overflow-x: hidden;
    }

    .layer-cont .content {
        display: flex;
        flex-flow: column;
    }

        .layer-cont .content .caption {
            padding: 10px 0px 5px 18px;
        }

            .layer-cont .content .caption .title {
                font-size: 15px;
                opacity: 0.5;
            }

            .layer-cont .content .caption .msg {
                font-size: 19px;
                color: RGBA(0, 0, 0, 0.87);
                padding: 2px 0px;
            }

            .layer-cont .content .caption .buttons {
                position: absolute;
                top: 10px;
                right: 0px;
                z-index: 1000;
            }

                .layer-cont .content .caption .buttons .ac {
                    position: relative;
                    font-size: 24px;
                    cursor: pointer;
                    opacity: 0.8;
                    margin-right: 10px;
                }

                    .layer-cont .content .caption .buttons .ac:hover {
                        opacity: 1;
                    }

        .layer-cont .content iframe.layer {
            flex: 1;
            box-sizing: border-box;
            border: none;
            position: relative;
            width: 100%;
            height: auto;
            padding-left: 5px;
        }

    .layer-cont .actions {
        max-width: 80px;
        background-color: white;
    }

    .layer-cont .spacer {
        height: 100%;
        border-right: 1px solid #D2D4D7;
        pointer-events: none;
    }

    .layer-cont.max {
        border-left: none 0px;
        position: absolute !important;
        width: 100% !important;
    }

    .layer-cont div.min {
        display: none;
    }

    .layer-cont div.max {
        display: block;
    }

    .layer-cont.min div.min {
        display: block;
    }

    .layer-cont.min div.max {
        display: none;
    }

    .layer-cont.min {
        width: 80px !important;
        max-width: 80px !important;
        min-width: 80px !important;
    }

        .layer-cont.min .content {
            display: none;
        }

        .layer-cont.min .spacer {
            display: none;
            border-right: 1px solid #D2D4D7;
        }

.frame-cont.layer-visible iframe#main, form.layer-visible {
    padding-right: 80px;
}

#aspnetForm.layer-visible {
    position: relative;
}

    #aspnetForm.layer-visible .right-footer {
        position: fixed;
    }

.list-group.layer-actions {
    height: 100%;
    position: absolute;
    width: 80px;
}

    .list-group.layer-actions .list-group-item {
        cursor: pointer;
        color: var(--primary-color, #007ACC);
        background-color: white;
        border-right: 1px solid #D2D4D7;
        padding: 13px 7px;
        text-align: center;
    }

        .list-group.layer-actions .list-group-item:hover {
            background-color: #E0E0E0;
        }

        .list-group.layer-actions .list-group-item .ac {
            font-size: 26px;
        }

        .list-group.layer-actions .list-group-item span {
            color: var(--primary-color, #e1f2ff);
            display: block;
            text-overflow: ellipsis;
            opacity: 0.8;
            white-space: normal;
            font-size: 10px;
            text-align: center;
        }

.right-footer {
    position: absolute;
    text-align: center;
    height: 36px;
    width: 80px;
    min-width: 80px;
    bottom: 0px;
    box-sizing: border-box;
}

    .right-footer.max {
        border-right: 1px solid #D2D4D7;
    }

    .right-footer .ac {
        padding-top: 6px;
    }

        .right-footer .ac:hover {
            color: black;
        }

.right-menu-wrapper {
    position: absolute;
    width: 80px;
    top: 0px;
    bottom: 36px;
    overflow-y: hidden;
    overflow-x: hidden;
}

    .right-menu-wrapper:hover {
        overflow-y: auto;
    }

.right-footer > .ac {
    color: gray;
    font-size: 24px;
    cursor: pointer;
    width: 40px;
}

.layer-cont:not(.min) .list-group.layer-actions .list-group-item.active {
    border-top: 1px solid #D2D4D7;
    border-bottom: 1px solid #D2D4D7;
    border-right-color: white;
    background-color: white;
    border-left: 5px solid var(--highlight-color, #B5D7EF);
}

@media (min-width: 1366px) {
    .frame-cont.layer-visible {
        display: flex;
    }

        .frame-cont.layer-visible iframe#main {
            flex: 1;
            position: relative;
        }

        .frame-cont.layer-visible .layer-cont {
            position: relative;
        }

        .frame-cont.layer-visible iframe#main {
            padding-right: 0px;
        }
}

@media (max-width: 810px) {
    .layer-cont {
        width: 100%;
    }
}

form.layer .pageTitle {
    float: left;
    padding: 0px;
    display: none;
}

form.layer .panelTBL, form.layer div[id*=CustomizationContainer], form.layer div[id*=tlbTools],
form.layer div[data-cmd=ActivityShow], form.layer div[data-cmd=NotifyShow], form.layer div[data-cmd=help] {
    display: none;
}

/*--------------- Page Title Css classes ---------------*/
.pageTitle {
    padding: 3px 4px 4px 6px;
    overflow: hidden;
}

.screenTitle {
    font-size: 13px;
    font-weight: bold;
}

.siteMap {
    white-space: nowrap;
    float: left;
}

.favoriteButton {
    width: 24px;
    height: 24px;
    opacity: 0.6;
}

div.pageTitleCont {
    padding: 5px 0px;
}

.linkTitle {
    font-size: 19px;
    text-decoration: none;
    color: RGBA(0, 0, 0, 0.87);
    cursor: pointer;
    padding-left: 2px;
    padding-right: 4px;
    display: inline-block;
    margin-top: 1px;
}

a.linkTitle:hover {
    text-decoration: underline;
}

.labelVersion {
    font-weight: bold;
    display: inline-block;
    width: 400px;
    text-overflow: ellipsis;
}

.toolBarPath .dropDown, .toolBarPath .dropDown.focus {
    border-width: 0;
    box-shadow: none;
    font-size: 19px;
    height: 26px;
    margin: 1px;
}

    .toolBarPath .dropDown:hover {
        background-color: #007ACC;
        background-color: var(--primary-color, #007ACC);
        color: #FFFFFF;
    }

        .toolBarPath .dropDown:hover .buttonsCont {
            background-color: #007ACC;
            background-color: var(--primary-color, #007ACC);
        }

    .toolBarPath .dropDown.Disabled {
        color: black;
    }

.toolBarPath {
    color: RGBA(0, 0, 0, 0.87);
}

    .toolBarPath .toolLabel {
        font-size: 19px;
        font-weight: normal;
        padding: 5px 2px;
    }

div.ddTable[controlID$=cmdBranch] .ddItem {
    padding: 5px 20px;
    font-size: 15px;
}

.panelTBL {
    float: left;
}

.panelTBR {
    float: right;
}

.panelTBRSP {
    float: right;
    color: White;
}

.panelTBRSP-rtl {
    float: left;
    color: White;
}

.panelTBR .toolsBtn {
    font-size: 12px;
}

#panelT div[data-cmd=time] {
    color: #4E576A;
    font-weight: 700;
}

.phDS, .phL, .phF, .phG {
    margin: 0px 4px 0px 0px;
}

form[PopupPanel] .phDS, form[PopupPanel] .phL, form[PopupPanel] .phF, form[PopupPanel] .phG {
    margin: 0px 5px;
}

.phG .tabView, .splitContainer .tabView, .FormView + .tabView {
    background-color: #F5F7F8;
    background-color: var(--background-color, #F5F7F8);
}

    .phF > .FormView, .phF + .phG > .tabView .tabCaption, .FormView + .tabView .tabCaption,
    .phF + .phG > .GridMain .GridToolsCell, .phF + .phG > .GridMain .GridCaption,
    .phF > .splitContainer, .phL > .splitContainer, .phG > .splitContainer {
        border-left: 1px solid #D2D4D7;
        border-right: 1px solid #D2D4D7;
    }

        .phF > .splitContainer > tbody > tr > td.splitterLC,
        .phF > .splitContainer > tbody > tr > td.splitterRC,
        .phL > .splitContainer > tbody > tr > td.splitterLC,
        .phL > .splitContainer > tbody > tr > td.splitterRC,
        .phG > .splitContainer > tbody > tr > td.splitterLC,
        .phG > .splitContainer > tbody > tr > td.splitterRC,
        .phL > .splitContainer > tbody > tr > td.splitterTC,
        .phG > .splitContainer > tbody > tr > td.splitterTC {
            border-top: 1px solid #D2D4D7;
            box-sizing: border-box;
        }

.splitContainer.transparent .splitterLC, .splitContainer.transparent .splitterRC {
    border-top-width: 0px !important;
}

.splitContainer .tabContent {
    border-width: 0px;
}

.splitContainer.transparent .tabContent {
    border-width: 1px;
}

/*--------------- Styles for render linked labels ---------------*/
.fld-l {
    float: left;
    width: 120px;
}

form.rtl .fld-l {
    float: right;
}

.fld-c {
    margin-left: 120px;
}

form.rtl .fld-c {
    margin-left: 0px;
    margin-right: 120px;
}

div.fld-lc .fld-l > label, div.stack-v input[type=checkbox] + label, .ellipsisLabel {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
}

div.stack-v input[type=checkbox] + label {
    width: 95%;
}

div.fld-lc .fld-l > label, .cell-w > span.labelH {
    margin-top: 4px;
}

div.cell-w > span.labelH {
    height: 20px;
}

.fld-lxxs {
    width: 40px;
}

.fld-cxxs {
    margin-left: 40px;
}

form.rtl .fld-cxxs {
    margin-left: 0px;
    margin-right: 40px;
}

.fld-lxs {
    width: 70px;
}

.fld-cxs {
    margin-left: 70px;
}

form.rtl .fld-cxs {
    margin-left: 0px;
    margin-right: 70px;
}

.fld-ls {
    width: 100px;
}

.fld-cs {
    margin-left: 100px;
}

form.rtl .fld-cs {
    margin-left: 0px;
    margin-right: 100px;
}

.fld-lsm {
    width: 150px;
}

.fld-csm {
    margin-left: 150px;
}

form.rtl .fld-csm {
    margin-left: 0px;
    margin-right: 150px;
}

.fld-lm {
    width: 200px;
}

.fld-cm {
    margin-left: 200px;
}

form.rtl .fld-cm {
    margin-left: 0px;
    margin-right: 200px;
}

.fld-lxm {
    width: 250px;
}

.fld-cxm {
    margin-left: 250px;
}

form.rtl .fld-cxm {
    margin-left: 0px;
    margin-right: 250px;
}

.fld-ll {
    width: 300px;
}

.fld-cl {
    margin-left: 300px;
}

form.rtl .fld-cl {
    margin-left: 0px;
    margin-right: 300px;
}

.fld-lxl {
    width: 350px;
}

.fld-cxl {
    margin-left: 350px;
}

form.rtl .fld-cxl {
    margin-left: 0px;
    margin-right: 350px;
}

.fld-lxxl {
    width: 400px;
}

.fld-cxxl {
    margin-left: 400px;
}

form.rtl .fld-cxxl {
    margin-left: 0px;
    margin-right: 400px;
}

.langindi2 {
    font-size: 13px;
}

.fld-v {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .fld-v > .fld-c {
        margin-left: 0px;
        margin-right: 0px;
    }

/*--------------- Styles for stack layout ---------------*/
div.col-xxs {
    width: 100px;
}

div.col-xs {
    width: 150px;
}

div.col-s {
    width: 200px;
}

div.col-m {
    width: 250px;
}

div.col-xm {
    width: 300px;
}

div.col-l {
    width: 350px;
}

div.col-xl {
    width: 400px;
}

div.col-xxl {
    width: 450px;
}

div.stack-phor {
    margin: 0px 9px;
}

div.stack-pout-v {
    margin: 9px;
}

div.stack-pout-h {
    margin: 0px 9px 9px 9px;
}

    div.stack-pout-h > * {
        margin-top: 9px;
        padding-top: 0.1px;
    }

div.stack-v > div > span, div.stack-h > div > span, div.cell-w > span,
div.stack-v > div > label, div.stack-h > div > label, div.cell-w > label,
div.stack-v .label, div.stack-h .label, div.stack-v .labelH, div.stack-h .labelH,
div.stack-v .checkBox, div.stack-h .checkBox {
    display: block;
    height: 24px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

div.stack-v > .cell-pv, div.stack-v > .cell-pv1,
div.stack-v > .cell-pv2 {
    /*padding-top: 0.1px;*/
}

div.stack-v > .cell-pn > *, div.stack-v > .cell-ph > *,
div.stack-v > .cell-ph1 > *, div.stack-v > .cell-ph2 > * {
    position: relative;
}

div.stack-v > .cell-pv > * {
    margin-top: 3px;
}

div.stack-v > .cell-pv1 > * {
    margin-top: 18px;
}

div.stack-v > .cell-pv2 > * {
    margin-top: 36px;
}

div.stack-h > .cell-pn, div.stack-h > .cell-ph, div.stack-h > .cell-pha,
div.stack-h > .cell-ph1, div.stack-h > .cell-pha1, div.stack-h > .cell-ph2, div.stack-h > .cell-pha2 {
    float: left;
}

div.stack-h.rtl > .cell-pn, div.stack-h.rtl > .cell-ph, div.stack-h.rtl > .cell-pha,
div.stack-h.rtl > .cell-ph1, div.stack-h.rtl > .cell-pha1,
div.stack-h.rtl > .cell-ph2, div.stack-h.rtl > .cell-pha2 {
    float: right;
}

div.stack-h > .cell-pb > * {
    margin-bottom: 3px;
}

div.stack-h > .cell-pha > *, div.stack-h > .cell-ph {
    margin-right: 6px;
}

div.stack-h > .cell-pha1 > *, div.stack-h > .cell-ph1 {
    margin-right: 18px;
}

div.stack-h > .cell-pha2 > *, div.stack-h > .cell-ph2 {
    margin-right: 36px;
}

div.stack-h .auto-size, div.stack-v .auto-size {
    width: 100%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.border-box {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.stack-hidden {
    position: absolute;
    left: 0px;
    top: 0px;
}

.groupBox-hidden {
    display: none;
}

/*--------------- Styles to show the control notes ---------------*/
.note-m {
    margin-left: 10px;
}

.req-l {
    float: left;
    padding-top: 6px;
}

.req-r {
    float: right;
    padding-top: 6px;
}

    .req-l:before, .req-r:before {
        content: "*";
        font-size: 15px;
        opacity: 1;
    }

.req-lh {
    color: #e51c23;
}

.err-l, .war-l, .inf-l {
    float: left;
    padding-top: 4px;
    margin-left: -6px;
    font-family: "FontAwesome" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    position: relative;
    /*opacity: 0.8; */
    text-align: left;
    vertical-align: middle;
    overflow: hidden;
    direction: ltr;
    font-size: 15px;
}

    .err-l:before {
        content: url(Images/error.gif);
        content: "\e997";
        color: #dc3545;
    }

    .war-l:before {
        content: url(Images/warning.gif);
        content: "\e99a";
        color: #ffc109;
    }

    .war-l:after {
        content: "\e99b";
        position: absolute;
        top: 4px;
        left: 0;
        color: black;
    }

    .inf-l:before {
        content: url(Images/info.gif);
        content: "\e998";
        color: #28a745;
    }

    .inf-l::after {
        content: "\e999";
        position: absolute;
        top: 4px;
        left: 0;
        color: white;
    }

/*--------------- Styles for render icons using css sprites ---------------*/
.sprite-icon [class^=main-], .sprite-icon [class*=" main-"], .sprite-icon [class^=control-], .sprite-icon [class*=" control-"], .sprite-icon [class^=text-], .sprite-icon [class*=" text-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: "FontAwesome" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.sprite-icon {
    display: inline-block;
    position: relative;
    text-align: left;
    vertical-align: middle;
    overflow: hidden;
    direction: ltr;
}

    .sprite-icon svg {
        width: 100%;
        height: 100%;
    }

.main-icon {
    height: 18px;
    width: 16px;
    font-size: 16px;
}

.toolsBtn[data-cmd=favorites] .main-FavoritesGray {
    color: rgba(0, 0, 0, 0.7);
}

.toolBtnPushed .main-Favorites {
    color: #f7ba08;
}

.main-icon[icon^=Favorites] {
    width: 18px;
    height: 17px;
    font-size: 16px;
}

.main-icon[icon^=Star] {
    width: 18px;
    height: 17px;
    font-size: 16px;
}

.main-icon-img {
    position: absolute;
}

/*------------------ Control icons CSS sprites ------------------*/
.control-icon {
    height: 12px;
    width: 12px;
    font-size: 12px;
}

.control-icon-img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.control-icon[icon=Error] {
    width: 14px;
    height: 12px;
    font-size: 16px;
}

.control-icon[icon=Warning] {
    width: 14px;
    height: 12px;
    font-size: 16px;
}

.control-icon[icon=Info] {
    width: 14px;
    height: 12px;
    font-size: 16px;
}

.control-icon[icon=Required] {
    width: 10px;
    height: 10px;
}

.control-icon[icon=MenuCheck] {
    width: 10px;
    height: 10px;
}

.control-icon[icon=MenuUncheck] {
    width: 10px;
    height: 10px;
}

.control-icon[icon=SubMenu] {
    width: 10px;
    height: 10px;
}

.control-icon[icon=ScrollUp] {
    width: 10px;
    height: 10px;
}

.control-icon[icon=ScrollDown] {
    width: 10px;
    height: 10px;
}

.control-EditN {
    opacity: 0.7;
    cursor: pointer;
}

.selector .editBtnCont > div:hover .control-EditN {
    cursor: pointer;
}

.control-EditH {
    cursor: pointer;
}

.dropDown .control-EditH {
    opacity: 1;
}

.control-icon[icon^=DropDown] {
    width: 14px;
    height: 15px;
    margin-top: 2px;
}

.control-DropDownN {
    opacity: 0.7;
    cursor: pointer;
}

.control-DropDownH {
    opacity: 0.87;
    cursor: pointer;
}

.control-DropDownD {
    opacity: 0.26;
    cursor: pointer;
}

.control-icon[icon^=DropMenu] {
    width: 10px;
    height: 17px;
    margin-top: 2px;
    font-size: 16px;
}

.control-DropMenuN {
    opacity: 0.7;
    cursor: pointer;
}

.control-DropMenuH {
    opacity: 0.87;
    cursor: pointer;
}

.control-DropMenuD {
    opacity: 0.26;
    cursor: pointer;
}

.control-EditD {
    opacity: 0.26;
    cursor: pointer;
}

.control-icon[icon^=Edit] {
    width: 17px;
    height: 17px;
    margin-top: 1px;
    padding-top: 1px;
    font-size: 15px;
}

.control-SelectorN {
    opacity: 0.7;
    cursor: pointer;
}

.control-SelectorH {
    opacity: 0.87;
    cursor: pointer;
}

.control-SelectorD {
    opacity: 0.26;
    cursor: pointer;
}

.control-icon[icon^=Selector] {
    width: 17px;
    height: 17px;
    font-size: 16px;
}

.control-icon[icon^=Clear] {
    width: 17px;
    height: 17px;
    margin-top: 2px;
    font-size: 16px;
}

.control-icon[icon=FilterSortDesc] {
    width: 15px;
    height: 12px;
}

.control-icon[icon=FilterSortAsc] {
    width: 15px;
    height: 12px;
}

.control-icon[icon=ArrowDown] {
    width: 10px;
    height: 10px;
}

.control-icon[icon=HiddenItems] {
    width: 10px;
    height: 12px;
}

.control-icon[icon=EditRow] {
    width: 12px;
    height: 12px;
    font-size: 12px;
}

.control-icon[icon=LocalMenu] {
    width: 12px;
    height: 15px;
    font-size: 12px;
}

.control-icon[icon=Search] {
    width: 14px;
    height: 14px;
    font-size: 14px;
}

.control-icon[icon^=Web] {
    width: 17px;
    height: 17px;
    font-size: 16px;
}

.control-icon[icon^=MailSelector] {
    width: 17px;
    height: 17px;
    font-size: 16px;
}

.control-icon[icon=Close] {
    width: 20px;
    height: 18px;
    font-size: 18px;
}

.control-icon[icon=Maximize] {
    width: 20px;
    height: 18px;
    font-size: 18px;
}

.control-icon[icon=NextMonth] {
    width: 16px;
    height: 16px;
    font-size: 16px;
}

.control-icon[icon=PrevMonth] {
    width: 16px;
    height: 16px;
    font-size: 16px;
}

.control-icon[icon=NextYear] {
    width: 16px;
    height: 16px;
    font-size: 16px;
}

.control-icon[icon=PrevYear] {
    width: 16px;
    height: 16px;
    font-size: 16px;
}

/*------------------ Tree control CSS sprites ------------------*/
.tree-icon {
    height: 16px;
    width: 16px;
}

.tree-icon-img {
    position: absolute;
}

    .tree-icon-img:before {
        content: url(Images/sprite_tree5.png);
    }

.tree-NoExpand {
    left: -21px;
    top: 0px;
}

.tree-Expand {
    left: -1px;
    top: -22px;
}

.tree-Collapse {
    left: -21px;
    top: -22px;
}

.tree-ExpandL {
    left: -1px;
    top: -43px;
}

.tree-CollapseL {
    left: -21px;
    top: -43px;
}

.tree-icon[icon=NoExpand] {
    width: 18px;
    height: 18px;
}

.tree-icon[icon=Expand] {
    width: 18px;
    height: 18px;
    opacity: 0.7;
}

.tree-icon[icon=Collapse] {
    width: 18px;
    height: 18px;
    opacity: 0.7;
}

.tree-icon[icon=ExpandL] {
    width: 18px;
    height: 18px;
}

.tree-icon[icon=CollapseL] {
    width: 18px;
    height: 18px;
}

.tree-DashI {
    left: -1px;
    top: -66px;
}

.tree-DashR {
    left: -1px;
    top: -92px;
}

.tree-Dash {
    left: -1px;
    top: -116px;
}

.tree-DashL {
    left: -1px;
    top: -141px;
}

.tree-DashT {
    left: -1px;
    top: -168px;
}

.tree-icon[icon^=Dash] {
    width: 18px;
    height: 18px;
}

.tree-Root {
    left: -1px;
    top: -202px;
}

.tree-RootS {
    left: -22px;
    top: -202px;
}

.tree-Folder {
    left: -3px;
    top: -224px;
}

.tree-FolderD {
    left: -23px;
    top: -224px;
}

.tree-FolderS {
    left: -3px;
    top: -242px;
}

.tree-Leaf {
    left: -23px;
    top: -242px;
}

.tree-LeafD {
    left: -3px;
    top: -260px;
}

.tree-LeafS {
    left: -23px;
    top: -260px;
}

.tree-Editor {
    left: -23px;
    top: -67px;
}

.tree-Component {
    left: -23px;
    top: -89px;
}

.tree-FolderPublish {
    left: -2px;
    top: -278px;
}

.tree-FolderUnPublish {
    left: -23px;
    top: -278px;
}

.tree-LeafPublish {
    left: -2px;
    top: -296px;
}

.tree-LeafUnPublish {
    left: -23px;
    top: -296px;
}

.tree-Deleted {
    left: -2px;
    top: -315px;
}

.tree-BoxSend {
    left: -22px;
    top: -315px;
}

.tree-BoxMail {
    left: -2px;
    top: -337px;
}

.tree-BoxIn {
    left: -22px;
    top: -337px;
}

.tree-BoxOut {
    left: -2px;
    top: -358px;
}

.tree-BoxRemove {
    left: -22px;
    top: -358px;
}

.tree-Dac {
    left: -2px;
    top: -377px;
}

.tree-Field {
    left: -22px;
    top: -377px;
}

.tree-Screen {
    left: -2px;
    top: -394px;
}

/*------------------ Text control CSS sprites ------------------*/
.text-icon {
    height: 16px;
    width: 16px;
    font-size: 16px;
}

.text-icon-img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.dashboards-icon svg {
    width: 27px;
    height: 27px;
    margin-right: 1em;
    fill: #007ACC;
    fill: var(--primary-color, #007ACC);
}

/*--------------- Styles for Panel and GroupBox ---------------*/
fieldset {
    padding: 0;
    border: 0;
    margin-left: 0;
    border-top: 1px solid #007ACC;
    border-top: 1px solid var(--primary-color, #007ACC);
}

    fieldset legend {
        color: #007ACC;
        color: var(--primary-color, #007ACC);
        text-align: left;
        padding: 3px 6px 0px 0px;
        height: 24px;
        text-transform: uppercase;
    }

form.rtl fieldset legend {
    padding: 3px 0px 0px 6px;
}

.ordinary_link {
    color: #007ACC;
    color: var(--primary-color, #007ACC);
    text-decoration: none;
}

.buttonPanel .stack-h {
    margin-right: 0px;
}

.buttonPanel[style*="float:left"] .stack-h {
    margin-left: 0px;
}

.buttonPanel div.stack-pout-h > * {
    padding-top: 0px;
}

.groupBox div.tr {
    display: table;
    border-collapse: collapse;
    font-size: 0;
    height: 5px;
    width: 100%;
}

    .groupBox div.tr > div {
        display: table-cell;
    }

.groupBox .stub {
    font-size: 0;
    width: 5px;
}

.groupBox .caption {
    color: #007ACC;
    color: var(--primary-color, #007ACC);
    padding: 0px 2px 0px 3px;
    white-space: nowrap;
    width: 5px;
}

.groupBox .content {
    font-size: 11px;
}

.groupBox div.tr > div.l-top {
    width: 5px;
    background-repeat: no-repeat;
    background-position: left 5px;
    background-image: url(Images/GroupBox/leftTop.gif);
}

.groupBox div.tr > div.top {
    background-repeat: repeat-x;
    background-position: left 5px;
    background-image: url(Images/GroupBox/linePoint.gif);
}

.groupBox div.tr > div.r-top {
    background-repeat: no-repeat;
    background-position: right 5px;
    background-image: url(Images/GroupBox/rightTop.gif);
    width: 5px;
}

.groupBox div.tr > div.left {
    background-repeat: repeat-y;
    background-position: left top;
    background-image: url(Images/GroupBox/linePoint.gif);
    width: 5px;
}

.groupBox div.tr > div.right {
    background-repeat: repeat-y;
    background-position: right top;
    background-image: url(Images/GroupBox/linePoint.gif);
    width: 5px;
}

.groupBox div.tr > div.l-bottom {
    background-repeat: no-repeat;
    background-position: left bottom;
    background-image: url(Images/GroupBox/leftBottom.gif);
    width: 5px;
}

.groupBox div.tr > div.bottom {
    background-repeat: repeat-x;
    background-position: left bottom;
    background-image: url(Images/GroupBox/linePoint.gif);
}

.groupBox div.tr > div.r-bottom {
    background-repeat: no-repeat;
    background-position: right bottom;
    background-image: url(Images/GroupBox/rightBottom.gif);
    width: 5px;
}

.groupBox .line {
    height: 28px;
}

.groupBox .line-top {
    background-repeat: repeat-x;
    background-position: left 6px;
    background-image: url(Images/GroupBox/linePoint.gif);
    width: 100%;
}

.groupBox .line-caption {
    color: #007ACC;
    color: var(--primary-color, #007ACC);
    font-size: 11px;
    padding-right: 3px;
    white-space: nowrap;
}

/*--------------- Styles for base controls ---------------*/
.labelH {
    overflow: hidden;
    color: rgba(0, 0, 0, 0.64);
}

.labelNoWrap {
    white-space: nowrap;
}

.labelInfo {
    color: rgba(0, 0, 0, 0.64);
    overflow: hidden;
}

.labelB {
    color: RGBA(0, 0, 0, 0.87);
}

.checkBox {
    white-space: nowrap;
    padding-right: 5px;
    display: inline-block;
}

    .checkBox label {
        display: inline-block;
        overflow: hidden;
    }

qp-check-box .FormWarn {
    display: block;
    height: 21px;
    box-sizing: border-box;
    margin-left: -2px;
    padding-left: 2px;
}

form.rtl .checkBox {
    padding-right: 0px;
}

.splitterVert {
    border-left: 1px solid #D2D4D7;
    border-right: 1px solid #D2D4D7;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.transparent .splitterVert, .transparent .splitterH, .transparent .splitterHor {
    border-width: 0px;
    background-color: transparent;
}

.splitterH {
    border-left: 1px solid #D2D4D7;
    border-right: 1px solid #D2D4D7;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.splitterFrame {
    background-color: #FFFFFF;
}

.splitterHF {
    background-color: #FFFFFF;
}

.splitterA {
    background-color: #D2D4D7;
}

.splitterHor {
    border-top: 1px solid #D2D4D7;
    background-color: #F5F7F8;
    background-color: var(--background-color, #F5F7F8);
    font-size: 0;
}

.splitterLC, .splitterTC, .splitterRC, .splitterBC {
    padding: 0px;
    vertical-align: top;
}

.imageUploader {
    display: table;
}

    .imageUploader .linksDiv {
        padding-bottom: 4px;
        text-align: left;
    }

    .imageUploader .textDiv {
        padding-top: 4px;
        /*text-align: left;*/
        position: absolute;
        left: 70px;
        right: 70px;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .imageUploader .navLink {
        float: right;
        margin-left: 7px;
    }

.borderTop {
    border-top: #D2D4D7 1px solid;
}

.borderBottom {
    border-bottom: #D2D4D7 1px solid;
}

.borderLeft {
    border-left: #D2D4D7 1px solid;
}

.borderRight {
    border-right: #D2D4D7 1px solid;
}

body .size-xxs {
    width: 40px;
}

body .size-xs {
    width: 70px;
}

body .size-s {
    width: 100px;
}

body .size-sm {
    width: 150px;
}

body .size-m {
    width: 200px;
}

body .size-xm {
    width: 250px;
}

body .size-l {
    width: 300px;
}

body .size-xl {
    width: 350px;
}

body .size-xxl {
    width: 400px;
}

/*--------------- Styles for editor controls ---------------*/
.editor {
    border: #D2D4D7 1px solid;
    padding: 3px 6px;
    margin-bottom: 0px;
    margin-top: 0px;
    box-sizing: border-box;
    height: 24px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

    .editor[type=color] {
        padding: 0;
        background-color: white;
        border: 1px solid #D2D4D7;
    }

        .editor[type=color]:disabled {
            opacity: 0.5;
            filter: grayscale(1);
        }

a.editor {
    display: inline-block;
    height: 24px;
}

textarea.editor.auto-size {
    resize: none;
}

.complexEditor {
    border: #D2D4D7 1px solid;
}

.textEditLabel, .textEditLabel.ReadOnly {
    background-color: Transparent !important;
    border-width: 0px;
}

.editor:focus, .dropDown.focus, .selector.focus .controlCont, .editor.focus {
    border: 1px solid #007ACC;
    border: 1px solid var(--primary-color, #007ACC);
    box-shadow: 0px 0px 2px 0px #007ACC;
    box-shadow: 0px 0px 2px 0px var(--primary-color, #007ACC);
}

.ReadOnly.editor:focus, .ReadOnly.dropDown.focus, .ReadOnly.selector.focus .controlCont,
input[readonly]:focus, textarea[readonly]:focus {
    border-width: 1px;
    box-shadow: 0px 0px 0px 0px transparent;
    -webkit-box-shadow: 0px 0px 0px 0px transparent;
    border-bottom-color: #D2D4D7;
}

button:focus {
    border: 1px solid #007ACC;
    border: 1px solid var(--primary-color, #007ACC);
}

input[type=checkbox]:focus {
    border: 1px solid #007ACC;
    border: 1px solid var(--primary-color, #007ACC);
    box-shadow: 0px 0px 4px 0px #007ACC;
    box-shadow: 0px 0px 4px 0px var(--primary-color, #007ACC);
}

.selector {
    height: 24px;
    background-color: transparent;
    position: relative;
}

    .selector .controlCont {
        border: #D2D4D7 1px solid;
        height: 100%;
        position: relative;
        overflow: hidden;
        background-color: #FFFFFF;
        box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
    }

    .selector[edit] .controlCont {
        margin-right: 0px;
    }

    .selector input, .selector a, .dropDown input {
        width: 100%;
        height: 100% !important;
        padding: 0px 4px 0px 6px;
        border-width: 0px !important;
        box-shadow: none !important;
        background-color: transparent;
    }

    .selector .editBtnCont {
        position: absolute;
        top: 0px;
        right: -29px;
        padding-left: 5px;
    }

        .selector .editBtnCont > div {
            border: 1px solid transparent;
            background-color: transparent;
            height: 22px;
            width: 24px;
            text-align: center;
        }

            .selector .editBtnCont > div:hover {
                border: 1px solid #007ACC;
                border: 1px solid var(--primary-color, #007ACC);
                background-color: #007ACC;
                background-color: var(--primary-color, #007ACC);
                height: 22px;
                width: 24px;
                text-align: center;
                color: #FFFFFF;
            }

    .selector.multi {
        height: auto;
    }

        .selector.multi input {
            float: left;
            height: 22px !important;
            width: 30px;
        }

        .selector.multi .editorWrap {
            white-space: normal;
            overflow: hidden;
        }

        .selector.multi div[class*=ClearN]:hover {
            opacity: 1;
        }

        .selector.multi .selItem {
            cursor: default;
            float: left;
            display: inline-block;
            height: 22px;
            white-space: nowrap;
            background-color: #F5F7F8;
            background-color: var(--background-color, #F5F7F8);
            /*border: 1px solid #D9D9D9;*/
            margin-right: 3px;
        }

        .selector.multi .selItemText {
            display: inline-block;
            float: left;
            padding: 3px 6px;
            height: 22px;
            max-width: 325px;
            overflow: hidden;
            text-overflow: ellipsis;
        }

.selDropTable {
    border: #D2D4D7 1px Solid;
    background-color: #FFFFFF;
    box-shadow: 3px 3px 4px rgba(115, 115, 115, 0.7);
}

@media screen and (max-width: 400px) {
    .selDropTable table {
        table-layout: fixed;
        width: 98vw;
    }
}

.selDropItem {
    padding: 6px 8px;
    vertical-align: middle;
    text-align: left;
    white-space: nowrap;
    cursor: default;
}

    .selDropItem.selected {
        color: white;
        background-color: #007ACC;
        background-color: var(--primary-color, #007ACC);
    }

        .selDropItem.selected .searchTextMark {
            color: #000000;
        }

.selDropLinks {
    overflow: hidden;
    padding: 4px;
    border-top: #D2D4D7 1px Solid;
    background-color: #F5F7F8;
    background-color: var(--background-color, #F5F7F8);
}

.selDropLink {
    margin-left: 8px;
    float: right;
}

    .selDropLink[enabled=false] {
        text-decoration: none;
        color: black;
        cursor: default;
    }

input.Disabled, a.Disabled, div.Disabled, table.Disabled, .Disabled.selector .controlCont, .editor.Disabled,
input.Disabled:focus, a.Disabled:focus, div.Disabled:focus, .Disabled.selector.focus .controlCont, .editor.Disabled:focus,
input[enabled=false], textarea[enabled=false], a[enabled=false] {
    background-color: transparent !important;
    box-shadow: none !important;
    border-color: transparent;
    border-bottom-color: #E0E4E8;
    border-bottom-style: dotted;
    border-width: 1px;
}

a.Disabled {
    text-decoration: none;
}

.selector.Disabled, .selector.Disabled.focus {
    border-width: 0px;
}

.ReadOnly, .ReadOnly .controlCont, input.editor[readonly], textarea.editor[readonly] {
    background-color: #F5F7F8 !important;
    border-top-color: transparent !important;
    border-left-color: transparent !important;
    border-right-color: transparent !important;
    border-width: 1px;
}

textarea.ReadOnly {
    border-color: #D2D4D7 !important;
}

/*--------------- Styles for the drop-down controls ---------------*/
.dropDown {
    background-color: #FFFFFF;
    height: 24px;
    position: relative;
    cursor: default;
    border: #D2D4D7 1px solid;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

    .dropDown .center:before, .selector .center:before {
        content: "";
        display: inline-block;
        height: 100%;
        vertical-align: middle;
    }

    .dropDown .text {
        vertical-align: middle;
        padding: 0px 6px 0px 6px;
        display: none;
    }

    .dropDown input[invisible] {
        position: absolute;
        top: -40px;
        background-color: transparent;
    }

        .dropDown input[invisible] + span + span.text {
            display: inline;
        }

    .dropDown .editorCont, .selector .editorCont {
        position: relative;
        overflow: hidden;
        margin-right: 18px;
        height: 100%;
    }

    .dropDown.ReadOnly .editorCont, .selector.ReadOnly .editorCont {
        position: relative;
        overflow: hidden;
        height: 100%;
    }

.selector.ReadOnly .editorCont {
    margin-right: 0px;
}

.dropDown.ReadOnly .buttonsCont, .selector.ReadOnly .buttonsCont {
    background-color: #F5F7F8;
    background-color: var(--background-color, #F5F7F8);
}

.dropDown[buttons="0"] .editorCont {
    margin-right: 0px;
}

.dropDown[buttons="2"] .editorCont {
    margin-right: 32px;
}

.dropDown[buttons="3"] .editorCont {
    margin-right: 48px;
}

.dropDown .editorWrap, .selector .editorWrap {
    height: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropDown .buttonsCont, .selector .buttonsCont {
    position: absolute;
    top: 0px;
    right: 1px;
    height: 100%;
}

.ddTable {
    border: #D2D4D7 1px Solid;
    background-color: White;
    box-shadow: 3px 3px 4px rgba(115, 115, 115, 0.7);
    -webkit-box-shadow: 4px 4px 6px rgba(115, 115, 115, 0.7);
    -moz-box-shadow: 4px 4px 6px rgba(115, 115, 115, 0.7);
}

.ddItem {
    padding: 2px 4px;
    vertical-align: middle;
    text-align: left;
    white-space: nowrap;
    cursor: default;
}

.ddSelection {
    background-color: #007ACC;
    background-color: var(--primary-color, #007ACC);
    color: #FFFFFF;
}

.ddTable .searchCont {
    position: relative;
    overflow: hidden;
    border: #D2D4D7 1px solid;
    margin: 2px;
    min-width: 150px;
}

.ddTable .searchWrap {
    margin-right: 16px;
}

    .ddTable .searchWrap input {
        border-width: 0px;
        margin: 0px;
        padding: 2px;
        width: 100%;
        box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
    }

.ddTable .searchIcon {
    position: absolute;
    top: 0px;
    right: 0px;
}

/*--------------- CurrencyRate & WikiEdit control styles ---------------*/
.rateEditor {
    position: relative;
    overflow: hidden;
    outline: none;
}

    .rateEditor .selector {
        width: 100%;
    }

    .rateEditor .selWrap {
        margin-right: 185px;
    }

    .rateEditor .btnWrap {
        position: absolute;
        right: 0px;
        top: 0px;
    }

        .rateEditor .btnWrap .Button {
            position: relative;
            float: left;
            margin-left: 4px;
            padding: 3px 2px 3px 2px;
            text-transform: uppercase;
            background-color: transparent;
            border: 1px solid #D2D4D7;
        }

            .rateEditor .btnWrap .Button[id$=curyB] {
                width: 85px;
            }

            .rateEditor .btnWrap .Button[id$=rateB] {
                text-align: left;
                width: 92px;
            }

                .rateEditor .btnWrap .Button[id$=rateB] div[id$=im] {
                    position: absolute;
                    right: 0px;
                    top: 2px;
                }

.wikiEdit {
    outline-style: none;
}

.wikiEditC {
    border: 1px solid RGBA(0, 0, 0, 0.12);
    border-top-width: 0px;
}

.wikiEdit textarea {
    border-width: 0;
    margin: 0;
    padding: 0;
}

/*--------------- PXButtonEdit control styles ---------------*/
.ButtonE {
    border-left: 1px solid #007ACC;
    border-left: 1px solid var(--primary-color, #007ACC);
    font-size: 11px;
    background-image: url(Images/tb_gradient.gif);
    background-repeat: repeat-x;
    background-position: left bottom;
    background-color: #9997B5;
    padding: 2px;
    cursor: default;
}

.ButtonEH {
    background-color: #B5D7EF;
    background-color: var(--highlight-color, #B5D7EF);
    background-image: none;
}

.ButtonEP {
    background-color: LightSalmon;
    background-image: none;
}

.ButtonED {
    color: RGBA(0, 0, 0, 0.26);
}

/*--------------- PXSearchBox control styles ------------*/
.SearchBox {
    border: #D2D4D7 solid 1px;
}

    .SearchBox table {
        height: 24px;
    }

    .SearchBox input {
        border-style: none;
        border-width: 0;
        color: RGBA(0, 0, 0, 0.26);
        width: 100%;
    }

.SearchBoxE, .SearchBoxE2 {
    padding-left: 6px;
    overflow: hidden;
    background-color: #FFFFFF;
}

    .SearchBoxE input {
        font-style: italic;
        font-weight: 700;
    }

    .SearchBoxE2 input {
        color: RGBA(0, 0, 0, 0.87);
    }

.SearchBoxB {
    padding: 0px 4px;
    cursor: pointer;
    background-color: #E0E4E8;
    color: RGBA(0, 0, 0, 0.87);
    vertical-align: middle;
    min-width: 40px;
    text-align: center;
}

    .SearchBoxB:hover {
        background-color: #007ACC;
        background-color: var(--primary-color, #007ACC);
        color: RGBA(255, 255, 255, 0.87);
    }

form.rtl .SearchBoxB {
    border-left: none;
}

.ddSearch {
    border: #D2D4D7 1px Solid;
    background-color: White;
    box-shadow: 3px 3px 4px rgba(115, 115, 115, 0.7);
    -webkit-box-shadow: 4px 4px 6px rgba(115, 115, 115, 0.7);
    -moz-box-shadow: 4px 4px 6px rgba(115, 115, 115, 0.7);
    padding: 0px 2px;
}

    .ddSearch .caption {
        color: rgba(0, 0, 0, 0.64);
        font-size: 11px;
        text-align: right;
        font-style: italic;
        padding-right: 2px;
    }

.ddSearchItem {
    padding: 5px;
    vertical-align: middle;
    text-align: left;
    white-space: nowrap;
    cursor: default;
}

    .ddSearchItem[data-group] {
        border-top: #D2D4D7 1px Solid;
        padding-top: 4px;
    }

.ddSearchSelItem {
    background-color: #007ACC;
    background-color: var(--primary-color, #007ACC);
    color: #FFFFFF;
}

.ddSearchItem .note {
    font-size: 11px;
    padding-left: 24px;
    opacity: 0.7;
}

/*--------------- PXButton control styles ---------------*/
.Button {
    font-weight: 400;
    background-color: #D2D4D7;
    padding: 2px 6px 3px 6px;
    border: 1px solid #D2D4D7;
    height: 24px;
    min-width: 60px;
    vertical-align: middle;
    opacity: 0.87;
    white-space: nowrap;
    cursor: pointer;
    overflow: hidden;
    text-transform: uppercase;
}

.ButtonT {
    font-weight: 700;
    background-color: Transparent;
    border: none;
    height: 28px;
    min-width: 60px;
    vertical-align: middle;
    opacity: 0.87;
    white-space: nowrap;
    overflow: hidden;
}

.Button.image {
    min-width: 36px;
}

.Button.toolBox {
    width: 200px;
    height: 32px;
    border: none;
}

    .Button.toolBox:hover {
        background-color: #007ACC;
        background-color: var(--primary-color, #007ACC);
        color: #FFFFFF;
    }

    .Button.toolBox td {
        padding-left: 10px;
    }

    .Button.toolBox .sprite-icon {
        margin-right: 10px;
    }

.ButtonH {
    opacity: 0.87;
    background-color: #007ACC !important;
    background-color: var(--primary-color, #007ACC) !important;
    border-color: #007ACC !important;
    border-color: var(--primary-color, #007ACC) !important;
    color: #FFFFFF !important;
}

.ButtonP {
    opacity: 1;
    background-color: #007ACC !important;
    background-color: var(--primary-color, #007ACC) !important;
    border-color: #007ACC !important;
    border-color: var(--primary-color, #007ACC) !important;
    color: #FFFFFF !important;
}

.ButtonD {
    color: #333333;
    opacity: 0.26;
}

.ButtonDD {
    opacity: 1;
}

.ButtonDN {
    padding-left: 2px;
    padding-right: 2px;
    opacity: 0.7;
}

.ButtonDH {
    border-left: Solid 1px RGBA(0, 0, 0, 0.12);
    padding-left: 1px;
    padding-right: 2px;
    opacity: 0.7;
}

.ButtonF {
    font-weight: normal;
    background-color: Transparent;
    vertical-align: middle;
    padding: 0px 2px;
    border-width: 0px;
    cursor: pointer;
    opacity: 0.7;
}

.ButtonHF {
    opacity: 1;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.ButtonPF {
    opacity: 1;
}

.ButtonLink {
    background-color: Transparent;
    text-shadow: none !important;
    border: none;
    padding: 2px 2px 3px 2px;
    height: 20px;
    vertical-align: middle;
    opacity: 0.87;
    white-space: nowrap;
    cursor: pointer;
    color: #007ACC;
    color: var(--primary-color, #007ACC);
    box-shadow: 0px 0px 0px #F5F7F8 !important;
    font-size: 12px;
}

    .ButtonLink a {
        background-color: Transparent;
        text-shadow: 0px !important;
        border: none;
        padding: 2px 2px 3px 2px;
        height: 20px;
        vertical-align: middle;
        opacity: 0.87;
        white-space: nowrap;
        cursor: pointer;
        color: #007ACC;
        color: var(--primary-color, #007ACC);
        box-shadow: 0px 0px 0px #F5F7F8;
        font-size: 12px;
        text-decoration: underline !important;
    }

.ButtonLinkHover {
    background-color: Transparent;
    text-shadow: 0px !important;
    border: none;
    padding: 2px 2px 3px 2px;
    height: 20px;
    vertical-align: middle;
    opacity: 0.87;
    white-space: nowrap;
    cursor: pointer;
    color: #007ACC;
    color: var(--primary-color, #007ACC);
    box-shadow: 0px 0px 0px #F5F7F8;
    font-size: 12px;
    text-decoration: underline !important;
}

/*--------------- Drop-down calendar styles ---------------*/
.calendar {
    background-color: #FFFFFF;
    border: 1px solid #D2D4D7;
    box-shadow: 3px 3px 4px rgba(115, 115, 115, 0.7);
    -moz-box-shadow: 3px 3px 4px rgba(115, 115, 115, 0.7);
    -webkit-box-shadow: 3px 3px 4px rgba(115, 115, 115, 0.7);
}

.calendarMT {
    font-size: 12px;
    font-weight: bold;
    border-bottom: #D2D4D7 1px Solid;
    background-color: #D2D4D7;
    padding: 4px 6px;
}

    .calendarMT select {
        margin: 0;
        padding: 0;
        width: auto;
    }

        .calendarMT select + select {
            margin-left: 8px;
        }

.calendarNP {
    width: 16px;
}

.calendarF {
    background-color: #F5F7F8;
    background-color: var(--background-color, #F5F7F8);
    padding: 5px 12px;
}

.calendarD {
    text-align: right;
    vertical-align: middle;
    padding: 8px 12px;
}

    .calendarD:hover {
        background-color: #007ACC;
        background-color: var(--primary-color, #007ACC);
        color: #FFFFFF;
    }

.calendar table[id$=customItems] .calendarD {
    text-align: left;
    cursor: pointer;
    padding: 3px 10px;
}

.calendarWE {
    color: #007ACC;
    color: var(--primary-color, #007ACC);
}

.calendarTD {
    outline: 1px solid #007ACC;
    outline: 1px solid var(--primary-color, #007ACC);
    padding: 4px 7px;
}

.calendarOMD {
    color: RGBA(0, 0, 0, 0.26);
}

.calendarSD {
    background-color: #D2D4D7;
}

.calendarDH {
    text-align: center;
    color: rgba(0, 0, 0, 0.64);
    background-color: #F5F7F8;
    background-color: var(--background-color, #F5F7F8);
    padding: 6px 3px;
}

.calendarWN, .calendarWN:hover {
    color: rgba(0, 0, 0, 0.64);
    background-color: #F5F7F8;
    background-color: var(--background-color, #F5F7F8);
    font-size: 9px;
    padding: 8px 10px;
}

/*--------------- Styles for PXToolBar control ---------------*/
.toolBar {
    background-color: #F5F7F8;
    background-color: var(--background-color, #F5F7F8);
}

.toolBarT {
    background-color: transparent;
}

.toolBarBB {
    border-bottom: #E0E4E8 1px solid;
}

.toolBarBT {
    border-top: #E0E4E8 1px solid;
}

.toolBarS {
    border: #E0E4E8 1px solid;
}

ul.toolsList {
    list-style: none outside none;
    margin: 0px;
    padding: 0px;
    border-spacing: 0px;
}

    ul.toolsList > li {
        display: inline-block;
        vertical-align: middle;
        margin: 0px;
    }

ul.asTable {
    display: table;
    white-space: nowrap;
}

    ul.asTable > li {
        display: table-cell;
    }

.toolsBtn {
    display: table;
}

div.toolsBtn:hover {
    text-decoration: none;
}

.toolsBtn div[data-type] {
    display: table-cell;
    white-space: nowrap;
    vertical-align: middle;
}

.toolBar .toolsBtn {
    background-color: inherit;
    margin: 3px 4px;
    color: #000000;
    font-weight: 400;
    white-space: nowrap;
    text-transform: uppercase;
}

    .toolBar .toolsBtn:hover {
        background-color: #D2D4D7;
        color: #FFFFFF;
    }

        .toolBar .toolsBtn:hover[enabled=false] {
            background-color: inherit;
            color: #000000;
        }

.toolLabel {
    padding: 5px;
    white-space: nowrap;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.64);
}

.toolBarSep {
    /*background: url(Images/tb_separator.gif) no-repeat 3px top;*/
    width: 0px;
    height: 20px;
}

.toolBtnNormal, .toolBtnPushed, .toolBtnDropN, .toolBtnDropP {
    padding: 5px 10px;
    height: 20px;
    line-height: 20px;
    text-transform: uppercase;
    cursor: default;
    text-align: center;
    cursor: pointer;
}

.toolsBtn[data-drop] div[data-type=button] {
    padding-right: 4px;
}

.toolBtnDisabled {
    padding: 5px 10px;
    height: 20px;
    line-height: 20px;
    text-transform: uppercase;
    cursor: default;
    opacity: 0.26;
    text-align: center;
    cursor: pointer;
}

.toolBar .toolsBtn.connotation-success {
    background-color: #28a745;
    color: #fff;
}

    .toolBar .toolsBtn.connotation-success:hover .toolBtnNormal {
        background-color: rgba(0, 0, 0, 0.1);
    }

.toolsBtn:hover .toolBtnNormal {
    color: #FFFFFF;
    fill: #fff;
    background-color: #007ACC;
    background-color: var(--primary-color, #007ACC);
}

.toolBtnDisabled {
    opacity: 0.26;
    cursor: default;
}

.toolBtnPushed {
    color: #FFFFFF;
    background-color: #D2D4D7;
}

.toolBtnDD {
    color: #FFFFFF;
    background-color: #007ACC;
    background-color: var(--primary-color, #007ACC);
    padding: 5px 10px;
    height: 20px;
    line-height: 20px;
}

.toolBtnDropN, .toolBtnDropP {
    padding-right: 4px !important;
    padding-left: 2px !important;
}

.toolBtnDropP {
    margin: 3px 0px;
    color: #FFFFFF;
    background-color: #007ACC;
    background-color: var(--primary-color, #007ACC);
}

.toolsBtn:hover .toolBtnNormal + .toolBtnDropN {
    background-color: #007ACC;
    background-color: var(--primary-color, #007ACC);
    color: #FFFFFF;
}

.toolsBtn[enabled=false] .toolBtnDropN {
    opacity: 0.5;
}

.toolBar.narrow .toolBtnNormal, .toolBar.narrow .toolBtnDisabled, .toolBar.narrow .toolBtnPushed,
.toolBar.narrow .toolBtnDD, .toolBar.narrow .toolBtnDropN, .toolBar.narrow .toolBtnDropP {
    padding: 4px 9px;
}

.ColorToolBarMenu {
    border: #D2D4D7 1px solid;
    background-color: #F5F7F8;
    background-color: var(--background-color, #F5F7F8);
}

/*--------------- Styles for the DataSource and Path ToolBar -------------------*/
.dataSource {
    vertical-align: top;
}

.toolBarDS {
    background-color: inherit;
    margin-right: 11px;
    padding-bottom: 5px;
}

    .toolBarDS .toolsBtn {
        font-size: 14px;
    }

    .toolBarDS .toolBarSep {
        height: 18px;
        background: none;
        width: 0px;
    }

.selectorPanel .toolBarDS {
    margin-left: 3px;
}

.toolBarPath {
    background-color: transparent;
}

    .toolBarPath .toolsBtn {
        margin: 3px;
        font-size: 19px;
        font-weight: normal;
    }

    .toolBarPath .toolBtnNormal, .toolBarPath .toolBtnDisabled,
    .toolBarPath .toolBtnPushed, .toolBarPath .toolBtnDD,
    .toolBarPath .toolBtnDropN, .toolBarPath .toolBtnDropP {
        padding: 2px 5px;
        line-height: 24px;
        text-transform: none;
    }

    .toolBarPath .toolsBtn[data-cmd=favorites] .toolBtnPushed {
        background-color: transparent;
    }

.layout-col2 {
    display: table;
    width: 100%;
    height: 100%;
    position: relative;
}

    .layout-col2 .left-col, .layout-col2 .right-col {
        display: table-cell;
        height: 100%;
        vertical-align: top;
    }

    .layout-col2 .left-col {
        width: 100px;
        min-width: 100px;
    }

.process-info .layout-col2 .left-col {
    width: 70px;
    min-width: 70px;
    padding-top: 5px;
    text-align: center;
}

.process-info .layout-col2 .right-col {
    padding-top: 30px;
    padding-bottom: 35px;
}

    .process-info .layout-col2 .right-col button[id$=btnOk] {
        position: absolute;
        bottom: 5px;
        left: 50%;
        transform: translateX(-50%);
    }

.process-info .layout-col2 .header {
    position: absolute;
    top: 10px;
}

.process-info .layout-col2 .content {
    height: 100%;
    overflow: auto;
    margin-left: -20px;
}

.process-info span.completed, .process-info span.not-completed,
.process-info span.in-progress {
    font-size: 16px;
}

.process-info .left-col .completed, .process-info .left-col .not-completed {
    margin-top: 5px;
}

.process-info .completed, .process-info .not-completed {
    display: none;
}

    .process-info.completed .completed {
        display: inline-block;
    }

    .process-info.not-completed .not-completed {
        display: inline-block;
    }

    .process-info.not-completed img.not-completed {
        height: 22px;
    }

    .process-info.completed .in-progress, .process-info.not-completed .in-progress {
        display: none;
    }

.process-info .list-docs {
    padding-top: 5px;
    padding-right: 15px;
}

    .process-info .list-docs .list-item {
        padding: 5px 0px;
    }

        .process-info .list-docs .list-item > div {
            overflow: hidden;
        }

        .process-info .list-docs .list-item .text {
            float: left;
            padding: 5px 0px;
            line-height: 18px;
            display: inline-block;
            width: 90%;
        }

        .process-info .list-docs .list-item .sprite-icon {
            float: left;
            margin-right: 8px;
            margin-top: 7px;
        }

        .process-info .list-docs .list-item .error {
            color: red;
        }

/*--------------- Styles for system ToolBar control ---------------*/
.toolSysTable {
    background-color: #007ACC;
    background-color: var(--primary-color, #007ACC);
    height: 37px;
}

.toolBarSys {
    padding: 7px 7px 0px 7px;
}

.toolBarSys2 {
    padding: 7px 7px 0px 7px;
}

.toolSysNormal, .toolSysDisabled, .toolSysPushed {
    cursor: default;
    height: 18px;
    padding: 6px 15px;
    color: rgba(255, 255, 255, 0.87);
    font-size: 15px;
    text-transform: uppercase;
}

.toolsBtn:hover .toolSysNormal {
    color: RGBA(0, 0, 0, 0.87);
    background-color: #D2D4D7;
    cursor: pointer;
}

.toolSysDisabled {
    color: RGBA(255, 255, 255, 0.8);
}

.toolSysPushed {
    color: rgba(0, 0, 0, 0.87);
    background-color: #F5F7F8;
    cursor: default;
}

.toolBarSys div.toolsBtn:hover[href] {
    color: #DD0000;
    text-decoration: underline;
}

    .toolBarSys div.toolsBtn:hover[href] > * {
        cursor: pointer;
    }

/*--------------- Styles for modules ToolBar control ---------------*/
.toolBarMod {
    background: #F5F7F8;
    min-height: 10px;
    border-bottom: 1px solid #D2D4D7;
}

.toolModNormal, .toolModDisabled, .toolModPushed {
    cursor: default;
    padding: 7px 15px;
    color: rgba(0, 0, 0, 0.64);
    font-size: 13px;
    height: 17px;
}

.toolBarMod .toolBarSep {
    width: 0px;
}

.toolsBtn:hover .toolModNormal {
    color: RGBA(0, 0, 0, 0.87);
    background-color: #D2D4D7;
    cursor: pointer;
}

.toolModDisabled {
    color: RGBA(0, 0, 0, 0.26);
}

.toolModPushed {
    color: rgba(0, 0, 0, 0.87);
    border-bottom: 2px solid #007ACC;
    border-bottom: 2px solid var(--primary-color, #007ACC);
    padding-bottom: 5px;
}

/*--------------- Styles for sub-modules ToolBar control ---------------*/
.toolBarSubMod {
    background-color: #E0E4E8;
}

    .toolBarSubMod.hidden {
        border-top: 1px solid #D2D4D7;
    }

    .toolBarSubMod .toolsList, .toolBarSubMod .toolsBtn {
        width: 100%;
    }

.toolSubModNormal, .toolSubModDisabled, .toolSubModPushed, .toolSubModDD {
    padding: 9px;
    border-left: #D2D4D7 solid 1px;
    border-top: solid 1px #D2D4D7;
    border-bottom: #D2D4D7 solid 1px;
    cursor: default;
    text-align: center;
    opacity: 0.6;
}

.toolsBtn[startGroup="1"] .toolSubModNormal, .toolsBtn[startGroup="1"] .toolSubModPushed {
    border-left-width: 0px;
}

form.rtl .toolsBtn[startGroup="1"] .toolSubModNormal,
form.rtl .toolsBtn[startGroup="1"] .toolSubModPushed {
    border-left-width: 1px;
}

form.rtl .toolsBtn[endGroup="1"] .toolSubModNormal,
form.rtl .toolsBtn[endGroup="1"] .toolSubModPushed {
    border-left-width: 0px;
}

.toolsBtn:hover .toolSubModNormal {
    opacity: 0.87;
    background-color: #007ACC;
    background-color: var(--primary-color, #007ACC);
    border-top: 1px solid #007ACC;
    border-top: 1px solid var(--primary-color, #007ACC);
    cursor: pointer;
}

.toolSubModDisabled {
    color: RGBA(0, 0, 0, 0.26);
}

.toolSubModPushed {
    background-color: White;
    border-bottom-width: 0px;
    border-top: 2px solid #007ACC;
    border-top: 2px solid var(--primary-color, #007ACC);
    padding-bottom: 10px;
    opacity: 1;
}

/*--------------- Styles for the tabed ToolBar control ---------------*/
.toolBarTab {
    background-color: inherit;
}

    .toolBarTab ul.toolsList > li {
        vertical-align: bottom;
    }

    .toolBarTab .toolsBtn {
        background: transparent;
        border-bottom: 1px solid #D2D4D7;
        cursor: default;
        margin: 0px;
        cursor: pointer;
    }

        .toolBarTab .toolsBtn:hover {
            background: #E0E4E8;
            box-shadow: none;
            cursor: pointer;
        }

        .toolBarTab .toolsBtn[pushed], .toolBarTab .toolsBtn[pushed]:hover {
            color: #007ACC;
            color: var(--primary-color, #007ACC);
            border-bottom: 3px solid #007ACC;
            border-bottom: 3px solid var(--primary-color, #007ACC);
        }

        .toolBarTab .toolsBtn[first-tab] {
            border-left-width: 0px !important;
        }

.toolTabNormal, .toolTabDisabled, .toolTabPushed, .toolTabDD {
    padding: 6px 16px;
    text-align: center;
    opacity: 0.5;
    line-height: 24px;
    height: 24px;
    text-transform: uppercase;
}

.toolsBtn:hover .toolTabNormal, .toolTabPushed {
    opacity: 1;
}

.toolsBtn[pushed] .toolTabPushed {
    padding-bottom: 4px;
    opacity: 1;
}

.toolTabDisabled {
    color: RGBA(0, 0, 0, 0.26);
}

.toolBarTab .toolLabel {
    border-bottom: #D2D4D7 solid 1px;
}

.toolBar.tabsInside > div > ul.toolsList, .toolBar.tabsInside > ul.toolsList {
    padding-bottom: 4px;
}

    .toolBar.tabsInside > div > ul.toolsList > li, .toolBar.tabsInside > ul.toolsList > li {
        border-bottom: #D2D4D7 solid 1px;
    }

.toolBarTabWrap {
    overflow: hidden;
}

.GridToolsCell .toolBarTab {
    position: relative;
}

.GridToolsCell > .toolBarTab, .toolBarTabWrap > .toolBarTab {
    margin-bottom: 5px;
    top: 0px;
}

.GridToolsCell[tabsInside] {
    border-left: none 0px !important;
    border-right: none 0px !important;
}

.GridToolsCell[tabsInside], .toolBarTabWrap {
    background-color: #F5F7F8;
    background-color: var(--background-color, #F5F7F8);
}

    #page-caption + div + .phG .GridToolsCell > .toolBarTab,
    #page-caption + div + .phL .GridToolsCell > .toolBarTab, .toolBarTabWrap > .toolBarTab {
        background-color: white;
    }

/*--------------- Styles for the filter ToolBar control ---------------*/
.toolBar.filterTools ul.toolsList > li {
    vertical-align: top;
}

    .toolBar.filterTools ul.toolsList > li:first-child, .toolBar.filterTools ul.toolsList > li:nth-child(2) {
        vertical-align: middle;
    }

.toolBar.filterTools .toolLabel.limit-warn {
    padding: 14px 10px;
}

.toolBar.filterTools .dropDown[type=filterBar] {
    width: 180px;
    margin-right: 5px;
    margin-top: 7px;
}

    .toolBar.filterTools .dropDown[type=filterBar].highlight {
        border: 1px solid #007ACC;
        border: 1px solid var(--primary-color, #007ACC);
        background-color: #B5D7EF;
        background-color: var(--highlight-color, #B5D7EF);
    }

        .toolBar.filterTools .dropDown[type=filterBar].highlight input, .toolBar.filterTools .dropDown[type=filterBar].highlight > div {
            background-color: #B5D7EF;
            background-color: var(--highlight-color, #B5D7EF);
        }

.toolBar.filterTools .toolLabel[data-cmd=dragTip] {
    font-weight: normal;
    font-style: italic;
    border: 1px dashed #D2D4D7;
    margin-left: 5px;
    margin-right: 3px;
}

.toolBar.filters {
    background-color: inherit;
    overflow: hidden;
    position: relative;
}

    .toolBar.filters ul.toolsList > li {
        float: left;
        vertical-align: middle;
    }

    .toolBar.filters .toolsBtn {
        background: transparent;
        margin: 5px;
        border: #D2D4D7 1px solid;
    }

.toolBtnPushed .sprite-icon {
    color: black;
}

.toolBar.filters .toolsBtn.highlight, .toolBar.filterTools .toolsBtn.highlight,
.toolBar.filterTools .toolBtnPushed {
    background-color: #B5D7EF;
    background-color: var(--highlight-color, #B5D7EF);
    border: 1px solid #007ACC;
    border: 1px solid var(--primary-color, #007ACC);
}

.toolBar .toolsBtn.highlight > div[class^=toolBtn] {
    border: none;
}

.toolBar.filterTools .toolsBtn.highlight .toolBtnNormal,
.toolBar.filterTools .toolBtnPushed,
.toolBar.filterTools .toolsBtn.highlight .toolBtnDisabled {
    padding: 4px 9px;
}

.toolBar.filterTools .toolsBtn[data-cmd=more] > div {
    padding: 5px;
    font-weight: bold;
    font-size: 21px;
    vertical-align: top;
}

.toolBar.filters .toolBtnNormal, .toolBar.filters .toolBtnPushed, .toolBar.filters .toolBtnDD {
    padding: 1px 10px !important;
    border: none 0px;
    text-transform: none;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

    .toolBar.filters .toolBtnPushed, .toolBar.filters .toolBtnDD, .toolBar.filters .toolBtnDropP,
    .toolBar.filters .toolBtnPushed + .toolBtnDropN {
        color: black;
        background-color: #D2D4D7;
    }

.toolBar.filters .toolBtnDropN, .toolBar.filters .toolBtnDropP {
    padding: 1px 2px;
}

.SmartPanel.filter-save button.Button {
    min-width: 120px;
}

/*--------------- Styles for PXMenu control ---------------*/
#pageInfoContextMenu {
    position: absolute;
    width: 130px;
    height: 120px;
    left: 0px;
    top: 0px;
    visibility: hidden;
    z-index: 30000;
    box-shadow: 3px 3px 4px rgba(115, 115, 115, 0.7);
    -moz-box-shadow: 4px 4px 6px rgba(115, 115, 115, 0.7);
    -webkit-box-shadow: 4px 4px 6px rgba(115, 115, 115, 0.7);
    border: 1px solid #BBBBBB;
}

.menuIsland {
    background-color: #FFFFFF;
    color: RGBA(0, 0, 0, 0.87);
    border: #D2D4D7 1px solid;
    cursor: pointer;
    box-shadow: 3px 3px 4px rgba(115, 115, 115, 0.7);
    -moz-box-shadow: 4px 4px 6px rgba(115, 115, 115, 0.7);
    -webkit-box-shadow: 4px 4px 6px rgba(115, 115, 115, 0.7);
    padding: 1px 2px;
}

.menuIslandT {
    border-width: 0px;
    background-color: transparent;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    padding: 0px;
}

.menuIslandV {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}

.menuIsland .menuImage {
    margin: 0px 2px 0px 0px;
    border: 0px;
}

.menuIsland img[submenu="1"] {
    float: right !important;
    margin: 2px 2px 0px 0px;
}

.menuIsland div.sprite-icon[submenu="1"] {
    float: right !important;
    margin: 3px 2px 0px 0px;
}

.menuIsland div.sprite-icon[check="1"] {
    margin: 3px 0px 0px 2px;
}

ul.menu div.sprite-icon {
    float: left;
}

ul.menu {
    padding: 0px;
    margin: 0px;
    display: block;
    list-style: none outside none;
    overflow: hidden;
    vertical-align: middle;
}

    ul.menu li {
        float: left;
        display: inline-block;
        white-space: nowrap;
        margin: 1px 0px;
    }

    ul.menu.auto-size li {
        width: 100%;
        box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
    }

    ul.menu li.menuItem, ul.menu li.menuHover, ul.menu li.menuDisabled {
        min-height: 16px;
    }

.menuItem {
    opacity: 0.87;
    padding: 5px 1px 5px 5px;
    font-size: 13px;
}

    .menuItem:hover, .menuItem.active {
        opacity: 1;
        background-color: #007ACC;
        background-color: var(--primary-color, #007ACC);
        border: 1px solid #007ACC;
        border: 1px solid var(--primary-color, #007ACC);
        color: #FFFFFF;
        padding: 4px 0px 4px 4px;
    }

        .menuItem:hover svg, .menuItem.active svg {
            fill: currentColor;
        }

.menuChecked {
    opacity: 1;
    background-color: #007ACC !important;
    background-color: var(--primary-color, #007ACC) !important;
    color: white !important;
}

    .menuChecked svg {
        fill: currentColor !important;
    }

.menuDisabled {
    opacity: 0.26;
    padding: 5px 1px 5px 5px;
    cursor: auto;
    font-size: 13px;
}

.menuTopSelected {
    background-color: #BDBDBD;
    border: RGBA(0, 0, 0, 0.12) 1px solid;
    padding: 4px 0px 4px 5px;
}

.menuSpacer {
    margin-right: 30px;
    margin-left: 25px;
    min-height: 16px;
}

.menuSpacerL {
    margin-right: 30px;
    margin-left: 8px;
    min-height: 16px;
}

/*--------------- Styles for PXTreeView control ---------------*/
.tree {
    font-size: 13px;
    color: RGBA(0, 0, 0, 0.87);
    background-color: White;
    overflow: auto;
    position: relative;
}

form.rtl .tree * {
    background-position: right 0 !important;
}

.tree.autoScroll {
    overflow: hidden;
}

    .tree.autoScroll:hover {
        overflow: auto;
    }

.selectorTree {
    border: #D2D4D7 1px solid;
    overflow: auto;
}

.treeCaption {
    background-color: inherit;
    padding: 4px 6px;
    font-weight: bold;
    background-color: #F5F7F8;
    background-color: var(--background-color, #F5F7F8);
}

.tree .hideBox {
    float: right;
    width: 16px;
    height: 16px;
    text-align: center;
    padding-top: 2px;
    padding-right: 2px;
    background-color: #D2D4D7;
    border: 1px solid #D2D4D7;
}

    .tree .hideBox:hover {
        background-color: #007ACC;
        background-color: var(--primary-color, #007ACC);
        border: 1px solid #007ACC;
        border: 1px solid var(--primary-color, #007ACC);
        color: #FFFFFF;
    }

.tree .tnUL {
    margin: 0;
    padding: 0;
}

    .tree .tnUL .tnLI .tnUL {
        padding-left: 20px;
    }

.tree.noShift .tnUL .tnLI .tnUL {
    padding-left: 2px;
}

form.rtl .tree .tnUL .tnLI .tnUL {
    padding-right: 20px;
    padding-left: 0px;
}

form.rtl .tree.noShift .tnUL .tnLI .tnUL {
    padding-right: 2px;
    padding-left: 0px;
}

.tree .tnLI {
    list-style: none outside none;
}

.tree.menuTree .tnLI.selected:before {
    content: "";
    background-color: #007ACC;
    background-color: var(--primary-color, #007ACC);
    position: absolute;
    margin-top: 5px;
    margin-left: 10px;
    width: 4px;
    height: 18px;
}

.tree.menuTree .tnLI.selected.folder:before {
    width: 0px;
    height: 0px;
}

.tree .tnDiv {
    padding-left: 18px;
    white-space: nowrap;
}

form.rtl .tree .tnDiv {
    padding-right: 18px;
    padding-left: 0px;
}

.tree.noShift .tnDiv {
    padding-left: 24px;
    white-space: nowrap;
}

form.rtl .tree.noShift .tnDiv {
    padding-right: 24px;
    padding-left: 0px;
}

.tree div.sprite-icon[data-type=E] {
    margin-left: -18px;
}

form.rtl .tree div.sprite-icon[data-type=E] {
    margin-right: -18px;
    margin-left: 0px;
}

.tree .tnLines .tnLI, .tree .tnLines .tnFirst .tnUL {
    background-image: url("Images/Tree/lineI.png");
    background-position: 0 0;
    background-repeat: repeat-y;
    margin: 0px;
}

.tree .tnLines .tnLast, .tree .tnLines .tnLast .tnUL {
    background-image: none;
}

.tree .tnLines .tnTop, .tree .tnLines .tnMid, .tree .tnLines .tnBot {
    background-position: 0 0;
    background-repeat: no-repeat;
    min-height: 24px;
}

.tree .tnLines .tnTop {
    background-image: url("Images/Tree/lineTT.png");
}

.tree .tnLines .tnLast .tnTop {
    background-image: url("Images/Tree/lineT.png");
    background-position: 0 center;
}

.tree .tnLines .tnMid {
    background-image: url("Images/Tree/lineM.png");
}

.tree .tnLines .tnBot {
    background-image: url("Images/Tree/lineB.png");
}

.treeNode {
    cursor: Default;
    display: inline-block;
    padding: 4px 2px 4px 1px;
}

.treeHover {
    color: #007ACC;
    color: var(--primary-color, #007ACC);
    text-decoration: underline;
    cursor: pointer;
}

.treeSelected {
    font-weight: 700 !important;
}

.treeDisabled {
    color: RGBA(0, 0, 0, 0.26);
}

.dragover .treeNode {
    background-color: #4E576A;
    color: white !important;
}

.dragover.before .treeNode, .dragover.after .treeNode {
    background-color: transparent;
    color: black !important;
}

.tnDiv.dragover.before {
    border-top: dotted 1px #000000;
    margin-top: -1px;
}

.tnDiv.dragover.after {
    border-bottom: dotted 1px #000000;
    margin-bottom: -1px;
}

.treeFolder0 {
    font-size: 15px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.64) !important;
    cursor: pointer;
}

.treeImage {
    margin-right: 2px;
    margin-left: 2px;
}

.reportViewer {
    border: #D2D4D7 1px solid;
    border-bottom-width: 0px;
}

    .reportViewer .tabContent {
        border-width: 0px;
    }

    .reportViewer .buttonCont {
        padding: 5px;
        display: none;
    }

    .reportViewer .paramCont {
        background-color: #F5F7F8;
        background-color: var(--background-color, #F5F7F8);
    }

    .reportViewer table[id$=gridV] {
        border-width: 0px;
    }

/*--------------- Common grid styles ---------------*/
.GridMain {
    top: 0px;
    left: 0px;
    cursor: default;
}

.GridMainT {
    background-color: inherit;
    cursor: default;
    top: 0px;
    left: 0px;
}

.GridMainA {
    top: 0px;
    left: 0px;
    cursor: default;
}

    .GridMainA .GridRowSelector, .GridMainA .GridHeaderCell td.GridHeader:first-child {
        border-left: 1px solid #D2D4D7;
    }

    .GridMainA .GridHeaderCell .GridHeader {
        border-top: 1px solid #D2D4D7;
    }

    .GridMainA .GridHeaderCell, .GridMainA .GridContentCell {
        border-width: 0px;
    }

.GridMain.Primary {
    border-top: none;
}

.GridMain div[id$=scrollDiv], .GridMainT div[id$=scrollDiv], .GridMainS div[id$=scrollDiv],
.GridMain div[id$=headerDiv], .GridMainT div[id$=headerDiv], .GridMainS div[id$=headerDiv] {
    background-color: #FFFFFF;
}

.GridMain.dragover div[id$=scrollDiv]:after {
    border: 1px solid #D2D4D7;
    background-color: #F5F7F8;
    background-color: var(--background-color, #F5F7F8);
    content: "+";
    font-weight: bold;
    padding: 1px 6px;
    position: absolute;
    top: 45%;
    left: 45%;
    z-index: 1000;
}

.GridContentCell tr.dragover.before .GridRow {
    border-top: solid 1px red;
    padding-top: 5px;
}

.GridContentCell tr.dragover.after .GridRow {
    border-bottom: solid 1px red;
    padding-bottom: 5px;
}

.GridContentCell tr.awaitPaste .GridRow {
    opacity: 0.4;
    background-color: #E0E4E8;
}

.GridContentCell tr.awaitPaste .GridRowSelector {
    opacity: 1;
}

.GridHeaderCell {
    border-top: 1px solid #D2D4D7;
}

    .GridHeaderCell.footer {
        border-top: none 0px;
        border-bottom: 1px solid #D2D4D7;
    }

.GridContentCell {
    border-bottom: 1px solid #D2D4D7;
    position: relative;
}

tr[style*="display: none"] + tr > .GridContentCell, tr[style*="display:none"] + tr > .GridContentCell {
    border-top: 1px solid #D2D4D7;
}

.phG > .GridMain .GridHeaderCell, .phG > .GridMain .GridContentCell,
.phG > .GridMain .GridToolsBottom, .phG > .GridMain .GridToolsCell,
.phL > .GridMain .GridHeaderCell, .phL > .GridMain .GridContentCell,
.phL > .GridMain .GridToolsBottom, .phL > .GridMain .GridToolsCell,
.phF > .GridMain .GridHeaderCell, .phF > .GridMain .GridContentCell,
.phF > .GridMain .GridToolsBottom, .phF > .GridMain .GridToolsCell,
.GridMainS .GridHeaderCell, .GridMainS .GridContentCell,
.SmartPanel .GridMain .GridHeaderCell, .SmartPanelT .GridMain .GridHeaderCell,
.SmartPanel .GridMain .GridContentCell, .SmartPanelT .GridMain .GridContentCell {
    border-left: solid 1px #D2D4D7;
    border-right: solid 1px #D2D4D7;
}

.gridDataT tr:last-child > td, .gridDataT[data-newRow] tr:nth-last-child(2) > td,
.RowNavigator[data-last] td {
    border-bottom: 1px solid #D2D4D7;
}

.gridDataT[data-newRow] tr:last-child > td {
    border-bottom: none;
}

.tabContent .GridMain {
    border-top-width: 0px;
}

.dropDown[type=filterBar] {
    width: 200px;
    margin: 2px 2px 2px 10px;
    height: 26px;
}

.toolBarDS .dropDown[type=filterBar] {
    margin-top: 6px;
}

.dropDown[type=filter] {
    width: 200px;
    margin: 0px 2px 0px 2px;
    height: 26px;
}

    .dropDown[type=filter][data-active] {
        background-color: #B5D7EF;
        background-color: var(--highlight-color, #B5D7EF);
    }

        .dropDown[type=filter][data-active] .buttonsCont {
            background-color: transparent;
        }

.GridMainS {
    top: 0px;
    left: 0px;
    cursor: default;
}

    .GridMainS .GridToolsBottom .toolBar {
        background-color: inherit;
    }

.GridRowForm {
    background-color: #F5F7F8;
    background-color: var(--background-color, #F5F7F8);
    width: 100%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.GridCaption {
    font-weight: bold;
    background-color: #F5F7F8;
    background-color: var(--background-color, #F5F7F8);
    padding: 4px 6px;
}

.GridToolsCell {
    background-color: inherit;
    padding: 0px;
    overflow: hidden;
}

    .GridToolsCell[filterInside] {
        border-top: solid 1px #D2D4D7;
    }

.GridToolsBottom {
    background-color: inherit;
}

.GridMain.Primary .GridToolsCell .toolBar {
    /*background-color: inherit;*/
}

.GridToolsCell .count-warn {
    margin-right: 5px;
    margin-left: 5px;
    margin-bottom: 2px;
}

.GridPagerCell {
    padding: 2px 3px;
}

    .GridPagerCell > * {
        display: inline-block;
    }

    .GridPagerCell input.page {
        height: 28px;
        width: 50px;
    }

    .GridPagerCell label.pagesOf {
        display: inline-block;
        padding-left: 10px;
    }

form.rtl .GridPagerCell label.pagesOf {
    padding-left: 0px;
    padding-right: 10px;
}

.GridPagerLink {
    display: inline-block;
    color: RGBA(0, 0, 0, 0.87);
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    padding: 5px 10px;
    height: 18px;
    border: solid 1px transparent;
}

span.GridPagerLink {
    border: solid 1px #D2D4D7;
    background-color: #D2D4D7;
    color: RGBA(0, 0, 0, 0.87);
}

a.GridPagerLink:hover {
    background-color: #007ACC;
    background-color: var(--primary-color, #007ACC);
    border: 1px solid #007ACC;
    border: 1px solid var(--primary-color, #007ACC);
    color: #FFFFFF;
}

.GridMainTransparent {
    padding-top: 10px;
    top: 0px;
    left: 0px;
    border-top: solid 1px RGBA(0, 0, 0, 0.12);
    cursor: default !important;
    background-color: Transparent;
}

.GridDocs div[id$=scrollDiv] {
    overflow-x: hidden !important;
}

.GridDocs .GridRow {
    border-right: 0px none;
}

    .GridDocs .GridRow:hover {
        cursor: pointer;
        background-color: #F5F7F8;
    }

    .GridDocs .GridRow .Field0 {
        color: blue;
        display: inline-block;
        padding-bottom: 2px;
        font-weight: 400;
        font-size: 17px;
        text-decoration: underline;
    }

    .GridDocs .GridRow .Field1 {
        font-weight: 400;
        padding: 3px 0px;
        line-height: 17px;
    }

    .GridDocs .GridRow span.Field1 {
        display: inline-block;
    }

    .GridDocs .GridRow div.Field1 {
        text-overflow: ellipsis;
        overflow: hidden;
    }

/*--------------- Styles for the grid cells ---------------*/
.GridRow {
    border-bottom: 1px solid #E0E4E8;
    border-bottom: 1px solid var(--activerow-color, #E0E4E8);
    border-right: 1px solid transparent;
    overflow: hidden;
    background-color: White;
    padding: 7px 8px 5px;
    line-height: 16px;
    min-height: 17px;
}

    .GridRow .sprite-icon {
        margin-top: -4px;
    }

        .GridRow .sprite-icon.control-icon {
            overflow: visible;
        }

        .GridRow .sprite-icon[error] {
            margin-top: 0px;
        }

    .GridRow.bad {
        background-color: RGBA(255, 140, 155, 0.5) !important;
        color: #9c2d75 !important;
        border-bottom-color: RGBA(255, 140, 155, 0.5) !important;
    }

    .GridRow.good {
        background-color: RGBA(156, 237, 171, 0.5) !important;
        color: #007b74 !important;
        border-bottom-color: RGBA(156, 237, 171, 0.5) !important;
    }

    .GridRow.neutral {
        background-color: RGBA(255, 216, 79, 0.5) !important;
        color: #9c7258 !important;
        border-bottom-color: RGBA(255, 216, 79, 0.5) !important;
    }

    .GridRow.bold {
        font-weight: bold;
    }

    .GridRow.italic {
        font-style: italic;
    }

    .GridRow.red {
        color: white !important;
        font-weight: bold;
        background-color: rgba(255, 0, 0, 0.9) !important;
        border-bottom-color: rgba(255, 0, 0, 0.9) !important;
    }

    .GridRow.red60 {
        background-color: rgba(255, 0, 0, 0.6) !important;
        border-bottom-color: rgba(255, 0, 0, 0.6) !important;
    }

    .GridRow.red40 {
        background-color: rgba(255, 0, 0, 0.4) !important;
        border-bottom-color: rgba(255, 0, 0, 0.4) !important;
    }

    .GridRow.red20 {
        background-color: rgba(255, 0, 0, 0.2) !important;
        border-bottom-color: rgba(255, 0, 0, 0.2) !important;
    }

    .GridRow.red0 {
        color: red !important;
        font-weight: bold;
    }

    .GridRow.orange {
        color: white;
        font-weight: bold;
        background-color: rgba(255, 140, 0, 0.9) !important;
        border-bottom-color: rgba(255, 140, 0, 0.9) !important;
    }

    .GridRow.orange60 {
        background-color: rgba(255, 140, 0, 0.6) !important;
        border-bottom-color: rgba(255, 140, 0, 0.6) !important;
    }

    .GridRow.orange40 {
        background-color: rgba(255, 140, 0, 0.4) !important;
        border-bottom-color: rgba(255, 140, 0, 0.4) !important;
    }

    .GridRow.orange20 {
        background-color: rgba(255, 140, 0, 0.2) !important;
        border-bottom-color: rgba(255, 140, 0, 0.2) !important;
    }

    .GridRow.orange0 {
        color: darkorange !important;
        font-weight: bold;
    }

    .GridRow.green {
        color: white !important;
        font-weight: bold;
        background-color: rgba(112, 173, 71, 0.9) !important;
        border-bottom-color: rgba(112, 173, 71, 0.9) !important;
    }

    .GridRow.green60 {
        background-color: rgba(112, 173, 71, 0.6) !important;
        border-bottom-color: rgba(112, 173, 71, 0.6) !important;
    }

    .GridRow.green40 {
        background-color: rgba(112, 173, 71, 0.4) !important;
        border-bottom-color: rgba(112, 173, 71, 0.4) !important;
    }

    .GridRow.green20 {
        background-color: rgba(112, 173, 71, 0.2) !important;
        border-bottom-color: rgba(112, 173, 71, 0.2) !important;
    }

    .GridRow.green0 {
        color: #70ad47 !important;
        font-weight: bold;
    }

    .GridRow.blue {
        color: white !important;
        font-weight: bold;
        background-color: rgba(91, 155, 213, 0.9) !important;
        border-bottom-color: rgba(91, 155, 213, 0.9) !important;
    }

    .GridRow.blue60 {
        background-color: rgba(91, 155, 213, 0.6) !important;
        border-bottom-color: rgba(91, 155, 213, 0.6) !important;
    }

    .GridRow.blue40 {
        background-color: rgba(91, 155, 213, 0.4) !important;
        border-bottom-color: rgba(91, 155, 213, 0.4) !important;
    }

    .GridRow.blue20 {
        background-color: rgba(91, 155, 213, 0.2) !important;
        border-bottom-color: rgba(91, 155, 213, 0.2) !important;
    }

    .GridRow.blue0 {
        color: #5b9bd5 !important;
        font-weight: bold;
    }

    .GridRow.yellow {
        color: black !important;
        font-weight: bold;
        background-color: rgba(255, 255, 0, 0.9) !important;
        border-bottom-color: rgba(255, 255, 0, 0.9) !important;
    }

    .GridRow.yellow60 {
        background-color: rgba(255, 255, 0, 0.6) !important;
        border-bottom-color: rgba(255, 255, 0, 0.6) !important;
    }

    .GridRow.yellow40 {
        background-color: rgba(255, 255, 0, 0.4) !important;
        border-bottom-color: rgba(255, 255, 0, 0.4) !important;
    }

    .GridRow.yellow20 {
        background-color: rgba(255, 255, 0, 0.2) !important;
        border-bottom-color: rgba(255, 255, 0, 0.2) !important;
    }

    .GridRow.yellow0 {
        color: yellow !important;
        font-weight: bold;
    }

    .GridRow.purple {
        color: white !important;
        font-weight: bold;
        background-color: rgba(128, 0, 128, 0.9) !important;
        border-bottom-color: rgba(128, 0, 128, 0.9) !important;
    }

    .GridRow.purple60 {
        background-color: rgba(128, 0, 128, 0.6) !important;
        border-bottom-color: rgba(128, 0, 128, 0.6) !important;
    }

    .GridRow.purple40 {
        background-color: rgba(128, 0, 128, 0.4) !important;
        border-bottom-color: rgba(128, 0, 128, 0.4) !important;
    }

    .GridRow.purple20 {
        background-color: rgba(128, 0, 128, 0.2) !important;
        border-bottom-color: rgba(128, 0, 128, 0.2) !important;
    }

    .GridRow.purple0 {
        color: purple !important;
        font-weight: bold;
    }

    .GridRow div[icon=Error] {
        margin-top: 1px;
    }

.nobr .GridRow {
    white-space: nowrap;
}

.GridRow.wrapText {
    white-space: normal;
}

.GridRow.ellipsis {
    text-overflow: ellipsis;
}

.GridAltRow {
    border-bottom: 1px solid #E0E4E8;
    border-bottom: 1px solid var(--activerow-color, #E0E4E8);
    overflow: hidden;
    background-color: #F2F6FA;
    background-color: var(--altrow-color, #F2F6FA);
}

    .GridAltRow.bad, .GridAltRow.good, .GridAltRow.neutral, .GridAltRow.red, .GridAltRow.red60, .GridAltRow.red40, .GridAltRow.red20, .GridAltRow.red0, .GridAltRow.orange, .GridAltRow.orange60, .GridAltRow.orange40, .GridAltRow.orange20, .GridAltRow.orange0, .GridAltRow.green, .GridAltRow.green60, .GridAltRow.green40, .GridAltRow.green20, .GridAltRow.green0, .GridAltRow.blue, .GridAltRow.blue60, .GridAltRow.blue40, .GridAltRow.blue20, .GridAltRow.blue0, .GridAltRow.yellow, .GridAltRow.yellow60, .GridAltRow.yellow40, .GridAltRow.yellow20, .GridAltRow.yellow0, .GridAltRow.purple, .GridAltRow.purple60, .GridAltRow.purple40, .GridAltRow.purple20, .GridAltRow.purple0 {
        filter: brightness(98%);
    }

.GridTransparentRow {
    background-color: Transparent;
    text-decoration: none !important;
    padding: 3px 6px;
}

    .GridTransparentRow a {
        text-decoration: none !important;
    }

        .GridTransparentRow a:hover {
            text-decoration: underline !important;
        }

.GridHeader {
    border: 1px solid #E0E4E8;
    border-width: 0 1px 1px 0;
    background-color: #F5F7F8;
    background-color: var(--background-color, #F5F7F8);
    vertical-align: text-top;
    color: rgba(0, 0, 0, 0.54);
    padding: 6px 4px;
    white-space: normal !important;
    font-size: 12px;
    font-weight: bold;
}

    .GridHeader[data-filter] {
        background-color: #E0E4E8;
        background-color: var(--activerow-color, #E0E4E8);
        border: 1px solid #E0E4E8;
        border: 1px solid var(--activerow-color, #E0E4E8);
        border-width: 0 1px 1px 0;
    }

    .GridHeader:hover {
        background-color: #E0E4E8;
        color: RGBA(0, 0, 0, 0.87);
        cursor: pointer;
    }

.GridMain div[id$=footerDiv] .GridHeader {
    background-color: white;
    border-color: white;
}

.GridReq {
    padding-left: 7px;
}

    .GridReq .GridHeaderText:before {
        content: "*";
        color: Red;
        font-size: 13px;
        position: absolute;
        margin-left: -7px;
    }

.GridHeaderWrap {
    position: relative;
    overflow: hidden;
    padding-right: 15px;
}

    .GridHeaderWrap.right {
        padding-right: 0px;
        padding-left: 15px;
    }

    .GridHeaderWrap *[data-type=sort] {
        position: absolute;
        margin-top: 0;
        top: 0px;
        right: 0px;
    }

    .GridHeaderWrap.right *[data-type=sort] {
        left: 0px;
        right: auto;
    }

.GridHeaderText {
    overflow: hidden;
}

.GridRowSelector {
    width: 16px;
    text-align: center;
    vertical-align: middle;
}

.edit .GridReadOnly {
    color: RGBA(0, 0, 0, 0.5);
}

.GridReadOnly div[class^=sprite-icon] {
    opacity: 0.7;
}

.GridError {
    color: Red;
}

.GridWarn {
    color: Brown;
}

.GridSelRow {
    background-color: #E0E4E8 !important;
    position: relative;
}

    .GridSelRow:after {
        content: " ";
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.1);
        pointer-events: none;
    }

.GridActiveRow {
    background-color: #E0E4E8 !important;
    background-color: var(--activerow-color, #E0E4E8) !important;
}

.GridActiveCell {
    background-color: #B5D7EF !important;
    background-color: var(--highlight-color, #B5D7EF) !important;
}

    .GridActiveCell .searchTextMark {
        background-color: #FFFFFF;
    }

.GridCellButton {
    font-size: X-Small;
}

.GridCellEditor {
    border: #D2D4D7 1px solid !important;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

    .GridCellEditor.focus, .GridCellEditor:focus {
        border: 1px solid #007ACC !important;
        border: 1px solid var(--primary-color, #007ACC) !important;
        box-shadow: 0 0 2px 0 #007ACC !important;
        box-shadow: 0 0 2px 0 var(--primary-color, #007ACC) !important;
    }

    .GridCellEditor .controlCont, .GridCellEditor.selector.focus .controlCont {
        border-width: 0px;
    }

.GridEditorText {
    padding: 3px 6px;
}

.GridSearchEditor {
    border: Solid 1px #000000;
}

.GridSearchText {
    padding-top: 1px;
    padding-bottom: 1px;
    padding-left: 2px;
}

.searchTextMark, mark {
    background-color: #B5D7EF;
    background-color: var(--highlight-color, #B5D7EF);
}

@media screen and (-ms-high-contrast: active) {
    .searchTextMark, mark {
        background-color: white;
        color: black;
    }
}

/*---------------- Property grid styles -----------------*/
.GridMain.Props .GridRow {
    border-color: #F5F7F8;
}

.GridMain.Props .GridHeader {
    border-color: #D3D3D3;
    opacity: 1;
    font-size: 12px;
}

.GridMain.Props .PropNameColumn {
    background-color: #F5F7F8;
    background-color: var(--background-color, #F5F7F8);
}

.GridMain.Props .PropHeader {
    background-color: #F5F7F8;
    background-color: var(--background-color, #F5F7F8);
    font-weight: bold;
}

.PropOffset1 {
    padding-left: 15px;
}

.PropOffset2 {
    padding-left: 30px;
}

.PropOffset3 {
    padding-left: 45px;
}

.PropOffset4 {
    padding-left: 60px;
}

.PropOffset5 {
    padding-left: 75px;
}

.GridMain.Props .toolLabel {
    font-size: 11px;
    padding-top: 2px;
    height: 40px;
}

    .GridMain.Props .toolLabel nobr {
        white-space: normal !important;
    }

/*--------------- Styles for PXTab control ---------------*/
.tabBase {
    border-bottom: #D2D4D7 1px solid;
}

.tabNormal {
    cursor: pointer;
    background-color: transparent;
    border-top: transparent 3px solid;
    border-bottom: 1px solid #D2D4D7;
    padding: 6px 16px;
    color: rgba(0, 0, 0, 0.5);
    border-left-width: 0px !important;
    text-transform: uppercase;
}

.tabHover {
    background-color: #E0E4E8;
    color: RGBA(0, 0, 0, 0.87);
}

.tabSelected {
    border-bottom: 3px solid #007ACC;
    border-bottom: 3px solid var(--primary-color, #007ACC);
    border-top-width: 0px;
    padding: 8px 16px 4px 16px;
    color: #007ACC;
    color: var(--primary-color, #007ACC);
}

.tabDisabled {
    color: RGBA(0, 0, 0, 0.26);
}

.tabNormal div[error] {
    margin-right: 2px;
    margin-bottom: 3px;
}

.tabContent {
    background-color: #F5F7F8;
    background-color: var(--background-color, #F5F7F8);
    border-left: 1px solid #D2D4D7;
    border-right: 1px solid #D2D4D7;
}

.tabView.transparent {
    background-color: transparent;
}

.tabView table[id$=tabT] {
    height: 40px;
}

.tabView div[id$=tabDiv] {
    overflow: hidden;
    position: relative;
    height: 40px;
    margin-right: 35px;
}

    .tabView div[id$=tabDiv][data-type=scroll] {
        margin-right: 70px;
    }

    .tabView div[id$=tabDiv] > div {
        overflow: hidden;
        position: absolute;
        width: 100%;
    }

.tabView div[id$=butDiv] {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 35px;
    padding-bottom: 2px;
}

    .tabView div[id$=butDiv][data-type=scroll] {
        width: 70px;
    }

    .tabView div[id$=butDiv] button {
        min-width: 28px;
        height: 24px;
        text-align: center;
        padding: 3px;
        margin-left: 5px;
    }

.tabView .tabPanelS {
    position: relative;
    min-height: 50px;
    padding: 9px 0px 0px 9px;
}

.tabView .tabPanel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.tabView .tabPanelSD {
    position: relative;
    min-height: 50px;
}

.tabView div[data-type=collapse] {
    position: absolute;
    top: 3px;
    right: 5px;
    z-index: 4000;
}

/*--------------- Styles for PXFormView control ---------------*/
.FormCaption {
    background-color: #F5F7F8;
    background-color: var(--background-color, #F5F7F8);
    font-weight: bold;
    padding: 4px;
}

.FormContent {
    border-top: 1px solid #D2D4D7;
    background-color: #F5F7F8;
    background-color: var(--background-color, #F5F7F8);
    padding: 9px 9px 0px 9px;
}

.FormView div[data-type=collapse] {
    position: absolute;
    top: -4px;
    right: -3px;
    z-index: 400;
}

.FormContent div[data-ims="1"] + div {
    padding-right: 22px;
}

.FormRoundL {
    background-repeat: no-repeat;
    background-position: left top;
    background-image: url(Images/form_roundL.gif);
    width: 5px;
}

.FormRoundR {
    background-repeat: no-repeat;
    background-position: right top;
    background-image: url(Images/form_roundR.gif);
    width: 5px;
}

.FormRoundM {
    background-repeat: repeat-x;
    background-image: url(Images/form_roundM.gif);
}

.FormError, .selector.FormError .controlCont {
    border: Solid 1px Red !important;
    box-shadow: 0 0 0 0 #FFFFFF;
}

.FormWarn, .selector.FormWarn .controlCont {
    border: Solid 1px Brown !important;
    box-shadow: 0 0 0 0 #FFFFFF;
}

.FormInfo, .selector.FormInfo .controlCont {
    border: Solid 1px Green;
    box-shadow: 0 0 0 0 #FFFFFF;
}

.selector.FormError, .selector.FormWarn, .selector.FormInfo {
    border-width: 0px !important;
}

.checkBox.FormError {
    border-width: 0px;
    border-bottom: Solid 1px Red;
}

.checkBox.FormWarn {
    border-width: 0px;
    border-bottom: Solid 1px Brown;
}

.checkBox.FormInfo {
    border-width: 0px;
    border-bottom: Solid 1px Green;
}

/*--------------- Styles for PXWizard control ---------------*/
.WizardCaption, .WizardCaptionF {
    color: rgba(0, 0, 0, 0.64);
    font-size: 13px;
    font-style: italic;
    font-weight: 700;
    background-color: #F5F7F8;
    background-color: var(--background-color, #F5F7F8);
    padding: 7px 3px;
}

.WizardCaption {
    border: RGBA(0, 0, 0, 0.12) 1px Solid;
    border-bottom-width: 0px;
}

.WizardContent {
    background-color: #F5F7F8;
    background-color: var(--background-color, #F5F7F8);
    padding: 5px;
    border: RGBA(0, 0, 0, 0.12) 1px Solid;
    border-top-width: 0px;
}

.WizardContentF {
    background-color: #F5F7F8;
    background-color: var(--background-color, #F5F7F8);
}

.WizardFooter {
    background-color: #F5F7F8;
    background-color: var(--background-color, #F5F7F8);
    padding: 5px;
    border: RGBA(0, 0, 0, 0.12) 1px Solid;
    border-top-width: 0px;
}

.WizardFooterT {
    padding: 5px 0px;
}

.WizardFooterF {
    padding: 5px 0px;
    background-color: #F5F7F8;
    background-color: var(--background-color, #F5F7F8);
}

    .WizardFooter .Button, .WizardFooterT .Button, .WizardFooterF .Button {
        margin-left: 5px;
    }

.Wizard > tbody > tr > td > div {
    overflow: auto;
}

/*--------------- Styles for PXNavPanel control ---------------*/
.NavPanel {
    border-style: solid;
    border-width: 1px;
    border-color: Silver;
}

.NavPanelBar {
    background-image: url(Images/NavPanel/np_bar.gif);
    background-repeat: repeat-x;
    cursor: pointer;
    color: RGBA(0, 0, 0, 0.87);
    vertical-align: middle;
    font-weight: bold;
    height: 32px;
    padding: 0px 2px 0px 2px;
}

.NavPanelBarA {
    background-image: url(Images/NavPanel/np_barA.gif);
    cursor: pointer;
    padding: 0px 2px 0px 2px;
    font-weight: bold;
    height: 32px;
}

.NavPanelBarH {
    cursor: pointer;
    background-color: Gainsboro;
    background-image: url(Images/NavPanel/np_barH.gif);
    color: Firebrick;
    padding: 0px 2px 0px 2px;
    height: 32px;
}

.NavPanelSpt {
    background-color: #D7D6E4;
    background-image: url(Images/NavPanel/np_splitter.gif);
    padding-top: 1px;
    padding-bottom: 3px;
}

.NavPanelFt {
    background-image: url(Images/NavPanel/np_bar.gif);
    background-repeat: repeat-x;
    height: 32px;
}

    .NavPanelFt table table {
        height: 28px;
        width: 24px;
        text-align: center;
    }

.NavPanelCaption {
    background-image: url(Images/NavPanel/np_caption.gif);
    background-repeat: repeat-x;
    color: White;
    vertical-align: middle;
    font-weight: bold;
    font-size: 15px;
    height: 25px;
    padding-left: 6px;
}

    .NavPanelCaption a {
        color: White;
        text-decoration: none;
    }

        .NavPanelCaption a:hover {
            text-decoration: underline;
        }

.NavPanelFrame {
    background-color: White;
}

/*--------------- Styles for PXSmartPanel control ---------------*/
.SmartPanel {
    box-shadow: 4px 4px 8px rgba(115, 115, 115, 0.7);
    -moz-box-shadow: 4px 4px 6px rgba(115, 115, 115, 0.7);
    -webkit-box-shadow: 4px 4px 6px rgba(115, 115, 115, 0.7);
}

.SmartPanelF {
    width: 100%;
}

.SmartPanelT {
    background-color: transparent;
}

div.SmartPanel, div.SmartPanelF, div.SmartPanelT {
    overflow: auto;
    position: relative;
}

.SmartPanelC {
    border: 1px solid #D2D4D7;
    font-size: 16px;
    background-color: #F5F7F8;
    background-color: var(--background-color, #F5F7F8);
    color: #000000;
    padding: 10px 5px 7px 12px;
}

    .SmartPanelC div.sprite-icon {
        margin-right: 5px;
    }

        .SmartPanelC div.sprite-icon > div.control-icon-img {
            font-size: 16px;
        }

form.rtl .SmartPanelC {
    padding: 3px 8px;
}

.SmartPanelCN {
    background-color: #F5F7F8;
    background-color: var(--background-color, #F5F7F8);
    padding: 5px;
    border-bottom: 1px solid #D2D4D7;
    border-left: 1px solid #D2D4D7;
    border-right: 1px solid #D2D4D7;
}

.SmartPanel.SmartPanelCN {
    border-top: 1px solid #D2D4D7;
}

.SmartPanelCNT {
    background-color: transparent;
    padding: 0px;
}

.panelContent {
    overflow: auto;
    position: relative;
    width: 100%;
    height: 100%;
}

.MessageButton {
    width: 70px;
    margin: 2px 0px 2px 4px;
}

.activityPanel {
    width: 700px;
}

.activityBox {
    height: 415px;
    width: 100%;
    border: 1px solid RGBA(0, 0, 0, 0.12);
    position: relative;
}

    .activityBox .toolBar {
        border-bottom: 1px solid RGBA(0, 0, 0, 0.12);
    }

.SmartPanel.columns button[id$=add], .SmartPanel.columns button[id$=up] {
    margin-top: 120px;
}

.SmartPanel.columns div[id$=fb] {
    height: 24px;
}

.SmartPanel.columns button[id$=reset], .SmartPanel.columns button[id$=allUser] {
    height: 24px;
    width: 100%;
}

.SmartPanel.columns div[id$=availC], .SmartPanel.columns div[id$=selC] {
    height: 350px;
    width: 260px;
}

@media (max-width: 700px) {
    .SmartPanel.columns div[id$=availC], .SmartPanel.columns div[id$=selC] {
        width: 220px;
    }

    .SmartPanel.columns {
        width: 566px;
    }

    .SmartPanel.files {
        width: 100% !important;
    }
}

#paymentPanel.SmartPanel .SmartPanelCN {
    padding: 0px;
    position: relative;
    overflow: hidden;
}

    #paymentPanel.SmartPanel .SmartPanelCN iframe.panelContent {
        position: absolute;
        height: 1000px;
        top: 0px;
    }

.SmartPanelCN.popup-note div.content {
    display: flex;
    height: 100%;
    flex-direction: column;
}

    .SmartPanelCN.popup-note div.content > div {
        display: flex;
        padding: 5px;
        flex: 0.5;
        flex-direction: column;
    }

        .SmartPanelCN.popup-note div.content > div.buttons-cont {
            display: block;
            flex: 0;
            text-align: right;
        }

        .SmartPanelCN.popup-note div.content > div.popup-cont {
            padding-top: 0px;
        }

    .SmartPanelCN.popup-note div.content.note-only > div.text-cont {
        flex: 1;
    }

    .SmartPanelCN.popup-note div.content.note-only > div.popup-cont, .SmartPanelCN.popup-note div.content.note-only label.labelH {
        display: none;
    }

    .SmartPanelCN.popup-note div.content textarea.editor {
        flex: 1;
        width: 100%;
        resize: none;
    }

    .SmartPanelCN.popup-note div.content span.checkBox {
        float: left;
    }

    .SmartPanelCN.popup-note div.content label.labelH {
        padding-bottom: 5px;
    }

/*--------------- Styles for rounded window ---------------*/
.WindowT {
    background-repeat: repeat-x;
    background-image: url(Images/form_roundM.gif);
    height: 3px;
}

.WindowTL {
    background-repeat: no-repeat;
    background-position: left top;
    background-image: url(Images/form_roundL.gif);
}

.WindowTR {
    background-repeat: no-repeat;
    background-position: right top;
    background-image: url(Images/form_roundR.gif);
}

.WindowB {
    background-repeat: repeat-x;
    background-image: url(Images/wnd_border.gif);
    height: 3px;
}

.WindowBL {
    background-repeat: no-repeat;
    background-image: url(Images/wnd_border.gif);
}

.WindowBR {
    background-repeat: no-repeat;
    background-image: url(Images/wnd_border.gif);
}

.WindowL {
    background-repeat: repeat-y;
    background-image: url(Images/wnd_border.gif);
}

.WindowR {
    background-repeat: repeat-y;
    background-image: url(Images/wnd_border.gif);
}

/*--------------- Styles for PageFooter control ---------------*/
.PageFooter {
    border-top: RGBA(0, 0, 0, 0.12) 1px solid;
    padding: 3px;
    font-size: 0;
    text-align: right;
    background-color: white;
    background-image: url(Images/pt_gradient.gif);
    background-position: left top;
    background-repeat: repeat-x;
}

.StatusBar {
    border-top: RGBA(0, 0, 0, 0.12) 1px solid;
    background-color: white;
    background-image: url(Images/pt_gradient.gif);
    background-position: left top;
    background-repeat: repeat-x;
}

.StatusText {
    padding: 3px;
}

/*--------------- Styles for Login control ---------------*/
.Login {
    border: solid 1px RGBA(0, 0, 0, 0.12);
    width: 400px;
}

.LoginCaption {
    font-size: 21px;
    color: White;
}

.LoginLabel {
    font-size: 11px;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.64);
}

.LoginLink {
    font-size: 11px;
    font-weight: bold;
    color: #007ACC;
    color: var(--primary-color, #007ACC);
}

.amChartsLegend[data-popup] {
    padding-left: 10px;
    border: 1px solid #D2D4D7 !important;
}

/*--------------------- Styles for Dashboards --------------------*/
.Dashboards .dash-wrapper {
    filter: grayscale(0);
    opacity: 1;
    transition-delay: 0.5s;
    transition: filter 0.25s ease-in-out, opacity 0.25s ease-in-out;
    margin: 5px;
    border: solid 1px white;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

    .Dashboards .dash-wrapper .drop-widget-text {
        display: none;
    }

    .Dashboards .dash-wrapper.reload {
        filter: grayscale(0.7);
        opacity: 0.7;
    }

        .Dashboards .dash-wrapper.reload .main-Refresh {
            animation: ac-spin 1s infinite ease-in-out;
        }

    .Dashboards .dash-wrapper.hover {
        opacity: 0.8;
    }

        .Dashboards .dash-wrapper.hover .drop-widget-text {
            display: block;
        }

        .Dashboards .dash-wrapper.hover .add-widget-link, .Dashboards .dash-wrapper.hover .paste-widget-link, .Dashboards .dash-wrapper.hover .drag-widget-text {
            display: none;
        }

.Dashboards.buffer .paste-widget-link a {
    pointer-events: initial;
    color: #0078D7;
}

.Dashboards .paste-widget-link a {
    pointer-events: none;
    color: #AAAAAA;
}

.Dashboards.design .dash-wrapper {
    border-radius: 3px;
    border: solid 1px #D2D4D7;
}

    .Dashboards.design .dash-wrapper.dummy {
        color: rgba(0, 0, 0, 0.64);
        font-size: 14px;
        line-height: 25px;
        text-align: left;
        background-color: #F5F6F7;
        border: 2px dashed #D2D4D7;
        overflow: hidden;
        display: flex;
        justify-content: center;
    }

        .Dashboards.design .dash-wrapper.dummy a {
            text-decoration: none;
        }

        .Dashboards.design .dash-wrapper.dummy .add-widget-link a {
            color: #0078D7;
        }

        .Dashboards.design .dash-wrapper.dummy .content {
            align-self: center;
            display: flex;
            flex-direction: column;
            white-space: nowrap;
            overflow: hidden;
        }

            .Dashboards.design .dash-wrapper.dummy .content i.ac {
                width: 1.4em;
                vertical-align: -2px;
            }

            .Dashboards.design .dash-wrapper.dummy .content .text-sm {
                display: none;
            }

            .Dashboards.design .dash-wrapper.dummy .content .text {
                display: inline;
            }

        .Dashboards.design .dash-wrapper.dummy.h-xs .content {
            flex-direction: row;
            justify-content: space-evenly;
            width: 100%;
        }

            .Dashboards.design .dash-wrapper.dummy.h-xs .content .drag-widget-text {
                display: none;
            }

        .Dashboards.design .dash-wrapper.dummy _:-ms-lang(x), .Dashboards.design .dash-wrapper.dummy.h-xs .content {
            justify-content: space-around;
        }

        .Dashboards.design .dash-wrapper.dummy.w-xs .content, .Dashboards.design .dash-wrapper.dummy.h-xs .content {
            font-size: 12px;
        }

            .Dashboards.design .dash-wrapper.dummy.w-xs .content .text, .Dashboards.design .dash-wrapper.dummy.h-xs .content .text {
                display: none;
            }

            .Dashboards.design .dash-wrapper.dummy.w-xs .content .text-sm, .Dashboards.design .dash-wrapper.dummy.h-xs .content .text-sm {
                display: inline;
            }

        .Dashboards.design .dash-wrapper.dummy.w-xs.h-xs .content .text, .Dashboards.design .dash-wrapper.dummy.w-xs.h-xs .content .text-sm {
            display: none !important;
        }

.Dashboards .toolBar.caption {
    background-color: transparent;
}

    .Dashboards .toolBar.caption .toolsBtn {
        margin: 1px;
    }

    .Dashboards .toolBar.caption .toolLabel, .Dashboards .toolBar.caption .toolsBtn {
        text-transform: uppercase;
        font-size: 16px;
        font-weight: normal;
    }

.dash-wrapper .toolLabel.last-updated, .dash-wrapper [data-cmd=Refresh], .dash-wrapper .updating {
    display: none;
    font-size: 12px !important;
    text-transform: none !important;
}

.dash-wrapper:hover:not(.reload) .last-updated, .dash-wrapper:hover:not(.reload) [data-cmd=Refresh] {
    display: table-cell;
}

.dash-wrapper.reload .updating {
    display: table-cell;
}

.dash-wrapper.reload [data-cmd=Refresh] {
    display: table-cell;
}

.Dashboards .toolBar.design {
    opacity: 0.9;
    width: 100%;
    display: none;
}

.Dashboards.design .toolBar.design {
    display: block;
}

.Dashboards .scorecard, .Dashboards .trendcard {
    color: white;
}

    .Dashboards .scorecard[style*="background-color:#FFC109" i],
    .Dashboards .scorecard.warning[style*="background-color:#FFC109" i],
    .Dashboards .trendcard[style*="background-color:#FFC109" i],
    .Dashboards .trendcard.warning[style*="background-color:#FFC109" i],
    .Dashboards .scorecard[style*="background-color:#FFC107" i],
    .Dashboards .scorecard.warning[style*="background-color:#FFC107" i],
    .Dashboards .trendcard[style*="background-color:#FFC107" i],
    .Dashboards .trendcard.warning[style*="background-color:#FFC107" i] {
        color: black;
    }

    .Dashboards .trendcard .content {
        /*width:calc(100% - 10px);*/
        width: 100%;
    }

        .Dashboards .trendcard .content td {
            width: 1px;
            white-space: nowrap;
            padding: 0;
        }

            .Dashboards .trendcard .content td:first-child {
                padding-bottom: 3px;
                width: 50%;
                /*vertical-align:top;
  font-size: 10em;*/
            }

            .Dashboards .trendcard .content td:last-child {
                width: 50%;
            }

    .Dashboards .scorecard.warning, .Dashboards .trendcard.warning {
        color: white;
    }

    .Dashboards .scorecard .caption, .Dashboards .trendcard .caption {
        font-size: 17px;
        text-transform: uppercase;
        padding: 10px 5px 5px 15px;
    }

    .Dashboards .scorecard > tbody > tr:not(:first-child) > td,
    .Dashboards .trendcard > tbody > tr:not(:first-child) > td {
        padding: 20px;
    }

.Dashboards .card-button {
    cursor: pointer;
    font-size: 4em;
    font-weight: 500;
    text-align: center;
    margin: auto;
    min-width: 50px;
}

.Dashboards .trendcard .trend {
    font-size: 1.2em;
    padding-bottom: 3px;
    white-space: nowrap;
}

.Dashboards .trendcard .card-button.overall {
    font-size: 1.2em;
    float: left;
    min-width: 0px;
}

.Dashboards .trendcard .arrow {
    font-size: 3.4em;
    /*padding-left: 10px;
  height: 60px;
  width: 60px;*/
}

.Dashboards .iframe {
    height: 99% !important;
}

.Dashboards .dash-wrapper .pivotTable {
    border: 0px;
}

.Dashboards .lockedIcon {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.Wizard .dashboardWizardSettingsButton {
    min-width: 180px;
}

.row.dash-layout {
    height: 80px;
}

    .row.dash-layout > div {
        height: 100%;
        padding: 10px;
    }

    .row.dash-layout .layout-type {
        height: 100%;
        padding: 2px;
        border: 1px solid #D2D4D7;
        background-color: white;
    }

        .row.dash-layout .layout-type > div {
            height: 100%;
            padding: 2px;
        }

        .row.dash-layout .layout-type .layout-col {
            height: 100%;
            background-color: #D2D4D7;
            border: 1px solid #D2D4D7;
            box-sizing: border-box;
        }

        .row.dash-layout .layout-type:hover {
            border: solid 1px black;
        }

            .row.dash-layout .layout-type:hover .layout-col,
            .row.dash-layout .layout-type[selected] .layout-col {
                background-color: white;
            }

        .row.dash-layout .layout-type[selected] {
            border: solid 1px black;
            background-color: #F5F7F8;
        }

.row {
    overflow: hidden;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2,
.col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4,
.col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6,
.col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8,
.col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10,
.col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    min-height: 1px;
    box-sizing: border-box;
}

.col-xs-0, .col-sm-0, .col-md-0, .col-lg-0 {
    width: 0%;
    display: none;
}

@media (min-width: 768px) {
    .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6,
    .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
        float: left;
    }

    .col-sm-12 {
        width: 100%;
    }

    .col-sm-11 {
        width: 91.66666667%;
    }

    .col-sm-10 {
        width: 83.33333333%;
    }

    .col-sm-9 {
        width: 75%;
    }

    .col-sm-8 {
        width: 66.66666667%;
    }

    .col-sm-7 {
        width: 58.33333333%;
    }

    .col-sm-6 {
        width: 50%;
    }

    .col-sm-5 {
        width: 41.66666667%;
    }

    .col-sm-4 {
        width: 33.33333333%;
    }

    .col-sm-3 {
        width: 25%;
    }

    .col-sm-2 {
        width: 16.66666667%;
    }

    .col-sm-1 {
        width: 8.33333333%;
    }

    .col-sm-offset-12 {
        margin-left: 100%;
    }

    .col-sm-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-sm-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-sm-offset-9 {
        margin-left: 75%;
    }

    .col-sm-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-sm-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-sm-offset-6 {
        margin-left: 50%;
    }

    .col-sm-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-sm-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-sm-offset-3 {
        margin-left: 25%;
    }

    .col-sm-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-sm-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-sm-offset-0 {
        margin-left: 0;
    }
}
/*--------------- Styles for NewsList controls ---------------*/
.NewsListContent {
    position: relative;
    overflow: auto;
    height: 100%;
    background-color: White;
    cursor: default;
}

.NewsListTable {
    table-layout: fixed;
    border-collapse: collapse;
    width: 100%;
    cursor: default;
}

    .NewsListTable tr[recid] {
        border-bottom: 1px solid LightGrey;
    }

    .NewsListTable td {
        padding: 5px 3px;
        cursor: default;
    }

.NewsListImage {
    width: 5%;
}

.NewsHotTime {
    color: Red;
    width: 20%;
}

.NewsTime {
    width: 20%;
}

.NewsHotDuration {
    color: Red;
    width: 15%;
}

.NewsDuration {
    width: 15%;
}

.NewsListTitle {
    width: 60%;
}

.NewsListMain {
    margin-top: 5px;
}

.NewsListBriefInfo {
    font-style: italic;
    color: Gray;
    cursor: default;
}

.NewsListDescription {
    font-style: italic;
    color: Gray;
    cursor: default;
}

.NewsToolBarButtonNormal {
    padding: 3px;
}

.NewsToolBarButtonHover {
    background-color: #B5D7EF;
    background-color: var(--highlight-color, #B5D7EF);
    border: darkblue 1px solid;
    padding: 2px;
    cursor: default;
}

.NewsToolBarButtonPushed {
    background-color: LightSalmon;
    border: black 1px solid;
    padding: 2px;
    cursor: default;
}

.TasksAndEventsLabel {
    cursor: default;
}

.TasksAndEventsLabelHover {
    color: DarkBlue;
    text-decoration: underline;
    cursor: default;
}

/*------------- Style for navigation buttons in wiki popup images -----------*/
span.PrevNextPopupImg {
    border-bottom: 1px dotted;
    cursor: pointer;
    text-decoration: none;
    color: #1A3DC1;
}

    span.PrevNextPopupImg:hover {
        color: #FF0000;
    }

td.PopupImgCaption {
    width: 100%;
    text-align: left;
    vertical-align: top;
    overflow: hidden;
}

span.PopupImgCaption {
    font-weight: bold;
    font-size: 12px;
    padding-left: 5px;
    background-color: #0071BC;
    color: White;
    padding-right: 5px;
    padding-bottom: 2px;
}

td.PopupImgClose {
    text-align: right;
    padding-right: 5px;
    padding-top: 2px;
}

div.informer {
    background-color: White;
}

.wikiFolderPublish, .wikiLeafPublish {
    color: #A36030;
    font-weight: bold;
}

.wikiFolderUnPublish, .wikiLeafUnPublish {
    color: Green;
    font-weight: bold;
}

.wikiNewArticle {
    font-weight: bold;
}

/*--------------- Styles for Validation banner ---------------*/
.ValidationBanner {
    font-size: 13px;
    color: white;
    font-weight: bold;
    width: 100%;
    height: 40px;
    /*padding: 10px;*/
    background-color: orange;
    cursor: pointer;
}

.ValidationMessage {
    padding: 10px;
}

.ValidationBanner:hover {
    text-decoration: underline;
}

.ValidationTable {
    font-size: 12px;
    border: #000000 1px Solid;
    background-color: White;
    box-shadow: 3px 3px 4px rgba(115, 115, 115, 0.7);
    -moz-box-shadow: 4px 4px 6px rgba(115, 115, 115, 0.7);
    -webkit-box-shadow: 4px 4px 6px rgba(115, 115, 115, 0.7);
    margin-bottom: 20px;
    margin-right: 20px;
    width: 100%;
}

.LicenseBanner {
    width: 100%;
    height: 20px;
    background-color: #007ACC;
    background-color: var(--primary-color, #007ACC);
    text-align: center;
}

.LicenseMessage {
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 400;
}

body .LicenseDisclamer {
    border: solid;
    border-bottom-color: darkgray;
    border-bottom-style: solid;
    border-width: thin;
    background-color: #EAEEF3;
    width: 510px;
    height: auto !important;
    padding: 5px;
}

/*--------------- Styles for render pivot table ---------------*/
.pivotTable {
    background-color: white;
}

.phDS .pivotTable, .phF .pivotTable {
    border: 1px solid #D2D4D7;
    border-bottom-width: 0px;
}

.pivotTable td {
    white-space: nowrap;
    overflow: hidden;
}

.pivotTable .xDim {
    border-top: 1px solid #D2D4D7;
}

.pivotTable .header, .pivotTable .caption {
    background-color: #F5F7F8;
    background-color: var(--background-color, #F5F7F8);
    padding: 0px 3px;
    border-bottom: 1px solid #D2D4D7;
    width: 100%;
}

.pivotTable .caption {
    padding: 3px;
    font-weight: bold;
    text-align: center;
}

.pivotTable .inactiveCell {
    padding-left: 30px;
}

.pivotTable .errorImage {
    float: right;
    margin-right: 10px;
}

.pivotTable table.inactive + .errorImage {
    margin-top: 3px;
}

.pivotTable .yDim td, .pivotTable .xDim td, .pivotTable .facts td,
.pivotTable .yDimH, .pivotTable .xDimH, .pivotTable .inactH {
    padding: 3px;
    border-bottom: 1px solid #D2D4D7;
    border-right: 1px solid #D2D4D7;
    line-height: 1.2;
}

.pivotTable .yDim td, .pivotTable .xDim td {
    position: relative;
    background-color: #F5F7F8;
}

.pivotTable .xDim td, .pivotTable .xDimCap td, .pivotTable .yDimCap td {
    text-align: center;
}

.pivotTable .facts td {
    text-align: right;
}

    .pivotTable .facts td.total {
        background-color: #E0E4E8;
    }

    .pivotTable .facts td a {
        text-decoration: none;
    }

.pivotTable table[id$=dt] > tbody > tr > td:last-child {
    border-left: 1px solid #D2D4D7;
}

.pivotTable .yDim td:last-child {
    border-right-width: 0px;
}

.pivotTable td[data-hash] {
    cursor: pointer;
}

.pivotTable .yDim td[data-hash] {
    padding-left: 20px;
}

.pivotTable td.yDimH, .pivotTable td.xDimH, .pivotTable td.factH, .pivotTable td.inactH {
    background-color: #D2D4D7;
    font-weight: bold;
}

.pivotTable .yDimH {
    border-top: 1px solid #D2D4D7;
}

.pivotTable .xDimH {
    border-bottom-width: 0px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.pivotTable td.yDimH:hover, .pivotTable td.xDimH:hover,
.pivotTable td.factH:hover, .pivotTable td.inactH:hover, .pivotTable td[data-index]:hover {
    background-color: #E0E4E8 !important;
    cursor: pointer;
}

.pivotTable td.yDimH.filtered, .pivotTable td.xDimH.filtered, .pivotTable td.inactH.filtered {
    background-color: #B5D7EF;
    background-color: var(--highlight-color, #B5D7EF);
}

.pivotTable .headerWrap {
    position: relative;
    overflow: hidden;
    padding: 0px 15px;
}

    .pivotTable .headerWrap *[data-type=sort] {
        position: absolute;
        top: 1px;
        right: 0px;
        opacity: 0.3;
    }

    .pivotTable .headerWrap *[data-type=filter] {
        position: absolute;
        top: 1px;
        left: 0px;
        opacity: 0.3;
    }

.pivotTable td.filter-active .headerWrap *[data-type=filter],
.pivotTable td.sort-active .headerWrap *[data-type=sort] {
    opacity: 1;
}

.pivotTable *[data-type=expand] {
    position: absolute;
    top: 2px;
    left: 0px;
    cursor: pointer;
}

.pivotTable .headerText {
    overflow: hidden;
}

input[type=text]::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

.RichTextEditor iframe {
    width: 100%;
}

.RichTextWizard .SmartPanelCN {
    vertical-align: top;
}

.RichTextWizard .GalleryPreview {
    width: 100px;
    height: 100px;
    margin: 13px 40px 0px 40px;
}

    .RichTextWizard .GalleryPreview.selected-image {
        width: 100px;
        height: 100px;
        margin: 11px 39px 0px 39px;
        border: solid 1px !important;
    }

.RichTextWizard .ImageGallery .image-frame {
    float: left;
}

.RichTextWizard .ImageGallery .image-caption {
    overflow: hidden;
    width: 160px;
    height: 18px;
    padding: 0px 10px;
    text-overflow: ellipsis;
    text-align: center;
}

.RichTextWizard .ImageGallery .image-caption-inner {
    column-width: 160px;
    height: 100%;
}

.RichTextWizard .ImageGallery {
    overflow: auto;
}

.RichTextEditor {
    width: 100%;
}

.RichTextWizard .MainTable {
    width: 100%;
}

.RichTextWizard .splitterLC {
    height: 400px;
}

.RichTextWizard .splitterRC {
    height: 400px;
}

.RichTextWizard .ImageGallery[id$=gallery1] {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 65px;
    bottom: 0px;
    background-color: white;
}

.RichTextWizard .SearchBox {
    margin-bottom: 5px;
}

.RichTextWizard .menuIsland.menuIslandV {
    position: absolute;
    top: 0px;
    bottom: 0px;
}

.richTextBar {
    /*	background: white;*/
    background: #F5F7F8;
    border-bottom: solid 1px #BBBBBB;
}

.richTabTail {
    /*height: 32px;
  border-bottom: solid 1px #BBBBBB;*/
    text-align: right;
    padding: 0px 15px;
}

.richTextBar .toolsBtn {
    background-color: inherit;
    margin: 3px;
    color: RGBA(0, 0, 0, 0.87);
    white-space: nowrap;
}

    .richTextBar .toolsBtn:not([enabled=false]):hover {
        opacity: 1;
        background-color: #007ACC;
        background-color: var(--primary-color, #007ACC);
        color: #FFFFFF;
    }

.richBarNormal {
    color: rgba(0, 0, 0, 0.64);
    border-width: 0px 1px 1px 1px;
    cursor: default;
    height: 18px;
    padding: 7px 15px;
    margin: 3px;
}

.richBarPushed {
    color: #626262;
    border: 1px solid #DCDCDC;
    border-top-width: 0;
    border-bottom-color: #F5F7F8;
    cursor: default;
    height: 17px;
    padding: 7px 14px 7px 14px;
    background: #F5F7F8;
    cursor: default;
}

li:first-child .richBarPushed {
    border-style: none solid solid none;
    border-width: 0px 1px 1px 0px;
    padding: 7px 14px 7px 15px;
}

.toolBar.richTextBar {
    background: white;
}

    .toolBar.richTextBar .toolsBtn {
        border: none;
        background-color: #F5F7F8;
    }

.richIcon {
    display: inline-block;
    background-image: url(Images/sprite_main5.png);
    background-repeat: no-repeat;
    width: 15px;
}

.richAttach {
    background-position: -2px -122px;
}

.richImg {
    background-position: -2px -1120px;
}

.richScreen {
    background-position: -24px -1032px;
}

.richArticle {
    background-position: -24px -1054px;
}

.RichImageProps input[type=checkbox] + label {
    width: inherit;
}

.OKCancelPanel .fld-l {
    width: 90px;
}

.OKCancelPanel .fld-c {
    margin-left: 90px;
}

.labelH.shiftDown, .RichTextWizard label:only-child {
    margin-top: 5px;
}

.RichTextWizard .splitterRC > div > div > div:first-child {
    position: absolute;
    bottom: 48px;
    top: 0px;
    width: 100%;
}

.RichImageProps .cell-ph2:first-child div:first-child > span, .RichImageProps .cell-pn:first-child div:first-child > span {
    margin-top: 8px;
}

.RichImageProps div + div > span {
    margin-top: 12px !important;
}

.RichImageProps div:first-child > input[type=text] {
    margin-top: 1px;
}

.RichTextWizard .richBottom {
    position: absolute;
    bottom: 0px;
    right: 0px;
}

.richLookup {
    position: absolute;
}

.RichLinkProps button {
    margin: 5px;
}

.richTabTail > .langIndi {
    cursor: pointer;
    color: blue;
    text-decoration: underline;
    line-height: 1.5em;
}

*:focus {
    outline: none;
}

.tlbr1, .tlbr2, .tlbr3, .tlbr4 {
    min-height: 34px;
}

.tlbr0 {
    display: none;
}

.GrayBox {
    border: solid 1px #CCCCCC;
    background-color: #F9F9F9;
    padding: 4px;
    margin: 4px 4px 0px 4px;
    width: 98%;
}

.RichImageProps .stack-h.stack-pout-h {
    margin-bottom: 0px;
}

.richBar2 {
    font-size: 13px;
    /*box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);*/
    background: #F5F7F8;
    background: var(--background-color, #F5F7F8);
    border: 1px solid #D2D4D7;
    /*margin: 5px 50px;
  padding: 5px;*/
    min-width: 80px;
    word-wrap: break-word;
    z-index: 4000;
    position: absolute;
}

    .richBar2 .arrow.top {
        top: -16px;
        bottom: auto;
    }

    .richBar2 .arrow {
        width: 50px;
        height: 16px;
        overflow: hidden;
        position: absolute;
        /*margin-left: -35px;*/
        bottom: -16px;
    }

        .richBar2 .arrow.top:after {
            bottom: -20px;
            top: auto;
        }

        .richBar2 .arrow:after {
            background: #F5F7F8;
            background: var(--background-color, #F5F7F8);
            border: 1px solid #D2D4D7;
            content: "";
            position: absolute;
            left: 20px;
            top: -20px;
            width: 25px;
            height: 25px;
            transform: rotate(45deg);
        }

.inittable td {
    background-color: #FFFFFF;
}

.inittable .selected {
    background-color: #007ACC;
    background-color: var(--primary-color, #007ACC);
}

.inittable td {
    min-width: 20px;
}

.inittable {
    border: solid 1px #D2D4D7;
    empty-cells: show;
}

.RichTextEditor [data-cmd=Edit] > div {
    opacity: 1;
}

.RichTextEditor [data-cmd=undo] > div {
    padding: 5px 1px 5px 5px;
}

.RichTextEditor [data-cmd=redo] > div {
    padding: 5px 5px 5px 1px;
}

.fld-c > .RichTextEditor {
    border: #E0E4E8 1px solid;
}

.RichTextEditor-autosize > div {
    display: flex !important;
    flex-direction: column;
}

    .RichTextEditor-autosize > div div:has(table.RichTextEditor:not(.RichTextEditor-hidden)) {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

        .RichTextEditor-autosize > div div:has(table.RichTextEditor:not(.RichTextEditor-hidden)) .req-r, .RichTextEditor-autosize > div div:has(table.RichTextEditor:not(.RichTextEditor-hidden)) .req-l, .RichTextEditor-autosize > div div:has(table.RichTextEditor:not(.RichTextEditor-hidden)) .err-l {
            position: absolute;
        }

.InsertCode label {
    margin-top: 5px;
}

.InsertCode .cell-pn .cell-ph:first-child .fld-lc .fld-l {
    padding-left: 0px;
}

.InsertCode .cell-pn .cell-ph:first-child .fld-lc .fld-c {
    margin-left: 70px;
    margin-right: 50px;
}

.InsertCode .cell-pn .fld-lc .fld-l {
    width: 70px;
    padding-left: 50px;
}

.InsertCode .cell-pn .fld-lc .fld-c {
    margin-left: 120px;
    margin-right: 0px;
}

.ImagePreview {
    margin: auto;
}

.iframeProps .cell-ph label {
    padding-top: 5px;
}

.tblSize .fld-lc + .fld-lc {
    margin-top: 10px;
}

.inittable + div div:first-child, .inittable + div + div div:first-child {
    margin-top: 6px;
}

.inittable + .fld-lc, .inittable + .fld-lc + .fld-lc {
    margin-top: 6px;
}

.inittable + div + div + button {
    margin-left: 182px;
    margin-top: 6px;
}

.ImageGallery {
    background-color: white;
    border: solid 1px #D2D4D7;
}

.rowBefore, .rowAfter, .colBefore, .colAfter, .delRow, .delCol {
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position-y: 3px;
    background-position-x: 7px;
    /*opacity: 1;*/
    padding-left: 15px;
    padding-right: 15px;
}

.imageUploader .imgleft, .imageUploader .imgright {
    position: absolute;
    bottom: 5px;
    text-decoration: none;
    border-bottom: 1px dotted;
    cursor: pointer;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #1a3dc1;
}

.imageUploader.disabled .imgleft, .imageUploader.disabled .imgright {
    display: none;
}

.imageUploader .imgleft {
    left: 10px;
}

.imageUploader .imgright {
    right: 10px;
}

.imageUploader .mainDiv {
    border: #D2D4D7 solid 1px;
    position: relative;
    margin: 3px 0px 0px 0px;
    background-color: white;
}

.imageUploader .imgDiv {
    position: relative;
    display: inline-block;
    overflow: hidden;
    margin-top: 16px;
    margin-left: 24px;
    margin-right: 25px;
    margin-bottom: 42px;
}

    .imageUploader .imgDiv img {
        position: absolute;
    }

.imageUploader .noImg, .imageUploader .selImg {
    font-size: x-large;
    display: table-cell;
    vertical-align: middle;
}

/*.imageUploader table {
	margin: 0 auto;
}*/
.imageUploader .textDiv {
    margin: 0 auto;
    text-align: center;
    position: absolute;
    bottom: 0px;
}

.imageUploader {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.fileUploader .textCell {
    border-left: solid 1px #D2D4D7;
    border-top: solid 1px #D2D4D7;
    border-bottom: solid 1px #D2D4D7;
    min-width: 100px;
    color: rgba(0, 0, 0, 0.5);
    font-style: italic;
    background-color: white;
}

.fileUploader .browseCell {
    border-right: solid 1px #D2D4D7;
    border-top: solid 1px #D2D4D7;
    border-bottom: solid 1px #D2D4D7;
    background-color: #D2D4D7;
}

.fileUploader .spacerCell {
    width: 2px;
}

.fileUploader .uploadCell {
    border: solid 1px #D2D4D7;
    background-color: #D2D4D7;
}

    .fileUploader .uploadCell button {
        display: none;
    }

.fileUploader:not(.disabled) .browseCell:hover, .fileUploader:not(.disabled) .uploadCell:hover, .fileUploader:not(.disabled) .browseCell.helicopter, .fileUploader:not(.disabled) .uploadCell.helicopter {
    background-color: #007ACC;
    background-color: var(--primary-color, #007ACC);
    color: RGBA(255, 255, 255, 0.87);
}

.fileUploader .browseCell, .fileUploader .uploadCell {
    text-align: center;
    cursor: pointer;
    padding: 0px 7px;
    width: 1px;
}

.fileUploader td {
    font-size: 13px;
    height: 24px;
}

.fileUploader .messageDiv.selected {
    font-style: normal;
    color: black;
}

.fileUploader .uploadDiv {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    overflow: hidden;
}

.fileUploader input[type=file] {
    z-index: 2000;
    opacity: 0;
    width: 100%;
}

.fileUploader [icon=ClearN] {
    margin: auto;
    position: absolute;
    right: 0px;
    z-index: 2001;
}

.fileUploader .innerDiv, .fileUploader .textCell {
    position: relative;
}

table.rich > tbody > tr > td, table.rich > tr > td {
    overflow: hidden;
    padding: 0px;
    vertical-align: top;
    position: relative;
}

table.rich {
    outline-style: none;
    background-color: white;
}

.rich div.htmlviewinner {
    position: absolute;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 10px;
    width: 100%;
    word-wrap: break-word;
}

    .rich div.htmlviewinner div.htmlviewinner {
        position: initial;
        overflow-x: initial;
        overflow-y: initial;
        padding: initial;
        width: initial;
        word-wrap: initial;
    }

.GridMain.Dash .GridHeader, .GridMain.Dash .GridRow, .GridMain.Dash .GridHeaderCell {
    border-top: none;
    border-left: none;
    border-right: none;
    font-size: 13px;
}

.Dashboards.design .GridMain.Dash .GridHeaderCell td:hover {
    background-color: #F5F7F8;
}

.GridMain.Dash .GridContentCell {
    border-bottom: none;
}

.Dashboards:not(.design) .GridMain.Dash .GridHeader:hover {
    opacity: 1;
    background-color: white;
    cursor: default;
}

.Dashboards.design .GridMain.Dash .GridHeader:hover {
    cursor: pointer;
}

.GridMain.Dash .GridHeader {
    color: RGBA(0, 0, 0, 0.87);
    background-color: White;
    border-bottom: #E0E4E8 1px Solid;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #e0e0e0;
    font-weight: 600;
    padding: 6px 3px;
    white-space: nowrap;
}

.GridMain.Dash .GridRow:not(.GridHeader) {
    background-color: #FFFFFF;
    border-bottom: #E0E4E8 1px dotted;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-bottom-color: #e0e0e0;
    overflow: hidden;
    padding: 3px 6px;
    height: 17px;
    vertical-align: bottom;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.GridMain .lang, .GridMainT .lang {
    float: right;
    position: relative;
    padding: 0px 5px;
    background-color: inherit;
}

.rtl .GridMain .lang, .rtl .GridMainT .lang {
    float: left;
    position: relative;
    padding: 0px 5px;
    background-color: inherit;
}

table[id$=L10nEditor] input[type=text] {
    margin: 5px;
}

/*------------------ Spinner CSS ------------------*/
@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

.spinner {
    min-width: 24px;
    min-height: 24px;
}

    .spinner:before {
        content: "Loading…";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 24px;
        height: 24px;
        margin-top: -16px;
        margin-left: -16px;
    }

    .spinner:not(:required):before {
        content: "";
        border-radius: 50%;
        border: 2px solid rgba(0, 0, 0, 0.3);
        border-top-color: rgba(0, 0, 0, 0.6);
        animation: spinner 0.6s linear infinite;
        -webkit-animation: spinner 0.6s linear infinite;
    }

.GridEditorText.multiLang {
    padding-right: 25px;
}

.GridEditorText.multiLangRTL {
    padding-left: 25px;
}

.empty-frame {
    display: table;
    width: 100%;
    height: 100%;
}

.empty-inner {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.empty-plaque {
    background-color: white;
    display: inline-block;
    border: solid 1px #bdbdbd;
    border-radius: 3px;
    font-size: 13px;
    background-repeat: no-repeat;
    background-position: right 8px top 50%;
    padding: 20px 70px 20px 30px;
    text-align: left;
}

    .empty-plaque > span {
        display: block;
        margin: 10px 0px;
    }

    .empty-plaque .part1 {
        font-weight: bold;
        font-size: 15px;
        color: rgba(0, 0, 0, 0.54);
    }

.empty .empty-plaque, .inq-filter-add .empty-plaque, .inq-add .empty-plaque {
    background-image: url(../../Icons/ListAddIcon.svg);
}

.inq-filter .empty-plaque, .emp-selector .empty-plaque, .inq .empty-plaque, .incomplete .empty-plaque {
    background-image: url(../../Icons/ListEmptyIcon.svg);
}

/*.emp-selector .empty-plaque, .inq .empty-plaque, .incomplete .empty-plaque{
	padding: 2px 15px 0px 38px;
	background-position: 10px 50%;
	background-image: url(../../Icons/Info.svg);
}*/
.inq .empty-plaque, .incomplete .empty-plaque, .emp-selector .empty-plaque, .empty-plaque .part2 {
    color: rgba(0, 0, 0, 0.54);
}

/*.inq .empty-plaque .part1, .incomplete .empty-plaque .part1, .emp-selector .empty-plaque .part1 {
	line-height: 25px;
	font-weight: normal;
}*/
/*.empty-frame.inq, .empty-frame.incomplete, .empty-frame.emp-selector{
    background-color: #e0e0e0;
}*/
.inq-filter-add.under420 .empty-plaque, .inq-filter.under380 .empty-plaque, .empty.under240 .empty-plaque, .inq-add.under400 .empty-plaque, .search .empty-plaque {
    padding: 55px 15px 0px 15px;
    background-position: 50% 7px;
    background-origin: border-box;
    text-align: center;
}

.search .empty-plaque {
    border: none;
    background-image: url("../../Icons/SearchIcon.svg");
}

.too-many-images {
    clear: both;
    height: 50px;
    text-align: center;
    line-height: 40px;
}

.lurkingAttrib td.tabCaption div[id$=tabDiv] {
    height: 1px;
}

.lurkingAttrib td.tabCaption table[id$=tabT] {
    height: auto;
    height: initial;
}

.lurkingAttrib .tabNormal {
    display: none;
}

.attributelist #ctl00_phF_form_t1 span.checkBox > label {
    width: 250px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.wideAttrib input[type=checkbox] {
    margin-left: 200px;
}

.wideAttrib span.checkBox > label {
    position: absolute;
    width: 200px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.SmartPanel.columns div[id$=selC] .ac {
    float: right;
    display: inline-block;
}

    .SmartPanel.columns div[id$=selC] .ac.ac-TabOff, .SmartPanel.columns div[id$=selC] .active .ac.ac-TabOn {
        margin-right: -21px;
        position: initial;
        /*float: right;
  display: inline-block;*/
        height: 24px;
        margin-top: -4px;
        padding-right: 0px;
        padding-left: 8px;
        margin-bottom: -6px;
        width: 52px;
    }

.SmartPanel.columns div[id$=selC] .active:not(.menuChecked) .ac.ac-TabOff {
    background: initial;
}

.SmartPanel.columns div[id$=selC] .ac.ac-TabOff {
    background: white;
}

.SmartPanel.columns div[id$=selC] .active .ac.ac-TabOn, .SmartPanel.columns div[id$=selC] .menuChecked .ac.ac-TabOff {
    background: var(--primary-color, #007ACC) !important;
}

.SmartPanel.columns div[id$=selC] .menuItem:not(.active) .ac.ac-TabOn {
    /*display: none;*/
    opacity: 0;
    height: 16px;
}

.SmartPanel.columns div[id$=availC] .menuSpacerL:not(.active) .ac.ac-TabOn, .SmartPanel.columns div[id$=availC] .ac.ac-TabOff {
    display: none;
}

.SmartPanel.columns div[id$=selC] .menuItem.active .menuSpacerL, .SmartPanel.columns div[id$=selC] .menuSpacerL.Off {
    text-overflow: ellipsis;
    overflow: hidden;
}

.SmartPanel.columns div[id$=selC] .menuSpacerL {
    margin-right: 0px;
}

.fileDialogInfo {
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
    border: #0278d7 solid 1px;
    border-radius: 3px;
    background: white;
    display: none;
}

    .fileDialogInfo .ac {
        color: #0278d7;
    }

    .fileDialogInfo.shown {
        display: block;
    }

    .fileDialogInfo .ac.cross {
        position: absolute;
        top: 50px;
        right: 13px;
    }

/*--------------- Styles for Microsoft Teams Integration ---------------*/
.Button.teamsImageButton {
    background-color: transparent;
    border: none;
    min-width: 25px;
    padding: 0px;
    position: relative;
}

    .Button.teamsImageButton:hover {
        background-color: #007ACC;
        background-color: var(--primary-color, #007ACC);
    }

    .Button.teamsImageButton:focus {
        border: 0px;
        outline: none;
    }

    .Button.teamsImageButton div qp-icon {
        height: 20px;
        width: 20px;
    }

.Button.teamsLargeButton {
    padding-right: 6px;
}

    .Button.teamsLargeButton div qp-icon {
        height: 40px;
        width: 40px;
    }

.teamsStatusIcon {
    left: -60px;
    pointer-events: none;
    position: absolute !important;
    top: 12px;
}

.teamsStatusLabel {
    left: 10px;
    position: absolute !important;
    top: 12px;
    max-width: 190px;
}

.teamsIconColorDark {
    fill: #5059C9;
}

.teamsIconColorLight {
    fill: #7B83EB;
}

.manufacturing-tree-split-container .splitterLC > div > div {
    display: flex;
    flex-direction: column;
}

.manufacturing-tree-form-view {
    flex-grow: 1;
    height: 1px;
}

    .manufacturing-tree-form-view > tbody > tr > td > div {
        height: 100%;
    }

.backcolor_blue {
    background-color: #4b86e5;
    background-color: var(--backcolor-blue, #4b86e5);
}

.backcolor_indigo {
    background-color: #6610f2;
    background-color: var(--backcolor-indigo, #6610f2);
}

.backcolor_purple {
    background-color: #6f42c1;
    background-color: var(--backcolor-purple, #6f42c1);
}

.backcolor_pink {
    background-color: #e83e8c;
    background-color: var(--backcolor-pink, #e83e8c);
}

.backcolor_red {
    background-color: #e14251;
    background-color: var(--backcolor-red, #e14251);
}

.backcolor_orange {
    background-color: #fd7e14;
    background-color: var(--backcolor-orange, #fd7e14);
}

.backcolor_yellow {
    background-color: #f2c541;
    background-color: var(--backcolor-yellow, #f2c541);
}

.backcolor_green {
    background-color: #4cad63;
    background-color: var(--backcolor-green, #4cad63);
}

.backcolor_teal {
    background-color: #20c997;
    background-color: var(--backcolor-teal, #20c997);
}

.backcolor_gray {
    background-color: #868e96;
    background-color: var(--backcolor-gray, #868e96);
}

.backcolor_graydark {
    background-color: #343a40;
    background-color: var(--backcolor-graydark, #343a40);
}

.backcolor_primary {
    background-color: #007c09;
    background-color: var(--backcolor-primary, #007c09);
}

.backcolor_info {
    background-color: #17a2b8;
    background-color: var(--backcolor-info, #17a2b8);
}

.backcolor_warning {
    background-color: #ffc107;
    background-color: var(--backcolor-warning, #ffc107);
}

qp-tree.spinner {
    pointer-events: none;
}

.qp-tabbed-tree-selector {
    background-color: #FFFFFF;
    box-shadow: 1px 3px 10px rgba(115, 115, 115, 0.7);
    display: flex;
    padding: 0px 16px;
    width: 600px;
}

    .qp-tabbed-tree-selector .grid-top-bar, .qp-tabbed-tree-selector .tree-main-toolbar {
        padding: 11px 0px 16px;
    }

.qp-tabbed-tree-selector-tab {
    height: 570px;
    max-height: 80vh;
    width: 600px;
}

.qp-tabbed-tree-selector button.qp-button {
    font-size: 14px;
}

    .qp-tabbed-tree-selector button.qp-button:focus {
        border: none;
    }

.branch-selector__node {
    background-color: white;
}

    .branch-selector__node.selected {
        color: #007ACC;
        color: var(--primary-color, #007ACC);
    }

    .branch-selector__node.highlight {
        color: white;
        background-color: #007ACC;
        background-color: var(--primary-color, #007ACC);
    }

@media screen and (-ms-high-contrast: active) {
    .branch-selector__node.highlight {
        background-color: white;
        color: black;
    }
}

.qp-tool-bar-wrapper {
    display: flex;
    min-height: 45px;
}

.branch-selector__branch-tree {
    background-color: #FFFFFF;
    box-shadow: 3px 3px 4px rgba(115, 115, 115, 0.7);
    z-index: 10000;
}

.extention-cord {
    z-index: 10000;
    box-sizing: border-box;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.5);
}

.qp-screen-title-with-caption {
    height: 45px;
    float: left;
}

.qp-screen-title-no-caption {
    height: 45px;
    float: left;
}

body {
    /* backward-compatibility with OLD UI */
}

    body .qp-checkbox label {
        width: calc(100% - 20px);
    }

    body .star-container {
        height: 45px;
        padding-inline-start: 5px;
    }

    body .withCaption > div > a {
        margin-top: 6px;
    }

    body div.qp-hyper-icon {
        display: block;
    }

    body .qp-tool-bar .qp-tool-bar-item .qp-tool-bar-button > qp-hyper-icon {
        display: table-cell;
        vertical-align: middle;
        height: 20px;
    }

    body qp-tool-bar div.qp-tool-bar {
        height: 40px;
        padding-bottom: 0;
    }

    body qp-tool-bar .items-list {
        height: initial;
    }

    body .qp-tool-bar .qp-tool-bar-item .qp-tool-bar-button {
        border-radius: initial;
        background-color: initial;
        padding: 5px 10px;
        height: 20px;
        line-height: 20px;
    }

    body .qp-tool-bar .qp-tool-bar-item {
        border-radius: initial;
        text-transform: uppercase;
        height: initial;
        margin: 3px 4px;
    }

        body .qp-tool-bar .qp-tool-bar-item .qp-tool-bar-button .qp-hyper-icon > img {
            max-height: 20px;
        }

    body .qp-tool-bar .qp-tool-bar-opener {
        border-radius: initial;
        height: 30px;
        padding: 5px 10px;
        margin: 3px;
    }

        body .qp-tool-bar .qp-tool-bar-opener qp-icon svg {
            width: 17px;
            height: 20px;
        }

    body .qp-tool-bar .qp-menu .qp-menu-button {
        height: 20px;
        line-height: 18px;
        padding: 5px 2px 5px 10px;
        box-sizing: content-box;
    }

    body qp-menu {
        display: inline-block;
        vertical-align: bottom;
    }

        body qp-menu .qp-menu {
            display: block;
            margin: 0;
            line-height: 24px;
            height: auto;
        }

    body .qp-menu-options {
        border-radius: initial;
        padding: 1px 2px;
    }

        body .qp-menu-options .qp-menu-item {
            margin: 1px 0;
        }

    body .qp-menu .qp-menu-button {
        text-transform: uppercase;
        height: 20px;
        line-height: 20px;
    }

    body qp-menu .qp-menu .qp-menu-opener {
        padding: 5px 4px 5px 1px;
        vertical-align: middle;
    }

    body qp-menu .qp-menu.qp-selected,
    body qp-menu .qp-menu.qp-selected .qp-menu-button,
    body qp-menu .qp-menu.qp-selected .qp-menu-opener,
    body qp-menu .qp-menu:hover,
    body qp-menu .qp-menu:hover .qp-menu-button:not(.disabled),
    body qp-menu .qp-menu:hover .qp-menu-opener {
        color: #FFFFFF;
        fill: #fff;
        background-color: #007ACC;
        background-color: var(--primary-color, #007ACC);
        border-radius: initial;
    }

    body .qp-tool-bar-menu {
        border-radius: initial;
    }

    body qp-screen-title a {
        margin-top: 12px;
    }

    body qp-button {
        display: inline;
    }

        body qp-button button.qp-button {
            border-radius: initial;
            height: 24px;
            text-transform: uppercase;
            font-size: 13px;
            background-color: #D2D4D7;
            border: 1px solid #D2D4D7;
            padding: 3px 6px 3px 6px;
        }

            body qp-button button.qp-button[disabled] {
                color: #333333 !important;
                opacity: 0.26 !important;
            }

            body qp-button button.qp-button:not([disabled]):hover,
            body qp-button button.qp-button.pushed {
                opacity: 0.87;
                background-color: var(--primary-color, #007ACC) !important;
                border-color: var(--primary-color, #007ACC) !important;
                color: #FFFFFF;
            }

            body qp-button button.qp-button:focus {
                background-color: rgba(0, 0, 0, 0.06);
                border: 1px solid #007ACC;
                border: 1px solid var(--primary-color, #007ACC);
            }

    body input.qp-text-editor {
        height: 24px;
        width: initial;
    }

        body input.qp-text-editor.size-xxs {
            width: 40px;
        }

        body input.qp-text-editor.size-xs {
            width: 70px;
        }

        body input.qp-text-editor.size-s {
            width: 100px;
        }

        body input.qp-text-editor.size-sm {
            width: 150px;
        }

        body input.qp-text-editor.size-m {
            width: 200px;
        }

        body input.qp-text-editor.size-xm {
            width: 250px;
        }

        body input.qp-text-editor.size-l {
            width: 300px;
        }

        body input.qp-text-editor.size-xl {
            width: 350px;
        }

        body input.qp-text-editor.size-xxl {
            width: 400px;
        }

    body textarea.qp-text-editor {
        resize: auto;
    }

    body input.qp-text-editor, body textarea.qp-text-editor {
        padding: 3px 6px;
        border-radius: initial;
    }

        body input.qp-text-editor[enabled=false],
        body input.qp-text-editor[disabled],
        body textarea.qp-text-editor[enabled=false],
        body textarea.qp-text-editor[disabled],
        body .qp-datetime__editor.ReadOnly {
            border-bottom-color: #E0E4E8;
            border-bottom-style: dotted;
        }

        body input.qp-text-editor[readonly]:focus, body textarea.qp-text-editor[readonly]:focus {
            border-bottom-color: #D2D4D7;
            border-bottom-style: dotted;
        }

    body .drop-down__editor {
        height: 24px;
        font-size: 13px;
        border-radius: initial;
    }

        body .drop-down__editor .editorCont {
            margin-right: 18px;
        }

        body .drop-down__editor .buttonsCont {
            padding-right: 4px;
        }

        body .drop-down__editor .drop-down__text {
            padding-right: 6px;
        }

    body .drop-down__options-pane {
        max-height: 210px;
        font-size: 13px;
        border: #D2D4D7 1px Solid;
        box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.64);
        -webkit-box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.64);
        -moz-box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.64);
        border-radius: 0;
    }

    body .drop-down__option.ddItem {
        padding: 2px 4px;
    }

    body .qp-datetime__editor {
        height: 24px;
        border-radius: initial;
    }

        body .qp-datetime__editor input {
            padding: 3px 6px;
        }

        body .qp-datetime__editor .buttonsCont,
        body .qp-datetime__editor .buttonsCont {
            right: 1px;
            padding-right: 0;
        }

            body .drop-down__editor .buttonsCont > qp-icon,
            body .qp-datetime__editor .buttonsCont > qp-icon {
                width: 15px;
                height: 15px;
            }

    body .qp-mail-editor {
        height: 24px;
        border-radius: initial;
    }

        body .qp-mail-editor .editorCont {
            margin-right: 18px;
        }

        body .qp-mail-editor input {
            padding: 0px 4px 0px 6px;
            box-sizing: border-box;
        }

        body .qp-mail-editor .buttonsCont {
            padding-right: initial;
        }

            body .qp-mail-editor .buttonsCont.inactive {
                display: block;
            }

    body .qp-checkbox-default {
        height: 24px;
    }

        body .qp-checkbox-default label {
            line-height: 24px;
        }

    body input.qp-text-editor:focus,
    body text.qp-text-editor:focus,
    body textarea.qp-text-editor:focus,
    body .drop-down__editor.focus,
    body .branch-selector__editor.focus,
    body .qp-datetime__editor.focus,
    body .qp-mail-editor.focus {
        border: 1px solid #007ACC;
        border: 1px solid var(--primary-color, #007ACC);
        box-shadow: 0px 0px 2px 0px #007ACC;
        box-shadow: 0px 0px 2px 0px var(--primary-color, #007ACC);
    }

    body .qp-checkbox input[type=checkbox]:focus {
        border: 1px solid #007ACC;
        border: 1px solid var(--primary-color, #007ACC);
        box-shadow: 0px 0px 4px 0px #007ACC;
        box-shadow: 0px 0px 4px 0px var(--primary-color, #007ACC);
    }

        body .qp-checkbox input[type=checkbox]:focus::after {
            display: none;
        }

    body .qp-tool-bar .qp-tool-bar-item.qp-connotation-default .qp-tool-bar-button:hover,
    body .qp-tool-bar .qp-tool-bar-item.minor-button.qp-connotation-default .qp-tool-bar-button:hover {
        background-color: #007ACC;
        background-color: var(--primary-color, #007ACC);
        fill: #fff;
        color: #fff;
    }

    body .qp-tool-bar .qp-tool-bar-item.qp-connotation-default .qp-tool-bar-button.disabled:hover {
        background-color: inherit;
        fill: inherit;
        color: inherit;
        cursor: default;
    }

    body .qp-tool-bar .qp-tool-bar-opener:hover {
        background-color: #007ACC;
        background-color: var(--primary-color, #007ACC);
        color: #fff;
        fill: #fff;
    }

    body .qp-tool-bar .qp-tool-bar-opener:focus {
        background-color: #007ACC;
        background-color: var(--primary-color, #007ACC);
        color: #fff;
        fill: #fff;
        box-shadow: none;
    }

    body .drop-down__editor.ReadOnly {
        border-bottom-color: #E0E4E8;
        border-bottom-style: dotted;
        border-width: 1px;
    }

    body .drop-down__editor .drop-down__display-text.drop-down__invisible + span + span.drop-down__text {
        display: inline;
        line-height: 22px;
    }

    body .drop-down__editor .drop-down__text {
        padding: 0px 6px 0px 6px;
        border-radius: initial;
        background-color: initial;
        height: unset;
    }

    body .qp-selector input.qp-text-editor {
        padding: 0 0 0 6px;
    }

    body .qp-selector input.editor-input {
        padding: 0 4px 0 6px;
    }

    body .qp-field-editor__button {
        margin: 2px 2px 2px 0;
    }

    body .grid-content-table > tbody > tr.alt-row > td {
        background-color: #F2F6FA;
        background-color: var(--altrow-color, #F2F6FA);
        border-bottom: 1px solid var(--activerow-color, #E0E4E8);
    }

    body .qp-informer-rack {
        display: block;
    }

    body .qp-infromer {
        width: 260px;
        padding: 15px 33px 17px 43px;
        border-radius: initial;
        line-height: 17.25px;
        font-size: 15px;
        left: -355px;
        top: 14px;
        right: 15px;
    }

@media (min-width: 320px) {
    body .qp-infromer {
        left: -290px;
    }
}

body .qp-infromer.qp-status-error {
    border-left: 7px solid #f00;
}

body .qp-infromer.qp-status-info {
    border-left: 7px solid #47A824;
}

body .qp-infromer.qp-status-warning {
    border-left: 7px solid #F6C244;
    padding-bottom: 65px;
}

body .qp-infromer.qp-status-info .qp-status-icon svg {
    fill: #47A824;
}

body .qp-infromer.qp-status-error .qp-status-icon svg {
    fill: #f00;
}

body .branch-selector__editor {
    height: 25px;
    border-radius: initial;
}

    body .branch-selector__editor input {
        height: 23px;
        border-radius: initial;
        padding: 0 4px 0 6px;
        margin: 0;
    }

body .branch-selector__display-text {
    padding: 0 0 0 6px;
    line-height: 23px;
}

body .branch-selector__button {
    border-radius: initial;
    width: 18px;
    margin: 0;
    padding: 5px 4px;
}

body .qp-suggester {
    max-height: 168px !important;
    background-color: #FFFFFF;
    box-shadow: 3px 3px 4px rgba(115, 115, 115, 0.7);
    border-radius: 0;
    padding: 0;
    z-index: 10000;
}

    body .qp-suggester:before, body .qp-suggester:after {
        display: none;
    }

    body .qp-suggester.show-above {
        box-shadow: 3px -1px 4px rgba(115, 115, 115, 0.7);
    }

body qp-suggestion {
    height: 24px;
    line-height: 24px;
    padding: 0 6px;
    font-size: 13px;
}

    body qp-suggestion.suggestion-highlight {
        color: white;
        background-color: #007ACC;
        background-color: var(--primary-color, #007ACC);
    }

@media screen and (-ms-high-contrast: active) {
    body qp-suggestion.suggestion-highlight {
        background-color: white;
        color: black;
    }
}

body qp-suggestion mark {
    padding-top: revert;
    padding-bottom: revert;
    background: revert;
}

body .qp-suggester .no-results-found {
    padding: 5px 0.5em;
    color: #888;
    font-size: 13px;
}

    body .qp-suggester .no-results-found svg {
        display: inline-block;
    }

body .loading-placeholder.loading {
    all: revert;
    padding: 4px 6px;
    font-size: 13px;
}

    body .loading-placeholder.loading:after {
        display: none;
    }

body .calendar {
    padding: 0;
    border-radius: 0;
    border: 1px solid #D2D4D7;
    box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.64);
    background-color: #fff;
}

    body .calendar .calendarD {
        border-radius: 0;
        background: inherit;
    }

        body .calendar .calendarD:hover {
            border-radius: 0;
            background-color: #007ACC;
            background-color: var(--primary-color, #007ACC);
            color: #FFFFFF;
        }

    body .calendar .calendarWN, body .calendar .calendarWN:hover {
        color: rgba(0, 0, 0, 0.64);
        background-color: #F5F7F8;
        background-color: var(--background-color, #F5F7F8);
    }

    body .calendar .calendarF {
        padding: 5px 12px;
        text-align: left;
    }

body .calendarMT select {
    border-radius: 0;
    border: 1px solid #808080;
    height: 19px;
}

body .qp-calendar span.month-select > qp-icon,
body .qp-calendar span.year-select > qp-icon {
    top: 2px;
}

body .qp-calendar .custom-items {
    padding-left: 0;
}

    body .qp-calendar .custom-items table {
        background: none;
        border-spacing: 2px;
        border-radius: 0;
    }

body .qp-lr {
    width: 200px;
    padding: 15px 40px 17px 42px;
    font-size: 16px;
    border-radius: 0;
}

    body .qp-lr.qp-status-aborted {
        border-left: 7px solid #f00;
    }

    body .qp-lr.qp-status-completed {
        border-left: 7px solid #47A824;
    }

    body .qp-lr.qp-status-inprocess {
        border-left: 7px solid #F6C244;
        padding-bottom: 65px;
    }

    body .qp-lr.qp-status-completedwithwarning {
        border-left: 7px solid #F6C244;
    }

    body .qp-lr .qp-lr-timer {
        position: absolute;
        bottom: 45px;
        left: 42px;
        color: rgba(0, 0, 0, 0.5);
    }

    body .qp-lr .qp-lr-cancel {
        padding: 5px 13px;
        border-radius: 0;
        height: auto;
        text-transform: uppercase;
    }

    body .qp-lr.qp-status-completed .qp-status-icon svg {
        fill: #47A824;
    }

    body .qp-lr.qp-status-aborted .qp-status-icon svg {
        color: #EE4051;
    }

    body .qp-lr.qp-status-completedwithwarning .qp-status-icon svg {
        fill: #F6C244;
    }
