/* lato-300 - latin-ext_latin */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/lato-v23-latin-ext_latin-300.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/lato-v23-latin-ext_latin-300.eot?#iefix") format("embedded-opentype"), url("../fonts/lato-v23-latin-ext_latin-300.woff2") format("woff2"), url("../fonts/lato-v23-latin-ext_latin-300.woff") format("woff"), url("../fonts/lato-v23-latin-ext_latin-300.ttf") format("truetype"), url("../fonts/lato-v23-latin-ext_latin-300.svg#Lato") format("svg");
  /* Legacy iOS */
}
/* lato-regular - latin-ext_latin */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/lato-v23-latin-ext_latin-regular.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/lato-v23-latin-ext_latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/lato-v23-latin-ext_latin-regular.woff2") format("woff2"), url("../fonts/lato-v23-latin-ext_latin-regular.woff") format("woff"), url("../fonts/lato-v23-latin-ext_latin-regular.ttf") format("truetype"), url("../fonts/lato-v23-latin-ext_latin-regular.svg#Lato") format("svg");
  /* Legacy iOS */
}
/* lato-700 - latin-ext_latin */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/lato-v23-latin-ext_latin-700.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/lato-v23-latin-ext_latin-700.eot?#iefix") format("embedded-opentype"), url("../fonts/lato-v23-latin-ext_latin-700.woff2") format("woff2"), url("../fonts/lato-v23-latin-ext_latin-700.woff") format("woff"), url("../fonts/lato-v23-latin-ext_latin-700.ttf") format("truetype"), url("../fonts/lato-v23-latin-ext_latin-700.svg#Lato") format("svg");
  /* Legacy iOS */
}
:root {
  --font-family: Lato, Helvetica, Arial;
}

body,
html,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
  padding: 0px;
}

html,
body {
  min-height: 100vh;
}

html {
  font-size: 110%;
}
@media (min-width: 500px) {
  html {
    font-size: 120%;
  }
}

body {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  line-height: 1.6rem;
  background: #fafafa;
  color: #444;
  font-family: var(--font-family);
}

h1,
h2 {
  color: #e40039;
  font-weight: 400;
}

h1 {
  font-size: 2rem;
  line-height: 2.2rem;
  margin-top: 0.7rem;
  margin-bottom: 1rem;
}

h2 {
  margin-top: 0.5rem;
  margin-bottom: 0.7rem;
}

.datenschutzerklarung h2 {
  margin-top: 3rem;
}

img {
  max-width: 100%;
}

a {
  color: #e40039;
  text-decoration: none;
}
a:active, a:hover {
  color: #ff7e9e;
}

p {
  margin-bottom: 1rem;
}

#site-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #7d8695;
  border-bottom: 1px solid #fafafa;
  height: 120px;
  position: fixed;
  top: 0px;
  right: 0px;
  left: 0px;
  color: #fff;
  z-index: 1;
  box-sizing: border-box;
  transition: all 0.4s;
}
#site-header .logo {
  flex: 0 0 auto;
  margin-left: 20px;
  line-height: 13px;
}
@media (min-width: 1000px) {
  #site-header .logo {
    margin-left: 60px;
  }
}
#site-header #primary-menu-container {
  flex: 1 0 auto;
}
@media (max-width: 1000px) {
  #site-header #primary-menu-container {
    display: none;
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    flex-direction: column;
    background: #fff;
  }
}
#site-header #primary-menu {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  list-style: none;
  padding: 0px;
  margin: 0px;
  margin-right: 60px;
}
@media (max-width: 1000px) {
  #site-header #primary-menu {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
  }
}
#site-header .menu-item {
  text-transform: uppercase;
  font-weight: 900;
  margin-right: 20px;
}
@media (max-width: 1000px) {
  #site-header .menu-item {
    margin-right: 0px;
    margin-bottom: 20px;
  }
}
#site-header .menu-item:last-child {
  margin-right: 0px;
}
#site-header .menu-item a,
#site-header .menu-item a:hover {
  color: inherit;
  text-decoration: none;
}
@media (max-width: 1000px) {
  #site-header .menu-item a,
#site-header .menu-item a:hover {
    color: #7d8695;
  }
}
#site-header .menu-item.current-menu-item a {
  color: #e40039;
}
#site-header .mobile-menu-button,
#site-header .mobile-menu-close-button {
  display: none;
  cursor: pointer;
}
#site-header .mobile-menu-button {
  margin-left: auto;
  margin-right: 20px;
}
@media (max-width: 1000px) {
  #site-header .mobile-menu-button {
    display: block;
  }
}
#site-header .mobile-menu-close-button {
  color: #7d8695;
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 20px;
}

#main-content {
  background: #fafafa;
  position: relative;
  margin-top: 120px;
  hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
}
#main-content.page404 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 0 auto;
}

form select.error,
form input[type=text].error {
  background: #ffccd9;
  border-color: #fff;
}

#site-footer {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  box-sizing: border-box;
  align-items: center;
  position: relative;
  min-height: 100px;
  background-color: #7d8695;
  color: #fff;
  margin-top: auto;
}
@media (min-width: 600px) {
  #site-footer {
    flex-direction: row;
  }
}
#site-footer #footer-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0px;
  padding: 0px;
  list-style: none;
}
#site-footer #footer-menu .menu-item:not(:last-child) {
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid;
}
#site-footer #footer-menu a {
  color: #fff;
}
#site-footer .social {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  filter: saturate(0) brightness(100);
}
@media (min-width: 600px) {
  #site-footer .social {
    margin-left: 40px;
    margin-top: 4px;
  }
}
#site-footer .social a:not(:last-child) {
  margin-right: 20px;
}
#site-footer .social img {
  width: 16px;
}

#toast-container .toast-error {
  background-color: #ffccd9;
}
#toast-container .toast-close-button {
  color: #000;
}
#toast-container.toast-bottom-center > div, #toast-container.toast-top-center > div {
  width: auto;
  max-width: 800px;
  opacity: 1;
  color: #000;
}

.datac-video-privacy-container {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  font-size: 0.8rem;
  line-height: 1rem;
  padding: 10px;
  text-align: center;
}
@media (min-width: 400px) {
  .datac-video-privacy-container {
    font-size: 1rem;
    line-height: 1.2rem;
  }
}
.datac-video-privacy-container button {
  background: #e40039;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin-top: 1.4rem;
  cursor: pointer;
  border-radius: 2px;
  font-size: inherit;
}

/*# sourceMappingURL=style.css.map */
