.lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  overflow-y: auto;
}

.lightbox-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  margin: 0 auto;
}
@media(min-width:1000px) {
.lightbox-content {
    max-width: 70% !important;
}	
}
@media(min-width:1500px) {
.lightbox-content {
    max-width: 50% !important;
}	
}

.lightbox-image-container {
  position: relative;
  text-align: center;
}

.lightbox-image {
  max-width: 100%;
  height: auto;
}

.close-icon {
  position: fixed;
  top: 20px;
  right: 50px;
  font-size: 70px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
}

.navigation-icon {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
}

@media(max-width:767px) {
	.navigation-icon {
	  font-size: 30px;
	}
	.close-icon {
	  top: 30px;
	  right: 30px;
	  font-size: 45px;
	}
}
.prev-icon {
  left: 20px;
  width: calc(48% - 40px);
  height: 300px;
  display: flex;
  align-items: center;
  padding-left: 25px;
}

.next-icon {
  right: 20px;
  width: calc(48% - 40px);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 25px;
}