/* Backdrop-Stil */
.cf7-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999999999;
    display: none; /* Standardmäßig versteckt */
}

/* Modal-Stil */
.cf7-modal {
  position: fixed;
  top: 37%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  max-width: 900px;
  padding: 20px;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
  z-index: 99999999999;
  display: block;
  border-radius: 5px;
}

/* Modal-Inhalt-Stil */
.cf7-modal-content {
    margin-bottom: 20px; /* Abstand zum Schließen-Button */
}
.x-icon.close-cf7-modal {
  float: right;
  font-size: 27px;
  background: var(--link);
  width: 41px;
  position: absolute;
  right: 0;
  top: 0;
  height: 41px;
  color: #fff;
  border-top-right-radius:5px;
}
.x-icon.close-cf7-modal:hover {
  background: var(--brand_text);
}
/* Schließen-Button-Stil */
.cf7-modal button {
    display: block;
    margin: auto;
    padding: 10px 20px;
    cursor: pointer;
}
.close-cf7-modal {
  background: var(--link);
  border: 0px;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 500;
  float: right;
}
.close-cf7-modal:hover {
  background: var(--brand_text);
}

@media screen and (max-width:767px){
.cf7-modal {
  width: 95vw;
  top: 90px;
}
}