.dsp-popup-target {
  cursor: zoom-in;
}

.dsp-popup {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
}

.dsp-popup.is-open {
  display: flex;
}

.dsp-popup__content {
  margin: 0;
  max-width: 97vw;
  max-height: 96vh;
}

.dsp-popup__image {
  display: block;
  max-width: 97vw;
  max-height: 94vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  background: #fff;
}

.dsp-popup__caption {
  display: none;
}

.dsp-popup__close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 44px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.dsp-popup__close:hover,
.dsp-popup__close:focus {
  background: transparent;
  opacity: 0.9;
}

body.dsp-popup-open {
  overflow: hidden;
}
