/*
Theme Name: Bili Child
Author: WebGeniusLab
Author URI: http://webgeniuslab.net
Description: WebGeniusLab team presents absolutely fresh and powerful WordPress theme. It combines new technologies and functional design that helps to showcase your content in better way. This WordPress theme is developed with attention to details, so you can create effective presentation of a website easily. Enjoy building web pages with our product!
Version: 1.0
Template: bili
Text Domain: bili-child
*/

/* ===== Custom double cursor ===== */
@media (pointer: fine) {
	html, body, a, button, input, textarea, select, label, * {
		cursor: none !important;
	}

	.nv-cursor-dot,
	.nv-cursor-ring {
		position: fixed;
		top: 0;
		left: 0;
		pointer-events: none;
		z-index: 999999;
		transform: translate3d(-50%, -50%, 0);
		will-change: transform;
	}

	/* Smooth size change on hover. transform driven by JS, so animate width/height/opacity only */
	.nv-cursor-dot,
	.nv-cursor-ring {
		transition: width .25s ease, height .25s ease, opacity .25s ease, border-color .25s ease;
	}

	/* Over interactive element: dot grows, ring shrinks */
	.nv-cursor-dot.is-hover {
		width: 12px;
		height: 12px;
	}
	.nv-cursor-ring.is-hover {
		width: 32px;
		height: 32px;
	}

	/* Solid dot — exact cursor position */
	.nv-cursor-dot {
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background: #DB8D0F;
	}

	/* Transparent ring with colored border — follows with delay */
	.nv-cursor-ring {
		width: 40px;
		height: 40px;
		border-radius: 50%;
		background: transparent;
		border: 2px solid #DB8D0F;
	}
}