
body{
	cursor: none;
}
/*--Example 2--*/
.your-cursor2 {
	position: absolute;
	background-color: black;
	width: 10px;
	height: 10px;
	border-radius: 100%;
	z-index: 1;
	transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
	user-select: none;
	pointer-events: none;
	z-index: 10000;
	transform: scale(1);
}
.cursor-white{
	background-color: white !important;
}
.your-cursor2.active {
	opacity: 0.5;
	transform: scale(0);
}
.your-cursor2.hovered {
	opacity: 0.08;
}

.follow2 {
	position: absolute;
	background-color: rgba(192,192,192, 0.3);
	width: 40px;
	height: 40px;
	border-radius: 100%;
	z-index: 1;
	transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
	user-select: none;
	pointer-events: none;
	z-index: 10000;
	transform: translate(5px, 5px);
}
.follow2.active {
	opacity: 0.7;
	transform: scale(1.5);
}
.follow2.hovered {
	opacity: 0.08;
}

/