.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;
}

.lightbox_slider_container{
  width: 75%;
  height: 100%;
  border-radius: 10px;
  border: 1px solid #ff3131;
  overflow: hidden;
  padding: 0;
  margin: 0;
  box-sizing: border-box;

}

.lightbox_slider{
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.lightbox_previous, .lightbox_next {
  background-color: transparent;
  border: none;
  margin: 0 10px;
  font-size: 80px;
  font-weight: 600;
  cursor: pointer;
  color: #ff3131;
}

.lightbox_slide {
  width: 100%;
  height: 100%;
}

.lightbox_slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox_dots_container{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
}

.lightbox_dot{
  border: none;
  border-radius: 50%;
  height: 10px;
  width: 10px;
  padding: 0;
  background-color:#bdbdbd;
  margin: 1% 1%;
  margin-bottom: 0;
}

.lightbox_active_dot {
  background-color: #ff3131;
}


.outer_lightbox_cont{
  width: 100%;
  height: 75%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox_close{
  position: absolute;
  right: 1%;
  top: 1%;
}

.lightbox_close:hover{
  cursor: pointer;
}

.lightbox_dot:hover{
  cursor: pointer;
}

.lightbox_next:hover, .lightbox_previous:hover{
  cursor: pointer;
}