/* Repeat VIN search on machine and parts screens. */
.serial-entry.vin-switch > div{
  display:grid;
  grid-template-columns:minmax(0,1fr) 88px;
  gap:7px;
}
.serial-entry.vin-switch input{
  min-width:0;
  padding:0 12px;
}
.serial-entry.vin-switch button{
  position:static;
  width:auto;
  height:42px;
  padding:0 12px;
  border:0;
  background:var(--red,#e64b34);
  color:#fff;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
}
.serial-entry.vin-switch button:hover{background:#c93e2a}
.serial-entry.vin-switch button:focus-visible{outline:3px solid rgba(230,75,52,.3);outline-offset:2px}
.serial-entry.vin-switch button:disabled{cursor:default;opacity:.55}
@media(max-width:420px){
  .serial-entry.vin-switch > div{grid-template-columns:minmax(0,1fr) 76px}
  .serial-entry.vin-switch button{padding:0 8px;font-size:10px}
}