@charset "UTF-8";

/* Specific fonts for text and code snippets: Open Sans and Source Code Pro. The *.woff format is supported by all major browsers (http://caniuse.com/#feat=woff) */
@font-face {
  font-family: 'Open Sans Light';
  src: local('Open Sans Light'), local('OpenSans-Light'), url('/fonts/OpenSans-Light.woff') format('woff');
}
@font-face {
  font-family: 'Open Sans Italic';
  src: local('Open Sans Italic'), local('OpenSans-Italic'), url('/fonts/OpenSans-Italic.woff') format('woff');
}
@font-face {
  font-family: 'Open Sans Regular';
  src: local('Open Sans'), local('OpenSans-Regular'), url('/fonts/OpenSans-Regular.woff') format('woff');
}
@font-face {
  font-family: 'Open Sans Semibold';
  src: local('Open Sans Semibold'), local('OpenSans-SemiBold'), url('/fonts/OpenSans-Semibold.woff') format('woff');
}
@font-face {
  font-family: 'Source Code Pro Light';
  src: local('Source Code Pro Light'), local('SourceCodePro-Light'), url('/fonts/SourceCodePro-Light.woff') format('woff');
}
@font-face {
  font-family: 'Source Code Pro Regular';
  src: local('Source Code Pro'), local('SourceCodePro-Regular'), url('/fonts/SourceCodePro-Regular.woff') format('woff');
}
@font-face {
  font-family: 'Source Code Pro Bold';
  src: local('Source Code Pro Bold'), local('SourceCodePro-Bold'), url('/fonts/SourceCodePro-Bold.woff') format('woff');
}
@font-face {
  font-family: 'Font Awesome Solid';
  src: url("/fonts/fa-solid-900.woff2") format("woff2");
}
@font-face {
  font-family: 'Font Awesome Regular';
  src: url("/fonts/fa-regular-400.woff2") format("woff2");
}
@font-face {
  font-family: 'Font Awesome Brands';
  src: url("/fonts/fa-brands-400.woff2") format("woff2");
}
.far,.fa-regular {
  font-family: 'Font Awesome Regular';
  font-weight: normal;
}
.fas,.fa-solid {
  font-family: 'Font Awesome Solid';
  font-weight: normal;
}
.fab,.fa-brands {
  font-family: 'Font Awesome Brands';
  font-weight: normal;
}

:root {
  --text-light-font: 'Open Sans Light', Verdana, Arial, sans-serif;
  --text-normal-font: 'Open Sans Regular', Verdana, Arial, sans-serif;
  --text-bold-font: 'Open Sans Semibold', Verdana, Arial, sans-serif;
  --text-italic-font: 'Open Sans Italic', Verdana, Arial, sans-serif;
  --code-light-font: 'Source Code Pro Light', monospace;
  --code-normal-font: 'Source Code Pro Regular', monospace;
  --code-bold-font: 'Source Code Pro Bold', monospace;
  --main-font-size-xl: 18px;
  --main-font-size-l: 16px;
  --main-font-size-m: 14px;
  --main-font-size-s: 13px;
  --main-font-size-xs: 12px;
  --max-page-width: 1500px;
  --nav-pane-width: 360px;
}

/* Force all elements to behave according to the border-box box-sizing model: http://caniuse.com/#search=border-box */
* {
  box-sizing: border-box;
}
/* 
 * Use font sizes relative to a base font size with rem (root em) units: http://caniuse.com/#rem 
 * Use rem units for height, width, padding and margins: 15px = 1em = 1rem
 */
html {
  font-family: var(--main-font-family);
  font-size: var(--main-font-size-m);
  line-height: 1.4;
}
body {
  margin: 0;
  padding: 0;
  background-color: var(--theme-background-color);
  color: var(--main-font-color);
}
pre, code, tt {
  font-family: var(--code-normal-font);
  font-size: var(--main-font-size-s);
}
code, tt {
  display: inline-block;
  padding: 2px 4px;
  background-color: var(--trans-gray);
  border-radius: 3px;
  margin: 1px;
}
pre {
  background-color: var(--trans-gray);
  padding: 10px 15px;
  overflow-x: auto;
  border-radius: var(--theme-border-radius);
}
/* Provide for code tags inside pre tags */
pre code {
  padding: 0;
  background-color: transparent;
}
a {
  color: var(--theme-link-color);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
strong,b {
  font-weight: normal;
  font-family: var(--text-bold-font);
}
em,i {
  font-style: normal;
  font-family: var(--text-italic-font);
}
h1,h2,h3,h4,h5,h6,
h1 a,h2 a,h3 a,h4 a,h5 a,h6 a,
h1 a:hover,h2 a:hover,h3 a:hover,h4 a:hover,h5 a:hover,h6 a:hover {
  margin: 20px 0 15px 0;
  font-family: var(--text-bold-font);
  font-weight: normal;
}
h1 {
  font-size: 18px;
}
h2 {
  font-size: 16px;
}
h3 {
  font-size: var(--main-font-size-m);
  font-family: var(--text-bold-font);
}
h4,h5,h6 {
  margin: 20px 0 10px 0;
  font-size: var(--main-font-size-m);
  font-family: var(--text-italic-font);
}
div.ish-header {
  margin: 0 0 25px 0;
  font-size: 20px;
  font-family: var(--text-bold-font);
}
div.ish-sub-header {
  margin: 30px 0 20px 0;
  font-size: 16px;
  font-family: var(--text-bold-font);
}
h1+h2, h2+h3, h3+h4, h4+h5, h5+h6 {
  margin-top: 10px;
}
blockquote {
  margin: 10px 0;
  padding: 10px 15px;
  border-left: 3px solid var(--table-border-color);
}
blockquote > p:first-child {
  margin-top: 0;
}
blockquote > p:last-child {
  margin-bottom: 0;
}
blockquote > blockquote {
  border: none;
  padding: 0;
  margin: 0;
}
/* CSS based heading numbering. Classes are set by Javascript helper function. */
body { counter-reset: h1-cnt; }
.ish-css-h1   { counter-reset: h2-cnt; }
.ish-css-h2   { counter-reset: h3-cnt; }
.ish-css-h3   { counter-reset: h4-cnt; }
.ish-css-h4   { counter-reset: h5-cnt; }
.ish-css-h1::before { counter-increment: h1-cnt; content: counter(h1-cnt) ". "; }
.ish-css-h2::before { counter-increment: h2-cnt; content: counter(h1-cnt) "." counter(h2-cnt) ". "; }
.ish-css-h3::before { counter-increment: h3-cnt; content: counter(h1-cnt) "." counter(h2-cnt) "." counter(h3-cnt) ". "; }
.ish-css-h4::before { counter-increment: h4-cnt; content: counter(h1-cnt) "." counter(h2-cnt) "." counter(h3-cnt) "." counter(h4-cnt) ". "; }
.ish-css-h5::before { counter-increment: h5-cnt; content: counter(h1-cnt) "." counter(h2-cnt) "." counter(h3-cnt) "." counter(h4-cnt) "." counter(h5-cnt) ". "; }

/* ------ styles for new overlay system based on ovl.js ------- */
tooltip,overlay,dialog,suggest {
  background-color: var(--overlay-background-color);
  border: 1px solid var(--overlay-border-color);
}
tooltip,overlay,suggest {
  position: absolute;
  display: none;
}
dialog {
  position: fixed;
  top: 20%;
  padding: 0;
  background-color: var(--overlay-background-color);
  color: var(--main-font-color);
  min-width: 350px; /* To provide room for inline flatpickr */
}
tooltip {
  padding: 3px 4px;
  font-size: var(--main-font-size-xs);
}
suggest {
  max-height: 400px;
  overflow: auto;
}
multilist {
  display: block;
  padding: 5px 0 0 5px;
}
multilist > div > span {
  display: inline-block;
  cursor: pointer;
  padding: 0 5px;
}
multilist > div {
  padding: 3px 0;
  font-size: var(--main-font-size-s);
}
overlay section,suggest section {
  border-bottom: 1px solid var(--overlay-border-color);
}
overlay section:last-child {
  border-bottom: none;
}
overlay section.ish-active,suggest section.ish-active {
  background-color: var(--accent-background-color);
}
overlay section.ish-active a {
  color: var(--accent-font-color);
}
dialog header, dialog footer,overlay header, overlay section,suggest section {
  padding: 10px 15px;
}
dialog section {
  padding: 10px 15px 5px 15px;
}
dialog section > div:first-child {
  font-size: var(--main-font-size-s);
  padding-bottom: 3px;
}
dialog section > div:nth-child(3) {
  font-size: var(--main-font-size-s);
  padding-top: 5px;
}
dialog header, overlay header {
  text-align: center;
  background-color: var(--table-border-color);
  border-bottom: 1px solid var(--overlay-border-color);
}
dialog footer {
  padding-bottom: 15px;
}
[inert],dialog::backdrop {
  opacity: var(--overlay-backdrop-opacity);
}
[overlay],[dialog],suggest section {
  cursor: pointer;
}
p {
  margin: 10px 0;
}
p:empty {
  display: none;
}
li {
  margin: 10px 0;
}
li > p {
  margin: 0;
}
details {
  padding: 10px 15px;
  margin: 5px 0;
}
details+details {
  margin-top: 10px;
}
summary {
  color: var(--theme-link-color);
  cursor: pointer;
  outline: none;
}
summary:hover {
  text-decoration: underline;
}
button {
  background: none;
  border: none;
  cursor: pointer;
}
/* Firefox hat ganz eigenen Stil, ist aber, im Gegensatz zu Chrome editierbar. */
optgroup {
  font-weight: normal;
  padding: 0.2rem 0 0 0.5rem;
  font-style: normal;
  color: #757575;
}
input,textarea,select,.ish-input-box {
  font-family: var(--text-normal-font);
  font-size: var(--main-font-size-s);
  font-weight: normal;
  border-style: solid;
  border-color: var(--input-border-color);
  border-width: 2px;
  border-radius: 0;
  background-color: var(--input-background-color);
}
textarea {
  padding: 5px 7px;
  color: var(--main-font-color);
}
select {
  line-height: 27px;
  padding: 0 28px 0 6px;
  color: var(--main-font-color);
  appearance: none;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  background-image: url(/img/system/caret.png);
}
input {
  line-height: 27px;
  padding: 0 6px;
}
input[type=submit],input[type=button] {
  line-height: 29px;
  border: 0;
  margin-left: 1px;
  font-size: var(--main-font-size-s);
  padding: 0 8px;
  color: #ffffff;
  border-radius: var(--input-border-radius);
  text-transform: uppercase;
  -webkit-appearance: none;
}
input[type=submit]:hover,input[type=button]:hover {
  opacity: 0.8;
}
textarea[required],input[required],select[required] {
  box-shadow: inset -3px 0 var(--input-required-color);
}
input::placeholder {
  color: var(--input-placeholder-color);
}
input[disabled] {
  opacity: 0.5;
}
input:focus,textarea:focus,select:focus {
  outline: none;
}
input+input {
  margin-left: 1px;
}
table {
  border-collapse: collapse;
}
img {
  border: none;
}
div#ish-mid img {
  filter: brightness(var(--main-image-brightness));
}
div#ish-mid img:hover {
  filter: none;
}

/************************ sticky container *******************/
.ish-stick-to-top {
  position: sticky;
  top: 0;
}
.ish-stick-to-bottom {
  position: sticky;
  bottom: 0;
}

/************************ panels *******************/
.ish-panel-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.ish-panel {
  flex: 1 0 500px;
  padding: 20px;
  border: 2px solid var(--theme-background-color);
}
.ish-panel.ish-primary {
  color: #fff;
  letter-spacing: 0.5px;
}
.ish-panel.ish-primary a {
  color: #fff;
  text-decoration: underline;
}
.ish-panel-header {
  padding-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/************************ list styles *******************/
ul.ish-ul {
  margin: 0;
  padding: 2px 0;
  list-style-position: inside;
  list-style-type: square;
}
ul.ish-ul > li {
  margin: 0;
}

/******************** HTML ad-hoc flexbox styles ***************************/
.flex-rows-left {
  display: flex;
  flex-direction: row;
  justify-content: left;
}
.flex-rows-center {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.flex-columns {
  display: flex;
  flex-direction: column;
}
/* flex: <'flex-grow'> <'flex-shrink'> <'flex-basis'> */
.flex-00a {
  flex: 0 0 auto;
}
.flex-01a {
  flex: 0 1 auto;
}
.flex-11a {
  flex: 1 1 auto;
}
/******************** new HTML page skeleton styles ****************************/
div#ish-root {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
div.ish-top,
div.ish-end {
  flex: 0 0 auto;
  overflow-x: auto;
}
div#ish-mid {
  flex: 1 1 auto;
  display: flex;
  flex-direction: row;
  padding-top: 10px;
}
div#ish-mid,
div.ish-end {
  width: 100vw;
  max-width: var(--max-page-width);
  margin: auto;
}
div#ish-left,
div#ish-right {
  flex: 0 0 var(--nav-pane-width);
  vertical-align: top;
  background-color: var(--navi-background-color);
}
div#ish-left {
  border-right: 10px solid var(--theme-background-color);
}
div#ish-right {
  border-left: 10px solid var(--theme-background-color);
}
div#ish-main {
  flex: 1 1 auto;
  vertical-align: top;
  padding: 10px 15px;
  background-color: var(--main-background-color);
}
div#ish-hidden {
  display: none;
}
@media screen and (max-width: 1300px) {

  div#ish-left,div#ish-right {
    flex-basis: 340px;
  }
}
@media screen and (max-width: 1200px) {

  div#ish-left,div#ish-right {
    flex-basis: 320px;
  }
}
@media screen and (max-width: 1100px) {

  div#ish-left,div#ish-right {
    flex-basis: 300px;
  }
}
@media screen and (max-width: 1000px) {

  div#ish-left,div#ish-right {
    flex-basis: 280px;
  }
}
@media screen and (max-width: 900px) {

    div#ish-left,div#ish-right {
        flex-basis: 260px;
    }
}
@media screen and (max-width: 800px) {

  div#ish-mid {
    scroll-snap-type: x proximity;
    overflow-x: auto;
  }
  div#ish-main {
    flex: 0 0 97vw;
    padding: 10px;
    scroll-snap-align: end;
  }
  /* Hide elements that are marked for desktop view only. */
  .media-no-mobile {
    display: none !important;
  }
  div.ish-tophead {
    position: sticky;
    top: 0;
  }
  div.ish-panel {
    flex: 1 1 auto;
    padding: 10px;
    border: none;
  }
  :root {
    --media: mobile;
  }
}
@media screen and (min-width: 901px) {

  /* Hide elements that are marked for mobile view only. */
  .media-no-desktop {
    display: none !important;
  }
  :root {
    --media: desktop;
  }
}

/******************** NEW HTML area styles for TOP nodes ***********************/
ul.ish-tophead,ul.ish-domains,ul.ish-footer,ul.ish-cmdlist {
  display: flex;
  align-items: center;
  list-style-type: none;
  margin: 0;
  gap: 10px;
  padding: 0 10px;
  color:  #fff;
}
ul.ish-tophead > li,ul.ish-domains > li,ul.ish-footer > li,ul.ish-cmdlist > li {
  margin: 0;
}
ul.ish-tophead a,ul.ish-domains a {
  color: #fff;
}
ul.ish-tophead,ul.ish-footer {
  height: 40px;
}
ul.ish-domains,ul.ish-footer {
  justify-content: center;
}
ul.ish-cmdlist {
  color: var(--theme-link-color);
  overflow-x: auto;
  min-height: 55px;
}
ul.ish-cmdlist a {
  color: var(--theme-link-color);
}
ul.ish-cmdlist input {
  line-height: 32px;
}
li.ish-tophead-label,li.ish-tophead-link {
  flex: 0 0 auto;
}
li.ish-tophead-label {
  font-family: var(--text-light-font);
}
li.ish-tophead-label a:hover {
  text-decoration: none;
}
li.ish-tophead-icon {
  flex: 0 0 100px;
  padding-top: 7px; /* push icon down to align with text */
}
li.ish-tophead-icon img {
  opacity:0.5; /* have background color shine through logo  */
}
li.ish-tophead-separator {
  flex: 1 1 auto;
}
li.ish-tophead-link {
  padding-left: 10px;
}
ul.ish-domains span {
  opacity: 0.5;
}
li.ish-domain-link {
  flex: 0 1 auto;
  padding: 20px 15px;
  text-align: center;
  font-size: var(--main-font-size-l);
}
li.ish-domain-link.ish-active {
  background-color: rgb(255 255 255 / 15%);
}
li.ish-cmdlist-link {
  flex: 0 0 auto;
  padding: 0 5px;
}
li.ish-cmdlist-left, li.ish-cmdlist-right {
  flex: 1 5 100px;
  padding: 0;
}
li.ish-cmdlist-right {
  text-align: right;
}
li.ish-cmdlist-link.ish-active > a {
  color: var(--accent-font-color);
  font-family: var(--text-bold-font);
}
ul.ish-footer {
  gap: 25px;
  color: var(--solid-gray);
  width: 100%;
}
ul.ish-footer a {
  color: var(--solid-gray);
}
ul.ish-footer a:hover {
  color: #fff;
}
ul.ish-footer > li {
  flex: 0 0 auto;
}
ul.ish-footer > li:last-child {
  flex: 1 1 auto;
  text-align: right;
}
div.ish-tophead,div.ish-footer {
  background-color: var(--tophead-background-color);
}
div.ish-cmdlist {
  background-color: var(--navi-background-color);
}

/******************** HTML area styles for TOP nodes ***********************/
div.ish-mobile-masthead,
div.ish-mobile-masthead a {
  color: #fff;
}
div.ish-mobile-masthead > ul {
  display: flex;
  align-items: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
div.ish-mobile-masthead {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 11; /* to stay on top of overlays (z-index: 10) */
}
div.ish-mobile-masthead > ul {
  display: flex;
  padding-left: 15px;
  padding-right: 15px;
}
div.ish-mobile-masthead > ul:first-child {
  align-items: flex-start;
  font-size: 1.1rem;
  border-bottom: 1px solid #fff;
}
div.ish-mobile-masthead > ul:last-child {
  align-items: flex-end;
}
div.ish-mobile-masthead > ul > li {
  padding-top: 10px;
  padding-bottom: 10px;
  flex: 1 1 auto;
}
div.ish-mobile-masthead > ul > li:last-child {
  text-align: right;
}
div.ish-mobile-overlay .ish-navigation-label {
  padding-top: 20px;
}
div.ish-mobile-overlay .ish-navigation-item {
  padding: 5px 30px;
}
div.ish-mobile-overlay .ish-navigation-sub-item {
  padding: 5px 50px;
}
div.ish-mobile-overlay .ish-filter-box,
div.ish-mobile-overlay .ish-navigation-box {
  box-shadow: none;
  border: none;
}
/****************** HTML area styles for MAIN nodes *******************/
div.ish-document-navigation {
  display: flex;
  align-items: center;
  font-size: var(--main-font-size-s);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--table-border-color);
  margin-bottom: 10px;
  gap: 15px;
}
div.ish-document-navigation > div {
  flex: 0 1 auto;
  text-align: left;
}
div.ish-document-navigation > div:last-child {
  flex: 1 1 auto;
  text-align: right;
}
div.ish-document-navigation > div > a,
div.ish-document-navigation > div > div,
div.ish-document-navigation > div > form {
  display: inline-block;
}
div.ish-document-navigation > div:last-child > div {
  padding-left: 15px;
}
a.ish-search-breadcrumb {
  display: inline-block;
  padding: 2px 5px;
  margin: 1px;
  background-color: var(--trans-gray);
  font-size: var(--main-font-size-s);
}
div.ish-document-title {
  font-size: 1.5rem;
  line-height: 30px;
}
div.ish-tree-breadcrumbs {
  font-size: var(--main-font-size-s);
}
div.ish-document-link,
div.ish-search-link {
  font-size: var(--main-font-size-xs);
  margin-bottom: 5px;
}
div.ish-search-pager {
  margin: 20px 0;
}
div.ish-search-pager .ish-active a {
  color: var(--accent-font-color);
  font-family: var(--text-bold-font);
}
div.ish-search-pager > div {
  display: inline-block;
  padding: 0 15px;
  font-size: var(--main-font-size-s);
  letter-spacing: 0.5px;
}
div.ish-search-pager > div:first-child {
  padding-left: 0;
}
div.ish-bad-status {
  margin-left: auto;
  margin-right: auto;
  margin-top: 15%;
  min-width: 150px;
  max-width: 250px;
  text-align: center;
  background-color: var(--solid-yellow);
  border-radius: var(--theme-border-radius);
}
div.ish-bad-status > div {
  padding: 10px;
}
div.ish-bad-status > div:first-child {
  border-bottom: 2px solid #fff;
  color: #fff;
  font-size: 1.5rem;
}
div.ish-bad-status-retry {
  margin: 40px auto 0 auto;
  text-align: center;
}

/************************ HTML area styles for END nodes *******************/
.ish-footer > div {
  flex: 1 1 auto;
  text-align: center;
}
.ish-footer > div:first-child {
  text-align: left;
}
.ish-footer > div:last-child {
  text-align: right;
}
.ish-footer > div > div:first-child {
  font-family: var(--text-normal-font);
}
.ish-links {

}
.ish-links > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.ish-links > ul > li {
  display: inline-block;
  padding: 0 10px;
}

/************************ Code highlighter styles *******************/
.hljs-comment,.hljs-quote {
  color: var(--solid-gray);
}
.hljs-keyword,.hljs-selector-tag,.hljs-addition {
  color: var(--solid-green);
}
.hljs-number,.hljs-string,.hljs-meta .hljs-meta-string,.hljs-literal,.hljs-doctag,.hljs-regexp {
  color: var(--solid-purple);
}
.hljs-title,.hljs-section,.hljs-name,.hljs-selector-id,.hljs-selector-class {
  color: var(--solid-blue);
}
.hljs-attribute,.hljs-attr,.hljs-variable,.hljs-template-variable,.hljs-class .hljs-title,.hljs-type {
  color: var(--solid-yellow);
}
.hljs-symbol,.hljs-bullet,.hljs-subst,.hljs-meta,.hljs-meta .hljs-keyword,.hljs-selector-attr,.hljs-selector-pseudo,.hljs-link {
  color: var(--solid-orange);
}
.hljs-built_in,.hljs-deletion {
  color: var(--solid-red);
}
.hljs-formula {
  background: #073642;
}
.hljs-emphasis {
  font-style: italic;
}
.hljs-strong {
  font-family: var(--code-bold-font);
}

/************************ HTML5 Aufklappbereiche auf Basis von <details> *******************/
details.ish-klapp-box {
  background-color: var(--trans-gray);
  border-radius: var(--theme-border-radius);
}

/************************ FlapTemplate styles *******************/
.ish-flap {
  margin: 15px 0;
}
.ish-flap-prefix {
  font-size: var(--main-font-size-s);
}
.ish-flap > details {
  padding: 0;
}
.ish-flap-body {
  margin-top: 10px;
  border: 1px solid var(--table-border-color);
  padding: 10px;
}
/************************ Intranet and SWS list styles ************************/
ul.ish-linklist,
ul.ish-rsslist {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
ul.ish-linklist > li {
  display: inline-block;
  width: 330px;
  margin: 2px 8px 2px 0;
  border: 1px solid var(--table-border-color);
  border-radius: var(--theme-border-radius);
  padding: 8px 10px;
  white-space: nowrap;
  overflow-x: hidden;
  line-height: 1.2rem;
  text-align: left;
}
ul.ish-linklist > li img {
  height: 1rem;
}
ul.ish-rsslist > li {
  font-size: var(--main-font-size-s);
  padding: 3px 0;
}
ul.ish-linklist span[class^="fa"] {
  color: var(--solid-gray);
}
/************************ ListTemplate styles *******************/
.ish-props {
  display: flex;
  flex-wrap: wrap;
}
.ish-props.ish-props-form {
  border: 1px solid var(--table-border-color);
  border-radius: var(--input-border-radius);
  padding: 20px;
  margin-bottom: 20px;
}
.ish-props-section {
  flex: 1 1 auto;
  background-color: var(--table-background-color);
}
.ish-props-list .ish-props-section {
  border: 1px solid var(--table-border-color);
  border-radius: var(--input-border-radius);
  margin-bottom: 10px;
}
.ish-props-section-heading {
  border-bottom: 1px solid var(--table-border-color);
}
.ish-props-form .ish-props-section-heading {
  padding-bottom: 5px;
  margin: 0 40px 20px 40px;
  text-align: center;
}
.ish-props-list .ish-props-section-heading {
  padding: var(--table-cell-padding);
  background-color: var(--table-header-color);
}
.ish-props-section-table {
  display: table;
  width: 100%;
}
.ish-props-section-row {
  display: table-row;
}
.ish-props-label,
.ish-props-property {
  display: table-cell;
  padding: var(--table-cell-padding);
}
.ish-props-note {
  font-size: var(--main-font-size-xs);
  padding: 6px 0 0 3px;
  color: var(--solid-gray);
}
.ish-props-label {
  color: var(--solid-gray);
  text-align: left;
  vertical-align: top;
  font-size: var(--main-font-size-s);
}
.ish-props-form .ish-props-label {
  text-align: right;
}
.ish-props-aside .ish-props-section {
  padding: 0;
}
.ish-props-aside .ish-props-label  {
  padding: 6px 0;
  font-size: var(--main-font-size-xs);
}
.ish-props-aside .ish-props-property  {
  padding: 6px 0 6px 5px;
  vertical-align: middle;
  max-width: 250px;
  overflow-wrap: break-word;
}
.ish-props-section-table > div > div {
  border-top: 1px solid var(--table-border-color);
}
.ish-props-section-table > div:first-child > div,
.ish-props-form .ish-props-section-table > div > div {
  border-top: none;
}
@media screen and (max-width: 600px) {

  .ish-props-property input,
  .ish-props-property select {
    width: 100%;
  }
}

/************************ AccountTemplate styles *******************/
.ish-account-box {
  display: flex;
  flex-direction: column;
  max-width: 350px;
  margin: auto;
}
.ish-account-box input {
  line-height: 32px;
}
.ish-account-box > div {
  flex: 0 1 auto;
  padding: 10px 20px;
  background-color: var(--trans-blue);
}
div.ish-account-box-header {
  border-radius: 15px 15px 0 0;
  font-size: 1.2rem;
  padding-top: 20px;
  text-align: center;
}
div.ish-account-box-note {
  font-size: var(--main-font-size-xs);
}
div.ish-account-box-legal {
  font-size: var(--main-font-size-xs);
  text-align: justify;
  background-color: var(--trans-blue);
  padding: 30px 10px 10px 10px;
  color: var(--solid-gray);
}
.ish-account-box > div > p:last-child {
  margin-bottom: 0;
}
.ish-account-box > div > p:first-child {
  margin-top: 0;
}
.ish-account-box-equation {
  display: flex;
  align-items: center;
}
.ish-account-box-equation > div {
  flex: 0 0 auto;
  padding: 10px 10px 10px 0;
}
.ish-account-box-equation > div:last-child {
  flex: 1 1 auto;
  padding: 10px 0;
}

/************************ Form styles *******************/
.ish-input-box {
  display: inline-block;
  padding: 5px;
  color: #000;
}
.ish-file-upload {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.ish-file-upload > div {
  flex: 0 1 auto;
}
.ish-file-upload > div:nth-child(2) {
  padding: 0 20px;
  overflow-wrap: break-word;
}
.ish-file-upload input[type="file"] {
  display: none;
}
#ish-left .ish-file-upload > div,
#ish-right .ish-file-upload > div{
  flex: 1 1 auto;
  padding: 0;
}
#ish-left .ish-file-upload > div:nth-child(2),
#ish-right .ish-file-upload > div:nth-child(2) {
  order: 2;
  padding-top: 10px;
  min-width: 200px;
}
#ish-left .ish-file-upload > div:nth-child(3),
#ish-right .ish-file-upload > div:nth-child(3) {
  text-align: right;
}
/************************ FileUploadTemplate styles *******************/
.ish-file-upload-box {
  border: 1px solid var(--table-border-color);
  border-radius: var(--theme-border-radius);
  margin: 10px 0;
}
.ish-file-upload-box:empty {
  display: none;
}
.ish-file-upload-form {
  display: flex;
  align-items: center;
  padding: 10px;
  background-color: var(--trans-gray);
}
ul.ish-file-upload-list {
  padding: 15px;
  margin: 0 15px;
}
ul.ish-file-upload-list > li {
  padding-bottom: 20px;
}
ul.ish-file-upload-list > li > a {
  overflow-wrap: break-word;
}
ul.ish-file-upload-list > li:last-child {
  padding-bottom: 0;
}
div.ish-file-upload-note {
  padding: 10px;
  font-size: var(--main-font-size-xs);
  color: var(--solid-gray);
}
div.ish-file-props {
  font-size: var(--main-font-size-xs);
  padding: 2px 0 0 2px;
}
div.ish-file-props > div {
  display: inline-block;
}

/************************ Navigation/Property panel styles *******************/
.ish-navigation-box,
.ish-filter-box,
.ish-search-box {
  padding: 15px;
  border-bottom: 2px solid var(--theme-background-color);
}
.ish-search-box+.ish-search-box {
  margin-top: -10px;
  border-top: 1px solid var(--theme-background-color);
}
#ish-left > div:last-child,
#ish-right > div:last-child {
  margin-bottom: 0;
}
.ish-filter-box a,
.ish-search-box a {
  color: var(--theme-link-color);
}
.ish-search-label,
.ish-navigation-label,
.ish-filter-label {
  font-size: var(--main-font-size-l);
  font-family: var(--text-bold-font);
  padding-bottom: 10px;
}
.ish-search-label:first-child,
.ish-navigation-label:first-child {
  padding-top: 0;
}
.ish-navigation-item {
  padding: 5px;
}
.ish-navigation-sub-item {
  padding: 4px 20px;
  font-size: var(--main-font-size-s);
}
.ish-filter-item {
  display: flex;
  align-items: flex-start;
  padding: 4px 0;
}
.ish-filter-item > div {
  flex: 1 1 auto;
}
.ish-filter-item > div:nth-child(1),
.ish-filter-item > div:nth-child(2) {
  flex: 0 0 20px;
}
.ish-filter-item > div:last-child {
  flex: 0 0 auto;
  padding-left: 5px;
  font-size: var(--main-font-size-s);
}
.ish-filter-sub-item {
  padding: 3px 0 3px 20px;
}
.ish-navigation-box .ish-table td {
  overflow-x: auto;
}
.ish-filter-item.ish-active a,
.ish-navigation-item.ish-active a,
.ish-navigation-sub-item.ish-active a {
  color: var(--accent-font-color);
  font-family: var(--text-bold-font);
}
.ish-navigation-item.ish-active,
.ish-navigation-sub-item.ish-active {
  background-color: var(--accent-background-color);
}
.ish-navigation-item.ish-active {
  padding-left: 10px;
}
ul.ish-page-tree {
  margin: 0;
  padding: 4px 0;
  list-style-type: none;
}
ul.ish-page-tree li {
  padding: 3px 0;
  margin: 0;
}
ul.ish-page-tree li > ul.ish-page-tree {
  margin-left: 13px;
}
ul.ish-page-tree li > div {
  display: flex;
}
ul.ish-page-tree li > div > div:first-child {
  flex: 0 0 15px;
  text-align: center;
}
ul.ish-page-tree li > div > div:last-child {
  padding-left: 2px;
  flex: 1 1 auto;
}
ul.ish-page-tree div.ish-active a {
  color: var(--accent-font-color);
  font-family: var(--text-bold-font);
}
/************************ HTMLTabTemplate styles *********************/
div.ish-tab {
  display: flex;
  gap: 5px;
  justify-content: flex-start;
  flex-flow: row nowrap;
  margin: 15px 0;
  border-bottom: 1px solid var(--table-border-color);
}
div.ish-tab > div {
  flex: 0 1 auto;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: "..";
  padding: 6px 8px;
  border-style: solid;
  border-color: var(--table-border-color);
  border-width: 1px 1px 0 1px;
  border-radius: 5px 5px 0 0;
}
div.ish-tab > div.ish-active {
  overflow: initial;
  color: var(--accent-font-color);
  font-family: var(--text-bold-font);
  border-bottom: 2px solid var(--accent-font-color);
}
div.ish-tab > div.ish-active a {
  color: var(--accent-font-color);
}
div.ish-tab > div:last-child {
  flex: 1 1 auto;
  text-align: right;
  font-size: var(--main-font-size-s);
  border: none;
}
div.ish-tab > div:last-child a {
  padding-left:10px;
}
div.ish-tab > div:last-child span {
  color: var(--solid-gray);
}
/************************ DownloadTemplate styles *******************/
div.ish-download {
  margin: 15px 0;
  display: inline-block;
  padding: 10px 15px;
  border: 1px solid var(--solid-blue);
  background-color: var(--trans-blue);
  border-radius: var(--theme-border-radius);
}
div.ish-download-link {
  font-size: 1.1rem;
}
div.ish-download-note {
  font-size: var(--main-font-size-s);
}
/********************* HTMLResultTemplate styles *******************/
.ish-result-template {
  margin-bottom: 20px;
}
.ish-result-item {
  margin-bottom: 15px;
}
.ish-result-title {
  font-family: var(--text-bold-font);
  font-size: var(--main-font-size-l);
}
div.ish-result-breadcrumbs {
  font-size: var(--main-font-size-xs);
}
.ish-result-fragment {
  font-size: var(--main-font-size-xs);
  word-break: break-all;
  color: var(--solid-gray-70);
  padding-top: 2px;
}
.ish-result-properties {
  font-size: var(--main-font-size-s);
  padding-top: 1px;
}
.ish-with-highlight .ish-text-match {
  display: inline-block;
  background-color: var(--trans-yellow);
  padding: 0 2px;
}
.ish-with-highlight .ish-result-fragment .ish-text-match {
  color: var(--main-font-color);
}
/********************* ElasticTemplate styles *******************/
.ish-result-controls {
  display: flex;
  gap: 10px;
  align-items: center;
  background-color: var(--main-background-color);
  border-top: 1px solid var(--table-border-color);
  padding: 10px 0;
}
.ish-result-controls > div {
  flex: 0 0 auto;
}
div.ish-result-paging {
  flex: 1 1 auto;
  text-align: center;
}
div.ish-result-paging > div {
  display: inline-block;
  padding: 0 15px;
  letter-spacing: 0.5px;
}
div.ish-result-paging > div:first-child {
  padding-left: 0;
}
div.ish-result-paging .ish-active a {
  color: var(--accent-font-color);
  font-family: var(--text-bold-font);
}
div.ish-result-sorting > form {
  display: inline-block;
}

/********************* Form styles *******************/
.ish-form {
  background-color: var(--form-background-color);
  padding: 10px 15px 0 15px;
}
.ish-form-submit,
.ish-form-item {
  padding-bottom: 10px;
}
.ish-form-item > div {
  padding-top: 5px;
}
div.ish-form-label {
  font-size: var(--main-font-size-s);
  padding-left: 2px;
}
div.ish-form-note {
  font-size: var(--main-font-size-s);
}
div.ish-form-group {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}
div.ish-form-group > div {
  flex: 0 0 auto;
}
div.ish-form-group > div > label {
  padding-left: 3px;
}

.ish-tinymce-trigger {
  display: inline-block;
  margin-top: 5px;
  padding: 3px 8px 0 8px;
  font-size: var(--main-font-size-s);
  background-color: var(--trans-gray);
}
/************** table style **************/
.ish-form-table {
  display: table;
  width: 100%;
  background-color: var(--form-background-color);
}
.ish-form-table > div {
  display: table-row;
}
.ish-form-table > div > div {
  display: table-cell;
  padding: 8px 12px;
  vertical-align: top;
  border-bottom: 1px solid var(--trans-gray);
}
.ish-form-table > div > div:first-child {
  text-align: right;
  vertical-align: top;
  border-right: 1px solid var(--trans-gray);
}
.ish-form-table > div > div:nth-child(3) {
  font-size: var(--main-font-size-xs);
}

/************** Ticket/Display styles **************/
.ish-ticket {
  margin-top: 20px;
  padding-left: 10px;
}
div.ish-ticket-event {
  padding: 0 0 15px 15px;
}
details.ish-ticket-event {
  padding: 0 0 15px 0;
}
details.ish-ticket-event > div {
  padding: 10px 0 10px 15px;
  font-size: var(--main-font-size-s);
}
.ish-ticket-header,
.ish-ticket-attachment {
  font-size: var(--main-font-size-xs);
  padding: 5px;
  border-bottom: 1px solid var(--table-border-color);
}
div .ish-ticket-header:first-child {
  border-top: 1px solid var(--table-border-color);
}
.ish-ticket-thumbnails {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  overflow-x: auto;
  background-color: var(--trans-gray);
  padding: 10px 5px;
}
.ish-ticket-thumbnails > div {
  margin: 0 5px;
}
.ish-ticket-thumbnails > div img {
  max-height: 100px;
  background-color: var(--main-background-color);
}
.ish-ticket-text {
  padding: 10px;
  background-color: var(--trans-gray);
  max-height: 500px;
  overflow-y: auto;
}

/************** Notes on Jira Issues styles **************/
.ish-note-section {
  border: 1px solid var(--solid-gray);
  background-color: var(--trans-gray);
}
.ish-note-header {
  padding: 10px;
  font-family: var(--text-bold-font);
  background-color: var(--table-header-color);
}
.ish-note-label {
  font-family: var(--text-bold-font);
  padding: 10px 10px 0 10px;
}
.ish-note-text {
  padding: 0 10px 10px 10px;
  font-size: var(--main-font-size-xs);
  border-bottom: 1px solid var(--solid-gray);
}
.ish-note-section .ish-note-text:last-child {
  border-bottom: none;
}
.ish-note-text > pre {
  margin: 0;
}
.ish-note-text > p:first-child,
.ish-note-text > ul:first-child {
  margin-top: 0;
}
.ish-note-text > p:last-child,
.ish-note-text > ul:last-child {
  margin-bottom: 0;
}

/***************** NavigationListTemplate styles *************************/
ul.ish-nav-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
ul.ish-nav-list > li {
  margin: 0;
  padding: 10px 5px;
  border-top: 1px solid var(--table-border-color);
}
ul.ish-nav-list > li:first-child {
  border-top: none;
}
ul.ish-nav-list > li > div:nth-child(2) {
  font-size: var(--main-font-size-xs);
  color: var(--solid-gray);
}
ul.ish-nav-list > li.ish-active {
  padding-left: 10px;
  background-color: var(--accent-background-color);
}
ul.ish-nav-list > li.ish-active a {
  color: var(--accent-font-color);
}
/********************** DIV and TABLE styles ******************************/
.ish-table {
  width: 100%;
  background-color: var(--table-background-color);
  border: 1px solid var(--table-border-color);
  margin-top: 15px;
}
table.ish-table {
  border-spacing: 0;
}
div.ish-table {
  display: table;
}
div.ish-table div.ish-tr {
  display: table-row;
}
div.ish-table > form {
  display: table-row-group;
}
div.ish-table div.ish-tr > div {
  display: table-cell;
}
div.ish-table div.ish-th,
table.ish-table > tbody > tr > th {
  vertical-align: bottom;
  text-align: left;
  font-weight: normal;
  background-color: var(--table-header-color);
  padding: var(--table-cell-padding);
  border-bottom: 1px solid var(--table-border-color);
}
div.ish-table div.ish-th span,
table.ish-table > tbody > tr > th span {
  color: var(--solid-gray-50);
}
div.ish-table div.ish-td,
table.ish-table > tbody > tr > td {
  vertical-align: top;
  padding: var(--table-cell-padding);
  border-bottom: 1px solid var(--table-border-color);
}
.ish-th-active a {
  font-family: var(--text-bold-font);
  color: var(--main-font-color);
}
div.ish-table div.ish-tr:not(:first-child):hover,
table.ish-table > tbody > tr:not(:first-child):hover {
  background-color: var(--trans-gray);
}
.ish-table-overflow-wrap {
  overflow-x: auto;
}
/* ------------- Styles for EcmaScript generated elements ----------------------*/
[data-cmd=Expand] {
  display: none;
}
[data-script~=EcmaTimeSelector],[data-script~=EcmaExpandTrigger] {
  cursor: pointer;
  color: var(--theme-link-color);
}
[data-script~=EcmaExpandTrigger]:hover {
  text-decoration: underline;
}
[data-script~=EcmaExpandTrigger] .fas,[data-script~=EcmaExpandTrigger] .fa-solid,[data-script~=EcmaExpandTrigger] .far,[data-script~=EcmaExpandTrigger] .fa-regular,[data-script~=EcmaExpandTrigger] .fab,[data-script~=EcmaExpandTrigger] .fa-brands {
  color: var(--theme-link-color);
  cursor: pointer;
}
input[data-script~="OvlFlatpickr"],
input[data-script~="OvlSuggest"] {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  padding-right: 25px;
}
input[data-script~="OvlFlatpickr"] {
  background-image: url(/img/system/calendar.png);
}
input[data-script~="OvlSuggest"] {
  background-image: url(/img/system/search.png);
}

/****************** Misc styles *********************************/
.ish-pre-wrap-text {
  white-space: pre-wrap;
  font-size: var(--main-font-size-xs);
  background-color: transparent;
  color: var(--main-font-color);
  overflow-wrap: break-word;
  font-family: var(--code-normal-font);
  margin: 0;
}
.ish-message {
  display: flex;
  padding: 10px 15px;
  font-size: var(--main-font-size-s);
}
.ish-message > div:nth-child(1) {
  text-align: center;
  flex: 1 1 auto;
}
.ish-message > div:nth-child(2) {
  flex: 0 0 auto;
}
.ish-error div:nth-child(1)::before {
  font-family: 'Font Awesome Solid';
  content: "\f071";
  font-size: var(--main-font-size-m);
  margin-right: 7px;
}
.ish-status div:nth-child(1)::before {
  font-family: 'Font Awesome Solid';
  content: "\f058";
  font-size: var(--main-font-size-m);
  margin-right: 7px;
}
.ish-status {
  background-color: var(--trans-green);
  color: var(--solid-green);
}
.ish-error {
  background-color: var(--trans-red);
  color: var(--solid-red);
}
.ish-horizontal-scroll-area {
  overflow-x: auto;
}
.ish-vertical-scroll-area {
  overflow-y: auto;
  overflow-x: hidden;
}
.gray-bar {
  display: inline-block;
  background-color: var(--solid-gray);
  padding: 0.2rem 0.5rem;
}

/****************** Font styles *********************************/
.font-blue,.font-blue a     { color: var(--solid-blue) !important; }
.font-gray,.font-gray a     { color: var(--solid-gray) !important; }
.font-white,.font-white a   { color: #fff !important; }
.font-green,.font-green a   { color: var(--solid-green) !important; }
.font-red,.font-red a       { color: var(--solid-red) !important; }
.font-black,.font-black a   { color: #000 !important; }
.font-orange,.font-orange a { color: var(--solid-orange) !important; }
.font-purple,.font-purple a { color: var(--solid-purple) !important; }
.font-yellow,.font-yellow a { color: var(--solid-yellow) !important; }
.font-small   { font-size: var(--main-font-size-s); }
.text-nowrap  { white-space: nowrap; }
.text-wrap  { overflow-wrap: anywhere; }

/********************** Button styles *****************************/
a.button-red,a.button-blue,a.button-gray,a.button-green,label.button-gray {
  display: inline-block;
  line-height: 29px;
  margin-left: 1px;
  color: #ffffff;
  border-radius: var(--input-border-radius);
  padding: 0 8px;
  font-size: var(--main-font-size-s);
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: default;
}
.button-red:hover,.button-blue:hover,.button-gray:hover,.button-green:hover {
  opacity: 0.8;
}
button.button-gray,input.button-gray,a.button-gray,label.button-gray {
  border-color: var(--solid-gray) !important;
  background-color: var(--solid-gray) !important;
}
button.button-green,input.button-green,a.button-green,label.button-green {
  border-color: var(--solid-green) !important;
  background-color: var(--solid-green) !important;
}
button.button-red,input.button-red,a.button-red,label.button-red {
  border-color: var(--solid-red) !important;
  background-color: var(--solid-red) !important;
}
button.button-blue,input.button-blue,a.button-blue,label.button-blue {
  border-color: var(--solid-blue) !important;
  background-color: var(--solid-blue) !important;
}

/********************** Tag and Box styles **************************************/
.tag-blue,.tag-orange,.tag-green,.tag-red,.tag-gray,.tag-purple,.tag-yellow,.tag-black {
  text-transform: uppercase;
  display: inline-block;
  padding: 2px 4px 1px 4px;
  font-size: 11px;
  letter-spacing: 0.5px;
  border-width: 1px;
  border-style: solid;
  border-radius: 3px;
  text-align: center;
}
.tag-blue a,.tag-orange a,.tag-green a,.tag-red a,.tag-gray a,.tag-purple a,.tag-yellow a,.tag-black a {
  color: inherit;
}
.tag-purple { color: var(--solid-purple); border-color: var(--solid-purple); }
.tag-orange { color: var(--solid-orange); border-color: var(--solid-orange); }
.tag-yellow { color: var(--solid-yellow); border-color: var(--solid-yellow); }
.tag-blue   { color: var(--solid-blue);   border-color: var(--solid-blue); }
.tag-green  { color: var(--solid-green);  border-color: var(--solid-green); }
.tag-red    { color: var(--solid-red);    border-color: var(--solid-red); }
.tag-gray   { color: var(--solid-gray);   border-color: var(--solid-gray); }
.tag-black  { color: #000000; border-color: #000000; }

.box-red,.box-green,.box-orange,.box-gray,.box-blue,.box-white,.box-yellow {
  margin: 10px 0;
  padding: 10px 15px;
  border-radius: var(--theme-border-radius);
}
.box-red p:first-child,.box-green p:first-child,.box-orange p:first-child,.box-gray p:first-child,.box-blue p:first-child,.box-white p:first-child,.box-yellow p:first-child {
  padding-top: 0;
  margin-top: 0;
}
div[class^="box-"] + div[class^="box-"],
div[class^="box-"] + details,
details + div[class^="box-"],
details[class="ish-klapp-box"] + details[class="ish-klapp-box"],
div[class^="box-"] + table,
table + div[class^="box-"],
table.ish-table + table.ish-table {
  margin-top: 10px;
}
.box-yellow {
  background-color: var(--trans-yellow);
}
.box-yellow span[class^="fa"] {
  color: var(--solid-yellow);
}
.box-orange {
  background-color: var(--trans-orange);
}
.box-orange span[class^="fa"] {
  color: var(--solid-orange);
}
.box-blue {
  background-color: var(--trans-blue);
}
.box-blue span[class^="fa"] {
  color: var(--solid-blue);
}
.box-green {
  background-color: var(--trans-green);
}
.box-green span[class^="fa"] {
  color: var(--solid-green);
}
.box-red {
  background-color: var(--trans-red);
}
.box-red span[class^="fa"] {
  color: var(--solid-red);
}
.box-gray,.box-white {
  border: 2px solid var(--table-border-color);
  border-radius: var(--theme-border-radius);
}
.box-gray span[class^="fa"],.box-white span[class^="fa"] {
  color: var(--solid-gray);
}

/************** Media Queries for Print Output *****************/
.media-print-only {
  display: none;
}
@media print {

  @page {
    margin: 1.5cm;
  }
  @page:first {
    margin-top: 2.0cm;
  }
  body,div#ish-mid,div#ish-main {
    font-size: var(--main-font-size-s);
    background-color: #fff;
    border: none;
    padding: 0;
    margin: 0;
  }
  h1, h2, h3, h4, h5 {
    break-after: avoid;
  }
  p,tr,img {
    break-inside: avoid;
  }
  p,tr,img,div {
    box-decoration-break: clone;
  }
  .media-no-print {
    display: none !important;
  }
  .media-print-only {
    display: inherit;
  }
}