/* Shared single-select affordance. Preserve native option menus and list boxes. */
html select:not([multiple]):not([size]),html select:not([multiple])[size="1"]{
  -webkit-appearance:none!important;appearance:none!important;
  padding-right:36px!important;
  background-image:linear-gradient(45deg,transparent 50%,var(--ink-2,#697687) 50%),linear-gradient(135deg,var(--ink-2,#697687) 50%,transparent 50%)!important;
  background-position:right 19px center,right 14px center!important;
  background-size:5px 5px,5px 5px!important;background-repeat:no-repeat!important;
}
html select:not([multiple]):not([size]):dir(rtl),html select:not([multiple])[size="1"]:dir(rtl){padding-left:36px!important;padding-right:12px!important;background-position:left 14px center,left 19px center!important}
@media(forced-colors:active){html select:not([multiple]):not([size]),html select:not([multiple])[size="1"]{appearance:auto!important;background-image:none!important}}
