/* Correção dos campos de seleção em desktop e mobile. */
select,
select:hover,
select:focus {
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  cursor:pointer;
  padding-right:44px !important;
  background-color:#fff !important;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2345534a' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3C/svg%3E"),
    linear-gradient(180deg,#fff,#f8faf7) !important;
  background-repeat:no-repeat,no-repeat !important;
  background-position:right 16px center,0 0 !important;
  background-size:16px 16px,100% 100% !important;
}

select:focus {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230b6f3e' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3C/svg%3E"),
    linear-gradient(180deg,#fff,#fff) !important;
}

select:required:invalid { color:#718078; }
select option { color:#173123; background:#fff; }
select option[disabled] { color:#718078; }

@media(max-width:680px){
  select,
  select:hover,
  select:focus {
    padding-right:43px !important;
    background-position:right 15px center,0 0 !important;
    background-size:15px 15px,100% 100% !important;
  }
}
