@charset "UTF-8";
/* ==========================================================================
   MAIN.SCSS
   Diese Datei bündelt alle einzelnen SCSS-Bausteine zu einer einzigen Datei.
   ========================================================================== */
/* 1. Vendor (Externe Plugins) */
/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */
@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}
.switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 17px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #47f353;
}

input:focus + .slider {
  box-shadow: 0 0 1px #28f34c;
}

input:checked + .slider:before {
  -webkit-transform: translateX(13px);
  -ms-transform: translateX(13px);
  transform: translateX(13px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 17px;
}

.slider.round:before {
  border-radius: 50%;
}

/* 2. Base (Globale Styles, Variablen, Fonts) */
/* WICHTIG: Die Reihenfolge ist wichtig. Variablen und Fonts sollten zuerst geladen werden. */
:root {
  --bg-page: #0F1320;
  --bg-elevated: #1A1F2E;
  --bg-hero: #1F1428;
  --bg-ai: #1A1530;
  --bg-card: rgba(255, 255, 255, 0.06);
  --bg-card-hover: rgba(255, 255, 255, 0.09);
  --brand-primary: #ff00ea;
  --brand-light: #00f1f1;
  --brand-dark: #8b5cf6;
  --brand-pink-bg: rgba(255, 0, 234, 0.12);
  --ai-primary: #7F77DD;
  --ai-text: #DDDAF8;
  --ai-bg: rgba(127, 119, 221, 0.4);
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.85);
  --text-tertiary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.6);
  --success: #B7EDD7;
  --success-bg: rgba(93, 202, 165, 0.3);
  --warning: #FFD89A;
  --warning-bg: rgba(244, 192, 117, 0.3);
  --border-default: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 14px;
  --radius-xl: 16px;
  --radius-full: 999px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", "Segoe UI", system-ui, sans-serif;
}

body {
  font-family: var(--font);
  background: var(--bg-page);
  color: var(--text-primary);
  margin: 0;
  padding: 0;
  /* Wichtig für die App-Struktur: */
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Basis Animationen aus dem Prototyp */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
body {
  color: white;
}

a {
  color: white;
}

a:hover {
  color: #97d9ff;
}

p {
  color: #d6d6d6 !important;
}

.text-primary {
  color: #bababa !important;
}

.line-height-1 {
  line-height: 1;
}

.text-small {
  font-size: 10pt;
}

/*.bg-white {
  background: #1b1e21 !important;
  color: #c8c7c7 !important;
}

.bg-light {
  background: #4e545b !important;
  color: #c8c7c7 !important;
}

.image-card {
  background: #4e545b !important;
}

 */
/*html {
  background: #1b1e21 !important;
  color: #d6d6d6 !important;
}

body {
  background: #1b1e21 !important;
  color: #d6d6d6 !important;
}

p {
  color: #d6d6d6 !important;
}

a {
  color: #bababa !important;
}

.text-primary {
  color: #bababa !important;
}

.bg-white {
  background: #1b1e21 !important;
  color: #c8c7c7 !important;
}

.bg-light {
  background: #4e545b !important;
  color: #c8c7c7 !important;
}

.image-card{
  background: #4e545b !important;
}*/
.background-gradient {
  background: #000000;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.background-dark-gradient {
  background: linear-gradient(0deg, #000000, rgba(0, 0, 0, 0));
}

.background-light-blur {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
}

.background-dark-blur {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(15px);
}

.background-dark-gradient-half {
  background: linear-gradient(0deg, #000000, rgba(0, 0, 0, 0));
  -o-background-size: 50% auto;
  -webkit-background-size: 50% auto;
  -moz-background-size: 50% auto;
  background-size: 50% auto;
}

.background-gradient-p-b {
  background: linear-gradient(0deg, rgba(209, 0, 255, 0.5), rgba(0, 255, 247, 0.5));
}

.border-gradient::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 25px;
  border: 2px solid transparent;
  background: linear-gradient(135deg, #ff00ea, #8b5cf6, #00f1f1) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

.background-light-blur {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
}

.border-gradient-circle::before {
  border-radius: 50% !important;
}

.border-gradient-rect {
  background: rgba(255, 255, 255, 0.03) !important;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 25px;
  border: 1.5px solid transparent !important;
  background-clip: padding-box;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.border-gradient-rect::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px !important;
  border: 1.5px solid transparent;
  background: linear-gradient(135deg, #ff00ea, #8b5cf6, #00f1f1) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

@keyframes shimmer {
  from {
    background-position: -400px 0;
  }
  to {
    background-position: 400px 0;
  }
}
.lazy {
  background-image: none !important;
  background-color: rgba(255, 255, 255, 0.06);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04) 25%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.04) 75%) !important;
  background-size: 800px 100% !important;
  animation: shimmer 1.4s infinite linear;
}

:root {
  --mg-header-bg: #0F1320;
  --mg-text-primary: #FFFFFF;
  --mg-text-tertiary: rgba(255, 255, 255, 0.7);
  --mg-brand-primary: #ff00ea;
  --mg-ui-font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", "Segoe UI", sans-serif;
}

html {
  margin: 0 auto;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

html, body {
  font-family: var(--mg-ui-font);
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body {
  padding-right: env(safe-area-inset-right);
  padding-bottom: var(--inset-bottom, env(safe-area-inset-bottom, 0px));
  padding-left: env(safe-area-inset-left);
  font-size: 10pt;
}

#app {
  flex: 1;
  overflow-y: auto;
  /* Platz für Tabbar + untere Safe Area */
  padding: 15px 16px calc(100px + var(--inset-bottom, env(safe-area-inset-bottom, 0px))) 16px;
  -webkit-overflow-scrolling: touch;
}

h1, h2, h3, h4, p {
  font-family: var(--mg-ui-font);
}

a {
  font-family: var(--mg-ui-font);
  text-decoration: none;
}

body {
  overflow-y: scroll;
}

html {
  box-sizing: border-box;
}

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

.wave-container {
  background: #EEE;
}

.wave-home-link {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1034;
}

.wave-container > svg {
  display: block;
}

.wave-container {
  position: relative;
  background: #09F;
  color: #FFF;
  text-align: center;
  overflow: hidden;
}

svg {
  display: block;
}

.wave-container {
  background: #EEE;
}

.wave-container > svg {
  display: block;
}

.wave-container {
  position: relative;
  background: #0055B2;
  color: #FFF;
  text-align: left;
  overflow: hidden;
}

.image-card {
  border: solid 2px #f1f1f1;
  box-shadow: #e2e2e2 0 0 5px;
  position: relative;
}

.header {
  background: #FFFFFF;
  width: 100%;
  height: 50px;
  margin-top: -50px;
  padding-left: 15px;
  padding-right: 15px;
  line-height: 50px;
}

.header strong {
  font-size: 1.2em;
}

.header .search-input {
  display: inline;
  margin-top: 7px;
}

.header img {
  height: 50px;
  padding: 5px;
}

i {
  vertical-align: middle;
}

.brand-title {
  color: #008BFA;
  font-size: 1.2em;
}

.sidebar {
  background: #FFFFFF;
  width: 250px;
  min-height: 600px;
  padding-top: 7px;
  display: none;
  position: fixed;
  top: 50px;
  z-index: 100;
}

.sidebar strong {
  color: #008BFA;
  font-size: 1.2em;
}

.sidebar ul {
  list-style-type: none;
  margin: 0;
  padding: 10px 0 0 0;
  width: 100%;
}

.sidebar li a {
  color: #556270;
  display: block;
  padding: 8px 15px;
}

.sidebar li a.active {
  color: #008BFA;
  background-color: #E5F3FE;
  border-left: solid 3px #008BFA;
}

.content {
  background: #F7F8FA;
  position: relative;
  width: 100%;
  margin-top: 50px;
  box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.25);
}

.holder {
  margin: 0 15px;
}

.card {
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.25) 0 5px 15px;
  padding: 5px;
  margin-top: 10px;
  max-width: 400px;
  min-width: 275px;
}

.card .card-main {
  min-height: 100px;
  border-bottom: 1px solid #eeeeee;
}

.card strong {
  line-height: 25px;
}

.card .number {
  margin-top: 10px;
  font-size: 2em;
}

.card .smiley {
  font-size: 3em;
}

.card .smiley-small {
  font-size: 2em;
}

.card .description {
  margin-top: 5px;
  font-size: 0.8em;
}

.menu-bar {
  display: inline-block;
  cursor: pointer;
}

.search-bar {
  display: none;
}

@media only screen and (max-width: 1000px) {
  .sidebar {
    box-shadow: rgba(0, 0, 0, 0.25) 10px 10px 10px;
  }
  .content {
    box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.25);
  }
}
@media only screen and (min-width: 1000px) {
  .image-card {
    position: relative;
    z-index: 10;
  }
  .menu-bar {
    display: none;
  }
  .search-bar {
    display: block;
  }
  .sidebar {
    display: block;
    position: relative;
    top: 0;
  }
  .header {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.gradient-icon {
  width: 35px;
  height: 35px;
  line-height: 35px;
  color: white;
  font-size: 1.2em;
  display: inline-block;
  text-align: center;
  font-weight: bold;
  margin-left: 20px;
  background: #008BFA;
  background: linear-gradient(0deg, #008BFA 0%, #8bb9ff 100%);
}

.material-icons.md-18 {
  font-size: 18px;
}

.material-icons.md-24 {
  font-size: 24px;
}

.material-icons.md-36 {
  font-size: 36px;
}

.material-icons.md-48 {
  font-size: 48px;
}

.material-icons.rem-4 {
  font-size: 4rem;
}

.material-icons.md-inactive {
  color: rgba(0, 0, 0, 0.3);
}

.circle-letter {
  border-radius: 25px;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  color: #ffffff;
  display: inline-block;
  text-align: center;
  font-size: 30px;
  width: 50px;
  height: 50px;
  line-height: 50px;
}

.bg-green {
  background: #6acc00;
  background: linear-gradient(0deg, #00fa08 0%, #adff8d 100%);
}

.bg-yellow {
  background: #8c8600;
  background: linear-gradient(0deg, #faeb00 0%, #fffa97 100%);
}

.bg-red {
  background: #cc2707;
  background: linear-gradient(0deg, #fa0011 0%, #ff6468 100%);
}

.bg-blue {
  background: #335bcc;
  background: linear-gradient(0deg, #008BFA 0%, #8bb9ff 100%);
}

.bg-orange {
  background: #cc8a65;
  background: linear-gradient(0deg, #fa5f00 0%, #ff9a81 100%);
}

.stage {
  width: 150px;
  height: 15px;
}

.stage-first {
  background: #d6d6d6;
  width: 30%;
  height: 15px;
  float: left;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.stage-second {
  background: #d6d6d6;
  margin-left: 2px;
  width: 30%;
  height: 15px;
  float: left;
}

.stage-third {
  background: #d6d6d6;
  margin-left: 2px;
  width: 30%;
  height: 15px;
  float: left;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.stage-success {
  background: #93ceba !important;
}

.max-width-100 {
  max-width: 100px;
}

.max-width-150 {
  max-width: 150px;
}

.max-width-200 {
  max-width: 200px;
}

.max-width-400 {
  max-width: 400px;
}

.content-center {
  margin: 0 auto;
}

.font-em-1d2 {
  font-size: 1.2em;
}

.font-em-1d4 {
  font-size: 1.4em;
}

.font-em-1d6 {
  font-size: 1.6em;
}

.font-em-1d8 {
  font-size: 1.1em;
}

.font-em-2 {
  font-size: 2em;
}

.font-em-2d5 {
  font-size: 2.5em;
}

.font-em-3 {
  font-size: 3em;
}

.text-bold {
  font-weight: bold;
}

.text-black {
  color: black;
}

.text-black a {
  color: black;
}

.btn-round {
  border-radius: 100px !important;
}

.bg-gradient {
  background: #007dfe; /* Old browsers */
  background: -moz-linear-gradient(45deg, #007dfe 0%, #034798 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg, #007dfe 0%, #034798 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, #007dfe 0%, #034798 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#007dfe', endColorstr='#034798', GradientType=1); /* IE6-9 fallback on horizontal gradient */
  color: white;
}

.box-bg-cover-half {
  background-size: cover;
  min-height: 200px;
  width: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
}

.box-after-cover {
  margin-top: 190px;
}

.box-miles {
  position: absolute;
  bottom: 20px;
  left: -5px;
  background: #1d2124;
  color: #ffffff;
  width: 90px;
  padding: 3px;
  font-size: 12px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.box-price {
  position: absolute;
  bottom: 20px;
  right: -5px;
  background: #1d2124;
  color: #ffffff;
  width: 90px;
  padding: 3px;
  font-size: 12px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.box-button {
  position: absolute;
  bottom: -20px;
  z-index: 1002;
}

.info-dot {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1001;
}

.text-gray-light {
  color: #c7c7c7;
}

.height-200px {
  height: 200px;
}

.min-height-200px {
  min-height: 200px;
}

.min-width-200px {
  min-width: 200px;
}

.square-image {
  width: 180px;
  height: 180px;
  object-fit: cover; /* Zuschneiden des Bildes */
  display: block; /* Sicherstellen, dass das Bild Block-Layout hat */
}

.height-250px {
  height: 250px;
}

.height-50p {
  height: 50%;
}

.min-height-50p {
  min-height: 50%;
}

.height-50px {
  height: 50px;
}

.container-relative {
  position: relative;
}

.text-left-bottom {
  bottom: 0;
  left: 15px;
  position: absolute;
}

.text-left-bottom h2 {
  font-size: 3rem;
  font-weight: bold;
  text-shadow: rgba(29, 33, 36, 0.5) 1px 1px 1px;
}

.text-left-bottom p {
  font-size: 2rem;
  font-family: var(--mg-ui-font);
  font-weight: bold;
  text-shadow: rgba(29, 33, 36, 0.5) 1px 1px 1px;
}

.btn-next {
  margin-bottom: -15px;
  background: #171717;
  color: #ffffff;
  bottom: 0;
  right: 10px;
  position: absolute;
  padding: 10px;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.5) 0 2px 4px;
}

.btn-next:hover {
  color: #ffffff;
  box-shadow: none;
}

.horizontal-list {
  z-index: 1727;
  overflow-x: scroll;
  width: 100%;
  display: inline-flex;
  float: left;
  overflow-y: hidden;
  padding-right: 10px;
}

.list-entry {
  display: inline-block;
  border-radius: 20px;
  margin: 5px 5px;
  width: 120px;
  height: 120px;
  min-width: 120px;
  min-height: 120px;
  cursor: pointer;
  float: left;
  overflow: hidden;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.list-entry.active {
  -webkit-filter: none !important;
  filter: none !important;
}

.list-entry .list-entry-in-text {
  text-align: center;
  color: white;
  text-shadow: #000000 2px 2px 2px;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently  supported by Chrome, Opera and Firefox */
}

.navbar-top {
  height: 60px;
  line-height: 60px;
}

.navbar-top a, .navbar-top a:hover {
  color: black;
}

.navbar-top .nav-title {
  font-family: var(--mg-ui-font);
  font-weight: bold;
  font-size: 2rem;
}

.navbar-top-menu {
  font-family: var(--mg-ui-font);
  font-weight: bold;
  border-radius: 10px;
}

.navbar-top-menu ul {
  list-style: none;
  margin-bottom: 0;
}

.navbar-top-menu ul li {
  padding: 10px 0;
}

.navbar-top-menu ul li a, .navbar-top-menu ul li a:hover {
  color: #1f1f1f;
}

.red-dot {
  position: absolute;
  background: #e31bd4;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.has-search .form-control {
  padding-left: 2.375rem;
}

.has-search .form-control-feedback {
  position: absolute;
  z-index: 2;
  display: block;
  width: 2.375rem;
  height: 2.375rem;
  line-height: 2.375rem;
  text-align: center;
  pointer-events: none;
  color: #aaa;
}

.vertical-item {
  border-radius: 10px;
  height: 90px;
}

.vertical-item .title {
  font-size: 1.3rem;
  text-align: left;
  line-height: 90px;
}

.vertical-item .icon {
  line-height: 90px;
  text-align: right;
}

footer a, footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.rounded-25 {
  border-radius: 25px;
}

.rounded-15 {
  border-radius: 15px;
}

.header {
  min-height: 700px !important;
}

.horizontal-list {
  overflow-x: scroll;
  width: 100%;
  display: inline-flex;
}

.entry {
  display: inline-block;
  float: left;
  margin-right: 15px;
  min-width: 170px;
  min-height: 170px;
  padding-top: 100px;
}

.noselect {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
}

.partitioned {
  padding-left: 5px;
  letter-spacing: 20px;
  border: 0;
  font-size: 12pt !important;
  text-align: center;
  background-image: linear-gradient(to left, black 70%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 50px 1px;
  background-repeat: repeat-x;
  background-position-x: 35px;
}

/* Basis-Klasse für die gefüllten Icons */
.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -moz-font-feature-settings: "liga";
  -moz-osx-font-smoothing: grayscale;
}

/* Klasse für die Outlined-Icons, die von der Basis-Klasse erbt */
.material-icons-outlined {
  font-family: "Material Icons Outlined"; /* Weist die Outlined-Schriftart zu */
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -moz-font-feature-settings: "liga";
  -moz-osx-font-smoothing: grayscale;
}

.blur7px {
  filter: blur(7px);
}

.slidecontainer {
  width: 100%;
  padding: 10px;
}

.sliderx {
  -webkit-appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 5px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
}

.sliderx:hover {
  opacity: 1;
}

.sliderx::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #e31bd4;
  cursor: pointer;
}

.sliderx::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #e31bd4;
  cursor: pointer;
}

.article-style {
  font-size: 10pt !important;
  line-height: 15pt;
}

.article-style h1 {
  font-size: 16pt !important;
}

.article-style h2 {
  font-size: 14pt !important;
}

#header-full {
  z-index: 100;
  position: fixed;
  background: black;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.2s ease-in-out;
}

#header-full.small {
  height: 50px;
  padding-top: 5px;
}

#header-full.small .rounded-25 {
  display: none;
}

#header-full.small .switch-btn-background {
  margin-top: 5px;
}

#header-title {
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}

#header-title.hidden {
  opacity: 0;
  height: 0;
  transition: opacity 0.2s ease-in-out;
}

.top-fix {
  position: fixed;
  top: 0;
  padding-top: 50px;
  padding-bottom: 5px;
  width: 100%;
  z-index: 100;
  max-width: 400px;
  transition: height 0.5s, opacity 0.5s;
  backdrop-filter: blur(5px);
}

.placeholder-offer {
  height: 10px;
}

.only-top {
  overflow: hidden;
}

.only-top-wrapper {
  transition: max-height 0.1s, opacity 0.1s;
  max-height: 1000px;
  opacity: 1;
}

.hidden {
  max-height: 0;
  opacity: 0;
  display: none;
}

.timeinfo {
  font-size: 6pt;
  background: #e31bd4;
  color: #fff;
  display: inline-block;
  border-radius: 10px;
  padding: 0 3px;
}

.moneyinfo {
  font-size: 6pt;
  background: #fff;
  color: #000;
  display: inline-block;
  border-radius: 10px;
  padding: 0 6px 0 3px;
}

.addinfo {
  font-size: 6pt;
  background: #fff;
  color: #000;
  display: inline-block;
  border-radius: 10px;
  padding: 0 6px 0 3px;
}

.grid-info {
  position: absolute;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}

video {
  border-radius: 15px;
}

.rounded-strong {
  border-radius: 1.3rem;
}

.custom-badge-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.custom-badge + .custom-badge {
  margin-top: 8px;
  margin-left: auto !important;
  margin-right: auto !important;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.stacked-images {
  position: relative; /* Basis für absolute Positionierung */
  width: 100%; /* Volle Breite des Containers */
  max-width: 1200px; /* Optional: maximale Breite setzen */
  height: auto;
  min-height: 200px;
}

.stacked-images img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0; /* Standardmäßig unsichtbar */
  transition: opacity 0.5s ease-in-out; /* Sanfte Einblendung */
}

.text-left {
  text-align: left !important;
}

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

.mr-cc-slide img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gray-scale {
  filter: grayscale(100%);
}

.no-underline {
  text-decoration: none;
}

.no-underline a {
  text-decoration: none;
}

:root {
  --accent-color: #E800FF;
  --background-color-dark: #121212;
  --container-bg-color: rgba(26, 26, 26, 0.8);
  --text-color-primary: #FFFFFF;
  --text-color-secondary: #b3b3b3;
  --border-radius-main: 20px;
}

.mr-calculator-component {
  color: var(--text-color-primary);
}

.mr-calculator-component h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.mr-calculator-component p {
  color: var(--text-color-secondary);
  margin-bottom: 1.5rem;
}

.mr-calculator-component strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  margin-top: 2rem;
}

.calculator-box {
  position: relative;
  background-color: var(--container-bg-color);
  border-radius: var(--border-radius-main);
  padding: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.calculator-box::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border-radius: var(--border-radius-main);
  z-index: -1;
}

.mr-cc-slider {
  display: flex;
  flex-direction: column; /* Vertikale Anordnung */
  align-items: center; /* Zentrierung */
  width: 100%;
  transition: transform 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.mr-cc-slide {
  width: 70%; /* Breite der Karten */
  margin-bottom: 20px; /* Abstand zwischen den Karten */
  box-sizing: border-box;
  transition: transform 0.35s ease, opacity 0.35s ease;
  opacity: 0.4;
  transform: scale(0.85);
  cursor: grab;
}

.mr-cc-slide.selected {
  opacity: 1;
  transform: scale(1);
  pointer-events: none;
}

.mr-cc-slide img {
  width: 100%;
  border-radius: 10px;
  user-select: none;
  box-shadow: none;
}

.points-summary {
  margin: 25px 0;
  line-height: 1.6;
  font-size: 1.1rem;
}

.points-summary strong {
  font-size: 1.3rem;
  margin-top: 0.5rem;
  color: var(--accent-color);
}

.stacked-images {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 20px auto;
  aspect-ratio: 16/9;
}

.stacked-images img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
  filter: drop-shadow(0 0 5px var(--accent-color));
}

.stacked-images img#world-map-base {
  opacity: 1;
  filter: grayscale(1) brightness(2) drop-shadow(0 0 2px #fff);
}

input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: #333;
  border-radius: 2px;
  outline: none;
  transition: opacity 0.2s;
  cursor: pointer;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--accent-color);
  border-radius: 50%;
  border: 2px solid var(--background-color-dark);
  box-shadow: 0 0 5px var(--accent-color);
}

input[type=range]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--accent-color);
  border-radius: 50%;
  border: 2px solid var(--background-color-dark);
  box-shadow: 0 0 5px var(--accent-color);
}

.flight-example {
  transition: filter 0.3s ease;
}

.gray-scale {
  filter: grayscale(100%) brightness(0.7);
}

.cta-button {
  display: block;
  position: relative;
  background: var(--accent-color);
  color: var(--text-color-primary);
  border: none;
  border-radius: 12px;
  padding: 15px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px var(--accent-color);
}

.cta-button::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  margin-left: 12px;
}

/* Container für den horizontalen Kartenslider */
.mr-cc-slider-container {
  display: flex;
  overflow-x: auto; /* Ermöglicht horizontales Scrollen/Wischen */
  gap: 15px; /* Abstand zwischen den Karten */
  padding: 20px 10px;
  margin: 15px 0;
  /* "Snap"-Effekt für ein besseres Scroll-Gefühl */
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Versteckt Scrollbar in Firefox */
}

/* Versteckt Scrollbar in Webkit-Browsern (Chrome, Safari) */
.mr-cc-slider-container::-webkit-scrollbar {
  display: none;
}

/* Einzelne Karte (Slide) */
.mr-cc-slide {
  flex: 0 0 60%; /* Jede Karte nimmt 60% der Container-Breite ein */
  max-width: 220px;
  cursor: pointer;
  border: 3px solid transparent; /* Platzhalter für den "selected"-Rahmen */
  border-radius: 15px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
  scroll-snap-align: center; /* Zentriert die Karte beim Snapping */
}

.mr-cc-slide:hover {
  transform: scale(1.03); /* Leichter Schwebe-Effekt */
}

/* Stil für die ausgewählte Karte */
.mr-cc-slide.selected {
  border-color: #ffffff; /* Blauer Rahmen zur Hervorhebung */
  transform: scale(1.05); /* Macht die ausgewählte Karte etwas größer */
  box-shadow: 0 4px 15px rgb(180, 180, 180);
}

/* Bild innerhalb der Karte */
.mr-cc-slide img {
  display: block;
  width: 100%;
  height: auto;
}

/* Styling für den klickbaren Header */
.accordion-summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  transition: background-color 0.2s ease-in-out;
}

.accordion-summary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.accordion-summary::-webkit-details-marker {
  display: none; /* Entfernt den Standard-Pfeil */
}

.accordion-summary .icon {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 300;
  transition: transform 0.3s ease;
}

details[open] > summary .icon {
  transform: rotate(45deg); /* Dreht das Icon, wenn geöffnet */
}

.accordion-content {
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: rgba(0, 0, 0, 0.1);
}

.icon-display {
  width: 4rem;
  height: 4rem;
}

.grayscale {
  filter: grayscale(100%);
  opacity: 0.7; /* Optional: Macht die inaktiven Badges etwas transparenter */
}

/* Optional: Fügt einen sanften Übergang hinzu, wenn ein Badge farbig wird. */
.img-fluid {
  transition: filter 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

@keyframes tadaa {
  0% {
    transform: scale(1) rotate(0deg);
    color: #ffffff !important;
  }
  10% {
    transform: scale(0.9) rotate(-10deg);
  }
  20% {
    transform: scale(0.9) rotate(10deg);
    color: #6ecceb;
  }
  30% {
    transform: scale(1.2) rotate(-10deg);
  }
  40% {
    transform: scale(1.2) rotate(10deg);
  }
  50% {
    transform: scale(1.2) rotate(-10deg);
    color: #e31bd4;
    margin-top: 10px;
  }
  60% {
    transform: scale(1.2) rotate(10deg);
  }
  70% {
    transform: scale(1.2) rotate(-10deg);
  }
  80% {
    transform: scale(1.2) rotate(10deg);
    color: #6ecceb;
  }
  90% {
    transform: scale(0.9) rotate(-10deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
    color: #ffffff !important;
  }
}
.icon-animate {
  animation: tadaa 0.8s ease;
}

.stepper-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.stepper-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.stepper-item::before {
  position: absolute;
  content: "";
  border-bottom: 2px solid #ccc;
  width: 100%;
  top: 20px;
  left: -50%;
  z-index: 2;
}

.stepper-item::after {
  position: absolute;
  content: "";
  border-bottom: 2px solid #ccc;
  width: 100%;
  top: 20px;
  left: 50%;
  z-index: 2;
}

.stepper-item .step-counter {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ccc;
  margin-bottom: 6px;
}

.stepper-item.active .step-counter {
  background-color: #007bff; /* Bootstrap Primary */
  color: white;
}

.stepper-item.completed .step-counter {
  background-color: #28a745; /* Bootstrap Success */
  color: white;
}

.stepper-item.error .step-counter {
  background-color: #dc3545; /* Bootstrap Danger */
  color: white;
}

.stepper-item:first-child::before {
  content: none;
}

.stepper-item:last-child::after {
  content: none;
}

.status-box {
  border-left-width: 5px;
  border-left-style: solid;
}

.border-success {
  border-color: #28a745 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.text-success {
  color: #28a745 !important;
}

.text-warning {
  color: #ffc107 !important;
}

.text-danger {
  color: #dc3545 !important;
}

#modal-body {
  z-index: 5;
}

.modal-close {
  z-index: 5;
}

/* ========================================================
   MG Utilities — Shared single-purpose helper classes
   ======================================================== */
.mg-gradient-topline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff00ea, #8b5cf6, #00f1f1);
  z-index: 1;
  pointer-events: none;
}

.mg-gradient-text {
  background: linear-gradient(135deg, #ff00ea, #8b5cf6, #00f1f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mg-progress-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  height: 6px;
  overflow: hidden;
}

.mg-progress-fill {
  background: linear-gradient(90deg, #ff00ea, #8b5cf6, #00f1f1);
  height: 100%;
  border-radius: 6px;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.mg-card-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.mg-icon-circle-glass {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mg-plat-bar-track {
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  width: 100%;
  overflow: hidden;
  margin-top: 4px;
}

.mg-plat-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #008BFA, #00e5ff);
  border-radius: 2px;
  transition: width 0.5s ease;
}

.mg-promo-card {
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mg-icon-circle {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--brand-primary, #ff00ea);
}
.mg-icon-circle i {
  font-size: 28px;
}

.mg-cta-block {
  display: block;
  width: 100%;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
}

.mg-progress-track-sm {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  height: 6px;
  overflow: hidden;
  margin-bottom: 20px;
}

.mg-progress-fill-sm {
  height: 100%;
  background: linear-gradient(90deg, #ff00ea, #8b5cf6, #00f1f1);
  border-radius: 4px;
  transition: width 0.6s;
}

.mg-video-container {
  position: relative;
  z-index: 2;
  font-size: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
.mg-video-container video {
  display: block;
  width: 100%;
  height: auto;
  outline: none;
  border: none;
}

.mg-mx-auto {
  margin: auto;
}

.text-underline {
  text-decoration: underline;
}

/* --- head-slider logo badge --- */
.hs-logo-badge {
  top: 20px;
  left: 10px;
  box-shadow: 0 0 6px black;
}

/* text color utilities */
.text-white {
  color: #fff;
}

.text-brand-cyan {
  color: #00f1f1;
}

/* --- head options cog link --- */
.head-cog-link {
  position: absolute;
  top: 45px;
  right: 20px;
  z-index: 100;
  text-shadow: 2px 2px 2px black;
}

/* 3. Components (Bausteine wie Buttons, Header, etc.) */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1055;
}
.modal.fade {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.modal.show {
  opacity: 1;
  background: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 1rem;
  pointer-events: none;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 2rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  border-radius: 0.5rem;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  gap: 8px;
}
.modal-footer > * {
  flex: 1;
}

/* ========================================================
   Designer Header Styles (aus Prototyp übernommen)
   ======================================================== */
.app-header {
  /* Padding exakt wie im Prototyp: 6px 18px 14px */
  padding: 6px 18px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  /* Hintergrund auf globale Variable referenzieren */
  background: var(--bg-page);
  /* --- HIER IST DER FIX --- */
  position: sticky;
  top: 0;
  padding-top: calc(var(--inset-top, env(safe-area-inset-top, 0px)) + 8px);
  /* ------------------------ */
  z-index: 1030;
  width: 100%;
}

/* --- Greeting (Hallo Max...) --- */
.header-greeting {
  font-size: 11px; /* Im Prototyp 11px */
  color: var(--text-tertiary);
  margin-bottom: 8px; /* Im Prototyp 8px */
  font-family: var(--font);
  line-height: 1.2;
}

/* --- Logo --- */
.header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Oswald", "Impact", sans-serif;
  font-size: 18px;
  letter-spacing: 0.5px;
  line-height: 1;
  color: var(--text-primary);
  text-transform: uppercase;
  text-decoration: none;
}

.header-logo:hover {
  color: var(--text-primary);
  text-decoration: none;
}

.header-logo .brand-logo-img {
  height: 36px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

/* --- Buttons (Notification & Avatar) --- */
.header-actions {
  display: flex;
  gap: 8px; /* Im Prototyp 8px */
  align-items: center;
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0;
  color: var(--text-primary);
  text-decoration: none;
  transition: background 0.18s ease, transform 0.12s ease;
  cursor: pointer;
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
}

.icon-btn:active {
  transform: scale(0.96);
}

.avatar-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff00ea, #8b5cf6);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font);
  transition: transform 0.12s ease;
  cursor: pointer;
  overflow: hidden;
  /* Wenn echtes Foto vorhanden: kein Gradient-Hintergrund */
}
.avatar-btn.avatar-btn--photo {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.15);
  padding: 0;
}

.avatar-btn-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.avatar-btn:hover {
  color: #FFFFFF;
}

.avatar-btn:active {
  transform: scale(0.96);
}

/* --- Notification Dot Animation --- */
.notif-dot {
  position: absolute;
  top: 6px;
  right: 7px;
  width: 9px;
  height: 9px;
  background: var(--brand-primary);
  border-radius: 50%;
  border: 2px solid var(--bg-page);
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(255, 0, 234, 0.5);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 0 6px rgba(255, 0, 234, 0);
  }
}
/* ========================================================
   Designer Navbar (Tabbar)
   ======================================================== */
.tabbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: calc(80px + var(--inset-bottom, env(safe-area-inset-bottom, 0px)));
  background: rgba(15, 19, 32, 0.85);
  /* Nur die Standard-Property schreiben — lightningcss (via @tailwindcss/vite)
     ergänzt -webkit- anhand der browserslist-Targets selbst. Schreibt man
     -webkit- manuell dazu, verwirft lightningcss die Standard-Property! */
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-default);
  display: flex;
  justify-content: space-around;
  /* WICHTIG: align-items auf stretch setzen, damit die Klickfläche 100% Höhe einnimmt */
  align-items: stretch;
  padding-bottom: var(--inset-bottom, env(safe-area-inset-bottom, 0px));
  z-index: 1020;
}

/* Der Tab an sich (Große unsichtbare Klickfläche für Mobile UX) */
.tabbar .tabbar-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.1s ease;
  cursor: pointer;
  z-index: 1; /* Hebt Icon und Text über den ::after Hintergrund */
}

/* Icon Styling */
.tabbar .tabbar-item svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  margin-bottom: 4px;
  transition: transform 0.2s ease, stroke-width 0.2s ease, stroke 0.2s ease;
}

.tabbar .tabbar-item span {
  font-size: 10px;
  font-weight: 500;
}

.tabbar .tabbar-item:hover {
  color: var(--text-primary, #FFFFFF);
}

.tabbar .tabbar-item:active {
  transform: scale(0.95); /* Leichtes Drücken beim Tippen */
}

@keyframes scaleIn {
  0% {
    transform: translateX(-50%) scaleX(0);
  }
  100% {
    transform: translateX(-50%) scaleX(1);
  }
}
@keyframes popIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.85);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
/* ==========================================
   Aktiver Zustand
   ========================================== */
.tabbar .tabbar-item.active {
  color: var(--text-primary, #FFFFFF);
  /* WICHTIG: Hier auf transparent lassen, NICHT vollflächig pink machen! */
  background: transparent;
}

/* 1. Der pinke Strich oben an der Kante der Navbar (::before) */
.tabbar .tabbar-item.active::before {
  content: "";
  position: absolute;
  top: -1px; /* Exakt bündig mit der oberen Navbar-Linie */
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 3px;
  background: var(--brand-primary);
  border-radius: 0 0 3px 3px;
  animation: scaleIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 2. Die Pille / Der Kasten im Hintergrund (::after) - wie in deinem Screenshot */
.tabbar .tabbar-item.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; /* Perfekte Breite für das Wort "Cockpit" */
  height: 52px; /* Lässt angenehmen Abstand nach oben und unten */
  background: var(--brand-pink-bg, rgba(255, 0, 234, 0.15));
  border-radius: 16px; /* Die starke, schöne Abrundung */
  z-index: -1; /* Legt den Kasten HINTER Icon und Text */
  animation: popIn 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Aktives Icon Styling */
.tabbar .tabbar-item.active svg {
  stroke-width: 2.5;
  stroke: var(--brand-primary, #ff00ea);
  filter: drop-shadow(0 2px 4px rgba(255, 0, 234, 0.4));
  transform: translateY(-1px);
}

.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.375rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-round {
  border-radius: 50px;
}

.btn-warning {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  background-color: #ffca2c;
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:hover {
  background-color: #bb2d3b;
}

.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
  background-color: transparent;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
}

.circled-button {
  background: linear-gradient(to right, #ff00ea, #8b5cf6, #00f1f1);
  text-align: center;
  border: 0;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 10px;
  color: #fff;
  font-size: 12px;
  border-radius: 3px;
  transition: 0.4s ease;
  cursor: pointer;
  -webkit-mask: radial-gradient(circle at left center, transparent 5px, black 5px) left/51% 100% no-repeat, radial-gradient(circle at right center, transparent 5px, black 5px) right/51% 100% no-repeat;
  mask: radial-gradient(circle at left center, transparent 5px, black 5px) left/51% 100% no-repeat, radial-gradient(circle at right center, transparent 5px, black 5px) right/51% 100% no-repeat;
  line-height: 1.5rem;
  text-decoration: none;
  min-width: 85px;
}

.circled-button-big {
  background: linear-gradient(to right, #ff00ea, #8b5cf6, #00f1f1);
  text-align: center;
  border: 0;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 10px;
  color: #fff;
  font-size: 18px;
  border-radius: 3px;
  transition: 0.4s ease;
  cursor: pointer;
  -webkit-mask: radial-gradient(circle at left center, transparent 5px, black 5px) left/51% 100% no-repeat, radial-gradient(circle at right center, transparent 5px, black 5px) right/51% 100% no-repeat;
  mask: radial-gradient(circle at left center, transparent 5px, black 5px) left/51% 100% no-repeat, radial-gradient(circle at right center, transparent 5px, black 5px) right/51% 100% no-repeat;
  line-height: 1.5rem;
  text-decoration: none;
  min-width: 155px;
}

.circled-button-blue {
  background: linear-gradient(to right, #3b82f6, #6366f1);
}

.circled-button .material-icons {
  font-size: 18px;
}

.circled-button.white {
  background: #ffffff !important;
  color: #252525 !important;
}

.circled-button:hover {
  background: linear-gradient(to right, #cc00bb, #7c3ace, #00c4c4);
  opacity: 0.9;
}

.box {
  display: inline-block;
}

.mask {
  -webkit-mask: radial-gradient(circle 5px at 0 100%, rgba(0, 0, 0, 0) 98%, #000) top left, radial-gradient(circle 5px at 100% 100%, rgba(0, 0, 0, 0) 98%, #000) top right, radial-gradient(circle 5px at 0 0, rgba(0, 0, 0, 0) 98%, #000) bottom left, radial-gradient(circle 5px at 100% 0, rgba(0, 0, 0, 0) 98%, #000) bottom right;
  -webkit-mask-size: 51% 51%;
  -webkit-mask-repeat: no-repeat;
  padding-left: 10px;
  padding-right: 10px;
}

.mask-side {
  mask: radial-gradient(circle 0px at 50% 0, rgba(0, 0, 0, 0) 98%, #000) top left, radial-gradient(circle 3px at 85% 0%, rgba(0, 0, 0, 0) 98%, #000) top right, radial-gradient(circle 0px at 0 50%, rgba(0, 0, 0, 0) 98%, #000) bottom left, radial-gradient(circle 3px at 85% 100%, rgba(0, 0, 0, 0) 98%, #000) bottom right;
  mask-size: 100% 50%;
  /* mask-size: 85% 50%; androdi*/
  mask-repeat: no-repeat;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(to right, #ff00ea, #8b5cf6, #00f1f1);
  border: none;
  -webkit-mask: radial-gradient(circle at left center, transparent 5px, black 5px) left/51% 100% no-repeat, radial-gradient(circle at right center, transparent 5px, black 5px) right/51% 100% no-repeat;
  mask: radial-gradient(circle at left center, transparent 5px, black 5px) left/51% 100% no-repeat, radial-gradient(circle at right center, transparent 5px, black 5px) right/51% 100% no-repeat;
}

.btn-primary:hover {
  color: #fff;
  background: linear-gradient(to right, #cc00bb, #7c3ace, #00c4c4);
  opacity: 0.9;
}

.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background: linear-gradient(to right, #ff00ea, #8b5cf6, #00f1f1);
  box-shadow: 0 0 0 0.2rem rgba(147, 51, 234, 0.35);
}

.btn-secondary {
  color: #fff;
  background-color: #6fc8e8;
  border-color: #95c9dc;
}

.btn-secondary:hover {
  color: #fff;
  background-color: #17aae3;
  border-color: #73a0b0;
}

.btn-secondary:focus, .btn-secondary.focus {
  color: #fff;
  background-color: #2496be;
  border-color: #78c8e5;
  box-shadow: 0 0 0 0.2rem rgb(108, 202, 233);
}

.switch-btn-left {
  font-size: 11px;
  padding: 10px;
  border-radius: 25px;
  display: block;
  float: left;
  background: #2d2d2d;
  cursor: pointer;
  transition-duration: 0.5s;
  transition-property: background-color;
}

.switch-btn-right {
  font-size: 11px;
  padding: 10px;
  border-radius: 25px;
  display: block;
  float: left;
  background: #2d2d2d;
  cursor: pointer;
  transition-duration: 0.5s;
  transition-property: background-color;
  position: relative;
}

.switch-btn-search {
  font-size: 11px;
  padding: 5px;
  border-radius: 25px;
  display: block;
  float: left;
  background: #2d2d2d;
  cursor: pointer;
  transition-duration: 0.5s;
  transition-property: background-color;
  position: relative;
}

.switch-btn-search .material-icons {
  font-size: 28px;
  padding: 0;
}

.switch-btn-active {
  background: #e31bd4;
  box-shadow: white 0 0 8px;
  position: relative;
  z-index: 202;
}

.switch-btn-background {
  background: #2d2d2d;
}

.search-view {
  width: 100%;
}

.close {
  color: #ffffff;
}

/* Button styling */
.unlock-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #e31bd4;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  z-index: 999;
}

.blur-content {
  filter: blur(3px);
  pointer-events: none; /* Disable clicks inside the blurred area */
}

.background-blur {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.block-small {
  min-height: 130px;
}

.block-medium {
  min-height: 170px;
}

.block-medium-plus {
  min-height: 220px;
}

.block-large {
  min-height: 300px;
}

.block-title {
  position: relative;
  bottom: 0;
  width: 100%;
  padding: 10px;
  text-align: left;
  text-shadow: 1px 1px 1px black;
  backdrop-filter: blur(10px);
  top: 150px;
  border-radius: 25px;
}

.block-title-dark {
  position: absolute;
  bottom: 0;
  padding: 10px;
  text-align: left;
  text-shadow: 1px 1px 1px #939393;
  color: #000000;
}

.block-tr {
  position: absolute;
  font-size: 10px;
  padding: 3px;
  display: block;
  border: solid 1px black;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.81);
  top: 10px;
  right: 5px;
}

.block-timer {
  position: absolute;
  font-size: 10px;
  padding: 3px;
  display: block;
  border: solid 1px black;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.81);
  top: 10px;
  right: 5px;
}

.block-timer::before {
  font-family: "Material Icons";
  content: "hourglass_bottom";
  color: #a1dbe8 !important;
}

.block-badge {
  position: sticky;
  text-align: center;
  background: #a1dbe8;
  border: solid 1px #a1dbe8;
  padding: 1px;
  font-size: 12px;
  border-radius: 5px;
  display: inline;
  top: 100%;
  margin-right: auto;
  margin-left: auto;
}

.block-badge-left {
  position: absolute;
  left: 15px;
  top: 15px;
  background: #a1dbe8;
  border: solid 1px #a1dbe8;
  padding: 3px;
  font-size: 12px;
  border-radius: 5px;
  display: inline;
}

.block-badge-guide {
  background: #e31bd4;
  border: solid 1px #e31bd4;
}

.block-badge-offer {
  background: #a1dbe8;
  border: solid 1px #a1dbe8;
}

.block-badge-pb {
  background: #1d3ee1;
  border: solid 1px #1d3ee1;
}

.block-miles {
  position: absolute;
  font-size: 12px;
  padding: 2px 5px;
  border-radius: 10px;
  left: 10px;
  display: block;
  border: solid 1px black;
  background: #000;
}

.block-bottom {
  position: absolute;
  bottom: 10px;
  width: 100%;
  margin: -15px;
}

.modal-content {
  border-radius: 25px;
}

h1 {
  font-size: 25pt;
}

h2 {
  font-size: 20pt;
}

h3 {
  font-size: 16pt;
}

h4 {
  font-size: 14pt;
}

h5 {
  font-size: 12pt;
}

h6 {
  font-size: 10pt;
}

p {
  font-size: 10pt;
}

/* The container */
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 45px; /* Ändern Sie diesen Wert, um Platz für eine größere Checkbox zu machen */
  cursor: pointer;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom checkbox */
.checkbox-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 30px; /* Vergrößern der Checkbox */
  width: 30px; /* Vergrößern der Checkbox */
  background-color: #eee;
  border-radius: 5px;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
  background-color: #e31bd4;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
  left: 11px; /* Anpassen der Position des Checkmarks */
  top: 4px; /* Anpassen der Position des Checkmarks */
  width: 10px; /* Vergrößern des Checkmarks */
  height: 18px; /* Vergrößern des Checkmarks */
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.checkbox-info-text {
  display: none;
}

.top-right {
  position: absolute;
  top: 5px;
  right: 5px;
}

.percent-circle {
  position: relative;
  top: 5px;
  left: 5px;
  text-align: center;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: #ffffff;
}

.percent-circle-border {
  position: relative;
  text-align: center;
  width: 60px;
  height: 60px;
  margin-left: 30%;
  border-radius: 100%;
  background-color: #3be54c;
}

.percent-0 {
  background: linear-gradient(0deg, lightgray 50%, lightgray 50%);
}

.percent-5 {
  background: linear-gradient(-70deg, lightgray 50%, transparent 50%), linear-gradient(90deg, lightgray 50%, #3683ff 50%);
}

.percent-10 {
  background: linear-gradient(-50deg, lightgray 50%, transparent 50%), linear-gradient(90deg, lightgray 50%, #3683ff 50%);
}

.percent-15 {
  background: linear-gradient(-30deg, lightgray 50%, transparent 50%), linear-gradient(90deg, lightgray 50%, #3683ff 50%);
}

.percent-20 {
  background: linear-gradient(-15deg, lightgray 50%, transparent 50%), linear-gradient(90deg, lightgray 50%, #3683ff 50%);
}

.percent-25 {
  background: linear-gradient(0deg, lightgray 50%, transparent 50%), linear-gradient(90deg, lightgray 50%, #3683ff 50%);
}

.percent-30 {
  background: linear-gradient(10deg, lightgray 50%, transparent 50%), linear-gradient(90deg, lightgray 50%, #3683ff 50%);
}

.percent-35 {
  background: linear-gradient(30deg, lightgray 50%, transparent 50%), linear-gradient(90deg, lightgray 50%, #3683ff 50%);
}

.percent-40 {
  background: linear-gradient(60deg, lightgray 50%, transparent 50%), linear-gradient(90deg, lightgray 50%, #3683ff 50%);
}

.percent-45 {
  background: linear-gradient(70deg, lightgray 50%, transparent 50%), linear-gradient(90deg, lightgray 50%, #3683ff 50%);
}

.percent-50 {
  background: linear-gradient(-90deg, #3683ff 50%, transparent 50%), linear-gradient(-90deg, #3683ff 50%, lightgray 50%);
}

.percent-55 {
  background: linear-gradient(-60deg, #3683ff 50%, transparent 50%), linear-gradient(-90deg, #3683ff 50%, lightgray 50%);
}

.percent-60 {
  background: linear-gradient(-45deg, #3683ff 50%, transparent 50%), linear-gradient(-90deg, #3683ff 50%, lightgray 50%);
}

.percent-65 {
  background: linear-gradient(-30deg, #3683ff 50%, transparent 50%), linear-gradient(-90deg, #3683ff 50%, lightgray 50%);
}

.percent-70 {
  background: linear-gradient(-15deg, #3683ff 50%, transparent 50%), linear-gradient(-90deg, #3683ff 50%, lightgray 50%);
}

.percent-75 {
  background: linear-gradient(0deg, #3683ff 50%, transparent 50%), linear-gradient(-90deg, #3683ff 50%, lightgray 50%);
}

.percent-80 {
  background: linear-gradient(50deg, #3683ff 50%, transparent 50%), linear-gradient(-90deg, #3683ff 50%, lightgray 50%);
}

.percent-85 {
  background: linear-gradient(60deg, #3683ff 50%, transparent 50%), linear-gradient(-90deg, #3683ff 50%, lightgray 50%);
}

.percent-90 {
  background: linear-gradient(70deg, #3683ff 50%, transparent 50%), linear-gradient(-90deg, #3683ff 50%, lightgray 50%);
}

.percent-95 {
  background: linear-gradient(80deg, #3683ff 50%, transparent 50%), linear-gradient(-90deg, #3683ff 50%, lightgray 50%);
}

.percent-100 {
  background: linear-gradient(0deg, #3683ff 50%, transparent 50%), linear-gradient(180deg, #3683ff 50%, lightgray 50%);
}

.progress-pie-chart-75px {
  margin: auto;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: #ffffff;
  position: relative;
}
.progress-pie-chart-75px.gt-50-75px {
  background-image: linear-gradient(-90deg, #e31bd4, #e31bd4);
}

.ppc-progress-75px {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 75px/2);
  top: calc(50% - 75px/2);
  width: 75px;
  height: 75px;
  clip: rect(0, 75px, 75px, 37.5px);
}
.ppc-progress-75px .ppc-progress-fill-75px {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 75px/2);
  top: calc(50% - 75px/2);
  width: 75px;
  height: 75px;
  clip: rect(0, 37.5px, 75px, 0);
  background: #e31bd4;
  transform: rotate(60deg);
}
.gt-50-75px .ppc-progress-75px {
  clip: rect(0, 37.5px, 75px, 0);
}
.gt-50-75px .ppc-progress-75px .ppc-progress-fill-75px {
  clip: rect(0, 75px, 75px, 37.5px);
  background: #ffffff;
}

.ppc-percents-75px {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 55.5555555556px/2);
  top: calc(50% - 55.5555555556px/2);
  width: 55.5555555556px;
  height: 55.5555555556px;
  background: #000000;
  text-align: center;
  display: table;
  width: 75%;
  height: 75%;
}
.ppc-percents-75px span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
  color: #6ccae9;
}

.progress-pie-chart-100px {
  margin: auto;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #ffffff;
  position: relative;
}
.progress-pie-chart-100px.gt-50-100px {
  background-image: linear-gradient(-90deg, #e31bd4, #e31bd4);
}

.ppc-progress-100px {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 100px/2);
  top: calc(50% - 100px/2);
  width: 100px;
  height: 100px;
  clip: rect(0, 100px, 100px, 50px);
}
.ppc-progress-100px .ppc-progress-fill-100px {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 100px/2);
  top: calc(50% - 100px/2);
  width: 100px;
  height: 100px;
  clip: rect(0, 50px, 100px, 0);
  background: #e31bd4;
  transform: rotate(60deg);
}
.gt-50-100px .ppc-progress-100px {
  clip: rect(0, 50px, 100px, 0);
}
.gt-50-100px .ppc-progress-100px .ppc-progress-fill-100px {
  clip: rect(0, 100px, 100px, 50px);
  background: #ffffff;
}

.ppc-percents-100px {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 74.0740740741px/2);
  top: calc(50% - 74.0740740741px/2);
  width: 74.0740740741px;
  height: 74.0740740741px;
  background: #000000;
  text-align: center;
  display: table;
  width: 75%;
  height: 75%;
}
.ppc-percents-100px span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
  color: #6ccae9;
}

.progress-pie-chart-125px {
  margin: auto;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background-color: #ffffff;
  position: relative;
}
.progress-pie-chart-125px.gt-50-125px {
  background-image: linear-gradient(-90deg, #e31bd4, #e31bd4);
}

.ppc-progress-125px {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 125px/2);
  top: calc(50% - 125px/2);
  width: 125px;
  height: 125px;
  clip: rect(0, 125px, 125px, 62.5px);
}
.ppc-progress-125px .ppc-progress-fill-125px {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 125px/2);
  top: calc(50% - 125px/2);
  width: 125px;
  height: 125px;
  clip: rect(0, 62.5px, 125px, 0);
  background: #e31bd4;
  transform: rotate(60deg);
}
.gt-50-125px .ppc-progress-125px {
  clip: rect(0, 62.5px, 125px, 0);
}
.gt-50-125px .ppc-progress-125px .ppc-progress-fill-125px {
  clip: rect(0, 125px, 125px, 62.5px);
  background: #ffffff;
}

.ppc-percents-125px {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 92.5925925926px/2);
  top: calc(50% - 92.5925925926px/2);
  width: 92.5925925926px;
  height: 92.5925925926px;
  background: #000000;
  text-align: center;
  display: table;
  width: 75%;
  height: 75%;
}
.ppc-percents-125px span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
  color: #6ccae9;
}

.progress-pie-chart-150px {
  margin: auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #ffffff;
  position: relative;
}
.progress-pie-chart-150px.gt-50-150px {
  background-image: linear-gradient(-90deg, #e31bd4, #e31bd4);
}

.ppc-progress-150px {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 150px/2);
  top: calc(50% - 150px/2);
  width: 150px;
  height: 150px;
  clip: rect(0, 150px, 150px, 75px);
}
.ppc-progress-150px .ppc-progress-fill-150px {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 150px/2);
  top: calc(50% - 150px/2);
  width: 150px;
  height: 150px;
  clip: rect(0, 75px, 150px, 0);
  background: #e31bd4;
  transform: rotate(60deg);
}
.gt-50-150px .ppc-progress-150px {
  clip: rect(0, 75px, 150px, 0);
}
.gt-50-150px .ppc-progress-150px .ppc-progress-fill-150px {
  clip: rect(0, 150px, 150px, 75px);
  background: #ffffff;
}

.ppc-percents-150px {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 111.1111111111px/2);
  top: calc(50% - 111.1111111111px/2);
  width: 111.1111111111px;
  height: 111.1111111111px;
  background: #000000;
  text-align: center;
  display: table;
  width: 75%;
  height: 75%;
}
.ppc-percents-150px span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
  color: #6ccae9;
}

.progress-pie-chart-175px {
  margin: auto;
  width: 175px;
  height: 175px;
  border-radius: 50%;
  background-color: #ffffff;
  position: relative;
}
.progress-pie-chart-175px.gt-50-175px {
  background-image: linear-gradient(-90deg, #e31bd4, #e31bd4);
}

.ppc-progress-175px {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 175px/2);
  top: calc(50% - 175px/2);
  width: 175px;
  height: 175px;
  clip: rect(0, 175px, 175px, 87.5px);
}
.ppc-progress-175px .ppc-progress-fill-175px {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 175px/2);
  top: calc(50% - 175px/2);
  width: 175px;
  height: 175px;
  clip: rect(0, 87.5px, 175px, 0);
  background: #e31bd4;
  transform: rotate(60deg);
}
.gt-50-175px .ppc-progress-175px {
  clip: rect(0, 87.5px, 175px, 0);
}
.gt-50-175px .ppc-progress-175px .ppc-progress-fill-175px {
  clip: rect(0, 175px, 175px, 87.5px);
  background: #ffffff;
}

.ppc-percents-175px {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 129.6296296296px/2);
  top: calc(50% - 129.6296296296px/2);
  width: 129.6296296296px;
  height: 129.6296296296px;
  background: #000000;
  text-align: center;
  display: table;
  width: 75%;
  height: 75%;
}
.ppc-percents-175px span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
  color: #6ccae9;
}

.progress-pie-chart-200px {
  margin: auto;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #ffffff;
  position: relative;
}
.progress-pie-chart-200px.gt-50-200px {
  background-image: linear-gradient(-90deg, #e31bd4, #e31bd4);
}

.ppc-progress-200px {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 200px/2);
  top: calc(50% - 200px/2);
  width: 200px;
  height: 200px;
  clip: rect(0, 200px, 200px, 100px);
}
.ppc-progress-200px .ppc-progress-fill-200px {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 200px/2);
  top: calc(50% - 200px/2);
  width: 200px;
  height: 200px;
  clip: rect(0, 100px, 200px, 0);
  background: #e31bd4;
  transform: rotate(60deg);
}
.gt-50-200px .ppc-progress-200px {
  clip: rect(0, 100px, 200px, 0);
}
.gt-50-200px .ppc-progress-200px .ppc-progress-fill-200px {
  clip: rect(0, 200px, 200px, 100px);
  background: #ffffff;
}

.ppc-percents-200px {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 148.1481481481px/2);
  top: calc(50% - 148.1481481481px/2);
  width: 148.1481481481px;
  height: 148.1481481481px;
  background: #000000;
  text-align: center;
  display: table;
  width: 75%;
  height: 75%;
}
.ppc-percents-200px span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
  color: #6ccae9;
}

.progress-pie-chart-225px {
  margin: auto;
  width: 225px;
  height: 225px;
  border-radius: 50%;
  background-color: #ffffff;
  position: relative;
}
.progress-pie-chart-225px.gt-50-225px {
  background-image: linear-gradient(-90deg, #e31bd4, #e31bd4);
}

.ppc-progress-225px {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 225px/2);
  top: calc(50% - 225px/2);
  width: 225px;
  height: 225px;
  clip: rect(0, 225px, 225px, 112.5px);
}
.ppc-progress-225px .ppc-progress-fill-225px {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 225px/2);
  top: calc(50% - 225px/2);
  width: 225px;
  height: 225px;
  clip: rect(0, 112.5px, 225px, 0);
  background: #e31bd4;
  transform: rotate(60deg);
}
.gt-50-225px .ppc-progress-225px {
  clip: rect(0, 112.5px, 225px, 0);
}
.gt-50-225px .ppc-progress-225px .ppc-progress-fill-225px {
  clip: rect(0, 225px, 225px, 112.5px);
  background: #ffffff;
}

.ppc-percents-225px {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 166.6666666667px/2);
  top: calc(50% - 166.6666666667px/2);
  width: 166.6666666667px;
  height: 166.6666666667px;
  background: #000000;
  text-align: center;
  display: table;
  width: 75%;
  height: 75%;
}
.ppc-percents-225px span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
  color: #6ccae9;
}

.progress-pie-chart-250px {
  margin: auto;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background-color: #ffffff;
  position: relative;
}
.progress-pie-chart-250px.gt-50-250px {
  background-image: linear-gradient(-90deg, #e31bd4, #e31bd4);
}

.ppc-progress-250px {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 250px/2);
  top: calc(50% - 250px/2);
  width: 250px;
  height: 250px;
  clip: rect(0, 250px, 250px, 125px);
}
.ppc-progress-250px .ppc-progress-fill-250px {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 250px/2);
  top: calc(50% - 250px/2);
  width: 250px;
  height: 250px;
  clip: rect(0, 125px, 250px, 0);
  background: #e31bd4;
  transform: rotate(60deg);
}
.gt-50-250px .ppc-progress-250px {
  clip: rect(0, 125px, 250px, 0);
}
.gt-50-250px .ppc-progress-250px .ppc-progress-fill-250px {
  clip: rect(0, 250px, 250px, 125px);
  background: #ffffff;
}

.ppc-percents-250px {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 185.1851851852px/2);
  top: calc(50% - 185.1851851852px/2);
  width: 185.1851851852px;
  height: 185.1851851852px;
  background: #000000;
  text-align: center;
  display: table;
  width: 75%;
  height: 75%;
}
.ppc-percents-250px span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
  color: #6ccae9;
}

.progress-pie-chart-275px {
  margin: auto;
  width: 275px;
  height: 275px;
  border-radius: 50%;
  background-color: #ffffff;
  position: relative;
}
.progress-pie-chart-275px.gt-50-275px {
  background-image: linear-gradient(-90deg, #e31bd4, #e31bd4);
}

.ppc-progress-275px {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 275px/2);
  top: calc(50% - 275px/2);
  width: 275px;
  height: 275px;
  clip: rect(0, 275px, 275px, 137.5px);
}
.ppc-progress-275px .ppc-progress-fill-275px {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 275px/2);
  top: calc(50% - 275px/2);
  width: 275px;
  height: 275px;
  clip: rect(0, 137.5px, 275px, 0);
  background: #e31bd4;
  transform: rotate(60deg);
}
.gt-50-275px .ppc-progress-275px {
  clip: rect(0, 137.5px, 275px, 0);
}
.gt-50-275px .ppc-progress-275px .ppc-progress-fill-275px {
  clip: rect(0, 275px, 275px, 137.5px);
  background: #ffffff;
}

.ppc-percents-275px {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 203.7037037037px/2);
  top: calc(50% - 203.7037037037px/2);
  width: 203.7037037037px;
  height: 203.7037037037px;
  background: #000000;
  text-align: center;
  display: table;
  width: 75%;
  height: 75%;
}
.ppc-percents-275px span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
  color: #6ccae9;
}

.progress-pie-chart-300px {
  margin: auto;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: #ffffff;
  position: relative;
}
.progress-pie-chart-300px.gt-50-300px {
  background-image: linear-gradient(-90deg, #e31bd4, #e31bd4);
}

.ppc-progress-300px {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 300px/2);
  top: calc(50% - 300px/2);
  width: 300px;
  height: 300px;
  clip: rect(0, 300px, 300px, 150px);
}
.ppc-progress-300px .ppc-progress-fill-300px {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 300px/2);
  top: calc(50% - 300px/2);
  width: 300px;
  height: 300px;
  clip: rect(0, 150px, 300px, 0);
  background: #e31bd4;
  transform: rotate(60deg);
}
.gt-50-300px .ppc-progress-300px {
  clip: rect(0, 150px, 300px, 0);
}
.gt-50-300px .ppc-progress-300px .ppc-progress-fill-300px {
  clip: rect(0, 300px, 300px, 150px);
  background: #ffffff;
}

.ppc-percents-300px {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 222.2222222222px/2);
  top: calc(50% - 222.2222222222px/2);
  width: 222.2222222222px;
  height: 222.2222222222px;
  background: #000000;
  text-align: center;
  display: table;
  width: 75%;
  height: 75%;
}
.ppc-percents-300px span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
  color: #6ccae9;
}

.ppc-percents-125px span {
  font-size: 20pt;
}

.pcc-percents-wrapper {
  display: table-cell;
  vertical-align: middle;
}

.progress-pie-chart {
  margin: 10px auto 0;
}

/* Styles for the search components */
.flight-search-bar-container {
  display: flex;
  align-items: center;
  background-color: #1a1a1a;
  border: 1px solid #444;
  border-radius: 25px;
  padding: 12px 16px;
  cursor: pointer;
  transition: box-shadow 0.2s;
  margin-bottom: 20px;
  width: 100%;
}

.flight-search-bar-container:hover {
  box-shadow: 0 0 15px rgba(0, 123, 255, 0.3);
}

.flight-search-bar-route {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ddd;
  font-family: sans-serif;
  font-size: 12px;
  pointer-events: none;
  width: 100%;
}

.flight-search-bar-location {
  display: flex;
  align-items: center;
  gap: 4px;
  pointer-events: none;
}

.flight-search-bar-label {
  color: #fff;
  font-weight: 500;
}

.flight-search-bar-code {
  color: #aaa;
  font-weight: 400;
}

.flight-search-bar-arrow {
  color: #aaa;
  font-size: 18px; /* Behält die erste Definition, da die zweite sehr ähnlich war */
  pointer-events: none;
}

.flight-search-bar-button {
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  width: 36px;
  height: 36px;
  margin-left: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #333;
  pointer-events: none;
}

.flight-search {
  color: white;
  padding: 20px;
  position: relative;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
}

.flight-search.hidden {
  display: none;
}

.flight-search-topbar {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.flight-search-dropdown {
  background: transparent;
  border: 1px solid #555;
  border-radius: 6px;
  color: #ccc;
  cursor: pointer;
  padding: 8px 12px;
  flex-grow: 1;
  text-align: center;
  transition: background-color 0.2s, border-color 0.2s;
}

.flight-search-dropdown:hover {
  background-color: #2a2a2a;
  border-color: #777;
}

.flight-search-field {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.flight-search-field input[type=text] {
  background-color: transparent;
  border: none;
  color: white;
  font-size: 16px;
  outline: none;
  flex-grow: 1;
  padding-left: 5px;
}

.flight-search-field input[type=text]::placeholder {
  color: #777;
}

.flight-search-label {
  display: block;
  color: #888;
  font-size: 12px;
  margin-bottom: 4px;
}

.flight-search-icon {
  color: #aaa;
  font-size: 20px;
}

.flight-search-button {
  margin-top: 16px;
  width: 100%;
  background-color: #007bff;
  border: none;
  border-radius: 25px;
  color: white;
  padding: 12px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.3s;
}

.flight-search-button:hover {
  background-color: #0056b3;
}

.flight-search-popup {
  display: none;
  position: absolute;
  background-color: #282828;
  color: white;
  border: 1px solid #555;
  border-radius: 6px;
  padding: 10px;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.flight-search-popup div {
  padding: 8px 10px;
  cursor: pointer;
  border-radius: 4px;
}

.flight-search-popup div:hover {
  background-color: #3f51b5;
}

.autocomplete-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #2a2a2a;
  border-top: none;
  border-radius: 0 0 8px 8px;
  max-height: 250px;
  overflow-y: auto;
  z-index: 999;
  color: #eee;
  text-align: left;
}

.autocomplete-item {
  padding: 10px 15px;
  cursor: pointer;
  font-size: 14px;
}

.autocomplete-item:hover,
.autocomplete-item.active {
  background-color: #3f51b5;
  color: white;
}

.autocomplete-item small {
  display: block;
  color: #aaa;
  font-size: 12px;
}

.autocomplete-item:hover small {
  color: #ddd;
}

/* Styles for the flight result cards */
.flight-card {
  background-color: #2c2c2c;
  border: 1px solid #444;
  border-radius: 10px;
  padding: 16px;
  color: white;
  font-family: sans-serif;
  margin-bottom: 20px;
}

.flight-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.flight-card-logo {
  padding: 3px;
  width: 50px;
  height: 50px; /* Höhe von 'auto' auf festen Wert geändert, um Konsistenz zu gewährleisten */
  object-fit: contain;
  margin-right: 12px;
  border-radius: 8px;
}

.flight-card-logo-text {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px white;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  color: #fff;
  overflow: hidden;
  text-transform: uppercase;
}

.flight-card-times {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.flight-price-info {
  max-width: 100px;
}

.flight-card-time {
  font-size: 16px; /* Behält die größere Schriftgröße für bessere Lesbarkeit */
  font-weight: 500;
}

.flight-card-arrow {
  font-size: 26px; /* Behält die größere Schriftgröße */
  margin: 0 6px;
  color: #ccc;
}

.flight-card-airports {
  font-size: 14px;
  color: #aaa;
  display: flex;
  justify-content: space-between;
  max-width: 130px;
}

.flight-card-miles {
  font-size: 10pt;
  font-weight: bold;
  text-align: right;
}

.flight-card-tax-container {
  font-size: 12px;
  font-weight: 400;
  color: #bbb;
  text-align: right;
}

.flight-card-details {
  display: flex;
  align-items: center;
  gap: 10px; /* Behält den größeren Abstand */
  margin-top: 12px;
  font-size: 14px;
  color: #bbb;
}

.flight-card-warning {
  color: #f66;
}

.flight-transition-partner {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-size: 10pt;
  font-weight: bold;
}

.class-name {
  font-size: 8pt;
}

.flight-transfer-button {
  margin-left: auto;
  background-color: #007bff;
  border-color: #007bff;
  text-decoration: none;
  width: 75px;
  color: white;
  padding: 4px 10px;
  font-size: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.flight-transfer-button:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

.flight-book-button {
  margin-left: auto;
  color: white;
  width: 75px;
  padding: 4px 10px;
  font-size: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

#flight-results-container .flight-alert {
  background-color: #2a2a2a;
  border: 1px solid #444;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
}

/* Hinzugefügte Klassen aus dem zweiten (redundanten) Block */
.flight-card-price {
  font-size: 18px;
  font-weight: bold;
}

.flight-card-currency {
  font-size: 12px;
  font-weight: lighter;
  text-align: right;
}

.flight-card-tax {
  font-size: 8px;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

.info-icon {
  font-size: 14px;
  color: #aaa;
}

/* Grundlegendes Styling für den Kalender-Wrapper */
.calendar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.calendar-content {
  background: white;
  color: #000000;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 10px;
  width: 100%;
  max-width: 400px;
  min-height: 500px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.calendar-header button {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #e31bd4;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  text-align: center;
}

.calendar-day, .calendar-weekday {
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.calendar-weekday {
  font-weight: bold;
  aspect-ratio: auto;
}

.calendar-day {
  cursor: pointer;
  border-radius: 50%;
}

.calendar-day:not(.empty):not(.disabled):hover {
  background-color: #f0f0f0;
}

.calendar-day.selected {
  background-color: #e31bd4;
  color: white;
}

.calendar-day.disabled {
  cursor: default;
  color: #ccc;
  text-decoration: line-through;
}

.calendar-day.empty {
  cursor: default;
  background-color: transparent;
}

/* Hauptcontainer für die Routen-Info-Karte */
.route-info-card {
  padding: 20px;
}

/* Header-Bereich mit dem Titel */
.route-info-header {
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.route-info-title {
  font-size: 1.25rem; /* 20px */
  font-weight: 600;
  margin: 0;
  color: #cfcfcf;
}

/* Beschreibungstext */
.route-info-description {
  font-size: 0.9rem; /* 14px */
  color: #6c757d;
  margin-bottom: 20px;
}

/* Container für die verschiedenen Klassen-Boxen */
.route-info-classes-container {
  display: flex;
  justify-content: space-around;
  gap: 15px;
  text-align: center;
  flex-wrap: wrap; /* Wichtig für mobile Ansichten */
}

/* Styling für eine einzelne Meilen-Box (Economy, Business, etc.) */
.route-info-class-item {
  border-radius: 8px;
  padding: 15px;
  flex: 1; /* Sorgt dafür, dass die Boxen den Platz gleichmäßig aufteilen */
  min-width: 150px; /* Mindestbreite für kleinere Bildschirme */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.route-info-class-name {
  font-weight: 500;
  font-size: 1rem; /* 16px */
  color: #495057;
}

.route-info-miles {
  font-size: 1.5rem; /* 24px */
  font-weight: 700;
  color: #ffffff; /* Eine Akzentfarbe */
  margin: 4px 0;
}

.route-info-label {
  font-size: 0.8rem; /* 12px */
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Footer-Bereich für den Hinweis */
.route-info-footer {
  margin-top: 16px;
  padding-top: 12px;
  text-align: center;
  font-size: 0.8rem; /* 12px */
  color: #6c757d;
}

.hidden-by-script {
  display: none !important;
}

.flight-search-inputs-wrapper {
  position: relative;
  z-index: 100;
}

.flight-search-inputs-wrapper .flight-search-field {
  margin-bottom: 1rem;
}

.swap-airports-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #f0f2f5;
  border: 1px solid #dcdfe3;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: none; /* Hide by default */
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background-color 0.2s, transform 0.2s;
}

.swap-airports-button:hover {
  background-color: #e4e6e9;
}

.swap-airports-button:active {
  transform: translate(-50%, -50%) scale(0.95);
}

.swap-airports-button .material-icons {
  font-size: 20px;
  color: #606770;
}

/* === GRUNDGERÜST UND HINTERGRUND === */
#flight-loading-animation {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 200px;
  border-radius: 15px;
  overflow: hidden;
  margin: 20px auto;
  border: 1px solid #b0bec5;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Container for all stacked map images */
.flight-stacked-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#world-map-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1; /* Base map layer */
}

/* Styles for individual continent overlays */
.flight-continent-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1; /* <-- Set to 1 to make all visible for testing */
  /* Removed transition as we're not animating opacity yet */
  z-index: 2; /* Above the base map, below the plane */
}

/* === FLUGZEUG UND BEWEGUNG === */
.flight-animation-plane-container {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  animation: flight-animation-fly-over-map 45s linear infinite;
}

.flight-animation-flight-svg {
  width: 40px;
  height: auto;
  transform: rotate(0deg);
  filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.3));
}

@keyframes flight-animation-fly-over-map {
  0% {
    transform: translate(-50%, 0%) rotate(-45deg);
  }
  25% {
    transform: translate(-20%, -20%) rotate(-20deg);
  }
  50% {
    transform: translate(0%, -30%) rotate(0deg);
  }
  75% {
    transform: translate(20%, -20%) rotate(20deg);
  }
  100% {
    transform: translate(50%, 0%) rotate(45deg);
  }
}
/* === TEXT === */
.flight-animation-loading-text {
  position: absolute;
  top: 15px;
  width: 100%;
  text-align: center;
  font-family: sans-serif;
  color: #37474f;
  font-size: 1.1em;
  font-weight: bold;
  animation: flight-animation-fadeInOut 3s infinite;
  z-index: 20;
  text-shadow: #000 3px 3px 3px;
}

@keyframes flight-animation-fadeInOut {
  0%, 100% {
    opacity: 1;
    color: rgba(255, 255, 255, 0.7);
  }
  50% {
    opacity: 1;
    color: #ffffff;
  }
}
/* =============================================== */
/* ==           ANIMATION KEYFRAMES             == */
/* =============================================== */
/* Eine simple "Fade-In-Up"-Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Eine simple "Fade-Out"-Animation */
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* =============================================== */
/* ==      ANIMATIONEN FÜR DIE FLIGHT-CARDS     == */
/* =============================================== */
/* Jede neue flight-card, die im DOM erscheint,
  bekommt automatisch diese Animation.
*/
.flight-card, .flight-search-bar-container, .flight-loading-animation {
  /* Wir starten unsichtbar, damit die Animation sauber beginnt */
  opacity: 0;
  animation: fadeInUp 0.5s ease-out forwards;
}

/* Bonus: Staffelung der Animation für einen eleganteren Effekt.
  Jede nachfolgende Karte erscheint mit einer leichten Verzögerung.
*/
.flight-card:nth-child(1) {
  animation-delay: 0.05s;
}

.flight-card:nth-child(2) {
  animation-delay: 0.1s;
}

.flight-card:nth-child(3) {
  animation-delay: 0.15s;
}

.flight-card:nth-child(4) {
  animation-delay: 0.2s;
}

.flight-card:nth-child(5) {
  animation-delay: 0.25s;
}

/* ...kann bei Bedarf erweitert werden */
/* =============================================== */
/* ==      ANIMATIONEN FÜR DIE SUCHE            == */
/* =============================================== */
/* Diese Klasse wird per JavaScript hinzugefügt,
  um die Ausblend-Animation zu starten.
*/
.is-hiding {
  animation: fadeOut 0.3s ease-out forwards;
}

/* Diese Klasse wird per JavaScript entfernt,
  um die Einblend-Animation zu starten.
*/
#flight-search {
  animation: fadeOut 0.3s ease-out forwards;
  animation-direction: reverse; /* Spielt die Animation rückwärts ab (Fade-In) */
}

.back-to-results-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  margin-bottom: 10px;
  font-weight: 500;
  color: #75e5ff; /* Blau, passend zum Design */
  background-color: #333333; /* Helles Blau als Hintergrund */
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.back-to-results-button:hover {
  background-color: #000000;
}

/* Deaktiviert Klick-Events und ändert das Aussehen für die
   einzeln dargestellte, aktive flight-card */
.flight-card.is-disabled {
  cursor: default;
  /* Optional: leichte Transparenz, um den inaktiven Zustand zu zeigen */
  /* opacity: 0.8; */
}

/* --- result.js classes --- */
.flight-card-class-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.res-detail-col {
  text-align: left;
  min-width: 80px;
}

.res-class-info {
  flex-grow: 1;
  text-align: left;
}

.flight-book-button i,
.flight-transfer-button i {
  font-size: 14px;
}

/* --- controller.js search states --- */
.search-alt-heading {
  margin: 32px 0 16px 0;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  padding-left: 4px;
}

.search-no-results {
  padding: 40px 20px;
  margin-top: 24px;
  text-align: center;
}

.search-no-results-icon {
  display: block;
  font-size: 48px;
  color: rgba(255, 255, 255, 0.2);
  margin: 0 auto 16px;
  text-align: center;
}

.search-no-results-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px;
}

.search-no-results-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.search-error-card {
  padding: 40px 20px;
  color: #ff6b6b;
  text-align: center;
}

.timeline-container {
  position: relative;
}

.timeline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 30px;
}

.timeline:before {
  content: "";
  position: absolute;
  left: -20px;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #333;
}

.timeline .step {
  position: relative;
  margin-bottom: 20px;
}

.timeline .step:before {
  content: attr(data-title);
  display: inline-block;
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
}

.timeline .step:after {
  content: "";
  position: absolute;
  left: -22px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: #333;
  border-radius: 50%;
}

.timeline .video, .timeline .text {
  margin-bottom: 10px;
}

.timeline-container .progress {
  position: fixed;
  left: 30px;
  top: 0;
  width: 4px;
  height: 0;
  background-color: #4CAF50;
  transition: height 0.3s;
}

.timeline .step.active:after {
  background-color: #4CAF50;
}

/* ========================================================
   Account / Cockpit View Styles
   ======================================================== */
.account-page-container {
  position: relative;
  width: 100%;
  min-height: 100vh; /* Füllt mindestens den Bildschirm, wächst aber mit dem Inhalt */
  display: flex;
  flex-direction: column;
  /* overflow-y entfernt: Das Scrolling übernimmt jetzt sauber der #app Container */
}

.account-background {
  position: fixed;
  inset: 0;
  background: url("/static/images/mgp.jpg") center/cover no-repeat;
  filter: brightness(0.25) grayscale(0.2);
  z-index: -1;
}

.account-scroll-content {
  /* Padding unten dynamisch berechnet für die Navbar + Safe Area */
  padding: 0 16px calc(100px + env(safe-area-inset-bottom)) 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* --- Hero Section --- */
.account-hero {
  text-align: center;
  padding: 40px 0 30px;
}
.account-hero .hero-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  color: #FFFFFF;
}
.account-hero .hero-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 280px;
  margin: 0 auto;
  line-height: 1.5;
}

.account-main-content {
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px; /* Sichert gleichmäßige Abstände zwischen allen Karten */
}

/* --- Settings Card & Items (Premium Glassmorphismus) --- */
.mg-settings-card {
  background: rgba(25, 24, 44, 0.6); /* Dunkler, edler Ton */
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px; /* Harmonischere Rundungen */
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3); /* Weiche Tiefe */
  overflow: hidden;
  position: relative;
}

.mg-settings-list {
  display: flex;
  flex-direction: column;
}

/* --- video-catch card compact padding --- */
.vcv-card {
  padding: 12px;
}

.mg-settings-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease;
  text-decoration: none;
  color: inherit;
}
.mg-settings-item:last-child {
  border-bottom: none;
}
.mg-settings-item:active {
  background: rgba(255, 255, 255, 0.05);
}

.mg-settings-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mg-settings-icon-wrapper {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary, #ff00ea);
}
.mg-settings-icon-wrapper i {
  font-size: 22px;
}
.mg-settings-icon-wrapper.secondary {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.04);
}

.mg-settings-label {
  font-size: 16px;
  font-weight: 500;
  color: #FFFFFF;
}

.mg-settings-sublabel {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

/* --- Edit Profile Fields --- */
.ep-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ep-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.ep-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.ep-input-icon {
  position: absolute;
  left: 12px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.ep-input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.ep-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.ep-input:focus {
  border-color: var(--brand-primary, #ff00ea);
}

.mg-settings-chevron {
  color: rgba(255, 255, 255, 0.4);
  font-size: 24px;
  transition: transform 0.2s ease;
}

/* --- Auth Prompt --- */
.acct-auth-card {
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.acct-auth-title {
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.acct-auth-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.acct-auth-login-icon {
  font-size: 18px;
}

/* --- Legal Card --- */
.acct-legal-card {
  padding: 0;
  position: relative;
  overflow: hidden;
}
.acct-legal-card .mg-settings-list {
  padding-top: 4px;
}

/* Animation delays */
.anim-delay-1 {
  animation-delay: 0.1s;
}

.anim-delay-2 {
  animation-delay: 0.2s;
}

.auth-icon-wrapper {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--brand-primary, #ff00ea);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.auth-icon-wrapper i {
  font-size: 32px;
}

/* --- Footer --- */
.account-footer {
  text-align: center; /* Zentriert wirkt sauberer auf Mobile */
  padding: 40px 10px;
  opacity: 0.5;
  margin-top: auto;
}
.account-footer .brand-name {
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 4px;
  color: white;
  letter-spacing: 0.5px;
}
.account-footer .company-info {
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 12px;
}
.account-footer .version-info {
  font-size: 11px;
  font-family: monospace;
  color: var(--brand-light, #00f1f1);
}

/* ========================================================
   Miles View (Dashboard/Cockpit) Styles
   ======================================================== */
/* --------------------------------------------------------
   Program List (Meilen / Payback / MR)
   -------------------------------------------------------- */
.mg-programs-section {
  margin-bottom: 24px;
}

/* .mg-program-item / icon / info / name / sub / stats — defined in _platinum-tracker.scss */
.mg-program-points {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.mg-program-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

/* Range slider inside program modals */
.mg-range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  margin-top: 20px;
  transition: background 0.15s;
}
.mg-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3), 0 0 0 4px var(--brand-primary, #ff00ea);
  cursor: pointer;
  transition: transform 0.1s;
}
.mg-range-slider::-webkit-slider-thumb:active {
  transform: scale(1.1);
}
.mg-range-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3), 0 0 0 4px var(--brand-primary, #ff00ea);
  cursor: pointer;
  border: none;
}

/* Sperr-Overlay when not logged in */
.mg-program-lock-overlay {
  position: absolute;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 19, 32, 0.6);
  backdrop-filter: blur(4px);
  border-radius: inherit;
}

.miles-lock-overlay {
  position: absolute;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 19, 32, 0.5);
  border-radius: inherit;
}
.miles-lock-overlay .mg-btn-primary {
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.miles-goal-header {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.goal-change-action {
  position: absolute;
  top: 20px;
  right: 20px;
}
.goal-change-action .mg-btn-glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: background 0.2s;
}
.goal-change-action .mg-btn-glass:hover {
  background: rgba(255, 255, 255, 0.25);
}

.goal-header-content {
  text-align: center;
}
.goal-header-content .goal-miles-req {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-light, #00f1f1);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.goal-header-content .goal-title {
  font-size: 24px;
  font-weight: 800;
  color: white;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  line-height: 1.2;
}

.miles-content-body {
  padding: 24px;
}

.progress-text-info .current-points {
  font-size: 18px;
  font-weight: 700;
  color: white;
}
.progress-text-info .target-points {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* --- Stats Rows (Miles & More / Payback) --- */
.miles-stats-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-group {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 16px;
}

.stat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.stat-header .stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
.stat-header .stat-value {
  font-size: 20px;
  font-weight: 700;
  color: white;
  background: rgba(0, 0, 0, 0.3);
  padding: 4px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.stat-actions .btn-sm {
  padding: 10px;
  font-size: 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.stat-actions .btn-sm i {
  font-size: 16px;
}

/* ========================================================
   Glassmorphism Modals (Bootstrap Overrides)
   ======================================================== */
.modal-backdrop.show {
  opacity: 0.6; /* Etwas dunklerer Hintergrund */
}

.mg-modal-content {
  background: rgba(15, 19, 32, 0.85);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
  color: white;
  overflow: hidden;
  /* Die Premium-Linie am Modal! */
}
.mg-modal-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff00ea, #8b5cf6, #00f1f1);
  z-index: 10;
}
.mg-modal-content .modal-title {
  font-weight: 700;
  font-size: 18px;
}

/* ========================================================
   Circular Progress Pie Chart
   ======================================================== */
.progress-pie-chart-125px {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  position: relative;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.progress-pie-chart-125px.gt-50-125px {
  background-color: var(--brand-primary, #ff00ea);
}

.ppc-progress-125px {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 62.5px);
  top: calc(50% - 62.5px);
  width: 125px;
  height: 125px;
  clip: rect(0, 125px, 125px, 62.5px);
}

.ppc-progress-125px .ppc-progress-fill-125px {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 62.5px);
  top: calc(50% - 62.5px);
  width: 125px;
  height: 125px;
  clip: rect(0, 62.5px, 125px, 0);
  background: var(--brand-primary, #ff00ea);
  transform: rotate(60deg);
}

.gt-50-125px .ppc-progress-125px {
  clip: rect(0, 62.5px, 125px, 0);
}

.gt-50-125px .ppc-progress-125px .ppc-progress-fill-125px {
  clip: rect(0, 125px, 125px, 62.5px);
  background: rgba(255, 255, 255, 0.05);
}

.ppc-percents-125px {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 52.5px); /* = 10px Border stärke */
  top: calc(50% - 52.5px);
  width: 105px;
  height: 105px;
  background: rgba(15, 19, 32, 0.95); /* Passend zur Card Color */
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.pcc-percents-wrapper span {
  font-size: 22px;
  font-weight: 800;
  color: white;
}

/* ========================================================
   Card Recommendation (Ziel-Gap-Rechner)
   ======================================================== */
.card-rec-wrapper {
  margin: 8px 0 24px;
}

.card-rec-header {
  margin-bottom: 12px;
}
.card-rec-header .card-rec-title {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.card-rec-header .card-rec-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.card-rec-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.card-rec-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, #ff00ea, #8b5cf6, #00f1f1);
}

.card-rec-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 20px;
  margin: 16px 16px 0;
  text-transform: uppercase;
}

.card-rec-body {
  padding: 12px 16px 20px;
}

.card-rec-card-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.card-rec-bonus-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.card-rec-bonus-row .card-rec-bonus-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.card-rec-bonus-row .card-rec-bonus-value {
  font-size: 15px;
  font-weight: 700;
}

.card-rec-bar-bg {
  position: relative;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin-bottom: 6px;
}
.card-rec-bar-bg .card-rec-bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: 4px;
  transition: width 0.8s ease;
}

.card-rec-bar-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
  display: block;
}

.card-rec-saving {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 0, 234, 0.1);
  border: 1px solid rgba(255, 0, 234, 0.25);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}
.card-rec-saving .material-icons {
  color: #ff00ea;
  font-size: 18px;
}
.card-rec-saving strong {
  color: #ff00ea;
}

.card-rec-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  text-decoration: none;
  margin-bottom: 12px;
}
.card-rec-cta .material-icons {
  font-size: 18px;
}

.card-rec-other {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}
.card-rec-other a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
  margin-left: 4px;
}

/* ---- Miles View Card ---- */
.mv-card {
  min-height: 200px;
  padding: 0;
}

.mv-cta {
  display: block;
  text-decoration: none;
}

/* ---- Miles View Split-Balken (M&M vs Payback) ---- */
.mv-split-bar {
  padding: 0 4px;
}

.mv-split-track {
  display: flex;
  height: 6px;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 8px;
}

.mv-split-mm {
  background: #FDB714;
  transition: width 0.6s ease;
}

.mv-split-pb {
  background: #004D9D;
  transition: width 0.6s ease;
}

.mv-split-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
}

.mv-split-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mv-split-dot--mm {
  background: #FDB714;
}
.mv-split-dot--pb {
  background: #004D9D;
}

.mv-split-legend-label {
  font-weight: 600;
}

.ml-3 {
  margin-left: 12px;
}

/* ---- Miles View Modal ---- */
.mv-modal-hint {
  color: rgba(255, 255, 255, 0.7);
}

.mv-modal-number-input {
  font-size: 24px;
  padding: 16px;
}

/* Stat-action links/buttons need no default decoration/border */
.stat-actions a {
  text-decoration: none;
}
.stat-actions button {
  border: none;
}

/* Goal change action edit icon */
.goal-change-action .material-icons {
  font-size: 16px;
}

/* Program icon brand colors */
.pl-icon-mm {
  background: #FDB714;
  color: #000000;
}

.pl-icon-pb {
  background: #004D9D;
  color: #FFFFFF;
}

.pl-icon-mr {
  background: #006FCF;
  color: #FFFFFF;
}

/* Lock overlay icon */
.mg-program-lock-overlay .mg-btn-primary i {
  font-size: 18px;
  margin-right: 6px;
  vertical-align: middle;
}

/* --- Flight Offer List (flightoffer.js) --- */
.fo-card-no-pad {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.fo-card-link {
  display: block;
  position: relative;
  height: 110px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.fo-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 19, 32, 0.85) 0%, rgba(15, 19, 32, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.fo-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.fo-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.fo-chevron {
  color: rgba(255, 255, 255, 0.35);
  font-size: 20px !important;
  flex-shrink: 0;
}

.fo-lock-overlay {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(6px);
  background: rgba(15, 19, 32, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: 0 0 20px 20px;
}

.fo-login-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.fo-lock-icon {
  font-size: 18px !important;
}

/* ========================================================
   Promo Catcher / Weitere Schritte (Vertical List)
   ======================================================== */
.mg-steps-section {
  margin-bottom: 24px;
}

.mg-steps-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 4px;
}
.mg-steps-header .title {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}
.mg-steps-header .action {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: opacity 0.2s;
}
.mg-steps-header .action:hover {
  opacity: 0.8;
}

.mg-step-list-item {
  display: flex;
  align-items: center;
  background: linear-gradient(#0F1320, #0F1320) padding-box, linear-gradient(135deg, #ff00ea, #8b5cf6, #00f1f1) border-box;
  border: 1.5px solid transparent;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 12px;
  text-decoration: none;
  transition: transform 0.2s;
}
.mg-step-list-item:last-child {
  margin-bottom: 0;
}
.mg-step-list-item:active {
  transform: scale(0.98);
}
.mg-step-list-item {
  /* Die kreisförmige Nummer links */
}
.mg-step-list-item .step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  margin-right: 16px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}
.mg-step-list-item {
  /* Textbereich (Titel und Subtitel) */
}
.mg-step-list-item .step-content {
  flex-grow: 1;
  min-width: 0;
}
.mg-step-list-item .step-content .step-title {
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mg-step-list-item .step-content .step-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mg-step-list-item {
  /* Badges rechts (+5k, ✦ KI, etc.) */
}
.mg-step-list-item .step-badge {
  padding: 6px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-left: 12px;
}
.mg-step-list-item .step-badge.green {
  background: rgba(255, 0, 234, 0.12);
  color: var(--brand-primary, #ff00ea);
}
.mg-step-list-item .step-badge.purple {
  background: rgba(127, 119, 221, 0.15);
  color: #A79FFF; /* Helles KI/AI Purple */
}
.mg-step-list-item .step-badge.neutral {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
}

/* Progress section inside the promo card */
.mg-steps-progress {
  padding: 18px 20px 16px;
}
.mg-steps-progress .mg-steps-progress-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.mg-steps-progress .mg-steps-progress-row .mg-steps-progress-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.mg-steps-progress .mg-steps-progress-row .mg-steps-progress-count {
  font-size: 12px;
  font-weight: 600;
  color: #00f1f1;
}

/* "Alle N Schritte anzeigen" link at bottom of grouped card */
.mg-steps-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 0.2s;
}
.mg-steps-more-btn:hover {
  color: rgba(255, 255, 255, 0.8);
}
.mg-steps-more-btn .material-icons {
  font-size: 16px;
}

/* Grouped variant: Items inside a shared card, no individual borders */
.mg-steps-container--grouped {
  padding: 0;
  overflow: hidden;
  position: relative;
}
.mg-steps-container--grouped .mg-step-list-item {
  background: transparent;
  border: none;
  border-radius: 0;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.mg-steps-container--grouped .mg-step-list-item:last-child {
  border-bottom: none;
}
.mg-steps-container--grouped .mg-step-list-item:active {
  background: rgba(255, 255, 255, 0.04);
  transform: none;
}

/* ========================================================
   Beste Nächste Aktion (Best Action Card / Top Deal)
   ======================================================== */
.mg-best-action-card {
  display: block;
  background: #0F1320;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 20px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}
.mg-best-action-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff00ea, #8b5cf6, #00f1f1);
}
.mg-best-action-card:active {
  transform: scale(0.98);
}
.mg-best-action-card .action-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.mg-best-action-card .action-badge .badge-icon {
  width: 28px;
  height: 28px;
  background: rgba(255, 0, 234, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff00ea;
}
.mg-best-action-card .action-badge .badge-icon i {
  font-size: 16px;
}
.mg-best-action-card .action-badge span {
  font-size: 11px;
  font-weight: 700;
  color: #ff00ea;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.mg-best-action-card .action-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.mg-best-action-card .action-text {
  flex-grow: 1;
}
.mg-best-action-card .action-text .action-title {
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 6px 0;
  line-height: 1.3;
}
.mg-best-action-card .action-text .action-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  margin: 0 0 12px 0;
}
.mg-best-action-card .action-text .action-link {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}
.mg-best-action-card .action-image {
  flex-shrink: 0;
  width: 80px;
}
.mg-best-action-card .action-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
  transform: rotate(-4deg);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (hover: hover) {
  .mg-best-action-card:hover .action-image img {
    transform: rotate(0deg) scale(1.05);
  }
}

/* ========================================================
   Flycatcher / Instagram Infinite Scroller
   ======================================================== */
.mg-flycatch-header {
  text-align: center;
  padding: 0 20px;
  margin-bottom: 24px;
}
.mg-flycatch-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.mg-flycatch-header p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.mg-flycatch-footer {
  text-align: center;
  padding: 16px 20px 0;
}

.mg-flycatch-scroller {
  max-width: 100%;
  overflow: hidden;
  /* Weiche Maskierung für den Fade-Effekt an den Rändern */
  -webkit-mask: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  mask: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  padding: 10px 0; /* Platz für den Box-Shadow der Bilder */
}

.mg-flycatch-scroller-inner {
  display: flex;
  gap: 16px;
  width: max-content;
  /* Die Magie für den Endlos-Scroll */
  animation: scroll-flycatch 30s linear infinite;
  /* Animation pausiert, wenn man den Daumen/Mauszeiger darauf hält */
}
.mg-flycatch-scroller-inner:hover, .mg-flycatch-scroller-inner:active {
  animation-play-state: paused;
}

@keyframes scroll-flycatch {
  to {
    /* Wir verschieben um exakt 50% (eine Bilderserie) plus die Hälfte des 16px Gaps,
       damit der Loop pixelfrei und perfekt nahtlos durchläuft */
    transform: translateX(calc(-50% - 8px));
  }
}
.mg-flycatch-image {
  display: block;
  width: 160px; /* Auf Mobile-Geräten etwas kompakter */
  height: 160px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease-out;
  flex-shrink: 0;
  /* Leichter Push-Effekt beim Antippen */
}
.mg-flycatch-image:active {
  transform: scale(0.96);
}
.mg-flycatch-image {
  /* Desktop Hover-Effekt */
}
@media (hover: hover) {
  .mg-flycatch-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
    z-index: 2;
  }
}
.mg-flycatch-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* --- flyCatchView card wrapper --- */
.fly-catch-card {
  position: relative;
  padding: 24px 0 20px 0;
}

/* --- Instagram follow button layout --- */
.fly-catch-ig-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.fly-catch-ig-btn i {
  font-size: 18px;
}

/* ========================================================
   Mini Catcher / 75px Pie Chart Styles
   ======================================================== */
/* ---- Card ---- */
.mg-minicatcher-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 20px;
  text-align: left;
}

.mc-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.mc-logo {
  flex-shrink: 0;
  width: 60px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.mc-logo a {
  display: block;
  width: 100%;
  height: 100%;
}
.mc-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mc-title-wrap {
  flex-grow: 1;
}

.mc-title {
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.mc-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin: 0 0 20px;
}

/* ---- Highlight Box ---- */
.mc-highlight {
  background: #1A1F2D;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.mc-bonus-info {
  flex-grow: 1;
}

.mc-bonus-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 4px;
}

.mc-bonus-val {
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: -0.5px;
}

.mc-bonus-unit {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0;
}

.mc-pie-wrap {
  flex-shrink: 0;
}

/* ---- Actions ---- */
.mc-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mc-actions .mg-btn-primary {
  text-align: center;
  text-decoration: none;
  padding: 14px;
  border-radius: 14px;
  font-size: 15px;
}
.mc-actions .mc-more-btn {
  text-align: center;
  text-decoration: none;
  padding: 12px;
  border-radius: 14px;
  font-size: 14px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-pie-chart-75px {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  position: relative;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.5);
}
.progress-pie-chart-75px.gt-50-75px {
  background-color: var(--brand-primary, #ff00ea);
}

.ppc-progress-75px {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 37.5px);
  top: calc(50% - 37.5px);
  width: 75px;
  height: 75px;
  clip: rect(0, 75px, 75px, 37.5px);
}
.ppc-progress-75px .ppc-progress-fill-75px {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 37.5px);
  top: calc(50% - 37.5px);
  width: 75px;
  height: 75px;
  clip: rect(0, 37.5px, 75px, 0);
  background: var(--brand-primary, #ff00ea);
  transform: rotate(0deg); /* Wird von JS überschrieben */
}

.gt-50-75px .ppc-progress-75px {
  clip: rect(0, 37.5px, 75px, 0);
}
.gt-50-75px .ppc-progress-75px .ppc-progress-fill-75px {
  clip: rect(0, 75px, 75px, 37.5px);
  background: rgba(255, 255, 255, 0.05);
}

.ppc-percents-75px {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 31.5px); /* 6px Border */
  top: calc(50% - 31.5px);
  width: 63px;
  height: 63px;
  background: rgba(15, 19, 32, 0.95);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.ppc-percents-75px .pcc-percents-wrapper span {
  font-size: 14px;
  font-weight: 800;
  color: #FFFFFF;
}

/* ========================================================
   Platinum Tracker Styles (Glassmorphism List Design)
   ======================================================== */
/* ---- Locked State ---- */
.plat-locked-card {
  overflow: hidden;
}

.plat-lock-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.plat-locked-title {
  margin: 0 0 8px;
  font-weight: 700;
  color: #fff;
  font-size: 20px;
}

.plat-locked-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
}

/* ---- Active Dashboard Header ---- */
.plat-tracker-header {
  margin-bottom: 8px;
}

.plat-fee-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* ---- Active Card ---- */
.plat-card {
  padding: 0;
  overflow: hidden;
}

/* ---- Summary Block ---- */
.plat-summary {
  padding: 24px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.plat-summary-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.plat-roi-val {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin: 4px 0;
}

.plat-used-row {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.plat-used-total {
  color: var(--brand-light, #00f1f1);
}

/* ---- Benefit Items ---- */
.mg-program-item {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.mg-program-item:last-child {
  border-bottom: none;
}
.mg-program-item:active {
  background: rgba(255, 255, 255, 0.05);
}
.mg-program-item.plat-item-static {
  cursor: default;
}

.mg-program-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  margin-right: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  background: rgba(139, 92, 246, 0.08);
}

.mg-program-info {
  flex-grow: 1;
  min-width: 0;
}

.mg-program-name {
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mg-program-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.plat-benefit-usage {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
  margin-bottom: 4px;
}

.plat-val {
  color: #fff;
}

.mg-program-stats {
  text-align: right;
  flex-shrink: 0;
  padding-left: 12px;
}

/* Badges (Identisch zum Promo-Catcher) */
.step-badge {
  padding: 6px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.step-badge.green {
  background: rgba(93, 202, 165, 0.15);
  color: var(--success, #B7EDD7);
}
.step-badge.purple {
  background: rgba(127, 119, 221, 0.15);
  color: #A79FFF;
}
.step-badge.neutral {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
}

/* ---- Lounge Controls ---- */
.plat-lounge-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.plat-lounge-count {
  font-size: 16px;
  color: #fff;
  width: 24px;
  text-align: center;
}

/* Lounge Buttons */
.plat-btn-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.plat-btn-circle i {
  font-size: 20px;
}
.plat-btn-circle:active {
  transform: scale(0.9);
}
.plat-btn-circle.highlight {
  color: #00e5ff;
  background: rgba(0, 229, 255, 0.1);
}
.plat-btn-circle.small {
  width: 28px;
  height: 28px;
}
.plat-btn-circle.small i {
  font-size: 16px;
}

/* ---- Modal ---- */
#platTrackModal .mg-modal-content::before {
  background: linear-gradient(90deg, #ff00ea, #8b5cf6, #00f1f1);
}

.plat-modal-box {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 24px;
}

.plat-modal-box-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}

.plat-modal-input-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

#plat-number-input {
  font-size: 32px;
  padding: 12px;
  max-width: 150px;
}

.plat-euro-sign {
  font-size: 32px;
  font-weight: bold;
}

.plat-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 12px;
  font-weight: 500;
}

/* Blue Range Slider für das Modal */
.mg-range-slider-blue {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  transition: background 0.15s;
}
.mg-range-slider-blue::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3), 0 0 0 4px #8b5cf6;
  cursor: pointer;
  transition: transform 0.1s;
}
.mg-range-slider-blue::-webkit-slider-thumb:active {
  transform: scale(1.1);
}
.mg-range-slider-blue::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3), 0 0 0 4px #8b5cf6;
  cursor: pointer;
  border: none;
}

/* ========================================================
   Top Deals Component (Horizontal Scroller & Cards)
   ======================================================== */
/* --------------------------------------------------------
   Flights View — Tutorial & Goal CTA cards
   -------------------------------------------------------- */
.flights-setup-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-light, #00f1f1);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.flights-promo-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.flights-promo-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

/* Wrapper mit Gradient-Fade-Out rechts als Swipe-Hint */
.tfd-card {
  position: relative;
}
.tfd-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 56px;
  background: linear-gradient(to left, rgba(15, 19, 32, 0.85), transparent);
  border-radius: 0 20px 20px 0;
  pointer-events: none;
  z-index: 2;
}

/* Swipe-Hinweis unter dem Scroll-Container */
.tfd-swipe-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 0 4px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
  letter-spacing: 0.3px;
}
.tfd-swipe-hint i {
  font-size: 14px;
}

/* Horizontaler Scroll-Container */
.mg-topdeals-scroll-container {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 10px 20px 24px 20px; /* Großzügiges Padding für die Box-Shadows */
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  /* Scrollbar verstecken */
  scrollbar-width: none;
}
.mg-topdeals-scroll-container::-webkit-scrollbar {
  display: none;
}

/* Die einzelne Deal-Karte (verlinkt) */
.mg-topdeal-card {
  display: block;
  flex: 0 0 280px; /* Feste Breite für die Karten */
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 16px;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s, border-color 0.2s;
}
.mg-topdeal-card:active {
  transform: scale(0.97);
  background: rgba(255, 255, 255, 0.05);
}
@media (hover: hover) {
  .mg-topdeal-card:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
  }
}

/* Klassen-Hinweis unter Meilen-Zeile */
.tfd-class-hint {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 8px;
  text-align: right;
}

/* Klassen-Filter Pills */
.tfd-class-filter {
  display: flex;
  gap: 8px;
  padding: 12px 20px 4px;
}

.tfd-filter-pill {
  flex: 1;
  padding: 6px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.tfd-filter-pill.active {
  background: linear-gradient(135deg, #ff00ea, #8b5cf6);
  border-color: transparent;
  color: #fff;
}
.tfd-filter-pill:active {
  transform: scale(0.97);
}

/* Header subtitle */
.tfd-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

/* Card wrapper */
.tfd-card {
  padding: 0;
  overflow: hidden;
}

/* Loading state */
.tfd-loading {
  text-align: center;
  padding: 36px 20px;
}

.tfd-loading-text {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* Error state */
.tfd-error {
  padding: 28px 20px;
  text-align: center;
}

.tfd-error-icon {
  font-size: 32px;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 10px;
  display: block;
}

.tfd-error-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.tfd-retry-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 10px;
  cursor: pointer;
}

/* Empty state */
.tfd-empty {
  padding: 24px 20px;
  text-align: center;
  width: 100%;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

/* Deal card inner layout */
.tfd-deal-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.tfd-deal-airline-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.tfd-deal-routes {
  flex: 1;
  min-width: 0;
}

.tfd-deal-route-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tfd-deal-airport {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tfd-deal-arrow {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.tfd-deal-meta {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 2px;
}

.tfd-class-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 4px;
}

.tfd-class-left {
  display: flex;
  align-items: center;
  gap: 7px;
}

.tfd-class-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.tfd-class-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 600;
}

.tfd-class-right {
  text-align: right;
}

.tfd-class-miles {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}

.tfd-class-rate {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
}

/* Lade-Spinner */
.mg-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid #ff00ea;
  border-radius: 50%;
  animation: mg-spin 1s linear infinite;
  display: block;
}

@keyframes mg-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* ========================================================
   Flight Search Module (Glassmorphism Forms & Cards)
   ======================================================== */
/* --- Compact Search Bar --- */
.mg-compact-search-bar {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}
.mg-compact-search-bar:active {
  transform: scale(0.98);
  background: rgba(255, 255, 255, 0.08);
}

/* --- Detailed Search Inputs --- */
.mg-flight-inputs-wrapper {
  position: relative;
  z-index: 100;
}

.mg-flight-input-group {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  transition: border-color 0.2s, background 0.2s;
}
.mg-flight-input-group:focus-within {
  border-color: #ff00ea;
  background: rgba(255, 255, 255, 0.08);
}
.mg-flight-input-group .icon {
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
}
.mg-flight-input-group .mg-flight-input {
  background: transparent;
  border: none;
  color: #FFFFFF;
  width: 100%;
  font-size: 16px !important; /* Wichtig für iOS (kein Zoom) */
  font-weight: 600;
}
.mg-flight-input-group .mg-flight-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
}
.mg-flight-input-group .mg-flight-input:focus {
  outline: none;
}
.mg-flight-input-group .clear-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  z-index: 10;
}
.mg-flight-input-group .clear-btn i {
  font-size: 16px;
}
.mg-flight-input-group .clear-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #FFF;
}

/* --- BUGFIX: Tausch Button (Links zentriert mit den Flight-Icons positioniert) --- */
.mg-swap-btn {
  position: absolute;
  z-index: 40;
  /* Linke Achse exakt bündig zur optischen Achse der beiden Material-Icons zentrieren */
  left: 26px;
  /* Vertikal perfekt im Spalt der beiden Input-Boxen */
  top: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: #ff00ea;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 110;
  box-shadow: 0 4px 12px rgba(255, 0, 234, 0.4);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}
.mg-swap-btn i {
  font-size: 20px;
}
.mg-swap-btn:active {
  transform: translate(-50%, -50%) scale(0.9);
}

/* --- Autocomplete Dropdown --- */
.mg-autocomplete-box {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: rgba(25, 24, 44, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  max-height: 240px;
  overflow-y: auto;
  z-index: 2000;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5);
  padding: 8px 0;
}
.mg-autocomplete-box .mg-autocomplete-item {
  padding: 12px 16px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 14px;
}
.mg-autocomplete-box .mg-autocomplete-item strong {
  color: #FFF;
  font-size: 15px;
}
.mg-autocomplete-box .mg-autocomplete-item small {
  color: rgba(255, 255, 255, 0.5);
}
.mg-autocomplete-box .mg-autocomplete-item:last-child {
  border-bottom: none;
}
.mg-autocomplete-box .mg-autocomplete-item:hover, .mg-autocomplete-box .mg-autocomplete-item:active {
  background: rgba(255, 255, 255, 0.1);
}

/* --- Compact search bar inner layout --- */
.cs-inner {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 12px;
}

.cs-route-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 0;
}

.cs-airport-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.cs-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cs-code {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cs-arrow {
  color: rgba(255, 255, 255, 0.4);
  font-size: 18px;
  flex-shrink: 0;
  padding: 0 8px;
}

.cs-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.cs-date-col {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.cs-date-val {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.cs-btn {
  padding: 10px;
  border-radius: 12px;
  flex-shrink: 0;
}
.cs-btn i {
  font-size: 20px;
}

/* --- Detailed search heading --- */
.fs-search-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.fs-search-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* --- Search form card (gradient border override via compound selector) --- */
.mg-settings-card.mg-search-form {
  padding: 24px;
  position: relative;
  overflow: visible;
  z-index: 100;
  background-image: linear-gradient(90deg, #ff00ea, #8b5cf6, #00f1f1);
  background-size: 100% 4px;
  background-repeat: no-repeat;
  background-position: top left;
  border-top: none;
}

/* --- Input groups z-index overrides --- */
.mg-flight-inputs-wrapper {
  margin-bottom: 12px;
}

.mg-flight-input-group--dep {
  z-index: 50;
}

.mg-flight-input-group--arr {
  z-index: 30;
  margin-bottom: 0;
}

.mg-flight-input-group--date {
  cursor: pointer;
  margin-bottom: 24px;
  z-index: 10;
}

.fs-date-text {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

/* --- Search button in form --- */
.fs-search-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  padding: 16px;
  position: relative;
  z-index: 1;
}

/* --- Disclaimer below form --- */
.fs-disclaimer {
  opacity: 0.5;
  font-size: 11px;
  position: relative;
  z-index: 1;
}

/* --- Results area wrapper --- */
.fs-results-wrap {
  position: relative;
  min-height: 10px;
}

.fs-route-container {
  transition: opacity 0.3s ease, filter 0.3s ease;
}

/* --- Ladeanimation --- */
.mg-flight-loader {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  background: rgba(25, 24, 44, 0.85);
  backdrop-filter: blur(16px);
  padding: 24px 32px;
  border-radius: 20px;
  border: 1px solid rgba(0, 229, 255, 0.2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.mg-flight-loader p {
  margin: 0;
  color: #00e5ff;
  font-weight: 700;
  font-size: 15px;
}

/* --- Route Cards (Suchergebnisse) --- */
.mg-flight-result-card {
  background-color: rgba(255, 255, 255, 0.03);
  background-image: linear-gradient(90deg, #ff00ea, #8b5cf6, #00f1f1);
  background-size: 100% 4px;
  background-repeat: no-repeat;
  background-position: top left;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: none;
  border-radius: 20px;
  padding: 20px;
  margin-top: 24px;
  position: relative;
  transition: transform 0.2s, background 0.2s;
}
.mg-flight-result-card.best-value-glow {
  background: rgba(255, 193, 7, 0.03);
  border: 1px solid rgba(255, 193, 7, 0.3);
  box-shadow: inset 0 0 20px rgba(255, 193, 7, 0.05), 0 8px 24px rgba(0, 0, 0, 0.2);
}

.flight-route-header {
  display: flex;
  align-items: center;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.flight-route-header .airline-logo {
  width: 100%;
  max-width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  margin-right: 16px;
}
.flight-route-header .route-info {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flight-route-header .route-info .loc {
  flex: 1;
}
.flight-route-header .route-info .loc .city {
  font-weight: 700;
  font-size: 16px;
  color: #FFF;
  line-height: 1.2;
}
.flight-route-header .route-info .loc .code {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}
.flight-route-header .route-info .loc.right {
  text-align: right;
}
.flight-route-header .route-info .loc.left {
  text-align: left;
}
.flight-route-header .route-info .route-arrow {
  padding: 0 16px;
  font-size: 24px;
  background: linear-gradient(135deg, #ff00ea, #8b5cf6, #00f1f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Badges für Route Cards --- */
.mg-badges-wrapper {
  position: absolute;
  top: -14px;
  right: 16px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.mg-badge-best {
  background: #ffc107;
  color: #000;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.mg-badge-savings {
  background: #008BFA;
  color: #FFF;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(0, 139, 250, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* --- Flight Classes (Eco, Biz, First) --- */
.flight-classes-wrapper {
  margin-bottom: 16px;
}

.mg-class-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mg-class-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mg-class-card {
  flex: 1;
  min-width: 90px;
  max-width: 140px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  text-decoration: none;
  color: inherit;
}
.mg-class-card .class-badge {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: #FFF;
  padding: 4px 8px;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 8px;
}
.mg-class-card .class-badge.empty {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  box-shadow: none !important;
}
.mg-class-card .program-logo {
  height: 36px;
  width: 100%;
  max-width: 80px;
  object-fit: contain;
  margin: 8px 0;
}
.mg-class-card .miles-val {
  font-size: 18px;
  font-weight: 800;
  color: #FFF;
}
.mg-class-card .miles-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-top: 4px;
}
.mg-class-card .alt-val {
  font-size: 14px;
  font-weight: 700;
  color: #FFF;
  margin-top: 8px;
}
.mg-class-card .alt-label {
  font-size: 10px;
  color: #00e5ff;
  margin-top: 4px;
  line-height: 1.3;
}
.mg-class-card .unavail-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 8px;
  line-height: 1.3;
}

/* --- Amex Transfer Cards --- */
.mg-transfer-card {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.mg-transfer-card .class-badge-wrapper {
  width: 100%;
  max-width: 140px;
  margin-bottom: 12px;
}
.mg-transfer-card .class-badge {
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: #FFF;
  padding: 4px 8px;
  border-radius: 8px;
  text-align: center;
}
.mg-transfer-card .class-badge.empty {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  box-shadow: none !important;
}
.mg-transfer-card .alt-val {
  font-size: 16px;
  font-weight: 700;
  color: #FFF;
  margin-top: 4px;
}
.mg-transfer-card .alt-label {
  font-size: 11px;
  color: #00e5ff;
  margin-top: 4px;
}
.mg-transfer-card .unavail-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 8px;
}

.mg-transfer-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 8px;
}
.mg-transfer-flow .transfer-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.mg-transfer-flow .transfer-step .transfer-logo {
  height: 40px;
  width: 100%;
  max-width: 60px;
  object-fit: contain;
  margin-bottom: 8px;
}
.mg-transfer-flow .transfer-step .transfer-val {
  font-size: 16px;
  font-weight: 800;
  color: #FFF;
  line-height: 1;
}
.mg-transfer-flow .transfer-step .transfer-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-top: 4px;
}
.mg-transfer-flow .transfer-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #00e5ff;
}
.mg-transfer-flow .transfer-arrow span {
  font-size: 11px;
  font-weight: 800;
}
.mg-transfer-flow .transfer-arrow i {
  font-size: 24px;
  line-height: 0.8;
}

/* --- Verfügbarkeiten Chips --- */
.mg-avail-section {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.mg-avail-section .avail-title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}
.mg-avail-section .avail-title span {
  font-weight: 400;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}
.mg-avail-section .avail-scroll-container {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: none;
}
.mg-avail-section .avail-scroll-container::-webkit-scrollbar {
  display: none;
}

.mg-avail-chip {
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px 14px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}
.mg-avail-chip:active {
  transform: scale(0.95);
}
.mg-avail-chip .date {
  font-size: 13px;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 4px;
}
.mg-avail-chip .price {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 6px;
}
.mg-avail-chip .dots {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 4px;
}
.mg-avail-chip .dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.mg-avail-chip .deal-tag {
  font-size: 10px;
  font-weight: 800;
  color: #ffc107;
  margin-top: 6px;
}
.mg-avail-chip.active-chip {
  background: rgba(0, 229, 255, 0.15);
  border-color: #00e5ff;
}
.mg-avail-chip.active-chip .date {
  color: #00e5ff;
}
.mg-avail-chip.top-deal {
  border-color: rgba(255, 193, 7, 0.5);
  background: rgba(255, 193, 7, 0.05);
}

/* --- Kalender Overlay --- */
.mg-calendar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 19, 32, 0.8);
  backdrop-filter: blur(10px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.mg-calendar-content {
  background: rgba(30, 34, 50, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  width: 100%;
  max-width: 360px;
  padding: 20px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
  animation: scaleIn 0.2s ease-out;
}
.mg-calendar-content .calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.mg-calendar-content .calendar-header span {
  font-size: 18px;
  font-weight: 700;
  color: #FFF;
}
.mg-calendar-content .calendar-header button {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mg-calendar-content .calendar-header button:active {
  transform: scale(0.9);
}
.mg-calendar-content .calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  text-align: center;
}
.mg-calendar-content .calendar-weekday {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  margin-bottom: 8px;
}
.mg-calendar-content .calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #FFF;
  font-weight: 600;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}
.mg-calendar-content .calendar-day:not(.empty):not(.disabled):hover {
  background: rgba(255, 255, 255, 0.1);
}
.mg-calendar-content .calendar-day.disabled {
  color: rgba(255, 255, 255, 0.2);
  cursor: default;
}
.mg-calendar-content .calendar-day.selected {
  background: var(--brand-primary, #ff00ea);
  color: #FFF;
  box-shadow: 0 4px 10px rgba(255, 0, 234, 0.4);
}

#detailedDates {
  padding-left: 5px;
}

/* ========================================================
   Goal Progress Card (Dein Wunschziel)
   ======================================================== */
.mg-goal-progress-card {
  border: 1.5px solid transparent;
  background: linear-gradient(#111219, #111219) padding-box, linear-gradient(135deg, #ff00ea, #8b5cf6, #00f1f1) border-box;
  border-radius: 20px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

/* Das Hintergrundbild mit Overlay */
.goal-progress-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.goal-progress-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Dunkler Gradient nach unten, damit die weiße Schrift lesbar bleibt –
     oben heller gehalten, damit das Ziel erkennbar ist */
  background: linear-gradient(to bottom, rgba(25, 24, 44, 0.2) 0%, rgba(25, 24, 44, 0.55) 55%, rgba(25, 24, 44, 0.9) 100%);
  /* Nur leichter Blur, damit das Wunschziel klar erkennbar bleibt */
  backdrop-filter: blur(2px);
}

.goal-progress-content {
  position: relative;
  z-index: 10;
  padding: 24px;
}

/* Header */
.goal-progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.goal-progress-header .goal-label {
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.goal-progress-header .btn-goal-change {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}
.goal-progress-header .btn-goal-change:active {
  transform: scale(0.95);
  background: rgba(255, 255, 255, 0.25);
}

/* Titel & Info */
.goal-title-main {
  font-size: 32px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 6px 0;
  letter-spacing: -0.5px;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.goal-route-info {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin-bottom: 24px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* Progress Bar */
.goal-progress-section {
  margin-bottom: 20px;
}

.goal-progress-stats {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.goal-progress-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  overflow: hidden;
}

.goal-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff00ea, #8b5cf6, #00f1f1);
  border-radius: 4px;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 10px rgba(255, 0, 234, 0.5);
}

/* Trennlinie */
.goal-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 0 0 16px 0;
}

/* Footer (ETA & Action) */
.goal-progress-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.goal-progress-footer .goal-eta {
  display: flex;
  flex-direction: column;
}
.goal-progress-footer .goal-eta .eta-label-row {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 2px;
}
.goal-progress-footer .goal-eta .eta-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}
.goal-progress-footer .goal-eta .eta-info-btn {
  background: none;
  border: none;
  padding: 0;
  color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.goal-progress-footer .goal-eta .eta-info-btn i {
  font-size: 13px;
}
.goal-progress-footer .goal-eta .eta-info-btn:hover {
  color: rgba(255, 255, 255, 0.65);
}
.goal-progress-footer .goal-eta .eta-value {
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
}
.goal-progress-footer .btn-goal-faster {
  display: flex;
  align-items: center;
  gap: 6px;
}
.goal-progress-footer .btn-goal-faster i {
  font-size: 16px;
}
.goal-progress-footer .btn-goal-faster {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}
.goal-progress-footer .btn-goal-faster:active {
  transform: scale(0.96);
  background: rgba(255, 255, 255, 0.25);
}

/* Kreditkarten-Beschleuniger (direkt unter ETA in der Karte) */
.goal-card-accelerator {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 0, 234, 0.12);
  border-top: 1px solid rgba(255, 0, 234, 0.25);
  padding: 12px 24px;
  text-decoration: none;
  position: relative;
  z-index: 10;
  transition: background 0.2s;
}
.goal-card-accelerator:active {
  background: rgba(255, 0, 234, 0.2);
}
.goal-card-accelerator .accel-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.goal-card-accelerator .accel-left .material-icons {
  color: #ff00ea;
  font-size: 20px;
}
.goal-card-accelerator .accel-card-name {
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 2px;
}
.goal-card-accelerator .accel-detail {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}
.goal-card-accelerator .accel-detail strong {
  color: #ff00ea;
}
.goal-card-accelerator .accel-cta {
  font-size: 12px;
  font-weight: 700;
  color: #ff00ea;
  white-space: nowrap;
  flex-shrink: 0;
}

/* --- ETA Info Modal text --- */
.modal-eta-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

.modal-eta-detail {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  margin-top: 8px;
}

/* ========================================================
   Connections / Verknüpfungen (Cockpit)
   ======================================================== */
/* --- Connections Main Card --- */
.conn-main-card {
  position: relative;
  padding: 24px;
  overflow: hidden;
}

.conn-header {
  margin-bottom: 20px;
}

.conn-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.conn-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.conn-sections {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mg-connection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding-bottom: 4px;
}

.mg-connection-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 16px 12px;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
  line-height: 1.3;
  /* Aktiv-Feedback (Tippen/Klicken) */
}
.mg-connection-card:active {
  transform: scale(0.96);
}
.mg-connection-card .program-name {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
.mg-connection-card .program-status {
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
}
.mg-connection-card .program-status.text-brand {
  color: var(--brand-primary, #ff00ea);
}
.mg-connection-card {
  /* Status 1: Bereits Verknüpft */
}
.mg-connection-card.linked {
  background: rgba(255, 0, 234, 0.08); /* Leichter Pink-Hintergrund */
  border: 1px solid rgba(255, 0, 234, 0.3);
}
@media (hover: hover) {
  .mg-connection-card.linked:hover {
    background: rgba(255, 0, 234, 0.12);
    border-color: rgba(255, 0, 234, 0.5);
  }
}
.mg-connection-card {
  /* Status 2: Neu verknüpfen */
}
.mg-connection-card.new {
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(255, 255, 255, 0.2);
}
@media (hover: hover) {
  .mg-connection-card.new:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
  }
}
.mg-connection-card {
  /* Status 3: Zukünftig */
}
.mg-connection-card.future {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: default;
}
.mg-connection-card.future .program-name {
  color: rgba(255, 255, 255, 0.4);
}
.mg-connection-card.future:active {
  transform: none;
}
.mg-connection-card .future-label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.3px;
}
.mg-connection-card .future-label .material-icons {
  font-size: 12px;
}

/* --- MilesAndMore Connect View --- */
.modern-glass-card {
  background: rgba(30, 32, 40, 0.65);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 30px;
  color: #f8f9fa;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-align: left;
  font-family: system-ui, -apple-system, sans-serif;
}

.modern-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 100px;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
  font-weight: 500;
}
.modern-back-btn i {
  font-size: 1.2rem;
}
.modern-back-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  text-decoration: none;
}

.coming-soon-box {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  margin-bottom: 30px;
}

.csb-title {
  color: #60a5fa;
  margin-top: 0;
  font-weight: 600;
  margin-bottom: 12px;
}

.csb-text {
  color: #e4e4e7;
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.disabled-section {
  opacity: 0.4;
  pointer-events: none;
  filter: grayscale(100%);
  user-select: none;
}

.modern-input {
  background: rgba(0, 0, 0, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  border-radius: 12px;
  padding: 14px 16px;
  width: 100%;
  margin-top: 8px;
  box-sizing: border-box;
}

.modern-label {
  color: #a1a1aa;
  font-size: 0.9rem;
  font-weight: 500;
}

.btn-modern-disabled {
  background: #3b82f6;
  color: #fff;
  padding: 14px 24px;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  width: 100%;
}

.mm-title {
  margin-top: 0;
}

.mm-subtitle {
  color: #a1a1aa;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.mm-disclaimer {
  color: #71717a;
}

.mm-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mm-create-text {
  color: #a1a1aa;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.mm-create-btn {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
  color: #60a5fa;
}

/* --- Lösch-Button für das Modal --- */
.mg-btn-danger {
  background: rgba(220, 53, 69, 0.15);
  color: #ff6b6b;
  border: 1px solid rgba(220, 53, 69, 0.3);
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  width: 100%;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  margin-top: 24px;
}
.mg-btn-danger:active {
  transform: scale(0.97);
}
@media (hover: hover) {
  .mg-btn-danger:hover {
    background: rgba(220, 53, 69, 0.25);
  }
}

.detail-rel-z2 {
  position: relative;
  z-index: 2;
}

/* --- credential status view --- */
.credential-link-btn {
  font-size: 9pt !important;
  line-height: 9pt;
}

.credential-delete-btn {
  position: absolute;
  right: 15px;
  top: 10px;
}

/* ========================================================
   Checklist / Badgelist Styles (Glassmorphism)
   ======================================================== */
/* --- Progress Bar --- */
.mg-checklist-progress-bg {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  height: 8px;
  width: 100%;
  margin-bottom: 24px;
  overflow: hidden;
}

.mg-checklist-progress-fill {
  background: linear-gradient(90deg, #008BFA, #00e5ff);
  height: 100%;
  border-radius: 8px;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

/* --- Badge Grid --- */
.mg-badge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 12px;
}

.mg-badge-item {
  position: relative;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 10px 8px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.mg-badge-item:active {
  transform: scale(0.95);
}
.mg-badge-item {
  /* Zustand: Erledigt (Farbig) */
}
.mg-badge-item.unlocked {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
@media (hover: hover) {
  .mg-badge-item.unlocked:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  }
}
.mg-badge-item {
  /* Zustand: Nicht Erledigt (Grau, mit Schloss) */
}
.mg-badge-item.locked {
  opacity: 0.75;
}
.mg-badge-item.locked .mg-badge-img-wrap img {
  filter: grayscale(100%) brightness(0.55);
}
@media (hover: hover) {
  .mg-badge-item.locked:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.15);
  }
  .mg-badge-item.locked:hover .mg-badge-lock-overlay {
    opacity: 1 !important;
  }
}

/* Bild-Bereich innerhalb des Badge */
.mg-badge-img-wrap {
  width: 100%;
  aspect-ratio: 3/2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mg-badge-img-wrap img {
  max-width: 90%;
  max-height: 100%;
  object-fit: contain;
  transition: filter 0.3s ease;
}

/* Text-Label unterhalb des Bildes */
.mg-badge-label {
  font-size: 9px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  line-height: 1.3;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.2px;
}

/* Das Schloss-Overlay über grauen Karten */
.mg-badge-lock-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.mg-badge-lock-overlay i {
  font-size: 20px;
  color: #FFFFFF;
  background: rgba(0, 0, 0, 0.5);
  padding: 6px;
  border-radius: 50%;
  backdrop-filter: blur(4px);
}

/* Task-Schrittnummer auf gesperrten Badges */
.mg-badge-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff00ea, #8b5cf6);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(255, 0, 234, 0.4);
}

/* Amex-Rechner-Hinweis auf entsperrten Badges */
.mg-badge-amex-hint {
  position: absolute;
  bottom: 2px;
  right: 2px;
  font-size: 14px;
  line-height: 1;
}

/* --- Main Card Header --- */
.chk-main-card {
  position: relative;
  padding: 24px;
  overflow: hidden;
}

.chk-header {
  text-align: center;
  margin-bottom: 24px;
}

.chk-header-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.chk-header-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.chk-progress-header {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

/* --- All Done Message --- */
.chk-done-message {
  background: rgba(93, 202, 165, 0.15);
  border: 1px solid rgba(93, 202, 165, 0.3);
  padding: 16px;
  border-radius: 16px;
  margin-bottom: 24px;
  text-align: center;
}

.chk-done-title {
  color: var(--success, #B7EDD7);
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 700;
}

.chk-done-desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

/* --- Modal overrides --- */
.chk-modal-title {
  font-size: 17px;
  margin-bottom: 6px;
}

.chk-modal-desc {
  margin-bottom: 20px;
}

.chk-apply-link {
  text-decoration: none;
}

/* --- Spezifische Modifikationen für den Modal Button --- */
.mg-btn-secondary.done {
  background: rgba(93, 202, 165, 0.15);
  color: var(--success, #B7EDD7);
  border-color: rgba(93, 202, 165, 0.3);
}
.mg-btn-secondary.done i {
  color: var(--success, #B7EDD7);
}
.mg-btn-secondary.done:hover {
  background: rgba(93, 202, 165, 0.25);
}

/* 4. Views (Spezifische Seiten) */
.achievement {
  background: #192636;
  color: white;
  border-radius: 10px;
  text-align: center;
  font-size: 9pt;
  min-height: 230px;
  max-width: 100%;
  margin: 5px;
  padding: 5px;
  position: relative;
}
.achievement .title {
  font-weight: bold;
  padding: 5px;
  min-height: 50px;
}
.achievement .image {
  padding: 5px;
  font-size: 40pt;
}
.achievement .image .round-icon {
  font-size: 40pt;
  width: 80px; /* Breite des Kreises */
  height: 80px; /* Höhe des Kreises */
  background-color: #00d0ff; /* Färbt den Hintergrund blau */
  border-radius: 50%; /* Macht den Kreis rund */
  display: inline-block; /* Damit height und width angewendet werden */
  text-align: center; /* Zentriert das Icon im Kreis */
  line-height: 80px; /* Vertikal zentriert das Icon im Kreis */
}
.achievement .image .material-icons {
  font-size: 40pt;
  width: 80px; /* Breite des Kreises */
  height: 80px; /* Höhe des Kreises */
  background-color: #0d6efd; /* Färbt den Hintergrund blau */
  border-radius: 50%; /* Macht den Kreis rund */
  display: inline-block; /* Damit height und width angewendet werden */
  text-align: center; /* Zentriert das Icon im Kreis */
  line-height: 80px; /* Vertikal zentriert das Icon im Kreis */
}
.achievement img {
  max-width: 100%;
  max-height: 100%;
}
.achievement .status {
  position: absolute;
  bottom: 15px;
  margin: auto;
  text-align: center;
  left: 0;
  right: 0;
  background-color: #e31bd4;
  border-radius: 5px;
}

.finished .status {
  background: #0d6efd;
}

.horizontal-list-2 {
  overflow-x: scroll;
  width: 100%;
  display: inline-flex;
}

@keyframes glitter {
  0%, 100% {
    background-position: 100% 0%;
  }
  50% {
    background-position: 0% 100%;
  }
}
.glitter {
  background: linear-gradient(45deg, #152244, #116256, #0e1134, #2a0808);
  background-size: 400% 400%;
  animation: glitter 10s infinite;
}

/* ========================================================
   Tutorial View Styles (Modern, Dark, Static Header/Footer)
   ======================================================== */
.tutorial-page-wrapper {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background-color: #111219; /* Dunkles Theme passend zum Bild */
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1000;
  color: #FFFFFF;
}

/* Header Area (Progress + Controls) */
.tutorial-header {
  width: 100%;
  max-width: 440px;
  padding: env(safe-area-inset-top) 24px 0;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0; /* Verhindert, dass der Header beim Scrollen gequetscht wird */
  z-index: 10;
}
.tutorial-header .progress-container {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  margin-bottom: 24px;
  overflow: hidden;
}
.tutorial-header .progress-container .progress-bar {
  height: 100%;
  background: linear-gradient(to right, #ff00ea, #8b5cf6, #00f1f1);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.tutorial-header .tutorial-header-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.tutorial-header .tutorial-header-controls .back-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease, background 0.2s ease;
}
.tutorial-header .tutorial-header-controls .back-btn:active {
  background: rgba(255, 255, 255, 0.15);
}
.tutorial-header .tutorial-header-controls .back-btn i {
  font-size: 20px;
  margin-right: 2px;
}
.tutorial-header .tutorial-header-controls .step-indicator {
  color: white;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.tutorial-header .tutorial-header-controls .skip-btn {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s;
}
.tutorial-header .tutorial-header-controls .skip-btn:active {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Main Content Area */
.tutorial-content-container {
  flex: 1 0 auto; /* WICHTIG: Lässt den Container wachsen, aber nicht schrumpfen (für flüssiges Scrollen) */
  width: 100%;
  max-width: 440px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  will-change: transform, opacity;
  user-select: none;
  -webkit-user-select: none;
}
.tutorial-content-container.align-center {
  justify-content: center;
}
.tutorial-content-container.align-center .tutorial-text-area {
  text-align: center;
}
.tutorial-content-container.align-left {
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 16px;
}
.tutorial-content-container.align-left .tutorial-text-area {
  text-align: left;
}

.tutorial-icon-wrapper {
  margin-bottom: 32px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.tutorial-icon-wrapper img {
  height: 180px;
  width: auto;
  object-fit: contain;
  pointer-events: none;
  -webkit-user-drag: none;
}

.tutorial-text-area {
  width: 100%;
  margin-bottom: 24px;
  transition: text-align 0.3s ease;
}
.tutorial-text-area .tutorial-kicker {
  /* Markenfarbe Lila/Rosa statt Blau – als Farbverlauf-Text */
  background: linear-gradient(135deg, #ff00ea, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #D9489A; /* Fallback */
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.tutorial-text-area .tutorial-title {
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.25;
}
.tutorial-text-area .tutorial-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ========================================================
   Step-Specific Content Areas
   ======================================================== */
.tutorial-step-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 32px;
}

/* Form-Bereich Step 1 – sorgt für gleichmäßige Abstände zwischen den Gruppen */
.tutorial-form-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Form Inputs */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-group label {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.form-group .input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.form-group .input-wrapper input {
  width: 100%;
  /* Farbverlauf-Rahmen (padding-box / border-box Technik) */
  background: linear-gradient(#1D1E2C, #1D1E2C) padding-box, linear-gradient(135deg, #ff00ea, #8b5cf6, #00f1f1) border-box;
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 16px;
  color: #FFFFFF;
  font-size: 16px;
  outline: none;
  transition: filter 0.2s;
}
.form-group .input-wrapper input:focus {
  filter: brightness(1.15);
}
.form-group .input-wrapper input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* NEU: Input-Felder aus Step 5 (Meilen eintragen) */
.miles-input-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.miles-input-group .miles-input-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.miles-input-group .miles-input-field label {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  padding-left: 2px;
}
.miles-input-group .miles-input-field .input-with-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.miles-input-group .miles-input-field .input-with-logo input {
  flex: 1;
  /* Farbverlauf-Rahmen dauerhaft */
  background: linear-gradient(#1D1E2C, #1D1E2C) padding-box, linear-gradient(135deg, #ff00ea, #8b5cf6, #00f1f1) border-box;
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 14px 16px;
  color: #FFFFFF;
  font-size: 16px;
  outline: none;
  transition: filter 0.2s;
}
.miles-input-group .miles-input-field .input-with-logo input:focus {
  filter: brightness(1.15);
}

/* Globale Icon & Logo Boxen (Ausgelagert für flexible Nutzung) */
.item-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.item-icon-box.bg-orange {
  background: #E67E22;
}
.item-icon-box.bg-red {
  background: #E74C3C;
}
.item-icon-box.bg-green {
  background: #D9489A;
}
.item-icon-box.bg-blue {
  background: #2980B9;
}

.item-logo-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.item-logo-box.mm {
  background: #FFB81C;
  color: #000;
}
.item-logo-box.ba {
  background: #00225D;
}
.item-logo-box.mr {
  background: #005EB8;
}
.item-logo-box.sas {
  background: #00005E;
}
.item-logo-box.fb {
  background: #002A54;
  color: #F05E23;
}
.item-logo-box img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
}
.item-logo-box.item-logo-white {
  background: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  overflow: hidden;
}
.item-logo-box.item-logo-white.mm {
  background: #fff;
  color: #000;
}
.item-logo-box.item-logo-white.ba {
  background: #fff;
  color: #00225D;
}
.item-logo-box.item-logo-white.mr {
  background: #fff;
  color: #005EB8;
}
.item-logo-box.item-logo-white.sas {
  background: #fff;
  color: #00005E;
}
.item-logo-box.item-logo-white.fb {
  background: #fff;
  color: #F05E23;
}
.item-logo-box.item-logo-white img {
  border-radius: 0;
}

/* Profil-Karten (Step 1) */
.profile-cards {
  display: flex;
  gap: 12px;
  width: 100%;
}
.profile-cards .profile-card {
  flex: 1;
  background: #1D1E2C;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
.profile-cards .profile-card .profile-card-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.profile-cards .profile-card .profile-card-title {
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}
.profile-cards .profile-card .profile-card-sub {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.3;
}
.profile-cards .profile-card.active {
  background: rgba(217, 72, 154, 0.08);
  border: 1.5px solid transparent;
}
.profile-cards .profile-card.active::after {
  content: "";
  position: absolute;
  inset: -1.5px;
  border-radius: 15.5px;
  background: linear-gradient(135deg, #ff00ea, #8b5cf6, #00f1f1);
  z-index: -1;
  pointer-events: none;
}

/* Feature Karten (Step 0) */
.tutorial-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.tutorial-features .feature-card {
  display: flex;
  align-items: center;
  background: #1D1E2C;
  padding: 16px;
  border-radius: 12px;
  gap: 16px;
}
.tutorial-features .feature-card .feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tutorial-features .feature-card .feature-icon i {
  font-size: 18px;
}
.tutorial-features .feature-card .feature-icon.bg-green {
  background: linear-gradient(135deg, #ff00ea, #8b5cf6, #00f1f1);
  color: #ffffff;
}
.tutorial-features .feature-card .feature-icon.bg-purple {
  background: linear-gradient(135deg, #ff00ea, #8b5cf6, #00f1f1);
  color: #ffffff;
}
.tutorial-features .feature-card .feature-icon.bg-brown {
  background: linear-gradient(135deg, #ff00ea, #8b5cf6, #00f1f1);
  color: #ffffff;
}
.tutorial-features .feature-card .feature-text {
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 500;
}

/* Listen / Cards (Step 2, 3, 5, 6) */
.section-label {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: -12px;
  margin-top: 16px;
}

.section-label--spaced {
  margin-top: 20px;
}

.miles-input-group--top {
  margin-top: 8px;
}

.info-box--top {
  margin-top: 16px;
}

.selection-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.selection-item {
  display: flex;
  align-items: center;
  background: #1D1E2C;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px;
  gap: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
.selection-item .item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.selection-item .item-content .item-title {
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.selection-item .item-content .item-title .badge {
  background: rgba(217, 72, 154, 0.2);
  color: #D9489A;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 500;
}
.selection-item .item-content .item-sub {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}
.selection-item {
  /* Checkbox / Radio Visualisierung */
}
.selection-item .item-check {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.selection-item .item-check i {
  font-size: 16px;
  color: white;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s;
}
.selection-item {
  /* Checkmark only (z.B. bei Zielen in Step 2): runder Badge im MileGuy-Verlauf
     mit weißem Haken – gut lesbar auf jedem Foto. */
}
.selection-item .item-checkmark-only {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff00ea, #8b5cf6, #00f1f1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}
.selection-item .item-checkmark-only i {
  color: #ffffff;
  font-size: 16px;
}
.selection-item {
  /* State: Active — Gradient-Rand via Pseudo-Element */
}
.selection-item.active {
  background: rgba(217, 72, 154, 0.08);
  background-clip: padding-box;
  border: 1.5px solid transparent;
}
.selection-item.active::after {
  content: "";
  position: absolute;
  inset: -1.5px;
  border-radius: 15.5px;
  background: linear-gradient(135deg, #ff00ea, #8b5cf6, #00f1f1);
  z-index: -1;
  pointer-events: none;
}
.selection-item.active .item-check {
  background: #ffffff;
  border-color: #ffffff;
}
.selection-item.active .item-check i {
  opacity: 1;
  transform: scale(1);
  color: #111219;
}
.selection-item.active {
  /* "empfohlen"-Badge im aktiven Zustand in Weiß statt Rosa-auf-Rosa */
}
.selection-item.active .item-title .badge {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

/* Toggle Switches (Step 5) */
.toggle-switch {
  width: 48px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  position: relative;
  transition: background 0.3s;
  flex-shrink: 0;
}
.toggle-switch::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s;
}
.toggle-switch.active {
  background: #ff00ea;
}
.toggle-switch.active::after {
  transform: translateX(20px);
}

/* Buttons in Forms */
.pill-group {
  display: flex;
  gap: 8px;
  width: 100%;
}
.pill-group .pill-btn {
  flex: 1;
  padding: 12px 0;
  text-align: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.pill-group .pill-btn.active {
  background: rgba(217, 72, 154, 0.15);
  border-color: #D9489A;
  color: #D9489A;
}

.outline-btn {
  width: 100%;
  padding: 16px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: white;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.outline-btn:active {
  background: rgba(255, 255, 255, 0.1);
}

/* AI Promo Box */
.ai-promo-box {
  background: linear-gradient(145deg, rgba(46, 32, 77, 0.6), rgba(30, 24, 48, 0.6));
  border: 1px solid rgba(179, 136, 255, 0.2);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ai-promo-box .ai-kicker {
  color: #B388FF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}
.ai-promo-box .ai-text {
  color: white;
  font-size: 14px;
  line-height: 1.5;
}
.ai-promo-box .ai-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 12px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.ai-promo-box .ai-btn:active {
  background: rgba(255, 255, 255, 0.2);
}

.info-box {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.info-box i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
  flex-shrink: 0;
}
.info-box p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

/* Step 7: Success / Summary */
.success-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 32px;
}
.success-header .success-check {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #ff00ea, #8b5cf6, #00f1f1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.success-header .success-check i {
  color: white;
  font-size: 36px;
}

.strategy-box {
  background: linear-gradient(180deg, rgb(29, 21, 55) 0%, rgb(20, 16, 36) 100%);
  border: 1px solid rgba(179, 136, 255, 0.2);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 16px;
}
.strategy-box .strategy-kicker {
  color: #B388FF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.strategy-box .strategy-text {
  color: white;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.strategy-box .strategy-text span.highlight {
  color: #00E6E6;
  font-weight: 600;
}
.strategy-box .savings-box {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 16px;
}
.strategy-box .savings-box .savings-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 600;
}
.strategy-box .savings-box .savings-value {
  color: #00E6E6;
  font-size: 20px;
  font-weight: 600;
}

.summary-pills {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.summary-pills .summary-pill {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 14px;
  font-weight: 500;
}
.summary-pills .summary-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff00ea, #8b5cf6);
  flex-shrink: 0;
}

/* Dynamic content area */
#tutorial-dynamic-area {
  width: 100%;
}

/* Airport autocomplete dropdown */
.tut-airport-suggestions {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 100;
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  background: #1e1e2e;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  overflow: hidden;
}

.tut-airport-suggestion-item {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.tut-airport-suggestion-code {
  opacity: 0.5;
  font-size: 12px;
}

/* Goal items */
.tut-loading-text {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  text-align: center;
  padding: 20px 0;
}

.tut-goal-item-img {
  /* Bild + Lesbarkeits-Overlay kommen aus dem inline-style des Elements.
     cover/center/no-repeat müssen erzwungen werden, sonst setzt
     .selection-item.active über die background-Kurzform background-size auf
     'auto' und background-repeat auf 'repeat' zurück → Bild kachelt/verrutscht
     und das linke Dunkel-Overlay sieht aus wie ein schwarzer Rand. */
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-color: transparent !important;
  background-clip: border-box !important;
  min-height: 56px;
  /* Kein eigener Border am Element – sonst schimmert der helle Default-Border
     (.selection-item) durch. Der Auswahl-Rahmen wird komplett über die
     Mask-::after gezeichnet. Kein overflow:hidden, damit ::after sichtbar
     bleibt; die Rundung übernimmt border-radius. */
  border: 0 !important;
}

/* Auswahl-Ring der Ziel-Bilder: vollständiger Farbverlauf-Rahmen im
   MileGuy-Stil. Statt des fragilen "::after dahinter (z-index:-1)"-Tricks
   liegt der Gradient hier OBEN und wird per Mask in der Mitte ausgeschnitten,
   sodass nur der 1.5px-Rahmen sichtbar bleibt – sauber rundum, unabhängig
   vom Hintergrundbild. */
.tut-goal-item-img.active::after {
  inset: 0;
  border-radius: 14px;
  padding: 1.5px;
  background: linear-gradient(135deg, #ff00ea, #8b5cf6, #00f1f1);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 2;
}

/* Monthly spending row */
.tut-euro-box {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.55);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.tut-month-suffix {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  white-space: nowrap;
  flex-shrink: 0;
}

.tut-spending-hint {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  padding-left: 2px;
  margin: 0;
}

/* AI features — icon boxes with glass style */
.item-icon-box--glass {
  background: rgba(255, 255, 255, 0.05);
}
.item-icon-box--glass i {
  color: #fff;
}

/* AI features — coming-soon section */
.tut-coming-soon-label {
  opacity: 0.4;
}

.tut-coming-soon-list {
  opacity: 0.4;
  pointer-events: none;
}

.tut-disabled-item {
  cursor: default;
}

.tut-badge-shrink {
  flex-shrink: 0;
}

/* Summary pill AI icon */
.tut-pill-ai-icon {
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.5);
}

/* No-miles confirmation box */
.tut-confirm-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 0;
  text-align: center;
}

.tut-confirm-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tut-confirm-check {
  color: #7fff7f;
  font-size: 28px;
}

.tut-confirm-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Footer Area (Button) */
.tutorial-footer {
  width: 100%;
  max-width: 440px;
  padding: 24px;
  padding-bottom: calc(24px + env(safe-area-inset-bottom));
  z-index: 10;
  background: #111219; /* Verhindert durchscheinen beim Scrollen */
  position: sticky;
  bottom: 0;
  flex-shrink: 0;
}
.tutorial-footer .tutorial-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(to right, #ff00ea, #8b5cf6, #00f1f1);
  color: white;
  padding: 18px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  border: none;
  transition: opacity 0.2s, transform 0.1s;
  -webkit-mask: radial-gradient(circle at left center, transparent 5px, black 5px) left/51% 100% no-repeat, radial-gradient(circle at right center, transparent 5px, black 5px) right/51% 100% no-repeat;
  mask: radial-gradient(circle at left center, transparent 5px, black 5px) left/51% 100% no-repeat, radial-gradient(circle at right center, transparent 5px, black 5px) right/51% 100% no-repeat;
}
.tutorial-footer .tutorial-btn-primary:active {
  opacity: 0.8;
  transform: scale(0.98);
}

/* --- TutorialProgramList Component --- */
.tpl-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 4px;
}

.tpl-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.tpl-edit-link {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: opacity 0.2s;
}

.tpl-card-no-pad {
  padding: 0;
  overflow: hidden;
}

.tpl-row {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tpl-logo-wrap {
  margin-right: 14px;
  flex-shrink: 0;
}

.tpl-info {
  flex-grow: 1;
  min-width: 0;
}

.tpl-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tpl-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tpl-points-box {
  text-align: right;
  flex-shrink: 0;
  padding-left: 12px;
}

.tpl-points-val {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.tpl-points-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
}

.tpl-chevron {
  font-size: 16px !important;
  color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  margin-left: 8px;
}

/* Push-Notification Permission Status Badge (Step 6) */
.push-permission-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
}
.push-permission-status .material-icons {
  font-size: 18px;
}
.push-permission-status.push-status--granted {
  background: rgba(52, 199, 89, 0.12);
  color: #34c759;
}
.push-permission-status.push-status--denied {
  background: rgba(255, 149, 0, 0.12);
  color: #ff9500;
}
.push-permission-status.push-status--pending {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.45);
}

/* ========================================================
   Login & Authentifizierung (Mobile Optimized & Scroll-Safe)
   ======================================================== */
.login-page-wrapper {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  z-index: 100;
  /* WICHTIG: Das Padding hält die Karte von der oberen Leiste und unteren Navbar fern */
  padding: calc(70px + env(safe-area-inset-top)) 20px calc(110px + env(safe-area-inset-bottom)) 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.login-background {
  /* WICHTIG: fixed statt absolute, damit das Bild beim Scrollen nicht verrutscht */
  position: fixed;
  inset: 0;
  background: url("/images/mgp.jpg") center/cover no-repeat;
  filter: brightness(0.35);
  z-index: -1;
  pointer-events: none;
}

.login-container {
  /* DER TRICK: margin: auto zentriert die Box sicher vertikal, OHNE sie abzuschneiden */
  margin: auto;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
}

.login-card {
  width: 100%;
  padding: 40px 24px;
  background: rgba(15, 19, 32, 0.82);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
  position: relative; /* Für die Gradient-Linie, falls gewünscht */
  overflow: hidden; /* Verhindert das Überstehen der Linie an den Ecken */
}

/* Optionale kleine Design-Linie für den Premium Look (wie beim Tutorial) */
.login-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff00ea, #8b5cf6, #00f1f1);
  z-index: 1;
}

/* --- Logo Styling (Rund & Groß) --- */
.login-logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.login-logo-wrapper {
  width: 90px;
  height: 90px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.login-logo {
  width: 55px;
  height: auto;
  object-fit: contain;
}

/* --- Typography --- */
.login-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.login-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  line-height: 1.4;
}

/* --- Form Elements --- */
.mg-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 16px;
  color: #FFFFFF;
  font-size: 16px;
  transition: border-color 0.2s, background 0.2s;
}
.mg-input:focus {
  outline: none;
  border-color: var(--brand-primary, #ff00ea);
  background: rgba(255, 255, 255, 0.08);
}

.mg-input-code {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 3px solid var(--brand-primary, #ff00ea);
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 12px;
  color: #FFFFFF;
  padding: 12px;
  margin-bottom: 20px;
}
.mg-input-code:focus {
  outline: none;
}

/* --- Mobile Optimized Checkboxes --- */
.login-agreements {
  text-align: left;
  margin-top: 20px;
}

.mg-checkbox.mobile-optimized {
  display: flex;
  position: relative;
  padding: 14px 0 14px 35px; /* Viel Platz zum Klicken */
  cursor: pointer;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6);
  user-select: none;
}
.mg-checkbox.mobile-optimized input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.mg-checkbox.mobile-optimized .checkmark {
  position: absolute;
  top: 14px;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  transition: all 0.2s;
}
.mg-checkbox.mobile-optimized:hover input ~ .checkmark {
  background-color: rgba(255, 255, 255, 0.15);
}
.mg-checkbox.mobile-optimized input:checked ~ .checkmark {
  background-color: var(--brand-primary, #ff00ea);
  border-color: var(--brand-primary, #ff00ea);
}
.mg-checkbox.mobile-optimized .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 11px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.mg-checkbox.mobile-optimized input:checked ~ .checkmark:after {
  display: block;
}
.mg-checkbox.mobile-optimized a {
  color: var(--brand-light, #f4c0d1);
  text-decoration: underline;
}

/* --- Buttons & Footer --- */
.mg-btn-primary {
  background: linear-gradient(to right, #ff00ea, #8b5cf6, #00f1f1);
  color: #FFFFFF;
  border: none;
  border-radius: 14px;
  padding: 16px;
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  transition: transform 0.2s, filter 0.2s, opacity 0.2s;
  box-shadow: 0 8px 20px rgba(147, 51, 234, 0.3);
  -webkit-mask: radial-gradient(circle at left center, transparent 5px, black 5px) left/51% 100% no-repeat, radial-gradient(circle at right center, transparent 5px, black 5px) right/51% 100% no-repeat;
  mask: radial-gradient(circle at left center, transparent 5px, black 5px) left/51% 100% no-repeat, radial-gradient(circle at right center, transparent 5px, black 5px) right/51% 100% no-repeat;
  text-decoration: none;
}
.mg-btn-primary i {
  font-size: 18px;
}
.mg-btn-primary:active {
  transform: scale(0.97);
}
.mg-btn-primary:hover {
  opacity: 0.9;
  color: #FFFFFF;
}

.skip-action {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10;
}
.skip-action a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-decoration: none;
}
.skip-action a:hover {
  color: #FFF;
}

.login-footer {
  margin-top: 24px;
}
.login-footer .small-link {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-decoration: none;
}
.login-footer .small-link:hover {
  color: #FFF;
}

.login-success .success-icon {
  color: #4CAF50;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(76, 175, 80, 0.4));
}

/* --- MilesPointsSlider nav --- */
.slider-nav-back {
  position: absolute;
  top: 45px;
  left: 15px;
  z-index: 1000;
}

.slider-nav-skip {
  position: absolute;
  top: 45px;
  right: 15px;
  z-index: 1000;
}

.slider-value-display {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 12px 0 4px;
}

.slider-value-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ========================================================
   Tracking Consent (AskTR) View Styles
   ======================================================== */
.asktr-page-wrapper {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  z-index: 100;
  /* Gleich wie beim Login: Hält den Content von Navbar und Header fern */
  padding: calc(70px + env(safe-area-inset-top)) 20px calc(110px + env(safe-area-inset-bottom)) 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.asktr-background {
  position: fixed;
  inset: 0;
  background: url("/images/mgp.jpg") center/cover no-repeat;
  filter: brightness(0.35);
  z-index: -1;
  pointer-events: none;
}

.asktr-container {
  margin: auto;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
}

.asktr-card {
  width: 100%;
  padding: 32px 24px;
  background: rgba(15, 19, 32, 0.82);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  /* Die Premium Gradient-Linie am oberen Rand */
}
.asktr-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff00ea, #8b5cf6, #00f1f1);
  z-index: 1;
}

.asktr-header {
  text-align: center;
  margin-bottom: 24px;
}
.asktr-header h2 {
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
  line-height: 1.3;
}
.asktr-header p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin: 0;
}
.asktr-header p strong {
  color: #FFFFFF;
}

/* --- Accordions --- */
.asktr-accordions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.mg-accordion {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: background 0.2s, border-color 0.2s;
}
.mg-accordion[open] {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}
.mg-accordion summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: #FFFFFF;
  user-select: none;
  list-style: none; /* Versteckt den Standard-Pfeil (Safari/Firefox) */
}
.mg-accordion summary::-webkit-details-marker {
  display: none; /* Versteckt den Standard-Pfeil (Chrome) */
}
.mg-accordion summary .chevron {
  color: rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease;
}
.mg-accordion {
  /* Animation für das Icon beim Öffnen */
}
.mg-accordion[open] summary .chevron {
  transform: rotate(180deg);
  color: #FFFFFF;
}

.mg-accordion-content {
  padding: 0 16px 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  text-align: left;
}
.mg-accordion-content a {
  color: var(--brand-light, #00f1f1);
  text-decoration: underline;
}
.mg-accordion-content a:hover {
  color: #FFFFFF;
}
.mg-accordion-content .tool-item {
  background: rgba(0, 0, 0, 0.2);
  padding: 14px;
  border-radius: 12px;
  margin-top: 10px;
}
.mg-accordion-content .tool-item strong {
  display: block;
  color: #FFFFFF;
  margin-bottom: 6px;
  font-size: 14px;
}
.mg-accordion-content .tool-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

/* --- Actions & Buttons --- */
.asktr-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

/* Der primäre Button nutzt .mg-btn-primary (global) */
/* Der sekundäre Button (Nein, Danke!) */
.mg-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 16px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}
.mg-btn-secondary:active {
  transform: scale(0.97);
}
.mg-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.asktr-footer-hint {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ========================================================
   Notifications View Styles (Glassmorphism & Mobile Safe)
   ======================================================== */
.notifications-page-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  /* Dynamisches Padding, damit nichts unter Header oder Tabbar verschwindet */
  padding: calc(70px + env(safe-area-inset-top)) 20px calc(110px + env(safe-area-inset-bottom)) 20px;
}

.notifications-container {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

.notifications-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.notifications-header .page-title {
  font-size: 24px;
  font-weight: 800;
  margin: 0;
  color: #FFFFFF;
  letter-spacing: -0.5px;
}

.btn-text-action {
  background: transparent;
  border: none;
  color: var(--brand-primary, #ff00ea);
  font-size: 13px;
  font-weight: 600;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-text-action:hover {
  opacity: 0.8;
}
.btn-text-action:active {
  transform: scale(0.98);
}

/* --- Notifications List & Cards --- */
.notifications-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mg-notification-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.mg-notification-card:active {
  transform: scale(0.98);
  background: rgba(255, 255, 255, 0.06);
}
.mg-notification-card {
  /* Ungelesen Status: Etwas heller & markanter */
}
.mg-notification-card.unread {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.notif-icon-wrapper {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
}
.notif-icon-wrapper i {
  font-size: 22px;
}
.notif-icon-wrapper {
  /* Farbiges Icon bei ungelesenen Nachrichten */
}
.notif-icon-wrapper.active {
  background: var(--brand-pink-bg, rgba(255, 0, 234, 0.18));
  color: var(--brand-light, #00f1f1);
}

.notif-content {
  flex-grow: 1;
  min-width: 0; /* Wichtig, damit lange Texte korrekt umbrechen */
  padding-right: 16px; /* Platz für den unread-dot lassen */
}

.notif-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
  gap: 12px;
}
.notif-header .notif-title {
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.notif-header .notif-time {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
  flex-shrink: 0;
}

.notif-message {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0;
}

/* Der leuchtende Punkt für neue Benachrichtigungen */
.unread-dot {
  position: absolute;
  top: 24px;
  right: 20px;
  width: 10px;
  height: 10px;
  background: var(--brand-primary, #ff00ea);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 0, 234, 0.5);
}

/* --- Empty State --- */
.empty-state {
  padding: 60px 20px;
}
.empty-state .empty-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.2);
}
.empty-state .empty-icon-wrapper i {
  font-size: 40px;
}
.empty-state h3 {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.empty-state p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ========================================================
   Goals / Reiseziele View Styles (Glassmorphism)
   ======================================================== */
.goals-page-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  /* Dynamisches Padding, damit nichts unter Header oder Tabbar verschwindet */
}

.goals-header {
  text-align: center;
  margin-bottom: 24px;
}
.goals-header .page-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #FFFFFF;
  letter-spacing: -0.5px;
}
.goals-header .page-subtitle {
  font-size: 15px;
  color: var(--text-tertiary, rgba(255, 255, 255, 0.7));
  margin: 0;
}

.goals-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}

.mg-goal-card {
  background: rgba(15, 19, 32, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
  position: relative;
  /* Die Premium-Linie am oberen Rand */
}
.mg-goal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff00ea, #8b5cf6, #00f1f1);
  z-index: 10;
}

.goal-image-bg {
  width: 100%;
  height: 320px; /* Großzügiges Bild für den starken visuellen Eindruck */
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.goal-miles-badge {
  align-self: flex-start;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 18px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: white;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
.goal-miles-badge span {
  font-size: 18px;
  font-weight: 800;
}
.goal-miles-badge small {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--brand-light, #00f1f1);
}
.goal-miles-badge i {
  font-size: 18px;
  color: var(--brand-light, #00f1f1);
}

.goal-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.goal-content .goal-text-group {
  text-align: center;
}
.goal-content .goal-title {
  font-size: 32px;
  font-weight: 800;
  color: white;
  margin: 0 0 4px 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
  line-height: 1.1;
}
.goal-content .goal-subtitle {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}
.goal-content .btn-select-goal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px;
  font-size: 16px;
  background: linear-gradient(to right, #ff00ea, #8b5cf6, #00f1f1);
  color: white;
  border: none;
  border-radius: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
  box-shadow: 0 8px 24px rgba(147, 51, 234, 0.35);
  -webkit-mask: radial-gradient(circle at left center, transparent 5px, black 5px) left/51% 100% no-repeat, radial-gradient(circle at right center, transparent 5px, black 5px) right/51% 100% no-repeat;
  mask: radial-gradient(circle at left center, transparent 5px, black 5px) left/51% 100% no-repeat, radial-gradient(circle at right center, transparent 5px, black 5px) right/51% 100% no-repeat;
  text-decoration: none;
}
.goal-content .btn-select-goal:active {
  transform: scale(0.97);
}
.goal-content .btn-select-goal:hover {
  opacity: 0.9;
  color: white;
}

/* Spinner Animation für den Lade-Zustand des Buttons */
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
.spin-anim {
  animation: spin 1s linear infinite;
}

/* --- Goal card background (dynamic URL kept inline, static bg props here) --- */
.goal-card-bg-cover {
  background-position: center;
  background-size: cover;
}

/* --- Saving-state button text --- */
.saving-text {
  margin-left: 8px;
}

/* --- Register view: error/nav states --- */
.goal-reg-skip-link {
  position: absolute;
  top: 45px;
  right: 15px;
  z-index: 1000;
  font-size: 0.875rem;
}

.goal-error-icon {
  font-size: 48px;
  opacity: 0.3;
  display: block;
  margin-bottom: 12px;
}

.goal-error-text {
  color: rgba(255, 255, 255, 0.5);
}

.goal-error-btn {
  display: inline-block;
  margin-top: 16px;
}

.block-miles i {
  color: #6fc8e8;
}

/* --- Detail view --- */
.gd-error-text {
  color: rgba(255, 255, 255, 0.5);
  padding-top: 40px;
}

.gd-error-btn {
  display: inline-block;
}

.gd-nav-card {
  width: fit-content;
}

.gd-flight-card {
  min-height: 200px;
}

.gd-flight-image {
  width: 100%;
  height: 140px;
  background-size: cover;
  background-position: center;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

.gd-flight-title {
  font-size: 20pt;
  text-align: left;
  padding: 10px;
  top: 75px;
  position: relative;
}

/* ========================================================
   Flight Routes (Flugsuche) View Styles
   ======================================================== */
.flightroutes-page-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  /* WICHTIG: Das dynamische Padding verhindert das Überlappen der Navbar! */
  /* padding: calc(80px + env(safe-area-inset-top)) 16px calc(120px + env(safe-area-inset-bottom)) 16px;*/
}

.flightroutes-background {
  position: fixed;
  inset: 0;
  background: var(--bg-page, #0F1320); /* Fallback auf dunkle Standardfarbe */
  z-index: -1;
  pointer-events: none;
}

.flightroutes-container {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.flightroutes-header {
  text-align: center;
  margin-bottom: 24px;
}
.flightroutes-header .page-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #FFFFFF;
  letter-spacing: -0.5px;
}
.flightroutes-header .page-subtitle {
  font-size: 14px;
  color: var(--text-tertiary, rgba(255, 255, 255, 0.7));
  margin: 0 auto;
  max-width: 90%;
  line-height: 1.5;
}

/* Anpassungen für die dynamisch geladenen Module */
.flight-search-wrapper {
  width: 100%;
  /* Falls das Modul eigene Styles mitbringt, wird es hier sicher verpackt */
}

.marketing-wrapper {
  width: 100%;
}

.top-deals-wrapper {
  width: 100%;
  margin-top: 12px;
}

/* --------------------------------------------------------
   Route Cards (route.js)
   -------------------------------------------------------- */
.route-alt-header {
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 500;
}

.route-card-no-pb {
  padding-bottom: 0;
}

.route-class-info {
  flex-grow: 1;
}

.route-airports {
  display: flex;
  align-items: center;
  gap: 8px;
}

.route-airport-code {
  font-weight: bold;
}

.route-airport-arrow {
  font-size: 1.2em;
  color: #ccc;
}

.route-airline-name {
  font-size: 0.75em;
  color: #aaa;
  margin-top: 2px;
}

.route-action-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15px;
  padding-top: 0;
  padding-bottom: 15px;
}

.route-transfer-partners {
  width: 100%;
}

/* Transfer partner chain (Qatar routes) */
.route-transfer-box {
  background-color: #222;
  border-radius: 12px;
  padding: 15px 10px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 15px;
}

.route-transfer-chain {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.route-partner-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.route-partner-badge {
  padding: 0 8px;
  border-radius: 4px;
  font-size: 0.7em;
  font-weight: 600;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  white-space: nowrap;
}
.route-partner-badge img {
  margin-right: 4px;
}
.route-partner-badge--amex {
  background-color: #006fcf;
}
.route-partner-badge--ba {
  background-color: #1e3a8a;
}
.route-partner-badge--qr {
  background-color: #5c0632;
}

.route-partner-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 5px;
  padding-bottom: 5px;
}

.route-partner-ratio {
  font-size: 0.7em;
  color: #999;
  line-height: 1.5;
  margin-bottom: 5px;
  font-weight: bold;
}

.route-partner-symbol {
  line-height: 1;
  color: #aaa;
  font-size: 1.1em;
}

.route-partner-points {
  font-weight: 600;
  font-size: 0.9em;
  color: #fff;
  margin-bottom: 2px;
}

.route-savings {
  font-size: 0.9em;
  font-weight: bold;
  color: #00bbff;
  text-align: left;
  margin-top: 2px;
}

/* ========================================================
   Creditcards / Boost Component Styles
   ======================================================== */
/* ========================================================
   Segmented Control (Private / Business Switcher)
   ======================================================== */
.mg-segmented-control {
  display: flex;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 4px;
  width: 100%;
  max-width: 400px;
}

.mg-segment-btn {
  flex: 1;
  padding: 12px 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  background: transparent;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.mg-segment-btn.active {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.mg-segment-btn:active:not(.active) {
  transform: scale(0.96);
}

/* ========================================================
   MR CC Slider / Calculator Styles
   ======================================================== */
.mg-map-bonus-wrapper {
  background: rgba(20, 24, 34, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  z-index: 40;
}

.stacked-images {
  position: relative;
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(30, 36, 52, 0.8) 0%, rgb(15, 19, 32) 100%);
}

.stacked-images img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 0.5s ease;
}

.world-map-base {
  opacity: 0.15;
}

.points-summary {
  background: rgba(15, 19, 32, 0.95);
  padding: 12px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.total-points-value {
  color: var(--brand-primary, #ff00ea);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 0 12px rgba(255, 0, 234, 0.4);
}

.mr-label {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  text-align: left;
}

.mg-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  position: relative;
  z-index: 40;
}
.mg-section-header strong {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Info Bubble Icons */
.mg-info-bubble-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 50;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.mg-info-bubble-icon i {
  font-size: 18px;
}
.mg-info-bubble-icon:hover, .mg-info-bubble-icon:active {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transform: scale(1.05);
}

.mg-info-bubble-static {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.mg-info-bubble-static i {
  font-size: 16px;
}
.mg-info-bubble-static:hover, .mg-info-bubble-static:active {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* ========================================================
   Community Comments Widget
   ======================================================== */
.cm-widget {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
}

.cm-header {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 14px;
}

.cm-title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.cm-guest-hint {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
}
.cm-guest-hint a {
  color: var(--brand-primary, #ff00ea);
  text-decoration: none;
}

.cm-form-wrap {
  margin-bottom: 16px;
}

.cm-reply-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--brand-primary, #ff00ea);
  margin-bottom: 8px;
}
.cm-reply-hint button {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  font-size: 14px;
  padding: 0;
}

.cm-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  padding: 10px 14px;
  resize: vertical;
  min-height: 72px;
  outline: none;
  box-sizing: border-box;
}
.cm-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.cm-input:focus {
  border-color: var(--brand-primary, #ff00ea);
}

.cm-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.cm-char-count {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
}

.cm-submit-btn {
  padding: 8px 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ff00ea, #8b5cf6);
  border: none;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}
.cm-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.cm-submit-btn:active {
  transform: scale(0.97);
}

.cm-loading {
  padding: 20px 0;
  text-align: center;
}

.cm-empty {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  padding: 16px 0;
  margin: 0;
}

.cm-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cm-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.cm-item-avatar {
  flex-shrink: 0;
}

.cm-avatar-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.cm-avatar-placeholder {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff00ea, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.cm-item-body {
  flex: 1;
  min-width: 0;
}

.cm-item-meta {
  display: flex;
  gap: 8px;
  align-items: baseline;
  margin-bottom: 4px;
}

.cm-author {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.cm-date {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
}

.cm-content {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin: 0 0 6px;
  word-break: break-word;
}

.cm-item-actions {
  margin-bottom: 8px;
}

.cm-reply-btn {
  background: none;
  border: none;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 0;
}
.cm-reply-btn:hover {
  color: var(--brand-primary, #ff00ea);
}

.cm-replies {
  margin-top: 8px;
  padding-left: 12px;
  border-left: 2px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cm-toast {
  position: fixed;
  bottom: calc(90px + env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  background: rgba(30, 30, 50, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 20px;
  z-index: 9999;
  animation: fadeInUp 0.3s ease;
}
.cm-toast.cm-toast--error {
  border-color: rgba(255, 100, 100, 0.4);
  color: #ff9999;
}

/* Avatar-Upload in EditProfile */
.ep-avatar-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ep-avatar-preview {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.ep-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ep-avatar-icon {
  font-size: 42px;
  color: rgba(255, 255, 255, 0.25);
}

.ep-avatar-right {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ep-avatar-hint {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
}

.ep-avatar-status {
  font-size: 12px;
  min-height: 16px;
}
.ep-avatar-status--loading {
  color: rgba(255, 255, 255, 0.5);
}
.ep-avatar-status--ok {
  color: #4ade80;
}
.ep-avatar-status--error {
  color: #ff6b6b;
}

/* --- Karten-Vergleich --- */
.cmp-page {
  padding: 0 0 calc(100px + env(safe-area-inset-bottom)) 0;
}

.cmp-scroll-outer {
  overflow-x: auto;
  padding: 0 20px 16px;
  scrollbar-width: none;
}
.cmp-scroll-outer::-webkit-scrollbar {
  display: none;
}

.cmp-grid {
  display: flex;
  gap: 12px;
  width: max-content;
}

.cmp-col {
  width: 148px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cmp-header {
  text-align: center;
}

.cmp-card-img {
  width: 80px;
  height: auto;
  display: block;
  margin: 0 auto 6px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.cmp-name {
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.cmp-fee {
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.cmp-bonus {
  text-align: center;
}
.cmp-bonus .cmp-bonus-val {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--brand-primary, #ff00ea);
}
.cmp-bonus .cmp-bonus-note {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
}

.cmp-highlights {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.cmp-feature {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}
.cmp-feature .cmp-feat-icon {
  font-size: 13px;
  color: var(--brand-primary, #ff00ea);
  flex-shrink: 0;
  margin-top: 1px;
}
.cmp-feature .cmp-feat-text {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

.cmp-cta {
  display: block;
  text-align: center;
  padding: 8px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ff00ea, #8b5cf6);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
}

.cmp-hint {
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  padding: 4px 20px 0;
}

/* --- Transferpartner Grid --- */
.mr-tp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 4px 0 8px;
}

.mr-tp-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 10px 12px;
}

.mr-tp-airline {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}

.mr-tp-equation {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}

.mr-tp-from {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
}

.mr-tp-arrow {
  font-size: 13px;
  color: var(--brand-primary, #ff00ea);
}

.mr-tp-to {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.mr-tp-ratio {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
}

/* --- Aktivitäten --- */
.act-list {
  display: flex;
  flex-direction: column;
}

.act-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition: background 0.15s;
}
.act-item:last-child {
  border-bottom: none;
}
.act-item:active {
  background: rgba(255, 255, 255, 0.04);
}

.act-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 0, 234, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.act-icon-wrap i {
  font-size: 18px;
  color: var(--brand-primary, #ff00ea);
}

.act-content {
  flex: 1;
  min-width: 0;
}

.act-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.act-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

.act-chevron {
  color: rgba(255, 255, 255, 0.25);
  font-size: 20px;
  flex-shrink: 0;
}

.act-empty {
  text-align: center;
  padding: 40px 20px;
}
.act-empty .act-empty-icon {
  font-size: 40px;
  color: rgba(255, 255, 255, 0.15);
  display: block;
  margin-bottom: 12px;
}
.act-empty p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  margin: 0;
}

.act-clear-wrap {
  padding: 12px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.act-clear-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.act-clear-btn i {
  font-size: 15px;
}
.act-clear-btn:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* --- Inline Info-Bubble (für Texte, Header etc.) --- */
.mg-info-bubble-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  vertical-align: middle;
  margin-left: 4px;
  transition: color 0.2s;
  flex-shrink: 0;
}
.mg-info-bubble-inline i {
  font-size: 16px;
}
.mg-info-bubble-inline:hover, .mg-info-bubble-inline:active {
  color: var(--brand-primary, #ff00ea);
}

/* --- Listen (Karten, Transferpartner) --- */
.mg-cc-slider-container, .flight-offer-list {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  padding: 4px 4px 12px 4px; /* Platz für Hover-Schatten */
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  position: relative;
  z-index: 40;
  align-items: stretch;
}
.mg-cc-slider-container::-webkit-scrollbar, .flight-offer-list::-webkit-scrollbar {
  display: none;
}

.mg-cc-slide {
  flex: 0 0 auto;
  width: 120px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 12px 8px;
  box-sizing: border-box;
}
.mg-cc-slide img {
  max-width: 90%;
  max-height: 55px;
  object-fit: contain;
  pointer-events: none;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}
.mg-cc-slide .mg-cc-slide-name {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  line-height: 1.2;
  font-weight: 600;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
}
.mg-cc-slide.selected {
  opacity: 1;
  border-color: var(--brand-primary, #ff00ea);
  background: rgba(255, 0, 234, 0.08);
  box-shadow: 0 8px 24px rgba(255, 0, 234, 0.3);
  transform: scale(1.03);
}
.mg-cc-slide.selected .mg-cc-slide-name {
  color: #ffffff;
}

/* --- Transferpartner Karte --- */
.mg-tp-card {
  flex: 0 0 auto;
  width: 130px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.mg-tp-card:active {
  transform: scale(0.96);
}
@media (hover: hover) {
  .mg-tp-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
  }
}

.mg-tp-logo {
  height: 100px;
  background-color: #ffffff;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.mg-tp-content {
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.mg-tp-val {
  color: #ffffff;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.1;
}

.mg-tp-currency {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  margin-top: 4px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mg-tp-note {
  font-size: 10px;
  color: #60a5fa;
  font-weight: 600;
  text-align: center;
  margin-top: 8px;
  line-height: 1.3;
  padding: 4px 6px;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 6px;
}

/* --- Info Modals (Glassmorphism) --- */
.mg-info-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mg-info-modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.mg-info-modal-overlay.show .mg-info-modal-content {
  transform: translateY(0) scale(1);
}

.mg-info-modal-content {
  background: rgba(25, 24, 44, 0.85);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 28px 24px 24px;
  max-width: 340px;
  width: 90%;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6), 0 8px 24px rgba(139, 92, 246, 0.15);
  text-align: left;
  color: #fff;
  /* Gradient-Border (alle 4 Seiten, wie modern-glass-card) */
}
.mg-info-modal-content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1.5px;
  background: linear-gradient(135deg, #ff00ea, #8b5cf6, #00f1f1);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}

/* Karten-Bild im Modal */
.mg-modal-card-img {
  width: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0.3) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  box-sizing: border-box;
}
.mg-modal-card-img img {
  height: 80px;
  max-width: 80%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.5));
}

.mg-info-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.mg-info-modal-close i {
  font-size: 20px;
}
.mg-info-modal-close:hover, .mg-info-modal-close:active {
  background: rgba(255, 255, 255, 0.15);
  color: #FFF;
}

/* ========================================================
   Native Card Slider & Rect Elements
   ======================================================== */
/* --- Card Slider Container --- */
.card-cs-wrapper {
  padding: 24px 0;
  overflow: hidden;
}

.cs-slider-outer {
  position: relative;
}

/* Per-card name colors */
.card-name--blue {
  color: #ffffff;
}

.card-name--green {
  color: #4ade80;
}

.card-name--gold {
  color: #fbbf24;
}

.card-name--platinum {
  color: #cbd5e1;
}

.mg-native-card-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
  /* Scrollbar ausblenden */
  scrollbar-width: none;
}
.mg-native-card-slider::-webkit-scrollbar {
  display: none;
}

.mg-card-slide {
  flex: 0 0 100%; /* Jede Slide nimmt genau 100% Breite ein */
  scroll-snap-align: center;
  padding: 0 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

/* Card Header (Bild & Titel) */
.card-image-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 24px;
}
.card-image-wrapper img {
  max-width: 65%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
  margin-bottom: 16px;
}
@media (hover: hover) {
  .card-image-wrapper img:hover {
    transform: scale(1.05);
  }
}
.card-image-wrapper .card-name {
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* --- Floating Slider Controls --- */
.mg-slider-controls {
  position: absolute;
  top: 60px; /* Positioniert die Pfeile genau neben dem Bild */
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none; /* Klicks sollen durchfallen, außer auf den Buttons */
  z-index: 20;
}

.mg-slider-btn {
  pointer-events: auto;
  width: 36px;
  height: 48px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.mg-slider-btn i {
  font-size: 18px;
}
.mg-slider-btn.left {
  border-radius: 0 8px 8px 0;
  border-left: none;
}
.mg-slider-btn.right {
  border-radius: 8px 0 0 8px;
  border-right: none;
}
.mg-slider-btn:active {
  background: rgba(255, 255, 255, 0.2);
}

/* ========================================================
   Card Overview — Filter Chips + Card List + Modals
   ======================================================== */
.mg-card-filter-row {
  display: flex;
  gap: 8px;
  padding: 16px 16px 12px;
  overflow-x: auto;
  scrollbar-width: none;
}
.mg-card-filter-row::-webkit-scrollbar {
  display: none;
}

.mg-filter-chip {
  flex-shrink: 0;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.mg-filter-chip.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.mg-filter-chip:active:not(.active) {
  transform: scale(0.96);
}

.mg-cov-card {
  padding: 0;
  position: relative;
}

.mg-card-ov-list {
  display: flex;
  flex-direction: column;
}

.mg-card-ov-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: background 0.15s ease;
}
.mg-card-ov-item:active {
  background: rgba(255, 255, 255, 0.04);
}
@media (hover: hover) {
  .mg-card-ov-item:hover {
    background: rgba(255, 255, 255, 0.04);
  }
}

.mg-card-ov-thumb {
  flex-shrink: 0;
  width: 80px;
}
.mg-card-ov-thumb img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
  display: block;
}

.mg-card-ov-info {
  flex: 1;
  min-width: 0;
}

.mg-card-ov-name {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2px;
}

.mg-card-ov-fee {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 4px;
}
.mg-card-ov-fee.green {
  color: #4ade80;
}

.mg-card-ov-bonus {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.mg-card-ov-bonus strong {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
}
.mg-card-ov-bonus span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}
.mg-card-ov-bonus.highlight strong {
  color: #ffc107;
  text-shadow: 0 0 8px rgba(255, 193, 7, 0.4);
}
.mg-card-ov-bonus.highlight s {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
}

.mg-card-ov-arrow {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
}
.mg-card-ov-arrow i {
  font-size: 22px;
}

/* ---- Card Detail Modal (Bottom Sheet) ---- */
.mg-cmodal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mg-cmodal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.mg-cmodal-overlay.show .mg-cmodal-sheet {
  transform: translateY(0);
}

.mg-cmodal-sheet {
  background: #0e0f18;
  border-radius: 24px 24px 0 0;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.36s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  padding-bottom: env(safe-area-inset-bottom, 0);
  scrollbar-width: none;
}
.mg-cmodal-sheet::-webkit-scrollbar {
  display: none;
}
.mg-cmodal-sheet::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff00ea, #8b5cf6, #00f1f1);
  border-radius: 24px 24px 0 0;
  z-index: 1;
  pointer-events: none;
}

.mg-cmodal-handle-bar {
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  margin: 12px auto 0;
}

.mg-cmodal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 5;
}
.mg-cmodal-close i {
  font-size: 18px;
}
.mg-cmodal-close:active {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.mg-cmodal-img-wrap {
  padding: 28px 40px 16px;
  display: flex;
  justify-content: center;
}
.mg-cmodal-img-wrap img {
  max-width: 78%;
  max-height: 130px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.55));
}

.mg-cmodal-name {
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  margin: 0 20px 6px;
  line-height: 1.25;
}

.mg-cmodal-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  margin: 0 24px 14px;
  line-height: 1.4;
}

.mg-cmodal-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 16px 16px;
}

.mg-cmodal-fee {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 100px;
  padding: 5px 14px;
}
.mg-cmodal-fee.green {
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.2);
}

.mg-cmodal-bonus-badge {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 100px;
  padding: 5px 14px;
}
.mg-cmodal-bonus-badge strong {
  font-weight: 800;
  color: #fff;
}
.mg-cmodal-bonus-badge.highlight {
  color: #ffc107;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.2);
}
.mg-cmodal-bonus-badge.highlight strong {
  color: #ffc107;
}

.mg-cmodal-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 4px 0 0;
}

.mg-cmodal-benefits-list {
  padding: 4px 0;
}

.mg-cmodal-benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.mg-cmodal-benefit:last-child {
  border-bottom: none;
}
.mg-cmodal-benefit i {
  font-size: 20px;
  color: var(--brand-light, #00f1f1);
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}
.mg-cmodal-benefit span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

.mg-cmodal-footer {
  padding: 16px 20px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

/* ========================================================
   Rect Elements (Vorteils-Kacheln)
   ======================================================== */
.status-rect-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Genau 3 Spalten */
  gap: 12px;
  width: 100%;
}

.status-rect {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  position: relative;
  width: 100%;
  aspect-ratio: 1; /* Hält die Boxen perfekt quadratisch */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px;
  box-sizing: border-box;
  transition: transform 0.2s, background 0.2s;
}
.status-rect:active {
  transform: scale(0.95);
  background: rgba(255, 255, 255, 0.08);
}
.status-rect > span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  line-height: 1.3;
  width: 100%;
  display: block;
  word-wrap: break-word;
}

/* --- Bonus Text Logic (rect-elements.js / getDynamicBonus) --- */
.mg-bonus-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mg-bonus-block.highlight .val-new {
  color: #ffc107;
  font-size: 13px;
  font-weight: 800;
  text-shadow: 0 0 8px rgba(255, 193, 7, 0.4);
  margin-bottom: 2px;
}
.mg-bonus-block.highlight .val-old {
  opacity: 0.5;
  font-size: 10px;
  margin-bottom: 2px;
  text-decoration: line-through;
}
.mg-bonus-block.normal .val-current {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}
.mg-bonus-block .val-text {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.2;
}

/* --- CTA Button (block display) --- */
.offer-cta-btn {
  display: block;
}

/* --- MR CC Slider main card & modal content --- */
.mr-main-card {
  padding: 24px;
  overflow: hidden;
}

.mr-modal-icon-wrap {
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
}

.mr-modal-icon {
  font-size: 40px !important;
}

.mr-modal-title {
  margin: 0 0 12px 0;
  font-size: 18px;
  font-weight: 700;
}

.mr-modal-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* --- status-slider CTA buttons --- */
.status-cta-btn {
  padding: 15px;
  font-size: 16px;
}

/* --- cc-busines-slider (card switcher) --- */
.cbs-card {
  position: relative;
  padding: 20px;
}

.cbs-header-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
}

.cbs-header-icon {
  color: var(--brand-light, #00f1f1);
  font-size: 20px;
}

.cbs-header-title {
  color: #fff;
  font-size: 14px;
}

/* --- points-buy total span --- */
.points-total-display {
  font-size: 18pt;
}

/* ========================================================
   External Booking / Routing View Styles
   ======================================================== */
.external-page-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  /* Dynamisches Padding, damit nichts unter der Navbar verschwindet */
  padding: calc(70px + env(safe-area-inset-top)) 20px calc(110px + env(safe-area-inset-bottom)) 20px;
}

.external-container {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* --- Back Action --- */
.external-back-action {
  margin-bottom: 24px;
}
.external-back-action .mg-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s, transform 0.2s;
}
.external-back-action .mg-back-link i {
  font-size: 20px;
}
.external-back-action .mg-back-link:hover {
  color: #FFFFFF;
}
.external-back-action .mg-back-link:active {
  transform: scale(0.98);
}

/* --- Header --- */
.external-header {
  text-align: center;
  margin-bottom: 32px;
}
.external-header .page-title {
  font-size: 28px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.external-header .page-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* --- Step Card (Anleitung) --- */
.external-step-card {
  padding: 24px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.external-step-card .card-headline {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 24px;
}

.external-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mg-step-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.mg-step-item .step-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--brand-primary, #ff00ea);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}
.mg-step-item .step-icon i {
  font-size: 24px;
}
.mg-step-item .step-content {
  flex-grow: 1;
}
.mg-step-item .step-content .step-title {
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
  line-height: 1.2;
}
.mg-step-item .step-content .step-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.4;
}
.mg-step-item .step-content .step-text strong {
  color: #FFFFFF;
  font-weight: 600;
}

/* --- Action Card (Buchen) --- */
.external-action-card {
  padding: 32px 24px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(15, 19, 32, 0.8);
}

.route-visualization {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 24px;
  padding: 0 10px;
}
.route-visualization .route-node {
  flex: 1;
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}
.route-visualization .route-arrow {
  color: rgba(255, 255, 255, 0.4);
  padding: 0 16px;
}
.route-visualization .route-arrow i {
  font-size: 24px;
}

.airline-logo-wrapper {
  margin-bottom: 24px;
  height: 48px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
}
.airline-logo-wrapper img {
  max-height: 100%;
  max-width: 160px; /* Begrenzung, damit das SVG nicht explodiert */
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.external-hint {
  margin-top: 16px;
}
.external-hint small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========================================================
   Legal Views (Impressum, Datenschutz, AGB)
   ======================================================== */
.legal-page-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  /* Dynamisches Padding hält Abstand zu den Rändern */
  padding: calc(70px + env(safe-area-inset-top)) 20px calc(110px + env(safe-area-inset-bottom)) 20px;
}

.legal-container {
  max-width: 600px; /* Etwas breiter für besseres Lesen von Texten */
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* --- Back Action --- */
.legal-back-action {
  margin-bottom: 24px;
}
.legal-back-action .mg-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s, transform 0.2s;
}
.legal-back-action .mg-back-link i {
  font-size: 20px;
}
.legal-back-action .mg-back-link:hover {
  color: #FFFFFF;
}
.legal-back-action .mg-back-link:active {
  transform: scale(0.98);
}

/* --- Content Card --- */
.legal-card {
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
}
.legal-card .legal-title {
  font-size: 28px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 32px;
  text-align: center;
  letter-spacing: -0.5px;
}
.legal-card .legal-content {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}
.legal-card .legal-content h3, .legal-card .legal-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 32px 0 12px 0;
  letter-spacing: -0.2px;
}
.legal-card .legal-content h3:first-child, .legal-card .legal-content h4:first-child {
  margin-top: 0;
}
.legal-card .legal-content p {
  margin-bottom: 16px;
}
.legal-card .legal-content p:last-child {
  margin-bottom: 0;
}
.legal-card .legal-content a {
  color: var(--brand-light, #00f1f1);
  text-decoration: none;
  transition: color 0.2s;
}
.legal-card .legal-content a:hover {
  text-decoration: underline;
  color: #FFFFFF;
}
.legal-card .legal-content strong, .legal-card .legal-content b {
  color: #FFFFFF;
  font-weight: 600;
}

/* ========================================================
   Account / Cockpit View Styles
   ======================================================== */
.account-page-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  /* Dynamisches Padding hält Abstand zu den Rändern (Safe Areas & Navbar) */
  padding: 0;
}

.account-background {
  position: fixed;
  inset: 0;
  background: url("/images/mgp.jpg") center/cover no-repeat;
  filter: brightness(0.25) grayscale(0.2);
  z-index: -1;
  pointer-events: none;
}

.account-container {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* --- Hero Section --- */
.account-hero {
  text-align: center;
  padding: 24px 0 20px;
}
.account-hero .hero-title {
  font-size: 28px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.account-hero .hero-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 auto;
  max-width: 280px;
  line-height: 1.5;
}

/* --- Content Layout --- */
.account-main-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.account-modules {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ========================================================
   Overview View (user/Overview.js)
   ======================================================== */
/* --- Guest (not logged in) state --- */
.ov-auth-card {
  position: relative;
  overflow: hidden;
  padding: 40px 24px;
  text-align: center;
  margin-top: 48px;
}

.ov-auth-icon {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.ov-auth-icon i {
  font-size: 36px;
}

.ov-auth-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.ov-auth-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.ov-tutorial-hint {
  margin-top: 16px;
}

.ov-tutorial-link {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  text-decoration: none;
}

/* --- Goal card --- */
.ov-goal-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin-bottom: 16px;
  border-radius: 20px;
}

.ov-goal-img {
  width: 100%;
  height: 140px;
  border-radius: 20px 20px 0 0;
  background-size: cover;
  background-position: center;
}

.ov-goal-body {
  padding: 20px 24px;
}

.ov-goal-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.ov-goal-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.ov-goal-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.ov-goal-link {
  font-size: 13px;
  color: rgba(217, 70, 168, 0.9);
  text-decoration: none;
}

/* --- Main authenticated view --- */
.ov-page-wrapper {
  padding-left: 16px;
  padding-right: 16px;
}

.ov-page-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  margin-top: 8px;
}

.ov-page-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

.ov-explore-card {
  padding: 20px 24px;
  margin-bottom: 16px;
}

.ov-explore-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.ov-explore-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 12px 0;
}
.ov-explore-item--bordered {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ov-explore-icon {
  color: rgba(217, 70, 168, 0.9);
  font-size: 22px;
}

.ov-explore-label {
  font-size: 14px;
  color: #fff;
}

.ov-explore-chevron {
  color: rgba(255, 255, 255, 0.3);
  font-size: 18px;
  margin-left: auto;
}

/* --- RegisterPart Component --- */
.reg-main-card {
  position: relative;
  overflow: hidden;
  padding: 36px 24px;
  text-align: center;
}

.reg-icon-circle {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.reg-rocket-icon {
  font-size: 36px;
  background: linear-gradient(135deg, #ff00ea, #8b5cf6, #00f1f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 6px rgba(255, 0, 234, 0.5));
}

.reg-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.reg-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 28px;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.reg-cta {
  display: block;
  width: 100%;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
}

.reg-login-link {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}
.reg-login-link:hover {
  color: #fff;
}

/* --- TutorialRestartView Component (reuses reg-* where possible) --- */
.trv-icon-circle {
  width: 76px;
  height: 76px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.trv-icon-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  pointer-events: none;
}

/* --- mr/part entry cards --- */
.mr-cc-entry-card {
  background-position: center;
  background-size: 150px;
  background-repeat: no-repeat;
  position: relative;
}

/* --- mr/CreditCard legend --- */
.mr-legend-label {
  font-size: 10pt !important;
}

.mr-legend-pink {
  background-color: #e31bd4;
}

/* --- mr/Goal view --- */
.mr-goal-card-grid {
  display: grid;
}

.mr-entry-card {
  background-position: center;
  background-size: cover;
  position: relative;
}

.mr-badge-pos {
  top: 35px;
  left: 5px;
}

.mr-entry-overlay {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  position: absolute;
  bottom: 0;
  width: 100%;
}

/* --- Badgelist --- */
.badge-main-card {
  position: relative;
}

.badge-inner {
  padding: 24px;
}

.badge-title {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.badge-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 20px;
}

/* --- video overlay (VideoView / mr/List) --- */
.video-overlay-bg {
  background: rgba(0, 0, 0, 0.9);
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 250;
  top: 0;
  left: 0;
}

.video-overlay-panel {
  position: fixed;
  top: 30px;
  left: 30px;
  bottom: 30px;
  right: 30px;
  z-index: 250;
}

/* --- mr-cc-slider transfer modal --- */
.mrcs-modal-icon-row {
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
}

.mrcs-modal-icon {
  font-size: 40px;
}

.mrcs-modal-title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
}

.mrcs-modal-body {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* --- Meilen & Programme Widget (inline im Cockpit) --- */
.acct-miles-card {
  position: relative;
  padding: 20px 16px;
}

.acct-miles-head {
  margin-bottom: 16px;
}

.acct-miles-head-label {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.acct-miles-section-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin: 14px 0 8px;
}
.acct-miles-section-label--spaced {
  margin-top: 20px;
}

.acct-miles-list {
  gap: 8px;
}

.acct-miles-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 20px 0 0;
}

.acct-miles-inputs {
  margin-top: 4px;
}

.acct-miles-save-btn {
  margin-top: 20px;
}

/* ========================================================
   Step By Step (Alle Schritte Liste) View Styles
   ======================================================== */
.stepbystep-page-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  /* Dynamisches Padding hält Abstand zur Top-Bar und zur unteren Navbar */
  padding: calc(20px + env(safe-area-inset-top)) 20px calc(110px + env(safe-area-inset-bottom)) 20px;
}

.stepbystep-container {
  max-width: 480px; /* Perfekte Breite auf dem Handy und zentriert auf Desktop */
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* --- Back Action (Wie im Impressum/External Booking) --- */
.stepbystep-back-action .mg-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s, transform 0.2s;
}
.stepbystep-back-action .mg-back-link i {
  font-size: 20px;
}
.stepbystep-back-action .mg-back-link:hover {
  color: #FFFFFF;
}
.stepbystep-back-action .mg-back-link:active {
  transform: scale(0.98);
}

/* --- Header --- */
.stepbystep-header {
  text-align: center;
  margin-bottom: 32px;
}
.stepbystep-header .page-title {
  font-size: 28px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.stepbystep-header .page-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* --- Sections (Erledigt / Ausstehend) --- */
.stepbystep-section .section-title {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
  padding-left: 4px;
}
.stepbystep-section .opacity-80 {
  opacity: 0.8; /* Erledigte Tasks treten optisch leicht in den Hintergrund */
  /* Die erledigten Karten deaktivieren den Hover/Active-Effekt */
}
.stepbystep-section .opacity-80 .mg-step-list-item.done {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.04);
}
.stepbystep-section .opacity-80 .mg-step-list-item.done:active {
  transform: none;
}

/* --- Modifikation für die PromoCatcher Klassen --- */
/* (Wird an die Klasse .mg-step-list-item aus _promocatcher.scss angehängt) */
.mg-step-list-item {
  /* Haken bei erledigten Tasks in MG-Farben */
}
.mg-step-list-item .step-number.success {
  background: rgba(139, 92, 246, 0.2);
  color: var(--brand-dark, #8b5cf6);
  box-shadow: none;
}
.mg-step-list-item .step-number.success i {
  font-size: 18px;
}
.mg-step-list-item.done .step-title {
  color: rgba(255, 255, 255, 0.7); /* Titel etwas abdimmen, wenn erledigt */
}

/* --- Undo-Button bei erledigten Tasks --- */
.sbs-undo-btn {
  background: none;
  border: none;
  padding: 4px;
  margin-left: 8px;
  cursor: pointer;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.2s;
}
.sbs-undo-btn i {
  font-size: 18px;
}
.sbs-undo-btn:hover, .sbs-undo-btn:active {
  color: rgba(255, 255, 255, 0.6);
}

/* --- Progress Card --- */
.sbs-progress-card {
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.sbs-progress-header {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.sbs-progress-count {
  color: var(--brand-primary, #ff00ea);
}

.sbs-progress-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  height: 8px;
  width: 100%;
  overflow: hidden;
}

.sbs-progress-fill {
  background: linear-gradient(90deg, #ff00ea, #8b5cf6, #00f1f1);
  height: 100%;
  border-radius: 8px;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 10px rgba(255, 0, 234, 0.3);
}

/* --- All Done Card --- */
.sbs-done-card {
  padding: 32px 24px;
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
}

.sbs-done-icon {
  font-size: 40px;
  color: var(--brand-dark, #8b5cf6);
  margin-bottom: 12px;
}

.sbs-done-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.sbs-done-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* ========================================================
   Offers / Angebote View Styles (Glassmorphism)
   ======================================================== */
.offer-page-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: calc(80px + env(safe-area-inset-top)) 16px calc(120px + env(safe-area-inset-bottom)) 16px;
}

.offer-container {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.offer-header {
  text-align: center;
  margin-bottom: 24px;
}
.offer-header .page-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #FFFFFF;
  letter-spacing: -0.5px;
  text-shadow: 0 0 16px rgba(255, 193, 7, 0.4);
}
.offer-header .page-subtitle {
  font-size: 14px;
  color: var(--text-tertiary, rgba(255, 255, 255, 0.7));
  margin: 0 auto;
  line-height: 1.5;
}

/* --- Responsive Offer Grid --- */
.mg-offer-grid {
  display: grid;
  /* IMMER genau 2 Spalten, keine Media-Queries für 3 Spalten mehr! */
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 12px;
}

/* --- Offer Cards --- */
.mg-offer-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}
.mg-offer-card:active {
  transform: scale(0.96);
  background: rgba(255, 255, 255, 0.06);
}
@media (hover: hover) {
  .mg-offer-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  }
}
.mg-offer-card {
  /* Dynamisches Layout: Startet mit 1 Big, dann 6 Small (3 Reihen), dann wieder 1 Big -> 7er Rhythmus! */
}
.mg-offer-card:nth-child(7n+1) {
  grid-column: 1/-1;
}
.mg-offer-card:nth-child(7n+1) .offer-image-wrapper {
  height: 140px; /* Mehr Platz für das große Logo */
}
.mg-offer-card:nth-child(7n+1) .offer-image-wrapper img {
  max-width: 60%;
}
.mg-offer-card:nth-child(7n+1) .offer-image-wrapper { /* Verhindert horizontales Überstrecken */ }
.mg-offer-card:nth-child(7n+1) .offer-content {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  text-align: left;
}
.mg-offer-card:nth-child(7n+1) .offer-title {
  text-align: left;
  -webkit-line-clamp: 2; /* Darf zweizeilig sein */
}

.offer-image-wrapper {
  position: relative;
  width: 100%;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.offer-image-wrapper.bg-white {
  background: #FFFFFF;
}
.offer-image-wrapper.rewe-bg {
  background: radial-gradient(circle, #ffffff 0%, #e0e0e0 100%);
}
.offer-image-wrapper.cover-bg {
  padding: 0;
  background: #000;
}
.offer-image-wrapper.cover-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}
.offer-image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.offer-badge-timer {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.offer-badge-timer i {
  font-size: 12px;
}

/* Der Bereich unter dem Bild (sauber im Layout, statt schwebend) */
.offer-content {
  padding: 12px 10px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  text-align: center;
  background: rgba(15, 19, 32, 0.6);
}

.offer-title {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.offer-miles-highlight {
  font-size: 14px;
  font-weight: 800;
  color: #FFFFFF;
}
.offer-miles-highlight.brand {
  color: var(--brand-primary, #ff00ea);
}
.offer-miles-highlight.payback {
  color: #00e5ff;
}

/* --- Collect View (Meilen-Angebote / MM Collect) --- */
.collect-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.collect-empty {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.collect-empty-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.collect-empty-icon i {
  font-size: 32px;
  opacity: 0.3;
}

.collect-empty-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.collect-empty-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  max-width: 260px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.collect-empty-cta {
  display: inline-block;
  text-decoration: none;
  padding: 12px 28px;
}

.collect-card-wrap {
  overflow: hidden;
}

.collect-card-img {
  height: 160px;
  background-size: cover;
  background-position: center;
}

.collect-card-title {
  font-size: 16px;
  margin-bottom: 6px;
}

.collect-card-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  margin-bottom: 12px;
}

.collect-card-miles {
  color: #ff00ea;
  font-weight: 700;
  margin-bottom: 8px;
}

.collect-card-expire {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
}

.collect-card-cta {
  display: block;
  text-align: center;
}

/* --- Offer loading / empty state --- */
.offer-loading-card {
  grid-column: 1/-1;
  padding: 40px 20px;
  text-align: center;
}

.offer-loading-icon {
  font-size: 40px !important;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 12px;
}

.offer-loading-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.offer-loading-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Search button in segmented control */
.offer-search-btn {
  flex: 0 0 50px;
}

/* Segmented control fills the offer container width */
.offer-container .mg-segmented-control {
  max-width: 100%;
}

/* ========================================================
   Schneller-Seite (Kreditkarten-Empfehlung + Meilenshop)
   ======================================================== */
.schneller-page {
  padding-bottom: 100px;
  color: #fff;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}

/* ─── Hero ─── */
.sc-hero {
  background: linear-gradient(to bottom, rgba(15, 19, 32, 0.6), rgb(15, 19, 32));
  background-size: cover;
  background-position: center;
  padding: 24px 24px 32px;
  position: relative;
}

.sc-back {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 20px;
}
.sc-back .material-icons {
  font-size: 20px;
}

.sc-hero-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ff00ea;
  margin-bottom: 8px;
}

.sc-hero-title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 28px;
  letter-spacing: -0.5px;
}
.sc-hero-title span {
  color: #ff00ea;
}

/* Vergleichs-Boxen */
.sc-compare {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sc-compare-box {
  flex: 1;
  border-radius: 16px;
  padding: 14px 12px;
  text-align: center;
}
.sc-compare-box--now {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.sc-compare-box--card {
  background: rgba(255, 0, 234, 0.15);
  border: 1px solid rgba(255, 0, 234, 0.4);
}
.sc-compare-box .sc-compare-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}
.sc-compare-box .sc-compare-value {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.sc-compare-box .sc-compare-saving {
  font-size: 11px;
  color: #ff00ea;
  font-weight: 700;
  margin-top: 4px;
}

.sc-compare-arrow {
  color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}
.sc-compare-arrow .material-icons {
  font-size: 20px;
}

/* ─── Sections ─── */
.sc-section {
  padding: 28px 20px 0;
}

.sc-section-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}

.sc-section-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

/* ─── Kreditkarten ─── */
.sc-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sc-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.sc-card--highlight {
  background: rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.35);
}
.sc-card--highlight::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, #ff00ea, #8b5cf6, #00f1f1);
}

.sc-card-tag {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
}

.sc-card-image-wrap {
  margin: 16px 0;
  display: flex;
  justify-content: center;
}

.sc-card-image {
  height: 80px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 10px;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.5));
}

.sc-card-conditions {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  margin: 8px 0 14px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  border-left: 2px solid rgba(139, 92, 246, 0.4);
}

.sc-card-name {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.sc-card-fee {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.sc-card-bonus {
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 16px;
}
.sc-card-bonus span {
  font-size: 15px;
  font-weight: 500;
  display: block;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

.sc-card-perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.sc-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}
.sc-perk .material-icons {
  font-size: 16px;
  color: #10b981;
  flex-shrink: 0;
}

.sc-card-monthly {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-bottom: 16px;
}

.sc-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  border: none;
  transition: transform 0.15s, opacity 0.15s;
  -webkit-mask: radial-gradient(circle at left center, transparent 5px, black 5px) left/51% 100% no-repeat, radial-gradient(circle at right center, transparent 5px, black 5px) right/51% 100% no-repeat;
  mask: radial-gradient(circle at left center, transparent 5px, black 5px) left/51% 100% no-repeat, radial-gradient(circle at right center, transparent 5px, black 5px) right/51% 100% no-repeat;
}
.sc-card-cta:active {
  transform: scale(0.97);
}
.sc-card-cta:hover {
  opacity: 0.9;
  color: #fff;
  text-decoration: none;
}
.sc-card-cta .material-icons {
  font-size: 18px;
}
.sc-card-cta--primary {
  background: linear-gradient(to right, #ff00ea, #8b5cf6, #00f1f1);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.35);
}
.sc-card-cta--secondary {
  background: linear-gradient(to right, rgba(255, 0, 234, 0.35), rgba(139, 92, 246, 0.35), rgba(0, 241, 241, 0.35));
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.2);
  color: #fff;
}

/* ─── Meilen einlösen ─── */
.sc-redeem-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
}

.sc-redeem-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.sc-redeem-item:last-child {
  border-bottom: none;
}

.sc-redeem-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sc-redeem-icon .material-icons {
  font-size: 22px;
}

.sc-redeem-info {
  flex: 1;
}
.sc-redeem-info .sc-redeem-label {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}
.sc-redeem-info .sc-redeem-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.sc-redeem-miles {
  font-size: 15px;
  font-weight: 700;
  text-align: right;
}
.sc-redeem-miles span {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}

/* ─── Bottom CTA ─── */
/* ─── Privat / Business Switch ─── */
.sc-switch {
  display: flex;
  gap: 8px;
  margin: 16px 0 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 4px;
}

.sc-switch-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: inherit;
}
.sc-switch-btn .material-icons {
  font-size: 16px;
}
.sc-switch-btn--active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.sc-panel-hidden {
  display: none;
}

/* Fade-in beim Tab-Wechsel */
.sc-fade-in {
  animation: scFadeIn 0.2s ease;
}

@keyframes scFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ─── Offers Liste ─── */
.sc-offers-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.sc-offer-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  text-decoration: none;
  transition: background 0.15s, transform 0.12s;
}
.sc-offer-item:active {
  transform: scale(0.98);
  background: rgba(255, 255, 255, 0.08);
}

.sc-offer-img {
  width: 52px;
  height: 34px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 6px;
}

.sc-offer-info {
  flex: 1;
  min-width: 0;
}

.sc-offer-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sc-offer-pts {
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}

.sc-offer-arrow {
  color: rgba(255, 255, 255, 0.3);
  font-size: 20px;
  flex-shrink: 0;
}

.sc-bottom-cta {
  padding: 32px 20px 0;
  text-align: center;
}
.sc-bottom-cta .sc-bottom-cta-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
}

.sc-bottom-btn {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  padding: 16px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  -webkit-mask: radial-gradient(circle at left center, transparent 5px, black 5px) left/51% 100% no-repeat, radial-gradient(circle at right center, transparent 5px, black 5px) right/51% 100% no-repeat;
  mask: radial-gradient(circle at left center, transparent 5px, black 5px) left/51% 100% no-repeat, radial-gradient(circle at right center, transparent 5px, black 5px) right/51% 100% no-repeat;
}

.sc-bottom-link {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: underline;
  text-align: center;
}

/* ========================================================
   Sub-Page Shared Styles (Glassmorphism + Brand)
   Ersetzt alle inline \3c style>-Blöcke in den sub/*.js Dateien
   ======================================================== */
/* Zurück-Button (Pill) */
.modern-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 100px;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
  font-weight: 500;
}
.modern-back-btn .material-icons {
  font-size: 1.2rem;
}
.modern-back-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  text-decoration: none;
}

/* Haupt-Glasskarte */
.modern-glass-card {
  position: relative;
  background: rgba(30, 32, 40, 0.65);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 30px;
  color: #f8f9fa;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 20px 40px rgba(139, 92, 246, 0.1);
  text-align: left;
  font-family: system-ui, -apple-system, sans-serif;
  /* Gradient-Border via CSS-Masking */
}
.modern-glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(90deg, #ff00ea, #8b5cf6, #00f1f1);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Typografie innerhalb der Karte */
.sub-page-title {
  margin-top: 0;
  font-weight: 600;
}

.sub-page-hero-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.sub-page-lead {
  color: #f8f9fa;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.sub-page-text {
  color: #a1a1aa;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Info-Liste (Aufzählung mit Emoji-Icons) */
.sub-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sub-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.sub-info-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.sub-info-text {
  color: #a1a1aa;
  font-size: 0.9rem;
  line-height: 1.5;
}
.sub-info-text strong {
  color: #f8f9fa;
}

/* Kartenbild-Container (mit Hover-Effekt) */
.modern-card-link {
  text-decoration: none;
  display: block;
}

.modern-card-wrapper {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
  padding: 30px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.modern-card-wrapper:hover {
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.15);
}
.modern-card-wrapper img {
  width: 80%;
  max-width: 250px;
  display: block;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5));
}
.modern-card-wrapper:hover img {
  transform: scale(1.05) rotate(-2deg);
}

/* Bild-/Medien-Wrapper (ohne Hover-Zoom, für allgemeine Bilder) */
.modern-media-wrapper {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: #000;
}
.modern-media-wrapper img, .modern-media-wrapper video {
  width: 100%;
  display: block;
  border-radius: 16px;
}

/* Action-Buttons */
.btn-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  width: 100%;
  color: #fff;
}

/* "Als erledigt markieren" Button */
.btn-toggle {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.btn-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.btn-toggle.done {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Gradient-CTA-Button ("Beantragen" / "Anmelden") */
.btn-apply {
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #fff;
  background: linear-gradient(90deg, #ff00ea, #8b5cf6, #00f1f1);
}
.btn-apply::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #cc00bb, #7c3ace, #00c4c4);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-apply:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
  text-decoration: none;
}
.btn-apply:hover::before {
  opacity: 1;
}

/* Responsives Button-Grid */
@media (min-width: 481px) {
  .modern-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .modern-actions-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
  }
}

/* Volle Breite im Grid (z.B. dritter Button) */
@media (min-width: 481px) {
  .full-width-btn {
    grid-column: 1/-1;
  }
}

/* Coming-Soon Banner */
.coming-soon-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 20px;
}
.coming-soon-banner .material-icons {
  font-size: 20px;
  color: #8b5cf6;
  flex-shrink: 0;
  margin-top: 2px;
}
.coming-soon-banner div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.coming-soon-banner strong {
  font-size: 13px;
  font-weight: 700;
  color: #c4b5fd;
  display: block;
}
.coming-soon-banner span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

/* Payback Connect Page */
.pb-connect-coming-soon {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 18px;
  padding: 24px 20px;
  text-align: center;
  margin-bottom: 28px;
}
.pb-connect-coming-soon__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.pb-connect-coming-soon__icon .material-icons {
  font-size: 26px;
  color: #60a5fa;
}
.pb-connect-coming-soon h4 {
  font-size: 15px;
  font-weight: 700;
  color: #93c5fd;
  margin: 0 0 10px;
}
.pb-connect-coming-soon p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
  margin: 0;
}

.pb-connect-disabled-form {
  opacity: 0.35;
  pointer-events: none;
  user-select: none;
  margin-bottom: 28px;
}

.pb-connect-field {
  margin-bottom: 14px;
  text-align: left;
}
.pb-connect-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.pb-connect-field input {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 13px 16px;
  color: #fff;
  font-size: 14px;
  box-sizing: border-box;
}

.pb-connect-disabled-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 600;
  margin-top: 6px;
}
.pb-connect-disabled-btn .material-icons {
  font-size: 16px;
}

.pb-connect-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
  text-align: center;
}
.pb-connect-footer p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 12px;
}

.pb-connect-register-btn {
  display: inline-flex;
  gap: 6px;
  font-size: 14px;
}
.pb-connect-register-btn .material-icons {
  font-size: 16px;
}

/* Newsletter-Feedback */
.newsletter-feedback {
  color: #34d399;
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 16px;
  text-align: center;
  line-height: 1.4;
}

/* --- Guide / GuideView shared --- */
.guide-empty-state {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  color: #fff;
}

.guide-empty-icon {
  font-size: 64px;
  opacity: 0.25;
  margin-bottom: 16px;
}

.guide-empty-title {
  margin-bottom: 8px;
}

.guide-empty-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  max-width: 280px;
}

.guide-article-image {
  display: inline-block;
  width: 100%;
  min-height: 200px;
  background-size: cover;
  background-position: center;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

.guide-article-label {
  font-size: 9pt;
}

.guide-view-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  top: 0;
  z-index: -5;
}

.guide-hero-image {
  display: inline-block;
  width: 100%;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

.guide-hero-title {
  font-size: 14pt;
  text-align: left;
  padding: 10px;
  top: 180px;
  position: relative;
}

/* --- sub-page title card colors --- */
.sub-title-amex-gold {
  color: #fbbf24;
}

.sub-title-amex-biz-gold {
  color: #fbbf24;
}

.sub-title-amex-platinum {
  color: #a5b4fc;
}

.sub-title-amex-biz-platinum {
  color: #c4b5fd;
}

.sub-title-amex-blue {
  color: #60a5fa;
}

.sub-title-amex-green {
  color: #34d399;
}

.sub-title-eurowings-premium {
  color: #e5c786;
}

/* --- site legacy nav-back (top:65px variant) --- */
.site-nav-back {
  position: absolute;
  top: 65px;
  left: 15px;
  z-index: 1000;
}

/* ================================================================
   Edit Miles — /account/miles Account Sub-Page
   ================================================================ */
.em-back-row {
  padding: 16px 4px 4px;
}

.em-page-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 4px 20px;
  letter-spacing: -0.3px;
}

.em-card {
  position: relative;
  overflow: hidden;
  padding: 20px 16px;
}

.em-section-first {
  margin-top: 0;
}

.em-selection-list {
  margin-top: 8px;
  margin-bottom: 4px;
}

.em-card .section-label {
  margin-bottom: 0;
}

.em-section-spaced {
  margin-top: 20px;
}

.em-miles-group {
  margin-top: 12px;
}

/* ========================================================
   Wunschziel Widget — kompakte Ansicht + aufklappbarer Explorer
   ======================================================== */
.wzr-main-card {
  padding: 0;
  overflow: hidden;
}

/* ── Ziel-Header ────────────────────────────────────────── */
.wzr-goal-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px 0;
}

.wzr-goal-icon {
  font-size: 16px;
  color: var(--brand-primary, #ff00ea);
  flex-shrink: 0;
}

.wzr-goal-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-decoration: none;
}

.wzr-toggle-btn {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s;
}
.wzr-toggle-btn:hover, .wzr-toggle-btn:active {
  background: rgba(255, 0, 234, 0.12);
  border-color: rgba(255, 0, 234, 0.3);
  color: var(--brand-primary, #ff00ea);
}

/* ── Programm-Pills ─────────────────────────────────────── */
.wzr-prog-pills {
  display: flex;
  gap: 8px;
  padding: 12px 20px 8px;
}

.wzr-prog-pill {
  flex: 1;
  padding: 7px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.wzr-prog-pill.active {
  background: linear-gradient(135deg, #ff00ea, #8b5cf6);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 2px 10px rgba(255, 0, 234, 0.25);
}
.wzr-prog-pill:active {
  transform: scale(0.97);
}

/* ── Kompakte Meilen-Übersicht (ohne Rad) ───────────────── */
.wzr-miles-overview {
  padding: 4px 20px 0;
}

.wzr-miles-zone {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.wzr-miles-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 12px;
}

.wzr-miles-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wzr-miles-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.wzr-miles-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  min-width: 56px;
}

.wzr-miles-val {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

/* ── Fortschritts-Balken ────────────────────────────────── */
.wzr-progress-section {
  padding: 0 20px 16px;
}

.wzr-prog-bar-wrap {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 12px 14px;
}

.wzr-prog-bar-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 7px;
}

.wzr-prog-bar-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}

.wzr-prog-bar-count {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
}

.wzr-prog-bar-track {
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 7px;
}

.wzr-prog-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff00ea, #8b5cf6, #00f1f1);
  border-radius: 4px;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  min-width: 3px;
}

.wzr-prog-bar-status {
  font-size: 11px;
}

.wzr-prog-gap {
  color: rgba(255, 255, 255, 0.5);
}
.wzr-prog-gap strong {
  color: #fff;
}

.wzr-prog-done {
  color: #4ade80;
  font-weight: 600;
}

/* ── Zone-Explorer (eingeklappt / aufgeklappt) ──────────── */
.wzr-explorer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-top: 0px solid rgba(255, 255, 255, 0.07);
}
.wzr-explorer.wzr-explorer--open {
  max-height: 400px;
  border-top-width: 1px;
}

.wzr-explorer-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 12px 20px 4px;
}

/* ── Rad-Layout ─────────────────────────────────────────── */
.wzr-layout {
  display: flex;
  align-items: stretch;
  height: 220px;
}

.wzr-wheel-wrap {
  position: relative;
  width: 50%;
  flex-shrink: 0;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.wzr-wheel-fade-top,
.wzr-wheel-fade-bot {
  position: absolute;
  left: 0;
  right: 0;
  height: 66px;
  z-index: 2;
  pointer-events: none;
}

.wzr-wheel-fade-top {
  top: 0;
  background: linear-gradient(to bottom, rgba(15, 19, 32, 0.95), transparent);
}

.wzr-wheel-fade-bot {
  bottom: 0;
  background: linear-gradient(to top, rgba(15, 19, 32, 0.95), transparent);
}

.wzr-wheel-selector {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 40px;
  transform: translateY(-50%);
  border-top: 1px solid rgba(255, 0, 234, 0.35);
  border-bottom: 1px solid rgba(255, 0, 234, 0.35);
  background: rgba(255, 0, 234, 0.05);
  z-index: 1;
  pointer-events: none;
}

.wzr-wheel {
  height: 220px;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 90px 0;
}
.wzr-wheel::-webkit-scrollbar {
  display: none;
}

.wzr-wheel-item {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  scroll-snap-align: center;
  cursor: pointer;
  padding: 0 6px;
  text-align: center;
  line-height: 1.3;
  transition: color 0.15s;
}
.wzr-wheel-item.active {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.wzr-result {
  flex: 1;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wzr-result-zone {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.wzr-class-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wzr-class-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.wzr-class-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.wzr-class-name {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  min-width: 44px;
}

.wzr-class-miles {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.wzr-oneway-note {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* ========================================================
   Kombiniertes Wunschziel-Widget (Goal + Programme swipebar)
   ======================================================== */
.gw-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-elevated, #1A1F2E);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Hintergrundbild */
.gw-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3) saturate(0.8);
  z-index: 0;
}

/* Inhalt über dem Bild */
.gw-content {
  position: relative;
  z-index: 1;
  padding: 20px 20px 0;
}

.gw-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 2px;
  letter-spacing: -0.5px;
}

.gw-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
  font-weight: 500;
}

/* ── Swipe-Track ────────────────────────────────────────── */
.gw-track-outer {
  overflow: hidden;
}

.gw-track {
  display: flex;
  will-change: transform;
}

.gw-slide {
  flex: 0 0 100%;
  width: 100%;
}

.gw-slide-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 4px;
}

/* ── Klassen-Übersicht ──────────────────────────────────── */
.gw-classes {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gw-class-row {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 6px 10px;
}

.gw-class-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.gw-class-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
}

.gw-class-miles {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

/* ── Zone-Hinweis (Avios / Flying Blue) ─────────────────── */
.gw-zone-hint {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ── Fortschritts-Bereich ───────────────────────────────── */
.gw-progress-wrap {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  padding: 12px 14px;
  backdrop-filter: blur(4px);
}

.gw-bar-header {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 6px;
}

.gw-bar-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 7px;
}

.gw-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff00ea, #8b5cf6, #00f1f1);
  border-radius: 4px;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  min-width: 3px;
}

.gw-bar-status {
  font-size: 11px;
}

.gw-gap {
  color: rgba(255, 255, 255, 0.55);
}
.gw-gap strong {
  color: #fff;
}

.gw-done {
  color: #4ade80;
  font-weight: 600;
}

/* ── Beschleuniger ──────────────────────────────────────── */
.gw-accel {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 0, 234, 0.08);
  border: 1px solid rgba(255, 0, 234, 0.2);
  border-radius: 12px;
  padding: 10px 12px;
  text-decoration: none;
  transition: background 0.2s;
}
.gw-accel:active {
  background: rgba(255, 0, 234, 0.14);
}
.gw-accel i {
  font-size: 18px;
  color: var(--brand-primary, #ff00ea);
  flex-shrink: 0;
}

.gw-accel-text {
  flex: 1;
  min-width: 0;
}

.gw-accel-name {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.gw-accel-detail {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}
.gw-accel-detail strong {
  color: var(--brand-primary, #ff00ea);
}

.gw-accel-cta {
  font-size: 16px;
  color: var(--brand-primary, #ff00ea);
  flex-shrink: 0;
}

/* ── Footer: Dots + Programm-Name ───────────────────────── */
.gw-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 14px 20px 16px;
}

.gw-dots {
  display: flex;
  gap: 6px;
}

.gw-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.gw-dot.active {
  background: var(--brand-primary, #ff00ea);
  transform: scale(1.3);
}

.gw-prog-name {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.3px;
}/*! tailwindcss v4.3.0 | MIT License | https://tailwindcss.com */
@layer properties {
  @supports (((-webkit-hyphens: none)) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
    *, :before, :after, ::backdrop {
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-border-style: solid;
      --tw-font-weight: initial;
      --tw-tracking: initial;
      --tw-shadow: 0 0 #0000;
      --tw-shadow-color: initial;
      --tw-shadow-alpha: 100%;
      --tw-inset-shadow: 0 0 #0000;
      --tw-inset-shadow-color: initial;
      --tw-inset-shadow-alpha: 100%;
      --tw-ring-color: initial;
      --tw-ring-shadow: 0 0 #0000;
      --tw-inset-ring-color: initial;
      --tw-inset-ring-shadow: 0 0 #0000;
      --tw-ring-inset: initial;
      --tw-ring-offset-width: 0px;
      --tw-ring-offset-color: #fff;
      --tw-ring-offset-shadow: 0 0 #0000;
      --tw-blur: initial;
      --tw-brightness: initial;
      --tw-contrast: initial;
      --tw-grayscale: initial;
      --tw-hue-rotate: initial;
      --tw-invert: initial;
      --tw-opacity: initial;
      --tw-saturate: initial;
      --tw-sepia: initial;
      --tw-drop-shadow: initial;
      --tw-drop-shadow-color: initial;
      --tw-drop-shadow-alpha: 100%;
      --tw-drop-shadow-size: initial;
      --tw-backdrop-blur: initial;
      --tw-backdrop-brightness: initial;
      --tw-backdrop-contrast: initial;
      --tw-backdrop-grayscale: initial;
      --tw-backdrop-hue-rotate: initial;
      --tw-backdrop-invert: initial;
      --tw-backdrop-opacity: initial;
      --tw-backdrop-saturate: initial;
      --tw-backdrop-sepia: initial;
      --tw-ease: initial;
    }
  }
}

@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --color-red-500: oklch(63.7% .237 25.331);
    --color-amber-400: oklch(82.8% .189 84.429);
    --color-yellow-500: oklch(79.5% .184 86.047);
    --color-green-400: oklch(79.2% .209 151.711);
    --color-green-500: oklch(72.3% .219 149.579);
    --color-sky-400: oklch(74.6% .16 232.661);
    --color-purple-400: oklch(71.4% .203 305.504);
    --color-gray-400: oklch(70.7% .022 261.325);
    --color-white: #fff;
    --spacing: .25rem;
    --text-sm: .875rem;
    --text-sm--line-height: calc(1.25 / .875);
    --text-5xl: 3rem;
    --text-5xl--line-height: 1;
    --font-weight-light: 300;
    --font-weight-bold: 700;
    --tracking-wider: .05em;
    --radius-md: .375rem;
    --ease-in: cubic-bezier(.4, 0, 1, 1);
    --ease-out: cubic-bezier(0, 0, .2, 1);
    --ease-in-out: cubic-bezier(.4, 0, .2, 1);
    --default-transition-duration: .15s;
    --default-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}

@layer base {
  *, :after, :before, ::backdrop {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  ::file-selector-button {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  html, :host {
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    line-height: 1.5;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }

  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }

  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }

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

  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    -webkit-text-decoration: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }

  b, strong {
    font-weight: bolder;
  }

  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }

  small {
    font-size: 80%;
  }

  sub, sup {
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
    position: relative;
  }

  sub {
    bottom: -.25em;
  }

  sup {
    top: -.5em;
  }

  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }

  :-moz-focusring {
    outline: auto;
  }

  progress {
    vertical-align: baseline;
  }

  summary {
    display: list-item;
  }

  ol, ul, menu {
    list-style: none;
  }

  img, svg, video, canvas, audio, iframe, embed, object {
    vertical-align: middle;
    display: block;
  }

  img, video {
    max-width: 100%;
    height: auto;
  }

  button, input, select, optgroup, textarea {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }

  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }

  ::file-selector-button {
    margin-inline-end: 4px;
  }

  ::placeholder {
    opacity: 1;
  }

  @supports (not ((-webkit-appearance: -apple-pay-button))) or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentColor;
    }

    @supports (color: color-mix(in lab, red, red)) {
      ::placeholder {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }

  textarea {
    resize: vertical;
  }

  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }

  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }

  ::-webkit-datetime-edit {
    display: inline-flex;
  }

  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }

  ::-webkit-datetime-edit {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-year-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-month-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-day-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-hour-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-minute-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-second-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-millisecond-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }

  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }

  :-moz-ui-invalid {
    box-shadow: none;
  }

  button, input:where([type="button"], [type="reset"], [type="submit"]) {
    appearance: button;
  }

  ::file-selector-button {
    appearance: button;
  }

  ::-webkit-inner-spin-button {
    height: auto;
  }

  ::-webkit-outer-spin-button {
    height: auto;
  }

  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}

@layer components;

@layer utilities {
  .visible {
    visibility: visible;
  }

  .absolute {
    position: absolute;
  }

  .relative {
    position: relative;
  }

  .static {
    position: static;
  }

  .container {
    width: 100%;
  }

  @media (min-width: 40rem) {
    .container {
      max-width: 40rem;
    }
  }

  @media (min-width: 48rem) {
    .container {
      max-width: 48rem;
    }
  }

  @media (min-width: 64rem) {
    .container {
      max-width: 64rem;
    }
  }

  @media (min-width: 80rem) {
    .container {
      max-width: 80rem;
    }
  }

  @media (min-width: 96rem) {
    .container {
      max-width: 96rem;
    }
  }

  .m-0 {
    margin: calc(var(--spacing) * 0);
  }

  .m-3 {
    margin: calc(var(--spacing) * 3);
  }

  .mx-2 {
    margin-inline: calc(var(--spacing) * 2);
  }

  .mx-auto {
    margin-inline: auto;
  }

  .my-4 {
    margin-block: calc(var(--spacing) * 4);
  }

  .mt-1 {
    margin-top: calc(var(--spacing) * 1);
  }

  .mt-2 {
    margin-top: calc(var(--spacing) * 2);
  }

  .mt-3 {
    margin-top: calc(var(--spacing) * 3);
  }

  .mt-4 {
    margin-top: calc(var(--spacing) * 4);
  }

  .mt-5 {
    margin-top: calc(var(--spacing) * 5);
  }

  .mr-2 {
    margin-right: calc(var(--spacing) * 2);
  }

  .mr-4 {
    margin-right: calc(var(--spacing) * 4);
  }

  .mb-0 {
    margin-bottom: calc(var(--spacing) * 0);
  }

  .mb-1 {
    margin-bottom: calc(var(--spacing) * 1);
  }

  .mb-2 {
    margin-bottom: calc(var(--spacing) * 2);
  }

  .mb-3 {
    margin-bottom: calc(var(--spacing) * 3);
  }

  .mb-4 {
    margin-bottom: calc(var(--spacing) * 4);
  }

  .mb-5 {
    margin-bottom: calc(var(--spacing) * 5);
  }

  .ml-2 {
    margin-left: calc(var(--spacing) * 2);
  }

  .ml-3 {
    margin-left: calc(var(--spacing) * 3);
  }

  .block {
    display: block;
  }

  .flex {
    display: flex;
  }

  .grid {
    display: grid;
  }

  .hidden {
    display: none;
  }

  .inline {
    display: inline;
  }

  .inline-flex {
    display: inline-flex;
  }

  .w-1\/2 {
    width: 50%;
  }

  .w-1\/4 {
    width: 25%;
  }

  .w-3\/4 {
    width: 75%;
  }

  .w-auto {
    width: auto;
  }

  .w-full {
    width: 100%;
  }

  .flex-1 {
    flex: 1;
  }

  .flex-shrink {
    flex-shrink: 1;
  }

  .transform {
    transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
  }

  .resize {
    resize: both;
  }

  .flex-nowrap {
    flex-wrap: nowrap;
  }

  .flex-wrap {
    flex-wrap: wrap;
  }

  .items-center {
    align-items: center;
  }

  .justify-center {
    justify-content: center;
  }

  .gap-2 {
    gap: calc(var(--spacing) * 2);
  }

  .gap-3 {
    gap: calc(var(--spacing) * 3);
  }

  .rounded {
    border-radius: .25rem;
  }

  .rounded-md {
    border-radius: var(--radius-md);
  }

  .border {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }

  .border-0 {
    border-style: var(--tw-border-style);
    border-width: 0;
  }

  .bg-white {
    background-color: var(--color-white);
  }

  .p-0 {
    padding: calc(var(--spacing) * 0);
  }

  .p-1 {
    padding: calc(var(--spacing) * 1);
  }

  .p-2 {
    padding: calc(var(--spacing) * 2);
  }

  .p-3 {
    padding: calc(var(--spacing) * 3);
  }

  .p-4 {
    padding: calc(var(--spacing) * 4);
  }

  .px-2 {
    padding-inline: calc(var(--spacing) * 2);
  }

  .px-4 {
    padding-inline: calc(var(--spacing) * 4);
  }

  .py-4 {
    padding-block: calc(var(--spacing) * 4);
  }

  .pt-0 {
    padding-top: calc(var(--spacing) * 0);
  }

  .pt-2 {
    padding-top: calc(var(--spacing) * 2);
  }

  .pt-3 {
    padding-top: calc(var(--spacing) * 3);
  }

  .pt-4 {
    padding-top: calc(var(--spacing) * 4);
  }

  .pt-5 {
    padding-top: calc(var(--spacing) * 5);
  }

  .pr-0 {
    padding-right: calc(var(--spacing) * 0);
  }

  .pr-1 {
    padding-right: calc(var(--spacing) * 1);
  }

  .pr-2 {
    padding-right: calc(var(--spacing) * 2);
  }

  .pr-4 {
    padding-right: calc(var(--spacing) * 4);
  }

  .pb-0 {
    padding-bottom: calc(var(--spacing) * 0);
  }

  .pb-3 {
    padding-bottom: calc(var(--spacing) * 3);
  }

  .pb-4 {
    padding-bottom: calc(var(--spacing) * 4);
  }

  .pb-5 {
    padding-bottom: calc(var(--spacing) * 5);
  }

  .pl-0 {
    padding-left: calc(var(--spacing) * 0);
  }

  .pl-4 {
    padding-left: calc(var(--spacing) * 4);
  }

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

  .text-left {
    text-align: left;
  }

  .text-right {
    text-align: right;
  }

  .text-5xl {
    font-size: var(--text-5xl);
    line-height: var(--tw-leading, var(--text-5xl--line-height));
  }

  .text-sm {
    font-size: var(--text-sm);
    line-height: var(--tw-leading, var(--text-sm--line-height));
  }

  .font-bold {
    --tw-font-weight: var(--font-weight-bold);
    font-weight: var(--font-weight-bold);
  }

  .font-light {
    --tw-font-weight: var(--font-weight-light);
    font-weight: var(--font-weight-light);
  }

  .tracking-wider {
    --tw-tracking: var(--tracking-wider);
    letter-spacing: var(--tracking-wider);
  }

  .text-amber-400 {
    color: var(--color-amber-400);
  }

  .text-gray-400 {
    color: var(--color-gray-400);
  }

  .text-green-400 {
    color: var(--color-green-400);
  }

  .text-green-500 {
    color: var(--color-green-500);
  }

  .text-purple-400 {
    color: var(--color-purple-400);
  }

  .text-red-500 {
    color: var(--color-red-500);
  }

  .text-sky-400 {
    color: var(--color-sky-400);
  }

  .text-white {
    color: var(--color-white);
  }

  .text-yellow-500 {
    color: var(--color-yellow-500);
  }

  .opacity-50 {
    opacity: .5;
  }

  .opacity-80 {
    opacity: .8;
  }

  .shadow, .shadow-sm {
    --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, #0000001a), 0 1px 2px -1px var(--tw-shadow-color, #0000001a);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .filter {
    filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
  }

  .backdrop-filter {
    -webkit-backdrop-filter: var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );
    backdrop-filter: var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );
  }

  .transition {
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  .ease-in {
    --tw-ease: var(--ease-in);
    transition-timing-function: var(--ease-in);
  }

  .ease-in-out {
    --tw-ease: var(--ease-in-out);
    transition-timing-function: var(--ease-in-out);
  }

  .ease-out {
    --tw-ease: var(--ease-out);
    transition-timing-function: var(--ease-out);
  }
}

@property --tw-rotate-x {
  syntax: "*";
  inherits: false
}

@property --tw-rotate-y {
  syntax: "*";
  inherits: false
}

@property --tw-rotate-z {
  syntax: "*";
  inherits: false
}

@property --tw-skew-x {
  syntax: "*";
  inherits: false
}

@property --tw-skew-y {
  syntax: "*";
  inherits: false
}

@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}

@property --tw-font-weight {
  syntax: "*";
  inherits: false
}

@property --tw-tracking {
  syntax: "*";
  inherits: false
}

@property --tw-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-shadow-color {
  syntax: "*";
  inherits: false
}

@property --tw-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}

@property --tw-inset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-inset-shadow-color {
  syntax: "*";
  inherits: false
}

@property --tw-inset-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}

@property --tw-ring-color {
  syntax: "*";
  inherits: false
}

@property --tw-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-inset-ring-color {
  syntax: "*";
  inherits: false
}

@property --tw-inset-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-ring-inset {
  syntax: "*";
  inherits: false
}

@property --tw-ring-offset-width {
  syntax: "<length>";
  inherits: false;
  initial-value: 0;
}

@property --tw-ring-offset-color {
  syntax: "*";
  inherits: false;
  initial-value: #fff;
}

@property --tw-ring-offset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-blur {
  syntax: "*";
  inherits: false
}

@property --tw-brightness {
  syntax: "*";
  inherits: false
}

@property --tw-contrast {
  syntax: "*";
  inherits: false
}

@property --tw-grayscale {
  syntax: "*";
  inherits: false
}

@property --tw-hue-rotate {
  syntax: "*";
  inherits: false
}

@property --tw-invert {
  syntax: "*";
  inherits: false
}

@property --tw-opacity {
  syntax: "*";
  inherits: false
}

@property --tw-saturate {
  syntax: "*";
  inherits: false
}

@property --tw-sepia {
  syntax: "*";
  inherits: false
}

@property --tw-drop-shadow {
  syntax: "*";
  inherits: false
}

@property --tw-drop-shadow-color {
  syntax: "*";
  inherits: false
}

@property --tw-drop-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}

@property --tw-drop-shadow-size {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-blur {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-brightness {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-contrast {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-grayscale {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-hue-rotate {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-invert {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-opacity {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-saturate {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-sepia {
  syntax: "*";
  inherits: false
}

@property --tw-ease {
  syntax: "*";
  inherits: false
}
/* material-icons-latin-400-normal */
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/fonts/material-icons-latin-400-normal.kAwBdRge.woff2) format('woff2'), url(/fonts/material-icons-latin-400-normal.B5tbEuci.woff) format('woff');
}/* oswald-cyrillic-ext-300-normal */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-display: swap;
  font-weight: 300;
  src: url(/fonts/oswald-cyrillic-ext-300-normal.uypPFyUW.woff2) format('woff2'), url(/fonts/oswald-cyrillic-ext-300-normal.Cu1hRHSJ.woff) format('woff');
  unicode-range: U+0460-052F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;
}

/* oswald-cyrillic-300-normal */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-display: swap;
  font-weight: 300;
  src: url(/fonts/oswald-cyrillic-300-normal.5qvSHf5j.woff2) format('woff2'), url(/fonts/oswald-cyrillic-300-normal.1KQhapC3.woff) format('woff');
  unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
}

/* oswald-vietnamese-300-normal */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-display: swap;
  font-weight: 300;
  src: url(/fonts/oswald-vietnamese-300-normal.CdoSkO8l.woff2) format('woff2'), url(/fonts/oswald-vietnamese-300-normal.BOujjSKd.woff) format('woff');
  unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;
}

/* oswald-latin-ext-300-normal */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-display: swap;
  font-weight: 300;
  src: url(/fonts/oswald-latin-ext-300-normal.BM4xff3m.woff2) format('woff2'), url(/fonts/oswald-latin-ext-300-normal.CO_aVDBw.woff) format('woff');
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

/* oswald-latin-300-normal */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-display: swap;
  font-weight: 300;
  src: url(/fonts/oswald-latin-300-normal.Cl0rPaJv.woff2) format('woff2'), url(/fonts/oswald-latin-300-normal.DLdBc7-y.woff) format('woff');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}/* oswald-cyrillic-ext-400-normal */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/fonts/oswald-cyrillic-ext-400-normal.DaQSmjrl.woff2) format('woff2'), url(/fonts/oswald-cyrillic-ext-400-normal.BkkDEomt.woff) format('woff');
  unicode-range: U+0460-052F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;
}

/* oswald-cyrillic-400-normal */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/fonts/oswald-cyrillic-400-normal.Dakd8U79.woff2) format('woff2'), url(/fonts/oswald-cyrillic-400-normal.BUD0W5Zj.woff) format('woff');
  unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
}

/* oswald-vietnamese-400-normal */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(data:font/woff2;base64,d09GMgABAAAAAA/kABAAAAAAKewAAA+DAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGoESG45OHIFKBmA/U1RBVC4AgwQRCAqmFKFyC4IWAAE2AiQDhAgEIAWERAeKGAwHG5olFeOYJbBxAIF/f8YE/18ncDoEspfpFY6A2La27VaF5oNYq90uYhtP9Wt9v/eGf8PBXiAyc1LFFCKDNzC14grrl6uXGOizO3FjBPVjvO7dvRCQSxyTcIAFAN35uuA6PhWuU6FIAqJM7uf5bfXnvoeAlNWgYj5xxEhoC7AwInFGjEIRmcx0dmfV3R+gE8V2GZOI4qUbDQiOF+BujW2r+4p45QiZkk1KhxRV9KX/3xvPo4CbzXhPGMkwnTrz489ZTSHx7QISqnOJEDEqfl/zfZcq2br4Rb9zwxIYgjwyNmHdNrV50JVNwOp/v9an7dt3ztT//ZdmAUCG/IAws5uwJLuO3uvXXf/u+/1pqqu2t0O0ANATnJoQkQRkm4qLMImQGxWjgbwjG6Fl4Fl9qvNAxem3QQRjtDqvSyl/8TsSMCwA7oexgdp/TntuEA9eEI4QSKhoSKwEiJACkiYHkqcQUqwe0qgN0q4L0m8ATs8AZ2SEQ3BgMTAXWAxBjBCyfjoD9IYYIGC6IGrY0ePpecC6/0rXPGAhAfojHAgY/L4bHfPA92gfC55fs5oBHIE0yRQBeekxyddmLWjIbCE0EiRF94rwMJC5i6M8MwuCSgyBmrp+uNuRwXib+scgnIdQwZMnOQuC0PolEBjPHvuPQgICFRod9a4cCgyN+1N9U69aemL/b48ar098umuvix3P0kU6TT/R0WR/7STZXGutLIcWypBPfdSxeWs1VFWVVB6FzFIk8hKqxEB8IZT8iIBQi46Ivbpr2RcDJzOIjAPbK2LsTbvHf8Zv+UN+lS9ocvx/czRHlAy8nVcVdJ5Pzlc6THtpu2z0aXWyNOdLMpg9VrRQi9QpVVDRpjmZDvJ4SqUnE6QQlXOSoPRFPCFnsfWJdioJfTCDUvevHr9A3+3REs/CHF+ExT6Cn+koui97vBmX42wcj4PO7ncAGSkqIA9LDIUY/FxAeF6XtKS814usMi7hIy9ryvOFX7DZTsRstmZlszWLnUzZCRk0UVftGuMSXpfUEHK2nb25izqVeMDvZE3KZmtSNrGJTWxiE5vsWI1HeZRGtWGCnfko7UpHukTJNGgEohb+rD8W/TUCvF7EG/Zel/inpdhmlXjDvhWIXU15WtvCllnWJu5gBTXSXsO9rr1fG8QCWPyhMFhW0gqsfhQ7OL876LHUfBl3WALd22PxWDzjnvE2Fjtds1MFnpKpWHt2Le6iWpdgb6T4D9feY60iYBi3ugxswy7szoHM5yiWsZIzuOTh16IAG9sCwk4ALJynjZRfqxthqJC+IRYYkEC8HHJ0dJO439rcbJYr6pG8Nvz+pp/0X+TQ+4YPhvUo0+d0ErfZ8rss4TBx/+7Erw06Q8/2dU/YfNFf0eBeZDkNYnvOWNvzhF3Zn+YMUoqw0nODFZy/tAKGec6yFSNGjDOZrRMSZWOxnhY7f5nKGFMi2mCDbGCW0q3YinGmWRKMmKxVQI7iS7pXLed+RQR524K8dm2uFlimBqLtizcqKux+jiCdB/1cmceIHG+eCuRQiVoL/EwwzimCFIPNaUGjaAwWf8zAiBFhNj8Zlt5NPlJcibWsQE5kEXDGPnBcFJFSk/FrwQV907f6wdfbBXfNWvvGOHbnNZN2Rf9a6DVAHi4CWAuHIFQIWAgBK2FP3dXUhQBIOJCBo7Ug3wJIoCTCywkptLrHjbyRkDAXy+x1jx/BLoKjOfbF2UI4CbfGuatnvev9EUi/CIZsIyiaYm+cKcAnQoX3fscW+b3bky1D9+1nl8o8wUXw5XsQ5LWX88TmzZcfwPr2f2ApQraUvBSK1iZAlTDN+hmwpLKhYE2OLglDMqYUNIlIRMgkKKSoZKyIuVBzlc1NDntpHGVwkslZFgfpPBXwkM9PBX+VOIr5KOWrDFc5byUCgT11gYZQE1fja4vJElBGUVCVNBUkZ5kyTdhmLs3DQ1B/ZAMwAYiFwG6QT4HaAya/DmovQMIalSuLwuB0d7jE0K/TTzhYVs5nc5vJXRUMWhZjDnpLg0TF1/3oaE9OTi6Gj/u3hw8Q2dh9frpaILr44ErO9e/566/17MCJkzPnFG5/sN3v9vCCJ43qZ5jCKsOiCQEmc04R7a3QFvkiNaCDWuINDQgOg02VEm1RitTd1qvFK60LHtTEMruwg2yauGVtr1T+EzK7xGSGuQn11eOi/sqppGpUKwmguGW1eLPZpFF3OVP/cbd6Xc9fk0kDctO1riHv/MWnDlYGg0Aqyn+T/NOO7XY3osqBslj7SzPmKqSUk9VN4+tpZKzB/eCS2/XWGUAHWTJsvQP7Ry5p57HitJzGsZSzzezLrHJoYXKTtbnd4lAs5C5eSn3/Ndv0KN5G/YbTYf6KvH1aMWiPQcuIsEzwyyoRn03W2ojMI3U2W28KWvJz1qbTVuL/7s1Uxl9tNfqdY9nfsQUN/7PdtUm5cQlzh+9JnkHPCd5v+SaiESFYOzb6rWOpbU9+lzfxhPxJtod/Lg4afRoy3KSkyapeexhd1f7C9C4j/QWUEFPE6uKgniBwoD0g5tJMhMZv7FDAWLTnksRWkC3ky/j150oaY0Lm5hAFId11wvwUtUQsoZXKKBKbjNwEoZ1QJgQJkZD3GeOA+kDwWDYkE20EMKk51ZLgHnWkmuioEubkVIqIdnVUFtFdKc0uCjXbyENrQ22k/w8N/croTW9O/g3YUIvKk32G8t1a2VHM/C/D+P/j1Ci2xi0/+jcvS4Yb7NP05oHF/YtbTtHZsJLiG/PCN4ar/CrH/3/BXP1iN+cDF928mnFUmVtSVJBaXkz18FHZ14QNO6xbTim1PVcQc3DVDVaAG3cL3KAoU1uGtXInrTBR4DXru1wr0Co0CoFAcETjz32Ecm3caQNP2Y7+bikRB4Ko0osw4ZKUUZ4NaQszvOpVkXJlksBJmxX2TRd3bETvuni5F7fJuVBZu7VqIMpPu9TD/cjWCBDJNfKWLVqN1nlyMDupMpJdKTsqY1cujpZKFRvn89tgSSZngcr7ko9yIYezUelzyVu1AZZSfHO/9TRrLnLsPe3r2P/XyDXx11P8gbc2J3Ayws76ZUfnz60ZZ1RnWpdVL/tDdR595J5y6Fa2Ihs419ta21zbJwXX9nkPNXEPwaM9wTptLwbDioSMBDH+nX/A91xJgvfTFNJueB4tdLZDLiK2hcd2W9LrZPenq5B97j2sTsruygAGXMbjHZx83BnrH8Q0Exy7SbbXp+5gbR1HY3f558qSpTKIPtPe2g54YqCkW9PSzbg617GIG9iSmLWke84PFiJpLmXbHJzuOdLmH4hxjHIIORYaJONty+/Olbr87XMLtmcL6wR1NxqjOsqzOqIB5sYsJ+qiN49v9wa8jPTur+YA2fJKcLi4hcfmDbDNEDDFgCk/udWDpovn390WRlPZxgU0LizSIP00TW8qGq64yJRgqWPsDxYbKi0x3aGt2weGyG5mtsAOFh6HXZA11C8a2GKo06fUAD25L53M+DzP5HkQ7uYXswcvCpaZXaMQo+2CLBYbbb6k6Oj7Im3dPqWGqmWRaUThDJxWSMby0FxXaW4A+og3HtuCx7a+O85wHOYthma2Ssby0FxXaW6gSL+ryzHTjP6EdLtkGg1Az4Jpg8bIzw+uUU1GsoqM5hcGDBqlMOpFCJqNdu9aGhrJuPklhl2780sGHoHAFCMVkck1M8MUhIas5pcEwMQmqIKsIavQ29xrlGd8zOZ5xQbWR0Wj8gSKMBGEhqybXxKACZ5AUZA1ZHXYsH94i5arG2AOKxsr6yoboI8a+vILo6WGYcMRxlvMeM1eaGVjZV1lQ16fFdZWG0NcrTNSanD1n+pAJS9N36733PBeH4AFID4e3jauP385i7yqUQAuuptPyikkcR4fWDzk19Eb7c2BKASQyN+IJJaBOh2gNzXyPtrKc5hcRPhRgC50law9LsbjecBvrf0dzd+c3+nkDDE+i36uD74XPys5Cif1Eu3NIdwNUKDLepPF5AMSV3GafF+Edaa9ETA6w6pL1ZRkfaMIiFzr85me0eqYKKIFKAwI2Kcrt85ER1nTrka1b8A4nz7qeRXk2VkOimbInVrTcTUXp0oSsRDkG5WQONWVs9IpjTyqaxEdfk5h1DBeV3yiJ3GsqMAFvo1n6JfENOEx4bsqwEv15ax8Zj7qtW0tKu64motTJSSmGay0cWTI5o8rvghJjCm3zkxbieVqzUehclnfKMTMJ6NlzCdybBsGiL9JPgSM5RefKZD+ko3wfyqO/wDv/7L3BuCrL74/3C2tTvW4CEyGAQR4Jaw7b6Va7nQVkEn7s4nHiZL8YkE7h8aOXbaQjDHjmLNztu/v0gN/f3PEHXK+NPOA38btCH5iRw7N4Fv7WIxt38Bs3y/jGN7+vypilksxpvgW+ji8KdBd3dff9GC39F5nTfWo5zfo3A2/CGBCJFwxEmRiy3+t6Ybg0LAGcCs8dQrCCNspGFZgU3AR/juFxNPFKVYKVAg5hnwySwzGeghgJsDivZ+pECMuFUvM23Ru/Npg0tGxSWCakvEqmZHbJFWoiFDi3J/1LWbk1syKpxBqe8DFFgqeqRfc1ExKqEg0MgRSXYlF5gShMPMJktlkKpUsxC1ZmmKQwsYhtsj3zGWkzEwK4XmZO6d71KybLexMCWMb01PqqSUKCDFIngLidYaSu9LaQoYL1im2OIWtOD2uUlI7tRU2TS5e8MnlVChDfQpJvE656FTU50VjZ9aIxSfU7ZkcZvci/CeeADZ6vM9gJrPFarM7nC63x+sriC079hw4cuLMJR5XbtyL4MGTFzYObz58cfnxFyCwOEGCEULwhJojDD+hcBEiRZVEFyNWnHgJBIRExCSksN0UCMrhYrp6+qX3mMrQqBzXbty6c+/BoyfPXrx6816RD5++fPvx64/Hr0wgxEXhfolUJlcoVYSxiamZuYWllbWNLVGA/Slf8qNFlSIXu7YvMQCh5LQ8BoUBCxhwOwU4wVR48+3l3JgaAELJaX2JBZyjfSle3wL9eVqExyJ2ILCgQAt3C7q+e3ibiGmVyuFOtwwauXEELbTUOHzuYjRndbI0cES5ogueD/ONmQbe/7vJcHNk2CtZwDtbwGACQYUeAgcmbBCgsE+OxdQECGpO70tskJzTl5Ir2SA9P4BgQ4UOE041OxQgUOGAAUGvNg8XsIFA4MzEwGImHWxg+t2eEUIM9+jDQSiq2D9BhdZJKfv1KJeeeMFi7gSZXuNkB5lgLe0iESL/9NUu4VqInIdi/uErvYjOtqLasyOvGMImpRgVw772uf76lmbZhsia/yzqjAEA) format('woff2'), url(/fonts/oswald-vietnamese-400-normal.BupuUjkp.woff) format('woff');
  unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;
}

/* oswald-latin-ext-400-normal */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/fonts/oswald-latin-ext-400-normal.DbVOzfr-.woff2) format('woff2'), url(/fonts/oswald-latin-ext-400-normal.KcyBFdGH.woff) format('woff');
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

/* oswald-latin-400-normal */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/fonts/oswald-latin-400-normal.BAFo8sP8.woff2) format('woff2'), url(/fonts/oswald-latin-400-normal.D1wpMXgf.woff) format('woff');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}/* oswald-cyrillic-ext-700-normal */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url(/fonts/oswald-cyrillic-ext-700-normal.CtkJES1U.woff2) format('woff2'), url(/fonts/oswald-cyrillic-ext-700-normal.VKAui8kQ.woff) format('woff');
  unicode-range: U+0460-052F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;
}

/* oswald-cyrillic-700-normal */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url(/fonts/oswald-cyrillic-700-normal.BO0IwMyy.woff2) format('woff2'), url(/fonts/oswald-cyrillic-700-normal.DxuP1Pb9.woff) format('woff');
  unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
}

/* oswald-vietnamese-700-normal */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url(/fonts/oswald-vietnamese-700-normal._DkZZ6ID.woff2) format('woff2'), url(/fonts/oswald-vietnamese-700-normal.BxFoeH7J.woff) format('woff');
  unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;
}

/* oswald-latin-ext-700-normal */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url(/fonts/oswald-latin-ext-700-normal.BKErdSR5.woff2) format('woff2'), url(/fonts/oswald-latin-ext-700-normal.CJSSDThd.woff) format('woff');
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

/* oswald-latin-700-normal */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url(/fonts/oswald-latin-700-normal.vy6hmKSr.woff2) format('woff2'), url(/fonts/oswald-latin-700-normal.UmC9Ev9x.woff) format('woff');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}