@charset "UTF-8";

.wfp-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.wfp-col-full {
  grid-column: 1 / -1;
}

.wfp-section-title {
  grid-column: 1 / -1;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 1024px) {
  .wfp-row {
    grid-template-columns: 1fr !important;
  }
}

#wfp-form input[type="text"],
#wfp-form input[type="email"],
#wfp-form input[type="tel"],
#wfp-form select,
#wfp-form input[type="textarea"],
#wfp-form input[type="search"],
#wfp-form input[type="number"],
#wfp-form input[type="password"],
#wfp-form input[type="date"]{
    padding: 0.5rem 0.25rem;
    width: calc(100% - 0.5rem);
    font-size: var(--wp--preset--font-size--default);
    border-radius: 0;
    border:0;
    border-bottom: 2px solid var(--wp--preset--color--primary);
    background: transparent;
}

#wfp-form label {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

#wfp-form a {
  color: var(--wp--preset--color--primary);
  text-decoration: underline;
}

.wfp-form-wrap {
  position: relative;
}

/* Dim the form and block interaction while the submission is in flight. */
#wfp-form.is-submitting {
  opacity: 0.7;
  pointer-events: none;
}

.wfp-spinner[hidden] {
  display: none;
}

.wfp-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3rem;
  height: 3rem;
  margin: -1.5rem 0 0 -1.5rem;
  border: 4px solid var(--wp--preset--color--primary, #000);
  border-top-color: transparent;
  border-radius: 50%;
  animation: wfp-spin 0.8s linear infinite;
  z-index: 1;
}

@keyframes wfp-spin {
  to { transform: rotate(360deg); }
}

#wfp-form-message {
  position: relative;
  text-align: center;
  padding: 6.5%;
}

#wfp-form-message::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(https://www.miraculum-escape.de/wp-content/themes/miraculum/assets/img/deco-tr.svg), url(https://www.miraculum-escape.de/wp-content/themes/miraculum/assets/img/deco-br.svg);
  background-position: top right, bottom right;
  background-repeat: no-repeat;
  background-size: 10%;
  z-index: 0;
}
#wfp-form-message::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(https://www.miraculum-escape.de/wp-content/themes/miraculum/assets/img/deco-tl.svg), url(https://www.miraculum-escape.de/wp-content/themes/miraculum/assets/img/deco-bl.svg);
  background-position: top left, bottom left;
  background-repeat: no-repeat;
  background-size: 10%;
  z-index: 0;
}