.popup-bg {
	position: fixed;
	z-index: 9999999;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.6);
	display: none;
	justify-content: center;
	align-items: center;
}
.popup-bg.active {
	display: flex;
}
.popup {
	display: flex;
	justify-content: end;
	width: 100%;
	max-width: 60rem;
	aspect-ratio: 1.7;
	background: url("assets/images/pop_up.png") center/cover;
}

.popup-close {
	width: 4rem;
	height: 4rem;
	background: url("assets/images/close.png") center/cover;
}
.popup-close:hover {
	opacity: 0.5;
	cursor: pointer;
}
