/* ======================================================================================================================================================
Cursor bubbles
====================================================================================================================================================== */



.avia-cursor-bubbles {
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	overflow: visible;
	pointer-events: none;
}

.bubble {  
	position: absolute;
	width: 6px;
	height: 6px;
	margin: 0 auto;
/*
	border: 1px solid rgba(255,255,255,0.5);
	background: rgba(255,255,255,1);
*/

	border-radius: 50%;
	
	-webkit-backface-visibility: hidden;
-webkit-perspective: 1000;
-webkit-transform: translate3d(0,0,0);
-webkit-transform: translateZ(0);
backface-visibility: hidden;
perspective: 1000;
transform: translate3d(0,0,0);
transform: translateZ(0);
pointer-events: none;
}

