@media (min-width:601px) {
	body {cursor:default;}  
	/* custom cursor */
	.cursor {
		position: fixed;
		width: 15px;
		height: 15px;
		border-radius: 50%;
		background-color: rgba(255,0,0,0.2);
		pointer-events: none;
	/*	mix-blend-mode: difference;  */
		z-index: 999;
		visibility: hidden;
		opacity:0;
		transition: opacity 0.3s, transform 0.2s;
		-webkit-transition: opacity 0.3s, transform 0.2s;  
	}
	.cursor.on {
		visibility:visible;
		opacity:0.5;
	}
}