/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 27 2024 | 10:01:03 */
/* De cursor wordt via een div in de BD header geplaatst */

#wpadminbar {
	cursor: auto !important; /* or cursor: default !important; */
}

#wpadminbar a {
	cursor: pointer !important;
}

body {
	cursor: none !important;
}

a, a:hover, #pages-wrapper, #pages-wrapper ul, #pages-wrapper li, #pages-wrapper a, #tags-wrapper, #tags-wrapper ul, #tags-wrapper li,  #tags-wrapper a, #tags-wrapper span  {
	cursor: unset !important;
}

/* default cursor */
.cursor {
	position: fixed;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 2px solid #fff;
	transition: transform 0.3s ease;
	transform-origin: center center;
	transform: translate(-50%, -50%);	
	pointer-events: none !important;
	z-index: 99999 !important;
	display:flex;
	justify-content:center;
	align-items:center;
}

/* CASES HOVER: bij hover op element met class .work zal de muis deze eigenschappen overnemen */
.cursor-work {
	position: fixed;
	width: 100px;
	height: 100px;
	transform-origin: center center;
	transform: translate(-50%, -50%) !important;	
	pointer-events: none !important;
	z-index: 3000 !important;
	background: url(/wp-content/uploads/2023/11/cta-view-case.svg);
	border: unset;
}

a.work {
	cursor: unset !important;
}

@media only screen and (max-width: 1119px) {
	.cursor 
	{
		display:none !important;
	}

	.cursor-work {
		display:none!important;
	}	

}