
/* TRAIL EFFECT */
#cursorTrailer {
    transition: 300ms ease all;
}

#trailer {
	height: 20px;
	width: 20px;
/*	background-color: white;*/
	border-radius: 20px;
	position: fixed;
	left: 0px;
	top: 0px;
	z-index: 10000;
	pointer-events: none;
	transition: opacity 0ms ease;
}

body:hover > #trailer {
	opacity: 1;
}
