/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

:root {
  --header-height: 56px;
  --footer-height: 80px;

  --menu-icon-radius: 36px;
  --menu-icon-margin: calc( (var(--header-height) - var(--menu-icon-radius)) / 2);

  --drawer-width: 230px;

  --social-icon-size: 36px;

  --background-color: white;
  --accent-color: #009985;
  --accent-color-light: white;
  --accent-color-dark: #535145;
}

.unstyled {
  all: unset;
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.divider-horiz {
  padding: 8px;
}

.text-center {
  text-align: center;
}

.edited {
  font-size: 0.75em;
}

.bold-text {
  font-weight: bold;
}

.hyperlink, .green-text {
  -webkit-text-fill-color: var(--accent-color);
  color: var(--accent-color);
}

.black-text {
  -webkit-text-fill-color: black;
  color: black;
}

.img-base64 {
  -webkit-filter: blur(9px);
          filter: blur(9px);
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--background-color);
  font-family: 'Nunito Sans', sans-serif;
  background: var(--accent-color-dark);
}

h2, h3 {
  -webkit-text-fill-color: var(--accent-color);
  color: var(--accent-color);
}

p {
  text-align: justify;
}

#header {
  z-index: 102;
  width: 100vw;
  height: var(--header-height);
  position: fixed;
  left: 0;
  top: 0;
  overflow-x: hidden;
  overflow-y: hidden;
  background: var(--accent-color-dark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#menu-icon {
  position: fixed;
  left: var(--menu-icon-margin);
  top: var(--menu-icon-margin);
  width: var(--menu-icon-radius);
  height: var(--menu-icon-radius);
}

#menu-icon rect {
  fill: var(--accent-color);
}

#menu-text {
  position: fixed;
  left: calc( var(--menu-icon-radius) + (var(--menu-icon-margin) * 2) );
  top: var(--menu-icon-margin);
  line-height: var(--menu-icon-radius);
  margin: 0;
  font-weight: normal;
  color: var(--accent-color);
}

#menu {
  position: fixed;
  left: 0;
  top: 0;
  background: var(--accent-color-dark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.menu-row {
  z-index: 103;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: var(--header-height);
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  overflow: visible;
}

/*
#menu-wrapper {
  z-index: 102;
  position: fixed;
  left: 0;
  top: var(--header-height);
  width: 100vw;
  height: 100vh;
  overflow-x: visible;
  overflow-y: auto;
}

.menu-col {
  position: relative;
  margin-top: var(--header-height);
  width: 100vw;
  min-height: calc( 100vh - var(--header-height) );
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
*/

.menu-col {
  z-index: 101;
  position: fixed;
  left: 0;
  top: 0;
  margin-top: var(--header-height);
  width: 100vw;
  height: calc( 100vh - var(--header-height) );
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow-y: auto;
}

.menu-item {
  text-align: center;
  line-height: var(--header-height);
  height: var(--header-height);
  padding: 0px 8px;
  cursor: pointer;
  -webkit-text-fill-color: var(--accent-color);
  color: var(--accent-color);
  font-weight: 900;
}

.menu-item-uppercase {
  text-transform: uppercase;
}

.menu-item:hover {
  -webkit-text-fill-color: var(--accent-color-light);
  color: var(--accent-color-light);
}

.menu-col > .menu-item:first-child {
  /* add some kind of top padding for being visible when scrolling in open menu on mobile*/
}

.sub-menu-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu-row .sub-menu-container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.menu-col {
  top: var(--header-height);
}

.fade-in-animation {
  top: var(--header-height);
  -webkit-animation: fade-in-animation 0.75s ease-in-out;
          animation: fade-in-animation 0.75s ease-in-out;
}

@-webkit-keyframes fade-in-animation {
  0% {
    opacity: 0.25;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  75% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  100% {
    opacity: 1.0;
  }
}

@keyframes fade-in-animation {
  0% {
    opacity: 0.25;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  75% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  100% {
    opacity: 1.0;
  }
}

.menu-row .sub-menu {
  margin: 0px;
  background: var(--accent-color-dark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.menu-col .sub-menu-container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.menu-col .sub-menu .menu-item {
  margin: 0px 8px;
  -webkit-text-fill-color: var(--accent-color-dark);
  color: var(--accent-color-dark);
  background: var(--accent-color-light);
  min-height: var(--header-height);
  line-height: 24px;
}

.menu-col .sub-menu .menu-item:hover {
  -webkit-text-fill-color: var(--accent-color);
  color: var(--accent-color);
}

.menu-col .sub-menu {
  margin: 0px -8px;
  background: var(--accent-color-dark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: left;
}

#drawer {
  position: fixed;
  right: 0;
  top: var(--header-height);
  width: var(--drawer-width);
  height: calc(100vh - var(--header-height));
  background: var(--background-color);
  border-left: 2px solid var(--accent-color-dark);
  overflow-x: hidden;
  overflow-y: auto;
}

#drawer > img {
  width: var(--drawer-width);
  height: auto;
  background: var(--background-color);
  cursor: pointer;
}

#drawer > .drawer-container-wrapper {
  width: calc(var(--drawer-width));
  overflow-x: hidden;
  overflow-y: hidden;
}

#drawer .drawer-container {
  width: calc(var(--drawer-width) - 32px);
  padding: 8px 16px;
  overflow-x: hidden;
  overflow-y: hidden;
}

#drawer .drawer-flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.drawer-subhead {
  margin-bottom: 0;
  padding: 0px 8px;
  color: var(--accent-color);
}

.language-icon, .social-icon, .download-icon {
  margin: 0;
  padding: 8px;
  cursor: pointer;
}

.social-icon {
  font-size: var(--social-icon-size);
}

.quick-link {
  display: inline-block;
}

.language-icon:hover, .social-icon:hover, .quick-link:hover {
  color: var(--accent-color);
}

.download-link {
  margin: 0;
  padding: 0;
}

.icon-left-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.icon-left-link > span {
  padding-left: 4px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.drawer-news, .drawer-termin, .drawer-bank-details {
  padding: 8px;
}

.drawer-bank-details {
  overflow-x: auto;
}

.drawer-bank-details span {
  font-size: 12px;
}

.drawer-news-title *, .drawer-termin-description {
  color: var(--accent-color);
}

.drawer-news-title {
  cursor: pointer;
}

#content {
  /*min-height: calc(100vh - var(--header-height) - var(--footer-height) - 32px);*/
  width: calc(100vw - var(--drawer-width) - 32px);
  padding: 16px;
  margin-top: var(--header-height);
  background: var(--background-color);
}

#content.windows-scrollbar-width-workaround {
  width: calc(100vw - var(--drawer-width) - 48px);
}

#content #gesicht-zeigen > iframe {
  width: calc(100vw - var(--drawer-width) - 32px);
  height: calc(100vh - var(--header-height) - var(--footer-height) - 32px);
  border: none;
  padding: 0;
  margin: 0;
}

#content.windows-scrollbar-width-workaround #gesicht-zeigen > iframe {
  width: calc(100vw - var(--drawer-width) - 48px);
}

#plakate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: calc(100vw - var(--drawer-width) - 32px);
}

.plakat-img {
  margin-bottom: 16px;
  width: calc((100vw - var(--drawer-width) - 32px - 48px) / 4);
}

#content.windows-scrollbar-width-workaround #plakate {
  width: calc(100vw - var(--drawer-width) - 48px);
}

#content.windows-scrollbar-width-workaround .plakat-img {
  width: calc((100vw - var(--drawer-width) - 48px - 48px) / 4);
}

.divider-top-container {
  border-top: 2px solid var(--accent-color);
}

.subhead-date * {
  font-size: 14px;
}

.pm-img-flexbox {
  width: calc(100vw - var(--drawer-width) - 32px);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pm-img, .aktuelles-img {
  width: 25vw;
  min-width: var(--drawer-width);
}

.pressespiegel-container {
  margin-top: 32px;
}

.pressespiegel-title, .pressespiegel-icon {
  -webkit-text-fill-color: var(--accent-color);
  color: var(--accent-color);
  cursor: pointer;
}

.pressespiegel-icon {
  padding: 8px;
}

.pressespiegel-description {}

.pressespiegel-source {
  font-size: 14px;
  font-style: italic;
}

.faq-subhead {
  display: inline-block;
  padding-top: 8px;
  width: calc(100vw - var(--drawer-width) - 32px);
  text-align: center;
  font-weight: bolder;
}

.faq-to-top {
  display: inline-block;
  text-align: right;
}

.aktuelles-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.aktuelles-left {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.aktuelles-right {
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 1em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.img-col-start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.img-row-even {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.full-width-video {
  width: calc(100vw - var(--drawer-width) - 32px);
  height: auto;
  max-height: calc(100vh - var(--header-height) - 32px);
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

#content.windows-scrollbar-width-workaround .full-width-video {
  width: calc(100vw - var(--drawer-width) - 48px);
}

.full-page-iframe {
  width: calc(100vw - var(--drawer-width) - 32px);
  height: calc(100vh - var(--header-height) - 32px);
}

#content.windows-scrollbar-width-workaround .full-page-iframe {
  width: calc(100vw - var(--drawer-width) - 48px);
}

#gesicht-zeigen-best-quality {
  position: relative;
  left: 4px;
  top: 4px;
  z-index: 1;
  padding: 0px 4px;
  border-radius: 4px;
  font-weight: bold;
  background-color: rgba(83, 81, 69, 0.4);
}

#gesicht-zeigen-video {
  position: relative;
  top: -22px;
}

#footer {
  width: calc(100vw - var(--drawer-width) - 32px);
  height: var(--footer-height);
  padding: 0px 16px;
  left: 0;
  overflow-y: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  background: var(--accent-color-dark);
}

#footer.flex-col {
  height: auto;
  padding: 16px 16px;
}

button.footer-item {
  height: calc(var(--footer-height) / 2);
  padding: 0px 8px;
  border-radius: 16px;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
}

button.footer-item, p.footer-item {
  -webkit-text-fill-color: var(--accent-color);
  color: var(--accent-color);
}

button.footer-item:hover, p.footer-item > a:hover {
  -webkit-text-fill-color: var(--accent-color-light);
  color: var(--accent-color-light);
}

#footer.flex-col > button.footer-item {
  height: auto;
}

#footer.flex-col > p.footer-item {
  margin: 0;
}

@media only screen and (max-width: 1110px) {
  .plakat-img {
    width: calc((100vw - var(--drawer-width) - 32px - 16px) / 2);
  }

  #content.windows-scrollbar-width-workaround .plakat-img {
    width: calc((100vw - var(--drawer-width) - 48px - 16px) / 2);
  }
}

@media only screen and (max-width: 689px) {
  #drawer {
    position: relative;
    top: 0;
    width: 100vw;
    height: auto;
    margin-top: var(--header-height);
    border-left: none;
    border-bottom: 2px solid var(--accent-color-dark);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    overflow-y: hidden;
  }

  #drawer > .drawer-container-wrapper {
    width: calc(100vw - var(--drawer-width));
  }

  #drawer .drawer-container {
    width: calc(100vw - var(--drawer-width) - 32px);
  }

  #content {
    width: calc(100vw - 32px);
    margin-top: 0;
  }

  #content.windows-scrollbar-width-workaround {
    width: calc(100vw - 48px);
  }

  .full-width-video {
    width: calc(100vw - 32px);
  }

  #content.windows-scrollbar-width-workaround .full-width-video {
    width: calc(100vw - 48px);
  }

  .full-page-iframe {
    width: calc(100vw - 32px);
  }

  #content.windows-scrollbar-width-workaround .full-page-iframe {
    width: calc(100vw - 48px);
  }

  #content #gesicht-zeigen > iframe {
    width: calc(100vw - 32px);
  }

  #content.windows-scrollbar-width-workaround #gesicht-zeigen > iframe {
    width: calc(100vw - 48px);
  }

  #plakate {
    width: calc(100vw - 32px);
  }

  .plakat-img {
    width: calc((100vw - 32px - 16px) / 2);
  }

  #content.windows-scrollbar-width-workaround #plakate {
    width: calc(100vw - 48px);
  }

  #content.windows-scrollbar-width-workaround .plakat-img {
    width: calc((100vw - 48px - 16px) / 2);
  }

  .pm-img-flexbox {
    width: calc(100vw - 32px);
  }

  .faq-subhead {
    width: calc(100vw - 32px);
  }

  #footer {
    width: calc(100vw - 32px);
  }
}

@-webkit-keyframes grow-down-animation {
  0% {
    height: 0;
  }
  100% {
    height: 294px;
  }
}

@keyframes grow-down-animation {
  0% {
    height: 0;
  }
  100% {
    height: 294px;
  }
}

@media only screen and (max-width: 459px) {
  #drawer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .drawer-grow-down-animation {
    -webkit-animation: grow-down-animation 1.8s ease-in-out;
            animation: grow-down-animation 1.8s ease-in-out;
  }

  #drawer > .drawer-container-wrapper {
    width: 100vw);
  }

  #drawer .drawer-container {
    width: calc(100vw - 32px);
  }

  #plakate {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .plakat-img {
    width: calc(100vw - 32px);
  }

  #content.windows-scrollbar-width-workaround .plakat-img {
    width: calc(100vw - 48px);
  }

  .aktuelles-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .aktuelles-img {
    width: calc(100vw - 32px);
  }
}

@media only screen and (max-width: 229px) {
  #drawer > img {
    width: 100vw;
  }
}

@media only screen and (max-width: 261px) {
  .pm-img {
    width: calc(100vw - 32px);
    min-width: calc(100vw - 32px);
  }
}