@charset "UTF-8";
/* CSS Document */
#popupMessage {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) scale(0.95);
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(10px);
  color: #333;
  padding: 5rem 1rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  opacity: 0;
  transition: all 0.4s ease;
	text-align: center;
	width:90%;
  max-width: 430px;
	font-weight: 500;
}

#popupMessage.show {
  display: block;
  opacity: 1;
  transform: translateX(-50%) scale(1);
}


/* Schließen-Button */
#popupMessage .close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem !important;
	font-weight: 200;
  cursor: pointer;
	outline: inherit;
	background: none;
	color: inherit;
   border: none;
   padding: 0;
   font: inherit;
}

