
.loadermw-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.loadermw-logo {
  width: 160px;
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
}

.loadermw-title {
  font-size: 80px;
  font-weight: 200;
  color: #000000;
  margin: 0 0 10px 0;
  text-align: center;
  padding: 0 20px;
}

.loadermw-subtitle {
  font-size: 16px;
  color: #000000;
  margin: 0 0 20px 0;
  text-align: center;
  padding: 0 20px;
}

.loadermw-version {
  font-size: 12px;
  color: #000000;
  margin: 0 0 20px 0;
  opacity: 0.7;
}

.loadermw-loader {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #af1e25;
  border-radius: 50%;
  animation: loadermw-spin 1s linear infinite;
}

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

/* Responsive design */
@media (max-width: 768px) {
  .loadermw-title {
    font-size: 70px;
  }
  
  .loadermw-subtitle {
    font-size: 14px;
  }
  
  .loadermw-logo {
    width: 120px;
  }
}

a:link{
	color:#000;
	text-decoration:none;
}
a:visited{
	color:#000;
	text-decoration:none;
}

  .modal {
    display: none; /* Unsichtbar */
    position: fixed; /* Fixiert im Viewport */
    z-index: 1000; /* Über anderen Elementen */
    left: 0;
    top: 0;
    width: 100%; /* Vollbild */
    height: 100%; /* Vollbild */
    overflow: auto; /* Bei Bedarf Scrollen */
    background-color: rgba(0, 0, 0, 0.5); /* Halbtransparenter Hintergrund */
  }

  /* Inhalt des Modals */
  .modal-content {
    background-color: #fff;
    margin: 10% auto; /* Zentriert das Fenster vertikal und horizontal */
    padding: 20px;
    border-radius: 8px;
    max-width: 500px; /* Maximalbreite */
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  }

  /* Schließen Button */
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }

  .close:hover,
  .close:focus {
    color: #000;
    text-decoration: none;
  }