.pop_wraper{
	position: fixed;
	z-index: 100;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.56);
	display: flex;
	justify-content: center;
	align-items: center;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
	opacity: 0;
}

.pop_up_win{
	border-radius: 0px;
	padding: 30px 10px 60px;
	-webkit-transition: opacity 0.3s,transform 0.3s;
	transition: opacity 0.3s,transform 0.3s;
	color: #353535;
	background: #FFFFFF;
	width: calc(100vw - 90px);
}


.pop_up_win[hide]{
	-webkit-transform: translate(0%, -30px);
	transform: translate(0%, -30px);
	opacity: 0;
}

.pop_up_win[close]{
	-webkit-transform: translate(0%, 30px);
	transform: translate(0%, 30px);
	opacity: 0;
}

.pop_text{
	font-size: 20px;
	line-height: 24px;
	text-align: center;
	margin-top: 30px;
}