.menu-item-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: flex-end;
  /*** Background */
  background-image: linear-gradient(to left, #696969, #3a3a3a);
  border-radius: 16px;
}
.menu-item-3x-container {
  display: flex;
  flex-direction: column;
  /* flex-wrap: wrap;
  align-content: center; */
  /*** Background */
  background-image: linear-gradient(to left, #696969, #3a3a3a);
  border-radius: 16px;
}
.img-x3-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}
.item-x3-container {
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  margin: 0.9rem;
  width: 90%;
}
.item-x3 {
  display: flex;
  flex-direction: column;
}
.menu-img {
  width: 100%;
  height: 100%;
}
.menu-img-half {
  width: 50%;
  height: 50%;
}
.menu-item {
  width: 30%;
  height: 30%;
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
}
.menu-3x-image {
  padding: 0.9rem;
  display: flex;
  flex-direction: row;
  width: 30%;
  height: 30%;
}
.menu-item-half {
  width: 30%;
  height: 30%;
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.menu-description {
  font-size: 24px;
  font-weight: bold;
  color: #ffc803;
}
.menu-extra-description {
  font-size: 20px;
  color: #ffc803;
}
.menu-control-container {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
@media only screen and (max-width: 600px) {
  .menu-item {
    width: 40%;
    height: 40%;
    padding: 0.5rem 0.2rem;
  }
  .menu-3x-image {
    width: 40%;
    height: 40%;
    padding: 0.5rem 0.2rem;
  }
}

.hide {
  display: none;
}
