#cta_wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  align-items: center;
  justify-content: center;
  display: none;
  pointer-events: all;
  cursor: pointer;
}
.show_cta #cta_wrapper {
  display: flex;
}
#cta_pupup {
  --padding-top: 2.9rem;
  --padding-bottom: 2.5rem;
  --padding-sides: 2rem;
  position: relative;
  width: 320px;
  color: var(--color-grey);
  background-color: var(--color-white);
  cursor: auto;
  padding: var(--padding-top) var(--padding-sides) var(--padding-bottom);
  border-radius: .5em;
  box-shadow: 0 0 1em rgba(0, 0, 0, .25);
}
#cta_form {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}
#cta_pupup_close_btn {
  position: absolute;
  top: 1.2rem;
  right: 1.25rem;
  font-weight: 300;
  font-size: 1.9em;
  opacity: .5;
  line-height: 50%;
}


#cta_form_response.success {
  margin-top: 2rem;
  color: rgba(141, 200, 93, 1);
}
#cta_form_response.alert {
  margin-top: 2rem;
  color: rgba(243, 129, 75, 1)
}


#honeypot {
    position: absolute;
    left: -9999px;
}
