.containerPopup{
	position: fixed;
	width:100%;
	height: 110vh;
	background: rgba(0,0,0,0.95);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index:9999;
	top:-50px;
	overflow: hidden;
	transition-duration: 0.6s;
	visibility: hidden;
	transition: visibility 1s;
}
.containerPopupOpen{
	visibility: visible;
}
.thePopup{
	width: 450px;
	background: #fff;
	border-radius: 6px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,-50%) scale(0.01);
	text-align: center;
	padding: 30px 30px 30px 25px;
	color: #333;
	transition: transform 1s, top 0.5s;
}
.thePopupOpen{
	top: 50%;
	transform: translate(-50%,-50%) scale(1);
}
.thePopup img{
	margin-bottom: 30px;
}
.thePopup p{
	font-size: 10px!important;
}
.btnPopup{
	padding:10px 60px;
	margin-top: 30px;
	background: #F26E45;
	border: 0;
	outline: none;
	cursor: pointer;
	font-size: 22px;
	font-weight: bolder;
	border-radius: 30px;
	color:#fff;
	box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}
.btnPopup:hover{
	background: #d60b2c;
}