#launchRecipeForm {
  height: 100%;
  width: 100%;
  padding: 40px;
}


/* KNOWS INFOS */
.launchRecipeKnownInfosDiv {
  height: 12%;
  background: #677D6A;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  margin-bottom: 40px;
  padding: 15px;
  display: flex;
  align-items: center;
}
.knownRecipeBack {
  height: 100%;
  margin-right: 20px;
  cursor: pointer;
}
.knownRecipeBack img {
  height: 100%;
  transform: rotate(0.5turn);
}
.knownRInfosDiv {
  height: 100%;
  /* margin-right: 30px; */
  display: flex;
  align-items: center;
  padding: 0px 15px 0px 0px;
  display: none;
  grid-gap: 15px;
}
.knownRInfosDiv img {
  height: 100%;
  /* margin-right: 15px; */
}


/* LAUNCH CULTURE FORM */
.launchRecipeBody {
  height: 100%;
  padding-bottom: 0px;
  display: flex;
  align-items: center;
}

/* launch SPECIES */
.launchRecipeSpeciesDiv {
  height: 100%;
  width: 100%;
}
.launchRecipeSpeciesHeader {

}
.launchRecipeSpeciesBody {
  width: 100%;
  height: 90%;
}
/* SPECIES LIST */
.launchRecipeSpeciesList {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 10px;
  overflow: auto;
}
/* SPECIES */
.launchRecipeSpecies {
  height: 6vh;
  background: #1A3636;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  display: flex;
  align-items: center;
  border-radius: 2px;
  padding: 0px 20px;
  cursor: pointer;
  transition-duration: 0.2s;
}
.launchRecipeSpecies:hover {
  opacity: 0.7;
}
.launchRecipeSpecies img {
  height: 60%;
  margin-right: 20px;
}
.launchedSpecies {
  background: #677D6A;
}
.selectedSpecies {
  background: #677D6A;
}
/* FOOTER */
.launchRecipeSpeciesFooter {
  width: 100%;
  height: 10%;
}
/* VALIDATE */
.launchRecipeSpeciesValidateDiv {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: end;
}
.launchRecipeSpeciesValidate {
  /* height: 80%;
  width: fit-content;
  padding: 0px 20px;
  background: #ffc260;
  border-radius: 5px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition-duration: 0.2s; */
}
.launchRecipeSpeciesValidate:hover {
  opacity: 0.7;
}
.launchRecipeSpeciesValidate h4 {
  color: black !important;
}

/* LAUNCH INGREDIENTS */
.launchRecipeIngredientsDiv {
  height: 100%;
  width: 100%;
}
/* BODY */
.launchRecipeIngredientsBody {
  height: 90%;
  width: 100%;
  overflow: auto;
}
.launchRecipeIngredientsList {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px;
}
/* INGREDIENT */
.launchRecipeIngredientDiv {
  height: fit-content;
  margin-bottom: 15px;
  background: #1A3636;
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 5px;
}
.launchRecipeIngredientHeader {
  height: 6vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}
.launchRecipeIngredientTitle {
  height: 100%;
  display: flex;
  align-items: center;
}
.launchRecipeIngredientTitle img {
  height: 100%;
  margin-right: 10px;
}
.launchRecipeIngredientParams {
  height: 100%;
}
.launchRecipeIngredientDelete {
  height: 100%;
  cursor: pointer;
  transition-duration: 0.2s;
}
.launchRecipeIngredientDelete:hover {
  opacity: 0.7;
}
.launchRecipeIngredientDelete img {
  height: 100%;
}
.launchRecipeIngredientBody {
  width: 88%;
  position: relative;
  padding: 10px;
  width: 100%;
  flex-direction: column;
}
.launchRecipeIngredientBody input, .launchRecipeIngredientBody select {
  height: 6vh;
  width: 100%;
  font-size: 15px;
  margin-top: 10px;
}
/* NAME */
.launchRingredientName {

}
/* SEARCH */
.launchRingredientNameSearchResultsDiv {
  position: absolute;
  display: none;
}
.launchRingredientNameSearchResults {
  cursor: pointer;
  /* padding: 15px; */
}
.launchRSearchResult {
  background: #1A3636;
}
/* QUANTITY */
.launchRecipeIngredientQuantity {
  display: flex;
  gap: 10px;
}
.launchRingredientQuantity {

}
/* UNIT */
.launchRingredientUnit {

}
/* ADD INGREDIENT */
.launchRecipeAddIngredientToRecipeDiv {
  width: 100%;
  /* margin-top: 10px; */
}
.launchRecipeAddIngredientToRecipe {
  /* width: 250px;
  height: 6vh;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  background: #1A3636;
  cursor: pointer;
  transition-duration: 0.2s; */
}
/* INGREDIENT SEARCH MENU */
.launchRingredientNameSearchResultsDiv {
  position: absolute;
  padding: 5px;
  background: #1A3636;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 2px;
  display: none;
}
.ingredientNameSearchResults {

}
.searchResult {
  cursor: pointer;
  padding: 15px;
  display: flex;
  align-items: center;
}
.searchResult img {
  height: 30px;
  margin-right: 10px;
}
/* FOOTER */
.launchRecipeIngredientsFooter {
  width: 100%;
  height: 10%;
}
.launchRecipeIngredientsValidateDiv {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: end;
}
/* .launchRecipeIngredientsValidate {
  height: 80%;
  width: fit-content;
  padding: 0px 20px;
  background: #ffc260;
  border-radius: 5px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition-duration: 0.2s;
}
.launchRecipeIngredientsValidate:hover {
  opacity: 0.7;
}
.launchRecipeIngredientsValidate h4 {
  color: black !important;
} */

/* LAUNCH INSTRUCTIONS */
.launchRecipeInstructionsDiv {
  height: 100%;
  width: 100%;
}
.launchRecipeInstructionsBody {
  height: 90%;
}
/* INSTRUCTIONS */
.launchRecipeInstructions {
  height: 100%;
}
.launchRecipeInstructionStep {
  display: flex;
  align-items: center;
  width: 100%;
  height: 80px;
  gap: 20px;
  background-color: #1A3636;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 0px 20px;
  border-radius: 5px;
  margin-bottom: 20px;
}
.launchRecipeInstructionStepNumber {

}
.launchRecipeInstructionStepText {
  width: 100%;
}
.launchRecipeInstructionStepText textarea {
  height: 100%;
  margin-top: 0px !important;
}
.launchRecipeInstructionStepRemove {
  cursor: pointer;
  height: 30%;
}
.launchRecipeInstructionStepRemove img {
  height: 100%;
}
.launchRecipeAddInstructionStepDiv {

}
.launchRecipeAddInstructionStep {
  /* width: 250px;
  height: 6vh;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  background: #1A3636;
  cursor: pointer; */
}
.launchRecipeInstructionsFooter {
  height: 10%;
}
/* VALIDATE */
.launchRecipeInstructionsValidateDiv {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: end;
}
.launchRecipeConfirmButton {
  margin: 0 auto;
}
