.star {
	position: fixed;
	width: 58px;
	height: 58px;
	pointer-events: none;
	transform: translate(-50%, -50%) scale(1);
	opacity: .8;
	transition: opacity 0.85s, transform 0.85s;
	filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.06));
	z-index: 9999;
	font-size: 30px;
	color: #ffcc00;
}
.star.fade-out {
	opacity: 0.1;
	transform: translate(-50%, -50%) scale(0.6);
}
