/* HUTCHI */
.select-container {
  position: relative;
  display: inline-block;
}
.select-container::after {
  content: "⌄";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-65%);
  pointer-events: none; /* Ensures clicks pass through to the select */
}
.section-contact-form .section-contact-form--form {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.section-contact-form .input-wrapper {
  display: flex;
  flex-direction: column;
}
.section-contact-form .w-full,
.section-contact-form .w-partial {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .section-contact-form .w-partial {
    width: calc(50% - 7.5px);
  }
  .section-contact-form .form-success {
    display: inline-block;
  }
}
.section-contact-form
  .section-contact-form--submit-wrapper
  [data-spam-detection-disclaimer] {
  font-size: smaller;
}
.section-contact-form
  .section-contact-form--submit-wrapper
  [data-spam-detection-disclaimer]
  a {
  transition: padding-bottom 0.15s ease-in-out;
  cursor: pointer;
  border-bottom: 1px solid;
  padding-bottom: 1px;
}
.section-contact-form
  .section-contact-form--submit-wrapper
  [data-spam-detection-disclaimer]
  a:focus,
.section-contact-form
  .section-contact-form--submit-wrapper
  [data-spam-detection-disclaimer]
  a:hover {
  padding-bottom: 3px;
}
.section-contact-form.homepage-sections-wrapper--light input:not(.btn),
.section-contact-form.homepage-sections-wrapper--light textarea {
  color: var(--color-scheme-light-text);
}
/* HUTCHI */
.section-contact-form.homepage-sections-wrapper--light
  input:not(.btn)::placeholder,
.section-contact-form.homepage-sections-wrapper--light select,
.section-contact-form.homepage-sections-wrapper--light textarea::placeholder {
  color: var(--color-scheme-light-text);
}
.section-contact-form.homepage-sections-wrapper--light input:not(.btn) {
  border-bottom-color: var(--color-scheme-light-text-transparent60);
}
.section-contact-form.homepage-sections-wrapper--light textarea {
  border-color: var(--color-scheme-light-text-transparent60);
}
.section-contact-form.homepage-sections-wrapper--accent input:not(.btn),
.section-contact-form.homepage-sections-wrapper--accent textarea {
  color: var(--color-scheme-accent-text);
}
.section-contact-form.homepage-sections-wrapper--accent
  input:not(.btn)::placeholder,
.section-contact-form.homepage-sections-wrapper--accent textarea::placeholder {
  color: var(--color-scheme-accent-text);
}
.section-contact-form.homepage-sections-wrapper--accent input:not(.btn) {
  border-bottom-color: var(--color-scheme-accent-text-transparent60);
}
.section-contact-form.homepage-sections-wrapper--accent textarea {
  border-color: var(--color-scheme-accent-text-transparent60);
}
.section-contact-form.homepage-sections-wrapper--dark input:not(.btn),
.section-contact-form.homepage-sections-wrapper--dark textarea {
  color: var(--color-scheme-dark-text);
}
.section-contact-form.homepage-sections-wrapper--dark
  input:not(.btn)::placeholder,
.section-contact-form.homepage-sections-wrapper--dark textarea::placeholder {
  color: var(--color-scheme-dark-text);
}
.section-contact-form.homepage-sections-wrapper--dark input:not(.btn) {
  border-bottom-color: var(--color-scheme-dark-text-transparent60);
}
.section-contact-form.homepage-sections-wrapper--dark textarea {
  border-color: var(--color-scheme-dark-text-transparent60);
}
