.contact-modal-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}
.contact-modal-content {
  background: #fff;
  width: 50%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  padding: 40px;
  box-sizing: border-box;
  overflow-y: auto;
}
@media (max-width: 768px) {
  .contact-modal-content {
    width: 100%;
  }
}
.close-modal {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

/* Absenden Button WPForms */
.contact-form .wpforms-submit {
  background-color: #2208E9 !important;
  color: white !important;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 50px;
}
.contact-form .wpforms-submit:hover {
  opacity: 0.9;
}
