.quote-search-card{
  align-self:start;
  max-height:520px;
  overflow:auto;
}
.quote-search-box{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:8px;
  margin:12px 0 14px;
}
.quote-search-input{width:100%;min-height:44px}
.quote-search-clear{min-height:44px;white-space:nowrap}
.quote-search-status{
  grid-column:1/-1;
  padding:9px 11px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:8px;
  background:rgba(255,255,255,.025);
  font-size:12px;
  opacity:.8;
}
@media(max-width:900px){
  .quote-search-card{max-height:none}
  .quote-search-box{grid-template-columns:1fr}
}