.formkit-page {
  font-family: var(--body-font-family);
  height: 100%;
  line-height: 1.5;
  min-height: 100vh;
  position: relative;
}

.formkit-wrapper {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  padding: 20px 20px;
}

a {
  color: inherit;
  text-decoration: underline;
  -webkit-transition: opacity 150ms linear;
  transition: opacity 150ms linear;
}

a:hover {
  opacity: 0.7;
}

button {
  font-family: var(--form-font-family);
}

button:focus {
  outline: 0;
}

.formkit-bg-image {
  background-position: center center;
  background-size: cover;
  bottom: 0;
  height: 100vh;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100vw;
  z-index: -1;
}

.formkit-bg-color {
  background-position: center center;
  background-size: cover;
  bottom: 0;
  height: 100vh;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100vw;
  z-index: -1;
}

.formkit-cards {
  -webkit-box-align: center;
          align-items: center;
  display: -webkit-box;
  display: flex;
  margin: 0 auto;
  position: relative;
}

.formkit-card {
  border-radius: 10px;
  margin: 0 auto;
  max-width: 560px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.formkit-card-top {
  -webkit-transition: opacity 350ms ease-in-out 150ms;
  transition: opacity 350ms ease-in-out 150ms;
}

.formkit-hidden {
  max-height: 0;
  max-width: 0;
  opacity: 0;
  pointer-events: none;
}

.formkit-card-top.formkit-hidden + .formkit-card-bottom {
  opacity: 1;
  max-height: initial;
  max-width: 560px;
  -webkit-transition: opacity 350ms ease-in-out 150ms;
  transition: opacity 350ms ease-in-out 150ms;
}

.formkit-form-image {
  max-height: 280px;
  position: relative;
}

.formkit-form-image img {
  background-position: center center;
  background-size: cover;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.formkit-form-image::after {
  background: var(--form_background-background-color);
  border: 0;
  bottom: 0;
  -webkit-clip-path: polygon(0 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 100%, 0% 100%);
  content: "";
  height: 56px;
  margin-bottom: -1px;
  position: absolute;
  right: 0;
  width: 100%;
}

.formkit-card-content {
  padding: 30px 25px;
}

.formkit-heading {
  font-family: var(--headings-font-family);
  font-size: calc(26px + (32 - 26) * ((100vw - 400px) / (850 - 400)));
  line-height: 1.2;
}

@media (min-width: 850px) {
  .formkit-heading {
    font-size: 2rem;
  }
}

.formkit-heading h1 {
  margin-bottom: 18px;
  margin-top: 0;
}

.formkit-heading h2 {
  margin-bottom: 18px;
  margin-top: 0;
}

.formkit-content {
  font-size: 1rem;
}

.formkit-content p {
  margin-bottom: 18px;
  margin-top: 0;
}

.formkit-signup {
  border: 0;
  cursor: pointer;
  display: -webkit-box;
  display: flex;
  font-size: 18px;
  -webkit-box-pack: center;
          justify-content: center;
  margin-top: 10px;
  padding: 20px 12px;
  -webkit-transition: all ease 300ms;
  transition: all ease 300ms;
  width: 100%;
}

.formkit-signup span {
  font-family: var(--form-font-family);
}

.formkit-signup:hover {
  opacity: 0.9;
}

.formkit-fields {
  font-family: var(--form-font-family);
  margin-top: 28px;
}

.formkit-field {
  margin-bottom: 15px;
}

.formkit-field input {
  padding: 14px;
}

[data-group="dropdown"] select {
  padding: 14px;
}

[data-group="checkboxes"] legend {
  color: inherit !important;
  font-size: 18px;
  padding-left: 0;
}

.formkit-checkboxes {
  background: transparent !important;
  color: inherit !important;
  font-size: 1rem !important;
}

.formkit-checkboxes label {
  color: inherit !important;
}

.formkit-submit {
  font-size: 18px;
  margin-bottom: 0;
  width: 100%;
}

.formkit-submit span {
  padding: 20px 12px;
  -webkit-transition: all ease 300ms;
  transition: all ease 300ms;
}

.formkit-disclaimer {
  font-family: var(--form-font-family);
  font-size: 12px;
  margin-top: 14px;
  text-align: center;
}

.formkit-disclaimer p {
  margin-bottom: 14px;
  margin-top: 0;
}

.formkit-exit {
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  display: -webkit-box;
  display: flex;
  font-size: 16px;
  height: 36px;
  -webkit-box-pack: center;
          justify-content: center;
  outline: 0;
  position: absolute;
  right: 30px;
  top: 30px;
  width: 36px;
  z-index: 5;
}

.formkit-powered-by-convertkit-container {
  margin-top: 30px;
}

@media (min-width: 550px) {
  .formkit-wrapper {
    padding: 60px;
  }

  .formkit-card-content {
    padding: 30px 55px 50px;
  }

  .formkit-form-image {
    max-height: 330px;
  }

  .formkit-form-image img {
    height: 330px;
  }

  .formkit-content {
    font-size: 18px;
  }

  .formkit-signup {
    margin-top: 1rem;
  }
}
