.select-header {
  /* -webkit-appearance: none;
  appearance: none; */
  border: 1px solid #e8eaed;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 1px 3px -2px #9098a9;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  transition: all 150ms ease;
  min-width: 70%;
  background: #fafafa;
}

.select select:required:invalid {
  color: #5a667f;
}

.select select option {
  color: #223254;
}

.select select option[value=""][disabled] {
  display: none;
}

.select-header:focus {
  outline: none;
  border-color: #FFEB00;
  box-shadow: 0 0 0 2px rgba(255, 235, 0, 0.2);
}