.overlay_ {
	position: fixed;
	top: 0; left: 0;
	width: 100%; height: 100%;
	backdrop-filter: blur(6px);
	background: rgba(0,0,0,0.3);
z-index: 1000;
}

.window_ {
	position: fixed;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%) scale(0.95);
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.3);
	max-width: 500px;
	width: 90%;
	max-height: 90%;
	overflow-y: auto;
	padding: 20px;
	display: none;
	opacity: 0;
	transition: opacity 0.3s ease, transform 0.3s ease;
	z-index: 1001;
}

.window_.show_ {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 600px) {
	.window_ {
		width: 100%;
	}
}

.close-btn_ {
	position: fixed;
	top: 10px;
	right: 20px;
	cursor: pointer;
	font-size: 40px;
	background: none;
	border: none;
	z-index: 2000;
	border-radius: 5px;
}