.ag-rating-grow-layer {
	position: fixed;
	inset: 0;
	z-index: 999999;
	pointer-events: none;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ag-rating-grow-star {
	position: fixed;
	left: var(--ag-grow-left);
	top: var(--ag-grow-top);
	transform: translate(-50%, -50%) scale(1);
	font-size: var(--ag-grow-start-size);
	line-height: 1;
	color: var(--ag-grow-color, #FFD700);
	text-shadow: 0 0 30px rgba(255, 215, 0, 0.75);
	opacity: 1;
	animation: ag-rating-grow-star 10000ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}


@keyframes ag-rating-grow-star {

	0% {
		transform:
			translate(-50%, -50%)
			scale(1)
			rotate(0deg);

		opacity: 1;
	}

	20% {
		transform:
			translate(-50%, -50%)
			scale(30)
			rotate(0deg);

		opacity: 1;
	}

	50% {
		transform:
			translate(-50%, -50%)
			scale(30)
			rotate(360deg);

		opacity: 1;
	}

	90% {
		transform:
			translate(-50%, -50%)
			scale(1);

		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}