.form-popup {
  border-width: 0;
  max-width: 400px;
  max-height: 709px;
  padding: 0;
  position: fixed;
  z-index: 8000;
  -webkit-animation: fadeIn 0.5s;
  animation: fadeIn 0.5s;
  border: 3px solid var(--avixa-red, #ee3353);
}
:where(.sfPageEditorWrp) .form-popup {
  display: none;
}

.form-popup[data-submitted=true] {
  height: 500px;
  width: 400px;
}
.form-popup[data-alignment=TopLeft] {
  top: var(--header-height, 116px);
  left: 0;
  margin-left: 0;
}
.form-popup[data-alignment=TopCenter] {
  top: var(--header-height, 116px);
}
.form-popup[data-alignment=TopRight] {
  top: var(--header-height, 116px);
  right: 0;
  margin-right: 0;
}
.form-popup[data-alignment=CenterLeft] {
  left: 0;
  margin-left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.form-popup[data-alignment=Center] {
  top: 50%;
  left: 50%;
  transform: translate(-100%, -50%);
}
.form-popup[data-alignment=CenterRight] {
  right: 0;
  margin-right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.form-popup[data-alignment=BottomLeft] {
  left: 0;
  margin-left: 0;
  bottom: 0;
}
.form-popup[data-alignment=Bottom] {
  bottom: 0;
}
.form-popup[data-alignment=BottomRight] {
  bottom: 0;
  right: 0;
  margin-right: 0;
}
@media (width < 768px) {
  .form-popup {
    display: none;
  }
}

.form-popup-image {
  max-height: 125px;
  width: 100%;
  object-fit: cover;
}

.form-popup-form {
  background-color: var(--avixa-eggplant, #3f1833);
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 35px;
  padding-right: 35px;
  position: relative;
}
[data-submitted=true] .form-popup-form {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.form-popup-close-button {
  display: inline-block;
  border: none;
  margin: 0;
  background-color: rgba(0, 0, 0, 0);
  text-decoration: none;
  font-family: sans-serif;
  cursor: pointer;
  text-align: center;
  transition: background 250ms ease-in-out, transform 150ms ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(../svg/togglericoncrosswhite.svg);
  background-size: contain;
  width: 17.15px;
  height: 17.15px;
  position: absolute;
  top: 12.5px;
  right: 12.5px;
}

.form-popup-close-button-accessible-text {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-popup-title {
  color: white;
  font-family: "Euclid-bold", Calibri, Arial, sans-serif;
  font-size: 22px;
}
[data-submitted=true] .form-popup-title {
  display: none;
}

.form-popup-text {
  font-family: "Euclid", Calibri, Arial, sans-serif;
  font-size: 12px;
  line-height: 24px;
  color: white;
  margin-bottom: 12px;
}
[data-submitted=true] .form-popup-text {
  display: none;
}

.form-popup-form-container {
  width: 100%;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*# sourceMappingURL=FormPopup.css.map */
