body {
    margin: 0;
    padding: 0;
    background: #EDEDED;
}

blockquote, dd, dl, figure, h1, h2, h3, h4, h5, h6, hr, p, pre {
    margin: revert;
    font-weight: revert;
    font-size: revert;
    line-height: revert;
}

*, ::after, ::before {
    box-sizing: none;
}

/** Header **/

.header_content {
    width: 100%;
    position: relative;
    display: flex;
}

.header_img {
    width: 100%;
}

.header_container {
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.logo_container {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    margin-left: 70px;
    margin-top: 10px;
    gap: 5px;
}

.logo_title {
    color: white;
    font-family: Anton;
    font-size: 40px;
    margin: 40px 0;
}

.logo {
    width: 30px;
    height: 30px;
}

.header_info_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 120px;
}

.header_description {
    color: #FFD15B;
    font-family: Anton;
    font-size: 56px;
    width: 860px;
    margin: 56px 0;
}

.form_content {
    background: #FFFFFF;
    display: flex;
    align-items: center;
    width: 68%;
    height: 70px;
    border-radius: 10px;
    margin-top: 15px;
}

form {
    display: flex;
    width: 100%;
}

form input {
    width: 85%;
    height: 50px;
    margin: auto 10px auto 30px;
    font-size: 18px;
    color: #7A7A7A;
    border: none;
    outline: none;
}

.clear-input {
    display: none;
    padding: 10px;
    text-align: center;
    margin-right: 10px;
    cursor: pointer;
    font-size: 26px;
    color: #aaa;
    width: 5%;
  }
  
  .clear-input:hover {
    color: #666;
  }


.input_button {
    display: none;
    text-align: center;
    right: 20px;
    top: 8px;
    cursor: pointer;
    font-size: 20px;
    color: #aaa;
    width: 5%;
    position: absolute;
}

.input_button:hover {
    color: #666;
}


form button {
    width: 60px;
    height: 60px;
    background-color: #1B1B1B;
    color: white;
    margin: auto 10px auto auto;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}

/** Main Dropdown **/

.dropdown_content {
    width: 84%;
    height: 100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.recette_count {
    font-family: Anton;
    font-size: 26px;
    font-weight: 500;
}

.dropdown_container {
    display: flex;
    gap: 70px;
}

#dropdown-title{
    font-family: Manrope;
    font-size: 17px
}

#dropdown-menu, #dropdown-menu-appliance, #dropdown-menu-ustensil {
    max-height: 200px;
    overflow-y: auto;
    scrollbar-width: none;
}

/** Tag **/

.tag_content {
    display: flex;
    flex-direction: row;
    gap: 70px;
    width: 84%;
    margin: auto;
}

.tag_container {
    background: #FFD15B;
    width: 13rem;
    height: 3.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0.375rem;
    padding: 0.5rem 1rem;
}

/** Main recette **/


.recette_section {
    display: flex;
    justify-content: center;
    gap: 48px 85px;
    margin-top: 40px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.recette_section article {
    width: 25%;
}

.recette_imgContent {
    width: 100%;
    height: 350px;
    position: relative;
}

.recette_img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px 10px 0px 0px;
}

.recette_timer {
    position: absolute;
    display: flex;
    justify-content: center;
    width: 70px;
    top: 20px;
    right: 20px;
    border-radius: 15px;
    background: #FFD15B;
}

.recette_timer p {
    font-size: 12px;
    margin: 5px 0;
}

.recette_globalContent {
    height: 700px;
    background: white;
    border-radius: 0px 0px 10px 10px;
    padding: 40px 30px;
}

.recette_title {
    font-family: Anton;
    margin-top: 0px;
    font-size: 24px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.recette_descriptionContent {
    margin-top: 60px;
}

.recette_nameDescription {
    color: #7A7A7A;
    font-family: Manrope;
    font-size: 15px;
    letter-spacing: 2px;
    margin: 20px 0;
}

.recette_description {
    font-family: Manrope;
    height: 105px;
    font-size: 18px;
    margin: 18px 0;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.recette_ingredientContent {
    margin-top: 60px;
}
.recette_ingredientGlobalGroup {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 45px;
}

.recette_ingredientDescriptionGroup {
    width: 180px;
}

.recette_ingredient {
    margin: 0;
    font-family: Manrope;
    font-weight: 600;
}

.recette_ingredientQuantity {
    margin: 0;
    font-family: Manrope;
    color: #7A7A7A;
}