div[include*="form-input-select()"] {
  display: inline-block;
  padding: 0;
  position: relative;
  /* Set options to normal weight */
  /* ------------------------------------  */
  /* START OF UGLY BROWSER-SPECIFIC HACKS */
  /* ----------------------------------  */
  /* FIREFOX won't let us hide the native select arrow, so we have to make it wider than needed and clip it via overflow on the parent container.
     The percentage width is a fallback since FF 4+ supports calc() so we can just add a fixed amount of extra width to push the native arrow out of view. We're applying this hack across all FF versions because all the previous hacks were too fragile and complex.
     You might want to consider not using this hack and using the native select arrow in FF. Note this makes the menus wider than the select button because they display at the specified width and aren't clipped. Targeting hack via http://browserhacks.com/#hack-758bff81c5c32351b02e10480b5ed48e */
  /* Show only the native arrow */
  color: #005BA6;
  display: inline-block;
  border-radius: 0;
  box-shadow: none;
  font-size: 16px;
  margin-top: 9px;
  margin-bottom: 15px;
  width : 25ex;
}
  div[include*="form-input-select()"]::before, div[include*="form-input-select()"]::after {
    content: '';
    display: block;
    position: absolute;
    pointer-events: none;
    z-index: 2; }
  div[include*="form-input-select()"] select {
    -webkit-appearance: none;
    appearance: none;
    background: none;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    border: 1px solid transparent;
    font-size: 16px;
    outline: none;
    /* Focus style */ }
    div[include*="form-input-select()"] select:focus {
      background-color: transparent;
      outline: none; }
  div[include*="form-input-select()"] option {
    font-weight: normal; }
  div[include*="form-input-select()"] x:-o-prefocus, div[include*="form-input-select()"]::after {
    display: none; }
  @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    div[include*="form-input-select()"] select::-ms-expand {
      display: none; }
    div[include*="form-input-select()"] select:focus::-ms-value {
      background: transparent;
      color: #000; } }
@-moz-document url-prefix() {
  div[include*="form-input-select()"] {
    overflow: hidden; }
    div[include*="form-input-select()"] select {
      width: 120%;
      width: -moz-calc(100% + 3em);
      width: calc(100% + 3em);
      /* Firefox focus has odd artifacts around the text, this kills that. See https://developer.mozilla.org/en-US/docs/Web/CSS/:-moz-focusring */ }
      @supports (-moz-appearance: none) {
        div[include*="form-input-select()"] select {
          width: 100%; } }
      div[include*="form-input-select()"] select:-moz-focusring {
        color: transparent;
        text-shadow: 0 0 0 #000; } }
  @supports (-moz-appearance: none) {
    div[include*="form-input-select()"] {
      width: 100%; } }
  div[include*="form-input-select()"]::before, div[include*="form-input-select()"]::after {
    content: '';
    display: block;
    position: absolute;
    pointer-events: none;
    border: 1px solid transparent;
    width: 0;
    height: 0;
    right: 16px; }
  div[include*="form-input-select()"]::before {
    bottom: 55%;
    border-width: 0 6.5px 8px 6.5px;
    border-bottom-color: #D6D6D6; }
  div[include*="form-input-select()"]::after {
    border-width: 8px 6.5px 0 6.5px;
    border-top-color: #D6D6D6;
    top: 55%; }
@-moz-document url-prefix() {
  div[include*="form-input-select()"] {
    border-right: 3px solid #E6E6E6; }
    div[include*="form-input-select()"]:hover {
      border-right: 3px solid #005BA6; } }
  div[include*="form-input-select()"]:hover select {
    box-shadow: 0 2px 3px rgba(0, 91, 166, 0.1) inset;
    border-color: #005BA6; }
    div[include*="form-input-select()"]:hover select:focus {
      outline-color: transparent; }
  div[include*="form-input-select()"]:hover::before {
    border-bottom-color: #005BA6; }
  div[include*="form-input-select()"]:hover::after {
    border-top-color: #005BA6; }
  div[include*="form-input-select()"] select {
    border: 3px solid #E6E6E6;
    border-radius: 0;
    font-weight: 400;
    color: inherit;
    padding: 11px 15px;
    line-height: normal;
    transition: border-color 0.2s ease, outline 0.2s ease; }
    div[include*="form-input-select()"] select:focus {
      box-shadow: 0 3px 4px rgba(0, 91, 166, 0.3) inset;
      outline: 3px solid #005BA6;
      outline-offset: -3px; }
    div[include*="form-input-select()"] select[disabled], div[include*="form-input-select()"] select:disabled {
      opacity: 0.4;
      cursor: not-allowed; }
    div[include*="form-input-select()"] select:not(:focus):invalid {
      color: #C7C7C7; }

/*# sourceMappingURL=selector.css.map */
