@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
/*--------------------------------
# Type / Elements
--------------------------------*/
html {
  box-sizing: border-box;
  width: 100%;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-optical-sizing: auto;
  font-style: normal;
  margin: 0;
  padding: 0;
}

input[type=text], input[type=email], input[type=url], input[type=password], input[type=search], input[type=tel], textarea, select {
  background: #fff;
  border: 2px solid #3E0F6C;
  border-radius: 0;
  color: #3E0F6C;
  display: block;
  height: 2.5rem;
  padding: 0.5rem;
  transition: all 0.4s ease;
  width: 100%;
}
.error input[type=text], .error input[type=email], .error input[type=url], .error input[type=password], .error input[type=search], .error input[type=tel], .error textarea, .error select {
  border-color: #D4145A;
}
input[type=text]:focus, input[type=email]:focus, input[type=url]:focus, input[type=password]:focus, input[type=search]:focus, input[type=tel]:focus, textarea:focus, select:focus {
  border-color: #3E0F6C;
  color: #3E0F6C;
  outline: none;
}

textarea {
  height: auto;
  width: 100%;
}

input[type=checkbox] {
  background: #fff;
  border: 2px solid #3E0F6C;
  border-radius: 2px;
  margin-right: 0.5em;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px !important;
  height: 20px;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}
input[type=checkbox]:before {
  align-items: center;
  border-radius: 4px;
  color: #3E0F6C;
  content: "✔";
  display: flex;
  font-size: 1em;
  justify-content: center;
  height: 100%;
  opacity: 0;
  text-align: center;
  transition: all 0.3s ease;
  transform: scale(0);
  width: 100%;
}
input[type=checkbox]:checked:before {
  opacity: 1;
  transform: scale(0.7);
}

select[multiple] {
  height: auto;
  min-height: 4rem;
}

form.form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
form.form .form-field {
  flex-basis: 100%;
  margin: 0;
  padding: 0;
}
form.form .form-field.two-col, form.form .form-field.twocol, form.form .form-field.form-col-1, form.form .form-field.form-col-2 {
  flex-basis: calc(50% - 8px);
}
form.form .form-field.pd-checkbox label.field-label, form.form .form-field.pd-radio label.field-label {
  display: block;
}
form.form .form-field.pd-checkbox span.description, form.form .form-field.pd-radio span.description {
  display: block;
}
form.form .form-field.pd-checkbox span.value > span, form.form .form-field.pd-radio span.value > span {
  align-items: flex-start;
  display: flex;
}
form.form .form-field.pd-checkbox span.value > span label, form.form .form-field.pd-radio span.value > span label {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3em;
}
form.form label {
  color: #3E0F6C !important;
  float: none;
  line-height: 1.625em;
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 0;
  text-align: left;
  width: 100%;
}
.error form.form label {
  color: #D4145A !important;
}
form.form p {
  flex-basis: 100%;
}
form.form p.required label {
  background: none;
}
form.form p.errors {
  background: #C2ED78;
  flex-basis: 100%;
  margin: 0;
}
form.form p.error.no-label {
  flex-basis: 100%;
  margin: 0;
}
form.form p.submit {
  margin: 0;
}
form.form p.submit input {
  font-size: 1.25em;
}
form.form p.required label.field-label:after {
  color: #D4145A;
  content: "*";
  padding-left: 3px;
}
form.form p.pd-hidden {
  display: none !important;
}
form.form span.value {
  margin-left: 0;
}

p.submit {
  display: inline-block;
  padding: 0;
  position: relative;
  width: auto;
}
p.submit input {
  background: #C2ED78;
  border: 0;
  color: #3E0F6C;
  cursor: pointer;
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1em;
  padding: 20px 49px;
  transition: all 0.4s ease;
}
p.submit input:hover, p.submit input:focus {
  background: linear-gradient(90deg, #3E0F6C 0%, #AB309B 100%);
  color: #fff;
  text-decoration: none;
}

.no-iframe form.form {
  max-width: 880px;
  padding: clamp(2rem, 0.571rem + 3.81vw, 4rem) 20px;
}

@media (max-width: 565px) {
  form.form p.two-col, form.form p.twocol, form.form p.form-col-1, form.form p.form-col-2 {
    flex-basis: 100% !important;
  }
}
/*# sourceMappingURL=sf.min.css.map */