@supports (font-variation-settings: normal) {
  @font-face {
    font-family: SRG_SSR_Text_VF;
    src:
      url("/fonts/SRGSSRTypeVF_Text_W_Wght.woff2") format("woff2-variations"),
      url("/fonts/SRGSSRTypeVF_Text_W_Wght.woff2") format("woff2");
    font-weight: 300 800;
    font-display: swap;
  }
}

body {
  --t-body-bg: #f5f5f2;
  --t-a-color: #c91024;
  --t-a-color-hover: #8d0614;
  --t-a-color-active: #6a0b0c;
}

:root {
  --fec-gap: 16px;
}

@media (min-width: 1024px) {
  :root {
    --fec-gap: 24px;
  }
}

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 20%;
}

body {
  background-color: var(--t-body-bg);
  font-family: SRG_SSR_Text_Static, sans-serif;
  font-variation-settings: "wght" 300;
  font-weight: 300;
  margin: 0;
}

@supports (font-variation-settings: normal) {
  body {
    font-family: SRG_SSR_Text_VF, sans-serif;
  }
}

body,
html {
  line-height: 1.5;
}

nav {
  display: inline;
}

ol,
ul {
  counter-reset: item;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  font-variation-settings: "wght" 500;
  font-weight: 500;
}

a {
  color: var(--t-a-color);
  text-decoration: none;
}

a:hover {
  color: var(--t-a-color-hover);
}

a:active {
  color: var(--t-a-color-active);
}

img {
  border-style: none;
  display: block;
  height: auto;
  width: 100%;
}

button,
input {
  font-family: inherit;
}

:focus {
  outline: none;
}

.h-offscreen {
  clip: rect(0, 0, 0, 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.h-element--hide {
  display: none !important;
}

@supports (font-variation-settings: normal) {
}

.l-card {
  --t-card-bg: #fefefd;
}

.l-content-wrapper {
  margin: 0 auto;
  max-width: 1200px;
  min-width: 320px;
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .l-content-wrapper {
    margin-left: 32px;
    margin-right: 32px;
  }
}

.l-content-wrapper__space {
  margin-left: 8px;
  margin-right: 8px;
}

@media (min-width: 720px) and (max-width: 1023px) {
  .l-content-wrapper__space {
    margin-left: 32px;
    margin-right: 32px;
  }
}

@media (min-width: 1024px) {
  .l-content-wrapper__space {
    margin-left: auto;
    margin-right: auto;
  }
}

.l-card {
  background-color: var(--t-card-bg);
  border-radius: 2px;
  box-shadow:
    0 0 1px 0 rgba(0, 0, 0, 0.16),
    0 0 1px 0 rgba(0, 0, 0, 0.08);
  margin-bottom: 16px;
  margin-top: -1px;
  padding-top: 1px;
}

@media (min-width: 720px) {
  .l-card {
    margin-bottom: 32px;
  }
}

@media (min-width: 1280px) {
  .l-card {
    margin-bottom: 40px;
  }
}

.l-card:after {
  content: "";
  display: block;
  height: 1px;
  margin-top: -1px;
}

.button {
  --t-button: #fff;
  --t-button-bg: #4e4d47;
  --t-button-bg-hover: #6b6960;
  --t-button-bg-active: #888579;
  --t-button-secondary: #4e4d47;
  --t-button-secondary-bg: #ebebe5;
  --t-button-secondary-bg-hover: #dadad2;
  --t-button-secondary-bg-active: #cac8bf;
  --t-button-white: #4e4d47;
  --t-button-white-bg: #fafaf8;
  --t-button-white-bg-hover: #ebebe5;
  --t-button-white-bg-active: #cac8bf;
  --t-button-dark: #fff;
  --t-button-dark-bg: #4e4d47;
  --t-button-dark-bg-hover: #6b6960;
  --t-button-dark-bg-active: #888579;
  --t-button-inactive-bg: #4e4d47;
  --t-button-pill-bg: #fafaf8;
  --t-button-link-text: #c91024;
  --t-button-neutral-text: #22211d;
  --t-button-neutral-bg-hover: #f5f5f2;
  --t-button-neutral-bg-active: #ebebe5;
  --t-button-accented-bg-hover: #ebebe5;
  --t-button-accented-bg-active: #dadad2;
  --t-button-cta-bg-start: #e31f2b;
  --t-button-cta-bg-end: #c91024;
  --t-button-share: #4e4d47;
  --t-button-share-bg: #ebebe5;
  --t-button-share-bg-hover: #dadad2;
  --t-button-share-bg-active: #cac8bf;
}

.button {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
  background-color: var(--t-button-bg);
  border: 0;
  border-radius: 2px;
  box-shadow:
    0 1px 2px 0 rgba(0, 0, 0, 0.16),
    0 0 2px 0 rgba(0, 0, 0, 0.08);
  color: var(--t-button);
  cursor: pointer;
  display: block;
  font-size: 16px;
  font-variation-settings: "wght" 400;
  font-weight: 400;
  letter-spacing: 0.4px;
  letter-spacing: 0.8px;
  margin-top: 20px;
  min-height: var(--fec-button-min-height, 48px);
  padding: var(--fec-button-padding, 13px 40px);
  transition:
    background-color 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
  width: 100%;
}

.button .button-icon {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  display: none;
  height: 24px;
  margin: -1px 8px -7px -44px;
  min-width: 24px;
}

@media (min-width: 720px) {
  .button {
    width: auto;
  }

  .button .button-icon {
    margin-left: 0;
  }
}

.button .button-text {
  line-height: 1.5;
}

.button:active,
.button:focus,
.button:hover {
  box-shadow:
    0 4px 8px 0 rgba(0, 0, 0, 0.16),
    0 0 8px 0 rgba(0, 0, 0, 0.08);
  color: var(--t-button);
  outline: none;
}

.button:focus,
.button:hover {
  background-color: var(--t-button-bg-hover);
}

.button:active {
  background-color: var(--t-button-bg-active);
}

.button:before {
  background-color: initial;
  bottom: 0;
  content: "";
  height: 0;
  left: 0;
  position: absolute;
  width: 100%;
}

.button .button-wrapper {
  white-space: nowrap;
}

.button:not(.button--mixed-case) .button-text {
  text-transform: uppercase;
}

a.button {
  display: inline-block;
  text-align: center;
}

.button--no-spacing {
  margin-bottom: 0;
  margin-top: 0;
}

.button--call-to-action {
  background-image: linear-gradient(
    to right,
    var(--t-button-cta-bg-start),
    var(--t-button-cta-bg-end)
  );
  color: #fff;
}

.button--call-to-action:active,
.button--call-to-action:hover {
  filter: brightness(1.05);
}

.button--secondary {
  background-color: var(--t-button-secondary-bg);
}

.button--secondary,
.button--secondary:active,
.button--secondary:focus,
.button--secondary:hover {
  color: var(--t-button-secondary);
}

.button--secondary:focus,
.button--secondary:hover {
  background-color: var(--t-button-secondary-bg-hover);
}

.button--secondary:active {
  background-color: var(--t-button-secondary-bg-active);
}

.button--secondary .button-wrapper {
  height: 22px;
}

.button--transparent,
.button--transparent:active,
.button--transparent:focus,
.button--transparent:hover {
  background-color: initial;
  box-shadow: none;
  color: var(--t-gl-nav-group-open-item-color);
}

.button-wrapper--svg-icon {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}

.button-wrapper--svg-icon .button-icon {
  display: inline-block;
  height: 24px;
  margin: 0 12px 0 0;
  min-width: 24px;
}

.button--icon-only {
  padding: 12px;
  width: auto;
}

.button--icon-only .button-wrapper {
  height: auto;
}

.button--icon-only .button-icon {
  margin: 0;
}

.button--full-width {
  width: 100%;
}

@media (max-width: 719px) {
  .button--no-text-on-mobile .button-text {
    display: none;
  }

  .button--no-text-on-mobile .button-wrapper .button-icon {
    margin-right: 0;
  }
}

@media (max-width: 1023px) {
  .button--no-text-on-desktop-down .button-text {
    display: none;
  }

  .button--no-text-on-desktop-down .button-wrapper .button-icon {
    margin-right: 0;
  }
}

.button--align-left {
  text-align: left;
}

.button--align-left .button-wrapper {
  justify-content: left;
  text-align: left;
}

.button--icon-button {
  font-size: 14px;
  letter-spacing: 0.4px;
  line-height: 1.14;
  padding: var(--fec-button-padding, 16px);
  transition: opacity 0.2s ease-in-out;
  width: auto;
}

.button--icon-button:hover {
  opacity: 0.8;
}

.button--icon-button:active {
  opacity: 0.6;
}

.button--icon-button.button--icon-only .button-icon {
  margin-right: 0;
}

.button--icon-button .button-icon {
  margin-right: 8px;
}

.button--pill {
  border-radius: 24px;
  display: inline-block;
  margin-top: 0;
  padding: 0 40px;
  transition:
    filter 0.3s ease-in-out,
    background-color 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
  width: auto;
}

.button--pill .button-icon {
  margin: 0 6px 0 0;
}

.button--pill,
.button--pill:active,
.button--pill:focus,
.button--pill:hover {
  background-color: var(--t-button-pill-bg);
  color: var(--t-button-white);
}

.button--pill:active,
.button--pill:focus,
.button--pill:hover {
  filter: brightness(1.05);
}

.button--themed {
  background-image: linear-gradient(
    to right,
    var(--theme-color-gradient-1, #fafaf8),
    var(--theme-color-gradient-2, #ebebe5)
  );
}

.button--themed,
.button--themed:active,
.button--themed:focus,
.button--themed:hover {
  color: var(--theme-color-button-text, #22211d);
}

.button--theme-radio-srf-default {
  --theme-color-gradient-1: #e31f2b;
  --theme-color-gradient-2: #c91024;
  --theme-color-shadow: rgba(227, 31, 43, 0.6);
  --theme-color-button-text: #fff;
}

.button--share {
  background-color: var(--t-button-share-bg);
  font-size: 14px;
  letter-spacing: 0.4px;
}

.button--share,
.button--share:active,
.button--share:focus,
.button--share:hover {
  box-shadow: none;
  color: var(--t-button-share);
  filter: none;
}

.button--share:focus,
.button--share:hover {
  background-color: var(--t-button-share-bg-hover);
}

.button--share:active {
  background-color: var(--t-button-share-bg-active);
}

@-moz-document url-prefix() {
}

.svg-icon {
  --t-svg-icon-standard: #4e4d47;
  --t-svg-icon-no-theme: #fff;
  --t-svg-icon-arrow-grey: #4e4d47;
  --t-svg-icon-download-red: #c91024;
  --t-svg-icon-download-success: #1a7ac5;
}

.svg-icon {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  height: 24px;
  width: 24px;
}

.svg-icon--searchmenu {
  background-color: var(--t-svg-icon-standard);
  -webkit-mask: url("/img/search.svg") no-repeat 50% 50%;
  mask: url("/img/search.svg") no-repeat 50% 50%;
  -webkit-mask-size: contain;
  mask-size: contain;
  width: 35px;
}

.svg-icon--audiothek {
  -webkit-mask: url("/img/headphones.svg") no-repeat 50% 50%;
  mask: url("/img/headphones.svg") no-repeat 50% 50%;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.svg-icon--audiothek,
.svg-icon--videothek {
  background-color: var(--t-svg-icon-standard);
}

.svg-icon--videothek {
  -webkit-mask: url("/img/video.svg") no-repeat 50% 50%;
  mask: url("/img/video.svg") no-repeat 50% 50%;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.svg-icon--clipboard {
  background-color: var(--t-svg-icon-standard);
}

.svg-icon--share {
  background-color: var(--t-svg-icon-standard);
  -webkit-mask: url("/img/share.svg") no-repeat 50% 50%;
  mask: url("/img/share.svg") no-repeat 50% 50%;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.svg-icon--comments-zero {
  background-color: var(--t-svg-icon-themed, var(--t-svg-icon-standard));
}

.main-logo {
  background: none;
  display: inline-block;
  height: 24px;
  overflow: hidden;
  width: 36px;
}

.main-logo svg {
  transform: scale(0.75);
  transform-origin: 0 0;
}

@media (min-width: 720px) {
  .main-logo {
    height: 32px;
    width: 48px;
  }

  .main-logo svg {
    transform: none;
  }
}

.menu-link {
  --t-menu-link: #22211d;
  --t-menu-link-success: #1a7ac5;
  --t-menu-link-on-error: #c91024;
  --t-menu-link-bg-hover: hsla(51, 8%, 70%, 0.12);
  --t-menu-link-bg-active: hsla(51, 8%, 70%, 0.24);
}

.menu-link {
  border-radius: 2px;
  color: var(--t-menu-link);
  display: flex;
  font-size: 16px;
  font-variation-settings: "wght" 400;
  font-weight: 400;
  justify-content: flex-start;
  letter-spacing: 0.4px;
  margin: 0;
  padding: 18px 24px;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out;
}

.menu-link:focus,
.menu-link:hover {
  background-color: var(--t-menu-link-bg-hover);
  color: var(--t-menu-link);
}

.menu-link:active {
  background-color: var(--t-menu-link-bg-active);
  color: var(--t-menu-link);
}

.menu-link__icon-container {
  flex: 0 0 auto;
  height: 24px;
  padding-right: 12px;
}

.menu-link__text {
  flex: 1 0 0;
}

.shimmer {
  --t-shimmer-bg: rgba(34, 33, 29, 0.12);
  --t-shimmer-gradient: rgba(34, 33, 29, 0.24);
  --t-shimmer-overline-bg: rgba(201, 16, 36, 0.12);
  --t-shimmer-overline-gradient: rgba(201, 16, 36, 0.24);
}

.shimmer {
  background: var(--t-shimmer-bg);
  display: block;
  height: 11px;
  margin-bottom: 11px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

@media (min-width: 1024px) {
  .shimmer {
    height: 14px;
    margin-bottom: 14px;
  }
}

.shimmer:before {
  animation: shimmeringAnimation 2.5s ease-in-out infinite;
  background: linear-gradient(
    90deg,
    transparent,
    var(--t-shimmer-gradient) 50%,
    transparent
  );
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  width: 800px;
  will-change: transform;
}

@media screen and (prefers-reduced-motion: reduce) {
  .shimmer:before {
    animation: none;
  }
}

.shimmer:nth-of-type(2):before {
  animation-delay: 0.05s;
}

.shimmer:nth-of-type(3):before {
  animation-delay: 0.1s;
}

.shimmer--short {
  width: 66%;
}

.shimmer--heading {
  height: 16px;
  margin-bottom: 12px;
}

@media (min-width: 1024px) {
  .shimmer--heading {
    height: 19px;
    margin: 12px 0;
  }
}

@keyframes shimmeringAnimation {
  0% {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(200%);
  }
}

.image {
  --t-image-circle-border: #fefefd;
  --t-image-circle-presenter-border: rgba(0, 0, 0, 0.04);
}

picture.image {
  display: block;
  font-size: 10px;
}

.globalnav-link {
  --t-globalnav-link: #22211d;
  --t-globalnav-link-bg-hover: hsla(51, 8%, 70%, 0.12);
  --t-globalnav-link-bg-active: hsla(51, 8%, 70%, 0.24);
  --t-globalnav-link-sub: #4e4d47;
  --t-globalnav-link-highlight: #c91024;
}

.globalnav-link {
  border-radius: 2px;
  color: var(--t-globalnav-link);
  display: flex;
  font-size: 16px;
  font-variation-settings: "wght" 400;
  font-weight: 400;
  letter-spacing: 0.4px;
  padding: 18px 16px;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out;
}

.globalnav-link:focus,
.globalnav-link:hover {
  background-color: var(--t-globalnav-link-bg-hover);
  color: var(--t-globalnav-link);
}

.globalnav-link:active {
  background-color: var(--t-globalnav-link-bg-active);
  color: var(--t-globalnav-link);
}

.globalnav-link--portal {
  font-variation-settings: "wght" 700;
  font-weight: 700;
}

.globalnav-link--sub {
  padding: 12px 16px;
}

.globalnav-link--sub,
.globalnav-link--sub:hover {
  color: var(--t-globalnav-link-sub);
}

.globalnav-link__img {
  align-self: center;
  flex: 0 0 auto;
  height: 24px;
  margin-right: 12px;
  width: 24px;
}

.globalnav-link__text {
  align-self: center;
  flex: 1 0 0;
}

.horizontal-separator {
  --t-horizontal-separator: #ebebe5;
}

.horizontal-separator {
  background: var(--t-horizontal-separator) 50% 0 no-repeat;
  border: 0;
  height: 1px;
  margin: 24px -24px 20px;
}

@media (min-width: 720px) {
  .horizontal-separator {
    margin-bottom: 24px;
    margin-top: 32px;
  }
}

.horizontal-separator--sharing-bar {
  margin: 0;
  position: relative;
  top: 20px;
}

.teaser-info {
  --t-teaser-info: #6b6960;
  --t-teaser-info-visited: #1a7ac5;
  --t-teaser-info-live-or-updated: #e31f2b;
  --t-teaser-info-media-info: #22211d;
}

.teaser-info {
  --teaser-info-media-duration-display: var(
    --fec-teaser-info-media-duration-display,
    none
  );
  --teaser-info-comments-display: var(
    --fec-teaser-info-comments-display,
    inline-block
  );
  color: var(--teaser-color-status-text, var(--t-teaser-info-media-info));
  display: inline-block;
  font-size: 12px;
  font-variation-settings: "wght" 400;
  font-weight: 400;
  letter-spacing: 0.4px;
  line-height: 1.35;
  overflow-wrap: break-word;
  overflow-wrap: anywhere;
  position: relative;
  white-space: nowrap;
}

.teaser-info:before {
  display: inline-block;
  height: 14px;
  margin-bottom: -3px;
  margin-right: 6px;
  position: relative;
  width: 14px;
}

.teaser-info--video {
  color: var(--teaser-color-status-text, var(--t-teaser-info));
}

.shimmer-box {
  display: none;
  margin: 36px 0;
  padding: 0 24px;
}

.modal-flyout {
  --t-modal-flyout: #22211d;
  --t-modal-flyout-bg: #fefefd;
}

.modal-flyout {
  background-color: var(--t-modal-flyout-bg);
  border-radius: 2px;
  box-shadow:
    0 8px 16px 0 rgba(0, 0, 0, 0.16),
    0 0 16px 0 rgba(0, 0, 0, 0.08);
  display: none;
  overflow-wrap: break-word;
  overflow-wrap: anywhere;
  position: absolute;
  width: 372px;
  z-index: 100;
}

@media (max-width: 719px) {
  .modal-flyout {
    bottom: 0;
    left: 0;
    max-height: 100vh;
    overflow-x: scroll;
    position: fixed;
    width: 100%;
  }
}

.modal-flyout--in-content {
  z-index: 101;
}

.modal-flyout__overlay {
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: -1;
}

@media (max-width: 719px) {
  .modal-flyout__overlay {
    background-color: rgba(0, 0, 0, 0.12);
  }
}

.modal-flyout__head {
  align-items: flex-start;
  background-color: var(--t-modal-flyout-bg);
  display: flex;
  justify-content: space-between;
  min-height: 32px;
  padding: 0 0 0 24px;
}

.modal-flyout__title {
  color: var(--t-modal-flyout);
  flex-basis: auto;
  flex-grow: 1;
  flex-shrink: 1;
  font-size: 18px;
  font-variation-settings: "wght" 500;
  font-weight: 500;
  letter-spacing: 0.4px;
  line-height: 1.25;
  padding: 18px 0 16px;
}

.modal-flyout__content {
  background-color: var(--t-modal-flyout-bg);
}

@media (max-width: 719px) {
  .modal-flyout__content {
    padding: 0 0 56px;
  }
}

.modal-flyout__buttons {
  flex-basis: auto;
  flex-grow: 0;
  flex-shrink: 0;
}

.image-figure__image {
  background-color: var(--t-image-figure-image-bg);
}

.episode-list__title:has(.episode-list__title-em) {
  font-variation-settings: "wght" 400;
  font-weight: 400;
}

.portalsnav {
  --t-portalsnav-large-link: #22211d;
}

.portalsnav {
  display: flex;
  margin: 0;
  padding: 0;
}

.portalsnav__link {
  font-feature-settings: "salt";
  background-color: initial;
  border-radius: 2px;
  display: inline-block;
  font-size: 14px;
  font-variation-settings: "wght" 700;
  font-weight: 700;
  letter-spacing: 0.4px;
  line-height: 1.14;
  padding: 8px 10px;
  transition: background-color 0.2s ease-in-out;
}

.portalsnav__link,
.portalsnav__link:active,
.portalsnav__link:focus,
.portalsnav__link:hover {
  border-bottom: none;
  color: var(--t-gl-nav-group-open-item-color);
}

.portalsnav__link:focus,
.portalsnav__link:hover {
  background-color: var(--t-gl-subnav-pager-bg-hover);
}

.portalsnav__link:active {
  background-color: var(--t-gl-subnav-pager-bg-active);
}

.footer {
  --t-footer: #22211d;
  --t-footer-bg: #fefefd;
  --t-footer-border-top:
    0 0px 1px 0 rgba(0, 0, 0, 0.16), 0 0 1px 0 rgba(0, 0, 0, 0.08);
  --t-footer-navigation-link: #6b6960;
  --t-footer-navigation-link-hover: #6b6960;
  --t-footer-navigation-link-active: #6b6960;
  --t-footer-navigation-link-bg-hover: hsla(51, 8%, 70%, 0.12);
  --t-footer-navigation-link-bg-active: hsla(51, 8%, 70%, 0.24);
  --t-footer-description: #6b6960;
  --t-footer-bu-link: #6b6960;
  --t-footer-bu-link-hover: #6b6960;
  --t-footer-bu-link-active: #6b6960;
  --t-footer-bu-link-bg: #ebebe5;
  --t-footer-bu-link-bg-hover: hsla(51, 8%, 70%, 0.12);
  --t-footer-bu-link-bg-active: hsla(51, 8%, 70%, 0.24);
  --t-gl-search-bg: #fefefd;
  --t-gl-search-text: #6b6960;
  --t-gl-search-border: rgba(0, 0, 0, 0.2);
}

.footer {
  background: var(--t-footer-bg);
  box-shadow: var(--t-footer-border-top);
  color: var(--t-footer);
  opacity: 1;
  pointer-events: auto;
}

.footer__wrapper {
  margin: 0 auto;
  max-width: 1264px;
}

.footer__navigation {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0;
  margin: 0;
  padding: 8px 0;
}

@media (max-width: 719px) {
  .footer__navigation {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (min-width: 720px) {
  .footer__navigation {
    padding: 8px 16px;
  }
}

.footer__navigation-item {
  display: flex;
  flex: 0 0 50%;
  margin: 0;
  overflow-wrap: break-word;
  overflow-wrap: anywhere;
  padding: 0;
}

@media (min-width: 720px) {
  .footer__navigation-item {
    display: inline-block;
  }
}

.footer__navigation-link {
  align-self: center;
  border-radius: 2px;
  color: var(--t-footer-navigation-link);
  display: block;
  flex: 1 1 100%;
  font-size: 14px;
  font-variation-settings: "wght" 400;
  font-weight: 400;
  letter-spacing: 0.4px;
  line-height: 1.14;
  margin: 0 8px;
  padding: 16px;
  transition: background-color 0.2s ease-in-out;
}

.footer__navigation-link:focus,
.footer__navigation-link:hover {
  background-color: var(--t-footer-navigation-link-bg-hover);
  color: var(--t-footer-navigation-link-hover);
}

.footer__navigation-link:active {
  background-color: var(--t-footer-navigation-link-bg-active);
  color: var(--t-footer-navigation-link-active);
}

@media (min-width: 720px) {
  .footer__navigation-link {
    margin: 0;
  }
}

.footer__imprint {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  padding: 24px;
}

@media (min-width: 720px) {
  .footer__imprint {
    align-items: flex-end;
    flex-direction: row;
    padding: 24px 32px;
  }

  .footer__imprint-content {
    flex: 0 1 50%;
    padding-right: 8px;
  }
}

.footer__description {
  color: var(--t-footer-description);
  font-size: 12px;
  font-variation-settings: "wght" 400;
  font-weight: 400;
  letter-spacing: 0.4px;
  line-height: 1.33;
  margin: 8px 0 16px;
}

@media (min-width: 720px) {
  .footer__description {
    margin-bottom: 0;
  }
}

.footer__imprint-links {
  display: flex;
  flex-grow: 1;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
}

@media (min-width: 720px) {
  .footer__imprint-links {
    justify-content: flex-end;
  }
}

.footer__bu-link-item {
  flex: 1 1 auto;
  margin: 0 8px 0 0;
  padding: 0;
}

.footer__bu-link-item:last-of-type {
  margin-right: 0;
}

@media (min-width: 720px) {
  .footer__bu-link-item {
    flex-grow: 0;
  }
}

.footer__bu-link {
  background-color: var(--t-footer-bu-link-bg);
  border-radius: 2px;
  color: var(--t-footer-bu-link);
  display: inline-block;
  font-size: 14px;
  font-variation-settings: "wght" 400;
  font-weight: 400;
  letter-spacing: 0.4px;
  line-height: 1.14;
  padding: 8px 12px;
  text-align: center;
  transition: background-color 0.2s ease-in-out;
  width: 100%;
}

.footer__bu-link:focus,
.footer__bu-link:hover {
  background-color: var(--t-footer-bu-link-bg-hover);
  color: var(--t-footer-bu-link-hover);
}

.footer__bu-link:active {
  background-color: var(--t-footer-bu-link-bg-active);
  color: var(--t-footer-bu-link-active);
}

.globalnav {
  --t-globalnav-sub-bg: #f5f5f2;
  --t-globalnav-group-border: rgba(0, 0, 0, 0.08);
}

.globalnav {
  display: flex;
  flex-direction: column;
}

@media (min-width: 720px) {
  .globalnav__container {
    padding: 32px 0;
  }
}

.globalnav__container--with-background {
  background-color: var(--t-globalnav-sub-bg);
}

@media (min-width: 720px) {
  .globalnav__container--with-background {
    border-bottom: 1px solid var(--t-globalnav-group-border);
    border-top: 1px solid var(--t-globalnav-group-border);
  }
}

.globalnav__groups {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 1280px;
}

@media (min-width: 720px) {
  .globalnav__groups {
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 0 12px;
  }
}

@media (min-width: 1280px) {
  .globalnav__groups {
    padding: 0 20px;
  }
}

.globalnav__group {
  flex: 1 1 0;
  padding: 8px 4px;
}

@media (max-width: 719px) {
  .globalnav__group {
    border-bottom: 1px solid var(--t-globalnav-group-border);
    padding: 8px;
  }
}

@media (min-width: 720px) {
  .globalnav__group--radio-stations {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .globalnav__group--radio-stations .globalnav__item {
    flex: 1 0 33%;
  }

  .globalnav__group--radio-stations .globalnav__item:nth-child(3n + 1) {
    order: 0;
  }

  .globalnav__group--radio-stations .globalnav__item:nth-child(3n + 2) {
    order: 1;
  }

  .globalnav__group--radio-stations .globalnav__item:nth-child(3n + 3) {
    order: 2;
  }
}

.masthead {
  --t-masthead-bg: #fefefd;
  --t-masthead-title: #22211d;
  --t-masthead-icon: #4e4d47;
  --t-gl-subnav-icon: #4e4d47;
  --t-gl-subnav-pager-bg: #fefefd;
  --t-gl-subnav-pager-bg-alpha: hsla(60, 33%, 99%, 0);
  --t-gl-subnav-pager-bg-hover: hsla(51, 8%, 70%, 0.12);
  --t-gl-subnav-pager-bg-active: hsla(51, 8%, 70%, 0.24);
  --t-gl-nav-group-open-item-color: #4e4d47;
  --t-gl-nav-item-active: #c91024;
  --t-gl-nav-item-active-border: #f1434a;
  --t-gl-nav-item-third-level-icon: #c91024;
  --t-gl-h-icon-invert: none;
}

.masthead {
  background-color: var(--t-masthead-bg);
  min-height: 56px;
  padding: 8px 32px 0;
  position: relative;
  z-index: 100;
}

@media (max-width: 719px) {
  .masthead {
    padding: 0 16px;
  }
}

@media (min-width: 1280px) {
  .masthead {
    padding: 8px 40px 0;
  }
}

.masthead__wrapper {
  margin: 0 auto;
  max-width: 1200px;
  position: static;
  z-index: 101;
}

.masthead--sticky {
  -webkit-padding-before: 0;
  display: block;
  inset-block-start: 0;
  padding-block-start: 0;
  position: -webkit-sticky;
  position: sticky;
}

.masthead--sticky .masthead__wrapper:after {
  background-color: initial;
  box-shadow:
    0 4px 8px 0 rgba(0, 0, 0, 0.16),
    0 0 8px 0 rgba(0, 0, 0, 0.08);
  content: "";
  height: 42px;
  inset-block-end: 0;
  inset-inline: 0;
  position: absolute;
  z-index: -2;
}

.masthead--sticky .masthead__wrapper:before {
  background-color: var(--t-masthead-bg);
  content: "";
  display: block;
  inset: 0;
  position: absolute;
  z-index: -1;
}

.masthead__universal {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}

.masthead__logo {
  display: flex;
  flex: 1 0 auto;
}

@media (min-width: 1024px) {
  .masthead__logo {
    flex-grow: 0;
  }
}

.masthead__portals {
  -webkit-margin-start: 10px;
  flex: 1 1 auto;
  font-variation-settings: "wght" 700;
  font-weight: 700;
  margin-inline-start: 10px;
}

@media (max-width: 1023px) {
  .masthead__portals {
    display: none;
  }
}

.masthead__button-wrapper {
  -webkit-margin-end: -16px;
  display: block;
  font-size: 0;
  margin-inline-end: -16px;
  min-height: 0;
  opacity: 1;
}

.masthead__icon.masthead__icon {
  background-color: var(--t-masthead-icon);
}

.masthead--compact {
  -webkit-padding-before: 0;
  height: 56px;
  inset-block-start: 0;
  padding-block-start: 0;
  position: -webkit-sticky;
  position: sticky;
  width: 100%;
}

@media (min-width: 720px) {
  .masthead--compact {
    height: 72px;
  }

  .masthead--compact .masthead__wrapper {
    padding: 8px 0;
  }
}

html:has(body.overflowHidden) {
  overflow: hidden;
}

.globalnav li:before,
.portalsnav li:before,
.related-items-list__list li:before {
  content: "​";
  position: absolute;
}

@supports not (aspect-ratio: auto) {
}

body:after {
  content: "main-css-ready";
  display: none;
}

.breadcrumbs {
  --t-breadcrumb-link: #4e4d47;
  --t-breadcrumb-link-bg: #ebebe5;
  --t-breadcrumb-link-bg-hover: #dadad2;
  --t-breadcrumb-link-bg-active: #cac8bf;
  --t-breadcrumb-icon: #6b6960;
}

.breadcrumbs {
  overflow-x: auto;
  padding: 0 24px;
  white-space: nowrap;
}

.breadcrumbs--bottom {
  padding-bottom: 8px;
}

@media (min-width: 720px) {
  .breadcrumbs--bottom {
    padding-bottom: 12px;
  }
}

.breadcrumbs__item {
  display: inline;
  margin: 0 -3px 0 -8px;
  padding: 0;
}

.breadcrumb__link {
  background-clip: padding-box;
  background-color: var(--t-breadcrumb-link-bg);
  border: 0;
  border-radius: 2px;
  display: inline-block;
  font-size: 14px;
  font-variation-settings: "wght" 400;
  font-weight: 400;
  letter-spacing: 0.4px;
  line-height: 1.14;
  margin: 8px;
  padding: 7px 23px 7px 12px;
  position: relative;
  vertical-align: middle;
}

.breadcrumb__link:focus,
.breadcrumb__link:hover {
  background-color: var(--t-breadcrumb-link-bg-hover);
  border-bottom: 0;
}

.breadcrumb__link:active {
  background-color: var(--t-breadcrumb-link-bg-active);
  border-bottom: 0;
}

.breadcrumb__link:before {
  border-bottom: 1px solid var(--t-breadcrumb-icon);
  border-right: 1px solid var(--t-breadcrumb-icon);
  content: "";
  height: 6px;
  left: auto;
  position: absolute;
  right: 12px;
  top: 11px;
  transform: rotate(-45deg);
  width: 6px;
}

.breadcrumb__link,
.breadcrumb__link:active,
.breadcrumb__link:focus,
.breadcrumb__link:hover {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  color: var(--t-breadcrumb-link);
  outline: none;
}

.article-author {
  --t-article-author: #22211d;
  --t-article-date: #6b6960;
}

.article-author {
  display: block;
  margin-bottom: 16px;
}

@media (min-width: 720px) {
  .article-author {
    margin-bottom: 24px;
  }
}

.article-author__date {
  font-weight: 400;
  letter-spacing: 0.4px;
  margin: 0;
}

.article-author__date {
  color: var(--t-article-date);
  font-size: 12px;
  font-variation-settings: "wght" 400;
  line-height: 1.35;
}

.article-author__date {
  display: block;
  min-height: 16px;
}

.article-author__shimmer {
  display: none;
}

.article-title {
  --t-article-overline: #c91024;
  --t-article-title: #22211d;
}

.article-title {
  overflow-wrap: break-word;
  overflow-wrap: anywhere;
}

.article-title__overline {
  color: var(--t-article-overline);
  display: block;
  font-size: 16px;
  font-variation-settings: "wght" 400;
  font-weight: 400;
  letter-spacing: 0.4px;
  line-height: 1.25;
  margin: 0 0 1px;
}

@media (min-width: 720px) {
  .article-title__overline {
    font-size: 18px;
    letter-spacing: 0.4px;
    margin: 0 0 3px;
  }
}

.article-title__text {
  font-feature-settings: "salt";
  color: var(--t-article-title);
  display: block;
  font-size: 32px;
  font-variation-settings: "wght" 500;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.25;
  margin: 1px 0 13px;
}

@media (min-width: 720px) {
  .article-title__text {
    font-size: 36px;
    letter-spacing: normal;
    margin: 3px 0 18px;
  }
}

.article-content {
  --t-article-content: #22211d;
}

.article-content {
  color: var(--t-article-content);
  font-size: 20px;
  font-variation-settings: "wght" 300;
  font-weight: 300;
  letter-spacing: 0.2px;
  margin: 0 0 24px;
  min-height: 0;
  opacity: 1;
}

@media (max-width: 719px) {
  .article-content {
    font-size: 18px;
    letter-spacing: 0.4px;
  }
}

.article-content > h2 {
  font-size: 28px;
  font-variation-settings: "wght" 500;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.35;
  margin: 32px 0 12px;
  padding: 0 24px;
}

@media (max-width: 719px) {
  .article-content > h2 {
    font-size: 24px;
    letter-spacing: normal;
    margin: 24px 0 12px;
  }
}

.article-content > p {
  margin: 12px 0 24px;
  overflow-wrap: break-word;
  overflow-wrap: anywhere;
  padding: 0 24px;
}

@media (max-width: 719px) {
  .article-content > p {
    margin: 12px 0 20px;
  }
}

.article-content a:not([class]) {
  border-bottom: 1px solid var(--t-a-underline);
  overflow-wrap: break-word;
  overflow-wrap: anywhere;
}

.article-content a:not([class]):hover {
  border-bottom: 1px solid var(--t-a-underline-hover);
}

.article-content a:not([class]):active {
  border-bottom: 1px solid var(--t-a-underline-active);
}

.article-header {
  padding: 0 24px;
}

.collection-ng:not(.collection-ng--themed):has(
    .collection-ng__title-wrapper:empty
  ) {
  -webkit-padding-before: var(--collection-teaser-row-gap);
  padding-block-start: var(--collection-teaser-row-gap);
}

.collection-ng:not(.collection-ng--themed)
  + .collection-ng:not(.collection-ng--themed):has(
    .collection-ng__title-wrapper:empty
  ) {
  -webkit-margin-before: calc(var(--collection-v-gap) * -1);
  margin-block-start: calc(var(--collection-v-gap) * -1);
}

.collection-ng.collection-ng--themed
  + .collection-ng.collection-ng--themed:has(
    .collection-ng__title-wrapper:empty
  ) {
  -webkit-margin-before: calc(
    var(--collection-v-gap) * -2 + var(--collection-teaser-row-gap)
  );
  margin-block-start: calc(
    var(--collection-v-gap) * -2 + var(--collection-teaser-row-gap)
  );
}

@media (min-width: 720px) {
  .collection-ng.collection-ng--themed
    + .collection-ng.collection-ng--themed:has(
      .collection-ng__title-wrapper:empty
    ) {
    -webkit-margin-before: calc(var(--collection-v-gap) * -1);
    margin-block-start: calc(var(--collection-v-gap) * -1);
  }
}

.collection-ng__title-wrapper:has(+ .collection-ng__lead) {
  -webkit-margin-after: calc(var(--fec-gap) * 0.5);
  margin-block-end: calc(var(--fec-gap) * 0.5);
}

.collection-ng__heading:has(.collection-ng__heading-em) {
  font-variation-settings: "wght" 400;
  font-weight: 400;
}

.collection-ng--micro .collection-ng__teaser-item:has(.teaser-ng--theme-dark),
.collection-ng--micro
  .collection-ng__teaser-item:has(.teaser-ng--theme-dark):active,
.collection-ng--micro
  .collection-ng__teaser-item:has(.teaser-ng--theme-dark):hover,
.collection-ng--micro-bullets
  .collection-ng__teaser-item:has(.teaser-ng--theme-dark),
.collection-ng--micro-bullets
  .collection-ng__teaser-item:has(.teaser-ng--theme-dark):active,
.collection-ng--micro-bullets
  .collection-ng__teaser-item:has(.teaser-ng--theme-dark):hover,
.collection-ng--micro-numeric
  .collection-ng__teaser-item:has(.teaser-ng--theme-dark),
.collection-ng--micro-numeric
  .collection-ng__teaser-item:has(.teaser-ng--theme-dark):active,
.collection-ng--micro-numeric
  .collection-ng__teaser-item:has(.teaser-ng--theme-dark):hover {
  background-color: #22211d;
  transition: none;
}

@media (max-width: 719px) {
  .collection-ng--dense-swipeable
    .collection-ng__teaser-list:has(> :last-child:nth-child(-n + 2)) {
    --collection-swipeable-list-column: calc(
      50% - var(--collection-swipeable-col-gap) / 2
    );
  }
}

.collection-ng__static-content--always-fullwidth:has(.privacywall) {
  grid-column: main;
}

.article-teaser {
  --t-article-teaser-kicker: #c91024;
  --t-article-teaser-title: #22211d;
}

.article-teaser {
  border: none;
  display: block;
  overflow-wrap: break-word;
  overflow-wrap: anywhere;
  width: 100%;
}

.article-teaser:active,
.article-teaser:focus,
.article-teaser:hover {
  border: none;
}

.article-teaser__wrapper {
  display: block;
  padding: 16px 24px 16px 0;
}

.article-teaser__image {
  border: 0;
  float: left;
  height: 92px;
  margin-right: 12px;
  object-fit: cover;
  width: 92px;
}

@media (min-width: 720px) {
  .article-teaser__image {
    margin-right: 16px;
    width: 163px;
  }
}

.article-teaser__content {
  display: flex;
  flex-direction: column;
  margin-left: 104px;
  min-height: 92px;
}

@media (min-width: 720px) {
  .article-teaser__content {
    margin-left: 158px;
  }
}

.article-teaser__kicker {
  color: var(--t-article-teaser-kicker);
  flex-grow: 0;
  font-size: 12px;
  font-variation-settings: "wght" 400;
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: 1.33;
  margin: 0;
  padding-bottom: 4px;
}

@media (min-width: 720px) {
  .article-teaser__kicker {
    font-size: 14px;
    letter-spacing: 0.4px;
    line-height: 1.14;
  }
}

.article-teaser__title {
  color: var(--t-article-teaser-title);
  flex-grow: 1;
  font-size: 16px;
  font-variation-settings: "wght" 500;
  font-weight: 500;
  letter-spacing: 0.4px;
  line-height: 1.25;
  margin: 0;
  padding-bottom: 6px;
}

@media (min-width: 720px) {
  .article-teaser__title {
    padding-bottom: 8px;
  }
}

.article-teaser__info-wrapper {
  align-items: flex-end;
  display: flex;
  flex-grow: 1;
  flex-wrap: wrap;
  line-height: 1;
}

@supports (font-variation-settings: normal) {
}

.sharing-bar {
  --t-sharing-bar-bg: #fefefd;
  --t-sharing-bar-comments-open: #fafaf8;
  --t-sharing-bar-comments-open-bg: #c91024;
  --t-sharing-bar-comments-open-bg-hover: #e31f2b;
  --t-sharing-bar-comments-open-bg-active: #f1434a;
  --t-sharing-bar-comments-closed: #4e4d47;
  --t-sharing-bar-comments-closed-bg: #ebebe5;
  --t-sharing-bar-comments-closed-bg-hover: #dadad2;
  --t-sharing-bar-comments-closed-bg-active: #cac8bf;
}

.sharing-bar {
  background-color: initial;
  display: block;
  margin-bottom: 24px;
  text-align: center;
  width: 100%;
}

@media (min-width: 720px) {
  .sharing-bar {
    margin-bottom: 32px;
  }
}

.sharing-bar__container {
  --fec-button-min-height: 40px;
  align-items: center;
  background-color: var(--t-sharing-bar-bg);
  display: inline-flex;
  margin: 0 auto;
  padding: 0 10px;
  position: relative;
}

@media (max-width: 719px) {
  .sharing-bar__container {
    padding: 0 12px;
  }
}

.sharing-bar__comments-button {
  align-items: center;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  margin-left: 8px;
  position: relative;
  transition: background-color 0.2s ease-in-out;
  width: 40px;
}

.sharing-bar__comments-icon {
  position: absolute;
}

.sharing-bar__comments-counter {
  font-size: 10px;
  font-variation-settings: "wght" 500;
  font-weight: 500;
  margin-top: -2px;
  pointer-events: none;
}

.teaser-ng:not(:has(.teaser-ng__medium)) .teaser-ng__text:before {
  content: none;
}

.related-items-list {
  --t-related-items: #22211d;
  --t-related-item-border: #ebebe5;
  --t-related-item-bg-hover: #fafaf8;
  --t-related-item-bg-active: #f5f5f2;
}

.related-items-list {
  color: var(--t-related-items);
  margin: 24px 0 32px;
  list-style-type: none;
  opacity: 1;
}

@media (min-width: 720px) {
  .related-items-list {
    margin: 32px 0 40px;
  }
}

.related-items-list__heading {
  font-size: 16px;
  font-variation-settings: "wght" 500;
  font-weight: 500;
  letter-spacing: 0.4px;
  line-height: 1.25;
  margin: 10px 24px;
  padding: 0;
}

.related-items-list__list {
  margin: 12px 0 24px;
  padding: 0;
}

@media (max-width: 719px) {
  .related-items-list__list {
    margin: 8px 0 20px;
  }
}

.related-items-list__item {
  border-top: 1px solid var(--t-related-item-border);
  margin: 0 0 0 24px;
  list-style-type: none;
  padding: 0;
}

.related-items-list__item:last-child {
  border-bottom: 1px solid var(--t-related-item-border);
}

.related-items-list__content:active,
.related-items-list__content:focus,
.related-items-list__content:hover {
  background-color: var(--t-related-item-bg-hover);
  border-bottom: 1px solid var(--t-related-item-border);
  border-top: 1px solid var(--t-related-item-border);
  margin-bottom: -1px;
  margin-left: -24px;
  margin-top: -1px;
  padding-left: 24px;
}

.related-items-list__content:active {
  background-color: var(--t-related-item-bg-active);
}

.article {
  margin: 0 auto;
  min-height: 480px;
  position: relative;
}

@media (min-width: 720px) and (max-width: 1023px) {
  .article {
    max-width: 720px;
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  .article {
    max-width: 728px;
  }
}

.article.article.article .article-author {
  margin: 17px 0 26px;
}

@media (min-width: 720px) {
  .article.article.article .article-author {
    margin: 22px 0 20px;
  }
}

.article.article.article .article-title {
  margin: 16px 0 0;
}

@media (min-width: 720px) {
  .article.article.article .article-title {
    margin: 22px 0 0;
  }
}

.article.article.article .breadcrumbs {
  margin: 16px auto 8px;
}

@media (min-width: 720px) {
  .article.article.article .breadcrumbs {
    margin: 24px auto 12px;
  }
}

.article.article.article .sharing-bar {
  margin-bottom: 24px;
  margin-top: 26px;
}

@media (min-width: 720px) {
  .article.article.article .sharing-bar {
    margin-bottom: 32px;
    margin-top: 24px;
  }
}

@media (min-width: 1024px) {
  .article-webpush .webpush-registration {
    margin-left: 0;
    margin-right: 0;
  }
}

.webpush-registration {
  background-image: linear-gradient(180deg, #fff, #fafaf8);
  flex-grow: 1;
  font-size: 16px;
  font-variation-settings: "wght" 300;
  font-weight: 300;
  letter-spacing: 0.4px;
  margin-left: 8px;
  margin-right: 8px;
  padding: 16px;
  position: relative;
  text-align: center;
}

@media (min-width: 720px) {
  .webpush-registration {
    font-size: 18px;
    letter-spacing: 0.4px;
    margin-left: 32px;
    margin-right: 32px;
    padding: 24px;
  }
}

@media (min-width: 1280px) {
  .webpush-registration {
    margin-left: 40px;
    margin-right: 40px;
  }
}

.webpush-registration__close {
  display: block;
  height: 56px;
  position: absolute;
  right: 0;
  top: 0;
  width: 56px;
}

.webpush-registration__description,
.webpush-registration__info,
.webpush-registration__title,
.webpush-registration__warning {
  margin: 0 auto;
  max-width: 624px;
}

@media (min-width: 720px) {
  .webpush-registration__description,
  .webpush-registration__info,
  .webpush-registration__title,
  .webpush-registration__warning {
    max-width: 680px;
  }
}

.webpush-registration__title {
  font-size: 18px;
  font-variation-settings: "wght" 500;
  font-weight: 500;
  letter-spacing: 0.4px;
  margin: 0 auto 8px;
}

@media (min-width: 720px) {
  .webpush-registration__title {
    font-size: 20px;
    letter-spacing: 0.2px;
    margin-bottom: 12px;
  }
}

.webpush-registration__info {
  margin: 0 auto 24px;
}

.webpush-registration__warning {
  margin: 0 auto 16px;
}

.webpush-registration__button-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 720px) {
  .webpush-registration__button-group {
    flex-direction: row;
  }
}

.webpush-registration__button {
  margin-bottom: 12px;
}

.webpush-registration__button:last-of-type {
  margin-bottom: 0;
}

@media (min-width: 720px) {
  .webpush-registration__button {
    margin-right: 24px;
  }

  .webpush-registration__button:last-of-type {
    margin-right: 0;
  }
}

.webpush-registration__expand-link {
  color: #c91024;
  cursor: pointer;
  display: inline-flex;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}

.webpush-registration__expand-link--hidden {
  opacity: 0;
  pointer-events: none;
}

.webpush-registration__expand-box {
  font-size: 16px;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 0.2s ease-in-out,
    visibility 0s ease-in-out 0.2s,
    opacity 0.2s ease-in-out;
  visibility: hidden;
}

.webpush-registration__description {
  margin: -8px auto 16px;
  text-align: left;
}

.webpush-registration__icon {
  margin: 0 0 24px;
  position: relative;
}

@media (min-width: 720px) {
  .webpush-registration__icon {
    margin-bottom: 16px;
  }
}

.webpush-registration__clapp {
  animation: bellClappAnimation 13s ease infinite;
  left: calc(50% - 25px);
  position: absolute;
  top: -6px;
  transform-origin: 50% 0;
  width: 50px;
}

.webpush-registration__bell {
  animation: bellShakeAnimation 13s ease infinite;
  margin: 0 auto;
  transform-origin: 50% 0;
  width: 46px;
}

@keyframes bellShakeAnimation {
  0%,
  10%,
  50%,
  to {
    transform: rotate(0);
  }

  1%,
  2%,
  3%,
  4%,
  5%,
  6%,
  7%,
  8% {
    transform: rotate(6deg);
  }

  9% {
    transform: rotate(4deg);
  }

  1.5%,
  2.5%,
  3.5%,
  4.5%,
  5.5%,
  6.5%,
  7.5%,
  8.5% {
    transform: rotate(-6deg);
  }

  9.5% {
    transform: rotate(-2deg);
  }
}

@keyframes bellClappAnimation {
  1%,
  11%,
  to {
    transform: rotate(0);
  }

  2%,
  3%,
  4%,
  5%,
  6%,
  7%,
  8%,
  9% {
    transform: rotate(10deg);
  }

  9.2% {
    transform: rotate(6deg);
  }

  1.6%,
  2.6%,
  3.6%,
  4.6%,
  5.6%,
  6.6%,
  7.6%,
  8.6% {
    transform: rotate(-10deg);
  }

  9.6% {
    transform: rotate(-4deg);
  }
}

.airship-alert {
  background-image: linear-gradient(163deg, #fefefd, #fafaf8 237%);
  border-radius: 0;
  box-shadow:
    0 2px 8px 0 rgba(0, 0, 0, 0.24),
    0 0 8px 0 rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  font-variation-settings: "wght" 500;
  font-weight: 500;
  left: 50%;
  margin-left: -240px;
  position: fixed;
  transform: translateY(0);
  transition: transform 0.4s ease-out;
  width: 480px;
  z-index: 200;
}

@media (min-width: 720px) {
  .airship-alert {
    top: -1px;
  }

  .airship-alert.airship-alert--hidden {
    transform: translateY(-105%);
  }
}

@media (max-width: 719px) {
  .airship-alert {
    bottom: 0;
    left: 0;
    margin-left: 0;
    right: 0;
    width: 100%;
  }

  .airship-alert.airship-alert--hidden {
    transform: translateY(105%);
  }
}

.airship-alert-body {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 0 24px;
  position: relative;
  text-align: center;
}

.airship-alert-buttons {
  border-radius: 0;
  display: flex;
  margin-top: 24px;
  width: 100%;
}

.airship-alert-buttons .button {
  border: none;
  box-sizing: border-box;
  flex: 50%;
}

.airship-alert-buttons .button--secondary {
  background-color: #4e4d47;
  color: #fff;
}

.airship-alert-buttons .button--secondary:hover {
  background-color: #5e5d56;
  color: #fff;
}

.airship-alert-buttons .button--secondary:active,
.airship-alert-buttons .button--secondary:focus {
  background-color: #6b6960;
  color: #fff;
}

.webpush-registration__postpone,
.webpush-registration__postpone:active,
.webpush-registration__postpone:focus,
.webpush-registration__postpone:hover {
  color: #22211d;
}

.airship-alert-logo {
  margin-top: 16px;
  padding: 0;
  width: 46px;
}

.airship-alert-logo .webpush-registration__icon {
  margin-bottom: 16px;
}

.airship-alert-title {
  font-size: 18px;
  margin-bottom: 8px;
}

.airship-alert-message {
  color: #22211d;
  font-size: 16px;
  font-variation-settings: "wght" 300;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.5;
  text-align: center;
}

.airship-alert-close {
  cursor: pointer;
  position: absolute;
  right: 16px;
  top: 16px;
}

body:before {
  content: "mobile";
  display: none;
}

@media (min-width: 720px) and (max-width: 1023px) {
  body:before {
    content: "tablet";
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  body:before {
    content: "desktop";
  }
}

@media (min-width: 1280px) {
  body:before {
    content: "desktop-wide";
  }
}

:root {
  --t-text-list: #c91024;
}

:root {
  --t-a-underline: #c91024;
  --t-a-underline-hover: #8d0614;
  --t-a-underline-active: #6a0b0c;
}

:root {
  --t-button-label: #22211d;
  --t-button-label-bg: #ebebe5;
  --t-button-label-hover: #dadad2;
}

:root {
  --t-caret-icon-red-mask: #c91024;
}

.fb-comment__container {
  margin: 20px 0;
  font-family: Helvetica, Arial, sans-serif;
  line-height: 1.2;
}

.fb-comment__heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid #e9ebee;
}

.fb-comment__colvo {
  font-weight: 600;
  font-size: 14px;
  color: #4b4f56;
}

.fb-comment__body {
  margin-top: 20px;
}

.fb-comment__list {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.fb-comment__comment-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fb-comment__comment {
  display: flex;
  gap: 15px;
}

.fb-comment__person-photo {
  width: 50px;
  height: 50px;
  object-fit: cover;
  flex-shrink: 0;
}

.fb-comment__comment-content {
  flex-direction: column;
}

.fb-comment__name {
  font-weight: 600;
  color: #365899;
  font-size: 14px;
  line-height: 1.4;
}

.fb-comment__text {
  font-size: 14px;
  color: #4b4f56;
  margin: 4px 0 8px !important;
}

.fb-comment__meta {
  display: flex;
  gap: 6px;
  align-items: center;
}

.fb-comment__like {
  color: #4267b2;
  font-size: 12px;
  cursor: pointer;
}

.fb-comment__reply {
  color: #4267b2;
  font-size: 12px;
  cursor: pointer;
}

.fb-comment__like-colvo {
  font-size: 12px;
  color: #90949c;
  display: flex;
  gap: 3px;
}

.fb-comment__like-colvo:before {
  content: url("/img/like.svg");
  width: 10px !important;
}

.fb-comment__date {
  font-size: 12px;
  color: #90949c;
}

@media print {
  body {
    display: none !important;
  }
}

:root {
  --ruler: 16px;
  --color-bg: #ebecf0;
  --color-shadow: #babecc;
  --color-white: #fff;
  --mainColor: #515152;
  --text: #fff;
  --input-color: #000;
  --valid-input-color: #000;
}

input {
  border: 0;
  outline: 0;
  font-size: var(--ruler) !important;
  padding: var(--ruler);
  background-color: var(--color-bg);
  text-shadow: 1px 1px 0 var(--color-white);
}

.fa-sr-only-focusable:not(:focus),
.sr-only-focusable:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

:host,
:root {
  --fa-style-family-brands: "Font Awesome 6 Brands";
  --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
}

.article-title__text {
  font-weight: bold;
}

figure {
  margin: 24px 0;
}

.top__list {
  margin-bottom: 80px;
  padding-top: 12px;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .top__list {
    margin-bottom: 35px;
  }
}

.top__list .item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 5px;
}

.top__list .item .place {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-shrink: 0;
}

.top__list .item .place__num {
  width: 36px;
  font-weight: 500;
}

.progress__info {
  font-size: 16px;
}

.top__list .item .place__avatar {
  width: 40px;
  margin-left: 7px;
}

.top__list .item .place__name {
  margin-left: 20px;
  font-size: 16px;
}

.top__list .item .progress {
  flex-grow: 1;
  margin-left: 20px;
}

.progress {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border: none;
  box-shadow: none;
}

.progress__bar {
  display: block;
  height: 25px;
  width: 0;
  margin-right: 20px;
  background-color: green;
  background-image: linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.1) 25%,
    transparent 25%,
    transparent 50%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.1) 75%,
    transparent 75%,
    transparent
  );
  background-size: 40px 40px;
  border-radius: 3px;
  animation: 2s linear infinite progress-bar-stripes;
  transition: 0.8s ease-out;
  background-repeat: repeat;
}

@media screen and (max-width: 991px) {
  .top__list {
    font-size: 12px;
  }

  .top__list .item .place__num {
    width: 26px;
    font-size: 14px;
  }

  .top__list .item .place__name {
    margin-left: 20px;
  }

  .top__list .item .progress {
    margin-left: 10px;
  }

  .progress__info {
    font-size: 16px;
  }

  .top__list .item {
    flex-direction: column;
  }

  .top__list .item .place {
    width: 100% !important;
  }

  .progress {
    width: 100%;
    margin: 10px 0;
  }
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }

  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }

  to {
    background-position: 0 0;
  }
}

.top__list .item .place__avatar img {
  display: block;
  min-width: 50px !important;
}

.top__list .item .place {
  width: 240px;
}

#rechner {
  text-align: center;
  padding: 20px;
  background-color: #fff;
  animation: fadeIn 0.5s ease-in-out;
  width: 100%;
}

#schieberegler-container {
  position: relative;
  margin-bottom: 20px;
}

a {
  cursor: pointer;
}

#schieberegler {
  width: 100%;
  opacity: 0;
  animation: fadeIn 0.5s ease-in-out 0.5s forwards;
  -webkit-appearance: none;
  appearance: none;
  height: 20px !important;
  background: green;
  border-radius: 10px;
  outline: none;
  padding: 0;
  position: relative;
  z-index: 2;
}

#schieberegler::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid green;
  margin-top: 0px !important;
  z-index: 3;
}

#aktueller-wert {
  width: 30%;
  margin: 0 auto;
  padding-top: 3px;
  padding-bottom: 3px;
  font-size: 18px;
  margin-top: -5px;
  margin-bottom: 10px;
  border-left: 2px solid green;
  border-right: 2px solid green;
  border-bottom: 2px solid green;
}

.schieberegler-beschriftungen {
  width: 100% !important;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.schieberegler-beschriftungen span {
  position: relative;
}

.schieberegler-beschriftungen span::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  background: #000;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 10px;
}

.ergebnis {
  font-size: 18px;
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeIn 0.5s ease-in-out 1s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Replace it with @supports rule when browsers catch up */

.fb-comment__container {
  margin: 20px 0;
  font-family: Helvetica, Arial, sans-serif;
  line-height: 1.2;
}

.fb-comment__heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid #e9ebee;
}

.fb-comment__colvo {
  font-weight: 600;
  font-size: 14px;
  color: #4b4f56;
}

.fb-comment__body {
  margin-top: 20px;
}

.fb-comment__list {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.fb-comment__comment-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fb-comment__comment {
  display: flex;
  gap: 15px;
}

.fb-comment__person-photo {
  width: 50px;
  height: 50px;
  object-fit: cover;
  flex-shrink: 0;
}

.fb-comment__comment-content {
  flex-direction: column;
}

.fb-comment__name {
  font-weight: 600;
  color: #365899;
  font-size: 14px;
  line-height: 1.4;
}

.fb-comment__text {
  font-size: 14px;
  color: #4b4f56;
  margin: 4px 0 8px !important;
}

.fb-comment__meta {
  display: flex;
  gap: 6px;
  align-items: center;
}

.fb-comment__like {
  color: #4267b2;
  font-size: 12px;
  cursor: pointer;
}

.fb-comment__reply {
  color: #4267b2;
  font-size: 12px;
  cursor: pointer;
}

.fb-comment__like-colvo {
  font-size: 12px;
  color: #90949c;
  display: flex;
  gap: 3px;
}

.fb-comment__like-colvo:before {
  content: url("/img/like.svg");
  width: 10px !important;
}

.fb-comment__date {
  font-size: 12px;
  color: #90949c;
}

.mycomment {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  margin: 20px 0 0 0;
  font-size: 16px;
}

.mycomment-img {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 10px;
}

.mycomment-info {
  width: 100%;
  max-width: 100%;
}

.textbox {
  color: #1d2129;
  width: 100%;
  font-size: 14px;
  box-sizing: border-box;
  border: transparent;
  margin-bottom: 10px;
  outline: none;
  border: none;
}

.mycomment-info__inner {
  background-color: #f2f3f5;
  border-radius: 18px;
  line-height: 16px;
  margin-top: 0;
  padding: 0.75rem 12px 1rem 12px;
  position: relative;
}

.error {
  position: relative;
  margin-top: -10px;
  color: red;
  font-size: 13px;
  padding-left: 5px;
  display: none;
}

.fb-comment__comment-wrap {
  margin-top: 30px;
}

@media (max-width: 719px) {
  .button--no-text-on-mobile .button-text {
    display: none;
  }
}

@font-face {
  font-family: "Instrument Sans";
  src: url("InstrumentSans-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("InstrumentSans-Italic.woff2") format("woff2");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

#comments_form.mycomment {
  display: flex;
  box-sizing: border-box;
  width: 100%;
  margin: 20px 0 0;
  font-size: 16px;
}

#comments_form .mycomment-img {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  margin-right: 10px;
  border-radius: 50%;
}

#comments_form .mycomment-info {
  width: 100%;
  max-width: 100%;
}

#comments_form .textbox {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  border: none;
  outline: 0;
  color: #1d2129;
  font-size: 14px;
}

#comments_form .mycomment-info__inner {
  position: relative;
  margin-top: 0;
  border-radius: 18px;
  padding: 0.75rem 12px 1rem;
  line-height: 16px;
  background-color: #f2f3f5;
}

#comments_form .error {
  position: relative;
  display: none;
  margin-top: -10px;
  padding-left: 5px;
  color: red;
  font-size: 13px;
}

body {
  user-select: auto !important;
}

.top__list {
  padding-left: 20px !important;
}

.error {
  margin-top: 10px;
}
