/* =========================================================
   Kismancs - Emlékhely képnéző
   ========================================================= */

.memorial-photo-viewer {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
}

.memorial-photo-viewer.open {
  display: block;
}

.memorial-photo-viewer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(2px);
}

.memorial-photo-viewer-box {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 96vw;
  max-height: 96vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.memorial-photo-viewer-box img {
  display: block;
  max-width: 96vw;
  max-height: 96vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0,0,0,.45);
}

.memorial-photo-viewer-close {
  position: absolute;
  right: -10px;
  top: -10px;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  border: 0;
  border-radius: 50%;

  background: #fff;
  color: #222;

  font-size: 30px;
  font-weight: 700;
  line-height: 1;

  cursor: pointer;
  box-shadow: 0 0 12px rgba(0,0,0,.35);
}
body.memorial-photo-viewer-open {
  overflow: hidden;
}