/**
 * Circle Pop CSS
 *
 * Copyright 2017 Josh Tere
 * Released under the MIT License
 * http://www.joshtere.com
 */
 
.circlepop-container {
position:fixed;
top:0px;
left:0px;
right:0px;
bottom:0px;
width:100%;
height:100%;
pointer-events:none;
z-index:1100;
}

	.circlepop {
	position:absolute;
	width:5000px;
	height:5000px;
	margin-top:-2500px;
	margin-left:-2500px;
	border-radius:50%;
	background-color:#ffffff;
	transition:opacity 0.2s linear, transform 0.6s linear;
	transform:scale(0.0000001);
	transform-origin:50% 50%;
	}
	
	.circlepop.fadein {
	opacity:0.2;
	}
	
	.circlepop.pop {
	opacity:1;
	transform:none;
	}