.ContactForm {
  padding-top: clamp(2rem, 7vw, 7rem);
  overflow: hidden;
}

.ContactForm.pt-0 {
  padding-top: 0;
}

.ContactForm-title {
  padding-bottom: 2rem;
  margin: 0;
  text-align: center;
}

.ContactForm-subTitle {
  max-width: 40rem;
  padding-bottom: 2rem;
  margin: 0 auto;
  text-align: center;
}

.ContactForm-form {
  max-width: 32rem;
  padding-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
}

.ContactForm-form .AppForm-label {
  display: block;
  padding-bottom: .25rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--colorText);
  opacity: .7;
}

.ContactForm-form .AppForm-label.required:after {
  content: '*';
  vertical-align: top;
  color: #d80000;
  font-size: 1rem;
  padding: 0 0 0 .25rem;
}

.ContactForm-form input, .ContactForm-form textarea, .ContactForm-form select {
  width: 100%;
  min-height: 2.5rem;
  padding: .375rem .625rem;
  font-size: 1rem;
  border: 0.0625rem solid var(--colorOutlines);
  border-radius: .375rem;
}

.ContactForm-form input:focus, .ContactForm-form textarea:focus, .ContactForm-form select:focus {
  outline: none;
  border-color: grey;
}

.ContactForm-form .required-items {
  padding: .25rem 0 2rem;
  opacity: .7;
  font-size: 0.7rem;
}

.ContactForm-form .required-items span {
  color: #d80000;
  vertical-align: middle;
}

.ContactForm .AppForm-addInfo {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.ContactForm .AppForm-termsNote {
  flex: 0 0 62%;
  padding-bottom: 2rem;
  text-align: right;
}

.ContactForm-contentContacts {
  margin-left: calc(var(--sizeContentOffset) * -1);
  margin-right: calc(var(--sizeContentOffset) * -1);
}

.ContactForm-image {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.ContactForm-contacts {
  padding: 1.5rem 1rem;
  font-size: .875rem;
  background: var(--colorBrand);
  border-top: 0.25rem solid var(--colorBrandSecondary);
}

.ContactForm-contact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  color: #fff;
}

.ContactForm-contact:last-child {
  padding-bottom: 0;
}

.ContactForm-contactType {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.ContactForm-contactValue {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.5rem;
}

.ContactForm-contactValue:hover {
  color: var(--colorBrandSecondary);
}

.ContactForm-contactValue--email {
  text-align: right;
}

.ContactForm-contact a {
  color: inherit;
}

.ContactForm-contact svg {
  fill: currentColor;
}

.ContactForm-contact--details {
  padding-bottom: 1rem;
}

.ContactForm-profilePicture {
  border-radius: 100%;
  overflow: hidden;
  width: 2rem;
  height: 2rem;
}

.ContactForm .AppForm-col {
  padding-bottom: 1rem;
}

.ContactForm .AppForm-col .AppForm-label {
  margin: 0;
}

.ContactForm .AppForm-col--addInfo {
  padding-bottom: 0;
}

.ContactForm .AppForm-col--addInfo .AppForm-label {
  display: none;
}

.ContactForm .AppForm-col textarea {
  height: 7rem;
  margin: 0;
}

@media (min-width: 32rem) {
  .ContactForm-contacts {
    display: flex;
    gap: 4rem;
    justify-content: center;
    font-size: 1rem;
  }
  .ContactForm-contact {
    align-items: center;
    padding-bottom: 0;
  }
  .ContactForm-contactType {
    margin-right: auto;
    padding-bottom: 1rem;
    align-items: center;
    gap: 0.3rem;
  }
  .ContactForm-contactType a:hover, .ContactForm-contactType a:active, .ContactForm-contactType a:focus {
    color: var(--colorLinkTextActive);
  }
  .ContactForm-contactValue--email {
    text-align: center;
  }
}

@media (min-width: 64rem) {
  .ContactForm-content {
    display: flex;
    gap: 3rem;
    align-items: stretch;
    justify-content: center;
  }
  .ContactForm-form {
    margin-right: 0;
  }
  .ContactForm-contentContacts {
    margin-left: 0;
    margin-right: auto;
    align-self: flex-end;
  }
  .ContactForm-contacts {
    padding-bottom: 2rem;
    position: relative;
  }
  .ContactForm-contacts:before {
    content: '';
    width: 1000%;
    height: calc(100% + .25rem);
    background: var(--colorBrand);
    border-top: 0.25rem solid var(--colorBrandSecondary);
    position: absolute;
    top: -.25rem;
    left: 0;
    z-index: -1;
  }
  .ContactForm .AppForm-col:last-child {
    text-align: left;
  }
}

.TermsNote {
  position: relative;
}

.TermsNote-text {
  cursor: pointer;
  text-decoration: underline;
  color: #000;
  font-size: 0.8rem;
}

.TermsNote-popup {
  display: none;
  max-width: 20rem;
  padding: .625rem;
  font-size: 0.8rem;
  color: #fff;
  text-decoration: none;
  background: #737373;
  border-radius: .375rem;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.7);
  position: absolute;
  left: -.625rem;
  bottom: calc(100% + 1rem);
  z-index: 10;
}

.TermsNote-popup a {
  color: #fff;
  text-decoration: underline;
}

.TermsNote-popup::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 1rem solid transparent;
  border-right: 1rem solid transparent;
  position: absolute;
  left: auto;
  right: 1.25rem;
  top: calc(100% - .125rem);
  border-top: 1rem solid #737373;
}

.TermsNote-popup::after {
  content: "";
  display: block;
  width: 100%;
  height: 3rem;
  background: transparent;
  position: absolute;
  left: 0;
  top: 100%;
}

.TermsNote:hover .TermsNote-popup {
  display: block;
}

/*# sourceMappingURL=form-render.min.css.map */
