.backdrop-popup {
	position: fixed;
	inset: 0;
	z-index: 999;
	background-color: rgb(0 0 0 / 59%);
	display: none;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(5px);
}

.content-popup {
	max-width: 620px;
	padding: 20px;
	opacity: 0;
	transform: scale(0.95);
	transition: all 0.3s ease;
}

@media (max-width: 600px) {
	.content-popup {
		max-width: 400px;
	}
}
