/* Buscar normal input siempre visible */
.🔍{
    /* outline: dotted rgb(255, 0, 234) 2px; */
    display: flex;
    position: relative;
}
.🔍 form{
    display: flex;
    gap: 0;
    z-index: 1;
    /**/
    padding: 0 var(--eo0);
  }
  
  .🔍 input {
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    min-height: 100%;
  }
  
  .🔍 form::after{
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      z-index: -1;
      
      background: white;
      /* border-bottom: solid 2px rgb(0, 255, 98); */
      height: 90%;
  }