/* Variables */
:root {
  --header-height: 54px;
  --toolbar-height: 40px;
  --header-color: #569;
  --background-color: #f0f3f8;
  --block-header-bgcolor: #78b;
  --menu-border-color1: #778;
  --menu-border-color2: #ddeeff;
  --menu-background-color1: #fff;
  --menu-background-color2: #f8fcff;
  --menu-bar-text-color: #fff;
  --menu-text-color: #018;
  --menu-hover-background-color-old: #cfcfcf;
  --menu-hover-color-old: #444;
  --book-menu-font-color: #12a;
}
@media (min-width: 1200px) {
  :root {
    --max-width: 1170px;
  }
}
@media (max-width: 1199px) {
  :root {
    --max-width: 97.5%;
  }
}
/* Visibility */
@media (max-width: 543px) {
  .hidden-xs-down {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .hidden-sm-down {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .hidden-md-down {
    display: none !important;
  }
}
@media (max-width: 1199px) {
  .hidden-lg-down {
    display: none !important;
  }
}
@media (min-width: 544px) {
  .hidden-sm-up {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .hidden-md-up {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .hidden-lg-up {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-xl-up {
    display: none !important;
  }
}
/* General */
*,
*::before,
*::after {
  box-sizing: border-box;
}
/* TODO: Consider content-box */
html {
  position: relative;
}
html.ns .us,
html.ne .ue,
html.nl .ul,
html.ng .ug,
html.nse .use,
html.nlg .ulg,
html.nsel .usel {
  display: none !important;
}
body {
  position: relative;
  margin: 0;
  overflow-y: scroll;
}
#header,
#main-toolbar,
#main-content,
#footer {
  box-sizing: content-box;
  width: 100%;
  max-width: var(--max-width);
  padding: 0 calc((100% - var(--max-width)) / 2);
}
/* Page Header */
#header {
  position: fixed;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 12px;
  height: var(--header-height);
  background-color: var(--header-color);
  color: white;
}
@media (max-width: 991px) {
  #header .img-logo32 {
    display: none;
  }
}
#header .site-name {
  position: relative;
  width: 156px;
  height: 36px;
  flex-grow: 1;
  font: 32px Georgia, "Times New Roman";
  word-spacing: 0;
  letter-spacing: 1px;
}
#header .site-name > span > span {
  font-weight: bold;
}
#header .site-name > .shadow {
  position: absolute;
  top: 3px;
  left: 3px;
  color: #333;
}
#header .site-name > .no-shadow {
  position: absolute;
  top: 0;
  left: 0;
}
#header .site-name > .no-shadow > .object {
  color: #fff;
}
#header .site-name > .no-shadow > .db {
  color: #e0e5f9;
}
#header .header-links {
  justify-content: flex-end;
  display: flex;
  gap: 12px;
  width: 180px;
}
#header .header-links > a {
  display: block;
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  /* to white */
}
@media (max-width: 543px) {
  #header .header-links > a.img-download,
  #header .header-links > a.img-comments {
    display: none;
  }
}
/* Main */
#main {
  position: relative;
  top: 96px;
}
/* Main Toolbar */
#main-toolbar {
  position: fixed;
  top: var(--header-height);
  z-index: 10;
  display: flex;
  align-items: center;
  height: var(--toolbar-height);
  border-bottom: 2px solid gray;
  background-color: white;
  opacity: 1;
}
#main-toolbar .breadcrumbs {
  display: flex;
  flex-grow: 1;
  gap: 8px;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.9rem;
}
#main-toolbar:has(.message-success) {
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
#main-toolbar:has(.message-success) > .message-success {
  color: #3c763d;
}
#main-toolbar:has(.message-info) {
  background-color: #d9edf7;
  border-color: #bce8f1;
}
#main-toolbar:has(.message-info) > .message-info {
  color: #31708f;
}
#main-toolbar:has(.message-warning) {
  background-color: #fcf8e3;
  border-color: #faebcc;
}
#main-toolbar:has(.message-warning) > .message-warning {
  color: #8a6d3b;
}
#main-toolbar:has(.message-danger) {
  background-color: #f2dede;
  border-color: #ebccd1;
}
#main-toolbar:has(.message-danger) > .message-danger {
  color: #a94442;
}
#main-toolbar > [class^="message-"] {
  flex-grow: 1;
  font-weight: bold;
}
/* Main Content */
@media (min-width: 768px) {
  #main {
    min-height: 720px;
  }
}
#main-content {
  /* Note: Must be specific to avoid collision with Monaco auto-complete. */
  position: relative;
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding-bottom: 48px;
}
#main-content #left-sidebar {
  position: sticky;
  top: calc(var(--header-height) + var(--toolbar-height) + 30px);
  margin: 32px 16px;
  align-self: baseline;
}
#main-content #left-margin {
  margin-right: 8px;
  width: 8px;
  min-width: 8px;
  max-width: 8px;
}
#main-content #article {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  margin: 32px 16px 48px 0;
}
#main-content #article.draft {
  background-color: #ffe;
}
body.database-features #main-content #article {
  margin: 0 auto;
}
#main-content #right-sidebar {
  display: none;
}
@media (min-width: 992px) {
  #main-content #right-sidebar {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin: 32px 16px;
    min-width: 300px;
    max-width: 300px;
    width: 300px;
  }
  #main-content #right-sidebar > .block {
    border: 2px solid #67a;
    border-radius: 8px;
    background-color: #f4f6f8;
  }
  #main-content #right-sidebar > .block > h2 {
    margin: 0;
    height: 34px;
    padding: 0 10px;
    overflow: hidden;
    background-color: #67a;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: normal;
  }
  #main-content #right-sidebar > .block > .content {
    padding: 8px;
    font-size: 1rem;
  }
  #main-content #right-sidebar > .block > .content ol {
    padding: 0 12px;
  }
}
/* Page Footer */
#footer {
  margin-top: 48px;
  padding-top: 16px;
  padding-bottom: 16px;
  overflow-x: scroll;
  font-size: 0.9rem;
  background-image: linear-gradient(#569, #235);
  color: white;
}
#footer > .footer-links {
  float: left;
  width: 65%;
}
#footer > .footer-links table {
  border-spacing: 2px;
}
#footer > .footer-links th {
  width: 33%;
  text-align: left;
  text-decoration: underline;
}
#footer > .footer-links th,
#footer > .footer-links td {
  padding: 2px 0;
}
#footer > .footer-links a[href] {
  color: #fff !important;
  line-height: 36px;
}
@media (max-width: 991px) {
  #footer > .footer-links {
    display: none;
  }
}
#footer > .footer-jpab {
  float: right;
  width: 30%;
  margin: 2px;
  padding: 4px;
  text-align: center;
  background-color: #def;
  color: #000;
  border: 0 solid #000;
  border-radius: 16px;
}
#footer > .footer-jpab h2 {
  margin: 16px 0;
  font-size: 1.2rem;
}
#footer > .footer-jpab p {
  padding: 0;
  font-size: 0.6rem;
  line-height: 2em;
}
@media (max-width: 991px) {
  #footer > .footer-jpab {
    display: none;
  }
}
#footer > .footer-message {
  padding-top: 32px;
  font-size: 0.65rem;
  text-align: justify;
  clear: both;
}
#footer > .footer-message p,
#footer > .footer-message a[href] {
  color: #fff;
}
#footer > .footer-message a {
  text-decoration: underline;
}

html,
input,
select,
textarea,
button {
  font: 16px Roboto, Arial, Helvetica, Verdana, Sans-Serif;
}
@media (min-width: 544px) {
  html,
  input,
  select,
  textarea,
  button {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  html,
  input,
  select,
  textarea,
  button {
    font-size: 17px;
  }
}
@media (min-width: 992px) {
  html,
  input,
  select,
  textarea,
  button {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  html,
  input,
  select,
  textarea,
  button {
    font-size: 19px;
  }
}
body {
  line-height: 1.8rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 16px 0;
  font-weight: bold;
  color: #235;
}
h1 {
  font-size: 1.5rem;
}
h2 {
  font-size: 1.2rem;
  margin-top: 48px;
  scroll-margin-top: 120px;
  /* for internal links due to the sticky header (doesnt fit forms due to background). */
}
.text h2 {
  margin-top: -50px;
  padding-top: 82px;
}
h3 {
  font-size: 1.1rem;
  margin: 24px 0 16px 0;
}
h4,
h5,
h6 {
  font-size: 1rem;
  margin: 24px 0 0 0;
}
p,
dd {
  padding: 0;
  margin: 12px 0;
  color: #222;
}
dt {
  font-weight: bold;
}
hr {
  margin: 0;
  height: 0;
  border: 1px solid gray;
}
.indented {
  margin-left: 48px;
}
pre,
code,
a.code {
  font-family: "Roboto Mono", Consolas, Monaco, monospace;
}
pre {
  padding: 0;
  white-space: pre;
  overflow: visible;
  line-height: 1.45rem;
  font-size: 0.9rem;
  tab-size: 1;
  background: none;
  border: none;
}
pre .vertical-gap {
  display: block;
  height: 8px;
}
pre.pre-wrap {
  white-space: pre-wrap;
  overflow-wrap: break-word;
  word-break: break-word;
}
@media (min-width: 768px) {
  pre {
    tab-size: 2;
  }
}
@media (min-width: 1200px) {
  pre {
    tab-size: 3;
  }
}
code,
a[href].code {
  background-color: #f8f8f8;
  padding: 0 2px;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
}
pre a[href].code,
article > a {
  background-color: transparent !important;
  border: none !important;
}
pre a[href] {
  color: #035;
  border-bottom: 1px dashed #9ac;
}
ol,
ul {
  padding-inline-start: 0;
}
#article ol,
#article ul {
  margin-left: 16px;
}
ol > li {
  list-style: decimal;
}
li {
  margin: 0 0 4px 16px;
}
.p_description {
  margin-bottom: 16px;
}
.toc > h2 {
  font-size: 1.1rem;
  margin-top: 16px;
}
.toc > a {
  display: block;
  width: fit-content;
  margin: 0 0 4px 16px;
  padding-left: 20px;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  background-position: center left;
}
a[href] {
  font-weight: normal;
  text-decoration: none;
  color: #01c;
}
article a[href] {
  text-decoration: underline 1px #abf;
}
article a[href^="http"] {
  /*padding-right: 20px;*/
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: right -20%;
  width: 12px;
  height: 12px;
  padding-left: 2px;
}
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
#article table td,
#article table th {
  padding: 8px;
  border: #89a solid 1px;
  overflow-wrap: break-word;
}
table.borderless {
  border: none;
}
table.borderless th,
table.borderless td {
  border: none;
}
table.padding16 td,
table.padding16 th {
  padding: 16px;
}
table.zebra tbody tr:nth-child(odd) {
  background: #fbfcff;
}
table.zebra tbody tr:nth-child(even) {
  background: #f1f2fa;
}
table.side-header {
  /* in use on the Features page */
}
table.side-header th {
  width: 220px;
}
@media (max-width: 543px) {
  table.side-header th,
  table.side-header td {
    display: block;
    padding: 0;
    border: none;
    text-align: left;
  }
  table.side-header th {
    margin-top: 16px;
    width: 100%;
  }
}
table.round-corners {
  border-collapse: collapse;
  padding: 0;
  border: none;
}
table.round-corners th,
table.round-corners td {
  border: 1px solid #ccc;
}
table.round-corners tr:first-child > th:first-child {
  border-top-left-radius: 5px;
}
table.round-corners tr:first-child > th:last-child {
  border-top-right-radius: 5px;
}
table.round-corners tr:last-child > td:first-child {
  border-bottom-left-radius: 5px;
}
table.round-corners tr:last-child > td:last-child {
  border-bottom-right-radius: 5px !important;
}
.hidden {
  display: none;
}
.clear {
  clear: both;
}
.clear-after::after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.linethrough {
  text-decoration: line-through;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  margin: 0 auto;
}
.img {
  background-repeat: no-repeat;
  color: #68f;
}
.icon {
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
}
.size16 {
  width: 16px;
  height: 16px;
}
.size20 {
  width: 20px;
  height: 20px;
}
.size24 {
  width: 24px;
  height: 24px;
}
.size32 {
  width: 32px;
  height: 32px;
}
.size64 {
  width: 64px;
  height: 64px;
}
img.user {
  width: 100px;
  height: 100px;
}
/* for account and posts */
.file-link {
  display: flex;
  align-items: center;
  column-gap: 4px;
  height: 48px;
}
.file-link > i {
  width: 40px;
  height: 40px;
}
ins,
del {
  margin: 2px !important;
  padding: 2px !important;
  color: black;
  border: 1px solid #777;
}
.format {
  border-bottom: 2px dashed orange;
  padding-bottom: 1px;
}
ins,
body.objectdb .ICE-Tracking ins.ice-ins {
  background-color: #dfd !important;
  text-decoration: none;
}
del,
body.objectdb .ICE-Tracking del.ice-del {
  background-color: #fdd !important;
  /* text-decoration: line-through;
  text-decoration-color: red; text-decoration-style: double; */
}
.highlight {
  background-color: yellow;
}
.foldable:not(.folded) .foldable-summary {
  display: none;
}
.folded .foldable-content {
  display: none;
}
.folding-icon::before {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 4px;
  line-height: 16px;
  text-align: center;
  border: 1px solid currentColor;
  border-radius: 3px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 0.3em;
}
.foldable:not(.folded) .folding-icon::before {
  content: "−";
}
.foldable.folded .folding-icon::before {
  content: "+";
}

/* Common for all devices */
#menu-mode {
  display: none;
}
#main-menu {
  /* never visible */
}
#main-menu nav,
#main-menu div {
  margin: 0;
  padding: 0;
}
#main-menu nav {
  list-style-type: none;
}
#main-menu div,
#main-menu a {
  white-space: nowrap;
  color: var(--menu-text-color);
  line-height: 1.8rem;
}
#main-menu div.m-linkless > a:hover {
  text-decoration: none !important;
  cursor: default;
}
#main-menu a {
  vertical-align: middle;
  padding: 0 6px 0 23px;
  /*  space for the left side icon */
}
#main-menu a > i {
  font-style: normal;
}
#main-menu a.icon {
  background-position: 0 48%;
  background-size: 20px 20px;
}
#main-menu input[type="checkbox"] {
  display: none;
  margin: 0;
  height: 0;
}
#main-menu label {
  margin: 0;
  display: inline-block;
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-position: center center;
}
#main-menu a[class*="img-"] {
  background-position: 1% 48%;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  padding: 0 12px 0 28px;
}
/* Large Devices */
@media (min-width: 992px) {
  /* Old (single column) menu: */
  /* #main-menu > nav > div.m-old {
    &:hover > nav, div:hover > nav { display: block; }
    nav {
      position: absolute; top: $header-height - 18px; left: 0; z-index: 100;
      width: $sub-menu-width; margin: 0; line-height: 28px;
      nav { top: -1px; left: $sub-menu-width - 2; }
      div {
        z-index: 200; left: -2px; height: 44px;
        margin: 0; padding: 8px 0 5px 0; width: 100%;
        background-color: $menu-background-color1;
        border: 2px solid $menu-border-color1; border-top-width: 1px; border-bottom-width: 1px;
        &:first-child { border-top-width: 2px; }
        &:last-child { border-bottom-width: 2px; }
        &:hover { color: $menu-hover-color-old; background: $menu-hover-background-color-old; }
        > a { flex-grow: 1;}
      }
    }
  }*/
  #main-menu {
    z-index: 100;
    flex-grow: 1;
    height: var(--header-height);
    display: flex;
    align-items: flex-end;
    /* only for small devices */
  }
  #main-menu > div {
    /* 1st level - menu bar item */
    height: calc(var(--header-height) - 12px);
    padding: 0 6px 6px 6px;
    position: relative;
    /* 2nd level */
  }
  #main-menu > div > a {
    height: 100%;
    margin: 0;
    padding: 0 2px 0 6px !important;
    font-size: 0.95rem;
    color: var(--menu-bar-text-color);
    background: none;
  }
  #main-menu > div:hover {
    background-color: var(--menu-background-color1);
    border-color: var(--menu-border-color1);
  }
  #main-menu > div:hover > a {
    color: var(--menu-text-color);
  }
  #main-menu > div nav {
    display: none;
  }
  #main-menu div {
    display: flex;
    align-items: center;
  }
  #main-menu a {
    font-size: 0.95rem;
    display: flex;
    align-items: center;
  }
  #main-menu label {
    display: none !important;
  }
  #main-menu > div {
    border-radius: 4px;
    /* Arrow down connecting a top menu item to the primary popover (visible on hover): */
    /* Common to the primary popover and the secondary popover: */
    /* Primary popover (2nd level, visible on hover): */
    /* Extension of 3rd level and beyond: */
    /* Special effects: */
  }
  #main-menu > div > nav,
  #main-menu > div::after,
  #main-menu > div.m-api > nav > div > nav {
    visibility: hidden;
  }
  #main-menu > div:hover > nav,
  #main-menu > div:hover::after,
  #main-menu > div.m-api:hover > nav > div:hover > nav,
  #main-menu > div.m-api:hover > nav > div:hover > nav > div > nav {
    visibility: visible;
  }
  #main-menu > div > nav,
  #main-menu > div::after {
    transition: all 0.05s ease-in 0.1s;
  }
  #main-menu > div::after {
    position: absolute;
    left: 50%;
    bottom: 1px;
    margin-left: -6px;
    width: 12px;
    height: 12px;
    content: "";
    background-color: var(--menu-background-color2);
    transform: rotate(45deg);
    border-radius: 1px 0 0;
    border-left: 3px solid var(--menu-border-color1);
    border-top: 3px solid var(--menu-border-color1);
  }
  #main-menu > div nav {
    display: flex;
    flex-wrap: wrap;
  }
  #main-menu > div > nav,
  #main-menu > div.m-api > nav > div > nav {
    width: 960px;
  }
  #main-menu > div > nav {
    position: fixed;
    top: calc(var(--header-height) - 8px);
    left: 50%;
    transform: translateX(-50%);
    padding: 16px;
    flex-direction: column;
    background-color: var(--menu-background-color2);
    border: 3px solid var(--menu-border-color1);
    border-radius: 8px;
    /* Rows on the primary popover (2nd level): */
  }
  #main-menu > div > nav > div {
    margin: 6px 0;
    padding: 4px 8px;
    background-color: var(--menu-background-color1);
    border: 2px solid var(--menu-border-color2);
    border-radius: 8px;
    /* Lists on the right side of the primary popover (3rd level +), */
    /* Levels below the 3rd level are hidden unless an m-ext-* class is set */
  }
  #main-menu > div > nav > div > a {
    width: 160px;
    flex-shrink: 0;
  }
  #main-menu > div > nav > div nav > div {
    margin: 0 8px 0 0;
  }
  #main-menu > div > nav > div nav > div > nav {
    display: none;
  }
  #main-menu > div > nav a > i {
    display: none;
  }
  #main-menu > div > nav a[href]:hover {
    text-decoration: underline;
  }
  #main-menu > div.m-manual > nav > div > nav > div,
  #main-menu > div.m-new-examples > nav > div > nav > div,
  #main-menu > div.m-api > nav > div > nav > div {
    /* unfold 3rd level */
  }
  #main-menu > div.m-manual > nav > div > nav > div > a,
  #main-menu > div.m-new-examples > nav > div > nav > div > a,
  #main-menu > div.m-api > nav > div > nav > div > a {
    font-weight: bold;
  }
  #main-menu > div.m-manual > nav > div > nav > div > a::after,
  #main-menu > div.m-new-examples > nav > div > nav > div > a::after,
  #main-menu > div.m-api > nav > div > nav > div > a::after {
    content: ":";
    margin-left: 0;
    padding-left: 2px;
  }
  #main-menu > div.m-manual > nav > div > nav > div,
  #main-menu > div.m-new-examples > nav > div > nav > div,
  #main-menu > div.m-api > nav > div > nav > div,
  #main-menu > div.m-manual > nav > div > nav > div > nav,
  #main-menu > div.m-new-examples > nav > div > nav > div > nav,
  #main-menu > div.m-api > nav > div > nav > div > nav {
    display: contents;
  }
  #main-menu > div.m-api > nav > div > a {
    font-weight: normal;
  }
  #main-menu > div.m-api > nav > div > a::after {
    display: none;
  }
  #main-menu > div.m-api > nav > div > nav {
    position: absolute;
    top: calc(100% - 3px);
    padding: 16px;
    left: -3px;
    display: flex;
    background-color: #ffe;
    border: 3px solid var(--menu-border-color1);
    border-top: 1px solid var(--menu-border-color1);
    border-radius: 8px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  #main-menu > div.m-diamonds > nav > div > nav [class*="img"] {
    background: none;
    padding-left: 0;
  }
  #main-menu > div.m-diamonds > nav > div > nav a {
    display: inline;
    /* to avoid underlined diamonds */
    padding: 0 !important;
  }
  #main-menu > div.m-diamonds > nav > div > nav a:after {
    content: "\2666";
    margin: 0 8px 0 8px;
    font-size: 1rem;
    display: inline-block;
    text-decoration: none;
  }
  #main-menu > div.m-diamonds > nav > div > nav > a:last-child:after {
    display: none;
  }
  #main-menu > div.m-diamonds > nav > div > nav > div:last-child > nav > a:last-child:after {
    display: none;
  }
  #main-menu > div.m-col > nav {
    flex-direction: row;
  }
  #main-menu > div.m-col > nav > div {
    flex-direction: column;
    flex: 1;
    padding-bottom: 24px;
    background-color: var(--menu-background-color2);
    border: none;
  }
  #main-menu > div.m-col > nav > div > a,
  #main-menu > div.m-col > nav > div > nav {
    background-color: var(--menu-background-color1);
    border: 2px solid var(--menu-border-color2);
    border-radius: 8px;
  }
  #main-menu > div.m-col > nav > div > a {
    z-index: 200;
    position: absolute;
    width: auto;
    height: 40px;
    padding: 2px 8px;
    background-image: none;
  }
  #main-menu > div.m-col > nav > div > nav {
    position: relative;
    top: 20px;
    flex-direction: column;
    width: 100%;
    padding: 40px 24px 24px 24px;
  }
  #main-menu > div.m-col > nav > div > nav a {
    height: 48px;
  }
  #main-menu > div.m-admin > nav > div > a {
    width: 130px;
  }
  #main-menu > div.m-examples > nav {
    width: 640px;
  }
  #main-menu > div.m-examples > nav > div > a {
    width: 260px;
    margin-left: 24px;
  }
  #main-menu > div.m-examples > nav > div > nav {
    flex-direction: column;
  }
  #main-menu > div.m-new-examples > nav > div > a {
    width: 220px;
    margin-left: 24px;
  }
  .img-bars {
    display: none;
  }
}
/* Small Devices (Full Screen Menu): */
@media (max-width: 991px) {
  .img-bars {
    display: block;
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
  }
  #menu-mode:checked ~ #header #main-menu {
    display: block;
  }
  #menu-mode:checked ~ #main,
  #menu-mode:checked ~ #footer {
    display: none;
  }
  #main-menu {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    padding: 4px 12px;
    /*a { padding-right: 0 !important; }*/
    /* visible when checked */
  }
  #main-menu div {
    padding: 4px 2px;
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
  #main-menu div > nav > a {
    display: block;
    margin: 8px 0;
  }
  #main-menu div a.active {
    background-color: #ff8;
    border: 1px solid #ff8;
    border-radius: 12px;
  }
  #main-menu div.active-trail > a {
    font-weight: bold;
  }
  #main-menu nav {
    margin-left: 20px;
    display: none;
  }
  #main-menu input[type="checkbox"]:checked ~ nav {
    display: block;
  }
  #main-menu label {
    /* parent's arrow */
    display: inline-block;
    width: 24px;
    height: 1.8rem;
    vertical-align: middle;
    background-size: 24px 24px;
    background-position: 0 40%;
  }
  #main-menu .api-diagram,
  #main-menu .diagram,
  #main-menu .label-types-main,
  #main-menu .label-types-all {
    display: none;
  }
}
/* New JPA Diagram: */
@media (min-width: 992px) {
  #main-menu div.m-api > nav {
    flex-direction: row !important;
    justify-content: center;
    gap: 24px 8px;
    padding: 360px 0 8px 0 !important;
  }
  #main-menu div.m-api > nav > div[class^="m-"] {
    border: none !important;
    margin: 0 !important;
    padding: 0;
  }
  #main-menu div.m-api > nav > div[class^="m-"] > a {
    margin: 0 !important;
    width: auto;
    padding: 5px 12px 5px 32px !important;
    height: 30px !important;
    line-height: 30px;
    font-size: 17px;
  }
  #main-menu div.m-api > nav > div[class^="m-"] a {
    font-size: 17px;
  }
  .api-diagram {
    position: absolute;
    top: 0;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background-color: inherit !important;
  }
  .api-diagram marker {
    overflow: visible;
    visibility: visible;
  }
  .api-diagram > a {
    display: flex;
    align-items: center;
    position: absolute !important;
    padding: 4px 12px 4px 32px !important;
    font-size: inherit !important;
  }
  .api-diagram > a:hover {
    background-color: #ffd;
  }
  div.m-api > nav > div[class^="m-"]:hover > a {
    background-color: #ffe;
  }
  div.m-api > nav > .m-core:hover ~ .api-diagram > a.node-persistence,
  div.m-api > nav > .m-core:hover ~ .api-diagram > a.node-entitymanagerfactory,
  div.m-api > nav > .m-core:hover ~ .api-diagram > a.node-entitymanager,
  div.m-api > nav > .m-core:hover ~ .api-diagram > a.node-entitytransaction {
    background-color: #ffe;
  }
  div.m-api > nav > .m-queries:hover ~ .api-diagram > a.node-criteriabuilder,
  div.m-api > nav > .m-queries:hover ~ .api-diagram > a.node-criteriaqueryt,
  div.m-api > nav > .m-queries:hover ~ .api-diagram > a.node-query,
  div.m-api > nav > .m-queries:hover ~ .api-diagram > a.node-typedqueryx,
  div.m-api > nav > .m-queries:hover ~ .api-diagram > a.node-parametert {
    background-color: #ffe;
  }
  div.m-api > nav > .m-control:hover ~ .api-diagram > a.node-persistenceutil,
  div.m-api > nav > .m-control:hover ~ .api-diagram > a.node-persistenceunitutil,
  div.m-api > nav > .m-control:hover ~ .api-diagram > a.node-cache,
  div.m-api > nav > .m-control:hover ~ .api-diagram > a.node-entitygraph,
  div.m-api > nav > .m-control:hover ~ .api-diagram > a.node-entitygrapht {
    background-color: #ffe;
  }
  div.m-api > nav > .m-metamodel:hover ~ .api-diagram > a.node-metamodel {
    background-color: #ffe;
  }
}

#main-menu input[type="checkbox"]:checked ~ label { background-image: url("data:image/svg+xml,%3Csvg fill='%23018' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z'/%3E%3C/svg%3E%3C!--Font Awesome Free 5.5.0 by @fontawesome - https://fontawesome.comLicense - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)--%3E");} 
#main-menu input[type="checkbox"]:not(:checked) ~ label, mark.img-right { background-image: url("data:image/svg+xml,%3Csvg fill='%23018' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 192 512'%3E%3Cpath d='M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z'/%3E%3C/svg%3E%3C!--Font Awesome Free 5.5.0 by @fontawesome - https://fontawesome.comLicense - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)--%3E");} 
@media (min-width: 992px) {
  .book-menu {
    display: block;
    width: 270px;
    padding: 0;
    font-size: 0.9rem;
  }
  .book-menu > .book-menu-header a {
    font-size: 1.1rem;
    font-weight: bold;
  }
  .book-menu nav {
    margin-top: -6px;
  }
  .book-menu > nav {
    margin-left: -40px;
  }
  .book-menu > nav nav {
    margin-left: 22px;
  }
  .book-menu > nav mark.img-right {
    display: block;
    margin-left: 8px;
    background-color: transparent;
    background-position: 10px 2px;
    background-size: 24px 24px;
    background-repeat: no-repeat;
  }
  .book-menu > nav mark.img-right > a {
    margin-left: 34px;
  }
  .book-menu > nav a {
    display: block;
    margin: 6px 0 2px 42px;
    padding-left: 22px;
    line-height: 1.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--book-menu-font-color);
    background-position: 0 6px;
    background-size: 16px 16px;
    background-repeat: no-repeat;
  }
  .book-menu > nav a.active-trail {
    font-weight: bold;
  }
  .book-menu > nav a:hover {
    text-decoration: underline;
    color: #000;
  }
  .book-menu div.active-trail > a,
  .book-menu a.active {
    font-weight: bold;
  }
}
.tags {
  display: none;
}
@media (min-width: 992px) {
  .tags {
    display: block;
    margin: 64px 4px 16px 4px;
  }
  .tags h2 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: normal;
  }
  .tags p {
    margin: 0;
  }
  .tags .tag {
    display: inline-block;
  }
  .tags .tag a {
    margin-right: 8px;
  }
  .tags .tag1,
  .tags .tag2 {
    font-size: 0.7rem;
  }
  .tags .tag3,
  .tags .tag4 {
    font-size: 0.8rem;
  }
  .tags .tag5 {
    font-size: 0.9rem;
  }
}
.book-links {
  margin: 48px 0;
  padding: 8px 0;
  font-size: 0.9rem;
  border-top: 1px solid #b0b0b0;
  border-bottom: 1px solid #b0b0b0;
}
.book-links a.page-previous {
  float: left;
  width: 50%;
  text-align: left;
}
.book-links a.page-up {
  display: none;
}
.book-links a.page-next {
  float: right;
  width: 50%;
  text-align: right;
}
@media (min-width: 544px) {
  .book-links a.page-previous {
    float: left;
    width: 35%;
    text-align: left;
  }
  .book-links a.page-up {
    display: inline;
    float: left;
    width: 30%;
    text-align: center;
  }
  .book-links a.page-next {
    float: right;
    width: 35%;
    text-align: right;
  }
}

pre {
  margin: 16px 0 20px 0;
  padding: 12px;
  /* requiresd for tooltips */
  background-color: #fdfeff;
  color: #000;
  border: #bdf solid 1px;
  border-radius: 8px;
}
pre + pre.hl {
  margin-top: -12px;
}
pre.hl {
  /* text */
  /* comment, prolog, doctype, cdata */
  /* JavaDoc comment */
  /* string, attr value, shell command */
  /* keyword, query param/vars, shell program */
  /* keyword */
  /* query keyword */
  /* function, query field, shell options */
  /* annotation, class name, generics */
  /* number, boolean, tag, shell args */
  /* operator, shell prompt, attr-name */
  /* punctuation */
}
pre.hl span {
  color: #111;
}
pre.hl .cm,
pre.hl .pr,
pre.hl .dt,
pre.hl .cd {
  color: #444;
}
pre.hl .dc {
  color: #08a;
}
pre.hl .st,
pre.hl .atv,
pre.hl .sc,
pre.hl .cv {
  color: #30f;
}
pre.hl .kw,
pre.hl .qp,
pre.hl .qv,
pre.hl .sx,
pre.hl .cs,
pre.hl .cc {
  color: #705;
}
pre.hl .kw {
  font-weight: bold;
}
pre.hl .qk,
pre.hl se {
  color: #917;
}
pre.hl .fn,
pre.hl .qf,
pre.hl .so {
  color: #162;
  font-weight: bold;
}
pre.hl .an,
pre.hl .ns,
pre.hl .cl,
pre.hl .gn {
  color: #34a;
}
pre.hl .nm,
pre.hl .bl,
pre.hl .tg,
pre.hl .sa {
  color: #905;
}
pre.hl .op,
pre.hl .sp,
pre.hl .atn,
pre.hl .cn {
  color: #9a6e3a;
}
pre.hl .pn {
  color: #000;
}

#article {
  /* .group-header {
    margin: 36px 0 24px 0;
    &:after {
      padding: 2px 6px; color: #238;
      font-family: Roboto,Sans-Serif; font-size: 1.5rem;
      border: 2px solid #c0d4ff; border-radius: 8px; background-color: #e4e8ff;  
    }
  } */
}
#article .pre-header {
  display: inline-block;
  padding: 8px;
  border-radius: 4px;
  background-color: var(--block-header-bgcolor);
  color: #fff;
  font-weight: bold;
}
#article h1 {
  margin: 16px 0 32px;
  line-height: 40px;
  font-size: 1.4rem;
}
#article h1.title {
  display: none;
}
#article h1 .kind {
  font-size: 1rem;
}
#article h1 .context {
  font-size: 1rem;
  line-height: 18pt;
}
#article .header,
#article .item-doc .description {
  margin-bottom: 12px;
}
#article .pre-notes,
#article .post-notes {
  margin: 32px 0;
  font-size: 1rem;
  font-weight: bold;
}
#article .member {
  margin: 24px 0;
  padding: 4px 4px 0 8px;
  background-color: #f4f6ff;
  border: solid 1px #aabbcc;
  border-radius: 8px;
}
#article .member > .header {
  margin-left: 40px;
  text-indent: -32px;
}
#article .member > .header > .name {
  border-bottom: 1px dotted;
  color: navy;
  font-weight: bold;
  text-decoration: none;
}
#article .member a::before,
#article .member a::after {
  content: " ";
  display: inline-block;
  text-decoration-style: none;
}
#article .member .teaser {
  margin: 8px;
}
#article .member .details {
  margin: 8px;
}
#article .member .details .description {
  margin-bottom: 16px;
}
#article dl {
  margin: 16px 0;
  text-indent: 0;
}
#article dl.target dt,
#article dl.target dd {
  display: inline;
  margin: 0;
  text-indent: 0;
}
#article dl.target dd {
  margin-left: 12px;
}
#article dd {
  line-height: 28px;
  margin: 4px 0 4px 12px;
}
#article dl.inline > dt,
#article dl.inline > dd,
#article dl.inline > dd > div {
  display: inline-block;
}
#article dl.inline > dd > div {
  margin-right: 16px;
}
#article a > code {
  color: #0000ee;
}
