<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body .ui-widget-overlay {
    background-position: center center;
    background-repeat: no-repeat;
    opacity: .7;
    background-image: none;
}

body .ui-widget-overlay.waiting {
    background-image: url(../icon_loading.svg);
}
body .ui-dialog .ui-dialog-buttonpane button {
  /* padding: .5em; */
}
body .ui-widget-content {
  border: none;
}
/* dialog immer ganz im vordergrund */
body .ui-dialog {
    z-index: 10000;
    position: fixed;
    resize: both;
    overflow: hidden;
    /* top: 25% !important; */
    width: auto !important;
    max-width: 50%;
    min-width: 300px;
}

body .ui-dialog .ui-dialog-content {
    max-height: 500px !important;
    overflow-y: auto;
    margin-top: 1em;
    text-align: left;
}
body .ui-dialog .ui-dialog-content ol,
body .ui-dialog .ui-dialog-content ul {
    margin: 10px 18px;
}


body .ui-front {
    z-index: 10000;
}

body .ui-dialog-buttonset button.ui-button.ui-widget {
    padding: 8px;
    font-size: 14px;
    height: 40px;
    min-width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3px;
}
body .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
	display: flex
}

body #dialog-confirm p {
    padding-bottom: 1em
}

/* verbirgt den close-button von alert-dialog */
body .no-close .ui-dialog-titlebar-close {
    display: none;
}

body .ui-dialog .ui-dialog-content .error ul {
    color: red;
    list-style: none;
    padding-left: 0;
}

/* TOOLTIP */
body .tp {
    background-color: #000 !important;
    color: #fff !important;
    border: 1px solid #fff !important;
    text-align: left !important;
}

/* TOOL-MENU */
li.toolSubMenu &gt; ul {
    min-width: 200px;
    position: absolute;
    list-style: none;
    display: none;
    background-color: #fff;
    z-index: 2;
    left: 14px;
}

ul.tools {
    right: 0;
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-end;
    font-size: 14px;
    line-height: 19px;
    /* padding: 25px 0 0 0; */
}

ul.tools li {
    width: auto;
    position: relative;
    padding: 10px 10px 0 10px;
}

ul.tools li.selected &gt; span, ul.tools li.selected &gt; a {
    font-weight: 600;
}

ul.tools li.toolSubMenu &gt; span {
    padding-right: 8px;
    cursor: pointer;
    display: block;
}

ul.tools li.toolSubMenu &gt; span:after {
    display: inline-block;
    position: relative;
    top: -1px;
    left: 3px;
    font-size: 11px;
    line-height: 14px;
    content: " \25BE";
}
/* datatable fixedHeader */
div.dtfh-floatingparenthead {
    background-color: #fff;
}


/* printBox */
.printTab {
    display: none;
}
.printTab.active {
    display: block;
}
#pleasewaitDL {
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background-color: #fffc;
    background-image: url(../icon_loading.svg);
    background-repeat: no-repeat;
    background-position: center;
}


#debuggerBox {
    position: fixed;
    top: 34px;
    height: 500px;
    /* height:  100%; */
    right: 0;
    border: 1px solid;
    overflow: scroll;
    resize: both;
    background-color: #ccc;
    font-size: 12px;
    z-index: 20000;
    width: 50%;
}
#debuggerBox &gt; div {
    position: fixed;
    z-index: 2;
    top: 35px;
    right: 17px;
    background-color: red;
    color: transparent;
    background-image: url(icon_cross_black.svg);
    background-size: 13px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}
</pre></body></html>