@charset "UTF-8";
@import url("https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css");
/**
*
* Testing
*
**/
/* Colors */
@import "fonts/KernRegular.css";
@import "fonts/KernItalic.css";
#order {
  position: fixed;
  right: 1.5rem;
  top: 1.5rem;
  z-index: 999;
}
#order a {
  color: blue;
  background: #D8D8D8;
  padding: 0.5em 1.5em;
  border-radius: 100%;
  border: 1px solid;
  display: block;
  transition: 0.75s;
  font-size: 1.5rem;
}
#order a:hover {
  animation: shake 2s ease 0s infinite normal;
}

body.schmoeker #order a {
  background: #c3f5e6;
}

body.schnipsel #order a {
  background: #ffaf96;
}

body.interview #order a {
  background: #fff7b4;
}
@keyframes shake {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
body .fancybox-navigation .fancybox-button {
  top: 0;
  width: 50%;
  height: 100%;
  padding: 0 !important;
  cursor: none !important;
  background: none;
}
body .fancybox-navigation .fancybox-button div {
  display: none;
}

body .fancybox-caption__body {
  display: flex;
  width: 70%;
  margin-left: 15%;
}
body .fancybox-caption__body .firstnumber {
  margin-left: auto;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button {
  background-color: transparent;
  color: inherit;
  border-width: 0;
  padding: 0;
  cursor: pointer;
  font-weight: inherit;
}

figure {
  margin: 0;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0;
}

input {
  font-weight: inherit;
}

ul, ol, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

p {
  margin: 0;
}

cite {
  font-style: normal;
}

fieldset {
  border-width: 0;
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

img {
  width: 100%;
}

a, span {
  color: #B2B2FF;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
a.arrow, span.arrow {
  color: #B2B2FF;
  font-size: 2rem;
}
a.arrow::before, span.arrow::before {
  content: "→";
  margin-right: 0.5em;
}
a.arrow:hover, span.arrow:hover {
  transform: translateX(0.5em);
}
a.ext:hover, span.ext:hover {
  color: blue;
}
a.int:hover, span.int:hover {
  color: blue;
}
a.buy, span.buy {
  color: #FF8CE3;
}
a.buy:hover, span.buy:hover {
  color: blue;
}

h1, h3 {
  color: blue;
}

a h3 {
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
  font-size: 2rem;
}

section h1, section h2, section h3, section h4, section h5, section h6 {
  line-height: 1.05;
}

p {
  line-height: 1.25;
  letter-spacing: 0.01em;
}

h5 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Menu */
.menu {
  cursor: pointer;
  z-index: 900;
}
.menu .name {
  display: flex;
  align-items: center;
  z-index: 901;
  position: fixed;
}
.menu .name h1 {
  font-size: 2rem;
  margin-left: 2.5rem;
}
.menu nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  background: white;
  width: 40vw;
  padding: 1.5rem;
  z-index: 200;
  transform: translateX(-40vw);
}
.menu nav > ul {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-x: auto;
}
.menu nav > ul h2 {
  font-size: 2.5rem;
  color: #969696;
  margin-bottom: 6rem;
}
.menu nav > ul li.main {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.menu nav > ul li.main a {
  color: blue;
}
.menu nav > ul li.main a:hover, .menu nav > ul li.main a.active {
  color: #ECE200;
}
.menu nav > ul li.social {
  color: #B2B2FF;
  line-height: 1.5;
}
.menu nav > ul li.sub, .menu nav > ul li.sec {
  line-height: 1.5;
}
.menu nav > ul li.sub a, .menu nav > ul li.sec a {
  color: #969696;
}
.menu nav > ul li.sub a:hover, .menu nav > ul li.sec a:hover {
  color: #ECE200;
}
.menu nav > ul li:not(.sec) + .sec {
  margin-top: auto;
}
.menu nav > ul li:not(.sub) + .sub {
  margin-top: 1rem;
}
.menu nav > ul li:not(.social) + .social {
  margin-top: 1rem;
}
.menu.menu-on + .subtitle {
  display: none;
}
.menu.menu-on nav {
  left: 0;
  transform: translateX(0);
}
.menu.menu-on nav + .closenav {
  display: block;
}
@supports (-moz-appearance: none) {
  .menu.menu-on .menu-on nav + .closenav {
    display: none;
  }
  .menu.menu-on main.menu-active {
    filter: none !important;
  }
  .menu.menu-on .menu-on + .subtitle {
    display: block;
  }
}

main.menu-active {
  transform: translateX(40vw);
  opacity: 0.7;
  filter: blur(5px);
}

main.menu-active #blur {
  opacity: 0;
}

.closenav {
  width: 60vw;
  height: 100%;
  right: 0;
  top: 0;
  position: fixed;
  z-index: 99;
  display: none;
}

.menu-on .name {
  margin-left: calc(40vw - 4.5rem);
}

.menu .name h1, .burger::after, .burger::before, .burger, .menu nav, .menu .name, main {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.subtitle {
  color: white;
  margin-top: 6rem;
  margin-left: 6rem;
  z-index: 989;
  position: absolute;
  left: 0px;
  top: 0px;
}

/* Burger */
.menu-icon {
  position: relative;
  width: 2rem;
  height: 1.5rem;
}
.menu-icon .burger {
  position: absolute;
  background: blue;
  width: 100%;
  height: 2px;
  top: 50%;
  right: 0px;
  margin-top: -1px;
  opacity: 1;
}
.menu-icon .burger::before {
  position: absolute;
  background: inherit;
  width: 100%;
  height: 2px;
  top: calc(0.85rem - 2px);
  content: "";
  display: block;
}
.menu-icon .burger::after {
  position: absolute;
  background: inherit;
  width: 100%;
  height: 2px;
  bottom: calc(0.85rem - 2px);
  content: "";
  display: block;
}

.menu-on .name .menu-icon .burger::after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  bottom: 0px;
}

.menu-on .name .menu-icon .burger::before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  top: 0px;
}

.menu-on .name .menu-icon .burger {
  background: none !important;
}

.menu-on .name .menu-icon .burger::before,
.menu-on .name .menu-icon .burger::after {
  background: blue !important;
}

.fancybox-container {
  position: unset !important;
  z-index: 1 !important;
}

.fancybox-bg {
  display: none;
}

.fancybox-caption {
  background: none !important;
  color: black !important;
  text-align: left !important;
  font-size: inherit !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.compensate-for-scrollbar {
  overflow: auto !important;
  margin-right: 0 !important;
}

/* Steady NoScript  & Paywall */
.noscriptmsg {
  display: none;
  position: fixed;
  font-size: 2rem;
  background: white;
  width: 100vw;
  left: 0;
  bottom: 0;
  z-index: 999;
  padding: 2rem;
}

.noscriptmsg a.button {
  padding: 0.5rem 1rem;
  border: 1px solid;
  border-radius: 20rem;
  transition: 0.25s;
  font-size: 1rem;
  color: black;
  margin-top: 1rem;
  display: inline-block;
}

.noscriptmsg a.button:hover {
  border: 1px solid black;
  color: white;
  background: black;
}

/* Steady Danke */
section.danke img {
  padding-left: 50%;
  padding-right: 20%;
  margin-top: 2rem;
}

/* Steady Tags */
section ul.tags {
  display: flex;
  flex-wrap: wrap;
}

section ul.tags li a, section ul.tags li label {
  color: blue;
  border: 1px solid;
  border-radius: 10rem;
  padding: 0.4rem 1rem;
  margin-right: 0.25rem;
  display: inline-block;
  margin-bottom: 0.5rem;
  line-height: 1;
}

section ul.tags li a:hover, section ul.tags li label:hover {
  background: blue;
  border-color: blue;
  color: white;
}

/* Steady Landing */
section.digiheader {
  display: flex;
  justify-content: space-between;
}

main.steadybeitrag section.digiheader {
  padding-right: 4.5rem;
  margin-top: 3.5rem !important;
}

section.digiheader .login-button {
  border-radius: 10rem !important;
}

section.digiheader form {
  flex: 1;
  display: flex;
  margin-right: 10vw;
  height: 2rem;
  position: relative;
}

section.digiheader input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  font: inherit;
}

section.digiheader input.input {
  height: 2rem;
  flex: 1;
  border-radius: 10rem;
  padding-left: 1rem;
  color: blue;
}

section.digiheader input.button {
  background-image: url(graphics/search.svg);
  width: 2rem;
  height: 2rem;
  background-size: contain;
  background-color: white;
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: left center;
  border-radius: 10rem;
  margin-left: -2rem;
}

section.digiheader a.arrow {
  line-height: 1;
  margin-right: 1rem;
}

section.digiheader a.back {
  width: 2rem;
  height: 2rem;
  position: absolute;
  right: 2.5rem;
  background-image: url(graphics/close.svg);
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
}

section.filter .accordion-content {
  margin-top: 1rem;
  padding-bottom: 1.75rem;
}

section.filter article > label::after {
  content: "→";
  font-size: 2rem;
  transform: rotate(90deg);
  transition: 0.5s;
  position: absolute;
  right: 0;
}

section.filter article.open > label::after {
  transform: rotate(-90deg);
  color: blue;
}

section.filter .tags li a {
  margin-bottom: 0.5rem;
}

section.filter .tags li a.active {
  /* background: $col-primaryHL;
  color: white;
  border-color: $col-primaryHL; */
  position: relative;
  margin-right: 1rem;
}

section.filter .tags.author li a {
  display: none;
}

section.filter .tags.author li a.active {
  display: block;
}

section.filter .tags li a.active::after {
  content: "✕";
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  background: blue;
  color: white;
  line-height: 0.6;
  padding: 0.5rem;
  border-radius: 10rem;
  font-size: 0.75rem;
  transition: 0.5s;
  border: 1px solid blue;
}

/* section.filter .tags li a.active:hover {
  background: transparent;
  color: $col-primaryHL;
} */
section.filter .tags li a.active:hover::after {
  background: #D8D8D8;
  color: blue;
  border-color: blue;
}

section.entries {
  display: -ms-grid;
  display: block;
  grid-template-columns: repeat(auto-fill, minmax(33.333%, 1fr));
  grid-auto-rows: 1fr;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 768px) {
  section.entries {
    display: grid;
  }
}

main.digital section.entries {
  margin-top: 2rem;
}

section.entries::before {
  content: "";
  width: 0;
  padding-bottom: 100%;
  grid-row: 1/1;
  grid-column: 1/1;
}

section.entries > *:first-child {
  grid-row: 1/1;
  grid-column: 1/1;
}

section.entries {
  position: relative;
}

section.entries article {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: 0.25s;
  background-color: white;
}
section.entries article.bilder {
  background-color: black;
}
section.entries article.bilder ul.tags li a {
  background: white;
}
section.entries article.bilder ul.tags li a:hover {
  background: blue;
  color: white;
}
section.entries article.bilder a.arrow, section.entries article.bilder a.author, section.entries article.bilder p.teaser {
  color: white;
}
section.entries article.bilder a.author:before {
  background: white;
}
section.entries article.bilder > *:not(.tilelink) {
  position: relative;
  opacity: 0;
  transition: 0.75s;
}
section.entries article.bilder > .tilelink {
  z-index: 0 !important;
}
section.entries article.bilder figure {
  width: 100%;
  height: 100%;
  opacity: 1;
  overflow: hidden;
  transition: 0.75s;
}
section.entries article.bilder figure img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
section.entries article.bilder:hover figure {
  opacity: 0.5;
}
section.entries article.bilder:hover > *:not(figure) {
  opacity: 1;
}

section.entries article a.tilelink {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
}

section.entries article:hover {
  box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2705882353);
  z-index: 10;
}

section.entries article.featured::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 4rem;
  height: 4rem;
  background: url("graphics/new.svg");
  background-size: contain;
}

section.entries article.featured:hover::after {
  animation: vibrate 0.5s linear infinite forwards;
}
@keyframes vibrate {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}
/* Color Codes for Grid & Beitragsseiten */
h1.subtitle a {
  color: white;
}

section.entries article.interview, body.interview, body.interview #blur {
  background-color: #fff7b4;
}

body.interview #blur {
  box-shadow: 0px 9px 20px 20px #fff7b4;
}

body.interview main.loggedin section.content::after {
  margin-left: 10%;
}

section.entries article.interview p.title a {
  color: black;
}

section.entries article.schmoeker, body.schmoeker, body.schmoeker #blur {
  background-color: #c3f5e6;
}

body.schmoeker #blur {
  box-shadow: 0px 9px 20px 20px #c3f5e6;
}

body.schmoeker main.loggedin section.content::after {
  margin-left: 29.5%;
}

section.entries article.schmoeker p.title a {
  color: black;
}

section.entries article.schnipsel, body.schnipsel, body.schnipsel #blur {
  background-color: #ffaf96;
}

body.schnipsel #blur {
  box-shadow: 0px 9px 20px 20px #ffaf96;
}

section.entries article.schnipsel .tags li a {
  background: white;
  border-color: white;
}

section.entries article.schnipsel .tags li a:hover {
  background: blue;
  border-color: blue;
}

section.entries article.schnipsel .author, body.schnipsel section.header ul.author {
  color: white;
}

section.entries article.schnipsel .author::before, body.schnipsel section.header ul.author::before {
  background: white;
}

section.entries article.schnipsel > a.arrow {
  color: white;
}

section.entries article.schnipsel > a.arrow:hover {
  color: blue;
}

body.schnipsel section.digiheader.beitrag a.arrow {
  color: white;
}

body.schnipsel section.digiheader.beitrag a.arrow:hover {
  color: blue;
}

section.entries article.standard p.title a {
  color: blue;
}

/* Tags */
section.entries article ul.tags {
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

section.entries article > p.teaser {
  margin-top: auto;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

section.entries article > p.title a {
  color: white;
  font-size: 2rem;
  -webkit-hyphens: auto;
  hyphens: auto;
  display: -webkit-inline-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: unset;
  line-height: 1em;
  margin-bottom: 0.5rem;
  padding-bottom: 0.2em;
}
@media (min-width: 768px) {
  section.entries article > p.title a {
    overflow: hidden;
  }
}

section.entries article > p.title a:hover {
  opacity: 0.5;
}

section.entries article > a.author {
  color: #979797;
  display: flex;
  align-items: center;
  align-self: flex-start;
}

section.entries article > a.author:hover {
  opacity: 0.5;
}

section.entries article > a.arrow {
  font-size: 1rem;
  margin-top: 1rem;
}

/* Steady Auf Ausgaben seite  */
.articles li p a.steadylink {
  font-size: 1rem;
  color: black;
  position: relative;
  display: inline-block;
}

.articles li p a.steadylink:hover {
  transform: none;
}

.articles li p a.steadylink .tooltiptext {
  visibility: hidden;
  opacity: 0;
  background-color: blue;
  color: #fff;
  text-align: center;
  padding: 0.25rem 0.5rem;
  border-radius: 10rem;
  position: absolute;
  z-index: 1;
  width: auto;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  transition: 0.5s;
}

.articles li p a.steadylink:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.articles li p a.steadylink .tooltiptext::after {
  content: " ";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: blue transparent transparent transparent;
}

/* Steady */
#steady-paywall-overlay-container {
  left: 0 !important;
}

section.checkout {
  width: calc(100% + 4rem);
  margin-left: -2rem;
}

section.limited {
  margin-top: 0;
}

/* Steady Beitrag*/
section.digiheader.beitrag a.arrow {
  margin-left: auto;
  margin-right: 1rem;
}

section.digiheader a.arrow:hover {
  transform: none;
}

section.header {
  padding: 1.5rem 1.5rem 1.5rem 5rem;
}

section.header, section.content, section.digiheader, section.filter, section.entries {
  max-width: 1750px;
  margin: 0 auto;
  margin-top: 4rem;
}

section.content {
  max-width: 1000px;
  padding-bottom: 4rem;
}

section.content .paycontent > section:last-of-type::after {
  content: "•";
}

section.header ul {
  display: flex;
}

section.header ul.tags {
  margin-bottom: 1.5rem;
}

section.header ul.author {
  color: #979797;
  margin-top: 1rem;
  line-height: 1;
}

section.header ul.author::before,
section.entries article > a.author::before {
  content: "";
  height: 0.5em;
  width: 0.5em;
  background: #979797;
  border-radius: 10rem;
  margin-right: 0.5em;
  margin-top: 0.25em;
}

section.header h2 {
  color: blue;
  font-size: 3rem;
}

section.content .subline {
  padding-left: 30%;
  margin-bottom: 2rem;
}

section.content h1,
section.content h2,
section.content h3 {
  color: inherit;
  margin-bottom: 1rem;
}

section.content section {
  margin-top: 2rem !important;
}

/* div#steady_paywall ~ .paycontent ~ * {
  display: none
} */
section.content div.paycontent section:first-of-type {
  margin-top: 1rem !important;
  display: block !important;
}

section.content p {
  margin-top: 2rem;
  font-family: "Lora", serif;
  line-height: 1.4;
}

section.content p:first-of-type {
  margin-top: 0rem;
}

section.content p:last-of-type {
  margin-bottom: 0rem;
}

section.schmoekerblock, section.textblock.right {
  margin-left: 30%;
}

section.question {
  color: blue;
  margin-right: 30%;
}

section.answer {
  margin-left: 10%;
}

section.quote {
  color: blue;
  font-size: 2rem;
  margin-left: 30%;
}

section.danke a.arrow {
  margin-top: 2rem;
  display: block;
}

section.dankesvg svg {
  width: 70%;
  height: auto;
  margin-left: 15%;
}

section.dankesvg svg g:nth-child(even) {
  animation: shake-vertical1 5s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite both;
}
@keyframes shake-vertical1 {
  0%, 100% {
    transform: translateY(0);
  }
  10%, 30%, 50%, 70% {
    transform: translateY(-8px);
  }
  20%, 40%, 60% {
    transform: translateY(8px);
  }
  80% {
    transform: translateY(6.4px);
  }
  90% {
    transform: translateY(-6.4px);
  }
}
section.dankesvg svg g:nth-child(odd) {
  animation: shake-vertical2 5s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite both;
}
@keyframes shake-vertical2 {
  0%, 100% {
    transform: translateY(0);
  }
  10%, 30%, 50%, 70% {
    transform: translateY(8px);
  }
  20%, 40%, 60% {
    transform: translateY(-8px);
  }
  80% {
    transform: translateY(-6.4px);
  }
  90% {
    transform: translateY(6.4px);
  }
}
/* Foto Strecken */
.content img.previewimg {
  margin-bottom: -50%;
  margin-top: 3rem;
  margin-left: 30%;
  width: 40%;
}

*::-moz-selection {
  background: #ECE200;
  color: white;
}

*::selection {
  background: #ECE200;
  color: white;
}

*::-moz-selection {
  background: #ECE200;
  color: white;
}

html {
  font-size: 20px;
  font-family: Kern-r, Moderat, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  -webkit-font-smoothing: antialiased;
  word-spacing: -0.1em;
}

body {
  padding: 1.5rem;
  background-color: #D8D8D8;
  overflow-x: hidden;
}

section {
  margin-top: 4rem;
}

section:first-of-type {
  margin-top: 9rem !important;
}

.w75 {
  width: 75%;
}

section h3 {
  margin-bottom: 1rem;
  margin-left: 4.5rem;
}

#blur {
  position: fixed;
  width: 100vw;
  background: #D8D8D8;
  height: 3rem;
  top: 0;
  left: 0;
  z-index: 100;
  box-shadow: 0px 9px 20px 20px #D8D8D8;
}

/* Cursor */
.closeacc, .description, .mag, .owl-nav button {
  cursor: none !important;
}

.cursor {
  z-index: 999;
  pointer-events: none;
  mix-blend-mode: difference;
  height: 30px;
  position: absolute;
  width: 30px;
  margin-left: -15px;
  margin-top: -15px;
  transform: scale(1) rotate(-45deg);
  transition: transform 0.3s ease-in-out;
  display: none;
}

.cursor::before {
  content: "";
  opacity: 1;
  background-color: blue;
  position: absolute;
}

.cursor::after {
  content: "";
  background: blue;
  border-radius: 20px;
  display: inline-block;
  height: 30px;
  left: 0;
  position: absolute;
  top: 0;
  width: 30px;
  border-color: blue;
}

/* Link */
.cursor.link {
  transform: scale(2) rotate(-45deg);
}

/* Arrow */
.cursor.arrow.left {
  transform: scale(0.75) rotate(135deg);
  display: block;
}

.cursor.arrow.right {
  transform: scale(0.75) rotate(-45deg);
  display: block;
}

.cursor.arrow::after {
  border-bottom-style: solid;
  border-bottom-width: 4px;
  border-right-style: solid;
  border-right-width: 4px;
  border-radius: 0;
  background: none;
}

.cursor.arrow::before {
  opacity: 1;
  bottom: 1px;
  content: "";
  height: 50px;
  position: absolute;
  left: 27px;
  transform-origin: bottom;
  width: 4px;
  transform: rotate(-45deg);
}

/* Close */
.cursor.close {
  display: block;
}

.cursor.close::before {
  width: 100%;
  height: 2px;
  top: 14px;
  opacity: 1;
}

.cursor.close::after {
  height: 2px;
  border: none;
  top: 14px;
  transform: rotate(90deg);
}

/* Aktuelles */
section.grid .column.w6 {
  position: relative;
  overflow: hidden;
}

.gallerycontainer {
  height: 100%;
  position: absolute;
  width: 100%;
  transform: scale(1.01);
}
@media (max-width: 767px) {
  .gallerycontainer {
    height: 25vh;
    position: relative;
  }
}

.auto-owl-carousel {
  height: 100%;
}
.auto-owl-carousel .owl-stage-outer, .auto-owl-carousel .owl-stage, .auto-owl-carousel .owl-item {
  height: 100%;
}
.auto-owl-carousel picture {
  height: 100%;
  overflow: hidden;
}
.auto-owl-carousel img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#landing {
  background-color: #D9D9D9;
  margin-top: -1.5rem !important;
}

@media (min-width: 768px) {
  #landing, #lb-b0222d43-f6f3-4edc-b0a9-2181474eda1d, #lb-9ac821ec-3bad-4aa2-a5dc-68097d2d0d3f {
    min-height: 45vh;
  }
}
section.grid {
  width: calc(100% + 3rem);
  margin-left: -1.5rem;
  margin-top: 0;
  display: flex;
  flex-direction: column;
}
section.grid p {
  line-height: 1.1;
  letter-spacing: 0;
}
section.grid .column.w6 {
  flex: 1;
}
section.grid .column.w6 article.blocklanding {
  height: 100%;
  padding-left: 3rem;
}
section.grid article.blocklanding {
  padding: 1.5rem;
  font-size: 1.5rem;
}
section.grid article.blocklanding.wsv figure {
  width: 100%;
  margin-bottom: 1rem;
}
section.grid article.blocklanding.wsv figure img {
  animation: heartbeat 1.5s ease-in-out infinite both;
}
@media (min-width: 768px) {
  section.grid article.blocklanding.wsv {
    position: relative;
    padding-top: 10rem;
  }
  section.grid article.blocklanding.wsv figure {
    width: 50%;
    z-index: 5;
    position: absolute;
    transform: translateY(-50%);
    margin-left: 12%;
    margin-bottom: 0;
    top: 0;
  }
}
@keyframes heartbeat {
  from {
    transform: scale(1);
    transform-origin: center center;
    animation-timing-function: ease-out;
  }
  10% {
    transform: scale(0.91);
    animation-timing-function: ease-in;
  }
  17% {
    transform: scale(0.98);
    animation-timing-function: ease-out;
  }
  33% {
    transform: scale(0.87);
    animation-timing-function: ease-in;
  }
  45% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
}
section.grid article.blocklanding.gradient1 {
  background: rgb(255, 247, 180) !important;
  background: linear-gradient(249deg, rgb(255, 247, 180) 12%, rgb(255, 175, 150) 17%, rgb(195, 245, 230) 70%, rgb(178, 178, 255) 100%) !important;
}
section.grid article.blocklanding.gradient2 {
  color: blue;
  background: repeating-linear-gradient(0deg, #EBEBEB, #EBEBEB 3px, #ffffff 3px, #ffffff 6px) !important;
}
section.grid article.blocklanding.image {
  min-height: 20vh;
  background: black;
  color: white;
  position: relative;
}
section.grid article.blocklanding.image > *:not(figure) {
  z-index: 2;
  position: relative;
  opacity: 1;
  transition: 0.75s;
}
section.grid article.blocklanding.image figure {
  position: absolute;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.5;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
  transition: 0.75s;
}
section.grid article.blocklanding.image figure img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
section.grid article.blocklanding .arrow {
  display: inline-block;
  margin-top: 2rem;
  margin-bottom: 1rem;
  position: relative;
  font-size: 2rem;
  white-space: nowrap;
}
section.grid article.blocklanding .newslettercontainer {
  background: blue;
  color: white;
  padding: 1.5rem;
  margin-top: 1.5rem;
  border-radius: 1rem;
  font-size: 1.5rem;
}
section.grid article.blocklanding .newslettercontainer .inner:first-of-type {
  margin-top: 0 !important;
}
section.grid article.blocklanding .newslettercontainer .inner:first-of-type .label {
  display: none;
}
section.grid article.blocklanding .newslettercontainer .inner:nth-of-type(3) {
  display: none;
}
section.grid article.blocklanding .newslettercontainer input[type=email] {
  background: none !important;
  width: 100%;
  padding-top: 0 !important;
  padding-left: 0 !important;
  padding-bottom: 1rem !important;
  border: none !important;
  border-bottom: 1px solid white !important;
  border-radius: 0 !important;
  font-family: inherit;
  color: white;
  font-size: 2rem;
}
section.grid article.blocklanding .newslettercontainer input[type=email]::-moz-placeholder {
  color: white;
}
section.grid article.blocklanding .newslettercontainer input[type=email]::placeholder {
  color: white;
}
section.grid article.blocklanding .newslettercontainer .checkbox-inline {
  font-size: 1.5rem;
  line-height: 1;
  padding-right: 1.5rem;
  margin-top: 1.5rem !important;
}
section.grid article.blocklanding .newslettercontainer .checkbox-inline input.required {
  width: 0.75em;
  height: 0.75em;
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid white;
  border-radius: 100%;
  margin-right: 1rem;
}
section.grid article.blocklanding .newslettercontainer .checkbox-inline input.required:checked {
  background: white;
}
section.grid article.blocklanding .newslettercontainer .checkbox-inline input.required + label {
  display: block;
  padding-left: 2.5rem;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  margin-top: -1.05em;
  color: white;
}
section.grid article.blocklanding .newslettercontainer .checkbox-inline input.required + label a {
  color: white;
}
section.grid article.blocklanding .newslettercontainer button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent !important;
  color: inherit !important;
  margin-top: 0 !important;
  min-width: unset !important;
  padding: 0.5em !important;
  border-width: 0 !important;
  border-color: rgba(0, 43, 255, 0.6117647059) !important;
  border-style: outset !important;
  border-radius: 0 !important;
  font-size: 1.5rem;
  position: relative;
}
section.grid article.blocklanding .newslettercontainer button:before {
  content: "";
  position: absolute;
}
section.grid article.blocklanding .newslettercontainer button:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  outline: 10px outset rgba(0, 43, 255, 0.6117647059);
}
section.grid article.blocklanding .newslettercontainer button:hover {
  border-style: inset !important;
  transform: translate(-2px, 2px);
}
section.grid article.blocklanding .newslettercontainer button:hover:after {
  outline: 10px inset rgba(0, 43, 255, 0.6117647059);
  transform: translate(2px, -2px);
}
@media (min-width: 768px) {
  section.grid {
    flex-direction: row;
  }
  section.grid article.blocklanding {
    font-size: 2rem;
    padding: 3rem;
  }
  section.grid article.blocklanding.large {
    font-size: 2.75rem;
  }
  section.grid article.blocklanding:nth-of-type(even) {
    padding-right: 25%;
  }
  section.grid article.blocklanding.image figure {
    opacity: 1;
  }
  section.grid article.blocklanding.image > *:not(figure) {
    opacity: 0;
  }
  section.grid article.blocklanding.image:hover figure {
    opacity: 0.5;
  }
  section.grid article.blocklanding.image:hover > *:not(figure) {
    opacity: 1;
  }
  section.grid .arrow {
    font-size: 2.75rem;
    margin-left: 50%;
    transform: translateX(-50%);
    margin-top: 3rem;
    margin-bottom: 0;
  }
  section.grid .arrow:after {
    content: "";
    transition: 0.75s;
    position: absolute;
    width: calc(100% + 2em);
    height: calc(100% + 1em);
    top: -0.5em;
    left: -1em;
    border-radius: 100%;
    border: 2px solid;
  }
  section.grid .arrow:hover:after {
    transform: rotate(90deg) translateY(-0.615em) translateX(0.325em);
    width: 1.5em;
    height: 1.5em;
  }
  section.grid .newslettercontainer {
    width: 75%;
  }
  section.grid .newslettercontainer input[type=email] {
    font-size: 3rem;
  }
  section.grid .newslettercontainer .checkbox-inline {
    float: left;
    width: 75%;
  }
  section.grid .newslettercontainer .checkbox-inline input.required + label {
    display: block;
    padding-left: 0;
    hyphens: inherit;
    -webkit-hyphens: inherit;
    -ms-hyphens: inherit;
    margin-top: 0;
  }
  section.grid .newslettercontainer .inner:last-of-type {
    width: 50%;
    margin-left: 50%;
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem;
    text-align: right;
  }
}

.steadytile {
  background: rgb(255, 247, 180) !important;
  background: linear-gradient(249deg, rgb(255, 247, 180) 12%, rgb(255, 255, 255) 14%, rgb(255, 175, 150) 17%, rgb(195, 245, 230) 70%, rgb(178, 178, 255) 100%) !important;
}

.gifttile {
  background: rgb(235, 255, 0) !important;
  background: linear-gradient(249deg, rgb(235, 255, 0) 33%, rgb(183, 255, 190) 49%, rgb(177, 177, 177) 100%) !important;
}

.eggtile {
  background: rgb(201, 191, 182) !important;
  background: linear-gradient(249deg, rgb(201, 191, 182) 0%, rgb(159, 143, 129) 100%) !important;
}

/* Digital Page  */
section.digigrid {
  display: grid;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 9rem;
}
@media (min-width: 768px) {
  section.digigrid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 768px) {
  section.digigrid .w12 {
    grid-column-start: 1;
    grid-column-end: 4;
  }
}
section.digigrid .w12 a {
  padding: 8rem 3rem;
  justify-content: center;
}
section.digigrid .w12 a span {
  transform: none;
}
section.digigrid article {
  height: 100%;
}
section.digigrid article#dig37f807f2-3a78-4525-9f39-ce7561d340ac a {
  background: #7D68FF;
}
section.digigrid article a {
  padding: 10rem 3rem 6rem 0;
  font-size: 2rem;
  background: beige;
  border-radius: 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: left;
  position: relative;
  transition: 0.75s;
}
section.digigrid article a span {
  z-index: 1;
  color: blue;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.2705882353);
  transition: 0.75s;
  background: rgba(255, 255, 255, 0.7019607843);
  padding: 1rem;
  line-height: 0.9;
  transform: translateY(50%);
}
section.digigrid article a figure {
  border-radius: inherit;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 1;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
}
section.digigrid article a figure img, section.digigrid article a figure video {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 101%;
  height: 101%;
  transition: 0.75s;
}
section.digigrid article a:hover span {
  mix-blend-mode: normal;
  text-shadow: 0 0 20px blue;
  color: white;
}
section.digigrid article a:hover img, section.digigrid article a:hover video {
  transform: scale(1.5);
}

/* Accordion */
.accordion .content-entry {
  width: 100%;
  border-top: 1px solid blue;
}

.accordion .content-entry:last-of-type {
  border-bottom: 1px solid blue;
}

.accordion article label {
  display: flex;
  padding: 1rem 0;
  position: relative;
  cursor: pointer;
  justify-content: space-between;
  line-height: 1.05;
}

.accordion article.open label,
.accordion article label:hover {
  color: blue;
}

.accordion article label .date,
.accordion article label .city {
  width: 25%;
}

.accordion article label .title {
  flex: 1;
  text-align: left;
  padding: 0 1rem;
}

.accordion-content {
  display: none;
  padding-bottom: 1.5rem;
  position: relative;
}

.accordion-content-container {
  display: flex;
}

.accordion-content-container .left {
  position: relative;
  width: 25%;
}

.accordion-content-container .right {
  flex: 1;
  position: relative;
  padding: 0 1rem;
}

.accordion-content-container .right .description {
  padding-right: 20%;
}

.accordion-content-container .right p {
  margin: 1em 0;
}

.accordion-content-container .right p:first-of-type {
  margin-top: 0;
}

.accordion-content-container .right h4:first-of-type {
  margin-bottom: 1.5rem;
}

.accordion-content-container .left > *:not(.closeacc),
.accordion-content-container .right > *:not(.closeacc) {
  z-index: 10;
  position: relative;
}

.closeacc {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.home .left a, .presse .left a {
  transform: translateY(-0.2rem);
  display: block;
}

.accordion-content-container a.ext.magtoggle {
  display: none;
}

.sticky .is_stuck {
  z-index: 6;
}

/* Veranstaltungen */
main.veranstaltungen .accordion .left a {
  display: block;
}

/* Verkaufsstellen */
ul.mapslist > li > ul {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 2rem;
}

ul.mapslist > li > ul > li {
  padding: 0.25em 0;
  width: 50%;
  line-height: 1;
}

ul.mapslist li a {
  position: relative;
  z-index: 1;
  color: black;
  padding-left: 1em;
}

ul.mapslist a::before {
  content: "";
  background: url(graphics/pin.svg) no-repeat;
  height: 1em;
  width: 1em;
  position: absolute;
  background-size: contain;
  margin-left: -1em;
}

ul.mapslist a:hover::before {
  background: url(graphics/pin-hover.svg) no-repeat;
  animation-name: bounce;
  transform-origin: center bottom;
  animation-duration: 1s;
  animation-fill-mode: both;
}
@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  70% {
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -7px, 0);
  }
  90% {
    transform: translate3d(0, -2px, 0);
  }
}
/* Ausgaben Seite */
.magtoggle {
  display: none;
}

.articles li {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.articles ul {
  margin-bottom: 2rem;
}

.articles li p {
  flex: 1;
  margin: 0 !important;
}

.articles li p:first-child {
  padding-right: 1rem;
}

/* Gallery */
.gallery {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.about-gallery.owl-carousel .owl-item {
  display: flex;
  justify-content: flex-start;
}

.about-gallery.owl-carousel .owl-item img {
  width: 100%;
  height: auto;
}

.owl-nav {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 999;
}

.owl-nav button {
  width: 50%;
  height: 100%;
  outline: 0 !important;
}

.about-gallery.owl-carousel picture {
  position: relative;
  width: 80%;
}

.owl-carousel picture .nav {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  display: flex;
}

.owl-carousel picture .nav div {
  width: 50%;
  height: 100%;
}

.mag {
  perspective: 800px;
  overflow: hidden;
  width: 11rem;
  height: 16rem;
  background: none;
  font-size: 125%;
  margin-bottom: 1rem;
  position: relative;
}

.scene, .shape, .face {
  position: absolute;
  transform-style: preserve-3d;
}

.scene {
  width: 70em;
  height: 70em;
  top: 50%;
  left: 50%;
  margin: -35em 0 0 -35em;
}

.shape {
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform-origin: 50%;
}

.face {
  overflow: hidden;
  transform-origin: 0 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.face {
  background-size: 100% 100% !important;
  background-position: center;
}

[class*=cuboid] .ft, [class*=cuboid] .bk {
  width: 100%;
  height: 100%;
}

[class*=cuboid] .bk {
  left: 100%;
}

[class*=cuboid] .rt {
  transform: rotateY(-90deg) translateX(-50%);
}

[class*=cuboid] .lt {
  transform: rotateY(90deg) translateX(-50%);
}

[class*=cuboid] .tp {
  transform: rotateX(90deg) translateY(-50%);
}

[class*=cuboid] .bm {
  transform: rotateX(-90deg) translateY(-50%);
}

[class*=cuboid] .lt {
  left: 100%;
}

[class*=cuboid] .bm {
  top: 100%;
}

/* .cub-1 styles */
.cub-1 {
  transform: translate3D(0em, 0em, 0em) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  opacity: 1;
  width: 6.9em;
  height: 10em;
  margin: -5em 0 0 -3.45em;
}

.cub-1 .ft {
  transform: translateZ(0.25em);
}

.cub-1 .bk {
  transform: translateZ(-0.25em) rotateY(180deg);
}

.cub-1 .rt, .cub-1 .lt {
  width: 0.5em;
  height: 10em;
}

.cub-1 .tp, .cub-1 .bm {
  width: 6.9em;
  height: 0.5em;
}

.cub-1 .face {
  background-color: #FFFFFF;
}

.cub-1 .ft {
  width: 6.9em;
  margin-left: 0em;
}

.cub-1 .bk {
  width: 6.9em;
  margin-left: 0em;
}

.cub-1 .rt, .cub-1 .lt {
  width: 0.5em;
}

/* .cub-2 styles */
.cub-2 {
  transform: translate3D(0em, 0em, 0em) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  opacity: 1;
  width: 7.3em;
  height: 10em;
  margin: -5em 0 0 -3.65em;
}

.cub-2 .ft {
  transform: translateZ(0.25em);
}

.cub-2 .bk {
  transform: translateZ(-0.25em) rotateY(180deg);
}

.cub-2 .rt, .cub-2 .lt {
  width: 0.5em;
  height: 10em;
}

.cub-2 .tp, .cub-2 .bm {
  width: 7.3em;
  height: 0.5em;
}

.cub-2 .face {
  background-color: #FFFFFF;
}

.cub-2 .ft {
  width: 7.3em;
  margin-left: 0em;
}

.cub-2 .bk {
  width: 7.3em;
  margin-left: 0em;
}

.cub-2 .rt, .cub-2 .lt {
  width: 0.5em;
}

/* .cub-3 styles */
.cub-3 {
  transform: translate3D(0em, 0em, 0em) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  opacity: 1;
  width: 7.1em;
  height: 10em;
  margin: -5em 0 0 -3.55em;
}

.cub-3 .ft {
  transform: translateZ(0.25em);
}

.cub-3 .bk {
  transform: translateZ(-0.25em) rotateY(180deg);
}

.cub-3 .rt, .cub-3 .lt {
  width: 0.5em;
  height: 10em;
}

.cub-3 .tp, .cub-3 .bm {
  width: 7.1em;
  height: 0.5em;
}

.cub-3 .face {
  background-color: #FFFFFF;
}

.cub-3 .ft {
  width: 7.1em;
  margin-left: 0em;
}

.cub-3 .bk {
  width: 7.1em;
  margin-left: 0em;
}

.cub-3 .rt, .cub-3 .lt {
  width: 0.5em;
}

/* .cub-4 styles */
.cub-4, .cub-5 {
  transform: translate3D(0em, 0em, 0em) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  opacity: 1;
  /* width: 6.9em; */
  width: 6.5em;
  height: 10em;
  /* margin: -5em 0 0 -3.45em; */
  margin: -5em 0 0 -3.25em;
}

.cub-4 .ft, .cub-5 .ft {
  transform: translateZ(0.25em);
}

.cub-4 .bk, .cub-5 .bk {
  transform: translateZ(-0.25em) rotateY(180deg);
}

.cub-4 .rt, .cub-4 .lt, .cub-5 .rt, .cub-5 .lt {
  width: 0.5em;
  height: 10em;
}

.cub-4 .tp, .cub-4 .bm, .cub-5 .tp, .cub-5 .bm {
  /* width: 6.9em; */
  width: 6.5em;
  height: 0.5em;
}

.cub-4 .face {
  background-color: #FFFFFF;
}

.cub-5 .face {
  background-color: #FFFFFF;
}

.cub-4 .ft, .cub-5 .ft {
  /* width: 6.9em; */
  width: 6.5em;
  margin-left: 0em;
}

.cub-4 .bk, .cub-5 .bk {
  width: 6.5em;
  /* width: 6.9em; */
  margin-left: 0em;
}

.cub-4 .rt, .cub-4 .lt, .cub-5 .rt, .cub-5 .lt {
  width: 0.5em;
}

/* .cub-5 styles */
/* Über Seite */
main.about > section > h5.teaser {
  margin-bottom: 1rem;
}

ul.team li {
  display: flex;
  margin: 1rem 0;
}

ul.team li > p:first-child,
ul.team li > p:nth-child(3),
ul.team li a {
  width: 25%;
}

ul.team li > p:nth-child(2) {
  flex: 1;
  padding: 0 1rem;
}

/* Presse Seite */
main.presse > section > a.ext {
  margin-left: 4.5rem;
  margin-top: 1rem;
  display: block;
}

.close > .burger {
  background: none !important;
}

.close > .burger::after,
.close > .burger::before {
  background: blue !important;
}

.close > .burger::before {
  transform: rotate(45deg);
  top: 0px;
}

.close > .burger::after {
  transform: rotate(-45deg);
  bottom: 0px;
}

.mediapopup {
  opacity: 0;
  position: fixed;
  height: calc(100% - 5rem);
  z-index: 990;
  bottom: calc(-100% - 5rem);
  width: 100vw;
  left: 0;
  background: white;
  transition: 0.5s;
}

.mediapopup.open {
  bottom: 0;
  opacity: 1;
}

.mediapopup > div {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mediapopup header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 1.5rem 2rem 6rem;
}

.mediapopup header h3 {
  margin: 0;
}

.mediapopup #pdfviewer {
  margin: 0 6rem 3rem 6rem;
  flex: 1;
}

.mediapopup a.download::before {
  content: "↓";
  font-size: 2rem;
  color: inherit;
  position: absolute;
}

.mediapopup a.download h3 {
  margin-left: 2rem;
}

.mediapopup a.download::before {
  content: "↓";
  margin-right: 0.5em;
}

/* Datenschutz Impressum */
.sondertext strong {
  margin: 1rem 0 1rem 4.5rem;
  font-weight: inherit;
  font-size: 2rem;
  color: blue;
  display: block;
}

.sondertext p {
  margin: 0.5rem 0;
}

.paypal_btn:hover {
  transform: translateX(0.5em);
}

/* Link in Bio Page */
section.digitalcontent {
  display: flex;
  flex-wrap: wrap;
}
section.digitalcontent a {
  display: block;
  color: black;
  background: white;
  margin: 1rem;
  padding: 4rem 1rem;
  width: calc(33% - 2rem);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  border-radius: 100%;
}

/* Link in Bio Page */
section.linkinbio a {
  display: block;
  margin: 1rem 0;
}

section.linkinbio h4 {
  margin-top: 2rem;
}

section.linkinbio h4:first-of-type {
  margin-top: 0;
}

@media (max-width: 500px) {
  section.entries article {
    height: auto;
  }
  section.entries article.featured::after {
    width: 4rem;
    height: 4rem;
    top: 2rem;
  }
  section.entries article a.arrow {
    font-size: 2rem;
  }
  section.digiheader {
    flex-direction: column;
  }
  section.digiheader form {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  section.digiheader a.arrow {
    margin-left: auto;
  }
}
/*  Mobile */
@media only screen and (max-device-width: 1024px) {
  section.quote {
    margin-left: 10%;
  }
  section.header h2 {
    font-size: 2.5rem;
  }
  section.content .subline {
    padding-left: 0;
    font-size: 1.5rem;
  }
  section.schmoekerblock, section.textblock.right, body.schmoeker section.content::after {
    margin-left: 0;
  }
  section.question {
    margin-right: 10%;
  }
  section.digiheader a.arrow {
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 1rem;
  }
  section.header {
    padding: 1.5rem 0;
  }
  main.steadybeitrag section.digiheader {
    margin-top: 6rem !important;
    padding-right: 0;
  }
  section.entries article > p.title a {
    padding-bottom: 0;
  }
  section.header ul.author {
    flex-direction: column;
  }
  body {
    cursor: auto !important;
  }
  a.arrow:hover {
    transform: none;
  }
  /* Hide */
  .cursor, .closeacc, .owl-nav {
    display: none !important;
  }
  /* Maganimation */
  .shape {
    animation: mobrot 10s ease 0s infinite normal;
  }
  @keyframes mobrot {
    0% {
      transform: rotateX(-16deg) rotateY(0deg);
    }
    100% {
      transform: rotateX(-16deg) rotateY(-360deg);
    }
  }
}
/* Desktop & Mobile */
@media only screen and (max-width: 1600px) {
  html {
    font-size: 18px;
  }
}
@media only screen and (max-device-width: 1024px), only screen and (max-width: 750px) {
  html {
    font-size: 16px;
  }
}
@media only screen and (max-device-width: 1024px), only screen and (max-width: 650px) {
  /* General */
  a.arrow {
    font-size: 1.5rem;
  }
  main {
    padding-bottom: 4rem;
  }
  /* Flex Direction */
  .accordion article label,
  .accordion-content-container,
  ul.team li,
  .articles li,
  ul.mapslist > li > ul {
    flex-direction: column;
  }
  /* Accordion */
  .accordion article label .date,
  .accordion article label .city {
    width: 100%;
  }
  .accordion article label .date h4,
  .accordion article label .city h4 {
    font-size: 1.5rem;
  }
  .accordion article label .title {
    padding: 1rem 0 0 0;
    order: 3;
  }
  .accordion-content-container .left {
    width: 100%;
  }
  .mag {
    width: 100%;
  }
  .accordion-content-container .left a {
    display: block;
    margin-bottom: 1rem;
  }
  .accordion-content-container .right {
    max-width: 100% !important;
    padding: 0;
    margin-top: 1rem;
  }
  .accordion-content-container .right .description {
    padding-right: 0;
  }
  .accordion-content-container a.ext {
    line-height: initial;
  }
  /* Ausgaben seite */
  .owl-carousel picture {
    width: 100%;
  }
  .articles li > p:first-child {
    flex: 2;
  }
  ul.mapslist {
    width: 100%;
    margin-left: 0;
  }
  .left .sticky {
    display: flex;
    flex-wrap: wrap;
  }
  .left .sticky a {
    width: 50%;
    margin-bottom: 0 !important;
    z-index: 999;
  }
  ul.mapslist > li > ul > li {
    width: 100%;
  }
  .verkaufstellen h4 {
    font-size: 2rem !important;
  }
  /* Über seite */
  ul.team li > p:first-child, ul.team li a {
    width: 100%;
  }
  ul.team li > p:nth-child(2) {
    padding: 0.5rem 0 0 0;
  }
  ul.team li {
    margin: 2rem 0;
  }
  /* Medie & Presse */
  .mediapopup header {
    padding: 1.5rem;
    align-items: flex-start;
    flex-direction: column;
  }
  .mediapopup header h3 {
    order: 3;
  }
  .mediapopup header .download {
    order: 2;
  }
  .mediapopup header .close {
    align-self: flex-end;
  }
  .mediapopup header > * {
    margin-bottom: 1rem;
  }
  .mediapopup #pdfviewer {
    margin: 0 1.5rem 1.5rem 1.5rem;
  }
  /* Menu */
  .menu nav {
    padding: 4.5rem 1.5rem 4.5rem 1.5rem;
    opacity: 0;
  }
  .menu-on nav {
    width: 100%;
    height: 100%;
    opacity: 1;
    padding: 4.5rem 1.5rem 1.5rem 1.5rem;
  }
  .menu-on nav ul {
    height: 100%;
    width: 100%;
    overflow-y: auto;
  }
  .menu-on .name {
    margin-left: inherit;
  }
  main.menu-active {
    display: none;
  }
  br {
    height: 0;
  }
  /* Order */
  #order {
    top: auto;
    right: 0;
    bottom: 1.5rem;
    width: 100%;
    text-align: center;
    z-index: 190;
  }
  #order a {
    display: inline-block;
    font-size: 1.5rem;
  }
  #soon {
    right: 5vw;
    width: 90vw;
    bottom: 0;
  }
  .menu nav ul li.social,
  .menu nav ul li.sub {
    line-height: 2;
  }
  /* Landing */
}
@media only screen and (max-device-width: 1024px), only screen and (max-width: 420px) {
  /* Enteinrückung*/
  .sondertext strong, section h3, a.head, .presse > section > h5 {
    margin-left: 0 !important;
  }
  .subtitle {
    margin-left: 1.5rem !important;
  }
  .w75 {
    width: 100%;
  }
}
/* kleine telefone */
@media only screen and (max-device-width: 350px) {
  html {
    font-size: 14px;
  }
}
/* kleine telefone */
@media only screen and (min-width: 1750px) {
  section.entries {
    transform: translateX(0);
  }
}
#cookie_banner-wrapper {
  z-index: 998;
  position: relative;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
#cookie_banner-wrapper .cookie_container {
  position: fixed;
  bottom: 0;
  overflow: hidden;
  padding: 15px;
  background: #D8D8D8;
  color: black;
  box-sizing: border-box;
  font-size: 0.8em;
  animation-fill-mode: both;
  animation-duration: 0.8s;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-name: fadeInRight;
  border-radius: 1rem;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 499px) {
  #cookie_banner-wrapper .cookie_container {
    left: 0;
    right: 0;
  }
}
@media (min-width: 500px) {
  #cookie_banner-wrapper .cookie_container {
    width: 300px;
    bottom: 20px;
    right: 20px;
  }
}
@media screen and (min-width: 768px) {
  #cookie_banner-wrapper .cookie_container {
    font-size: 0.9em;
  }
}
#cookie_banner-wrapper .cookie_container .cookie_message a {
  text-decoration: none;
  color: blue;
}

#cookie_banner-wrapper .cookie_container .cookie_message a:hover {
  text-decoration: underline;
  color: #C58379;
}

#cookie_banner-wrapper .cookie_container .cookie_message a:active {
  color: #C58379;
}

#cookie_banner-wrapper .cookie_container .cookie_btn {
  background-color: blue;
  color: white;
  border-radius: 5px;
  border: 1px solid transparent;
  padding: 6px 12px;
  text-align: center;
  cursor: pointer;
  width: 100%;
  margin-top: 1rem;
  font-size: 1rem;
  border: 1px solid blue;
}

#cookie_banner-wrapper .cookie_container .cookie_btn:hover {
  background-color: #D8D8D8;
  color: black;
}

@media print {
  #cookie_banner-wrapper {
    display: none;
  }
}/*# sourceMappingURL=index.css.map */