/* Pop up */
.custom-popup {
	top: 0;
	left: 0;
	overflow: hidden;
	-webkit-transition: opacity .25s ease-out;
	-moz-transition: opacity .25s ease-out;
	-ms-transition: opacity .25s ease-out;
	-o-transition: opacity .25s ease-out;
	transition: opacity .25s ease-out;
	position: fixed;
	opacity: 0;
	z-index: 99999;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	background: rgba(0, 0, 0, 0.62);
	overflow-y: scroll;
}
.custom-popup-cont.active .custom-popup {
	opacity: 1;
}
.popup-overlay {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 1;
	z-index: 998;
}
.popup-content {
	display: block;
	position: absolute;
	z-index: 999;
	width: 100%;
	max-height: 100%;
	padding: 0;
	text-align: center;
	overflow: visible;
	box-sizing: border-box;
	transform: translate(0,-50%);
	top: 50%;
}
.popup-content-inner {
	width: 94%;
	display: inline-block;
	background: url(../images/popup/popup-bg.png) no-repeat center;
	background-size: cover;
	text-align: left;
	z-index: 999;
	transform-style: preserve-3d;
	transform: rotateY(90deg);
	transition: transform 1s ease-in-out;
	margin: 4% auto;
	max-width: 792px;
	overflow: hidden;
	border-radius: 20px;
}
.custom-popup-cont.active .popup-content-inner {
	transform: rotateY(0)!important;
}
.popup-close-btn {
	color: #6249ca;
	display: block;
	text-decoration: none;
	cursor: pointer;
	font-size: 16px;
	font-family: 'Proxima_Nova_Bold';
	margin: 15px 0 0;
	font-style: italic;
}
.popup-close {
	position: absolute;
	right: 15px;
	top: 40px;
	width: 19px;
	height: 19px;
	cursor: pointer;
	z-index: 9999;
	background: url(../images/popup/close-btn.png) no-repeat center;
	padding: 10px;
}
.popup-content-overlay {
	background-color: rgb(26, 188, 156);
	opacity: 0.905926;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.popup-content-main {
	padding: 52px 70px 65px;
	text-align: center;
}
.popup-content-main img {
	display: block;
	margin: 0 auto 45px;
}
.popup-content-main h3 {
	color: #f9a342;
	font-size: 48px;
	font-family: "Open Sans", sans-serif;
	margin: 0 0 45px;
	line-height: 1.2;
	font-weight: bold;
}
.popup-content-main p {
	color: #f6f6f6;
	font-size: 33px;
	font-family: 'Open Sans';
	line-height: 1.4;
	margin: 0 auto 10px;
	font-weight: 300;
	max-width: 570px;
}
.popup-content-main a {
	background: #f9a342;
	line-height: 1.4;
	color: #f6f6f6;
	font-family: 'Open Sans';
	font-weight: bold;
	font-size: 27px;
	display: inline-block;
	text-align: center;
	padding: 10px 41px;
	border-radius: 10px;
	text-decoration: none !important;
}


@media only screen and (max-width: 768px) {
	
	.popup-content-main img {
		margin: 0 auto 25px;
	}
	
	.popup-content-main p {
		font-size: 25px;
	}
	
	.popup-content-main h3 {
		font-size: 30px;
	}
	
	.popup-content-main a {
		font-size: 22px;
		padding: 10px 20px;
	}
	
}