.wpcf7-form-control::placeholder {
  color: var(--wp--preset--color--black);
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="search"],
select,
textarea {
  font-family: var(--wp--preset--font-family--primary);
  width: 100%;
  padding: var(--wp--preset--spacing--xs) var(--wp--preset--spacing--xs);
  box-sizing: border-box;
  border: 1px solid var(--wp--preset--color--dark-gray);
  font-size: var(--wp--preset--font-size--default);
}
/* ########## Contact Form 7 ########## */
.wpcf7 form .select2-container,
.wpcf7 form .select2-container--default {
  display: block;
  width: auto !important;
  z-index: 1;
}
.wpcf7 form .select2-container .select2-selection,
.wpcf7 form .select2-container--default .select2-selection,
.wpcf7 form .select2-container .select2-selection--single,
.wpcf7 form .select2-container--default .select2-selection--single {
  height: auto;
  padding: 20px 16px;
  border-radius: 0;
  border-color: var(--wp--preset--color--black);
}
.wpcf7 form .select2-container .select2-selection .select2-selection__rendered,
.wpcf7 form .select2-container--default .select2-selection .select2-selection__rendered,
.wpcf7 form .select2-container .select2-selection--single .select2-selection__rendered,
.wpcf7 form .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-left: 0;
  color: var(--wp--preset--color--black);
  font-weight: 300;
}
.wpcf7 form .select2-container .select2-selection .select2-selection__arrow,
.wpcf7 form .select2-container--default .select2-selection .select2-selection__arrow,
.wpcf7 form .select2-container .select2-selection--single .select2-selection__arrow,
.wpcf7 form .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: auto;
  right: 15px;
  top: 50%;
  transform: translate(0, -50%);
  width: auto;
}
.wpcf7 form .select2-container .select2-selection .select2-selection__arrow b,
.wpcf7 form .select2-container--default .select2-selection .select2-selection__arrow b,
.wpcf7 form .select2-container .select2-selection--single .select2-selection__arrow b,
.wpcf7 form .select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}
.wpcf7 form .select2-container .select2-selection .select2-selection__arrow::before,
.wpcf7 form .select2-container--default .select2-selection .select2-selection__arrow::before,
.wpcf7 form .select2-container .select2-selection--single .select2-selection__arrow::before,
.wpcf7 form .select2-container--default .select2-selection--single .select2-selection__arrow::before {
  content: "\f107";
  font-family: "fontello";
  font-size: 20px;
  font-weight: 300;
  box-sizing: border-box;
  display: block;
  margin-right: 0;
  padding: 0;
  width: 100%;
}
.wpcf7 form .select2-container--open .select2-selection .select2-selection__arrow::before,
.wpcf7 form .select2-container--open .select2-selection--single .select2-selection__arrow::before {
  content: "\f106";
}
.wpcf7 form input[type="checkbox"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  -o-appearance: none;
  outline: none;
  content: none;
  border: none !important;
  cursor: pointer;
  height: 20px;
  margin-top: 5px;
}
.wpcf7 form input[type="checkbox"]:before {
  font-family: "fontello";
  content: "\e801";
  font-size: 18px;
  color: transparent !important;
  background: transparent;
  display: block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border: 1px solid var(--wp--preset--color--black);
  text-align: center;
}
.wpcf7 form input[type="checkbox"]:checked:before {
  color: var(--wp--preset--color--black) !important;
}
.wpcf7 form .wpcf7-radio {
  display: flex;
  gap: 10px;
}
.wpcf7 form .wpcf7-list-item {
  margin-left: 0;
}
.wpcf7 form .wpcf7-not-valid-tip {
  font-size: var(--wp--preset--font-size--small);
  text-align: right;
  padding-top: 5px;
}
.wpcf7 form .wpcf7-response-output {
  padding: 30px;
  margin: 30px 0 0 0;
  text-align: center;
}
.contact-form__row {
  margin-bottom: var(--wp--preset--spacing--xs);
}
.contact-form__row--two-cols {
  display: grid;
  gap: var(--wp--preset--spacing--xs);
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 820px) {
  .contact-form__row--two-cols {
    grid-template-columns: 1fr;
  }
}
.contact-form__field p {
  margin-bottom: 0;
}
.contact-form__submit {
  font-family: var(--wp--preset--font-family--primary);
  border: none;
  background-color: var(--wp--preset--color--medium-gray);
  cursor: pointer;
  color: var(--wp--preset--color--white);
  padding: var(--wp--preset--spacing--xs) var(--wp--preset--spacing--md);
  position: relative;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}
.contact-form__submit::after {
  content: "\e802";
  display: inline-block;
  font-family: "fontello";
  margin-left: var(--wp--preset--spacing--xs);
}
.contact-form__submit:hover {
  background-color: var(--wp--preset--color--black) !important;
}
.contact-form__submit:disabled {
  background-color: var(--wp--preset--color--medium-gray);
  color: var(--wp--preset--color--white);
}
.contact-form__submit:disabled:hover {
  background-color: var(--wp--preset--color--medium-gray) !important;
  color: var(--wp--preset--color--white);
}
.contact-form__footer p {
  margin-bottom: var(--wp--preset--spacing--xs);
}
