/* RED20 V22 — mobile search smart hide/show only. Desktop untouched. */
@media (max-width: 991.98px){
  html body #header .mobile-search{
    max-height:58px;
    opacity:1;
    transform:translateY(0);
    overflow:visible;
    transition:max-height .22s ease,opacity .18s ease,transform .22s ease,margin .22s ease,padding .22s ease;
    will-change:max-height,opacity,transform;
  }
  html body.red20-mobile-search-hidden #header .mobile-search{
    max-height:0!important;
    opacity:0!important;
    transform:translateY(-10px)!important;
    overflow:hidden!important;
    pointer-events:none!important;
    margin-top:0!important;
    margin-bottom:0!important;
    padding-top:0!important;
    padding-bottom:0!important;
  }
}
@media (min-width: 992px){
  html body.red20-mobile-search-hidden #header .mobile-search{
    max-height:none!important;
    opacity:1!important;
    transform:none!important;
  }
}
