.plang-pll-select,
.plang-polylang-language-dropdown {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #0b6ea0;            /* primary text color */
  background-color: transparent;
  border: 0;
  border-radius: 24px;
  padding: 0 15px 0 0; /* space for arrow on the right */
  height: 40px;
  line-height: 24px;
  cursor: pointer;
  box-sizing: border-box;

  /* simple orange down-arrow SVG as background */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23ff8a2b' d='M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0px center;
  background-size: 18px 18px;
}

/* hide default Windows/IE arrow */
.plang-pll-select::-ms-expand,
.plang-polylang-language-dropdown::-ms-expand {
  display: none;
}

/* focus state */
.plang-pll-select:focus,
.plang-polylang-language-dropdown:focus {
  outline: none;
  //box-shadow: 0 0 0 4px rgba(11,107,148,0.12);
  //border-color: #0b6b94;
}

/* smaller on mobile */
@media (max-width: 480px) {
  .plang-pll-select,
  .plang-polylang-language-dropdown {
    height: 36px;
    padding: 6px 36px 6px 10px;
    font-size: 15px;
    border-radius: 20px;
  }
}