.ledmac-popup-wrapper {
	backdrop-filter:blur(3px);
    display: grid;
    inset: 0;
    opacity: 0;
    place-items: center;
    position: fixed;
    transition: opacity 300ms ease;
    visibility: hidden;
    z-index: 99999;
}

.ledmac-popup-wrapper.is-active {
    opacity: 1;
    visibility: visible;
}

.ledmac-popup-backdrop {
    background: rgba(0,0,0,0.72); /* default fallback */
    inset: 0;
    position: absolute;
}

.ledmac-popup-content {
    max-height: 92vh;
    max-width: min(92vw, 980px);
    position: relative;
    z-index: 1;
}

.ledmac-popup-content img {
    display: block;
    height: auto;
    max-height: 92vh;
    object-fit: contain;
    width: 100%;
}

.ledmac-popup-close {
	background: rgba(0,0,0,0.15);
	border: 0;
	border-radius: 0;
	color: #fff;
	cursor: pointer;
	font-size: 14px;
	height: 30px;
	position: absolute;
	right: 12px;
	top: 10px;
	width: 30px;
}
