.searcher{
    display: flex;
    width: 21.806vw;
    height: 3.906vh;
    padding: 0.781vh 0.833vw;
    justify-content: space-around;
    align-items: center;
    gap: 0.833vw;
    flex-shrink: 0;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0px 4px 4px 0px rgba(120, 144, 156, 0.25);
    box-sizing: border-box;

    position: relative;
    z-index: 1010;
}

.searcher-button{
    all: unset;
    display: flex;
    width: 1.953vh;
    height: 1.953vh;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.2s ease-in-out ;
}

.searcher-button:hover{
    transform: scale(1.07);
}

.searcher-input{
    all: unset;
    width: 15.208vw;
    height: 1.66vh;
    font-size: 1.367vh;
    font-weight: 500;    
}



@media (max-width: 480px){
    .searcher{
        width: 100%;
        height: 4.926vh;
        padding: 0.985vh 1.867vw 0.985vh 3.2vw;
        gap: 3.2vw;
        justify-content: flex-start;
    }
    .searcher-button{
        width: 2.463vh;
        height: 2.463vh;
    }
    .searcher-button:hover{
        transform: scale(1);
    }
    .searcher-input{
        width: 100%;
        flex: 1 0 0;
        height: 2.094vh;
        font-size: 1.724vh;
    }

    .inverte-btn{
    all: unset;
    display: flex;
    background: white;
    cursor: pointer;
    width: 3.941vh;
    height: 3.941vh;
    aspect-ratio: 1/1;
    flex-shrink: 0;
    }

}