@charset "UTF-8";

@font-face {
  font-family: "Roboto Slab";
  src: url("../fonts/RobotoSlab-Thin.eot");
  src: url("../fonts/RobotoSlab-Thin.eot?#iefix") format("embedded-opentype"),
    url("../fonts/RobotoSlab-Thin.woff2") format("woff2"),
    url("../fonts/RobotoSlab-Thin.woff") format("woff"),
    url("../fonts/RobotoSlab-Thin.ttf") format("truetype"),
    url("../fonts/RobotoSlab-Thin.svg#RobotoSlab-Thin") format("svg");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Slab";
  src: url("../fonts/RobotoSlab-Regular.eot");
  src: url("../fonts/RobotoSlab-Regular.eot?#iefix") format("embedded-opentype"),
    url("../fonts/RobotoSlab-Regular.woff2") format("woff2"),
    url("../fonts/RobotoSlab-Regular.woff") format("woff"),
    url("../fonts/RobotoSlab-Regular.ttf") format("truetype"),
    url("../fonts/RobotoSlab-Regular.svg#RobotoSlab-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Slab";
  src: url("../fonts/RobotoSlab-ExtraBold.eot");
  src: url("../fonts/RobotoSlab-ExtraBold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/RobotoSlab-ExtraBold.woff2") format("woff2"),
    url("../fonts/RobotoSlab-ExtraBold.woff") format("woff"),
    url("../fonts/RobotoSlab-ExtraBold.ttf") format("truetype"),
    url("../fonts/RobotoSlab-ExtraBold.svg#RobotoSlab-ExtraBold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Italic.eot");
  src: url("../fonts/Roboto-Italic.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Roboto-Italic.woff2") format("woff2"),
    url("../fonts/Roboto-Italic.woff") format("woff"),
    url("../fonts/Roboto-Italic.ttf") format("truetype"),
    url("../fonts/Roboto-Italic.svg#Roboto-Italic") format("svg");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.eot");
  src: url("../fonts/Roboto-Regular.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Roboto-Regular.woff2") format("woff2"),
    url("../fonts/Roboto-Regular.woff") format("woff"),
    url("../fonts/Roboto-Regular.ttf") format("truetype"),
    url("../fonts/Roboto-Regular.svg#Roboto-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-BoldItalic.eot");
  src: url("../fonts/Roboto-BoldItalic.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Roboto-BoldItalic.woff2") format("woff2"),
    url("../fonts/Roboto-BoldItalic.woff") format("woff"),
    url("../fonts/Roboto-BoldItalic.ttf") format("truetype"),
    url("../fonts/Roboto-BoldItalic.svg#Roboto-BoldItalic") format("svg");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.eot");
  src: url("../fonts/Roboto-Bold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Roboto-Bold.woff2") format("woff2"),
    url("../fonts/Roboto-Bold.woff") format("woff"),
    url("../fonts/Roboto-Bold.ttf") format("truetype"),
    url("../fonts/Roboto-Bold.svg#Roboto-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-LightItalic.eot");
  src: url("../fonts/Roboto-LightItalic.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Roboto-LightItalic.woff2") format("woff2"),
    url("../fonts/Roboto-LightItalic.woff") format("woff"),
    url("../fonts/Roboto-LightItalic.ttf") format("truetype"),
    url("../fonts/Roboto-LightItalic.svg#Roboto-LightItalic") format("svg");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Light.eot");
  src: url("../fonts/Roboto-Light.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Roboto-Light.woff2") format("woff2"),
    url("../fonts/Roboto-Light.woff") format("woff"),
    url("../fonts/Roboto-Light.ttf") format("truetype"),
    url("../fonts/Roboto-Light.svg#Roboto-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------Allgemein-------------------------------------- */
html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 100%;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}


body {
  font-size: 100%;
  font-family: "Roboto";
  background-color: #FFF;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
}

@media only screen and (max-width: 768px) {
  body {
    font-size: 90%;
  }
}

main {
  flex: 1;
  padding-bottom: 80px;
}

* {
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;

}

hr {
  background-color: #414141;
  height: 1px;
  border: none;
  margin: 20px 0 20px 0;
}

/*Anker-Abstand oben*/
.anchor {
  padding-top: 80px;
  margin-top: -80px;
}

/*Keine optische Verlinkung der Telefonnummer in IOS*/
a[href^="tel"] {
  text-decoration: inherit;
  color: inherit;
}

.flex {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
}

.clearfix {
  clear: both;
}

.hcenter {
  text-align: center;
}


/* --------------------------------------Variablen-------------------------------------- */

:root {
  --svblue: #65948A;
  --svlightblue: #B8D3CD;
  --svblack: #000;
  --svgray: #EEECEC;
  --svred: #fd0000;
  --font-size-xs: 0.75rem;
  --font-size-s: 0.9rem;
  --font-size-base: 1.1rem;
  --font-size-medium: 1.2rem;
  --font-size-large: 1.6rem;
  --font-size-xl: 3rem;
}

/* --------------------------------------Text-------------------------------------- */
p {
  font-family: "Roboto";
  margin-bottom: 20px;
  padding: 0;
  font-size: var(--font-size-base);
  line-height: 145%;
  color: #000;
  font-weight: 100;

}

.hdlxl {
  color: #000;
  font-family: "Roboto Slab";
  font-size: 3em;
  font-weight: normal;
  line-height: 145%;
  margin: 0 0 20px 0;
  text-align: center;
}

.hdll {
  font-family: "Roboto Slab";
  font-size: 2.5em;
  line-height: 145%;
  font-weight: normal;
  color: #000;
}

.hdlm {
  font-family: "Roboto Slab";
  font-size: 1.8em;
  line-height: 135%;
  font-weight: normal;
  color: #000;
  margin: 0 0 20px 0;
}

.hdls {
  font-family: "Roboto Slab";
  font-size: 1.6em;
  line-height: 145%;
  font-weight: normal;
  color: #fff;
}

.hdlxs {
  font-size: var(--font-size-base);
  line-height: 145%;
  color: #000;
  font-weight: normal;
  font-weight: bold;
}

p a:link,
p a:visited,
p a:active {
  text-decoration: underline;
  font-weight: bolder;
  color: var(--svblack);
  transition: all 0.3s ease;
}

p a:focus,
p a:hover {
  color: var(--svblue);
}

p sub,
p sup {
  margin: 0;
  line-height: 10%;
  font-size: 0.8em;
}

ul {
  padding-left: 20px;
  /* oder mehr, je nach gewünschtem Abstand */
  l list-style-position: outside;
  /* Bullet bleibt draußen, Text schön eingerückt */
}

ul li {
  list-style-type: disc;
  list-style-position: outside;
  font-size: var(--font-size-base);
  line-height: 145%;
  margin: 0;
  color: var(--svblack);
  font-weight: lighter;
}


/* --------------------------------------Grids-------------------------------------- */
.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: justify;
}

.grid2 div {
  padding: 0;
  margin: 0;
}

.grid3 {
  display: grid;
  grid-template-columns: auto auto auto;
}

.grid4 {
  display: grid;
  grid-template-columns: auto auto auto auto;
}

@media only screen and (max-width: 1024px) {
  .grid4 {
    display: grid;
    grid-template-columns: auto auto;
  }
}

@media only screen and (max-width: 768px) {
  .grid3 {
    grid-template-columns: auto;
  }
}

@media only screen and (max-width: 650px) {

  .grid2,
  .grid4 {
    gap: 0;
    grid-template-columns: auto;
  }
}

.gg10 {
  grid-gap: 10px 10px;
}

.gg20 {
  grid-gap: 20px 20px;
}

.gg30 {
  grid-gap: 30px 30px;
}

.gg40 {
  grid-gap: 40px 40px;
}

/* --------------------------------------Text Position-------------------------------------- */
.txtl {
  text-align: left;
}

.txtc {
  text-align: center;
}

.txtr {
  text-align: right;
}

/* --------------------------------------Navigation-------------------------------------- */
/*Mobile Navigation*/
.hamburger {
  position: fixed;
  top: 7px;
  right: 10px;
  width: 40px;
  height: 35px;
  z-index: 200;
  cursor: pointer;
  display: none;
  background: none;
  border: none;
  padding: 0;
}

@media only screen and (max-width: 1024px) {
  .hamburger {
    display: block;
  }
}

.hamburger .hamburger-inner {
  position: relative;
  width: 35px;
  height: 2px;
  margin-top: 10px;
  transition: all 0.3s ease-in-out;
  display: block;
}

.hamburger-inner {
  background-color: #000;
}

.hamburger-inner.is-active.top-bun {
  transform: rotate(-45deg);
  margin-top: 22px;
  background-color: #000;
}

.hamburger-inner.is-active.bottom-bun {
  opacity: 0;
  transform: rotate(45deg);
  background-color: #000;
}

.hamburger-inner.is-active.meat {
  transform: rotate(45deg);
  margin-top: -2px;
  background-color: #000;
}




/* --------------------------------------Testfarben-------------------------------------- */
.bkred {
  background-color: #ff9294;
}

.bkblue {
  background-color: #afb1ff;
}

.bkgreen {
  background-color: #9dffa2;
}

.bkyellow {
  background-color: #fff38a;
}

/* --------------------------------------Abstände-------------------------------------- */
.m10 {
  margin: 10px;
}

.m20 {
  margin: 20px;
}

.m30 {
  margin: 30px;
}

.m40 {
  margin: 40px;
}

.m50 {
  margin: 10px;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mt85 {
  margin-top: 85px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mt95 {
  margin-top: 95px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mr5 {
  margin-top: 5px !important;
}

.mr10 {
  margin-top: 10px !important;
}

.mr15 {
  margin-top: 15px !important;
}

.mr20 {
  margin-top: 20px !important;
}

.mr25 {
  margin-top: 25px !important;
}

.mr30 {
  margin-top: 30px !important;
}

.mr35 {
  margin-top: 35px !important;
}

.mr40 {
  margin-top: 40px !important;
}

.mr45 {
  margin-top: 45px !important;
}

.mr50 {
  margin-top: 50px !important;
}

.mr55 {
  margin-top: 55px !important;
}

.mr60 {
  margin-top: 60px !important;
}

.mr65 {
  margin-top: 65px !important;
}

.mr70 {
  margin-top: 70px !important;
}

.mr75 {
  margin-top: 75px !important;
}

.mr80 {
  margin-top: 80px !important;
}

.mr85 {
  margin-top: 85px !important;
}

.mr90 {
  margin-top: 90px !important;
}

.mr95 {
  margin-top: 95px !important;
}

.mr100 {
  margin-top: 100px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.ml5 {
  margin-top: 5px !important;
}

.ml10 {
  margin-top: 10px !important;
}

.ml15 {
  margin-top: 15px !important;
}

.ml20 {
  margin-top: 20px !important;
}

.ml25 {
  margin-top: 25px !important;
}

.ml30 {
  margin-top: 30px !important;
}

.ml35 {
  margin-top: 35px !important;
}

.ml40 {
  margin-top: 40px !important;
}

.ml45 {
  margin-top: 45px !important;
}

.ml50 {
  margin-top: 50px !important;
}

.ml55 {
  margin-top: 55px !important;
}

.ml60 {
  margin-top: 60px !important;
}

.ml65 {
  margin-top: 65px !important;
}

.ml70 {
  margin-top: 70px !important;
}

.ml75 {
  margin-top: 75px !important;
}

.ml80 {
  margin-top: 80px !important;
}

.ml85 {
  margin-top: 85px !important;
}

.ml90 {
  margin-top: 90px !important;
}

.ml95 {
  margin-top: 95px !important;
}

.ml100 {
  margin-top: 100px !important;
}

.p10 {
  padding: 10px;
}

.p20 {
  padding: 20px;
}

.p30 {
  padding: 30px;
}

.p40 {
  padding: 40px;
}

.p50 {
  padding: 50px;
}

.pt5 {
  padding-top: 5px;
}

.pt10 {
  padding-top: 10px;
}

.pt15 {
  padding-top: 15px;
}

.pt20 {
  padding-top: 20px;
}

.pt25 {
  padding-top: 25px;
}

.pt30 {
  padding-top: 30px;
}

.pt35 {
  padding-top: 35px;
}

.pt40 {
  padding-top: 40px;
}

.pt45 {
  padding-top: 45px;
}

.pt50 {
  padding-top: 50px;
}

.pt55 {
  padding-top: 55px;
}

.pt60 {
  padding-top: 60px;
}

.pt65 {
  padding-top: 65px;
}

.pt70 {
  padding-top: 7px;
}

.pt75 {
  padding-top: 75px;
}

.pt80 {
  padding-top: 80px;
}

.pt85 {
  padding-top: 85px;
}

.pt90 {
  padding-top: 90px;
}

.pt95 {
  padding-top: 95px;
}

.pt100 {
  padding-top: 100px;
}

.pr5 {
  padding-right: 5px;
}

.pr10 {
  padding-right: 10px;
}

.pr15 {
  padding-right: 15px;
}

.pr20 {
  padding-right: 20px;
}

.pr25 {
  padding-right: 25px;
}

.pr30 {
  padding-right: 30px;
}

.pr35 {
  padding-right: 35px;
}

.pr40 {
  padding-right: 40px;
}

.pr45 {
  padding-right: 45px;
}

.pr50 {
  padding-right: 50px;
}

.pr55 {
  padding-right: 55px;
}

.pr60 {
  padding-right: 60px;
}

.pr65 {
  padding-right: 65px;
}

.pr70 {
  padding-right: 7px;
}

.pr75 {
  padding-right: 75px;
}

.pr80 {
  padding-right: 80px;
}

.pr85 {
  padding-right: 85px;
}

.pr90 {
  padding-right: 90px;
}

.pr95 {
  padding-right: 95px;
}

.pr100 {
  padding-right: 100px;
}

.pb5 {
  padding-bottom: 5px;
}

.pb10 {
  padding-bottom: 10px;
}

.pb15 {
  padding-bottom: 15px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb25 {
  padding-bottom: 25px;
}

.pb30 {
  padding-bottom: 30px;
}

.pb35 {
  padding-bottom: 35px;
}

.pb40 {
  padding-bottom: 40px;
}

.pb45 {
  padding-bottom: 45px;
}

.pb50 {
  padding-bottom: 50px;
}

.pb55 {
  padding-bottom: 55px;
}

.pb60 {
  padding-bottom: 60px;
}

.pb65 {
  padding-bottom: 65px;
}

.pb70 {
  padding-bottom: 7px;
}

.pb75 {
  padding-bottom: 75px;
}

.pb80 {
  padding-bottom: 80px;
}

.pb85 {
  padding-bottom: 85px;
}

.pb90 {
  padding-bottom: 90px;
}

.pb95 {
  padding-bottom: 95px;
}

.pb100 {
  padding-bottom: 100px;
}

.pl5 {
  padding-left: 5px;
}

.pl10 {
  padding-left: 10px;
}

.pl15 {
  padding-left: 15px;
}

.pl20 {
  padding-left: 20px;
}

.pl25 {
  padding-left: 25px;
}

.pl30 {
  padding-left: 30px;
}

.pl35 {
  padding-left: 35px;
}

.pl40 {
  padding-left: 40px;
}

.pl45 {
  padding-left: 45px;
}

.pl50 {
  padding-left: 50px;
}

.pl55 {
  padding-left: 55px;
}

.pl60 {
  padding-left: 60px;
}

.pl65 {
  padding-left: 65px;
}

.pl70 {
  padding-left: 7px;
}

.pl75 {
  padding-left: 75px;
}

.pl80 {
  padding-left: 80px;
}

.pl85 {
  padding-left: 85px;
}

.pl90 {
  padding-left: 90px;
}

.pl95 {
  padding-left: 95px;
}

.pl100 {
  padding-left: 100px;
}

.w100 {
  width: 100%;
  display: block;
}

.w50 {
  width: 50%;
  display: inline-block;
}

.vdistxxl {
  padding-top: 200px;
}

.vdistxl {
  padding-top: 100px;
}

.vdistl {
  padding-top: 80px;
}

.vdistm {
  padding-top: 50px;
}

.vdists {
  padding-top: 30px;
}

.vdistxs {
  padding-top: 20px;
}

/* --------------------------------------Positionierung-------------------------------------- */
.posa {
  position: absolute;
}

.posf {
  position: fixed;
}

.posr {
  position: relative;
}

.poss {
  position: sticky;
}

.posi {
  position: inherit;
}

.posc {
  margin: 0 auto;
  display: block;
}

/* --------------------------------------Prozentuale Distanz-------------------------------------- */
.t10p {
  top: 10%;
}

.t20p {
  top: 20%;
}

.t30p {
  top: 30%;
}

.t40p {
  top: 40%;
}

.t50p {
  top: 50%;
}

.t60p {
  top: 60%;
}

.t70p {
  top: 70%;
}

.t810p {
  top: 80%;
}

.t90p {
  top: 90%;
}

.t00p {
  top: 100%;
}

.b10p {
  bottom: 10%;
}

.b20p {
  bottom: 20%;
}

.b30p {
  bottom: 30%;
}

.b40p {
  bottom: 40%;
}

.b50p {
  bottom: 50%;
}

.b60p {
  bottom: 60%;
}

.b70p {
  bottom: 70%;
}

.b80p {
  bottom: 80%;
}

.b90p {
  bottom: 90%;
}

.b100p {
  bottom: 100%;
}

.l10p {
  left: 10%;
}

.l20p {
  left: 20%;
}

.l30p {
  left: 30%;
}

.l40p {
  left: 40%;
}

.l50p {
  left: 50%;
}

.l60p {
  left: 60%;
}

.l70p {
  left: 70%;
}

.l80p {
  left: 80%;
}

.l90p {
  left: 90%;
}

.l100p {
  left: 100%;
}

.r10p {
  right: 10%;
}

.r20p {
  right: 20%;
}

.r30p {
  right: 30%;
}

.r40p {
  right: 40%;
}

.r50p {
  right: 50%;
}

.r60p {
  right: 60%;
}

.r70p {
  right: 70%;
}

.r80p {
  right: 80%;
}

.r90p {
  right: 90%;
}

.r100p {
  right: 100%;
}

.tr10 {
  transform: translate(-10%, -10%);
}

.tr20 {
  transform: translate(-20%, -20%);
}

.tr30 {
  transform: translate(-30%, -30%);
}

.tr40 {
  transform: translate(-40%, -40%);
}

.tr50 {
  transform: translate(-50%, -50%);
}

.tr60 {
  transform: translate(-60%, -60%);
}

.tr70 {
  transform: translate(-70%, -70%);
}

.tr80 {
  transform: translate(-80%, -80%);
}

.tr90 {
  transform: translate(-90%, -90%);
}

.tr10 {
  transform: translate(-100%, -100%);
}

.w100p {
  width: 100%;
}

.h100p {
  height: 100%;
}

/* --------------------------------------Abschnittbreite-------------------------------------- */
.wFull {
  width: 100%;
}

.wHalf {
  width: 49.7%;
}

.w800 {
  width: 100%;
  max-width: 800px;
}

.w900 {
  width: 100%;
  max-width: 900px;
}

.w1024 {
  width: 100%;
  max-width: 1024px;
}

.w1100 {
  width: 100%;
  max-width: 1100px;
}

.w1200 {
  width: 100%;
  max-width: 1200px;
}

.w1300 {
  width: 100%;
  max-width: 1300px;
}

.w1400 {
  width: 100%;
  max-width: 1400px;
}

.w1500 {
  width: 100%;
  max-width: 1500px;
}

.w1600 {
  width: 100%;
  max-width: 1600px;
}

.w700 {
  width: 100%;
  max-width: 1700px;
}

.w1800 {
  width: 100%;
  max-width: 1800px;
}

/* --------------------------------------Breiten-------------------------------------- */
.w100p {
  width: 100%;
  display: block;
}

/* --------------------------------------Schaltflächen-------------------------------------- */
.btn,
p .btn {
  padding: 16px 24px;
  color: #FFF !important;
  text-align: center;
  display: inline-block;
  width: auto;
  font-size: var(--font-size-base);
  cursor: pointer;
  line-height: normal;
  background-color: var(--svblue);
  text-decoration: none !important;
  -webkit-transition: all 0.03s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "Roboto Slab";
  border-radius: 40px;
  border: none;
}

.btn:hover,
p .btn:hover {
  background-color: var(--svlightblue);
  color: #000;
}

/* --------------------------------------Footer-------------------------------------- */
.footer {
  width: 100%;
  position: relative;
  background-color: var(--svlightblue);
  box-shadow: inset 0px 5px 12px -11px #0000009f;
}

.footerInner {
  width: 100%;
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  margin: 0 auto;
  padding: 30px 20px;
}


.footerInner a:is(:link, :visited, :active) {
  font-family: "Roboto Slab";
  line-height: 240%;
  display: block;
  text-decoration: none;
  color: var(--svblack);
  white-space: nowrap;
  transition: all .3s ease-in-out;
}

.footerInner a:is(:focus, :hover) {
  font-family: "Roboto Slab";
  color: var(--svblue);
}

.footerContentGrid {
  display: flex;
  gap: 60px;
}

.footerLogo {
  width: 100%;
  max-width: 100px;
  margin-left: auto;
}

.footerSlider {
  position: relative;
  width: 100%;
  text-align: center;
  min-height: 200px;
}

.footerSlider p {
  font-family: "Roboto Slab";
  font-size: var(--font-size-base);
  font-weight: normal;
  font-style: italic;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  padding: 20px;
  margin: 0 auto;
  color: #000;
  text-align: center;
  position: absolute;
  /* optional: kann auch entfernt werden */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.footerSlider p.active {
  opacity: 1;
}

.footerSlider p span {
  font-family: "Roboto";
  margin-top: 10px;
  font-style: normal;
  font-size: var(--font-size-s);
}


@media only screen and (max-width: 1024px) {

  .footerInner {
    position: relative;
    display: block;
  }

  .footerContentGrid {
    justify-content: space-around;
  }

  .footerLogo {
    margin: 0 auto;
    display: block;
  }

}

@media only screen and (max-width: 550px) {

  .footerContentGrid {
    display: block;
    gap: 60px;
    text-align: center;
  }

  .footerContent {
    margin-bottom: 30px;
  }

}


.footerBottom {
  display: block;
  width: 100%;
  text-align: center;
  margin: 20px 0 20px auto;
}

.footerBottom a:is(:link, :visited, :active) {
  font-size: var(--font-size-s);
  color: var(--svblack);
  text-decoration: none;
  display: inline-block;
  margin: 0 10px 10px 10px;
  transition: all .3s ease-in-out;
}

.footerBottom a:is(:focus, :hover) {
  color: var(--svblue);
}


/* --------------------------------------Ausrichtung und Position-------------------------------------- */
.fltl {
  float: left;
}

.fltr {
  float: right;
}

.clr {
  clear: both;
}

.dblock {
  display: block;
}

.diblock {
  display: inline-block;
}

.ctxt {
  text-align: center;
}

.ccontent {
  display: block;
  margin: 0 auto;
  position: relative;
}

.vtop {
  vertical-align: top;
}

.vbtm {
  vertical-align: bottom;
}

.vmdl {
  vertical-align: middle;
}

/* --------------------------------------Tabellen-------------------------------------- */

/*Responsive Swipe Tabelle */
.tableswipe {
  width: 100%;
  height: 20px;
  margin-bottom: 20px;
  display: none;
  position: relative;
}

@media only screen and (max-width: 900px) {
  .tableswipe {
    display: block;
  }
}

.prev {
  width: 20px;
  position: absolute;
  left: 10px;
  z-index: 20;
}

.next {
  width: 20px;
  position: absolute;
  right: 10px;
  z-index: 20;
}


/* --------------------------------------Hauptmenü-------------------------------------- */

.navBar {
  background-color: var(--svlightblue);
  width: 100%;
  position: fixed;
  height: auto;
  min-height: 66px;
  z-index: 500;
  box-shadow: inset 0px -5px 12px -11px #0000009f;
}

.navBarInner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  height: 70px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.nav {
  z-index: 100;
  position: relative;
  display: flex;
  justify-content: end;
  padding: 14px 10px;
}

.iconLogo {
  width: 30px;
  position: absolute;
  top: 12px;
  left: 15px;
  z-index: 500;
}

.topnav {
  font-family: "Roboto Slab";
  position: relative;
  text-decoration: none;
  color: var(--svblack);
  font-size: 1.2rem;
  font-weight: normal;
  letter-spacing: 2px;
  display: inline-block;
  -webkit-transition: all 0.03s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-right: 14px;
  margin-top: -4px;
}

.topnav:hover {
  color: #434343;
}

.topnav a:link,
.topnav a:visited,
.topnav a:active,
.topnav a:focus,
.topnav a:hover {
  color: var(--svblack);
  text-decoration: none;
}

.topnav::before {
  content: "";
  width: 0%;
  height: 1px;
  border-bottom: 2px solid #000;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.03s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.topnav:hover::before {
  width: 100%;
}

.topnav:hover>.subnav {
  opacity: 1;
  transition-delay: 0.1s;
  visibility: visible;
}

.toggle-subnav {
  display: none;
}


.subnav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: flex-start;
  text-align: left;
  width: auto;
  position: absolute;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.3s;
  padding: 26px 20px 20px 20px;
  background-color: var(--svlightblue);
  border-radius: 0 0 6px 6px;
  box-shadow: 0px 10px 17px -14px #000000;
}

.subnav-active {
  display: block;
}

.subnav a:link,
.subnav a:visited,
.subnav a:active {
  white-space: nowrap;
  width: 100%;
  text-decoration: none;
  color: #000;
  font-size: 1.2rem;
  display: block;
  padding: 14px 10px 14px 20px;
  letter-spacing: 0px;
  min-width: 200px;
  border-radius: 6px;
}

.subnav a:focus,
.subnav a:hover {
  background-color: #D2E9E4;
}

@media only screen and (max-width: 1024px) {

  .navBar {
    height: 65px;
  }

  .nav {
    width: 100%;
    display: block;
    top: -100vh;
    text-align: left;
    position: fixed;
    background-color: var(--svlightblue);
    padding-top: 60px;
    height: 100vh;
    -webkit-transition: all 0.03s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    overflow-y: auto;
  }

  .nav-active {
    top: 10px !important;
  }

  .topnav {
    display: block;
    margin: 0;
    border-bottom: 1px solid #000;
    padding: 0;
  }

  .topnav:hover>.subnav {
    opacity: 0 !important;
    visibility: hidden !important;
    position: absolute !important;
  }

  .topnav.open>.subnav {
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
  }


  .topnav.open span {
    background-color: var(--svblue);
    color: #FFF;
  }

  .topnav:first-child {
    border-top: 1px solid #000;
  }

  .topnav span {
    display: block;
    padding: 20px;
  }

  .topnav span:hover {
    color: #000;
    background-color: var(--svblue);
    color: #FFF;
  }

  .topnav::before {
    content: "";
    display: none;
  }

  .topnav:hover::before {
    width: 100%;
  }

  .topnav:hover>.subnav {
    opacity: 1;
    transition-delay: 0.1s;
    visibility: visible;
    position: relative;
  }




  .subnav {
    display: block;
    text-align: left;
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
    z-index: 100;
    visibility: hidden;
    opacity: 0;
    transition-property: opacity;
    transition-duration: 0.3s;
    padding: 0;
    box-shadow: none;
  }

  .subnav:first-child {
    border-top: none;
  }

  .subnav-active {
    display: block;
  }

  .subnav a:link,
  .subnav a:visited,
  .subnav a:active {
    white-space: normal;
    width: 100%;
    display: block;
    padding: 20px;
    border-right: none;
    border-left: none;
  }

  .subnav a:focus,
  .subnav a:hover {
    background-color: var(--svblue);
    color: #FFF;
  }

  .subnav a:last-child {
    border-bottom: none;
  }
}

@media only screen and (max-width: 550px) {
  .navBar {
    height: 45px;
    min-height: inherit;
  }

  .navBarInner {
    height: 35px;
  }

  .hamburger {
    top: 0;
  }

  .iconLogo {
    width: 22px;
    top: 6px;
  }

  .search {
    top: 9px;
  }

}


/* -----------------------------  Intro  ----------------------------- */
.intro {
  width: 100%;
  height: 100vh;
  background: none;
  -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=9, Direction=0, Color=#000000)";
  /*IE 8*/
  -moz-box-shadow: 0 2px 9px 8px rgba(0, 0, 0, 0.8);
  /*FF 3.5+*/
  -webkit-box-shadow: 0 2px 9px 8px rgba(0, 0, 0, 0.8);
  /*Saf3-4, Chrome, iOS 4.0.2-4.2, Android 2.3+*/
  box-shadow: 0 2px 9px 8px rgba(0, 0, 0, 0.8);
  /* FF3.5+, Opera 9+, Saf1+, Chrome, IE10 */
  filter: progid:DXImageTransform.Microsoft.Shadow(Strength=9, Direction=135, Color=#000000);
  /*IE 5.5-7*/
}

@media only screen and (max-width: 500px) {
  .intro {
    background-image: url("../images/titleimg_mobile.webp");
    background-size: cover;
    background-position: center center;
  }
}

.startbtn {
  z-index: 20;
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 70px;
  -webkit-transition: all 0.03s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.startbtn:hover {
  transform: translate(-50%, 5px);
}

.startbtn:hover>span {
  display: block;
  opacity: 1;
}

.startbtn span {
  opacity: 0;
  color: #fff;
  text-decoration: none;
  text-align: center;
  z-index: 10;
  position: absolute;
  left: 53%;
  top: 47%;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.03s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* -----------------------------  Featured Boxen Startseite ----------------------------- */


.featuredSection {
  padding: 0 10px;
}

.featuredBox {
  width: 100%;
  max-width: 1400px;
  height: auto;
  min-height: 550px;
  background-size: cover;
  position: relative;
  margin: 0 auto;
  background-position: center center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 20px;
  scroll-margin-top: 80px;
}

.featuredBox div {
  width: 100%;
  height: 100%;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.featuredBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 768px) {
  .featuredBox {
    display: flex;
    flex-direction: column;

  }

  .imageBoxImage {
    order: 1;
  }

  .featuredBox img {
    min-height: 50vh;
  }

  .featuredBox div {
    order: 2;
  }
}

@media only screen and (max-width: 550px) {
  .featuredBox div {
    padding: 20px;
  }
}

.bgSfu {
  background-color: #274948;
}

.bgBlack {
  background-color: #212C2E;
}

.bgGold {
  background-color: #D2BE4B;
}

.bgMusic {
  background-color: #074257;
}

.bgBlue {
  background-color: var(--svblue);
}

.bGAutor {
  background-color: #5a5c49;
}

.bgMagazin {
  background-color: #295A5D;
  color: var(--svblack);
}

.bgGreen {
  background-color: #31381B
}

.txtBlack {
  color: #000 !important;
}

.featuredBox h2 {
  font-family: "Roboto Slab";
  font-weight: normal;
  font-size: 2.4rem;
  margin-top: 0;
  color: #FFF;
  line-height: 140%;
}

@media only screen and (max-width: 768px) {
  .featuredBox h2 {
    font-size: 1.8rem;
  }
}

@media only screen and (max-width: 500px) {
  .featuredBox h2 {
    font-size: 1.5rem;
  }
}

.featuredBox p {
  line-height: 155%;
  color: #FFF;
  margin-bottom: 20px;
}


/* -----------------------------  Produktübersicht ----------------------------- */
.featured {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px auto;
  align-items: flex-start;
  gap: 30px;

}

.featured:hover img {
  transform: scale(1.05);
}

.featured .hdlm {
  margin: 0 0 10px 0;
}

.featured-sub {
  font-size: 1.2em;
  font-weight: normal;
  margin-bottom: 20px;
}

.featured-sub a:link,
.featured-sub a:visited,
.featured-sub a:active {
  font-weight: normal;
}

.featured-sub a:focus,
.featured-sub a:hover {
  color: var(--svblue);
}

.featured img {
  width: 100%;
  height: auto;
  margin-right: 30px;
  -webkit-transition: all 0.03s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.featured p {
  width: 100%;
  color: #000;

}

.featured .btn {
  margin-top: 20px;
}

.featuredContainer {
  width: 100%;
  max-width: 1400px;

}

.booksContainer .featured {
  align-items: center;
}

@media only screen and (max-width: 1024px) {
  .featuredContainer {
    display: block;
    padding: 0 10px 0 10px;
  }

  .featured {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 60px auto;
    display: grid;
  }
}

@media only screen and (max-width: 650px) {
  .featured img {
    display: block;
    padding: 0 0 20px 0;
    margin: 0 auto;
    width: 100%;
    max-width: 250px;

  }

  .featured {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 60px auto;
    display: block;
  }

  .featured p {
    display: block;
  }
}

/* -----------------------------  Hervorgehobenes Buch ----------------------------- */
.featuredhighlight {
  display: block;
  background-color: rgba(0, 0, 0, 0.45);
  background-image: url("../images/sitebgdark.jpg");
  padding: 30px;
  box-sizing: border-box;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=9, Direction=0, Color=#000000)";
  /*IE 8*/
  -moz-box-shadow: 0 10px 9px -7px rgba(0, 0, 0, 0.8);
  /*FF 3.5+*/
  -webkit-box-shadow: 0 10px 9px -7px rgba(0, 0, 0, 0.8);
  /*Saf3-4, Chrome, iOS 4.0.2-4.2, Android 2.3+*/
  box-shadow: 0 10px 9px -7px rgba(0, 0, 0, 0.8);
  /* FF3.5+, Opera 9+, Saf1+, Chrome, IE10 */
  filter: progid:DXImageTransform.Microsoft.Shadow(Strength=9, Direction=135, Color=#000000);
  /*IE 5.5-7*/
}

.featuredhighlight img {
  width: 100%;
  max-width: 374px;
  height: auto;
}

.featuredhighlight h3 {
  margin: 0;
}

.featuredhighlight strong {
  font-weight: normal;
}

.featuredhighlight-grid {
  display: grid;
  grid-template-columns: 30% auto;
  grid-gap: 30px;
  width: 100%;
  max-width: 750px;
  margin: 0 auto 40px auto;
}

.featurevideo-content {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .featuredhighlight-grid {
    display: block;
  }

  .featuredhighlight img {
    max-width: 250px;
    margin-bottom: 10px;
    display: block;
    margin: 0 auto 10px auto;
  }

  .featurevideo-content {
    margin-top: 20px;
  }
}

/* -----------------------------  Dekoration ----------------------------- */
.blood {
  position: absolute;
  z-index: -10;
  width: 100%;
  max-width: 240px;
  left: 0px;
  top: 20px;
}

.section-shadow {
  -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=9, Direction=0, Color=#000000)";
  /*IE 8*/
  -moz-box-shadow: 0 2px 9px 8px rgba(0, 0, 0, 0.8);
  /*FF 3.5+*/
  -webkit-box-shadow: 0 2px 9px 8px rgba(0, 0, 0, 0.8);
  /*Saf3-4, Chrome, iOS 4.0.2-4.2, Android 2.3+*/
  box-shadow: 0 2px 9px 8px rgba(0, 0, 0, 0.8);
  /* FF3.5+, Opera 9+, Saf1+, Chrome, IE10 */
  filter: progid:DXImageTransform.Microsoft.Shadow(Strength=9, Direction=135, Color=#000000);
  /*IE 5.5-7*/
}

/* -----------------------------  Unterseiten ----------------------------- */
.subpagesection {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 10px 0 10px;
  position: relative;
}

@media screen and (max-width: 550px) {
  .subpagesection {
    padding: 55px 10px 0 10px;
  }
}

.subpagesection .blood {
  margin-top: 50px;
  left: 50%;
  transform: translate(-50%, 0);
}

/* -----------------------------  Scroll-to-Top ----------------------------- */
.gotop {
  display: inherit;
}

@media screen and (max-width: 640px) {
  .gotop {
    display: none;
  }
}

.gotop {
  display: none;
  width: 30px;
  height: 30px;
  background-color: var(--svblue);
  background-image: url("../images/icons/icon_arrow-up.svg");
  background-size: 12px 12px;
  background-position: center center;
  background-repeat: no-repeat;
  position: fixed;
  bottom: 5px;
  right: 10px;
  z-index: 5;
  cursor: pointer;
  border-radius: 40px;
}

/* -----------------------------  Verlagsprogramm Button ----------------------------- */

.catalogueNav {
  display: block;
  text-align: center;
  margin-bottom: 40px;
  width: 100%;
  display: block;
}

.catalogueNav .btn {
  width: 250px;
  margin-bottom: 10px;
}

@media screen and (max-width: 550px) {
  .cataloguenav .btn {
    display: block;
    margin-bottom: -5px;
  }
}

.cataloguelink {
  display: inline-block;
  text-align: center;
  margin-top: 40px;
  color: #fff;
  text-decoration: none;
  font-size: 1.2em;
  padding: 16px;
  border: 2px solid #fff;
  border-radius: 55px;
  background: none;
}

.cataloguelink:hover {
  background-color: #fff;
  color: #000;
  -webkit-transition: all 0.03s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* -----------------------------  Youtube Responsive Styles ----------------------------- */
.videoContainer {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background-color: #000;
  color: white;
  font-family: sans-serif;
  border: 1px solid #000;
  margin-bottom: 10px;
}

.videoContainer iframe,
.videoContainer img,
.videoContainer .videoOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

}

.videoContainer img {
  object-fit: cover;
  z-index: 1;
}

.videoContainer .videoOverlay {
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1em;
  text-align: center;
}

.videoContainer .videoOverlay p {
  font-size: var(--font-size-base);
  margin-bottom: 1em;
  color: #FFF;
  max-width: 90%;
  margin-bottom: 20px;
  overflow-y: auto;
}

.videoContainer a:is(:link, :visited, :active, :focus, :hover) {
  font-size: inherit;
  font-weight: lighter;
  margin-bottom: 1em;
  color: #FFF;
  max-width: 90%;
  margin-bottom: 20px
}

.videoContainer .videoOverlay button {
  font-family: "Roboto Slab";
  background: var(--svblue);
  color: white;
  border: none;
  padding: 0.6em 1.2em;
  font-size: var(--font-size-base);
  cursor: pointer;
  border-radius: 40px;
}

@media screen and (max-width: 550px) {
  .videoContainer .videoOverlay p {
    font-size: var(--font-size-s);
  }

}


/* -----------------------------  Buchinfo ----------------------------- */
.product {
  display: grid;
  grid-template-columns: calc(30% - 20px) calc(70% - 20px);
  gap: 40px;
  width: 100%;
  margin: 0 auto;
}

.product h1 {
  margin: 0;
}

.product h2 {
  margin: 0 0 10px 0;
}

.coverBox {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .product {
    display: block;
  }

  .product h1 {
    margin: 0 0 10px 0;
  }

  .product h2 {
    margin: 0 0 10px 0;
  }

  .coverBox {
    display: block;
    margin: 0 auto;
    max-width: 300px;
  }
}

@media screen and (max-width: 550px) {
  .coverBox {
    margin: 0 auto 20px auto;
  }
}

.badge-new {
  font-family: "Roboto Slab";
  color: #FFF;
  background-color: #d11711;
  font-size: var(--font-size-base);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin: 0 auto 50px auto;
  padding: 20px;
  width: 100%;
  max-width: 320px;
}


/* -----------------------------  Share & Merkzettel Buttons ----------------------------- */

.functionBtn {
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: center center;
  border-radius: 40px;
  background-color: var(--svblue);
  width: 50px;
  height: 50px;
  text-align: center;
  cursor: pointer;
  transition: all .3s ease-in-out;
  display: inline-block;
  text-align: center;
  margin: 0 5px 0 5px;
}

.functionBtn:hover {
  background-color: var(--svlightblue);
}

.share {
  background-image: url("../images/icons/icon_share.svg");
}

.like {
  background-image: url("../images/icons/icon_like.svg");
}



.videoContainer {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background-color: #000;
  color: white;
  font-family: sans-serif;
  border: 1px solid #000;
  margin-bottom: 10px;
}

.bookspec {
  text-align: center;
  margin-bottom: 20px;
}


.gostorelink {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .gostorelink {
    display: block;
    width: 100%;
    max-width: 374px;
    margin: 0 auto 40px auto;
  }
}

.storelinks {
  margin-top: 20px;
}

.product-container {
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.45);
  background-image: url("../images/sitebgdark.jpg");
  -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=9, Direction=0, Color=#000000)";
  /*IE 8*/
  -moz-box-shadow: 0 10px 9px -7px rgba(0, 0, 0, 0.8);
  /*FF 3.5+*/
  -webkit-box-shadow: 0 10px 9px -7px rgba(0, 0, 0, 0.8);
  /*Saf3-4, Chrome, iOS 4.0.2-4.2, Android 2.3+*/
  box-shadow: 0 10px 9px -7px rgba(0, 0, 0, 0.8);
  /* FF3.5+, Opera 9+, Saf1+, Chrome, IE10 */
  filter: progid:DXImageTransform.Microsoft.Shadow(Strength=9, Direction=135, Color=#000000);
  /*IE 5.5-7*/
}


/* -----------------------------  Dienstleistungen ----------------------------- */
.service {
  position: relative;
  padding: 30px;
  width: 100%;
  margin: 0 auto;
  display: block;
  color: #000;
  border: 1px solid #000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}



.serviceContent {
  flex-grow: 1;
}


.service h2 {
  font-family: "Roboto Slab";
  font-size: 1.8em;
  line-height: 135%;
  font-weight: normal;
  margin: 0 0 20px 0;
}

.service span {
  font-size: 1.2em;
  color: #000;
  padding: 10px;
  margin: 0 0 10px 0;
}

.service .btn {
  float: right;
}



.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .service-grid {
    grid-template-columns: auto;
  }


}

/* -----------------------------  Autorenportrait ----------------------------- */
.portrait-grid {
  display: grid;
  grid-template-columns: auto auto;
  grid-gap: 20px;
}

.portrait-grid img {
  width: 100%;
  max-width: 350px;
  display: block;
  margin-bottom: 20px;
}

.portrait-container {
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .portrait-grid {
    display: block;
  }

  .portrait-grid img {
    margin: 0 auto 40px auto;
  }
}

.presentbtn img {
  width: 30px;
  height: 30px;
  margin-left: 10px;
}

.ccm-settings-summoner--icon {
  display: none !important;
}

.introSection {
  width: calc(100% - 20px);
  max-width: 1400px;
  height: 85dvh;
  margin: 100px auto 40px auto;
  background-color: #fff;
  background-image: url("../images/introbg.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  gap: 2vw;

}


.introSectionContent {
  width: 100%;
  overflow-x: hidden;
  display: flex;
  align-items: center;
}

.introSectionKeyVisual {
  height: 90dvh;
}

.introSectionHdl {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.introLogo {
  width: 100%;
  max-width: 120px;
  position: absolute;
  bottom: 20px;
  right: 20px;
}


.introSectionHdl h1 {
  font-family: "Roboto Slab";
  font-weight: normal;
  text-align: left;
  font-size: 3rem;
}

.introSectionHdl .btn {
  background-color: #000;
}

.introSectionHdl .btn:hover {
  background-color: #363636;
}


.introSectionHdl h1 span {
  font-size: 2.2rem;
  display: block;
  margin-top: 24px;
}

@media screen and (max-width: 1024px) {

  .introSection {
    padding: 0 20px 0 0;
    height: 65vh;
  }

  .introSectionKeyVisual {
    margin-left: -10%;
    height: 70vh;
  }

  .introSectionContent h1 {
    font-size: 2.5rem;
  }

  .introSection h1 span {
    font-size: 1.5rem;
  }

  .introLogo {
    max-width: 90px;
  }

}


@media screen and (max-width: 1024px) {

  .introSection {
    padding: 0 20px 0 0;
  }

}

@media screen and (max-width: 640px) {

  .introSection {
    height: auto;
  }

  .introSectionContent {
    display: block;
    padding: 0 20px 20px 20px;
  }

  .introSectionKeyVisual {
    margin: 0 auto;
    height: 70vh;
    display: block;
  }

  .introSectionContent h1 {
    font-size: 2.5rem;
    margin-top: 0;
  }

  .introSection h1 span {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 550px) {

  .introSection {
    margin-top: 60px;
  }

  .introSectionContent h1 {
    font-size: 2.2rem;
    margin-top: 0;
  }

}

@media screen and (max-width: 435px) {
  .introSection img {
    width: 100%;
    height: auto;
  }

  .introSectionContent h1 {
    font-size: 2em;
    margin-top: 0;
  }

  .introSection h1 span {
    font-size: 1.3rem;
  }
}

@media (max-width:950px) and (orientation: landscape) {
  .introSection img {
    width: auto;
    margin: 0;
  }

  .introSectionContent h1 {
    font-size: 2em;
    margin-top: 0;
  }

  .introSection h1 span {
    font-size: 1.3rem;
  }
}


.word-cloud {
  font-family: "Roboto Slab";
  font-weight: 300;
  line-height: 150%;
  font-size: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-self: center;
  gap: 0 2%;
  width: 100%;
}


@media screen and (max-width: 768px) {
  .word-cloud {
    max-width: 100%;
    font-size: clamp(1.4rem, 1rem, 1.8rem);
    /* min, preferred, max */
  }

}

.word-cloud a:link,
.word-cloud a:visited,
.word-cloud a:active {
  font-weight: bolder;
  color: #000;
  text-decoration: none;
  transition: all .3s ease-in-out;
}

.word-cloud a:focus,
.word-cloud a:hover {
  color: var(--svblue);
}

.word {
  opacity: 1;
  transition: transform 1s ease, opacity 0.5s ease;
  border-radius: 40px;
}

.word.focus {
  transform: scale(1.3);
  opacity: 1;
  z-index: 10;
}


@media screen and (max-width: 550px) {
  .introSectionContent {
    display: block;
  }

  .keyVisual {
    max-width: 340px;
  }

  .word-cloud {
    font-size: 1.2rem;
    gap: 0;
    padding: 0 20px 0 20px;
    justify-content: space-between;
  }

  .word {
    display: block;
  }
}


/* -----------------------------  Musik Shop ----------------------------- */

.musicGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .musicGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 550px) {
  .musicGrid {
    display: block;
  }

  .musicFeatured {
    max-width: 400px;
    margin: 0 auto 40px auto;
  }
}

.musicFeatured p:nth-child(2) {
  display: block;
  font-family: "Roboto Slab";
  font-weight: normal;
  font-size: 1.4rem;
}

.musicFeatured p:nth-child(3) {
  display: block;
  font-weight: 100;
  margin-bottom: 5px;
}

.musicFeatured img {
  width: 100%;
  margin-bottom: 10px;
}


/* -----------------------------  Produktseiten ----------------------------- */

.productSection {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 75px 10px 0 10px;
}

.productSection::after {
  content: "Irrttümer und Änderungen vorbehalten.";
  display: block;
  text-align: center;
  font-size: var(--font-size-s);
  margin-top: 20px;
}



.productHeader {
  position: relative;
  text-align: center;
}

.productSection h1 {
  font-family: "Roboto Slab";
  font-size: var(--font-size-xl);
  font-weight: normal;
  text-align: center;
}

.productSection h1 span {
  display: block;
  font-size: var(--font-size-large);
  font-weight: normal;
}

@media screen and (max-width: 550px) {

  .productSection {
    padding: 40px 10px 0 10px;
  }

  .productSection h1 {
    font-size: 2.2rem;
  }

  .productSection h1 span {
    font-size: 1.2rem;
  }
}

.productSection h1 span a:link,
.productSection h1 span a:visited,
.productSection h1 span a:active {
  color: var(--svblack);
  transition: all .3s ease-in-out;
}

.productSection h1 span a:focus,
.productSection h1 span a:hover {
  color: var(--svblue);
}

.productSection table {
  width: 100%;
  border-collapse: collapse;
}

.productSection table,
.productSection td {
  font-family: "Roboto";
  font-size: var(--font-size-base);
  font-weight: 100;
  vertical-align: top;
}

.productSection tr {
  border-bottom: 1px solid #dfdfdf;
}

.productSection tr:last-child {
  border: none;
}

.productSection td {
  line-height: 175%;
}

.productSection table td:first-child {
  padding-right: 20px;
}

.productSection table td:last-child {
  text-align: right;
}

.productSection h2 {
  font-family: "Roboto Slab";
  color: #000;
  font-size: var(--font-size-large);
  font-weight: normal;
}

.aiInfo {
  font-size: 1rem;
  margin-top: 20px;
}


/* -----------------------------  Rezensionen ----------------------------- */

.rezensionen {
  margin-top: 20px;
}

.rezensionen img {
  width: 100%;
  max-width: 120px;
  display: block;
}

.rezensionen p span {
  color: #000;
  font-size: 1.2em;
  line-height: 150%;
  font-weight: normal;
  display: block;
  margin: 10px 0 15px 0;
}

.rezensionen hr {
  background-color: var(--svgray);
  height: 1px;
  border: none;
  margin: 20px 0 20px 0;
}

.form100 {
  max-width: 100% !important;
}

.openRezensionenFormular {
  margin-bottom: 40px;
}

.rezensionenFormular {
  display: none;
  margin: 0 0 40px 0;
  width: 100%;
}

@media only screen and (max-width: 550px) {
  .openRezensionenFormular {
    margin-top: 10px;
  }
}

/* Sterne-Layout */
.ratingFieldset {
  margin: 1rem 0;
  display: block;
  text-align: center;
}

.starsRating {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: .25rem;
}

.starsRating input {
  position: absolute;
  left: -9999px;
}

.starsRating label {
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  user-select: none;
  filter: grayscale(1);
  opacity: .6;
  transition: transform .1s ease, opacity .1s ease;
}

.starsRating label:hover,
.stars label:focus {
  transform: scale(1.08);
}

.starsRating input:checked~label,
.starsRating label:hover,
.starsRating label:hover~label {
  filter: none;
  opacity: 1;
}

/* Sterne-Bewertung */
.starsRating {
  display: flex;
  flex-direction: row-reverse;
  /* höchste Zahl links */
  justify-content: flex-start;
  width: 100%;
  max-width: 300px;
  margin: 0 auto 20px auto;
}

.starsRating input[type="radio"] {
  display: none;
  /* Radio-Buttons ausblenden */
}

.starsRating label {
  font-size: 2rem;
  cursor: pointer;
  color: #ccc;
  /* ausgegraut */
  transition: color 0.2s;
}

/* Hover-Effekt */
.starsRating label:hover,
.starsRating label:hover~label {
  color: var(--svblue);
}

/* Ausgewählte Sterne */
.starsRating input[type="radio"]:checked~label {
  color: var(--svblue);
}

/* Validierungsfarben */
.starsRating.formError {
  border: 2px solid red;
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
}

.starsRating.formCorrect {
  padding: 0.3rem 0.5rem;
  background: transparent;
}

.ratingFieldset .hint {
  font-size: 0.85rem;
  color: #5f5f5f;
  margin-left: 0.5rem;
}



/* Zähler & Hinweise */
.counter {
  margin: 0;
  font-size: .9rem;
  opacity: .5;
  text-align: right;
}

#textHelp {
  font-weight: 100;
  font-size: .9rem;
}

/* -----------------------------  Coverbox ----------------------------- */

.coverBox img {
  width: 100%;
  margin-bottom: 10px;
}

.coverBox .btn {
  width: 100%;
  margin-bottom: 10px;
}

/* -----------------------------  Shops ----------------------------- */

.shop {
  background-color: #eeecec;
  padding: 20px;
  scroll-margin-top: 70px;
}

.shopping {
  font-family: "Roboto Slab";
  font-size: var(--font-size-large);
  font-weight: normal;
  margin: 0 0 20px 0;
  background-image: url("../images/icons/icon_shopping.svg");
  background-repeat: no-repeat;
  background-size: auto;
  padding-left: 34px;
  background-position: left center;
}

.streaming {
  font-family: "Roboto Slab";
  font-size: var(--font-size-large);
  font-weight: normal;
  margin: 0 0 20px 0;
  background-image: url("../images/icons/icon_music.svg");
  background-repeat: no-repeat;
  background-size: 26px auto;
  padding-left: 38px;
  background-position: left center;
}

.audiobook {
  font-family: "Roboto Slab";
  font-size: var(--font-size-large);
  font-weight: normal;
  margin: 0 0 20px 0;
  background-image: url("../images/icons/icon_audiobook.svg");
  background-repeat: no-repeat;
  background-size: 26px auto;
  padding-left: 38px;
  background-position: left center;
}

.storeLinks {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
}

@media screen and (max-width: 1440px) {
  .storeLinks {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 640px) {

  .shop {
    margin-top: 20px;
  }

  .storeLinks {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 425px) {
  .storeLinks {
    grid-template-columns: 1fr;
  }
}

.storeLinks a:is(:link, :visited, :active) {
  padding: 16px 24px;
  color: var(--svblue);
  text-align: center;
  font-size: var(--font-size-base);
  cursor: pointer;
  line-height: normal;
  border: 2px solid var(--svblue);
  text-decoration: none;
  -webkit-transition: all 0.03s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "Roboto Slab";
  margin: 0 2px 5px 0;
  border-radius: 40px;
}

.storeLinks a:is(:focus, :hover) {
  background-color: var(--svblue);
  color: #FFF;
}

.formatInfo {
  border-top: 1px solid #000;
  margin-top: 20px;
  padding-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.formatInfo p {
  margin-right: 20px;
}

@media screen and (max-width: 640px) {
  .formatInfo {
    border-top: 1px solid #000;
    margin: 20px auto 0 auto;
    padding-top: 10px;
    display: block;
    text-align: center;
  }
}

/* --------------------------------------Suche-------------------------------------- */

.headerFunctions {
  width: auto;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding-right: 10px;
  z-index: 1024;
  position: relative;
}

@media only screen and (max-width: 1024px) {
  .headerFunctions {
    margin-right: 70px;
    padding: 0;
  }
}


.searchForm {
  width: 250px;
}

.search {
  width: 100%;
  padding: 5px 5px 5px 40px;
  border: none;
  font-size: 1rem;
  background-image: url("../images/icons/icon_search.svg");
  background-repeat: no-repeat;
  background-position: left 10px center;
  background-size: 20px auto;
  border-radius: 40px;
  background-color: #d2e9e4;
  height: 35px;
  margin-bottom: 5px;
}

@media only screen and (max-width: 550px) {
  .headerFunctions {
    top: 7px;
    gap: 0;
  }

  .search {
    width: auto;
    max-width: 45vw;
    padding: 0 5px 0 40px;
    height: 30px;
    float: right;
    margin-right: 10px;
  }
}

@media only screen and (max-width: 450px) {

  .search {
    max-width: 40vw;
  }
}




.search:focus {
  background-color: #FFF;
  outline: none;
}


.search-wrapper {
  position: relative;
  /* Nur dieser Container ist Bezugspunkt */
  width: 100%;
  max-width: 400px;
  /* oder passend zu deinem Suchfeld */
}

#search {
  width: 100%;
  /* nimmt Containerbreite ein */
  box-sizing: border-box;
}

#search-results {
  position: absolute;
  top: 100%;
  /* direkt unter dem Input */
  left: 0;
  width: 100%;
  /* immer gleich breit wie das Input */
  max-height: 325px;
  /* Höhe begrenzen */
  overflow-y: auto;
  /* Scrollbalken nur wenn nötig */
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 1024;
}

/* -----------------------------  Share Buttons ----------------------------- */

.shareButtons {
  background-color: var(--svgray);
  margin-top: 15px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0s ease;
}

.shareButtons.open {
  max-height: 500px;
  /* groß genug für den Inhalt */
}

.shareButtonsInner {
  width: 100%;
  padding: 20px;
  font-weight: bold;
  position: relative;
}

.shareButtonsInner p {
  font-family: "Roboto Slab";
  font-weight: normal;
  font-size: var(--font-size-base);
  margin: 0;
}

.shareButtons ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0 0 0;
  padding: 0;
}

.shareButtons li {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.shareButtons a:link,
.shareButtons a:visited,
.shareButtons a:active {
  color: #000;
  text-decoration: none;
  font-size: var(--font-size-s);
  display: grid;
  justify-content: center;
  text-align: center;
  transition: all .3s ease-in-out;
}

.shareButtons a:focus,
.shareButtons a:hover {
  opacity: .7;
}

.shareButtons img {
  width: 40px;
  margin: 0 auto 5px auto;
}


/* --------------------------------------Wunschzettel-------------------------------------- */

.wishListNavBtn {
  filter: brightness(500%);
  position: relative;
  width: 22px;
  height: 22px;
  background-image: url("../images/icons/icon_wishlist.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 5px;
}

.wishListNavBtn.wishListActive {
  filter: none;
}

.wishlist-badge {
  position: absolute;
  background: red;
  color: white;
  font-size: 10px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  border-radius: 50%;
  text-align: center;
  display: none;
  font-weight: bold;
  pointer-events: none;
  margin-top: 14px;
  margin-right: -5px;
}

#wishlist-container {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-around;
  width: 100%;
  grid-gap: 40px;
}

@media only screen and (max-width: 640px) {
  #wishlist-container {
    display: block;
  }
}

.wishListInfoWrapper {
  grid-column: 1 / -1;
  /* über alle Spalten spannen */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.wishListInfoWrapper img {
  width: 100px;
  margin-bottom: 20px;
}

.wishListInfo {
  text-align: center;
  font-size: var(--font-size-base);
  color: #555;
  font-weight: normal;
}

#wishlist-container .btn {
  text-align: center;
  margin: 20px auto auto;
}

.merkzettel {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 20px;
  width: 100%;
}

.merkzettel h2 {
  margin: 0 0 5px 0;
}

.merkzettel p {
  margin: 0;
}



.merkzettel img {
  width: 150px;
}

.btnCenter {
  width: 100%;
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid var(--svgray);
  padding-top: 20px;
}


@media only screen and (max-width: 1024px) {

  #wishlist-container p {
    width: 100%;
    text-align: center;
  }

  .merkzettel {
    display: block;
    text-align: center;
    margin-bottom: 60px;
  }

  .merkzettel img {
    margin-bottom: 10px;
  }

}

/* --------------------------------------Tabs-------------------------------------- */

.tab-wrapper {
  width: 100%;
  position: relative;
}

.tablist {
  display: flex;
  gap: 0 3px;
}

.tab-button {
  font-family: "Roboto Slab";
  font-size: var(--font-size-base);
  padding: 10px 40px;
  font-weight: normal;
  background: #f2f2f2;
  border: none;
  border-top: 4px solid transparent;
  cursor: pointer;
  text-align: center;
  border-radius: 10px 10px 0 0;
  transition: all .3s ease-in-out;
}

.tab-button[aria-selected="true"] {
  background: var(--svblue);
  color: white;
  border-top: 4px solid var(--svblue);
  pointer-events: none;
}

.tab-button:hover {
  background-color: var(--svlightblue);
}

.tabpanel {
  display: none;
  padding: 20px 0;
  border-top: 1px solid #000;
  scroll-margin-top: 190px;
  margin: 0;
}

.tabpanel[aria-hidden="false"] {
  display: block;
}

@media (max-width: 767px) {
  .tablist {
    display: none;
  }

  .mobile-tab {
    font-family: "Roboto Slab";
    font-weight: normal;
    font-size: 1.2rem;
    display: block;
    background: var(--svlightblue);
    border: none;
    width: 100%;
    text-align: left;
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 10px;
    margin-bottom: 4px;
    position: relative;
  }

  .mobile-tab::after {
    content: "+";
    position: absolute;
    right: 10px;
    font-weight: normal;
  }

  .mobile-tab.active {
    background: var(--svblue);
    color: white;
    border-radius: 10px 10px 0 0;
  }

  .mobile-tab.active::after {
    content: "";
  }

  .tabpanel {
    display: none !important;
    border: none;
  }

  .tabpanel[aria-hidden="false"] {
    display: block !important;
  }
}

@media (min-width: 768px) {
  .mobile-tab {
    display: none;
  }
}

@media only screen and (max-width: 550px) {
  .tabpanel {
    padding: 0;
  }
}



.header {
  position: relative;
}

.introSection::before,
.header::before,
.footer::before,
.featuredBox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background-image: url("../images/bookshape.svg");
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
  width: 100px;
  height: 7px;
}





.header h1 {
  font-family: "Roboto Slab";
  font-weight: normal;
  font-size: clamp(1rem, 2.4vw, 5rem);
  color: #ffffff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0px);
  margin: 0;
  width: 100%;
  text-align: left;
  padding: 10px 20px 10px 20px;
  background-color: #65948ab6;
  backdrop-filter: blur(6px);
}

.headerImg {
  width: 100%;
  margin: 0 auto 20px auto;
  display: block;
  object-fit: cover;
}


@media only screen and (max-width: 768px) {

  .header h1 {
    font-size: 2.6rem;
  }

  .headerImg {
    height: 50vh;
  }

  .headerImgAudiobook {
    object-position: 60% center;
  }

  .headerImgBooks {
    object-position: 90% center;
  }

}


@media screen and (max-width: 550px) {



  .header h1 {
    font-size: 1.8rem;
  }
}

/* --------------------------------------Produktslider-------------------------------------- */

.svSlider-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  margin-top: 60px;
}

.svSlider-container {
  overflow: hidden;
  width: 100%;
  max-width: 1400px;
  /* Optional: Begrenzung der maximalen Breite */
}

.svSlider-container h2 {
  font-family: "Roboto Slab";
  font-weight: var(--font-size-large);
  text-align: center;
  margin: 0 0 20px;
}

.svSlider-track {
  display: flex;
  transition: transform 0.3s ease;
  align-items: center;
  will-change: transform;
  cursor: grab;
}

.svSlider-item {
  flex: 0 0 auto;
  width: 100%;
  max-width: 200px;
  padding: 10px;
  box-sizing: border-box;
  text-decoration: none;
}

.svSlider-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: all .3s ease-in-out;

}

.svSlider-item img:hover {
  transform: scale(1.1);
}

.svSlider-button {
  background: var(--svblue);
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 40px;
  flex-shrink: 0;
  z-index: 10;
  margin-top: 50px;
  background-size: 12px auto;
  background-position: center center;
  background-repeat: no-repeat;
}

.svSlider-button-left {
  margin-right: 10px;
  background-image: url("../images/icons/icon_prev.svg");
}

.svSlider-button-right {
  margin-left: 10px;
  background-image: url("../images/icons/icon_next.svg");
}

.svSlider-container.dragging .svSlider-track {
  transition: none;
  cursor: grabbing;
}

/* --------------------------------------Reader / Leseprobe-------------------------------------- */

.readerOverlay {
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  /* fallback: 1vh */
  margin: 0 auto;
  background-color: #ffffffd3;
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  padding: 0 10px 0 10px;
  display: none;
}

.reader,
.readerInner {
  height: 100%;
  max-height: calc(var(--vh, 1vh) * 100);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.readerControls {
  background-color: var(--svgray);
  padding: 10px;
  width: 100%;
  max-width: 700px;
  margin: 10px auto 0 auto;
  border-radius: 10px 10px 0 0;
  text-align: center;
  z-index: 3000;
}

.readerControls img {
  width: 100px;
}

.readerControlsControls {
  /* KEINE feste Höhe! */
  padding: 10px;
  background-color: var(--svgray);
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 10px 10px 0 0;
  text-align: center;
  box-sizing: border-box;
  flex-shrink: 0;/
}

.readerControls button {
  margin: 5px;
  width: 50px;
  height: 50px;
  font-size: 16px;
  border: none;
  border-radius: 40px;
  background-color: var(--svblue);
  color: white;
  cursor: pointer;
  transition: all .3s ease-in-out;
  background-position: center center;
  background-size: 30px 30px;
  background-repeat: no-repeat;
}

.readerControls button:hover {
  background-color: var(--svlightblue);
}

#prev-page {
  left: -50px;
  /* Abstand links vom Canvas */
  background-image: url("../images/icons/icon_prev.svg");
}

#next-page {
  right: -50px;
  /* Abstand rechts vom Canvas */
  background-image: url("../images/icons/icon_next.svg");
}

#zoom-in {
  background-image: url("../images/icons/icon_magnifier_plus.svg");
}

#zoom-out {
  background-image: url("../images/icons/icon_magnifier_minus.svg");
}

#toggle-theme {
  background-image: url("../images/icons/icon_daynight.svg");
}

#downloadBtn {
  background-image: url("../images/icons/icon_download.svg");
}

#closeReader {
  background-image: url("../images/icons/icon_close.svg");
}

.leseprobeFrame {
  flex: 1 1 auto;
  /* nimmt automatisch den verfügbaren Platz */
  overflow-y: auto;
  /* nur dieser Bereich scrollt */
  padding: 10px;
  box-sizing: border-box;
  max-width: 700px;
  margin: 10px auto 0 auto;
  border: 6px solid #CCC;
  border-radius: 10px;
  font-size: 1.2rem;
  background-color: #fdfaf5;
}

.leseprobe-content {
  display: none;
}

.leseprobe {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 20px;
  font-family: "Georgia", serif;
  font-size: inherit;
  line-height: 1.6;
  text-align: justify;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
  box-sizing: border-box;
}

@media screen and (max-width: 550px) {
  .leseprobe {
    padding: 10px;
  }
}

.leseprobe img {
  height: auto;
  max-height: 60vh;
  display: block;
  text-align: center;
  margin: 0 auto 30px auto;
}

.leseprobe h2 {
  font-family: "Georgia", serif;
  text-align: center;
  letter-spacing: 0.3em;
  margin-bottom: 2em;
}

.leseprobe h2+p {
  text-indent: 0%;
}

.abschnitt p {
  font-family: "Georgia", serif;
  margin-top: 0;
  margin-bottom: 0;
  text-indent: 1.2rem;
}

.leseprobe .abschnitt p:first-child {
  text-indent: 0%;
}

.leseprobe,
.abschnitt,
.abschnitt p,
.leseprobe h2 {
  font-size: inherit;
}


.leseprobe-info {
  text-align: center;
  max-width: 550px;
  margin: 60px auto 60px auto;
  border: 1px solid #000;
  padding: 20px;
  background-color: #FFF;
}

#scroll-range {
  width: 100%;
  appearance: none;
  background: transparent;
  /* wichtig! */
  height: 45px;
  /* für den Gesamtbereich inkl. Thumb */
  cursor: pointer;
  border: none;
  margin: 0;
  padding: 0;
}

/* Der eigentliche Balken */
#scroll-range::-webkit-slider-runnable-track {
  height: 6px;
  background: #FFF;
  border-radius: 20px;
}

/* Der Thumb */
#scroll-range::-webkit-slider-thumb {
  appearance: none;
  margin-top: -6px;
  /* damit der Thumb vertikal mittig sitzt */
  width: 18px;
  height: 18px;
  background: var(--svblue);
  border-radius: 5px;
  border: none;
  transition: background 0.3s ease;
}

/* Hover-Farbe */
#scroll-range::-webkit-slider-thumb:hover {
  background: var(--svlightblue);
}



/* ---------------------------------------------
   Dark Mode nur für das Reader-Overlay
---------------------------------------------- */

.readerOverlay.dark-mode,
.readerOverlay.dark-mode .reader,
.readerOverlay.dark-mode .leseprobe,
.readerOverlay.dark-mode .leseprobeFrame,
.readerOverlay.dark-mode .abschnitt,
.readerOverlay.dark-mode .abschnitt p,
.readerOverlay.dark-mode .leseprobe p,
.readerOverlay.dark-mode .leseprobe h2 {
  background-color: #111;
  color: #e0e0e0;
}

/* Reader Controls im Dark Mode */
.readerOverlay.dark-mode .readerControls {
  background-color: #222;
  color: #e0e0e0;
  border-top: 1px solid #333;
}

/* Buttons in Controls */
.readerOverlay.dark-mode .readerControls button,
.readerOverlay.dark-mode .readerControls a button {
  background-color: #444;
  color: #fff;
  border: none;
}

.readerOverlay.dark-mode .readerControls button:hover,
.readerOverlay.dark-mode .readerControls a button:hover {
  background-color: #666;
}

/* Seiteninfo */
.readerOverlay.dark-mode #page-info {
  color: #e0e0e0;
}

/* Schriftgrößenanzeige */
.readerOverlay.dark-mode #font-size-display {
  color: #e0e0e0;
}

/* Scroll-Slider Track */
.readerOverlay.dark-mode #scroll-range::-webkit-slider-runnable-track {
  background: #585858;
}

/* Scroll-Slider Thumb */
.readerOverlay.dark-mode #scroll-range::-webkit-slider-thumb {
  background-color: #FFF;
}


.readerInfos {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: var(--svblack);
  font-size: var(--font-size-s);
}

body.no-scroll,
body.no-scroll .reader,
body.no-scroll .readerInner {
  overflow: hidden !important;
  height: 100vh;
}

/* --------------------------------------Filter-------------------------------------- */



.filter {
  width: 100%;
  text-align: right;
  z-index: 10;
}

.filterBtn {
  font-family: "Roboto Slab";
  font-size: var(--font-size-base);
  background-image: url("../images/icons/icon_filter.svg");
  background-position: left 20px center;
  background-size: 30px 30px;
  background-repeat: no-repeat;
  border: none;
  background-color: transparent;
  padding: 16px 20px 16px 70px;
  cursor: pointer;
  border: 2px solid var(--svblue);
  color: var(--svblue);
  border-radius: 40px;
  display: inline-block;
  margin-bottom: 10px;
}

.filterBtn:hover {
  background-color: var(--svblue);
  color: #FFF;
  background-image: url("../images/icons/icon_filter_white.svg");
}

details[open]>summary.filterBtn {
  background-color: var(--svblue);
  color: #FFF;
  background-image: url("../images/icons/icon_filter_white.svg");
}

.filter summary {
  list-style: none;
  cursor: pointer;
  padding: 5px 20px 5px 50px;
  border: 2px solid var(--svblue);
  border-radius: 40px;
  background-image: url("../images/icons/icon_filter.svg");
  background-repeat: no-repeat;
  background-position: left 20px center;
  background-size: 20px;
  font-family: "Roboto Slab";
  color: var(--svblue);
  transition: all .3s ease-in-out;
}

.filterContentInner {
  padding: 10px;
  background-color: var(--svgray);
  position: absolute;
  z-index: 10;
  width: 100%;
  height: auto;
  max-height: 350px;
  max-width: 300px;
  margin: 0 0 20px auto;
  background-color: var(--svgray);
  overflow-y: auto;
  right: 0;
  border-radius: 6px;
}


@media only screen and (max-width: 550px) {


  .filterBtn {
    padding: 6px 20px 6px 70px;
    width: 100%;
    text-align: left;
  }

  .filterContentInner {
    position: relative;
    max-width: 95%;
    margin: 0 auto;
  }
}

.filterContentInner a {
  font-size: 1rem;
  display: block;
  text-decoration: none;
  color: var(--svblack);
  text-align: left;
}

.filterContentInner a:hover {
  background-color: #FFF;
}

.filterContentInner a:is(:link, :visited, :active) {
  color: var(--svblack);
  text-decoration: none;
  display: block;
  padding: 20px;
  text-align: left;
  transition: all .3s ease-in-out;
  border-bottom: 1px solid #dfdfdf;
}

.filterContentInner a:is(:focus, :hover) {
  background-color: #FFF;
}

.filterContentInner a:last-child {
  border: none !important;
}


/* -----------------------------  Musik Player Styles ----------------------------- */

.audioPlayer-player {
  width: 100%;
  background: #fff;
  border: 1px solid var(--svgray);
  border-radius: 10px;
  overflow: hidden;
}

.audioPlayer-controls {
  display: flex;
  align-items: center;
  padding: 1rem;
  justify-content: space-between;
  background: var(--svgray);
  flex-wrap: wrap;
  gap: 10px;
}

.audioPlayer-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.audioPlayer-buttons button {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background-color: var(--svblue);
  color: white;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 24px 24px;
  transition: all .3s ease-in-out;
}

.audioPlayer-buttons button:hover {
  background-color: var(--svlightblue);
}


/* Einzelne Button Icons */
#audioPlayer-prevBtn {
  background-image: url("../images/icons/icon_prev.svg");
}

#audioPlayer-playBtn {
  background-image: url("../images/icons/icon_play.svg");
}

#audioPlayer-playBtn.audioPlayer-playing {
  background-image: url("../images/icons/icon_pause.svg");
}

#audioPlayer-nextBtn {
  background-image: url("../images/icons/icon_next.svg");
}

#audioPlayer-volumeBtn {
  background-image: url("../images/icons/icon_volume.svg");

}

/* Volume Bereich */
.audioPlayer-volume-wrapper {
  display: flex;
  z-index: 2;
}

#audioPlayer-volumeControl {
  position: absolute;
  width: 150px;
  height: 30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  background-color: var(--svgray);
  border-radius: 50px 50px;
  border: 2px solid var(--svblue);
  z-index: 10;
  transform: rotate(90deg);
  margin-top: 110px;
  margin-left: -50px;
}

/* Lautstärkeregler sichtbar */
.audioPlayer-volume-wrapper.open #audioPlayer-volumeControl {
  opacity: 1;
  pointer-events: all;
}

#audioPlayer-nowPlaying {
  flex-grow: 1;
  text-align: center;
  font-weight: bold;
  background-color: #FFF;
  padding: 10px;
  height: 60px;
  position: relative;
}

#audioPlayer-nowPlaying small {
  display: block;
  font-weight: normal;
  font-size: 0.9rem;
}

.audioPlayer-tracklist {
  max-height: 300px;
  overflow-y: auto;
  border-top: 1px solid #ccc;
}

.audioPlayer-track {
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background 0.3s;
  padding: 0.75rem 1rem;
}

.audioPlayer-track:hover {
  background: #f0f0f0;
}

.audioPlayer-track.active {
  background: #d0e6f7;
}

.audioPlayer-trackgrid {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 4px;
  align-items: center;
}

.audioPlayer-tracknumber {
  color: var(--svblue);
  font-weight: bold;
}

.audioPlayer-tracktitle {
  font-weight: bold;
}

.audioPlayer-artist {
  font-size: 0.9rem;
  color: #666;
}

.audioPlayer-duration {
  white-space: nowrap;
  font-size: 0.9rem;
  color: #666;
}

@media (max-width: 500px) {
  .audioPlayer-controls {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .audioPlayer-buttons {
    justify-content: center;
  }
}

/* Track (Leiste) Styling */
#audioPlayer-volumeControl::-webkit-slider-runnable-track {
  height: 6px;
  background: var(--svblue);
  border-radius: 3px;
}

#audioPlayer-volumeControl::-moz-range-track {
  height: 6px;
  background: var(--svblue);
  border-radius: 3px;
}

#audioPlayer-volumeControl::-ms-track {
  height: 6px;
  background: var(--svblue);
  border-radius: 3px;
}

/* Thumb (Knopf) Styling */
#audioPlayer-volumeControl::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--svblue);
  margin-top: -6px;
  /* für vertikale Ausrichtung */
  cursor: pointer;
  transition: background 0.3s, border 0.3s;
}

#audioPlayer-volumeControl::-moz-range-thumb {
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--svblue);
  cursor: pointer;
  transition: background 0.3s, border 0.3s;
}

#audioPlayer-volumeControl::-ms-thumb {
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--svblue);
  cursor: pointer;
  transition: background 0.3s, border 0.3s;
}

.audioPlayer-progress-container {
  width: 100%;
  height: 3px;
  border-radius: 5px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.audioPlayer-progress-bar {
  height: 3px;
  background: var(--svblue);
  width: 0%;
  transition: width 0.2s linear;
}


/* --------------------------------------Autoren / Künstler-------------------------------------- */

.autor {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  border-bottom: 1px solid var(--svgray);
  padding: 20px 0;
}

.autoren img {
  width: 250px;
}

.autoren p span {
  font-family: "Roboto Slab";
  font-weight: normal;
  font-size: var(--font-size-large);
  display: block;
  margin-bottom: 20px;
}

.textcontainer {
  margin: 0 auto;
  padding: 0 20px;
}


/* -------------------------------------- Programm Kategorien-------------------------------------- */

.kategorie-bereich {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.produkt-kategorie-wrapper {
  width: 100%;
  margin-bottom: 40px;
  /* Abstand nach unten vor nächster Kategorie */
}

.produkt-kategorie {
  font-family: "Roboto Slab";
  font-weight: normal;
  font-size: var(--font-size-large);
  line-height: 2;
  text-align: center;
  margin: 0 0 40px 0;
  /* Abstand oben/unten */
  scroll-margin-top: 70px;
  display: block;
  width: 100%;
  border-bottom: 1px solid #000;
}

.produkt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 80px;
  /* Abstand zwischen den Grid-Items */
  margin: 40px 0;
}


@media only screen and (max-width: 1024px) {
  .produkt-grid {
    grid-template-columns: 1fr;
    ;
  }
}

.produkt-eintrag {
  display: flex;
  align-items: flex-start;
}

.produkt-cover {
  flex: 0 0 200px;
  margin-right: 30px;
}

.produkt-cover img {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 640px) {
  .produkt-eintrag {
    display: block;
  }

  .produkt-cover img {
    max-width: 300px;
    margin: 0 auto;
    display: block;
  }

}

.produkt-eintrag h3 {
  font-family: "Roboto Slab";
  font-size: var(--font-size-large);
  font-weight: normal;
  margin: 0 0 5px 0;
}

.produkt-eintrag p {
  margin-top: 0;
}

/* --------------------------------------Cookie Banner-------------------------------------- */

#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #ccc;
  text-align: center;
  z-index: 9999;
}

#cc-modal,
#cc-overlay {
  display: none;
}

#cc-modal.active,
#cc-overlay.active {
  display: block;
}

#cc-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border: 1px solid #ccc;
  padding: 20px;
  z-index: 10240;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}

#cc-modal h2,
.cc-inner h2 {
  font-family: "Roboto Slab", serif;
  font-weight: normal;
  font-size: var(--font-size-large);
  margin-top: 0;
  text-align: center;
}

.cc-inner {
  padding: 20px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: justify;
}

.cc-buttons {
  text-align: center;
}

.cc-inner .btn {
  min-width: 200px;
  margin: 0 10px 10px 0;
}

@media screen and (max-width: 768px) {
  .cc-inner p {
    font-size: var(--font-size-s);
    max-height: 200px;
    overflow-y: auto;
  }

  .cc-inner .btn {
    width: 100%;
    margin: 0 0 10px 0;
    display: block;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .cc-inner .btn {
    width: 200px;
    margin: 0 0 20px 0;
    display: inline-block;
  }
}

.cc-legal {
  width: 100%;
  text-align: center;
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid var(--svgray);
}

.cc-legal a:is(:link, :visited, :active) {
  font-size: var(--font-size-s);
  text-decoration: none;
  margin: 0 10px;
  color: var(--svblack);
  transition: all .3s ease-in-out;
}

.cc-legal a:is(:focus, :hover) {
  color: var(--svblue);
}

.cc-inner:focus {
  outline: none;
  border-radius: 8px;
}

.cc-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 10px auto;
  max-width: 300px;
  gap: 10px;
}

.cc-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
}

.cc-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cc-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}

.cc-slider::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.cc-switch input:checked+.cc-slider {
  background-color: var(--svblue);
}

.cc-switch input:checked+.cc-slider::before {
  transform: translateX(22px);
}

.cc-switch input:disabled+.cc-slider {
  background-color: #999;
  cursor: not-allowed;
}

.cc-switch input:disabled+.cc-slider::before {
  background-color: #ddd;
}

.cc-switch-text {
  font-size: 16px;
  color: #333;
  text-align: left;
}

.cc-switch input:focus+.cc-slider {
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.6);
}


/* --------------------------------------Autoren und Künstler-------------------------------------- */

.artist-section {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 75px 10px 0 10px;
}

.artist-section::after {
  content: "Irrttümer und Änderungen vorbehalten.";
  display: block;
  text-align: center;
  font-size: var(--font-size-s);
  margin-top: 20px;
}

.artist-section h1 {
  font-family: "Roboto Slab";
  font-size: var(--font-size-xl);
  font-weight: normal;
  text-align: center;
}

.artist-section h1 span {
  display: block;
  font-size: var(--font-size-large);
  font-weight: normal;
}


.artist-category-header,
.artist-cover-header {
  font-family: "Roboto Slab";
  font-weight: normal;
  font-size: var(--font-size-large);
  line-height: 2;
  text-align: center;
  margin: 0 0 40px 0;
  scroll-margin-top: 70px;
  display: block;
  width: 100%;
  border-bottom: 1px solid #000;
}

.artist-grid {
  width: 100%;
  margin: 0 auto 60px auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: space-between;
  gap: 40px;
}

@media only screen and (max-width: 768px) {
  .artist-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media only screen and (max-width: 640px) {
  .artist-grid {
    grid-template-columns: 1fr 1fr;
    justify-content: center;
  }
}

@media only screen and (max-width: 550px) {
  .artist-grid {
    grid-template-columns: 1fr;
  }
}


.artist-image-wrapper {
  display: flex;
  justify-content: center;
}

.artist-teaser a {
  text-decoration: none;
}

.artist-name {
  display: block;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
}


.artist {
  width: 100%;
  max-width: 250px;
  text-decoration: none;
  transition: all .3s ease-in-out;
}

.artist:hover {
  transform: scale(1.05);
}

.artist img {
  width: 100%;
  margin-bottom: 10px;
}

.artist p {
  font-family: "Roboto Slab";
  display: block;
  text-align: center;
  font-size: var(--font-size-base);
  font-weight: normal;
  margin: 0;
}

.artistCV {
  display: grid;
  grid-template-columns: auto auto;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.artistCV img {
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
}

.artistCV p:first-child {
  margin-top: 0;
}

@media only screen and (max-width: 640px) {
  .artistCV {
    grid-template-columns: auto;
  }
}


.artist-cover-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.artist-works-category {
  display: block;
  text-align: center;
}


/* -------------------------------------- Formulare-------------------------------------- */

.formInfo {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.form {
  width: 100%;
  max-width: 900px;
  padding: 30px;
  margin: 0 auto;
  background-color: var(--svgray);
}

.nlFormInfo {
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px
}

.nlformBottomInfo p {
  text-align: justify !important;
  hyphens: auto;
}

.nlForm {
  max-width: 600px
}

.formCenter {
  display: block;
  width: 100%;
  text-align: center;
}

.form h2 {
  color: var(--svblack);
  font-size: var(--font-size-large);
  display: block;
  text-align: center;
  margin: 0 0 30px 0;
}

.formGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0 15px;
  width: 100%;
}

@media only screen and (max-width: 550px) {

  .form {
    padding: 20px;
  }

  .formGrid {
    display: block;
  }

}

fieldset {
  border: none;
  padding: 0;
}

legend {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
}

input,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  padding: 20px 16px;
  font-size: 1em;
  margin-bottom: 15px;
  border-radius: 10px;
  vertical-align: top;
  transition: all 0.3s ease;
  border: 2px solid #FFF
}

select {
  width: 100%;
  position: relative;
  background-image: url("../images/icons/icon_select.svg");
  background-size: 16px 16px;
  background-position: right 10px center;
  background-repeat: no-repeat;

}

input:focus,
select:focus,
textarea:focus {
  background-color: #f7f7f7;
}

textarea {
  font-family: "Roboto";
  width: 100%;
  min-height: 100px;
  min-width: 100%;
  max-width: 100%;
}

.option-info {
  display: none;
  padding: 0 10px 20px 10px;
}

.confirmGrid {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  align-items: center;
  margin: 0 0 20px 0;
}

.confirmGrid label {
  margin-top: -6px;
}

.confirmCheck {
  padding: 12px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  transition: none;
  margin-top: 0px;
}

.confirmCheck:checked {
  background-image: url("../images/icons/icon_tick.svg");
  background-size: 80% auto;
  background-repeat: no-repeat;
  background-position: center center;
}

label {
  font-family: "Roboto";
  font-weight: 100;
  width: 100%;
  display: block;
  padding: 0 0 5px 0;
  margin-left: 5px;
}

label[for="confirmCheck"] {
  font-size: var(--font-size-s);
  margin-top: 13px;
  color: var(--svblack);
}

label a {
  color: var(--svblack);
}

.special {
  display: none;
}

.formError {
  border: 2px solid red;
}

.formCorrect {
  background-color: #fff;
}



.columnText p {
  column-count: 2;
  /* Anzahl der Spalten */
  column-gap: 2em;
  /* Abstand zwischen den Spalten (optional) */
}

.textBlock {
  width: calc(100% - 40px);
  display: grid;
  grid-template-columns: 30% 70%;
  align-items: flex-start;
  gap: 40px;
}

@media only screen and (max-width: 768px) {
  .textBlock {
    display: block;
    width: 100%;
  }
}

.textBlock p {
  margin: 0 0 20px 0;
}

.textBlock p:last-child {
  margin: 0;
}

.statusInfo {
  width: 100%;
  max-width: 900px;
  margin: 30px auto 0 auto;
  text-align: center;
}

.imprint h2,
.imprint h3 {
  font-size: var(--font-size-base);
  margin-bottom: 5px;
}

.imprint address {
  font-size: var(--font-size-base);
  font-weight: 100;
  font-style: normal;
  line-height: 145%;
}

.imprint p {
  margin: 0 0 25px 0;
}

.imprint ul li {
  list-style: none;
  margin: 0;
}

/* -----------------------------  Admin ----------------------------- */

.admin {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.admin h1 {
  font-family: "Roboto Slab";
  font-size: var(--font-size-large);
  font-weight: normal;
}

.admin-login {
  width: 100%;
  max-width: 400px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.admin input {
  border: 2px solid #000;
}

.admin-logout {
  float: right;
}

#admin-loading {
  display: block;
  text-align: center;
  margin-top: 20px;
}

/* -----------------------------  Intro SEO Text ----------------------------- */

.introSub {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto auto;
  gap: 70px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.introSub img {
  width: 100%;
  max-width: 400px;
}

.introSub div {
  width: auto;
}

@media only screen and (max-width: 1024px) {
  .introSub {
    grid-template-columns: auto;
    gap: 0;
  }

  .introSub img {
    margin: 0 auto;
  }

}

/* -----------------------------  Für Autoren ----------------------------- */

.fuer-autoren-hdl {
  font-family: "Roboto Slab";
  font-weight: normal;
  font-size: 1.8rem;
  line-height: 2;
  text-align: center;
  margin: 0 0 40px 0;
  /* Abstand oben/unten */
  scroll-margin-top: 70px;
  display: block;
  width: 100%;
  border-bottom: 1px solid #000;
}

.fuer-autoren-info {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 40px auto;
  text-align: center;
}

@media only screen and (max-width: 550px) {
  .fuer-autoren-hdl {
    text-align: left;
  }

  .fuer-autoren-info {
    text-align: left;
  }
}

/* -----------------------------  Newsletter ----------------------------- */

.nlTextbox {
  display: block;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.nlBtn {
  position: relative;
  width: 22px;
  height: 22px;
  margin: -4px 5px 0 5px;
  background-image: url("../images/icons/icon_newsletter.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
}

.nlBtn:hover {
  opacity: .5
}

.nlBtn p {
  position: absolute;
  font-size: .7rem;
  margin-top: 20px;
}

.newsletterBtn {
  font-family: "Roboto Slab";
  width: 100%;
  max-width: 350px;
  padding: 10px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--svblue);
  border: 2px solid var(--svblue);
  border-radius: 40px;
  margin-bottom: 40px;
  transition: all .3s ease;
}

.newsletterBtn:hover {
  background-color: var(--svblue);
  color: #FFF;
}

.newsletterBtn img {
  width: 35px;
  border: none;
  background-color: none;
}

.newsletterBtn:hover img {
  filter: brightness(500%);
}

.nlBtnCenter {
  display: block;
  text-align: center;
  width: 100%;
  padding: 0 10px 0 10px;
}

/* --------------------------------------Magazin-------------------------------------- */

.magazinContainer {
  width: 100%;
  max-width: 900px;
  margin: 40px auto 0 auto;

}

.magazin article {
  width: 100%;
  background-color: #f1ecd9;
  padding: 5px 30px 20px 30px;
  margin-bottom: 10px;
  position: relative;
}

.magazin article:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background-image: url(../images/bookshape.svg);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
  width: 100px;
  height: 7px;
}

@media only screen and (max-width: 550px) {
  .magazin article {
    padding: 5px 10px 20px 10px;
  }
}

.magazin article p small {
  border-bottom: 1px solid #FFF;
  display: block;
  padding-bottom: 5px;
}

.magazin a {
  color: var(--svblack);
  text-decoration: none;
}

.magazin hr {
  background-color: var(--svblack);
  height: 1px;
  border: none;
  margin: 20px 0 20px 0;
}

.magazin hr:last-child {
  display: none;
}

.artikelSeite {
  width: 100%;
  max-width: 800px;
  margin: 40px auto 0 auto;
}


.artikelContent {
  width: 100%;
  background-color: #f1ecd9;
  padding: 15px 30px 20px 30px;
  margin-bottom: 40px;
  position: relative;
}

.artikelContent:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background-image: url(../images/bookshape.svg);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
  width: 100px;
  height: 7px;
}

@media only screen and (max-width: 550px) {
  .artikelContent {
    padding: 15px 10px 20px 10px;
  }
}


.artikelContent h2 {
  font-weight: bold;
  font-size: var(--font-size-base);
  margin: 0 0 20px 0;
}


.artikelContent p {
  margin: 0 !important;
}


.artikelContent ul,
.artikelContent ol {
  margin: 0;
  padding: 0 0 0 20px;
}

.artikelContent ul li,
.artikelContent ol li {
  list-style-type: disc;
  list-style-position: outside;
  font-size: var(--font-size-base);
  line-height: 145%;
  /* angenehmer Zeilenabstand für Umbrüche */
  margin-bottom: 0px;
  /* Abstand zwischen Listeneinträgen */
  color: var(--svblack);
  font-weight: lighter;
}

/* --------------------------------------FAQ-------------------------------------- */

.faq-wrap {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1rem;
}

.faq-section {
  margin: 2rem 0;
}

.faq-section h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.faq-accordion {
  border-bottom: 1px solid #ddd;
  background: #fff;
  overflow: hidden;
}

.faq-accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-size: var(--font-size-base);
  font-weight: 500;
  position: relative;
  transition: all .3s ease;
}

.faq-accordion summary:hover {
  color: var(--svblue);
}

.faq-accordion summary::-webkit-details-marker {
  display: none;
}

.faq-accordion summary::after {
  content: "▼";
  position: absolute;
  right: 0;
  transition: transform .2s ease;
  font-size: .8rem;
}

.faq-accordion[open] summary::after {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 20px 0
}

.faq-answer p {
  margin: .5rem 0;
}

.faqSection::after {
  content: "Irrttümer und Änderungen vorbehalten.";
  display: block;
  text-align: center;
  font-size: var(--font-size-s);
  margin-top: 20px;
}

.faqInfo {
  display: inline-block;
  text-align: center;
  padding: 20px;
  border: 1px solid #000;
}

.category-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}


.category-list .btn {
  width: 100%;
  padding: 40px;
  background-color: var(--svblue);
  color: #FFF;
  border-radius: 6px;
  transition: all .3s ease-in-out;
}

.category-list .btn:hover {
  background-color: var(--svlightblue);
}


@media only screen and (max-width: 1024px) {
  .category-list {
    grid-template-columns: 1fr 1fr 1fr;

  }
}

@media only screen and (max-width: 768px) {
  .category-list {
    grid-template-columns: 1fr 1fr;

  }
}

@media only screen and (max-width: 500px) {
  .category-list {
    grid-template-columns: 1fr;
  }

  .category-list .btn {
    padding: 20px;
  }


}

.small {
  font-size: .8rem;
}

.extra-info {
  font-size: 0.8rem;
}

.char-counter {
  text-align: right;
  margin-top: -10px;
  font-size: 0.8em;
  color: #666;
}

/* --- Styling für die Ergebnisse in #search-results --- */

/* Der einzelne Treffer-Link */
.search-result-item {
  display: flex;
  align-items: flex-start;
  /* Bilder/Text oben ausrichten */
  padding: 8px 10px;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #eee;
  /* Trennlinie zwischen den Einträgen */
  width: 100%;
  box-sizing: border-box;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover,
.search-result-item:focus {
  background-color: #f5f5f5;
  /* Leichter Hover-Effekt */
  outline: none;
}

/* Bild im Suchergebnis */
.search-result-image {
  width: 40px;
  /* Feste Breite für das Cover */
  min-width: 40px;
  height: auto;
  margin-right: 10px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Container für Titel und Untertitel */
.search-result-item>div {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex: 1;
  /* Nimmt den restlichen Platz ein */
}

/* Haupttitel (z.B. Guitar Rider) */
.search-result-title {
  font-weight: bold;
  font-size: 0.95rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Untertitel (z.B. Surf Rock von Thatcher Nash and his Funky Fellows) */
.search-result-subtitle {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Hervorhebung der Suchübereinstimmung (das 'der' in der Jagd der Henker) */
.search-result-title b,
.search-result-subtitle b {
  font-weight: bold;
  color: #000;
  /* Schwarz, damit es hervorsticht */
  /* Optional: Hintergrund, um es wie im Beispielbild hervorzuheben */
  /* background-color: #ffda79; 
    padding: 1px 0; */
}

/* Keine Ergebnisse gefunden Nachricht */
#search-results p {
  padding: 10px;
  margin: 0;
  text-align: center;
  color: #666;
}