.img-popup {
  position: fixed;
  width: auto;
  max-height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: max-content;
  max-width: calc(100% - 32px);
  opacity: 0;
  pointer-events: none;
  transition: 0.5s ease;
}
.img-popup.active {
  opacity: 1;
  pointer-events: all;
}
.img-popup__link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.img-popup__image {
  max-height: 500px;
  max-width: 100%;
}
.img-popup__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  outline: none;
  box-shadow: none;
  border: 0;
  z-index: 12;
}
.img-popup__text {
  position: absolute;
  bottom: -28px;
  left: 0;
  margin: 0 !important;
}
