.tagList {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
    width: 80%;
    margin: 0 10%;
}

.optionCheck {
    margin-right: 10px;
}

.row {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}

.column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.chip-label {
    opacity: 1;
    transition: opacity 200ms ease-in;
}

.chip-label:hover {
    opacity: 0.8;
}

.chip-label input {
    position: absolute;
    left: -9999px;
}

.ingredientForm {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.ingredientForm input[placeholder="Quantité"],
.ingredientForm input[placeholder="Nom"] {
    width: 20%;
}


.unitField {
    width: 10%;
}

.stepForm {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stepForm input  {
    width: 90%;
}

.infoRecette {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.infoRecette .column {
    margin: 50px;
}

.newTagsForm {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.containerIngredient {
    display: flex;
    flex-direction: column;
}

.add-edit input, .add-edit select {
    height: 40px;
    margin: 10px;
    padding: 10px;
    font-size: 1.1rem;
}

.stepForm input {
    width: 80%;
}

.newTagsForm input, .newTagsForm select {
    width: 40%;
}

.infoRecette select {
    height: auto;
}

.ingredientForm label, .stepForm label, .newTagsForm label {
    display: none;
}

.tags {
    width: 60%;
    margin-left: 20%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.chip-edit {
    border-radius: 25px;
    margin: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    padding: 0 15px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.chip-edit label {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
}