/* C4S Styles -> im Idealfall nicht verändern */

* {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box
}

html {
  font-size: 10px;
  overflow-y: auto
}

#hgroup, article, aside, details, figcaption, figure, footer, header, nav, section {
  display: block
}

video {
  width: 100%;
  height: auto
}

img {
  max-width: 100%;
  height: auto
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  font-size: 1.6rem
}

a {
  color: inherit
}

p+p {
  margin-top: .5em
}

footer, header {
  display: flex;
  justify-content: space-between;
  width: 100%
}

header {
  position: sticky;
  top: 0;
  align-items: center
}

@media screen and (min-width: 769px) {
  .only_mobile {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .only_desktop {
    display: none !important;
  }

  header {
    flex-wrap: wrap
  }

  footer {
    flex-direction: column;
  }

  .meta_panel {
    width: 100%;
  }
}