/**
 * @file
 * Select input elements.
 */

[dir="ltr"] select {
  padding-left: 1rem
}

[dir="rtl"] select {
  padding-right: 1rem
}

[dir="ltr"] select {
  padding-right: 3rem
}

[dir="rtl"] select {
  padding-left: 3rem
}

select {
  max-width: 100%;
  height: 3rem;
  padding-top: 0;
  padding-bottom: 0;
  color: #0d1214;
  border: 1px solid #7e96a7;
  border-radius: 0.16667rem;
  background-color: #fff;
  background-image: url("../../images/chevron-down.svg");
  background-repeat: no-repeat;
  background-position: right 18px center; /* LTR */
  font-family: inherit;
  font-size: inherit;
  -webkit-appearance: none;
  appearance: none
}

select:focus {
    border: solid 2px #5c9ec8;     outline: solid 2px #5c9ec8
  }

@supports (outline-style: double) {

select:focus {
      border-width: 1px;
      outline-width: 6px;
      outline-style: double;
      outline-offset: -1px
  }
    }

select {

  /* Hides default chevron within Internet Explorer. */
}

select::-ms-expand {
    display: none;
  }

select[disabled] {
    color: #7e96a7;
    background-color: #f1f4f7;
  }

select.error {
    border: solid 2px #e33f1e
  }

select.error:focus {
      outline-color: #e33f1e;
    }

select[multiple] {
    height: auto;
    padding: 0.5rem;
    background-image: none;
    line-height: 1 /* Needed by non-Chromium based MS Edge browsers. */
  }

select[multiple] option {
      padding: 0.5rem;
    }

select.form-element--small {
    height: 2.5rem;
  }

select {

  /* Necessary to show chevron in forced colors mode in modern browsers. */
}

@media (forced-colors: active) {

[dir="ltr"] select {
    padding-right: 1rem
  }

[dir="rtl"] select {
    padding-left: 1rem
  }

select {
    background-image: none;
    -webkit-appearance: listbox;
    appearance: listbox /* Default <select> appearance value for modern browsers. */

    /* Lets browser set <select> appearance to whatever the browser's default is. */
}
    @supports ((-webkit-appearance: revert) or (appearance: revert)) {

select {
      -webkit-appearance: revert;
      appearance: revert
}
    }
  }

select {

  /* Necessary for Internet Explorer to show chevron. */
}

@media screen and (-ms-high-contrast: active) {

[dir="ltr"] select {
    padding-right: 0
  }

[dir="rtl"] select {
    padding-left: 0
  }

select {

    /* Re-enable default chevron for Internet Explorer. */
}
    select::-ms-expand {
      display: block;
    }
  }

[dir="rtl"] select {
  background-position: left 18px center;
}
