.lightbox {
  display: none;
  position: fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.919);
  z-index: 9999;
}

.lightboxSliderCont{
  width: 75%;
  height: 100%;
  border-radius: 10px;
  border: 1px solid #04b4ec;
  overflow: hidden;
  padding: 0;
  margin: 0;
  box-sizing: border-box;

}

.lightboxSlider{
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.lightboxPrev, .lightboxNext {
  background-color: transparent;
  border: none;
  margin: 0 10px;
  font-size: 80px;
  font-weight: 600;
  cursor: pointer;
  color: #04b4ec;
}

.lightboxSlide {
  width: 100%;
  height: 100%;
}

.lightboxSlide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightboxDotsCont{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
}

.lightboxDot{
  border: none;
  border-radius: 50%;
  height: 10px;
  width: 10px;
  padding: 0;
  background-color:#bdbdbd;
  margin: 1% 1%;
  margin-bottom: 0;
}

.lightboxActiveDot {
  background-color: #04b4ec;
}


.outerLightboxCont{
  width: 100%;
  height: 75%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightboxClose{
  position: absolute;
  right: 1%;
  top: 1%;
}

.lightboxClose:hover{
  cursor: pointer;
}

.lightboxDot:hover{
  cursor: pointer;
}

.lightboxNext:hover, .lightboxPrev:hover{
  cursor: pointer;
}