@charset "UTF-8";
/* styling */
/* 	

	CSS-Variablen & Mixin
*/
/* Farben */
/* Based on bootstrap-grid and mobile first */
/* typo */
h1, h2, h3, h4, h5, h6, p {
  padding: 0;
  margin: 0;
}

/* Fonts */
@font-face {
  font-display: swap;
  font-family: "Area-Normal";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/area/AreaNormal-Regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Area-Extrabold";
  font-style: normal;
  font-weight: 800;
  src: url("fonts/area/AreaNormal-Extrabold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Area-Extrablack";
  font-style: normal;
  font-weight: 800;
  src: url("fonts/area/AreaNormal-Extrablack.woff2") format("woff2");
}
/* Media Queries */
/* styling */
/* 	
	Basic-Style
*/
/* html is set to 62.5% so that all REM measurements are based on 10px sizing - so 1.5 rem = 15px; */
html {
  font-size: 16px;
}

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  font-family: "Area-Normal", sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-color: #161616;
  color: #FFFFFF;
  padding: 16px;
}

a {
  text-decoration: none;
  color: #ef2d56;
}

a:hover {
  text-decoration: underline;
  color: #ef2d56;
}

strong {
  font-family: "Area-Extrabold";
}

.img-fluid {
  width: auto;
  max-width: 100%;
  height: auto;
}

.wq-img-rounded {
  border-radius: 24px;
}

.grid_1_1_1 {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  justify-content: center;
}
@media (min-width: 960px) {
  .grid_1_1_1 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.grid_1_1 {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

.wq-wrapper {
  max-width: 2680px;
  margin: 0 auto;
}

.wq-intro {
  width: 90vw;
  height: 90vh;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 960px) {
  .wq-intro {
    width: 100%;
  }
}

.wq-intro-landing {
  width: 90vw;
  height: 90vh;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 960px) {
  .wq-intro-landing {
    width: 100%;
    height: 70vh;
  }
}

.wq-intro-txt {
  z-index: 2;
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.wq-listen {
  z-index: 3;
  position: absolute;
  top: 24px;
  right: 16px;
}

.wq-audio-info {
  font-family: "Area-Extrablack" !important;
  font-size: 1rem !important;
  line-height: 1.5em;
  color: #a8a8a8;
  margin-top: 48px;
}

.wq-audio-info span {
  font-family: "Area-Extrabold" !important;
  font-size: 0.9rem !important;
  color: #a8a8a8;
}

.wq-headline {
  max-width: 960px;
  margin: 0 auto;
}

.wq-headline h1 {
  font-family: "Area-Extrablack";
  font-size: 2.2rem;
  line-height: 2.8rem;
  padding: 0;
  margin: 0 24px;
}
@media (min-width: 960px) {
  .wq-headline h1 {
    font-family: "Area-Normal";
    font-size: 3.375rem;
    line-height: 4rem;
    padding: 0;
  }
}

.wq-subline {
  font-family: "Area-Extrablack" !important;
  font-size: 1rem !important;
  line-height: 1.525em !important;
  padding: 8px 0 0 0;
  margin: 0 auto;
}
@media (min-width: 960px) {
  .wq-subline {
    font-family: "Area-Extrablack";
    font-size: 1.825rem;
    line-height: 1.825rem;
    padding: 16px 0 0 0;
  }
}

.wq-headline p {
  font-size: 1.25rem;
  line-height: 1.825rem;
  margin: 0 auto;
}

.wq-intro-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wq-intro-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.wq-intro-slide.active {
  opacity: 1;
}

.wq-content {
  max-width: 1216px;
  margin: 0 auto;
  padding: 24px 0;
}

.wq-content article {
  padding: 64px 0 0 0;
}
@media (min-width: 960px) {
  .wq-content article {
    padding: 64px 0;
  }
}

.wq-more-link {
  padding: 24px 0 32px 0 !important;
  text-align: center;
}
@media (min-width: 960px) {
  .wq-more-link {
    padding: 0 0 64px 0 !important;
  }
}

.wq-more-link a {
  font-family: "Area-Extrablack";
}

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

.pb-8 {
  padding-bottom: 8px !important;
}

.pb-16 {
  padding-bottom: 16px !important;
}

.pb-24 {
  padding-bottom: 24px !important;
}

.wq-grey {
  color: #a8a8a8;
}

.wq-img-fluid {
  width: auto;
  height: auto;
  max-width: 100%;
}

.wq-lead {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding-top: 24px !important;
}
@media (min-width: 960px) {
  .wq-lead {
    padding-top: 64px !important;
  }
}

.wq-lead h1 {
  font-family: "Area-Extrablack";
  font-size: 2.65rem;
  line-height: 3.125rem;
  padding-bottom: 16px;
}
@media (min-width: 960px) {
  .wq-lead h1 {
    font-size: 3.375rem;
    line-height: 4rem;
  }
}

.wq-lead p strong {
  font-family: "Area-Extrabold";
  font-size: 1.25rem;
  line-height: 2rem;
}
@media (min-width: 960px) {
  .wq-lead p strong {
    font-family: "Area-Extrablack";
    font-size: 1.25rem;
    line-height: 1.825rem;
  }
}

.wq-lead p {
  font-family: "Area-Normal";
  font-size: 1.25rem;
  line-height: 1.825rem;
}

.wq-subline {
  text-align: center;
  max-width: 280px;
  margin: 0 auto;
  font-family: "Area-Extrablack";
}
@media (min-width: 960px) {
  .wq-subline {
    max-width: 720px;
  }
}

.wq-ueberschrift {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.wq-ueberschrift h2 {
  font-family: "Area-Extrablack";
  font-size: 2rem;
  line-height: 2.8rem;
  padding-bottom: 16px;
}
@media (min-width: 960px) {
  .wq-ueberschrift h2 {
    font-size: 2.65rem;
    line-height: 3.125rem;
  }
}

.wq-ueberschrift p {
  text-align: center;
  max-width: 90%;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.525em;
}
@media (min-width: 960px) {
  .wq-ueberschrift p {
    max-width: 720px;
  }
}

.wq-txt {
  text-align: left;
  max-width: 720px;
  margin: 0 auto;
}

.wq-txt p {
  font-size: 1rem;
  line-height: 1.525em;
}

.wq-txt-center {
  text-align: center !important;
}

.wq-img-wrap {
  max-width: 90vw;
  margin: 0 auto;
  padding-top: 0 !important;
}
@media (min-width: 960px) {
  .wq-img-wrap {
    max-width: 1280px;
  }
}

.wq-img-legende {
  padding-top: 16px;
  font-size: 1rem;
  text-align: center;
  color: #B4C1B5;
}

.wq-img-legende a {
  color: #B4C1B5 !important;
  border-bottom: 1px solid #B4C1B5;
}

.wq-img-legende a:hover {
  color: #ef2d56 !important;
  border-bottom: 1px solid #ef2d56;
  text-decoration: none;
}

.wq-1-slider {
  position: relative;
  aspect-ratio: 16/9;
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 0 !important;
}

.wq-1-1 {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 960px) {
  .wq-1-1 {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

.wq-teaser-large {
  text-align: center;
}

.wq-1-1-1 {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 960px) {
  .wq-1-1-1 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.wq-1-1-1-1 {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 960px) {
  .wq-1-1-1-1 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.wq-2-1 {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 960px) {
  .wq-2-1 {
    grid-template-columns: 2fr 1fr;
  }
}

.wq-1-1 h2,
.wq-1-1-1 h2,
.wq-1-1-1-1 h2,
.wq-2-1 h2 {
  font-family: "Area-Extrablack";
  font-size: 1.25rem;
  line-height: 1.825rem;
  padding-bottom: 8px;
}

.wq-1-1 p,
.wq-1-1-1 p,
.wq-1-1-1-1 p,
.wq-2-1 p {
  font-size: 1rem;
  line-height: 1.525em;
  margin-right: 16px;
}
@media (min-width: 960px) {
  .wq-1-1 p,
  .wq-1-1-1 p,
  .wq-1-1-1-1 p,
  .wq-2-1 p {
    margin-right: 0;
  }
}

.wq-img-icon {
  max-width: 120px;
  margin-bottom: 16px;
}

.wq-faq {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 960px) {
  .wq-faq {
    grid-template-columns: 1fr 2fr;
  }
}

.wq-faq h3 {
  padding-bottom: 8px;
  padding-top: 16px;
}

.wq-faq-item {
  border-bottom: 1px solid #8d8d8d;
}

.wq-faq-title {
  font-family: "Area-Extrablack";
  font-size: 1rem;
  line-height: 1.525em;
  padding: 16px 32px 16px 0px;
}

.wq-faq-title:hover {
  cursor: pointer;
}

.open {
  background: url("/assets/img/ico_minus.svg") no-repeat right center;
  background-size: 24px;
  color: #ef2d56;
}

.closed {
  background: url("/assets/img/ico_plus.svg") no-repeat right center;
  background-size: 24px;
}

.wq-faq-txt {
  font-size: 1rem;
  line-height: 1.525em;
  padding-bottom: 16px;
  transition: height 2s ease;
  overflow: hidden;
  padding-right: 32px;
}

.wq-faq-txt a {
  color: #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
}

.wq-faq-txt a:hover {
  color: #FFFFFF;
  text-decoration: none;
  border-bottom: 1px solid #ef2d56;
}

.collapse-content {
  transition: height 0.4s ease; /* Hier kannst du z. B. 0.4s => 0.8s oder so setzen */
  overflow: hidden;
}

.wq-teaser {
  background-color: #1e241e;
  border-radius: 24px;
  min-height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 1216px;
  margin: 64px auto 0 auto;
  padding: 36px 0;
}
@media (min-width: 960px) {
  .wq-teaser {
    margin: 0 auto;
    margin-bottom: 64px;
  }
}

.wq-teaser-sec {
  background-color: transparent;
  border-radius: 24px;
  min-height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 1216px;
  margin: 64px auto 0 auto;
  padding: 36px 0 0 0;
}
@media (min-width: 960px) {
  .wq-teaser-sec {
    margin: 0 auto;
    margin-bottom: 24px;
  }
}

.wq-teaser-steps {
  background-color: #161616 !important;
}

.wq-teaser p,
.wq-teaser-sec p {
  font-family: "Area-Extrablack";
  font-size: 1.25rem;
  line-height: 1.825rem;
  padding: 16px 16px 0 16px;
  color: #ef2d56;
}

p.wq-teaser-lead {
  font-family: "Area-Normal";
  font-size: 1rem;
  line-height: 1.525em;
  color: #FFFFFF;
  padding-bottom: 24px;
  max-width: 640px;
  margin: 0 auto;
}

.wq-teaser-sale {
  padding: 32px 0 48px 0;
  justify-content: center;
  gap: 32px;
}

.wq-teaser-sale div {
  background-color: #161616;
  border-radius: 24px;
  max-width: 320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column; /* Elemente untereinander anordnen */
  align-items: center; /* Horizontal zentrieren */
  justify-content: start; /* Vertikal zentrieren */
  text-align: center; /* Text innerhalb der Elemente zentrieren */
  padding: 16px;
  box-shadow: 0px 0px 16px rgba(239, 45, 86, 0.7), 0px 0px 24px rgba(239, 45, 86, 0.7), 0px 0px 56px rgba(239, 45, 86, 0.7);
  margin-bottom: 24px;
}
@media (min-width: 960px) {
  .wq-teaser-sale div {
    aspect-ratio: 1/1;
    margin: 32px;
  }
}

.wq-teaser-sale span {
  font-size: 72px;
  text-align: center;
  color: #ef2d56;
}
@media (min-width: 960px) {
  .wq-teaser-sale span {
    margin-top: 48px;
  }
}

.wq-teaser-sale p {
  font-family: "Area-Normal";
  text-align: center;
  font-size: 1rem;
  line-height: 1.525em;
  color: #FFFFFF;
}

.wq-blog-teaser {
  background-color: #3d3d3d;
  border-radius: 24px;
  min-height: 320px;
  display: flex;
  justify-content: center;
  align-items: top;
  text-align: left;
  padding: 24px;
}

.wq-blog-teaser:hover {
  background-color: #ef2d56;
  color: #161616;
  cursor: pointer;
}

.wq-blog-teaser p {
  font-family: "Area-Normal";
  font-size: 2rem;
  line-height: 1.4em;
  color: #B4C1B5;
  padding: 16px;
}

.wq-blog-teaser:hover p {
  color: #FFFFFF;
}

.wq-landing-teaser {
  background-color: #3d3d3d;
  border-radius: 24px;
  min-height: 320px;
  display: flex;
  justify-content: center;
  align-items: top;
  text-align: left;
  padding: 24px;
}

.wq-landing-teaser:hover {
  background-color: #ef2d56;
  color: #161616;
  cursor: pointer;
}

.wq-landing-teaser p {
  font-family: "Area-Normal";
  font-size: 1.25rem;
  line-height: 1.825rem;
  color: #B4C1B5;
  padding: 16px 0;
}

.wq-landing-teaser u {
  border-bottom: 1px solid #B4C1B5;
  text-decoration: none;
}

.wq-landing-teaser:hover p {
  color: #FFFFFF;
}

.wq-button-wrap {
  text-align: center;
}

.wq-button {
  color: #FFFFFF;
  background-color: #ef2d56;
  font-family: "Area-Extrablack";
  font-size: 1.25rem;
  line-height: 1.25rem;
  max-width: 320px;
  min-width: 240px;
  margin: 0 auto;
  padding: 16px 48px;
  text-align: center;
  border: none;
  border-radius: 16px;
}

.wq-button:hover {
  color: #ef2d56;
  background-color: #FFFFFF;
  cursor: pointer;
}

.wq-button-sale {
  color: #ef2d56;
  background-color: #FFFFFF;
  font-family: "Area-Extrablack";
  font-size: 1rem;
  line-height: 1rem;
  max-width: 320px;
  min-width: 240px;
  margin: 0 auto;
  padding: 16px 48px;
  text-align: center;
  border: none;
  border-radius: 16px;
}

.wq-button-sale:hover {
  color: #FFFFFF;
  background-color: #ef2d56;
  cursor: pointer;
}

.wq-three-steps {
  color: #FFFFFF !important;
}

.wq-button-send {
  color: #FFFFFF;
  background-color: #ef2d56;
  font-family: "Area-Extrablack";
  font-size: 1rem;
  line-height: 1rem;
  margin: 0 auto;
  padding: 16px 48px;
  text-align: center;
  border: none;
  border-radius: 16px;
}

.wq-button-send:hover,
a.wq-button-send:hover {
  color: #161616;
  background-color: #FFFFFF;
  cursor: pointer;
  text-decoration: none;
}

.wq-button-secondary {
  color: #161616;
  background-color: #f4f4f4;
  font-family: "Area-Extrabold";
  font-size: 1rem;
  line-height: 1rem;
  margin: 0 auto;
  padding: 16px 48px;
  text-align: center;
  border: none;
  border-radius: 16px;
}

.wq-button-secondary:hover {
  color: #FFFFFF;
  background-color: #ef2d56;
  cursor: pointer;
}

.wq-offer {
  text-align: center;
  padding: 32px 0;
}
@media (min-width: 960px) {
  .wq-offer {
    padding: 0;
  }
}

.wq-features {
  background-color: #353535;
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: top;
  text-align: center;
  padding: 24px;
}

.wq-features h3 {
  font-family: "Area-Extrablack";
  padding-bottom: 0.6rem;
}

.wq-features h4 {
  font-family: "Area-Extrablack";
  padding-bottom: 0.6rem;
  color: #B4C1B5;
  padding-top: 16px;
}

.wq-red {
  color: #ef2d56;
}

.wq-gradient {
  color: #ef2d56;
  background: linear-gradient(to top, #ef2d56 0%, #ef2d56 34%, #ef2d56 60%, #ef2d56 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.wq-services {
  background-color: #353535;
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: top;
  text-align: center;
  padding: 24px;
}

.wq-services h3 {
  color: #FFFFFF;
  font-family: "Area-Extrablack";
  padding-bottom: 16px;
}

.wq-prize {
  font-size: 0.75rem;
}

.wq-prize span {
  font-size: 7.25rem;
}
@media (min-width: 960px) {
  .wq-prize span {
    font-size: 11rem;
  }
}

.wq-prod-teaser h3 {
  color: #FFFFFF;
  font-family: "Area-Extrablack";
  padding-bottom: 16px;
  font-size: 2rem;
  line-height: 2.8rem;
  padding-top: 24px;
}
@media (min-width: 960px) {
  .wq-prod-teaser h3 {
    font-size: 2.65rem;
    line-height: 3.125rem;
  }
}

.wq-prod-teaser p {
  font-size: 1.25rem;
  line-height: 2rem;
}

/* Overlay-Hintergrund */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 999;
}

/* Modal-Fenster */
.modal-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  max-width: 90%;
  width: 70vw;
  color: #161616;
  text-align: left;
  max-height: 90vh; /* Maximalhöhe für die Modal-Box */
  overflow: hidden;
}
@media (min-width: 960px) {
  .modal-box {
    max-width: 90%;
    width: 400px;
  }
}

.modal-content {
  overflow-y: auto; /* Vertikales Scrollen aktivieren */
  max-height: 70vh;
  padding-right: 15px;
}

.modal-box h2 {
  font-family: "Area-Extrabold";
}

.modal-box p {
  font-size: 1rem;
  line-height: 1.525em;
  font-family: "Area-Normal";
  padding: 0;
  color: #161616;
}

.wq-close {
  font-size: 0.75rem;
  border-bottom: 1px solid #161616;
}

.wq-close:hover {
  cursor: pointer;
  color: #ef2d56;
  border-bottom: 1px solid #ef2d56;
}

/* Modal-Aktionen */
.modal-actions {
  margin-top: 1.5rem;
}
@media (min-width: 960px) {
  .modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
  }
}

/* Buttons im Modal */
.modal-actions button {
  cursor: pointer;
  font-size: 0.8em;
  padding: 8px 24px;
  border-radius: 8px;
}
@media (min-width: 960px) {
  .modal-actions button {
    font-size: 1rem;
    padding: 16px 48px;
    border-radius: 16px;
  }
}

.wq-kontakt-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding-top: 16px;
}

label {
  font-size: 0.75rem;
  font-family: "Area-Extrabold";
}

.wq-input {
  border: 1px solid #a8a8a8;
  border-radius: 4px;
  margin: 4px 0 0 0;
  font-size: 1rem;
  padding: 8px;
  width: 100%;
  box-sizing: border-box;
  font-family: "Area-Normal";
  font-size: 1rem;
}

.wq-textarea {
  border: 1px solid #a8a8a8;
  border-radius: 4px;
  margin: 4px 0 0 0;
  font-size: 1rem;
  padding: 8px;
  width: 100%;
  min-height: 64px;
  box-sizing: border-box;
  font-family: "Area-Normal";
  font-size: 1rem;
}

.wq-list-features {
  display: grid;
  gap: 0px;
  grid-template-columns: 1fr;
  max-width: 80%;
  margin: 0 auto;
  padding-top: 24px;
}
@media (min-width: 960px) {
  .wq-list-features {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 100%;
  }
}

.wq-list-features div {
  text-align: left;
}

.wq-list-features ul {
  list-style: none;
  padding: 0px 0 0 0;
  margin: 0;
}
@media (min-width: 960px) {
  .wq-list-features ul {
    padding: 32px 0 0 0;
  }
}

.wq-list-features ul li {
  background: url("/assets/img/ico_minus.svg") no-repeat left -2px;
  background-size: 24px;
  padding-left: 32px;
  padding-bottom: 16px;
}

.wq-center {
  text-align: center;
}

.wq-right {
  text-align: right !important;
}

.wq-prize-included {
  max-width: 480px;
  margin: 0 auto;
  padding: 0;
}

.wq-p-icl-wrap {
  display: grid;
  grid-template-columns: 1fr 80px;
  gap: 16px;
  border-bottom: 1px solid #8d8d8d;
  padding: 12px 0;
  align-items: center;
}

.wq-p-icl-wrap div {
  padding: 0;
}

.wq-p-icl-small {
  padding-top: 16px;
  font-size: 0.75rem;
}

.wq-check {
  width: 24px;
  height: 24px;
  fill: #ef2d56;
}

.wq-features-title {
  font-size: 800;
  color: #FFFFFF;
  text-align: left;
  padding: 16px 0 8px 0;
  font-family: "Area-Extrablack";
  font-size: 0.8em;
}

.wq-features-all {
  padding-bottom: 32px;
}
@media (min-width: 960px) {
  .wq-features-all {
    padding-bottom: 0px;
  }
}

.wq-features-all-btn {
  padding-top: 25px;
  padding-bottom: 24px;
  color: #ef2d56;
  font-weight: 800;
}
@media (min-width: 960px) {
  .wq-features-all-btn {
    padding-top: 25px;
  }
}

.wq-features-all-btn:hover {
  color: #FFFFFF;
}

.wq-f-all-wrap {
  display: grid;
  grid-template-columns: 1fr 32px;
  gap: 8px;
  border-bottom: 1px solid #8d8d8d;
  padding: 12px 0;
  align-items: start;
}

.wq-f-all-wrap div {
  padding: 0;
  font-size: 0.8em;
  text-align: left;
}

.wq-f-all-check {
  width: 22px;
  height: auto;
  fill: #ef2d56;
  text-align: right;
}

.wq-f-info-wrap {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 8px;
  padding: 12px 0;
  align-items: start;
  line-height: 1.525em;
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
}

.wq-f-info-check {
  width: 32px;
  height: auto;
  fill: #FFFFFF;
  text-align: right;
}

/* Audio */
/* Animation für das Pause-Icon */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.playing {
  animation: pulse 1s infinite;
}

.audio-button .playing {
  background: #ef2d56;
}

/* Button-Stil */
.audio-button {
  background: #353535;
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  margin: 16px auto;
}

.audio-button:hover {
  background: #ef2d56;
}

/* SVG-Icons im Button */
.audio-button svg {
  width: 24px;
  height: 24px;
  fill: white;
}

/* Slider */
.wq-slider {
  background: #161616;
  padding: 48px 0;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slides {
  display: flex;
  transition: transform 0.3s ease;
  width: 100%;
}

.slide {
  flex: 0 0 calc(100% - 48px);
  padding: 32px;
  box-sizing: border-box;
  background: #212121;
  margin: 0 24px;
  border-radius: 24px;
  text-align: left;
  min-height: 380px;
}

.slide h3 {
  font-family: "Area-Extrablack";
  line-height: 1.525em;
  padding-bottom: 0.6rem;
  margin: 0;
}

.slide p {
  line-height: 1.525em;
}

.slide-icon {
  padding-bottom: 16px;
}

.slider-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.slider-button {
  padding: 24px;
  background: #ef2d56;
  color: white;
  border: none;
  border-radius: 48px;
  cursor: pointer;
}

.slider-button:disabled {
  background: #8d8d8d;
  cursor: not-allowed;
}

.slider-pfeil path {
  fill: #FFFFFF; /* Deine gewünschte Farbe */
}

.slider-button:hover {
  background-color: #161616;
}

.slide-back svg {
  transform: rotate(180deg);
}

/* Desktop: 3 Slides nebeneinander */
@media (min-width: 768px) {
  .slider {
    padding-left: 124px;
    overflow: visible;
    position: relative;
  }
  .slides {
    width: calc(100% + 124px);
    display: flex;
    transition: transform 0.3s ease;
  }
  .slide {
    flex: 0 0 calc(25% - 24px);
    margin: 0 12px;
  }
}
.wq-statement {
  max-width: 960px;
  margin: 0 auto;
}

.wq-statement-wrap {
  display: grid;
  gap: 16px;
  grid-template-columns: 1;
}

.wq-statement p {
  font-family: "Area-Normal";
  font-size: 1.25rem;
  line-height: 1.825rem;
  padding-bottom: 16px;
  color: #f4f4f4;
  text-align: center;
}
@media (min-width: 960px) {
  .wq-statement p {
    font-size: 2.65rem;
    line-height: 3.125rem;
  }
}

.wq-statement-autor {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.wq-statement-autor p {
  font-size: 1.25rem;
  line-height: 1.825rem;
  font-family: "Area-Extrablack";
  text-align: center;
  color: #B4C1B5;
  padding: 0;
  margin: 0;
}

.wq-statement-autor p a {
  font-family: "Area-Normal";
  color: #B4C1B5;
}

.wq-statement-autor p a:hover {
  cursor: pointer;
}

.wq-statement-autor img {
  max-width: 160px;
  margin: 0 auto;
  padding-bottom: 16px;
}

.banner {
  background-color: #FFFFFF;
  width: 100%;
  height: 40px;
  margin: -16px 16px 16px -16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1216px) {
  .banner {
    height: 50px;
  }
}

.banner-txt {
  font-family: "Area-Extrablack";
  font-weight: 400;
  font-size: 0.8rem;
  padding: 12px 0;
  position: absolute;
  white-space: nowrap; /* Verhindert Zeilenumbrüche */
  animation: scrollText 35s linear infinite;
  color: #353535;
}
@media (min-width: 720px) {
  .banner-txt {
    padding: 16px 0;
    font-size: 0.9rem;
  }
}
@media (min-width: 1216px) {
  .banner-txt {
    padding: 16px 0;
    font-size: 1rem;
  }
}

.banner-txt span {
  padding: 0 220px;
}

@keyframes scrollText {
  0% {
    transform: translateX(0); /* Startet außerhalb des sichtbaren Bereichs rechts */
  }
  100% {
    transform: translateX(-50%); /* Endet außerhalb des sichtbaren Bereichs links */
  }
}
/* Tabelle fuer Vergleiche */
.wq-vergleich {
  padding-top: 24px !important;
}
@media (min-width: 720px) {
  .wq-vergleich {
    padding-top: 0 !important;
  }
}

.wq-vergleich p {
  padding-top: 0;
  font-size: 1rem;
  line-height: 1.525em;
  text-align: center;
  color: #f4f4f4;
}

.wq-vergleich a {
  color: #f4f4f4;
  border-bottom: 1px solid #f4f4f4;
}

.wq-vergleich a:hover {
  color: #ef2d56;
  border-bottom: 1px solid #ef2d56;
}

.wq-vergleich-table {
  font-size: 1rem;
  line-height: 1.525em;
  margin-right: 16px;
  margin-top: 24px;
  overflow-x: scroll;
}
@media (min-width: 1216px) {
  .wq-vergleich-table {
    margin-top: 0px;
    overflow: hidden;
  }
}

.wq-vergleich-quelle p {
  font-size: 0.75rem;
  line-height: 1rem;
  text-align: center;
  margin-top: 24px;
  color: #8d8d8d;
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead tr {
  background: #525252;
}

thead th {
  padding: 8px;
  text-align: left;
  font-family: "Area-Extrablack";
  font-weight: 400;
  font-size: 0.75rem;
  color: white;
  vertical-align: bottom;
}

.th-subtitle {
  font-weight: 400;
  font-family: "Area-Normal";
}

tbody tr {
  border-bottom: 1px solid #525252;
  transition: background 0.12s;
}

tbody tr:hover {
  background: #353535;
}

tbody tr.cat td {
  padding: 24px 0 8px 8px;
  font-family: "Area-Extrablack";
  font-weight: 400;
  font-size: 0.75rem;
}

td {
  padding: 8px;
  font-size: 0.75rem;
  line-height: 1.4;
  vertical-align: middle;
}

td:first-child {
  font-weight: 500;
}

td:not(:first-child) {
  text-align: left;
  font-size: 0.75rem;
}

.wq-v-icon-wrap {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  padding: 4px 0;
  align-items: center;
}

.wq-v-icon-wrap div {
  padding: 0;
}

/* styling */
header {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 16px;
  padding-top: 8px;
  max-width: 1216px;
  margin: 0 auto;
}

nav {
  text-align: right;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  padding: 0;
  display: inline-block;
}
@media (min-width: 720px) {
  nav ul li {
    padding: 0 0 0 16px;
  }
}

nav ul li a {
  font-weight: 800;
  color: #B4C1B5;
  font-family: "Area-Extrablack";
}

nav ul li a:hover {
  color: #ef2d56;
  text-decoration: none;
}

nav ul li a.active {
  border-bottom: 2px solid #ef2d56;
  padding-bottom: 4px;
  color: #FFFFFF;
}

.wq-demo {
  color: #ef2d56;
  font-family: "Area-Extrablack";
}

.wq-demo:hover {
  color: #FFFFFF;
  cursor: pointer;
}

nav ul .wq-logo-mobile {
  display: none; /* Standard: unsichtbar */
}

nav ul.mobile.on .wq-logo-mobile {
  display: block;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px; /* Größe anpassen */
  opacity: 1;
}

/* --- Burger Button --- */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 18px;
  cursor: pointer;
  margin-left: auto;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1001;
}

.burger span {
  display: block;
  height: 2px;
  background: #FFFFFF;
  border-radius: 0;
  transition: all 0.3s ease;
}

/* Animation für "X" */
.burger.on span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.on span:nth-child(2) {
  opacity: 0;
}

.burger.on span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* --- Mobile Overlay --- */
nav ul.mobile {
  position: fixed;
  z-index: 1000;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  font-size: 1.5rem;
}

nav ul.mobile.on {
  transform: translateY(0);
}

@media (max-width: 768px) {
  nav ul {
    display: none; /* normale Liste verstecken */
  }
  nav ul.mobile {
    display: flex;
  }
  .burger {
    display: flex;
  }
}
/* Submenu-Stil */
nav ul li.has-submenu {
  position: relative;
}

nav ul li .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #161616;
  min-width: 200px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 100;
  list-style: none;
  padding: 0;
  margin: 0;
}

nav ul li ul.submenu {
  margin-top: 8px;
}

nav ul li .submenu li {
  display: block;
  padding: 8px 16px;
  border-bottom: 1px solid #6f6f6f;
  text-align: left;
}

nav ul li .submenu li:last-child {
  border-bottom: none;
}

nav ul li .submenu li a {
  font-weight: 400;
  color: #B4C1B5;
  white-space: nowrap;
  font-family: "Area-Normal";
}

nav ul li .submenu li a:hover {
  color: #ef2d56;
}

nav ul li .submenu li a.active {
  color: #ef2d56;
}

nav ul li.has-submenu a:hover,
nav ul li.has-submenu a.active {
  border-bottom: 0;
}

nav ul li a.is-active {
  color: #FFFFFF;
}

/* Mobile-Ansicht */
@media (max-width: 767px) {
  nav ul li {
    display: block;
    padding: 0;
  }
  nav ul li.has-submenu {
    text-align: center;
    color: #FFFFFF;
  }
  nav ul li .submenu {
    position: static;
    box-shadow: none;
    display: block !important;
    background-color: transparent;
  }
  nav ul li .submenu li {
    padding-left: 0;
    text-align: center;
    border-bottom: none;
  }
  /* Alpine.js zeigt/hide das Submenu */
  nav ul li[x-data] .submenu[x-show] {
    display: block;
  }
}
/* styling */
footer {
  max-width: 960px;
  margin: 0 auto;
  padding-bottom: 64px;
  padding-top: 48px;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  list-style: none;
  display: inline-block;
  padding-right: 16px;
}

footer ul li a {
  color: #B4C1B5;
}

footer ul li a:hover {
  cursor: pointer;
  color: #FFFFFF;
  text-decoration: none;
}

.wq-footer-center {
  text-align: center;
}

.wq-made-in {
  padding-top: 36px;
  text-align: center;
}

.wq-made-in p {
  color: #B4C1B5;
  font-size: 0.75rem;
  line-height: 1.6em;
}

.wq-made-in a {
  color: #B4C1B5;
}

.wq-made-in a:hover {
  color: #FFFFFF;
  text-decoration: none;
}

.wq-legal {
  padding: 0 0 0 16px;
}

.wq-legal:hover {
  color: #ef2d56;
}

.wq-swissmade {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 0px;
  padding-top: 32px;
  margin: 0 auto;
}

.wq-swissmade .sms {
  text-align: right;
}

.sms img {
  width: 160px;
  margin-top: 8px;
}

.wq-swissmade .payrx {
  text-align: left;
}

.payrx img {
  width: 100px;
  margin-left: 48px;
}

/*# sourceMappingURL=wq.css.map */
