@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap");

:root {
  --color-m-blue: #1565c0;

  --color-primary-h: 212;
  --color-primary-s: 80%;
  --color-primary-l: 42%;
  --primary-color: hsl(
    var(--color-primary-h),
    var(--color-primary-s),
    var(--color-primary-l)
  );
  --primary-color-lighten: hsl(
    var(--hue),
    var(--saturation),
    calc(var(--light) + 10%)
  );
  --primary-color-darken: hsl(
    var(--hue),
    var(--saturation),
    calc(var(--light) - 10%)
  );

  --color-m-blue-light: rgba(21, 101, 192, 0.9);
  --color-m-blue-dark: rgba(21, 101, 192, 1.1);
}

@media screen and (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  margin: 0;
}

h2,
.headline-1 {
  font-size: 42px;
  margin: 0;
  font-weight: 800;
}
.headline-1 {
  color: var(--color-m-blue);
  margin-top: 15px;
  margin-bottom: 15px;
}
h1 {
  font-size: 48px;
  margin: 0;
  font-weight: 400;
}
.price {
  color: var(--color-m-blue);
  font-weight: bold;
}
p {
  font-size: 16px;
  line-height: 28px;
}
ul li {
  line-height: 28px;
}

.container {
  max-width: 1200px;
  padding: 0 15px;
  margin: auto;
  z-index: 5;
  position: relative;
}
.background--v1 {
  background-color: black;
}
.background--v2 {
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
}
.background--v3 {
  background: linear-gradient(
    135deg,
    rgba(17, 71, 118, 0.9) 0%,
    rgba(38, 107, 172, 0.9) 100%
  );
  backdrop-filter: blur(10px);
}

.app-bar {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 999;
}

.app-bar-row-1 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}
.app-bar-row-1__logo {
  padding: 5px 0;
  grid-column-start: 1;
  grid-column-end: 2;
}
.app-bar-row-1__logoname {
  color: white;
  padding: 5px 0;
  grid-column-start: 1;
  grid-column-end: 2;
}
.app-bar-row-1__logoname a {
  color: white;
  text-decoration: none;
}
.app-bar-row-1__menu {
  grid-column-start: 2;
  grid-column-end: 4;
}
.app-bar-row-1__menu ul {
  list-style-type: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  color: white;
}
.app-bar-row-1__menu a {
  /*font-size: 12px;*/
  color: white;
  text-decoration: none;
}

.app-bar__text-menu {
  background-color: black;
}
.app-bar-row-1--fixed {
  z-index: 2;
  position: relative;
}
.app-bar-row-2--fixed {
  z-index: 1;
  position: relative;
}
.app-bar-row-2__icon-menu {
  display: grid;
  grid-template-columns: 1fr 80px 80px 80px 1fr;
  column-gap: 15px;
  color: white;
  font-size: 12px;
}
.app-bar-row-2__icon-menu a {
  color: white;
  text-decoration: none;
}
.app-bar-row-2-product1 {
  grid-column-start: 2;
  grid-column-end: 3;
  text-align: center;
  margin-bottom: 15px;
  cursor: pointer;
}
.app-bar-row-2-product1 .menu-box {
  height: 70px;
}
.app-bar-row-2-product2 {
  grid-column-start: 3;
  grid-column-end: 4;
  text-align: center;
  margin-bottom: 15px;
  cursor: pointer;
}
.app-bar-row-2-product1 .menu-box {
  margin: 15px 15px;
}
.app-bar-row-2-product2 .menu-box,
.app-bar-row-2-product3 .menu-box {
  margin: 28px 25px;
  padding-top: 15px;
}
.app-bar-row-2-product3 {
  grid-column-start: 4;
  grid-column-end: 5;
  text-align: center;
  margin-bottom: 15px;
  cursor: pointer;
}
.menu-box {
  border: 1px solid white;
  display: block;
  height: 30px;
  margin: 10px;
}
.menu-box:hover {
  box-shadow: 0px 0px 4px 4px rgb(255, 255, 255, 0.3);
}

.header-mask {
  background-image: url("../images/header-mask.jpg");
  background-size: cover;
  min-height: 100vh;
  display: grid;
  justify-items: center;
  align-items: center;
}
.header-mask-content {
  color: white;
  text-align: center;
}
.header-mask-content h2 {
  text-transform: uppercase;
  font-weight: 100;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.25);
  margin-bottom: 30px;
}
.header-mask__svg {
  width: 100%;
}

.m-button,
.m-button--hollow,
.m-button--white {
  background-color: var(--color-m-blue);
  border-radius: 4px 4px 12px 4px;
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;

  background-position: center;
  transition: background 0.8s;
}
.m-button:hover,
.m-button--hollow:hover {
  background: var(--color-m-blue-dark)
    radial-gradient(circle, transparent 1%, var(--color-m-blue-dark) 1%)
    center/15000%;
}
.m-button--hollow:hover {
  color: white;
}
.m-button--white:hover {
  color: var(--color-m-blue);
}
.m-button:active,
.m-button--hollow:active {
  background-color: var(--primary-color-lighten);
  background-size: 100%;
  transition: background 0s;
}
.m-button--hollow {
  background: transparent;
  border: 1px solid var(--color-m-blue);
  color: var(--color-m-blue);
}
.m-button--white {
  background-color: white;
  color: var(--color-m-blue) !important;
}

.image-cb-300 {
  max-height: 400px;
}
.image-cb-300uv {
  max-height: 400px;
}
.image-cb-1200 {
  max-height: 600px;
}

.footer {
  background-image: url("../images/footer.svg");
  background-size: cover;
  min-height: 400px;
}
.footer2 {
  background-image: url("../images/footer2.svg");
  background-size: cover;
  min-height: 400px;
}

.footer-menu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 15%;
}
.footer-menu a {
  color: black;
  text-decoration: none;
}
.footer-menu-item {
}

.section__content {
  background-color: #f6f9fb;
  padding: 30px 0;
}
.section__pre {
  background-image: url("../images/wave-small.svg");
  transform: rotate(180deg);
  min-height: 26px;
}
.section__post {
  background-image: url("../images/wave-small.svg");
  min-height: 26px;
}

.section-product-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.section-product-1 h2,
.section-product-2 h2 {
  color: var(--primary-color);
}

.section-product-1__left {
  grid-column-start: 1;
  grid-column-end: 2;
  text-align: center;
}
.section-product-1__right {
  grid-column-start: 2;
  grid-column-end: 3;
}
.section-product-1__right p {
  margin-bottom: 40px;
}
.section--2 {
  position: relative;
  z-index: 2;
}
.section-2--bubble-right {
  content: " ";
  width: 8%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 30%;
  background-image: url("../images/bubble1.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position-x: right;
}
.section-2__content {
  padding: 30px 0;
}

.section-product-2 {
  display: grid;
  grid-template-columns: 70% 30%;
  align-items: center;
}
.section-product-2__left p {
  margin-bottom: 40px;
}

.section--3 {
  position: relative;
}
.section-3--bubble-left {
  content: " ";
  width: 25%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 10%;
  background-image: url("../images/bubble2.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: left;
}
.section-3__content {
  background-color: #f6f9fb;
  padding: 30px 0;
}
.section-product-3 {
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: center;
}
.section-product-3__left {
  text-align: center;
}
.section-product-3__right p {
  margin-bottom: 40px;
}
.section-product-3 h2 {
  color: var(--primary-color);
}

.headline-with-image {
  display: grid;
  grid-template-columns: 20% 60% 20%;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
.headline-with-image__image {
  grid-column-start: 1;
  grid-column-end: 2;
  text-align: right;
}
.headline-with-image__headline {
  grid-column-start: 2;
  grid-column-end: 3;
  text-align: center;
}
.headline-with-image__headline p {
  margin-bottom: 30px;
}
.headline-with-image__empty {
  grid-column-start: 3;
  grid-column-end: 4;
}
.table-nothing p {
  border-bottom: 1px solid black;
  margin: auto;
  display: inline-block;
  width: 20px;
}
.table-nothing {
  align-self: center;
}
.table-comparison {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.table-comparison__head .image-cb-300 {
  max-height: 100px;
  margin-top: 33px;
}
.table-comparison__head .image-cb-300uv {
  max-height: 100px;
  margin-top: 33px;
}
.table-comparison__head .image-cb-1200 {
  max-height: 133px;
}
.table-comparison__head {
  text-align: center;
}
.table-comparison__head img {
}
.table-comparison__headline {
  border-bottom: 1px solid black;
  grid-column-start: 1;
  grid-column-end: 4;
  margin-top: 90px;
  font-size: 24px;
  font-weight: 100;
  padding-bottom: 15px;
}
.table-comparison__item {
  text-align: center;
  margin-top: 15px;
  margin-bottom: 15px;
}
.table-comparison__item a {
  color: black;
}
.table-comparison__item img {
  max-width: 80px;
  margin-top: 15px;
  margin-bottom: 15px;
}
.table-comparison__item p {
  max-width: 200px;
  margin: auto;
}

.section-product-power {
  display: grid;
  grid-template-columns: 1fr;
}
.section-product-power__center {
  text-align: center;
  color: var(--color-m-blue);
  margin-top: 10%;
  margin-bottom: 10%;
}
.section-product-power__center h1 {
  width: 50%;
  margin: auto;
  margin-bottom: 30px;
  font-size: 32px;
}
.section-product-power__center img {
  display: block;
  margin: auto;
}
.section-product-power__center p {
  text-transform: uppercase;
}
.power-image {
  max-width: 100px;
}

.power-button {
  cursor: pointer;
}
.power-button:hover {
  -webkit-box-shadow: 0px 0px 39px -10px #fd0505;
  box-shadow: 0px 0px 39px -10px #fd0505;
  border-radius: 100px;
}

.section--4 {
  position: relative;
}
.section--4--bubble-left {
  /*content: " ";*/
  width: 24%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 30%;
  background-image: url("../images/bubble3.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position-x: left;
  z-index: 0;
}

.slidecontainer {
  width: 100%;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
  margin-top: 60px;
  position: relative;
  border-radius: 5px;
}
.slider::before,
.slider::after {
  content: " ";
  width: 10px;
  height: 10px;
  position: absolute;
  right: 50%;
  top: 0;
  background-color: var(--color-m-blue);
  border-radius: 5px;
}
.slider::after {
  right: 0;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 50px;
  background: var(--color-m-blue);
  cursor: pointer;
  border-radius: 5px;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: var(--color-m-blue);
  cursor: pointer;
}

.section--6 {
  position: relative;
}
.section-6--bubble-right-1 {
  content: " ";
  width: 20%;
  height: 303px;
  position: absolute;
  right: 0;
  bottom: 0;
  background-image: url(../images/bubble5.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: right;
  z-index: 0;
}
.section-6--bubble-right-2 {
  content: " ";
  width: 30%;
  height: 303px;
  position: absolute;
  right: 0;
  bottom: -30%;
  background-image: url(../images/bubble6.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: right;
  z-index: 0;
}
.section-6__content {
  background-color: #f6f9fb;
  padding: 30px 0;
}
.section-6__content a {
  color black;
}

.product-detail {
  overflow: hidden;
  padding-top: 10%;
  padding-bottom: 10%;
  column-gap: 30px;
}
.product-detail h2 {
  color: var(--color-m-blue);
}
.product-detail__text ul {
  list-style-type: none;
  margin-top: 30px;
  margin-bottom: 30px;
  margin-left: -20px;
  padding-left: 0;
}
.product-detail__text li {
  margin-bottom: 15px;
}
.product-detail__text a {
  color: black;
}
.product-detail__text ul li:before {
  content: "\2022";
  color: var(--color-m-blue);
  font-weight: bold;
  display: inline-block;
  padding-right: 15px;
}
.product-detail__image {
  float: left;
  width: calc(40% - 60px);
  padding-right: 60px;
}
.product-detail__text {
  float: left;
  width: 60%;
}

.section--5 {
  z-index: 1;
  margin-top: 10%;
  margin-bottom: 10%;
}

.room-slider {
  display: grid;
  grid-template-columns: 25% 50% 25%;
  align-items: center;
}
.room-slider__headline {
  text-align: center;
  grid-column-start: 1;
  grid-column-end: 4;
}
.room-slider__image {
  position: relative;
  grid-column-start: 2;
  grid-column-end: 3;
}
.room-slider__image::before {
  content: " ";
  width: 200px;
  height: 220px;
  position: absolute;
  left: -10%;
  top: 10%;
  background-image: url("../images/Lupe.png");
  background-repeat: no-repeat;
  background-size: 100%;
}
.room-slider__image img {
  max-width: 500px;
  margin: auto;
  display: block;
}
.room-slider__slider {
  grid-column-start: 2;
  grid-column-end: 3;
}
.room-slider__slider-pre {
  grid-column-start: 1;
  grid-column-end: 2;
  text-align: right;
  padding-top: 52px;
  padding-right: 15px;
}
.room-slider__slider-post {
  grid-column-start: 3;
  grid-column-end: 4;
  text-align: left;
  padding-top: 52px;
  padding-left: 15px;
}

.technical-data {
  display: grid;
  grid-template-columns: 30% 5% 15% 25% 35%;
}

.technical-data_headline {
  grid-column-start: 1;
  grid-column-end: 6;
  margin-top: 10%;
  margin-bottom: 5%;
}
.technical-data_table_head {
  color: var(--color-m-blue);
}
.technical-data_icon,
.technical-data_table_head,
.technical-data_table_value {
  margin-top: 15px;
  margin-bottom: 15px;
}

.section--7 {
  position: relative;
}
.section-7--bubble-left {
  content: " ";
  width: 15%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 5%;
  background-image: url("../images/bubble4.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position-x: left;
  z-index: 0;
}
.section-7__content {
  z-index: 5;
  position: relative;
}
.section-7--bubble-right {
  content: " ";
  width: 124px;
  height: 303px;
  position: absolute;
  right: 10%;
  bottom: 0;
  background-image: url("../images/ausrufezeichen.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position-x: left;
  z-index: 0;
}

.section--8 {
  margin-top: 60px;
  margin-bottom: 60px;
}

.remove-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.remove-container__headline {
  grid-column-start: 2;
  grid-column-end: 4;
  text-align: center;
  margin-bottom: 15%;
}
.remove-container__headline-empty {
  grid-column-start: 4;
  grid-column-end: 5;
}
.remove-container__item {
  text-align: center;
}
.remove-container__item img {
  max-width: 50px;
}
.remove-container__item p {
  display: block;
}

.section--9 {
  position: relative;
}
.section-9__content {
  background-color: #f3f6f9;
}
.section-9--bubble-left {
  content: " ";
  width: 30%;
  min-height: 400px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: url("../images/q2.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
.section-9__post {
  position: relative;
}
.section-9--bubble-right {
  content: " ";
  width: 20%;
  min-height: 200px;
  position: absolute;
  right: 0;
  bottom: -100px;
  background-image: url("../images/table.png");
  background-repeat: no-repeat;
  background-size: auto 100%;
  z-index: 1;
}
.section-9__pre {
  background-image: url("../images/wave-small-2.svg");
  transform: rotate(180deg);
  min-height: 78px;
}
.section-9__post {
  background-image: url("../images/wave-small-2.svg");
  min-height: 78px;
}

.faq {
  display: grid;
  grid-template-columns: 35% 65%;
  z-index: 10;
  position: relative;
}
.faq__headline {
  grid-column-start: 1;
  grid-column-end: 3;
}
.faq__context {
  grid-column-start: 2;
  grid-column-end: 3;
}

.download-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 10%;
  column-gap: 15px;
}

.download-item {
  background: #ffffff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding-left: 80px;
  position: relative;
  margin-bottom: 15px;
  transition: box-shadow 0.3s ease-in-out;
  text-decoration: none;
  color: black;
}
.download-item:hover {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
}
.download-item p {
  margin-top: 20px;
}
.download-item span {
  font-size: 80%;
}
.download-item--pdf::before {
  content: " ";
  width: 50px;
  height: 50px;
  position: absolute;
  left: 10px;
  top: 15px;
  background-image: url("../icons/pdf.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position-x: left;
}
.download-item--certificate::before {
  content: " ";
  width: 50px;
  height: 50px;
  position: absolute;
  left: 10px;
  top: 15px;
  background-image: url("../icons/certificate.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position-x: left;
}

.accordion {
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  border-top: 1px solid #c4c4c4;
  background: none;
  font-size: 16px;
  font-family: "Roboto";
  font-weight: 300;
}
.accordion:last-child {
  border-bottom: 1px solid #c4c4c4;
}

.accordion:hover {
  background-color: #e8eaec;
}

.panel {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.accordion:after {
  content: "\02795"; /* Unicode character for "plus" sign (+) */
  color: var(--color-m-blue);
  float: right;
  margin-left: 5px;
  font-size: 16px;
  font-family: "Roboto";
  font-weight: 300;
}

.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}

.paypal-button-text {
  display: none im !important;
}

.o-dsgvo-wrapper {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 999;
  height: 100%;
  width: 100%;
  top: 0;
}
.o-dsgvo {
  display: grid;
  align-items: center;
  justify-items: center;
  height: 100%;
  line-height: 24px;
}
.o-dsgvo__content {
  max-width: 800px;
  background-color: white;
  padding: 15px;
  border: 1px solid var(--color-m-blue);
}
.o-dsgvo--hidden {
  display: none !important;
}
.o-dsgvo__link--more {
  text-decoration: underline;
  color: black;
  margin-left: 15px;
}
.dsgvo_privacy {
  margin-top: 30px;
  border-top: 1px solid lightgrey;
  text-align: center;
  padding-top: 15px;
}
.dsgvo_privacy a {
  color: black;
}
.o-dsgvo__text {
  margin-bottom: 15px;
}
.o-dsgvo__link--notok {
  color: black;
  margin-right: 15px;
}

#paypal-button-container {
  max-width: 300px;
  margin-top: 30px;
}

#splide-navigation {
  height: 200px;
}
#splide-navigation img {
  max-height: 100px;
  max-width: 100%;
}
#splide-main img {
  max-width: 100%;
  max-height: 300px;
}
#splide-main {
  margin-bottom: 15px;
}
#splide-main .splide__slide {
  text-align: center;
}
.splide__arrow {
  top: 25% !important;
}

/* Small only */
@media screen and (max-width: 39.9375em) {
  h2,
  .headline-1 {
    font-size: 32px;
  }
  .headline-1 {
  }
  h1 {
    font-size: 38px;
  }

  .app-bar-row-2-product1 .menu-box {
    height: 50px;
    margin: 15px 25px;
  }
  .menu-box {
    height: 10px;
  }
  .app-bar-row-1__menu li:nth-child(2) {
    display: none;
  }
  .app-bar-row-1__menu li:nth-child(3) {
    margin-left: 15px;
  }

  .section-product-1 {
    grid-template-columns: 1fr;
  }
  .section-product-1__left {
    text-align: center;
    margin-bottom: 30px;
  }
  .section-product-1__left img {
    /*width: 100px;*/
    max-height: 200px;
  }
  .section-product-1__left,
  .section-product-1__right {
    grid-column-start: auto;
    grid-column-end: auto;
  }

  .section-product-2 {
    grid-template-columns: 1fr;
  }
  .section-product-2__right {
    text-align: center;
    margin-top: 60px;
  }
  .section-product-2__right img {
    /*width: 100px;*/
    max-height: 200px;
  }
  .section-product-2__left,
  .section-product-2__right {
    grid-column-start: auto;
    grid-column-end: auto;
  }
  .section--2::after {
    width: 20%;
  }

  .section-product-3 {
    grid-template-columns: 1fr;
  }
  .section-product-3__left {
    text-align: center;
    margin-bottom: 30px;
  }
  .section-product-3__left img {
    /*width: 100px;*/
    max-height: 250px;
  }
  .section-product-3__left,
  .section-product-3__right {
    grid-column-start: auto;
    grid-column-end: auto;
  }
  .section--3::before {
    width: 20%;
    top: -10%;
  }

  .headline-with-image__headline {
    grid-column-start: 1;
    grid-column-end: 4;
  }
  .headline-with-image__image img {
    width: 50px;
  }

  .footer-menu {
    grid-template-columns: 1fr;
    text-align: center;
    margin-top: 40%;
  }
  .footer-menu-item {
    margin-bottom: 15px;
  }

  .table-comparison-scroll {
    overflow-x: scroll;
  }
  .table-comparison {
    column-gap: 30px;
  }
  .table-comparison__item img {
    width: 40px;
  }

  .table-comparison__head img {
    /*width: 50px;*/
  }

  .section-product-power__center h1 {
    width: 90%;
    margin-top: 30px;
  }

  #image-slide {
    max-width: 100%;
  }
  .room-slider__image::before {
    width: 45%;
  }

  .product-detail {
  }
  .product-detail__image,
  .product-detail__text {
    width: 100%;
  }
  .product-detail__text ul {
    list-style: square;
    margin: 0;
    padding: 0;
    margin-left: 15px;
  }
  .product-detail__text ul li:before {
    display: none;
  }

  .remove-container {
    column-gap: 15px;
    grid-template-columns: 1fr 1fr;
  }
  .remove-container__headline {
    grid-column-start: 1;
    grid-column-end: 3;
  }
  .remove-container__headline-empty {
    display: none;
  }
  .remove-container__item img {
    width: 25px;
  }

  .technical-data {
    grid-template-columns: 1% 10% 40% 48% 1%;
  }
  #section-technical-data:after {
    display: none;
  }

  .faq {
    grid-template-columns: 1% 99%;
  }
  .section-9__content:before {
    display: none;
  }
  .section-9__post:after {
    width: 100%;
    right: 0;
  }
  .faq__headline {
    margin-bottom: 15px;
  }

  .o-dsgvo {
    width: 100vw;
  }
  .o-dsgvo__text {
    overflow-x: scroll;
    max-height: 250px;
  }
  .dsgvo__accordion_content {
    overflow-x: scroll;
    max-height: 150px;
  }

  .o-dsgvo__link--more {
    padding-top: 15px;
    display: inline-block;
  }
  .o-dsgvo__link--notok {
    padding-bottom: 15px;
    display: block;
  }
  .o-dsgvo__more .o-dsgvo__text {
    max-height: 150px;
  }

  .room-slider__slider-pre,
  .room-slider__slider-post {
    font-size: 90%;
  }
}

/* Medium and up */
@media screen and (min-width: 40em) {
}

/* Medium only */
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
}

/* Large and up */
@media screen and (min-width: 64em) {
}

/* Large only */
@media screen and (min-width: 64em) and (max-width: 74.9375em) {
}

.ball {
  position: absolute;
  opacity: 0.9;
  background-size: 100%;
}

.vibrate {
  -webkit-animation: vibrate 2s cubic-bezier(0.36, 0.07, 0.19, 0.97) 1;
  animation: vibrate 2s cubic-bezier(0.36, 0.07, 0.19, 0.97) 1;

  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 300px;
  perspective: 300px;
}

@keyframes vibrate {
  0.50%,
  10%,
  20%,
  30%,
  40%,
  50% {
    -webkit-transform: translate3d(1px, 0, 0);
    transform: translate3d(1px, 0, 0);
  }
  5%,
  15%,
  25%,
  35%,
  45% {
    -webkit-transform: translate3d(-1px, 0, 0);
    transform: translate3d(-1px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(1px, 0, 0);
    transform: translate3d(1px, 0, 0);
  }
}
