#headerDiv {
  height: 100%;
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
}
.logoDiv {
  height: 100%;
  width: fit-content;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.logoDiv img {
  height: 80%;
  cursor: pointer;
}
.cultureInfos {
  height: 5vh;
  padding: 20px;
  display: flex;
  align-items: center;
}
.cultureIcons {
  height: 100%;
  margin-right: 20px;
}
/* RIGHT */
.rightHeaderDiv {
  display: flex;
  justify-content: end;
  gap: 40px;
}
/* GO BACK TO LAUNCH CULTURE */
.goBackLaunchCultureDiv {
  display: flex;
  justify-content: end;
  width: fit-content;
  height: 100%;
}
.goBackLaunchCultureDiv img {
  height: 100%;
  cursor: pointer;
}
/* GO BACK TO LAUNCH RECIPE */
.goBackLaunchRecipeDiv {
  display: flex;
  justify-content: end;
  width: fit-content;
  height: 100%;
}
.goBackLaunchRecipeDiv img {
  height: 100%;
  cursor: pointer;
}
/* GO BACK POPUP DIV */
.goBackPopUp {
  position: absolute;
  width: 220px;
  margin-top: 7vh;
  padding: 20px;
  background: #1A3636;
  border-radius: 5px;
}
.goBackPopUpDivHeader {
  height: 2vh;
  display: flex;
  justify-content: end;
  margin-bottom: 10px;
}
.goBackPopUpDiv {

}
/* ACCOUNT */
.accountDiv {
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.accountDiv img {
  height: 80%;
}

/* ACCOUNT POPUP MENU */
#accountMenu {
  display: none;
  position: absolute;
  z-index:1;
  right: 0px;
  /* width: 300px; */
  background: #1A3636;
  padding: 40px;
  border-radius: 0px 0px 0px 5px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.accountMenuList {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.accountMenuItem {
  cursor: pointer;
  gap:20px;
}
.accountMenuItem img {
  height: 20px;
}
.closeAccountMenu {
  margin-top: 10px;
  cursor: pointer;
}
.closeAccountMenu p {
  font-size: 12px;
}
