.elementor-240 .elementor-element.elementor-element-041ecbd{--display:flex;}.elementor-240 .elementor-element.elementor-element-70e391f{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-cbb2a56 */.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* Schwarzer Hintergrund */
  backdrop-filter: blur(10px);
  display: flex; /* Popup zentrieren */
  flex-direction: column; /* Ermöglicht vertikales Layout */
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.forgot-password:hover {
    color: white;
    font-weight: bold;
}


#auth-container.popup.active {
    height: auto !important;
}

/* Login Button */
/*
#choose-login {
    background-color: #2C3F3F;
}
*/

/* Popup */
.popup {
  position: relative;
  width: 60%; /* Standard-Breite */
  max-width: 400px; /* Maximale Breite */
  background: rgba(51, 51, 51, 1) !important;
  /* background: #2C3F3F !im; /* Hintergrundfarbe */
  border: 2px solid #AA8E5F; /* Rahmenfarbe */
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  padding: 30px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  opacity: 0;
  overflow: hidden; /* Verhindert Überlauf bei Übergängen */
}

.popup.active {
  transform: translateY(0);
  opacity: 1;
}

/* Popup Content */
.popup-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  transform: translateX(100%);
  width: 100%;
  gap: 20px; /* Abstand zwischen den Elementen */
}

.popup-content.active {
  opacity: 1;
  transform: translateX(0);
}

.popup-content.hidden {
  display: none;
}

/* Swipe-Ausgang */
.popup-content.exit-left {
  transform: translateX(-100%);
  opacity: 0;
}

.popup-content.exit-right {
  transform: translateX(100%);
  opacity: 0;
}

/* Überschrift */
.popup-content h2 {
  color: white; /* Textfarbe */
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}

/* Eingabefelder */
form input {
  width: 100%;
  max-width: 350px;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #AA8E5F; /* Rahmenfarbe */
  background: #2C3F3F; /* Hintergrundfarbe */
  color: #AA8E5F; /* Textfarbe */
  border-radius: 10px;
  font-size: 1rem;
  box-sizing: border-box;
}

/* Buttons */
.auth-button,
.auth-choice {
  padding: 10px 20px;
  font-size: 1rem;
  background: #AA8E5F; /* Hintergrundfarbe */
  color: #2C3F3F; /* Textfarbe */
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.auth-button:hover,
.auth-choice:hover {
  background: #876F4F; /* Hover-Farbe */
  transform: scale(1.05);
}

.button-group {
  display: flex;
  gap: 20px; /* Abstand zwischen Buttons */
}

/* Signature Styling */
.signature {
  margin-bottom: 20px; /* Abstand zur Überschrift */
  display: flex;
  justify-content: center;
  align-items: center;
}

.signature img {
  width: 200px; /* Bildbreite */
  border: 2px solid #AA8E5F; /* Rahmenfarbe der Signatur */
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.signature img:hover {
  transform: scale(1.1); /* Leichter Zoom beim Hover */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

/* Zurück-Buttons außerhalb des Popups */
.back-buttons {
  margin-top: 20px; /* Abstand vom Popup */
  display: flex;
  justify-content: center;
  gap: 20px; /* Abstand zwischen den Zurück-Buttons */
}

.back-button {
  padding: 10px 20px;
  font-size: 1rem;
  background: rgba(255, 0, 0, 0.8); /* Hintergrundfarbe für Zurück-Buttons */
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.back-button.hidden {
  display: none;
}

.back-button:hover {
  background: darkred;
  transform: scale(1.05);
}

/* Ladeanimation */
.loader {
  display: none;
  margin: 10px auto;
  border: 4px solid rgba(0, 0, 0, 0.2);
  border-left-color: #4CAF50;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Fehler- und Erfolgspopup */
.popup-message {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 69, 58, 0.95);
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999; /* Höchster Z-Index */
  font-weight: bold;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s;
}

.popup-message.success {
  background: rgba(76, 175, 80, 0.95);
}

.popup-message.fade-in {
  opacity: 1;
  visibility: visible;
}

.popup-message.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* Popup für Fehler */
.popup-error {
  display: none;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 69, 58, 0.95);
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  font-weight: bold;
}

.popup-success {
  display: none;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(76, 175, 80, 0.95);
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  font-weight: bold;
}


/* THEME COLORS TOGGLE */
/* Dark Mode Styling */
body.dark-mode .popup {
  background: rgba(0, 0, 0, 1) !important; /* Komplett schwarzes Popup */
  color: #AA8E5F; /* Goldene Schrift */
  border: none;
}

body.dark-mode .popup h2 {
    color: white;
}

body.dark-mode form input {
  background: rgba(51, 51, 51, 1); /* Dunkleres Grau */
  color: #AA8E5F; /* Goldene Schrift */
  border-color: #AA8E5F; /* Goldener Rahmen */
}

body.dark-mode .auth-button,
body.dark-mode .auth-choice {
  background: #2C3F3F; /* Dunkles Grün */
  color: #AA8E5F; /* Goldene Schrift */
}

body.dark-mode .auth-button:hover,
body.dark-mode .auth-choice:hover {
  /*! background: #876F4F; */ /* Dunkleres Gold beim Hover */
}

body.dark-mode h2 {
  color: #AA8E5F; /* Goldene Überschriften */
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6b1ad42 *//* Hauptcontainer */
#mainContainer {
  background-size: cover;
  background-position: center;
  transition: background 0.5s ease-in-out;
}

/* Sticky Miniaturansicht */
#background-sticky {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

#background-sticky img.thumbnail {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#background-sticky img.thumbnail:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

/* Slider Ansicht */
#background-slider {
  position: absolute;
  bottom: 90px;
  right: 0;
  width: 300px;
  height: 150px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}

#background-slider.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#background-slider img.slider-thumbnail {
  width: 70px;
  height: auto;
  margin: 0 10px;
  border-radius: 10px;
  opacity: 0.8;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

#background-slider img.slider-thumbnail.active {
  opacity: 1;
  transform: scale(1.5); /* Aktuelles Bild größer */
}

#background-slider img.slider-thumbnail:hover {
  opacity: 1;
}/* End custom CSS */
/* Start custom CSS for global, class: .elementor-global-215 *//* Sticky Rechts */
#sticky-right {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Settings Icon Button */
.settings-icon {
  background: rgba(0, 0, 0, 0.1); /* Transparenter schwarzer Hintergrund */
  backdrop-filter: blur(10px); /* Blur-Effekt auf den Hintergrund */
  -webkit-backdrop-filter: blur(10px); /* Safari-Kompatibilität */
  color: white;
  border: none;
  border-radius: 20% 0 0 20%; /* Abgerundet links, gerade rechts */
  width: 70px;
  height: 70px;
  font-size: 18px;
  cursor: pointer;
  /* Drop Shadow */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.settings-icon:hover {
  background: rgba(0, 0, 0, 0.6);
  transform: scale(1.1);
}

/* Settings Menu */
.settings-menu {
  position: absolute;
  top: 50%;
  right: 700%;
  transform: translateY(-50%) translateX(100%);
  width: 250px;
  /* background: white; */
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  padding: 20px;
  display: none; /* Standardmäßig versteckt */
  flex-direction: column;
  gap: 15px;
}

.settings-menu.active {
  display: flex; /* Anzeigen, wenn aktiv */
  animation: slide-in 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Slide-in Animation */
@keyframes slide-in {
  from {
    transform: translateY(-50%) translateX(120%);
  }
  to {
    transform: translateY(-50%) translateX(100%);
  }
}

/* Input Styling */
.settings-menu input[type="range"] {
  width: 100%;
}

.settings-menu input[type="text"] {
  width: 100%;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.settings-menu h3 {
    color: white;
}

.settings-menu label {
  font-size: 14px;
  color: white;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-70e391f */.elementor-240 .elementor-element.elementor-element-70e391f {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-41e2f1b */#resend_email_optin {
    background-color: yellow;
    color: black;
    border: none;
    margin: 20px 0px;
    margin-bottom: 10px;
}

.hiddenResent {
    display: none;
}

/* Overlay füllt den ganzen Bildschirm ab */
.loading-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.6);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; 
}
/* Standard: ausgeblendet */
.loading-overlay.hidden {
  display: none;
}
/* Modal in der Mitte */
.loading-modal {
  position: relative;
  background: #222; 
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.7);
  width: 300px;
}
/* X-Button zum manuellen Schließen */
.close-overlay-button {
  position: absolute;
  top: 5px; 
  right: 8px;
  background: transparent;
  color: #fff;
  font-size: 20px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}
/* Hover-Effekt */
.close-overlay-button:hover {
  transform: scale(1.2);
  color: #f00; 
}
/* Per JS auf "hidden" -> display: none */
.close-overlay-button.hidden {
  display: none;
}

/* Spinner */
.spinner {
  margin: 0 auto 20px auto;
  width: 40px; height: 40px;
  border: 5px solid #444;
  border-top: 5px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg);}
  100%{ transform: rotate(360deg);}
}
/* Text */
#loading-message {
  margin: 0;
  font-size: 1rem;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6b1ad42 *//* Hauptcontainer */
#mainContainer {
  background-size: cover;
  background-position: center;
  transition: background 0.5s ease-in-out;
}

/* Sticky Miniaturansicht */
#background-sticky {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

#background-sticky img.thumbnail {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#background-sticky img.thumbnail:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

/* Slider Ansicht */
#background-slider {
  position: absolute;
  bottom: 90px;
  right: 0;
  width: 300px;
  height: 150px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}

#background-slider.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#background-slider img.slider-thumbnail {
  width: 70px;
  height: auto;
  margin: 0 10px;
  border-radius: 10px;
  opacity: 0.8;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

#background-slider img.slider-thumbnail.active {
  opacity: 1;
  transform: scale(1.5); /* Aktuelles Bild größer */
}

#background-slider img.slider-thumbnail:hover {
  opacity: 1;
}/* End custom CSS */
/* Start custom CSS for global, class: .elementor-global-215 *//* Sticky Rechts */
#sticky-right {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Settings Icon Button */
.settings-icon {
  background: rgba(0, 0, 0, 0.1); /* Transparenter schwarzer Hintergrund */
  backdrop-filter: blur(10px); /* Blur-Effekt auf den Hintergrund */
  -webkit-backdrop-filter: blur(10px); /* Safari-Kompatibilität */
  color: white;
  border: none;
  border-radius: 20% 0 0 20%; /* Abgerundet links, gerade rechts */
  width: 70px;
  height: 70px;
  font-size: 18px;
  cursor: pointer;
  /* Drop Shadow */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.settings-icon:hover {
  background: rgba(0, 0, 0, 0.6);
  transform: scale(1.1);
}

/* Settings Menu */
.settings-menu {
  position: absolute;
  top: 50%;
  right: 700%;
  transform: translateY(-50%) translateX(100%);
  width: 250px;
  /* background: white; */
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  padding: 20px;
  display: none; /* Standardmäßig versteckt */
  flex-direction: column;
  gap: 15px;
}

.settings-menu.active {
  display: flex; /* Anzeigen, wenn aktiv */
  animation: slide-in 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Slide-in Animation */
@keyframes slide-in {
  from {
    transform: translateY(-50%) translateX(120%);
  }
  to {
    transform: translateY(-50%) translateX(100%);
  }
}

/* Input Styling */
.settings-menu input[type="range"] {
  width: 100%;
}

.settings-menu input[type="text"] {
  width: 100%;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.settings-menu h3 {
    color: white;
}

.settings-menu label {
  font-size: 14px;
  color: white;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-70e391f */.elementor-240 .elementor-element.elementor-element-70e391f {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
}/* End custom CSS */