#lightbox {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  z-index: 99999999; /* <-- aumentato */
}


#lightbox img {
  max-width: 100%;
max-height: 80vh;
  box-shadow: 0 0 20px black;
  border-radius: 8px;
}

#lightbox.hidden {
  display: none;
}

#lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

#lightbox-description {
  margin-top: 10px;
  color: white;
  font-size: 13px;
  font-style: italic;
  text-align: center;
}

#TestoSanto .lazy {
	cursor:pointer;
}