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

#custom-lightbox-content {
  position: relative;
  max-width: 850px;
  width: calc(100% - 20px);
  margin: 0 10px;
  box-sizing: border-box;
	background:white;
}

#custom-lightbox-content img {
  width: 100%;
  height: auto;
	padding:24px;
}

#custom-lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: black;
	z-index:999;
}

#custom-lightbox-close svg {
  width: 24px;
  height: 24px;
  fill: black;
}

@media only screen and (max-width: 768px) {
	#custom-lightbox-content img{
		padding-top:36px;
			padding-left:8px;
			padding-bottom:8px;
			padding-right:8px;
	}
}

@media only screen and (min-width: 769px) {
	#custom-lightbox-content img{
		padding:36px;
	}
}

