.error {
    text-align: center;
    /* display: inline-block;
    vertical-align: top; */
    font-size: 20px;
}

.lettre {
    cursor: pointer;
}

.lettre-choisi {
    font-size: 33px;
}

.lettre-choisi:hover {
    font-size: 33px;
    color: white;
}

.lettre:hover {
    font-size: 33px;
    color: white;
}

.zone_recherche {
    grid-area: zone_recherche;
    text-align: center;
    position: relative;
    height: 20%;
    z-index: 2;
}

.zone_recherche > form > .search {
    width: 50%;
    height: 50%;
}

.sug {
    z-index: 2;
    /* position: relative; */
    background-color: #ffffff;
    /* width: 50.3%; */
    /* margin: 0 auto; */
    top: -20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.suggestions {
    display: none;
    list-style-type: none;
    overflow: auto;
    height: auto;
    max-height: 150px;
}

.suggestions > li {
  color: black;
}

.suggestions > li:hover {
  font-weight: bold;
  cursor: pointer;
}

.zone_barre {
    /*grid-area: zone_barre;*/
    text-align: center;
    /*position: relative;*/
}

.zone_barre > a {
    text-decoration: none;
    padding-left: 2.5px;
    padding-right: 2.5px;
    font-size: 30px;
    color: rgb(173, 160, 160);
}
@media all and (max-width: 1500px) {
    .zone_recherche > form > span{
        font-size: 13px;
    }

}
@media all and (max-width: 1100px) {
    
    .zone_barre > a{
        font-size: 12px;
    }

    .zone_barre > .lettre-choisi{
        font-size: 13px;
    }

    .zone_barre > .lettre:hover{
        font-size: 13px;
    }

    .zone_recherche > form > span{
        font-size: 9px;
    }
   
}