body{
    margin-left: 80px;
    margin-right: 80px;
    margin-top: 40px;   
    font-family: 'Lato', sans-serif;
    font-size: 18px;
}

header{
    display:flex;
    justify-content: center;
    margin-bottom:20px;
}

/*!!! Début mise en forme zone recherche !!!*/
#research{ 
    background-color: #e7e7e7;
    width:100%;
    height: 69px;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    text-indent: 10px;
    font-size: 18px;
    border:none;
    border-radius: 5px;
    margin-bottom: 15px;
}

#research:focus{
    outline:none;
}

.research_form{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.search_glass{
    position: absolute;
    right:90px;
    background:none;
    height:70px;
    margin-bottom:8px;
    border:none;
}

/*!!! Fin mise en forme zone recherche !!!*/

/*!!! Début mise en forme filtres !!!*/
.displayFilters{
    display: flex;
    flex-direction: row;
}
.filterActive{
    min-width: 107px;
    height:37px;
    text-align: center;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    line-height: 17px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    color:white;
    margin-right:20px;
}

.menu_filtres{
    display: flex;
    flex-direction: row;
    margin-top: 15px;
}

.rectangle{
    width:170px;
    height:69px;
    border-radius: 5px;
    color:#ffffff;
    margin-right:20px;
}

.bleu{
    background-color: #3282F7;
}
.vert{
    background-color: #68D9A4;
}
.orange{
    background-color: #ED6454;
}

#ingredients{
    font-size: 18px;
    color:white;
    width:100%;
    margin-top:5px;
    margin-left:20px;
    background: none;
    border: none;
    display:none;
}

#ingredients:focus{
    outline:none;
}

#ingredients::placeholder{
    color: white;
    font-size: 18px;
    opacity: 0.5;
}

#appareils{
    font-size: 18px;
    color:white;
    width:100%;
    margin-top:5px;
    margin-left:20px;
    background: none;
    border: none;
    display:none;
}
#appareils:focus{
    outline:none;
}

#appareils::placeholder{
    color: white;
    font-size: 18px;
    opacity: 0.5;
}

#ustensiles{
    font-size: 18px;
    color:white;
    width:100%;
    margin-top:5px;
    margin-left:20px;
    background: none;
    border: none;
    display:none;
}

#ustensiles:focus{
    outline:none;
}

#ustensiles::placeholder{
    color: white;
    font-size: 18px;
    opacity: 0.5;
}

.ingredients_header_filtre, .appareils_header_filtre, .ustensiles_header_filtre{
    width:100%;
    height:70px;
    display: flex;
    flex-direction: row;
    align-items: center; 
    justify-content: space-around;
}

.ingredients_header_filtre p, .appareils_header_filtre p, .ustensiles_header_filtre p{
    margin-left:-20px;
}

.bleu_liste_filtre, .vert_liste_filtre, .orange_liste_filtre{
    display:flex;
    flex-direction: row;
    width:100%;
    height:85%;
    margin-right:0px;
    justify-content: space-between;
}

.bleu_liste_filtre ul, .vert_liste_filtre ul, .orange_liste_filtre ul{
    margin-top:0px;
}
.bleu_liste_filtre li, .vert_liste_filtre li, .orange_liste_filtre li{
    margin-bottom: 10px;
}
.ulFilterIngredients{
    width:100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-between;
    margin-left:20px;
    overflow: hidden;
}
.ulFilterAppareils{
    width:100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-between;
    margin-left:20px;
    overflow: hidden;
}
.ulFilterUstensiles{
    width:100%;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-between;
    margin-left:20px;
    overflow: hidden;
}
/*!!! Fin mise en forme filtres !!!*/

/*!!! Début mise en forme des cards !!!*/
.liste_recettes{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content:space-between ;
    width:100%;
    margin-top:30px;
}
.card{
    width:380px;
    height:364px;
    background: #E7E7E7;
    border-radius: 5px;
    margin-bottom: 30px;
}

.card_photo{
    width:100%;
    height:178px;
    background: #C7BEBE;
    border-radius: 5px 5px 0px 0px;    
}

.card_titre{
    width:90%;
    margin: auto;
    margin-top:20px;
    margin-bottom:10px;
    display: flex;
    flex-direction: row;
    justify-content:space-between;
    font-weight: 400;
}

.card_nom{
    width:230px;
    height:22px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card_duree{
    display:flex;
    flex-direction: row;
    font-weight: 700;
}

.card_duree p{
    margin:0;
    margin-left:5px;
}

.card_recette{
    width:90%;
    margin:auto;
    display: flex;
    flex-direction: row;
    font-size: 12px;
}

.card_ingredients{
    font-weight: 700;
    width:171px;
    height:105px;
}

.card_instructions{
    width:171px;
    height:105px;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
}

ul{
    list-style-type: none;
    padding: 0;
}


