@font-face {
  font-family: Publico Headline;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://www2.aachener-zeitung.de/zva/karlo/MHA-Tools/sharedFonts/PublicoHeadline-Medium.woff2) format("woff2")
}

@font-face {
  font-family: Noto Sans;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://www2.aachener-zeitung.de/zva/karlo/MHA-Tools/sharedFonts/NotoSans-Regular.woff2) format("woff2")
}

@font-face {
  font-family: Noto Sans;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://www2.aachener-zeitung.de/zva/karlo/MHA-Tools/sharedFonts/NotoSans-Bold.woff2) format("woff2")
}

::-webkit-scrollbar {
  display: none;
}

/* Verstecke die Scrollleiste auf Firefox */
/* Dies funktioniert nur in Firefox */
html {
  scrollbar-width: none;
}

body {
  background: #edf2f7;
  margin: 0px;
}

.imgsource{
  text-transform: uppercase;
  font-size: 0.65em;
  letter-spacing : 0.0125;
}

/* Styles for the fixed position */
.toggleFix.fixed {
  position: fixed;
  top: 0;
  width: 100%;
}

#headline {
  font-family: Noto Sans;
  font-style: normal;
  font-weight: 400;
  font-size: 1.4em;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  display: inline-block;
  margin: 2px;
  color: #007CB2;
  border-radius: 10px;
  padding: 0.3em;
  border-color: #007CB2;
  border-width: 1px;
  border-style: solid;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

#dwl_global_content,
#dwl_menu {
  display: block;
  margin: auto;
  width: 100%;
  max-width: 650px;
}

#dwl_global_content {
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 49.9%,
      rgba(0, 0, 0, 0.2) 49.95%,
      rgba(0, 0, 0, 0.2) 50.05%,
      rgba(0, 0, 0, 0) 50.1%,
      rgba(0, 0, 0, 0) 100%);
}

#dwl_menu {
  font: 400 1em "Noto Sans", sans-serif;
}

details {
  margin: 2em auto;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  width: 100%;
  background: #ffffff;
  border-radius: 8px;
  position: relative;
  width: 50%;
  max-width: 650px;
  overflow: hidden;
  cursor: pointer;
  transition: width 0.5s ease;
}

details[open] {
  margin: 4em auto;
  width: 100%;
  transition: none;
}

details .summary-content {
  border-top: 1px solid #e2e8f0;
  cursor: default;
  padding: 1em;
  font-weight: 300;
  width: 100%;
  box-sizing: border-box;
  font: 400 1em "Noto Sans", sans-serif;
  line-height: 1.5em;
}

details .summary-content h1 {
  font: 500 1.6em "Publico Headline", sans-serif;
  border-left: 1px solid #007CB2;
  padding: 0 1em;
}

details summary {
  font: 700 0.9em "Noto Sans", sans-serif;
  padding: 1em;
  color: #007CB2;
}

details[open] summary {
  font: 700 1.2em "Noto Sans", sans-serif;
  padding: 1em;
  color: #007CB2;
}

details summary .summary-chevron-down,
details summary .summary-chevron-up,
details summary::-webkit-details-marker {
  display: none;
}

details[open] summary .summary-chevron-down {
  display: block;
}

details[open] .summary-content {
  animation: opentxt 0.7s ease-in-out;
}

details .summary-content .ministry {
  display: inline-block;
  margin: 2px;
  background-color: #007CB2;
  border-radius: 2px;
  padding: 0.3em;
  font: 400 0.7em "Noto Sans", sans-serif;
  color: white;
}

details .summary-content img {
  margin: 1em auto;
  display: block;
  width: 100%;
  cursor : pointer;
}

details .summary-content a {
  text-decoration: none;
  color: black;
  border-bottom: 1px dotted #007CB2;
}

details .summary-content a:hover {
  border-bottom: 1px solid #007CB2;
}

details .summary-content div.video-embed {
  position: relative;
  display: block;
  max-width: 960px;
  margin: 1em auto;
}

details .summary-content small {
  font: 400 0.8em "Noto Sans", sans-serif;
  color: rgba(0, 0, 0, 0.9);
  display: block;
  margin: 0 auto 2em auto;
}

@media screen and (min-width: 550px) {

  details .summary-content img,
  details .summary-content div.video-embed,
  details .summary-content small {
    width: 80%;
  }
}

details .summary-content a.wort {
  display: block;
  color: black;
  text-decoration: none;
  font: 400 0.9em "Noto Sans", sans-serif;
  padding: 0.4em;
  border: none;
}

details .summary-content a.wort:hover {
  text-decoration: underline;
}

@keyframes opentxt {
  0% {
    opacity: 0;
    margin-left: -100px;
  }

  40% {
    opacity: 1;
    margin-left: 10px;
  }

  100% {
    opacity: 1;
    margin-left: 0px;
  }
}

details:not([open]) summary .summary-chevron-up {
  display: block;
}

details summary:focus {
  outline: none;
}

details summary:hover .summary-chevron-up svg {
  opacity: 1;
}

details .summary-chevron-up svg {
  opacity: 0.5;
}

details .summary-chevron-up,
details .summary-chevron-down {
  pointer-events: none;
  position: absolute;
  top: 0.75em;
  right: 1em;
  background: #ffffff;
}

details .summary-chevron-up svg,
details .summary-chevron-down svg {
  display: block;
}

input[type="checkbox"] {
  --active: #007CB2;
  --active-inner: #fff;
  --focus: 2px rgba(39, 94, 254, 0.3);
  --border: #bbc1e1;
  --border-hover: #007CB2;
  --background: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 21px;
  outline: none;
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin: 0;
  cursor: pointer;
  border: 1px solid var(--bc, var(--border));
  background: var(--b, var(--background));
  transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
}

input[type="checkbox"]:after {
  content: "";
  display: block;
  left: 0;
  top: 0;
  position: absolute;
  transition: opacity var(--d-o, 0.2s),
    -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
  transition: transform var(--d-t, 0.3s) var(--d-t-e, ease),
    opacity var(--d-o, 0.2s);
  transition: transform var(--d-t, 0.3s) var(--d-t-e, ease),
    opacity var(--d-o, 0.2s),
    -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
}

input[type="checkbox"]:checked {
  --b: var(--active);
  --bc: var(--active);
  --d-o: 0.3s;
  --d-t: 0.6s;
  --d-t-e: cubic-bezier(0.2, 0.85, 0.32, 1.2);
}

input[type="checkbox"]:hover:not(:checked) {
  --bc: var(--border-hover);
}

input[type="checkbox"]:focus,
input[type="radio"]:focus {
  box-shadow: 0 0 0 var(--focus);
}

input[type="checkbox"]+label {
  font-size: 14px;
  line-height: 21px;
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  margin-left: 4px;
  color: #8a91b4;
}

input[type="checkbox"].switch {
  width: 38px;
  border-radius: 11px;
}

input[type="checkbox"].switch:after {
  left: 2px;
  top: 2px;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  background: var(--ab, var(--border));
  transform: translateX(var(--x, 0));
}

input[type="checkbox"].switch:checked {
  --ab: var(--active-inner);
  --x: 17px;
}



#fullImageContainer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index : 999;
}

#fullImage {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  margin: auto;
}

#closeButton {
  position: absolute;
  top: 30px;
  right: 20px;
  cursor: pointer;
  color: #fff;
  font-size: 28px;
  z-index: 1001
}