.section-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: -1;
}
.section-background .background-pic {
  position: absolute;
  width: 100%;
  height: 100%;
}
.section-background .background-pic img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}

.data-wrapper {
  gap: 5vw;
}
.data-wrapper .block {
  width: 20%;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-shadow: 0 0 6px black;
  color: white;
  text-align: center;
}
.data-wrapper .block .first {
  font-size: 120%;
}
.data-wrapper .block .first .number {
  font-size: 250%;
  font-weight: 400;
}
.data-wrapper .block .first .number sup {
  font-size: 60%;
}
.data-wrapper .block .second {
  font-size: 1.75vh;
}
.data-wrapper .block .second .disclaimer {
  font-size: 70%;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.show-mobile,
.show-tablet,
.show-phone {
  display: none !important;
}

@media (max-width: 950px) {
  .show-mobile, .show-phone {
    display: block !important;
  }
}
.hide-mobile {
  display: flex !important;
}
@media (max-width: 950px) {
  .hide-mobile {
    display: none !important;
  }
}

nav.navbar {
  background-color: transparent;
}

.d-flex {
  display: flex;
}

.gradients-fixed {
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 0.7s ease 0s;
  pointer-events: none;
}
.gradients-fixed .gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 14%;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7411764706), rgba(44, 40, 40, 0));
  transition: height 0.7s ease, background 0.7s ease, opacity 0.7s ease;
  z-index: 5;
}
.gradients-fixed .gradient-overlay-top, .gradients-fixed .gradient-overlay-top-black {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20%;
  transition: opacity 0.7s ease;
  z-index: 5;
}
.gradients-fixed .gradient-overlay-top {
  background: linear-gradient(to bottom, #0e3c84, rgba(0, 0, 0, 0));
  opacity: 0;
}
.gradients-fixed .gradient-overlay-top-black {
  background: linear-gradient(to bottom, black, rgba(0, 0, 0, 0));
  opacity: 1;
}
.gradients-fixed.slide-4 .gradient-overlay {
  opacity: 0;
}
.gradients-fixed.slide-8 .gradient-overlay, .gradients-fixed.slide-8 .gradient-overlay-top-black, .gradients-fixed.slide-9 .gradient-overlay, .gradients-fixed.slide-9 .gradient-overlay-top-black {
  opacity: 0;
}

.section:not(.footer-anchor) .fp-tableCell {
  padding: 12.5vh 10vw 12.5vh 10vw;
}
.section:not(.footer-anchor) .fp-tableCell .slide-content {
  position: relative;
  height: 100%;
  width: 100%;
  container-type: inline-size;
  z-index: 2000;
}

.section__title {
  color: white;
  font-size: 180%;
  font-weight: 400;
  text-shadow: 0 0 5px black;
}

.section .data-wrapper {
  width: 100%;
}
.section .data-wrapper .first, .section .data-wrapper .third {
  font-size: 80%;
  line-height: 1;
  padding-bottom: 0.8rem;
}
.section .data-wrapper .first .number, .section .data-wrapper .third .number {
  font-size: 200%;
}
.section .data-wrapper .second {
  font-size: 80%;
  line-height: 1.2;
}
@media (max-width: 950px) {
  .section .data-wrapper {
    width: 400%;
    gap: 0;
    transition: left 0.3s ease-in-out;
    left: 0;
  }
  .section .data-wrapper.data-2 {
    width: 200%;
  }
  .section .data-wrapper.data-3 {
    width: 300%;
  }
  .section .data-wrapper.data-5 {
    width: 500%;
  }
  .section .data-wrapper.show-2 {
    left: -100%;
  }
  .section .data-wrapper.show-3 {
    left: -200%;
  }
  .section .data-wrapper.show-4 {
    left: -300%;
  }
  .section .data-wrapper.show-5 {
    left: -400%;
  }
  .section .data-wrapper .block {
    max-width: unset;
    flex: 1;
  }
}

.overlay {
  position: absolute;
  z-index: 10;
  display: flex;
  font-family: galano-grotesque, sans-serif;
  font-size: clamp(1.6rem, 2cqw, 2.2rem);
}
.overlay.f-col {
  flex-direction: column;
}
.overlay.p-top {
  top: 0;
}
.overlay.p-bottom {
  bottom: 0;
}
.overlay.p-left {
  left: 0;
}
.overlay.p-right {
  right: 0;
}
.overlay.p-center {
  left: 0;
  right: 0;
  justify-content: center;
  align-items: center;
}

.section.features .section-background {
  overflow: clip;
  z-index: 1;
}
.section.features .section-background .background-pic {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  height: 100vh;
  width: auto;
  aspect-ratio: 192/108;
}
@media (min-aspect-ratio: 192/108) {
  .section.features .section-background .background-pic {
    height: auto;
    width: 100vw;
  }
}
@media (max-width: 950px) {
  .section.features .section-background .background-pic {
    aspect-ratio: 750/1366;
  }
}
@media (max-width: 950px) and (min-aspect-ratio: 750/1366) {
  .section.features .section-background .background-pic {
    height: auto;
    width: 100vw;
  }
}
.section.features .section-background.blurred {
  filter: blur(3px);
}
.section.features .section-background .boxes-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.section.features .section-background .dot {
  position: absolute;
  left: 50%;
  top: 50%;
  background: #0084d1;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid white;
  cursor: pointer;
}
.section.features .section-background .dot:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 33.3%;
  height: 33.3%;
  background-color: #0084d1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  overflow: hidden;
  animation: circle-animation 1.5s infinite;
}
@media (max-width: 950px) {
  .section.features .section-background .dot {
    width: 20px;
    height: 20px;
  }
}
.section.features .slide-content {
  pointer-events: none;
}

.feature-overlay {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 555555;
}
.feature-overlay.active {
  display: block;
}
.feature-overlay .inner {
  position: absolute;
  width: 60vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 950px;
}
.feature-overlay .inner .feature {
  display: none;
}
.feature-overlay .inner .feature img {
  width: 100%;
}
.feature-overlay .inner .feature .description {
  color: white;
  text-align: center;
  margin-top: 0.5rem;
  font-size: 16px;
  text-transform: uppercase;
}
.feature-overlay .inner .feature.show {
  display: block;
}
.feature-overlay .inner .close {
  position: absolute;
  top: -8%;
  right: -5%;
  width: 40px;
  cursor: pointer;
  opacity: 1;
}
.feature-overlay .inner .close img {
  filter: drop-shadow(0px 0px 2px black);
}
.feature-overlay .inner .left {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: -10%;
  cursor: pointer;
}
.feature-overlay .inner .left img {
  width: 50px;
  transform: rotate(180deg);
  filter: drop-shadow(0px 0px 2px black);
}
.feature-overlay .inner .right {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: -10%;
  cursor: pointer;
}
.feature-overlay .inner .right img {
  width: 50px;
  filter: drop-shadow(0px 0px 2px black);
}
@media (max-width: 950px) {
  .feature-overlay .inner {
    width: 80vw;
  }
  .feature-overlay .inner .left img, .feature-overlay .inner .right img {
    width: 40px;
  }
  .feature-overlay .inner .close {
    top: -50px;
    right: 0;
  }
}

.blur-background {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(81, 80, 80, 0.6392156863);
  z-index: 666;
}
.blur-background.active {
  display: block;
}

.section.multi-background .section-background .background-pic {
  inset: 0;
  opacity: 0;
}
.section.multi-background .section-background .background-pic.active {
  opacity: 1;
}
.section.multi-background .colors-wrapper {
  gap: 1rem;
}
.section.multi-background .colors-wrapper .color {
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: rgba(140, 140, 140, 0.6);
  color: white;
  font-size: 1.5rem;
}
.section.multi-background .colors-wrapper .color.active {
  border: 2px solid white;
}
.section.multi-background .colors-wrapper .color img {
  width: 100%;
  height: 100%;
}
@media (max-width: 950px) {
  .section.multi-background .colors-wrapper {
    width: 100%;
    justify-content: center;
    gap: 0.6rem;
  }
  .section.multi-background .colors-wrapper.first-line-margin {
    margin-bottom: 4.6rem;
  }
  .section.multi-background .colors-wrapper .color {
    width: 40px;
    height: 40px;
  }
}

.buttons {
  display: flex;
  gap: 2rem;
}
.buttons.buttons-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.buttons.buttons-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 950px) {
  .buttons.buttons-3 {
    grid-template-columns: 1fr 1fr;
  }
  .buttons.buttons-3 .reserve-btn {
    grid-column: span 2;
    justify-self: center;
  }
}
.buttons.f-justify-start {
  justify-content: flex-start;
}
.buttons .slide-cta-btn {
  margin: 0.5rem 0.25rem;
  align-self: stretch;
  padding: 0.75rem 1.5rem;
  max-width: 200px;
  min-width: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #5e6070;
  border-radius: 10px;
  flex: 1;
  gap: 1rem;
  background: #5e6070;
  color: white;
  text-align: center;
  font-weight: 300;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.7s ease 0s, color 0.7s ease 0s, border 0.7s ease 0s;
}
.buttons .slide-cta-btn:hover, .buttons .slide-cta-btn.btn-second:hover {
  background: white;
  color: black;
  border: 2px solid white;
}
.buttons .slide-cta-btn.btn-second {
  background: rgba(16, 16, 18, 0.1843137255);
  border: 2px solid white;
}
.buttons .slide-cta-btn.light {
  background: #fff;
  color: #5e6070;
  border: 2px solid #fff;
}
.buttons .slide-cta-btn.light:hover {
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  background: rgba(51, 51, 51, 0.4);
  border: 2px solid white;
  color: white;
}
.buttons .slide-cta-btn {
  margin: 0;
  font-size: 70%;
  pointer-events: all;
  max-width: unset;
}

.video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.overlay.videoBtn-wrapper .play-video {
  pointer-events: all;
  position: absolute;
  right: 10%;
  bottom: 10%;
  color: white;
  background: transparent;
  border: 2px solid white;
  padding: 1rem 2rem;
  cursor: pointer;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  z-index: 5;
}
.overlay.videoBtn-wrapper .play-video img {
  width: 20px;
  margin-bottom: 5px;
}

.video-overlay {
  position: absolute;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(27, 27, 27, 0.8901960784);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
  z-index: 666666;
}
.video-overlay .close-video-overlay {
  z-index: 666666;
  position: absolute;
  top: 10%;
  right: 5%;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.video-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.home.section-1 .slide-content > .overlay.p-bottom {
  justify-content: flex-end;
}
.home.section-1 .logo-wrapper img {
  margin-bottom: 3rem;
}
.home.section-1 .data-wrapper {
  align-items: flex-start;
  justify-content: space-between;
}
.home.section-1 .buttons {
  padding-bottom: 10rem;
}
.home.section-1 .disclaimers-wrapper {
  bottom: -5vw;
  color: white;
  width: 100%;
}
.home.section-1 .disclaimers-wrapper p {
  font-size: 70%;
  margin-inline: auto;
}
@media (max-width: 950px) {
  .home.section-1 .disclaimers-wrapper {
    bottom: -1vw;
    translate: 0 100%;
  }
}

.design.section-2 .dot[data-lp="1"] {
  top: 59%;
  left: 20%;
}
.design.section-2 .dot[data-lp="2"] {
  top: 41%;
  left: 51%;
}
.design.section-2 .dot[data-lp="3"] {
  top: 56%;
  left: 51%;
}
.design.section-2 .dot[data-lp="4"] {
  top: 41%;
  left: 22%;
}
.design.section-2 .dot[data-lp="5"] {
  top: 30%;
  left: 40%;
}
.design.section-2 .dot[data-lp="6"] {
  top: 49%;
  left: 72%;
}
@media (max-width: 950px) {
  .design.section-2 .dot[data-lp="1"] {
    top: 51%;
    left: 14%;
  }
  .design.section-2 .dot[data-lp="2"] {
    top: 42%;
    left: 60%;
  }
  .design.section-2 .dot[data-lp="3"] {
    top: 56%;
    left: 51%;
  }
  .design.section-2 .dot[data-lp="4"] {
    top: 41%;
    left: 14%;
  }
  .design.section-2 .dot[data-lp="5"] {
    top: 38%;
    left: 40%;
  }
  .design.section-2 .dot[data-lp="6"] {
    top: 49%;
    left: 72%;
  }
}

.wheels.section-4 {
  background: white;
}
.wheels.section-4 .fp-tableCell {
  display: flex;
  flex-direction: column;
  padding: 0;
}
.wheels.section-4 .title {
  position: absolute;
  top: 10%;
  left: 10%;
  color: white;
  text-align: left;
  font-weight: 200;
  line-height: 1.75;
  text-shadow: 0 0 10px black;
}
.wheels.section-4 .car-background {
  position: relative;
  width: 100%;
}
.wheels.section-4 .car-background img {
  width: 100%;
}
.wheels.section-4 .rim-left {
  position: absolute;
  left: 26.2%;
  bottom: 13%;
  width: 9%;
  animation: 3s linear infinite rotate;
  -webkit-animation-name: rotate;
  -webkit-animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
}
.wheels.section-4 .rim-left.anim-run {
  animation-play-state: running;
}
.wheels.section-4 .rim-left.r17 {
  left: 25.3%;
  bottom: 17.3%;
}
.wheels.section-4 .rim-left.r18 {
  left: 25.3%;
  bottom: 17.3%;
}
.wheels.section-4 .rim-left.r19 {
  left: 25.3%;
  bottom: 17.3%;
}
.wheels.section-4 .rim-right {
  position: absolute;
  right: 28.35%;
  bottom: 13%;
  width: 9%;
  animation: 3s linear infinite rotate;
  -webkit-animation-name: rotate;
  -webkit-animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
}
.wheels.section-4 .rim-right.anim-run {
  animation-play-state: running;
}
.wheels.section-4 .rim-right.r17 {
  left: 65.7%;
  bottom: 17.1%;
}
.wheels.section-4 .rim-right.r18 {
  left: 65.7%;
  bottom: 17.1%;
}
.wheels.section-4 .rim-right.r19 {
  left: 65.7%;
  bottom: 17.1%;
}
.wheels.section-4 .rims-wrapper {
  width: 100%;
  flex-grow: 1;
  background: white;
  z-index: 10;
  padding-top: 20px;
}
.wheels.section-4 .rims-wrapper .rims {
  align-self: stretch;
  max-width: 1000px;
  width: 80%;
  height: 100%;
  bottom: 15%;
  left: 50%;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  z-index: 5;
  align-items: flex-start;
}
.wheels.section-4 .rims-wrapper .rims .rim {
  width: 25%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.wheels.section-4 .rims-wrapper .rims .rim img {
  max-width: 17vh;
  width: 175px;
}
.wheels.section-4 .rims-wrapper .rims .rim .name {
  margin-top: 1rem;
  font-size: 135%;
  text-align: center;
  font-weight: 400;
}

.innenaustattung.section-5.section .section-background .background-pic {
  top: 0;
  left: 0;
  translate: none;
}
.innenaustattung.section-5 .dot[data-lp="1"] {
  top: 43%;
  left: 42%;
}
.innenaustattung.section-5 .dot[data-lp="2"] {
  top: 72%;
  left: 46%;
}
.innenaustattung.section-5 .dot[data-lp="3"] {
  top: 54%;
  left: 10%;
}
.innenaustattung.section-5 .dot[data-lp="4"] {
  top: 75%;
  left: 19%;
}
.innenaustattung.section-5 .dot[data-lp="5"] {
  top: 22%;
  left: 52%;
}
.innenaustattung.section-5 .dot[data-lp="6"] {
  top: 64%;
  left: 52%;
}
@media (max-width: 950px) {
  .innenaustattung.section-5 .dot[data-lp="1"] {
    top: 43%;
    left: 72%;
  }
  .innenaustattung.section-5 .dot[data-lp="2"] {
    display: none;
  }
  .innenaustattung.section-5 .dot[data-lp="5"] {
    display: none;
  }
  .innenaustattung.section-5 .dot[data-lp="6"] {
    top: 72%;
    left: 72%;
  }
}

.leistung.section-6 .data-wrapper .block {
  max-width: unset;
}

.versionen.section-7 .fp-tableCell {
  padding: 0;
}
.versionen.section-7 .section-background img {
  -o-object-position: left;
     object-position: left;
}
.versionen.section-7 .configurations-wrapper {
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 15%;
  right: 5%;
  width: 90%;
  max-height: 65%;
  z-index: 555555;
}
.versionen.section-7 .configurations-wrapper .config-nav-button {
  display: none;
}
.versionen.section-7 .configurations-wrapper .configs {
  display: flex;
  justify-content: flex-end;
  gap: 2%;
}
.versionen.section-7 .configurations-wrapper .configs .config {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 23.5%;
  padding: 10px;
  color: white;
  background: rgba(23, 23, 23, 0.4392156863);
  font-size: clamp(0.8rem, 1vw, 1.2rem);
}
.versionen.section-7 .configurations-wrapper .configs .config .name {
  margin-bottom: 1rem;
  color: white;
  font-weight: 400;
}
.versionen.section-7 .configurations-wrapper .configs .config .subtitle {
  font-size: 80%;
  margin-bottom: 0.25rem;
}
.versionen.section-7 .configurations-wrapper .configs .config .features {
  margin-bottom: 4rem;
  list-style: square;
  padding-inline: 20px;
}
.versionen.section-7 .configurations-wrapper .configs .config .bottom-part {
  margin-top: auto;
}
.versionen.section-7 .configurations-wrapper .configs .config .bottom-part .price {
  text-align: right;
  margin-bottom: 1.5rem;
}
.versionen.section-7 .configurations-wrapper .configs .config .bottom-part .price sup {
  font-size: 60%;
}
.versionen.section-7 .configurations-wrapper .configs .config .bottom-part .price .big {
  font-size: 200%;
}
.versionen.section-7 .configurations-wrapper .configs .config .bottom-part.f-justify-start {
  justify-content: flex-start;
}
.versionen.section-7 .configurations-wrapper .configs .config .bottom-part .slide-cta-btn {
  margin: 0.5rem 0.25rem;
  align-self: stretch;
  padding: 0.75rem 1.5rem;
  max-width: 200px;
  min-width: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #5e6070;
  border-radius: 10px;
  flex: 1;
  gap: 1rem;
  background: #5e6070;
  color: white;
  text-align: center;
  font-weight: 300;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.7s ease 0s, color 0.7s ease 0s, border 0.7s ease 0s;
}
.versionen.section-7 .configurations-wrapper .configs .config .bottom-part .slide-cta-btn:hover, .versionen.section-7 .configurations-wrapper .configs .config .bottom-part .slide-cta-btn.btn-second:hover {
  background: white;
  color: black;
  border: 2px solid white;
}
.versionen.section-7 .configurations-wrapper .configs .config .bottom-part .slide-cta-btn.btn-second {
  background: rgba(16, 16, 18, 0.1843137255);
  border: 2px solid white;
}
.versionen.section-7 .configurations-wrapper .configs .config .bottom-part .slide-cta-btn.light {
  background: #fff;
  color: #5e6070;
  border: 2px solid #fff;
}
.versionen.section-7 .configurations-wrapper .configs .config .bottom-part .slide-cta-btn.light:hover {
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  background: rgba(51, 51, 51, 0.4);
  border: 2px solid white;
  color: white;
}
.versionen.section-7 .configurations-wrapper .configs .config .bottom-part .konfig-btn {
  margin: 0 auto;
  font-weight: 400;
  max-width: none;
  min-width: 0;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .versionen.section-7 .configurations-wrapper {
    top: 10%;
    max-height: 80%;
  }
  .versionen.section-7 .configurations-wrapper .config-nav-button {
    position: absolute;
    display: flex !important;
    align-items: center;
    top: 0;
    height: 100%;
    z-index: 77777777;
  }
  .versionen.section-7 .configurations-wrapper .config-nav-button.full {
    opacity: 0.5;
  }
  .versionen.section-7 .configurations-wrapper .config-nav-button img {
    width: max(5vw, 25px) !important;
  }
  .versionen.section-7 .configurations-wrapper .config-nav-button[data-direction=left] {
    left: min(0%, 5vw - 25px);
  }
  .versionen.section-7 .configurations-wrapper .config-nav-button[data-direction=left] img {
    transform: rotate(180deg);
  }
  .versionen.section-7 .configurations-wrapper .config-nav-button[data-direction=right] {
    right: min(0%, 5vw - 25px);
  }
  .versionen.section-7 .configurations-wrapper .configs {
    width: 400%;
    position: relative;
    transition: left 0.3s ease-in-out;
    gap: 0;
    justify-content: flex-start;
  }
  .versionen.section-7 .configurations-wrapper .configs .config {
    width: 80vw;
    margin-left: 5vw;
    margin-right: 5vw;
    padding: 2.5rem;
    font-size: clamp(0.8rem, 2vw, 1.2rem);
    flex-basis: unset;
  }
  .versionen.section-7 .configurations-wrapper .configs .config .features {
    line-height: 1.75;
    font-size: 125%;
  }
  .versionen.section-7 .configurations-wrapper .configs .config .name {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 200%;
  }
  .versionen.section-7 .configurations-wrapper .configs.show-1 {
    left: 0;
  }
  .versionen.section-7 .configurations-wrapper .configs.show-2 {
    left: -100%;
  }
  .versionen.section-7 .configurations-wrapper .configs.show-3 {
    left: -200%;
  }
  .versionen.section-7 .configurations-wrapper .configs.show-4 {
    left: -300%;
  }
  .versionen.section-7 .configurations-wrapper .configs.show-5 {
    left: -400%;
  }
}
@media (max-width: 600px) {
  .versionen.section-7 .configurations-wrapper .configs .config {
    padding: 1rem 2rem;
  }
  .versionen.section-7 .configurations-wrapper .configs .config .features {
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  .versionen.section-7 .configurations-wrapper .configs .config .bottom-part .slide-cta-btn {
    padding: 0.25rem 1rem;
  }
  .versionen.section-7 .buttons-bottom .slide-cta-btn {
    padding: 0.25rem 1rem;
  }
}

.data.section-8 {
  background-image: url("../../../images/rexton-my21/equipment/bg.jpg");
  background-size: cover;
}
.data.section-8 .nav-tabs > li.active a {
  background: transparent !important;
  border: none !important;
  color: white !important;
  font-size: 80%;
}
@media (max-width: 950px) {
  .data.section-8 .fp-tableCell {
    padding-inline: 0;
  }
  .data.section-8 .fp-tableCell #data-wrapper {
    width: 90vw;
  }
  .data.section-8 .fp-tableCell #data-wrapper #silniki-table {
    padding-inline: 0;
  }
}
.data.section-8 .title {
  color: white;
  text-align: center;
  font-weight: 200;
  line-height: 1.75;
  text-shadow: 0 0 10px black;
}
@media (max-width: 950px) {
  .data.section-8 .title {
    font-size: 180%;
  }
}
.data.section-8 #data-wrapper {
  padding: 2rem 0 0;
  max-height: 65vh;
  height: auto;
  overflow: auto;
  position: relative;
}
.data.section-8 #data-wrapper .sticky {
  position: fixed;
  z-index: 777777;
}
.data.section-8 #data-wrapper .model-name, .data.section-8 #data-wrapper .panel-title a {
  font-size: 80%;
}
.data.section-8 #accordion, .data.section-8 .wersje-wrapper {
  padding: 0;
}
.data.section-8 #wersje_nazwa {
  border-bottom: none;
}
.data.section-8 .panel-default > .panel-heading {
  border-color: white;
}
.data.section-8 .table-condensed.gear-table-header {
  z-index: 2;
}
.data.section-8 #wersje_nazwa {
  height: 50px;
  display: flex;
  align-items: center;
}
.data.section-8 #wersje_nazwa.sticky {
  width: inherit !important;
  position: fixed;
  z-index: 676666;
}
.data.section-8 .emmision-badge-new {
  position: absolute;
  text-shadow: 0 0 16px black;
  color: white;
  text-align: center;
  bottom: 35px;
  font-size: 16px;
  font-weight: 400;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
}
.data.section-8 h4, .data.section-8 th, .data.section-8 td {
  color: white;
}
.data.section-8 .gear-header {
  border: none;
}

.raum.section-11 .volume-wrapper {
  right: -10vw;
  bottom: -12.5vh;
}
.raum.section-11 .volume-wrapper .number {
  display: none;
  font-size: 2000%;
  color: rgba(255, 255, 255, 0.3803921569);
  font-weight: 600;
  line-height: 0.7;
}
.raum.section-11 .volume-wrapper .number.active {
  display: block;
}
@media (max-width: 950px) {
  .raum.section-11 .volume-wrapper {
    right: -20vw;
    bottom: 50vh;
  }
  .raum.section-11 .volume-wrapper .number {
    font-size: 1500%;
  }
}

.supportsysteme.section-12 .section-background {
  perspective: 72rem;
}
.supportsysteme.section-12 .section-background .background-pic .car {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  heihgt: 100%;
  z-index: 2;
}
.supportsysteme.section-12 .systems-wrapper {
  position: absolute;
  opacity: 0.5;
  top: 43%;
  left: 49%;
  z-index: 1;
  transform: translate(-50%, -50%) rotatex(30deg);
  width: 37%;
}
.supportsysteme.section-12 .systems-wrapper img {
  animation: safety-spin 17s linear infinite;
}
.supportsysteme.section-12 .slide-content {
  pointer-events: all;
}
.supportsysteme.section-12 .systems-explained {
  position: absolute;
  z-index: 55555;
  color: white;
  width: 60%;
  font-size: 150%;
  min-height: 160px;
  display: flex;
}
.supportsysteme.section-12 .systems-explained .systems-images .system {
  display: none;
  margin-right: 10px;
}
.supportsysteme.section-12 .systems-explained .systems-images .system img {
  max-height: 140px;
}
.supportsysteme.section-12 .systems-explained .systems-images .system.in {
  display: block;
}
.supportsysteme.section-12 .systems-explained .col-right {
  max-width: 400px;
  min-width: 400px;
  font-size: 120%;
}
.supportsysteme.section-12 .systems-explained .systems-list {
  display: flex;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.supportsysteme.section-12 .systems-explained .systems-list .system {
  margin-right: 7.5px;
  cursor: pointer;
}
.supportsysteme.section-12 .systems-explained .systems-list .system.in {
  font-weight: bold;
  text-decoration: underline;
}
.supportsysteme.section-12 .systems-explained .systems-names {
  margin-bottom: 0.5rem;
}
.supportsysteme.section-12 .systems-explained .systems-names .system {
  display: none;
  font-weight: bold;
  width: 100%;
}
.supportsysteme.section-12 .systems-explained .systems-names .system.in {
  display: block;
}
.supportsysteme.section-12 .systems-explained .systems-descriptions .system {
  display: none;
  width: 100%;
}
.supportsysteme.section-12 .systems-explained .systems-descriptions .system.in {
  display: block;
}
@media (max-width: 950px) {
  .supportsysteme.section-12 .systems-explained {
    width: 100%;
  }
}

.gallery.section-13 .buttons-overlay {
  bottom: 13%;
  position: absolute;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 555555;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gallery.section-13 .background-image {
  left: 0;
}

.sicherheit.section-13.features .section-background .dot {
  color: gray;
  background: white;
  font-size: 120%;
  border: 1px solid gray;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sicherheit.section-13.features .section-background .dot::after {
  content: none;
}
.sicherheit.section-13.features .section-background .dot[data-lp="1"] {
  top: 25%;
  left: 48%;
}
.sicherheit.section-13.features .section-background .dot[data-lp="2"] {
  top: 35%;
  left: 48%;
}
.sicherheit.section-13.features .section-background .dot[data-lp="3"] {
  top: 28%;
  left: 58%;
}
.sicherheit.section-13.features .section-background .dot[data-lp="4"] {
  top: 39%;
  left: 46%;
}
.sicherheit.section-13.features .section-background .dot[data-lp="5"] {
  top: 39%;
  left: 60%;
}
.sicherheit.section-13.features .section-background .dot[data-lp="6"] {
  top: 33%;
  left: 53%;
}
.sicherheit.section-13.features .section-background .dot[data-lp="7"] {
  top: 33%;
  left: 62%;
}
.sicherheit.section-13.features .section-background .dot[data-lp="8"] {
  top: 33%;
  left: 43%;
}
@media (max-width: 950px) {
  .sicherheit.section-13.features .section-background .dot {
    font-size: 100%;
  }
  .sicherheit.section-13.features .section-background .dot[data-lp="1"] {
    top: 25%;
    left: 32%;
  }
  .sicherheit.section-13.features .section-background .dot[data-lp="2"] {
    top: 29%;
    left: 35%;
  }
  .sicherheit.section-13.features .section-background .dot[data-lp="3"] {
    top: 28%;
    left: 58%;
  }
  .sicherheit.section-13.features .section-background .dot[data-lp="4"] {
    top: 37%;
    left: 29%;
  }
  .sicherheit.section-13.features .section-background .dot[data-lp="5"] {
    top: 37%;
    left: 67%;
  }
  .sicherheit.section-13.features .section-background .dot[data-lp="6"] {
    top: 33%;
    left: 45%;
  }
  .sicherheit.section-13.features .section-background .dot[data-lp="7"] {
    top: 33%;
    left: 77%;
  }
  .sicherheit.section-13.features .section-background .dot[data-lp="8"] {
    top: 33%;
    left: 20%;
  }
}
.sicherheit.section-13 .airbags-wrapper .col-1, .sicherheit.section-13 .airbags-wrapper .col-2 {
  width: 50%;
}
.sicherheit.section-13 .airbags-wrapper .airbag {
  display: flex;
  margin-bottom: 10px;
  width: 100%;
  color: white;
}
.sicherheit.section-13 .airbags-wrapper .airbag .num {
  width: 25px;
  height: 25px;
  min-width: 25px;
  min-height: 25px;
  border: 1px solid gray;
  border-radius: 50%;
  color: gray;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  margin-right: 5px;
}
@media (max-width: 950px) {
  .sicherheit.section-13 .airbags-wrapper {
    flex-direction: column;
    flex-wrap: wrap;
    left: 0;
  }
  .sicherheit.section-13 .airbags-wrapper .col-1, .sicherheit.section-13 .airbags-wrapper .col-2 {
    width: 100%;
  }
  .sicherheit.section-13 .airbags-wrapper .airbags-title {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
    width: 100%;
  }
  .sicherheit.section-13 .airbags-wrapper .airbag {
    margin-bottom: 5px;
  }
  .sicherheit.section-13 .airbags-wrapper .airbag .num {
    font-size: 80%;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
  }
}
.sicherheit.section-13 .eight-wrapper {
  left: -10vw;
  top: -12.5vh;
  width: 45vw;
  max-width: 57vh;
  height: calc(100% + 12.5vh + 12.5vh);
  overflow: hidden;
}
.sicherheit.section-13 .eight-wrapper .eight {
  position: absolute;
  top: -47%;
  right: 0;
  font-weight: 600;
  color: white;
  opacity: 0.5;
  font-size: 137vh;
}
.sicherheit.section-13 .eight-wrapper .text {
  position: absolute;
  top: 71%;
  right: 30vh;
  color: white;
  font-size: 150%;
}

.funktionalitat.section-14.multi-background .colors-wrapper .color {
  width: 89px;
}

.informationen.section-15 .slide-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  width: 100%;
  padding: 7.5vh 5vw 0 5vw;
}
@media (max-width: 950px) {
  .informationen.section-15 .slide-content {
    padding: 0;
  }
}
.informationen.section-15 .check-it-out_wrapper {
  flex: 1 1 10%;
  font-size: clamp(1.6rem, 2cqw, 2.2rem);
}
.informationen.section-15 .check-it-out_wrapper .section__title {
  color: white;
  font-weight: 200;
  line-height: 1;
  text-align: center;
  padding-bottom: 3rem;
}
.informationen.section-15 .check-it-out_wrapper .buttons {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5rem;
}
.informationen.section-15 .check-it-out_wrapper .buttons a {
  min-width: clamp(20rem, 25cqw, 27.25rem);
  flex: 0 0 max-content;
}
@media (min-width: 951px) {
  .informationen.section-15 .check-it-out_wrapper .buttons {
    flex-direction: row;
    margin-top: 20px;
  }
}
.informationen.section-15 .warranty-wrapper {
  font-size: clamp(1.6rem, 2cqw, 2.2rem);
  margin-top: 5vh;
  margin-bottom: 2vh;
}
.informationen.section-15 .warranty-wrapper .warranty-info {
  font-size: 100%;
  color: white;
  border: 1px solid white;
  border-radius: 10px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
}
@media (max-width: 950px) {
  .informationen.section-15 .warranty-wrapper .warranty-info {
    font-size: 66%;
    text-align: justify;
  }
}
.informationen.section-15 .emission-wrapper {
  font-size: clamp(1.6rem, 2cqw, 2.2rem);
  position: relative;
  margin: 2rem 1rem 0;
  flex: 1 1 35%;
  display: flex;
  flex-direction: row;
}
.informationen.section-15 .emission-wrapper .emissions-text {
  font-size: 70%;
  padding-inline: 1rem;
  color: white;
  text-shadow: 0 0 16px black;
  align-self: flex-start;
}
.informationen.section-15 .emission-wrapper picture, .informationen.section-15 .emission-wrapper img {
  aspect-ratio: 0.75;
  max-height: 250px;
}

@keyframes circle-animation {
  0% {
    width: 33.3%;
    height: 33.3%;
    background-color: rgba(3, 193, 255, 0.6);
  }
  100% {
    width: 200%;
    height: 200%;
    background-color: rgba(3, 193, 255, 0);
  }
}
@keyframes safety-spin {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(359deg);
  }
}
@keyframes rotate-front {
  from {
    transform: translate(-50%, -50%) rotateZ(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotateZ(359deg);
  }
}
@media (min-width: 1200px) {
  .wheels.section-4 .rims-wrapper {
    margin-top: -3%;
  }
}
@media (min-width: 1025px) and (min-aspect-ratio: 16/8) and (max-height: 700px) {
  .wheels.section-4 .rims-wrapper {
    max-height: 33vh;
  }
}
@media (max-width: 1024px) and (orientation: portrait) {
  .wheels.section-4 .rim-left.r17, .wheels.section-4 .rim-left.r18, .wheels.section-4 .rim-left.r19 {
    left: 15.5%;
    bottom: 13%;
    width: 12.5%;
  }
  .wheels.section-4 .rim-right.r17, .wheels.section-4 .rim-right.r18, .wheels.section-4 .rim-right.r19 {
    left: 72%;
    bottom: 12.6%;
    width: 12.5%;
  }
  .wheels.section-4 .car-background {
    margin-top: -20%;
    z-index: 5;
  }
}
@media (max-width: 767px) {
  .wheels.section-4 .rims-wrapper .rims {
    bottom: 20%;
  }
  .wheels.section-4 .rims-wrapper .rims .rim img {
    max-width: 11.5vh;
  }
  .wheels.section-4 .rims-wrapper .rims .rim .name {
    font-size: 150%;
  }
}
@media (max-width: 600px) {
  .wheels.section-4 .title {
    font-size: 2rem;
  }
  .wheels.section-4 .car-background {
    margin-top: 0;
  }
  .wheels.section-4 .rims-wrapper {
    max-height: unset;
    position: static;
    margin-top: 5%;
    padding-top: 0px;
  }
  .wheels.section-4 .rims-wrapper .rims {
    position: static;
    transform: none;
    bottom: 37%;
    width: 90%;
    margin-left: 5%;
    flex-wrap: wrap;
  }
  .wheels.section-4 .rims-wrapper .rims .rim {
    width: 50%;
    margin-top: 3%;
    margin-bottom: 3%;
    font-size: 90%;
  }
  .wheels.section-4 .rims-wrapper .rims .rim .name {
    font-size: 90%;
    margin-top: 0.5rem;
    max-width: 70%;
  }
  .wheels.section-4 .fp-tableCell {
    display: block;
  }
}/*# sourceMappingURL=musso-ev.css.map */