<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Standardmodal fÃ¼r grÃ¶ÃŸere GerÃ¤te */
.modal-dialog {
    max-width: 600px; /* StandardgrÃ¶ÃŸe fÃ¼r Desktop */
}
.modal-fullscreen .modal-dialog,
.modal-fullscreen .modal-content {
    border-radius: 0 !important;
}

/* Vollbildmodal fÃ¼r mobile GerÃ¤te */
@media (max-width: 767px) {
    .modal-fullscreen .modal-dialog {
        margin: 0 !important; /* Entfernt den Abstand oben mit hÃ¶chster PrioritÃ¤t */
        padding: 0 !important; /* Entfernt jegliches Padding mit hÃ¶chster PrioritÃ¤t */
        max-width: 100%;
        width: 100%;
        height: 100%;
        border-radius: 0 !important;
        position: fixed; /* Fixiert das Modal oben */
        top: 0 !important; /* Entfernt den Abstand oben mit hÃ¶chster PrioritÃ¤t */
        left: 0;
        z-index: 1050; /* Stellt sicher, dass das Modal oben bleibt */
    }

    .modal-fullscreen .modal-content {
        height: 100%;
        border-radius: 0 !important;
        display: flex;
        flex-direction: column; /* Stellt sicher, dass die Inhalte vertikal gestapelt sind */
        overflow: hidden; /* Verhindert Scrollen im Modal */
    }

    .modal-fullscreen .modal-body {
        padding: 20px;
        overflow-y: auto; /* ErmÃ¶glicht das Scrollen innerhalb des Modals, wenn nÃ¶tig */
        flex: 1; /* Nimmt den gesamten Platz innerhalb des Modals ein */
    }

    /* Verhindert Scrollen auf der Seite */
    body.modal-open {
        overflow: hidden; /* Verhindert das Scrollen der Seite */
    }

    /* Verhindert Scrollen auf der Modal-Seite */
    .modal-fullscreen {
        height: 100vh; /* Stellt sicher, dass das Modal die gesamte HÃ¶he des Bildschirms einnimmt */
        overflow: hidden; /* Verhindert Scrollen im gesamten Modal */
    }
}

/* OTHER */
/* Modal-Overlay */
.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease-out;
}
/* Modal-Box */
.modal-container {
  background: #121212;
  color: #e0e0e0;
  border-radius: 12px;
  padding: 1.5rem;
  max-width: 600px;   /* vorher 400px â€“ jetzt breiter auf Desktop */
  width: 80%;         /* statt 90% â€“ gibt etwas mehr Luft */
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  text-align: center;
  position: relative;
}

/* Ãœberschrift */
.modal-container h2 {
  margin: 0 0 20px;         /* 10px Abstand nach unten */
  font-size: 1.3125rem;     /* ~21px */
  color: #ccc;              /* dezenteres Grau */
}

/* Text */
.modal-container p {
  margin: 0 0 1rem;
  font-size: 0.875rem;      /* ~14px */
  line-height: 1.4;
  color: #aaa;              /* dunkleres Grau */
}

/* Button */
.modal-button {
  background-color: #e0e3ea;
  color: #000;
  border: none;
  border-radius: 6px;
  padding: 0.6rem 1.2rem;
  font-size: 0.95rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.1s ease-in-out;
}
.modal-button:hover {
  transform: translateY(-2px);
}

/* Close-Icon */
.modal-close {
  position: absolute;
  top: 0.6rem; right: 0.6rem;
  width: 1.2rem; height: 1.2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.modal-close:hover {
  opacity: 1;
}

/* Fade-In Animation */
@keyframes fadeIn {
  from { opacity: 0 }
  to   { opacity: 1 }
}

/* Mobile Anpassungen */
@media (max-width: 480px) {
  .modal-container {
    width: 95%;       /* mobil fast volle Breite fÃ¼r optimale Lesbarkeit */
    padding: 1rem;
  }
  .modal-container h2 {
    font-size: 1.1875rem;    /* ~19px */
  }
  .modal-container p {
    font-size: 0.8125rem;    /* ~13px */
  }
}

&lt;!--- PRELOADER ---&gt;
&lt;style&gt;
.preloader-gif {
    width: 30%;
    height: auto;
}

/* Desktop: kleiner anzeigen */
@media (min-width: 768px) {
    .preloader-gif {
        width: 30%;
    }
}

/* Optional: auf sehr groÃŸen Screens weiter verkleinern */
@media (min-width: 1440px) {
    .preloader-gif {
        width: 60%;
    }
}
/*MOBILE MODAL */
@media (max-width: 767px) {
    .modal-bottom-sheet .modal-dialog {
        position: fixed;
        bottom: -30px; /* direkt am unteren Bildschirmrand */
        left: 0;
        right: 0;
        margin: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        z-index: 1050;
        background: transparent;
        transform: none !important;
    }

    .modal-bottom-sheet .modal-content {
        border-radius: 20px 20px 0 0;
        height: auto;
        max-height: 50vh;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        background-color: #fff; /* oder Dark-Mode-Farbe */
    }
	
.modal-bottom-sheet .modal-content,
.modal-bottom-sheet .modal-dialog,
.modal-bottom-sheet .modal-body {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

    .modal-bottom-sheet .modal-body {
        padding: 15px;
        overflow-y: auto;
        flex: 1;
    }

    /* Kein dunkler Overlay-Hintergrund */
    .modal.modal-bottom-sheet {
        background: transparent !important;
    }

    /* Seite darf im Hintergrund gescrollt bleiben, falls gewÃ¼nscht */
    body.modal-open {
        overflow: auto !important;
    }
}</pre></body></html>