/* Gallery popup */
#popupGallery .popupshow {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
}

#popupGallery .popupshow .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999;
}

#popupGallery .popupshow .img-show {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#popupGallery .popupshow .img-show img {
  position: relative;
  max-width: 95%;
  max-height: 95%;
}

#popupGallery .popupshow .exit,
#popupGallery .popupshow .prev,
#popupGallery .popupshow .next {
  position: fixed;
  cursor: pointer;
  z-index: 99999;
}

#popupGallery .popupshow .exit {
  width: 45px;
  top: 30px;
  right: 20px;
}

#popupGallery .popupshow .prev {
  width: 35px;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
}

#popupGallery .popupshow .next {
  width: 35px;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}
