/* form-select-theme-v2 — light selects matching white/black/silver site palette */

:root {
  color-scheme: light;
}

select,
.form-group select,
.contact-form select,
.contact-form .form-group select {
  color-scheme: light;
  -webkit-appearance: none;
  appearance: none;
  color: #1a1a1a !important;
  background-color: #ffffff !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235a5a5a' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  background-size: 16px !important;
  border: 1px solid rgba(0, 0, 0, 0.16) !important;
  padding-right: 2.5rem !important;
  cursor: pointer;
}

select:focus,
.form-group select:focus,
.contact-form .form-group select:focus {
  outline: none !important;
  border-color: rgba(0, 0, 0, 0.35) !important;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06) !important;
  background-color: #ffffff !important;
}

select option,
select optgroup {
  color: #1a1a1a !important;
  background-color: #ffffff !important;
}

select option:checked,
select option:hover,
select option:focus {
  color: #1a1a1a !important;
  background-color: #e6e6e6 !important;
}

select option[value=""],
select option:disabled {
  color: #737373 !important;
}

@-moz-document url-prefix() {
  select option {
    background-color: #ffffff;
    color: #1a1a1a;
  }
}
