.pas-trouve {
    z-index: 1000;
    position: absolute;
    top: 50%;
    width: 590px;
    background-color: #019EE5;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 60px;
    border-radius: 30px;
    gap: 30px;
}
.pas-trouve p{
    color: #fff;
    font-size: 16px;
    font-family: 'Poppins';
    text-align: center;
}
.pas-trouve a {
    font-size: 20px;
    color: #fff !important;
    border: 2px solid #fff;
    padding: 10px 20px;
}
.form-search {
    width: 100%;
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 6px;
    background-color: #f7f7f7;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgba(0, 0, 0, .05);
}
.form-search form label {
    font-size: 14px;
    font-family: 'Poppins';
    color: #2C3E50;
}
.form-search form {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.form-search form div {
    display: flex;
    flex-direction: column;
    justify-content: end;
    width: 33.33%;
}
input#adresse {
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
}
input#rayons {
    border-radius: 4px;
    padding: 10px;
    border: 1px solid #ccc;
}
input#search {
    background-color: #2b97ff;
    border: none;
    padding: 10px;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
}
@media(max-width:768px){
    .pas-trouve {
        width: 95%;
    }
    .pas-trouve a{
        text-align: center;
    }
    .form-search form{
        flex-direction: column;
    }
    .form-search form div{
        width: 100%;
    }
}