.tsd-typography h5 {
  font-weight: bold;
  font-size: 1.2em;
  font-family: monospace;
  position: relative;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 0.5em;
}
/* 
.tsd-typography h5:after {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  content: '<a href="#top">nach oben</a>';
} */


.container.tsd-generator {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  z-index: 2;
  max-width: 100vw;
  text-align: center;
  overflow: hidden;
  background: #DADADA;
}

footer {
  margin-bottom: 6em;
}

.scrolltotop > i {
  position: fixed;
  bottom: 1.5rem;
  right: 2rem;
  font-size: 4rem;
  max-width: 100vw;
  opacity: 0.4;
  cursor: pointer;
  color: cornflowerblue;
  z-index: 3;
}

.scrolltotop > i:nth-child(2) {
  opacity: 0;
  -moz-transition: opacity .5s ease-in-out;
  -webkit-transition: opacity .5s ease-in-out;
  -o-transition: opacity .5s ease-in-out;
  transition: opacity .5s ease-in-out;
}

.scrolltotop:hover > i:nth-child(2) {
  opacity: 1;
}

article {
  padding: 0.5em 1em;
  margin: 0.5em 0;
  border: 1px solid #cccccc;
  background: #dadada80;
}

p.title {
  font-size: 2em;
  font-weight: bold;
  margin: 0 0 0.67em;
}

p.subtitle {
  font-size: 1.5em;
  font-weight: bold;
  margin: 0.83em 0;
}

div.box {
  padding: 0.5em 1em;
  border: 2px solid transparent;
  border-left-width: 3em;
  margin-bottom: 1em;
}

div.box > i {
  display: inline-block;
  margin-left: -3em;
  margin-right: 2em;
  color: #ffffff;
}

div.box > ul,
div.box > ol {
  margin: 0;
  display: inline-grid;
}

div.exclamation {
  border-color: #ff0000;
  background: #ff000080;
}

div.warning {
  border-color: #dddd00;
  background: #dddd0080;
}

div.notice {
  border-color: #6495ed;
  background: #6495ed80;
}

div.expand {
  border-color: #66aa66;
  background: #66aa6680;
}

div.example {
  border-color: #5f9ea0;
  background: #5f9ea080;
}

div.seealso,
div.routes {
  border-color: #6495ed;
  background: #ffffff;
}

div.example > ul > li:nth-child(odd):before {
  content: 'Beispiel: ';
  font-weight: 500;
}

div.example > ul > li:nth-child(even) {
  list-style-type: none;
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  padding: 0.2em 1em;
  margin: 0;
  font-size: 14px;
  background-color: rgba(0, 0, 0, 0.04);
  text-align: left;
  width: fit-content;
}

a[href]:not(:empty):before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  content: '\f30b';
  margin-right: 0.5em;
}

a[href^="http://"]:not([href*="victory.schaefer-design.com"]):before,
a[href^="https://"]:not([href*="victory.schaefer-design.com"]):before, 
a[href^="//"]:not([href*="victory.schaefer-design.com"]):before {
  content: '\f35d';
}

.tsd-page-toolbar a::before,
.tsd-page-title a:before,
.tsd-panel.tsd-typography > a:before,
.globals > a:before,
.tsd-kind-external-module > a:before,
a.tsd-kind-icon:before,
a.tsd-signature-type:before,
article > a:before {
  display: none !important;
}

.container {
  max-width: 2000px;
  width: calc(100vw - 20em);
}

@media (max-width: 1280px) {
  .container {
    width: calc(100vw - 2em);
  }
}



.unused body {
  counter-reset: heading1 3;
  counter-reset: heading2 4;
  counter-reset: heading3 5;
  counter-reset: heading4 6;
  counter-reset: heading5 7;
}
/* 
h1 {
  counter-reset: h2;
  counter-reset: heading;
} */
/*
h2 {
  counter-reset: h3;
}

h3 {
  counter-reset: h4;
}

h4 {
  counter-reset: h5;
}

h5 {
  counter-reset: h6;
}
*/
/* h1:before {
  counter-increment: h1;
  content: counter(h1) ". "
} */

.unused h2:before {
  /* counter-increment: h2; */
  counter-increment: heading1;
  content: counter(heading1) ". ";
  /* content: counter(heading); */
}

.unused h3:before {
  /* counter-increment: h3; */
  counter-increment: heading2;
  content: counter(heading1) "." counter(heading2) ". ";
  /* content: counter(heading); */
}

.unused h4:before {
  /* counter-increment: h4; */
  counter-increment: heading3;
  content: counter(heading1) "." counter(heading2) "." counter(heading3) ". ";
  /* content: counter(heading); */
}

.unused h5:before {
  /* counter-increment: h5; */
  counter-increment: heading4;
  content: counter(heading1) "." counter(heading2) "." counter(heading3) "." counter(heading4) ". ";
  /* counter-reset: heading; */
}

.unused h6:before {
  /* counter-increment: h6; */
  counter-increment: heading5;
  content: counter(heading1) "." counter(heading2) "." counter(heading3) "." counter(heading4) "." counter(heading5) ". ";
  /* counter-reset: heading; */
}