/**
 * Home — Demo popup
 */

/* Demo popup */
.l1-popup[hidden] { display: none !important; }
.l1-popup {
	position: fixed;
	inset: 0;
	z-index: 1200;
	display: grid;
	place-items: center;
	padding: 1.25rem;
}
.l1-popup-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(12, 18, 34, 0.55);
	backdrop-filter: blur(4px);
}
.l1-popup-dialog {
	position: relative;
	z-index: 1;
	width: min(560px, 100%);
	max-height: min(90vh, 720px);
	overflow: auto;
	background: #fff;
	border-radius: 22px;
	padding: 1.6rem 1.5rem 1.4rem;
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.28);
	border: 1px solid var(--l1-line);
}
.l1-popup-close {
	position: absolute;
	top: 0.85rem;
	right: 0.85rem;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	background: var(--l1-soft);
	color: var(--l1-ink);
	display: grid;
	place-items: center;
	cursor: pointer;
}
.l1-popup-close:hover { background: #e8edf5; }
