.header-country-selector {
  position: relative;
  display: flex;
  align-items: center;
  min-width:100px;
  max-width:100px;
}

.header-country-selector select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-color: #F3E20C;
  background-repeat: no-repeat;
  background-position: 8px center;
  background-size: 22px 14px;

  padding: 6px 28px 6px 36px;
  border: 1px solid rgba(0,0,0,0.3);
  border-radius: 4px;
  font-size: 14px;
  color: #000;
  cursor: pointer;
  font-weight:bold;
}

/* Dropdown caret */
.header-country-selector::after {
  content: "▾";
  position: absolute;
  right: 10px;
  font-size: 12px;
  color: #000;
  pointer-events: none;
}

.header-country-selector select option {
  background-color: #fff;
  color: #000;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}