@charset "utf-8";
/* CSS Document */
*{
    cursor: none;
}

.inner-cursor {
	position: fixed;
	left: 6px;
	width: 6px;
	height: 6px;
	transform: translate(-50%, -50%);
	background-color: #fff;
	mix-blend-mode: difference;
	border-radius: 50%;
	pointer-events: none;
	transition: width 1s, height 1s;
	
} 

.inner-cursor.grow {
	width: 25px;
	height: 25px;
	transition: width 1s, height 1s;
	
}