body {
  background: #fff;
  padding: 0;
}

.width_wrapper {
  width: 100%;
  max-width: $max_width;
  margin: 0 auto;
  position: relative;
}

.inner_wrapper {
  width: 100%;
  max-width: $max-width - 3*$column_width - 3*$gutter;
  margin: 0 auto;
  position: relative;
  padding: $gutter;
}

@-ms-viewport {
  width: device-width;
}

#scrolltop {
  position: fixed;
  right: 16px;
  bottom: 32px;
  opacity: 0;
  display: inline-block;
  width: 40px;
  height: 40px;
  transform: scale(0);
  overflow: hidden;
  text-align: center;
  line-height: 40px;
  font-size: 25px;
  background: $color-accent-contrast;
  color: #fff;
  text-decoration: none;
  transition: all .15s;

  &:hover,
  &:focus {
    opacity: 1
  }

  &.scrolled {
    opacity: .8;
    transform: scale(1)
  }
}

// Spezialformate für Zeitstrahlen auf Archivseiten
// #58454

body.special-timeline {
  .page_teaser {
     padding-bottom: 0 !important;
  }

  .page_timeline {
    padding-top: 0 !important;
  }
}

.archive-note {
  background: $color-main;
  text-align: center;
  padding: 5px;
  color: $text_white;

  max-height: 400px;
  transition: all .15s;
  overflow: hidden;

  @media screen and (min-width: $break_timeline_2col) {
    font-weight: bold;
    padding: 10px;
    position: sticky;
    top: 0;
    z-index: 10000;
  }

  body.menu-open & {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}