.menu-item-box {
  border: 1px solid #ccc;
  padding: 30px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
	min-height:95px;
}

.menu-item-row {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
	align-items:center;
}
.menu-item-row h3 {
  flex: 4;
}
.menu-item-row .price {
  flex: 1;
  text-align: right;
  color: #fff;
	font-size:22px;
	font-weight:bolder;
}
.menu-item-row h3 {
	margin-top:0px !important;
	font-size:22px !important;
	margin-bottom:10px;
}
.menu-item-box .desc {
	font-size:1rem;
}

/* Lightbox */
.menu-lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
}

.menu-lightbox-wrapper {
  max-width: 90%;
  max-height: 90%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-lightbox-image {
  max-width: 100%;
  max-height: 100%;
  transition: transform 0.25s ease;
  cursor: zoom-in;
  user-select: none;
}

.menu-lightbox-close {
  position: fixed;
  top: 20px;
  right: 30px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
}

