#mainPageDiv {
  display: flex;
  height: 100%;
  width: 100%;
}
/* LEFT PANEL */
.culturesHeader {
  padding: 40px;
  border-right: 1px solid #1A3636;
  width: 350px;
}
.culturesTitle {
  margin-bottom: 20px;
}
.culturesByTypeDiv {
  height: fit-content;
}
.culture {
  width: 100%;
  padding: 20px;
  /* height: 20vh; */
  height: fit-content;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 10px;
}
.culturesDiv {
  width: 100%;
}
/* LAUNCH CULTURE BUTTON */
.lauchCultureButtonDiv {
  height: 5vh;
}

.lauchCultureButton {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 10px;
  padding: 0px 20px 0px 20px;
}

.lauchCultureButton {
  height: 100%;
}

.lauchCultureButton h4, .culturesDiv h2, .culture p, .culture h3, .culture h4 {
  color: rgb(240, 240, 240) !important;
}

.lauchCultureButton h4 {
  color: black !important;
}

/* CULTURE FILTERS */
.culturesFiltersDiv {
  width: 100%;
  margin-top: 20px;
}
.culturesFilterStyleDiv {
  width: 100%;
  margin-bottom: 20px;
}

/* FILTER BY TYPE */
.culturesFilterTypeDiv {
  float: left;
  width: 100%;
  margin-bottom: 20px;
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.culturesFilterType {
  display: flex;
  align-items: center;
}
.culturesFilterTypeDiv p {
  margin-bottom: 5px;
}
.culturesFilterType img {
  height: 20px;
}
.culturesFilterType label {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* FILTER BY STATUS */
.culturesFilterStatusDiv {
  float: left;
  width: 100%;
  margin-bottom: 20px;
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.culturesFilterStatusDiv p {
  margin-bottom: 5px;
}
.culturesFilterStatus {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.culturesFilterStatusInput {
  display: flex;
  align-items: center;
}
.culturesFilterStatusInput img {
  height: 15px;
}
.culturesFilterStatusInput label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.culturesFilterStyle {
  /* background: #677D6A;
  color: white !important; */
}

/* NO CULTURE */
.noCultureForTheMomentDiv {
  display: none;
  width: 100%;
  height: 100%;
  padding: 40px;
  /* margin-top: 100px; */
}
.noCultureForTheMoment {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 30px;
}
.noCultureForTheMoment img {
  height: 200px;
}
/* CULTURES DIV */
.allCulturesDiv {
  overflow: auto;
  width: 100%;
  padding: 40px;
}
.culturesDiv {
}
.culturesDivHeader {
  display: flex;
  gap: 20px;
  align-items: center;
}
.culturesDivHeader img {
  height: 30px;
}
.culturesDivBody {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px;
}
.culturesDiv h2, .culturesDiv h3 {
  text-transform: capitalize;
}

/* DISPLAY BY SPECIES */
.culturesBySpeciesDiv {
}
.speciesCulturesDiv {

}
.speciesCulturesDiv h2 {
  margin-bottom: 20px;
}


.cultureIconDiv {
  position: relative;
  height: 40%;
  text-align: center;
}

.cultureSpeciesIcon img {
  width: 50px;
}
.cultureStatusIcon {
  position: absolute;
  height: 15px;
}
.cultureStatusIcon img {
  height: 100%;
}
.cultureSeeMoreIcon {
  position: absolute;
  top: 0;
  right: 0;
  height: 15px;
}
.cultureSeeMoreIcon img {
  height: 100%;
}
.cultureDescriptionDiv {
  width: 100%;
  margin-top: 10px;
}

/* Statut des cultures */
.incubated, .stored {
  background-color: #1A3636;
  /* background: linear-gradient(180deg, #1A3636 0%, #2B4B4B 100%); */
}

.confluence {
  background-color: #013e59;
  /* background: linear-gradient(360deg, #002535 0%, #013E59 50%, #026A94 100%); */

}

.contaminated, .used, .archived, .extern {
  display: none;
}

.contaminated {
  background: #016047;
  /* background: linear-gradient(360deg, #003F2E 0%, #016047 50%, #028A66 100%); */

}

.archived {
  background: #723D46;
  /* background: linear-gradient(360deg, #4D5F51 0%, #677D6A 50%, #85A189 100%); */

}
.used {
  background: #677D6A;
}

.fructification {
  background: #853500;
  /* background: linear-gradient(360deg, #5E1F00 0%, #853500 50%, #A84700 100%); */
}
.extern {
  background: #585123;
  cursor: auto;
}

/* Structure interne */
.cultureHeader {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.cultureBody {
  width: 100%;
}
