@font-face {
  font-family: "Mulish";
  src: url("Mulish-Italic-VariableFont_wght.ttf");
}

@font-face {
  font-family: "Mulish";
  src: url("Mulish-VariableFont_wght.ttf");
}

:root {
  --metallic-blue: #54738f;
  --light-blue-grey: #c1d2e1;
  --dark-blue-text: #1f3d59;
  --pale-grey: #f0f5fa;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--metallic-blue) var(--light-blue-grey);
}

::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
}

::-webkit-scrollbar-track {
  background: var(--light-blue-grey);
}

::-webkit-scrollbar-thumb {
  background: var(--metallic-blue);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--dark-blue-text);
}

.titlepage hr {
  display: none;
}

body {
  font-family: "Mulish", sans-serif;
  line-height: 1.5em;
  font-weight: 400;
  margin: 0;
}

.main-navbar {
  background-image: linear-gradient(1deg, #001360 7%, #006bd1 110%);
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  position: fixed;
  z-index: 100;
}

.main-navbar img {
  padding-top: 7px;
}

.content_with_aside {
  position: absolute;
  display: flex;
  width: 100%;
  top: 84px;
  height: calc(100% - 84px);
}

.aside_navigation {
  top: 100px;
  position: sticky;
  width: 400px;
  height: 100%;
  height: calc(100vh - 110px);
  overflow-y: auto;
}

.aside_navigation ul {
  list-style: none;
  padding: 0 20px;
}

.aside_navigation ul li a {
  color: black;
  text-decoration: none;
  padding: 5px 0;
  display: block;
  transition: all 0.4s ease;
  font-weight: bold;
}

.aside_navigation ul li a:hover {
  color: orange;

}

.book,
.article {
  padding: 1rem 5rem;
  background-color: white;
  margin-top: 60px;
}

.toc .article {
  font-size: 18px;
  font-weight: bold;
}

.toc p {
  font-size: 24px;
  text-align: center;
  margin-bottom: 50px;
}

dt .article {
  padding: 0;
}

.toc a {
  color: black;
  text-decoration: none;
  transition: all 0.4s;
  display: inline-block;
}

/* .toc dt {
  cursor: pointer;
} */

.toc dt {
  transition: all 0.4s;
}

.toc dt:hover a {
  color: orange;
}


.navheader+.section,
.main-navbar+.section,
.navbar+.article {
  padding: 1rem 5rem;
  padding-top: 60px;
  min-height: calc(100vh - 133px);
}

.main-navbar+.section {
  padding-top: 80px;
  min-height: calc(100vh - 389px);
}

.navbar+.article {
  min-height: calc(100vh - 520px);
}

.navfooter {
  bottom: 0;
  left: 0;
  right: 0;
  height: 3rem;
}

.guibutton {
  border: 2px solid grey;
  padding: 2px;
  border-radius: 4px;
}

.guimenu,
.guisubmenu,
.guimenuitem {
  border: 1px solid LightCoral;
  padding: 2px;
  background-color: orange;
}

.guibutton .inlinemediaobject img {
  height: 1.5em;
  vertical-align: baseline;
  vertical-align: bottom;
}

:not(table) img {
  max-width: 90%;
}

table img {
  max-width: unset;
}

nav a {
  color: #f6fbff;
}

nav ul {
  display: flex;
  list-style-type: none;
  justify-content: space-between;
  height: 100%;
  margin: 0;
  align-items: center;
  padding: 0 40px;
}

nav ul li {
  margin-right: 10px;
}

nav td {
  padding: 10px;
  text-align: center;
  height: 60px;
}

.mediaobject {
  text-align: center;
}

.mediaobject object {
  max-width: 90%;
}

.navbar+.section h2 {
  background-color: orange;
  padding: 5px 0px 5px 0px;
  border-radius: 0.5rem;
  margin-left: -16px;
  padding-left: 16px;
  margin-right: -16px;
}

h3,
h4,
h5,
h6 {
  color: #ff8f00;
}

h4 {
  font-size: 1em;
}

h6 {
  font-family: "Mulish", sans-serif;
  font-size: 10pt;
}

.admon-graphic {
  vertical-align: top;
  text-align: left;
}

.note {
  border-top: solid #009688 2px;
  border-bottom: solid #009688 2px;
  margin-top: 5px;
  margin-bottom: 10px;
}

.important {
  border-top: solid green 2px;
  border-bottom: solid green 2px;
  margin-top: 5px;
  margin-bottom: 10px;
}

.tip {
  border-top: solid #03a9f4 2px;
  border-bottom: solid #03a9f4 2px;
  margin-top: 5px;
  margin-bottom: 10px;
}

.caution {
  border-top: solid orange 2px;
  border-bottom: solid orange 2px;
  margin-top: 5px;
  margin-bottom: 10px;
}

.warning {
  border-top: solid red 2px;
  border-bottom: solid red 2px;
  margin-top: 5px;
  margin-bottom: 10px;
}

.admon-graphic img:nth-of-type(1) {
  width: 80px;
  max-width: unset;
  display: inline-block;
  margin-right: 10px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.admin {
  padding-right: 17px;
  background-color: #ececec;
  margin-left: -15px;
  padding-left: 15px;
}

.superadmin {
  background-color: lightgrey;
}

.revhistory table {
  width: 100%;
}

.revhistory table tr:nth-child(odd) {
  background-color: var(--pale-grey);
}

.revhistory table tr:nth-child(even) {
  background-color: var(--light-blue-grey);
}

.revhistory table td:nth-child(1) {
  width: 20%;
  padding-left: 1rem;
}

.revhistory table td {
  padding: 1rem;
}

.informaltable table {
  border-collapse: collapse;
}

.informaltable thead {
  background-color: orange;
}

/* admonitions in tables */
.informaltable>table>tbody>tr>td {
  border: 1px solid orange;
}

.informaltable>table>tbody>tr>th {
  border: 1px solid orange;
}

.informaltable td[align='left'] .mediaobject {
  text-align: left;
}

.informaltable tr:nth-child(even) {
  background-color: var(--pale-grey);
}

.informaltable tr:nth-child(odd) {
  background-color: none;
}

embed {
  height: 400px;
  width: 600px;
}

a.copyurl {
  visibility: hidden;
  float: right;
}

a.copyurl:after {
  content: "⚓";
}

:hover>a.copyurl {
  visibility: visible;
}

.guimenuitem .inlinemediaobject img {
  vertical-align: middle;
}

.tree-node {
  cursor: pointer;
  display: flex;
}


.sign {
  margin-right: 5px;
  margin-top: 4px;
}

.tree-node.collapsed .sign.minus {
  display: none;
}

.tree-node.collapsed .sign.plus {
  display: block;
}

.tree-node .sign.plus {
  display: none;
}

.tree-node .sign.minus {
  display: block;
}

.tree-node.active a {
  color: orange;
}

ul.list-active {
  display: block;
}

.aside_navigation li.link-active a {
  color: orange;
}

.toc>dl>dd>dl>dt a {
  font-weight: bold;
}

.navfooter hr {
  display: none;
}

.navfooter {
  background-image: linear-gradient(1deg, #001360 7%, #006bd1 110%);
  bottom: 8px;
  position: sticky;
}

.navfooter table {
  background-image: linear-gradient(1deg, #001360 7%, #006bd1 110%);
}

.navfooter table a {
  color: white;
  font-weight: bold;
  text-decoration: none;
  margin-left: 60px;
  margin-right: 60px;
}

.footer-nav__toc {
  padding: 0 57px;
  color: rgb(101 134 164);
  font-weight: bold;
}

h2.title:before,
h3.title:before,
h4.title:before,
h5.title:before {
  /* content: '';
  display: block;
  position: relative;
  width: 0;
  height: 70px;
  margin-top: -70px; */
  content: '';
    display: block;
    position: relative;
    /* width: 200px; */
    height: 82px;
    margin-top: -86px;
    /* background-color: red; */
    z-index: -1;
}

.article h2.title {
  position: relative;
  z-index: 1;
}

.article h2.title:after {
  content: '';
  display: block;
  position: relative;
  width: calc(100% + 32px);
  height: 32px;
  background-color: orange;
  border-radius: 0.5rem;
  left: -16px;
  top: -29px;
  z-index: -1;
}


.article h2.title:before {
  content: '';
  display: block;
  position: relative;
  width: 0;
  height: 170px;
  margin-top: -170px;
}

.variablelist .term {
  font-weight: bold;
}

.commento-root.commento-root-font {
  overflow-x: hidden;
  width: calc(50% - 40px);
  font-family: inherit;
  position: relative;
  border: 1px solid grey;
  transform: translate(50%, 0);
  padding: 20px 20px 0px 20px;
  margin-bottom: 20px;
  border-radius: 5px;
}


.commento-root.commento-root-font .commento-footer {
  margin: 0px 0 12px;
}

@media screen and (max-width:640px){
  .commento-root.commento-root-font {
    width: calc(100% - 120px);
    margin: 0 40px;
    transform: none;
  }
}

.commento-root .commento-textarea-container textarea::placeholder {
  font-size: 14px;
  line-height: 16px;
  text-align: start;
}

.commento-root .commento-textarea-container textarea {
  min-height: unset;
}

.commento-root .commento-main-area .commento-login .commento-login-text {
  height: 26px;
  font-weight: 400;
  font-size: 14px;
}