.pop_up_wrapper{
	position: fixed;
	width: 100%;
	height: 100%;
	transition: opacity 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0,0,0,0.5);
}

.pop_up_win{
	box-shadow: 0px 0px 23px #0000003b;
	border-radius: 20px;
	backdrop-filter: blur(10px);
	background: rgba(255,255,255, 0.1);
	position: relative;
	transition: opacity 0.5s, transform 0.5s;
}

.pop_up_win[hide]{
	opacity: 0;
	transform: translateY(-40px);
}

.pop_up_win[close]{
	animation: pop_close 0.3s forwards;
}

.pop_up_header{

}

.pop_up_title{

}

.pop_up_close{
	position: absolute;
	width: 40px;
	height: 40px;
	top: 0;
	right: 0;
	cursor: pointer;
}

.pop_up_close::before{
	content: '';
	display: block;
	width: 30px;
	height: 2px;
	background: #d8d8d8;
	transform: rotate(45deg);
	position: absolute;
	top: 22px;
}

.pop_up_close:after{
	content: '';
	display: block;
	width: 30px;
	height: 2px;
	background: #d8d8d8;
	transform: rotate(-45deg);
	position: absolute;
	top: 22px;
}

.pop_up_content{

}

.pop_info_wrap{
	width: 320px;
	height: 320px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	padding: 10px;
	text-align: center;
}


@media(min-width: 1200px){

}


@keyframes pop_show{
	from{
		transform: translateY(-20px);
		opacity: 0;
	}
	to{
		transform: translateY(0px);
		opacity: 1;
	}
}

@keyframes pop_close{
	from{
		transform: translateY(0px);
		opacity: 1;
	}
	to{
		transform: translateY(40px);
		opacity: 0;
	}
}