.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;
  max-height: 90vh;
}

.close-icon {
    position: fixed;
    top: 20px;
    right: 50px;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    font-size: 28px;
    font-weight: 700;
    color: #6B6B6B;
    background: #fff !important;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    line-height: 36px;
    text-align: center;
}
.close-icon:hover {
	background:#f4f4f4 !important;
}

.navigation-icon {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  cursor: pointer;
  z-index: 10;
}
.navigation-icon i {
	color: #1C1C2E !important;
	padding: 0 !important;
}

.lightbox-image {
  border-radius: 16px !important;
}

@media(max-width:767px) {
	.close-icon {
	  top: 30px;
	  right: 30px;
	}
	.prev-icon {
    width: 35px !important;
    height: 35px !important;
	}
	.next-icon {
    width: 35px !important;
    height: 35px !important;
	}
}
.prev-icon {
	left:20px;
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 64px;
    height: 64px;	
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 0;
}
.prev-icon:hover {
	background:#f4f4f4;
}
.next-icon {
	right:20px;
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 64px;
    height: 64px;	
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 0;
}
.next-icon:hover {
	background:#f4f4f4;
}