/*CSS DA PAGINA RECEITAS*/

.main_receitas{
    margin-top: 20px;
    padding: 10px 10px;
}

.main_receitas .container {
    /*display: flex;*/
    /*flex-direction: row;*/
    /*flex-wrap: wrap;*/
    /*justify-content: space-around;*/

    padding-top: 20px;
    margin-bottom: 15px;
}

.main_receitas .receita {
    /*flex-basis: 32%;*/
    padding: 2px 2px;
    /*background: #f8f9d1;*/
    margin-bottom: 15px;
    height: 100%;

    /*display: flex;*/
    /*justify-content: center;*/
    /*flex-wrap: wrap;*/
}

.receita_title {
    margin-bottom: 15px;
    padding: 10px 5px;

    font-size: 0.875em;
    text-align: center;
}

.receita main {
    padding: 5px;
    text-align: center;
}

.receita_img {
    text-align: center;
    margin-bottom:  5px;
}

.receita_ingredientes {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 8px;
}
.receita_ingredientes li{
    margin-left: 15px;
    font-size: 0.625em;
    width: 40%;
    text-align: left;
}
.receita_preparo p{
    font-size: 0.75em;
}