<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.image-preview {
	z-index: 10;
}


.image-preview div {
	visibility: hidden;
	position: fixed;
	top: 5%;
	right: 5%;
	bottom: 5%;
	left: 5%;
	z-index: 75000;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.image-preview div:before {
	content: '';
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 74000;
	background-color: rgba(0, 0, 0, 0);
	transition: all 0.5s ease-out;
}

.image-preview div img {
	position: relative;
	z-index: 77000;
	max-width: 100%;
	max-height: 100%;
	margin-left: -9999px;
	opacity: 0;
	transition-property: all, opacity;
	transition-duration: 0.5s, 0.2s;
	transition-timing-function: ease-in-out, ease-out;
}

.image-preview div:target {
	visibility: visible;
}

.image-preview div:target:before {
	background-color: rgba(0, 0, 0, 0.7);
}

.image-preview div:target img {
	margin-left: 0px;
	opacity: 1;
}
</pre></body></html>