.link:nth-child(2){
    text-decoration: underline;
}

.checkbox{
    display: flex;
}

form{
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
}

.search{
    border: solid;
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
    width: 300px;
    height: 30px;
    padding-left: 10px;
    padding-right: 10px;
}

.bar-trie{
    display: flex;
    gap: 30px;
    justify-content: flex-start;
    align-items: center;
    margin-left: 50px;
    margin-right: 50px;
}

.bar-trie label{
    margin-left: auto;
}

.bar-trie a{
    /* margin-left: 60px; */
    /* background-color: aqua; */
    display: flex;
    align-items: center;
    color: #000000;
}

.bar-trie img{
    width: 30px;
    margin-right: 7px;
}

.search:focus{
    outline:red;
    outline-width: 7px;
    border-color: red;
    border-width: 3px;
}

#trie{
    display: column;
}


/* écran divisé par deux*/
@media screen and (width <=880px){
   .choix-gen span{
    display: none;
   }

   .bar-trie{
    display: flex;
    gap: 30px;
    justify-content: flex-start;
    align-items: center;
    margin-left: 0px;
    margin-right: 0px;
   }
}

/* écran tout petit*/
@media screen and (width <=720px){

    .bar-trie{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
    align-items: center;
    margin-left: 0px;
    margin-right: 0px;
    }

}

.choix-gen{
    cursor: pointer;
}

.popup-filtre{
    display: none;
    position: fixed;
    margin: auto;
    width: 650px;
    height: fit-content;
    top: 57%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #dcdcdc;
    color: #000000;
    z-index: 999;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 10px;
    border: solid 2px #000000;
    /* padding-bottom: 20px; */
    /* padding-top: 200px; */
}

.fond{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 900;
}

.croix{
    display: block;
    position: fixed;
    top: 0%;
    left: 100%;
    transform: translate(-50%, -50%);
    background-image: url("Images/cross-remove-sign-svgrepo-com 1.svg");
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1001;
}

.popup-filtre form{
    display: block;
    justify-content: center;
    align-items: center;
    height: fit-content;
    width: 100%;
    /* background-color: #E52228; */
    padding: 20px;
}

.elements-filtres{
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-start;
    /* background-color: #E52228; */
}

.boutons{
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
}

.annuler{
    cursor: pointer;
}

.croissant{
    display: flex;
    background-image: url("Images/sort-from-top-to-bottom-svgrepo-com 1.svg");
    background-size: cover;
    background-position: center;
    width: 30px;
    height: 30px;
    /* background-color: aqua; */
}
.decroissant{
    display: none;
    background-image: url("Images/sort-from-top-to-bottom-svgrepo-com 1.svg");
    background-size: cover;
    background-position: center;
    width: 30px;
    height: 30px;
    transform: scaleY(-1);
    /* background-color: aqua; */
}