/* Paris extension, https://github.com/annaesvensson/yellow-paris */

/* Colors and fonts */

:root {
    --bg: #fff;
    --code-bg: #f7f7f7;
    --notice1-bg: #fffbf0;
    --notice2-bg: #fdf3f2;
    --notice3-bg: #f7f7f7;
    --heading: #333;
    --text: #333;
    --code: #333;
    --link: #824C40;
    --link-active: #824C40;
    --blockquote: #777;
    --notice1-accent: #fb0;
    --notice2-accent: #d32;
    --notice3-accent: #777;
    --separator: #bbb;
    --border: #bbb;
    --font: "Lota Grotesque", "Raleway", Helvetica, sans-serif;
    --monospace-font: Consolas, Menlo, Courier, monospace;
}
@font-face {
    font-family: "Lota Grotesque";
    font-style: normal;
    font-weight: 400;
    font-display: auto;
    src: url(lotagrotesque-light-webfont.woff2) format("woff2");
}
@font-face {
    font-family: "Lota Grotesque";
    font-style: italic;
    font-weight: 400;
    font-display: auto;
    src: url(lotagrotesque-lightit-webfont.woff2) format("woff2");
}
@font-face {
    font-family: "Lota Grotesque";
    font-style: normal;
    font-weight: 800;
    font-display: auto;
    src: url(lotagrotesque-bold-webfont.woff2) format("woff2");
}
@font-face {
    font-family: "Lota Grotesque";
    font-style: italic;
    font-weight: 800;
    font-display: auto;
    src: url(lotagrotesque-boldit-webfont.woff2) format("woff2");
}

/* Pure CSS Fullscreen Navigation Menu */

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu {
  position: relative;
  top: 12px;
  right: 0;
  z-index: 1;
}
.outer-menu .checkbox-toggle {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  cursor: pointer;
  width: 30px;
  height: 30px;
  opacity: 0;
}
.outer-menu .checkbox-toggle:checked + .hamburger > div {
  transform: rotate(135deg);
}
.outer-menu .checkbox-toggle:checked + .hamburger > div:before,
.outer-menu .checkbox-toggle:checked + .hamburger > div:after {
  top: 0;
  transform: rotate(90deg);
}
.outer-menu .checkbox-toggle:checked + .hamburger > div:after {
  opacity: 0;
}
.outer-menu .checkbox-toggle:checked ~ .menu {
  pointer-events: auto;
  visibility: visible;
}
.outer-menu .checkbox-toggle:checked ~ .menu > div {
  transform: scale(1);
  transition-duration: 0.75s;
}
.outer-menu .checkbox-toggle:checked ~ .menu > div > div {
  opacity: 1;
  transition: opacity 0s ease 0s;
}
.outer-menu .checkbox-toggle:hover + .hamburger {
  box-shadow: ;
}
.outer-menu .checkbox-toggle:checked:hover + .hamburger > div {
  transform: rotate(225deg);
}
.outer-menu .hamburger {
  position: absolute;
  top: 4px;
  right: 0;
  z-index: 1;
  width: 30px;
  height: 30px;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .hamburger > div {
  position: relative;
  flex: none;
  width: 100%;
  height: 2px;
  background: #000;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .hamburger > div:before,
.outer-menu .hamburger > div:after {
  content: '';
  position: absolute;
  z-index: 1;
  top: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: inherit;
  transition: all 0.4s ease;
}
.outer-menu .hamburger > div:after {
  top: 8px;
}
.outer-menu .menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  outline: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .menu > div {
  width: 200vw;
  height: 200vw;
  color: #000;
  background: #fff;
  transition: opacity 0.2s ease;
  flex: none;
  transform: scale(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .menu > div > div {
  text-align: center;
  max-width: 90vw;
  max-height: 100vh;
  opacity: 0;
  overflow-y: auto;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .menu > div > div > ul {
  list-style: none;
  padding: 0 1em;
  margin: 0;
  display: block;
  max-height: 100vh;
}
.outer-menu .menu > div > div > ul > li {
  padding: 0 0 1vh 0;
  margin: 1vh;
  font-size: 4vh;
  font-weight: normal;
  line-height: 1.2;
  display: block;
}
.outer-menu .menu > div > div > ul > li > a {
  color: #000;
  text-decoration: none;
}
.outer-menu .menu > div > div > ul > li > a:hover {
  color: var(--link);
  text-decoration: none;
}

.outer-menu .menu > div > div > ul > li.sprachschalter {
  font-size: 3vh;
}


.custom-select {
  display:inline-block;
  padding: 1em 1em 2em 0;
}

.custom-select select {
  appearance: none;
  color: #fff;
  font-family: var(--font);
  font-size: 1em;
  font-weight: 700;
  padding: 0.33em 0.5em 0.33em 0.6em;
  background-color: #000;
  border: 1px solid #000;
  border-radius: 25px;
  cursor: pointer;
}







/* General */

html, body, div, form, pre, span, tr, th, td, img {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}
body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font);
    font-size: 1.2em;
    font-weight: 300;
    line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
    color: var(--heading);
    font-weight: normal;
}
h1 {
    font-size: 2em;
    font-weight: 700;
    line-height: 1.2;
}
h2 {
    font-size: 1.6em;
    font-weight: 700;
    line-height: 1.2;
}
h3 {
    font-size: 1.5em;
    line-height: 1.2;
}
hr {
    height: 1px;
    background: var(--separator);
    border: 0;
}
strong {
    font-weight: bold;
}
code {
    font-size: 1.1em;
}
a {
    color: var(--link);
    text-decoration: none;
}
a:hover {
    color: var(--link);
    text-decoration: underline;
}

a {
    color: var(--link);
    text-decoration: none;
}
a:hover {
    color: var(--link);
    text-decoration: underline;
}
a.black {
    color: #000;
    text-decoration: none;
    font-weight: bold;
}
a.black:hover {
    color: #000;
    text-decoration: none;
    font-weight: bold;
}
a.gray {
    color: gray;
    text-decoration: none;
}
a.gray:hover {
    color: gray;
    text-decoration: none;
}
.entry-content {
    color: gray;
}
ul { 
   padding-left: 1em;
}




/* Content */

.content {
    font-size: 1.11em;
}
.content h1 a {
    color: var(--heading);
}
.content h1 a:hover {
    color: var(--heading);
    text-decoration: none;
}
.content img {
    max-width: 100%;
    height: auto;
}
.content form {
    margin: 1em 0;
}
.content table {
    border-spacing: 0;
    border-collapse: collapse;
}
.content th {
    text-align: left;
    padding: 0.3em;
}
.content td {
    text-align: left;
    padding: 0.3em;
    padding-right: 2em;
    border-top: 1px solid var(--separator);
    border-bottom: 1px solid var(--separator);
}
.content code,
.content pre {
    font-family: var(--monospace-font);
    font-size: 90%;
}
.content code {
    padding: 0.15em 0.4em;
    margin: 0;
    background-color: var(--code-bg);
    color: var(--code);
    border-radius: 3px;
}
.content pre > code {
    padding: 0;
    margin: 0;
    white-space: pre;
    background: transparent;
    border: 0;
    font-size: inherit;
}
.content pre {
    padding: 1em;
    overflow: auto;
    line-height: 1.45;
    background-color: var(--code-bg);
    color: var(--code);
    border-radius: 3px;
}
.content blockquote {
    background-image: url(paris-quote.png);
    background-position: top left;
    background-repeat: no-repeat;
    text-indent: 30px;
    color: var(--blockquote);
}
.content .notice1 {
    margin: 1em 0;
    padding: 10px 1em;
    background-color: var(--notice1-bg);
    border-left: 10px solid var(--notice1-accent);
}
.content .notice2 {
    margin: 1em 0;
    padding: 10px 1em;
    background-color: var(--notice2-bg);
    border-left: 10px solid var(--notice2-accent);
}
.content .notice3,
.content .notice4,
.content .notice5,
.content .notice6 {
    margin: 1em 0;
    padding: 10px 1em;
    background-color: var(--notice3-bg);
    border-left: 10px solid var(--notice3-accent);
}
.content .flexible {
    position: relative;
    padding-top: 0;
    padding-bottom: 56.25%;
}
.content .flexible iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.content .task-list-item {
    list-style-type: none;
}
.content .task-list-item input {
    margin: 0 0.2em 0.25em -1.75em;
    vertical-align: middle;
}
.content .toc {
    margin: 0;
    padding: 0;
    list-style: none;
}
.content .previousnext .previous {
    margin-right: 1em;
}
.content .pagination .previous {
    margin-right: 1em;
}
.content .pagination {
    margin: 1em 0;
}
.content .left {
    float: left;
    margin: 0 1em 0 0;
}
.content .center {
    display: block;
    margin: 0 auto;
}
.content .right {
    float: right;
    margin: 0 0 0 1em;
}
.content .rounded {
    border-radius: 4px;
}

/* Header */

.header .sitename h1 {
    font-size: 1.2em;
    font-weight: 400;
}
.header .sitename h1 a {
    color: var(--heading);
    text-decoration: none;
}
.header .sitename p {
    color: var(--text);
}
.header .sitename-logo {
    display: inline-block;
    background-image: url(Logo_AKD_2018_520px_x2_1040px.png);
    background-size: 520px 115px;
    width: 520px;
    height: 115px;
    margin: 0 10px 50px 0;
    vertical-align: middle;
}

/* Navigation */

.navigation {
    margin-top: 1em;
    margin-bottom: 1em;
    line-height: 2;
}
.navigation a {
    color: var(--text);
    border-bottom: solid 2px var(--bg);
    text-decoration: none;
    padding: 0;
}
.navigation a:hover {
    border-bottom: solid 2px var(--link);
}
.navigation ul {
    margin: 0 -0.3em;
    padding: 0;
    list-style: none;
}
.navigation li {
    display: inline;
    padding: 0 0.3em;
}
.navigation li a.active {
    border-bottom: solid 2px var(--link-active);
}
.navigation ul li {
    display: inline-block;
    position: relative;
    cursor: pointer;
    margin: 0;
}
.navigation ul li ul {
    padding: 0.3em;
    position: absolute;
    width: 13em;
    background: var(--bg);
    z-index: 100;
    display: none;
}
.navigation ul li ul {
    border: 1px solid var(--border);
    border-radius: 4px;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
}
.navigation ul li ul li {
    display: block;
}
.navigation > ul > li:hover > ul {
    display: block;
}
.navigation-banner {
    clear: both;
}
.navigation-hamburger {
        display: none;
}

/* Footer */

.footer {
    margin-top: 2em;
    text-align: left;
    background: var(--bg);
}
.footer .siteinfo {
    padding-top: 1em;
    padding-bottom: 1em;
}
.footer .siteinfo a {
    color: var(--link);
}
.footer .siteinfo a:hover {
    color: var(--link);
    text-decoration: underline;
}

/* Forms and buttons */

.form-control {
    appearance: none;
    margin: 0;
    padding: 0.33em 0.5em 0.33em 0.6em;
    display: inline-block;
    min-width: 190px;
    max-width: 190px;
    background-color: #fff;
    color: #000;
    border: 1px solid #c1c1c1;
    border-radius: 25px;
    font-size: 0.9em;
    font-family: var(--font);
    font-weight: 300;
}
.btn {
    margin: 0;
    padding: 0.33em 0.5em 0.33em 0.6em;
    display: inline-block;
    min-width: 7em;
    color: #fff;
    border: 1px solid #000;
    background-color: #000;
    border-radius: 25px;
    outline-offset: -2px;
    font-size: 0.9em;
    font-family: inherit;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}
.btn:hover,
.btn:focus,
.btn:active {
    color: #fff;
    background-color: var(--link);
    border: 1px solid var(--link);
    text-decoration: none;
}
.btn:active {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}


/* cols begin */
.col2 {
    display:block;
    position: relative;
    float: left;
    padding: 0;
    margin-right: 0;
    padding: 0 10px 0 0;
}
.col2 {
    width: 49%;
}

/* clear */
.clear {
    clear:both;
}
/* Optional: Vertical centered text */
.middle {
    position:relative;
    top:50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.white {
    color:#fff;
}
.center {
    text-align:center;
}
/* cols end */


.wikipages ul,.content .wikitags ul,.content .wikilinks ul {
    padding: 0;
    list-style: none;
    column-width: 20em
}



/* Responsive and print */

.page {
    margin-top: 0.5em;
}
.header,
.content,
.siteinfo {
    margin: 0 auto;
    padding: 0 1em;
    max-width: 1000px;
}
.yellow-bar {
    margin: 0 auto;
    padding: 0.7em 1em;
    max-width: 1000px;
}
.yellow-dropdown a:hover,
.yellow-toolbar a:hover {
    background-color: #d44;
    border-color: #d44;
}
.yellow-toolbar .yellow-toolbar-btn-edit {
    background-color: #333;
    border-color: #333;
    color: #fff;
}
.yellow-toolbar .yellow-toolbar-btn-create {
    background-color: #333;
    border-color: #333;
    color: #fff;
}
.yellow-toolbar .yellow-toolbar-btn-delete {
    background-color: #c33;
    border-color: #c33;
    color: #fff;
}
.form-control {
    width: 20em;
}
.entry-title {
    margin: 2em 0 0 0;
}
.hero {
        border-radius: 4px;
        aspect-ratio: 10 / 4;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden
}
.hero img {
        border-radius: 4px;
        flex-shrink: 0;
        min-width: 100%;
        min-height: 100%;
        position: relative;
        transform: translateY(6%);
}
.yellow-edit-text {
    margin: 0;
    padding: 0 2px;
    outline: none;
    resize: none;
    border: none;
    font-size: 0.9em;
    font-family: var(--monospace-font);
    font-weight: normal;
    line-height: normal;
}



@media screen and (max-width: 1060px) {
    body {
        font-size: 0.9em;
    }
    .header .sitename h1 {
        margin: 0;
        padding: 0;
    }
    .header .sitename h2 {
        margin-top: -0.5em;
    }
    .header .sitename-logo {
        background-image: url(Logo_AKD_2018_270px_x2_540px.png);
        background-size: 270px 60px;
        width: 270px;
        height: 60px;
        margin: 0 10px 20px 0;
    }
    .navigation-hamburger {
        display: initial;
    }
    .navigation {
        display: none;
    }
    .navigation {
        margin-top: 0.5em;
        margin-bottom: 0.5em;
    }
    .content h1,
    .content h2 {
        font-size: 1.5em;
    }
    .form-control {
        width: 14em;
    }
    .custom-select select {
        max-inline-size: 35ch;
    }
    .hero {
        aspect-ratio: 1 / 1;
    }
    .col2 {
        width:100%;
        padding: 0;
    }
}

@media print {
    .page {
        border: none !important;
    }
    .navigation-hamburger {
        display: none;
    }
    .navigation {
        display: none;
    }
    .footer-language {
        display: none;
    }
    .footer-legal {
        display: none;
    }
}