.popupContainer {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  overflow: auto;
  width:100%;
  height:100%;
}
.popImage {
    position: relative;
    display: block;
    transition: all 0.3s ease-in-out;
    border-radius: 6px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15),
      0 10px 10px -5px rgba(0, 0, 0, 0.1);
	object-fit: contain;
	width: 100%;
	height: 100%;	
}
.popUpBackground {
    transition: all 0.3s ease-in-out;
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
}
.active {
      background-color: rgba(0, 0, 0, 0.65);
}  
  
.img-container {
  max-width: 1200px;
  margin: 0 auto;
}

.img-container img {
  box-sizing: border-box;
  width: 25%;
  max-height: 150px;
  padding: 5px;
  object-fit: cover;
}

@media screen and (max-width: 850px) {
  .img-container img {
    width: 33%;
  }
}

@media screen and (max-width: 640px) {
  .img-container img {
    width: 50%;
  }
}