.material-icons{
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;  /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
  
    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;
  
    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;
  
    /* Support for IE. */
    font-feature-settings: 'liga';
}

.search-bar{
    border: solid 1px #ccc;
    border-radius: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 5px 20px;
    margin: auto;
}

 .search-bar:focus-within{
    border: solid 1px #ccc;
    box-shadow: 0px 2px 5px rgba(35, 35, 36, 0.2);
}

.search-bar input{
    border: none;
    outline: none;
    color: #ccc;
    pad: 10px;
    font-size: 20px; /*kk*/
    flex: auto;
}

.search-bar .actions{
    display: flex;
    gap: 10px;
}

.search-bar .actions button{
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
    color: #ccc;
}

.search-bar .actions button:hover{
    color: #2979e2;
    text-decoration-color: #ccc;
}

.filtro{
    display: none;
}