.taxbiz-cart-btn {
	transform-origin: center;
}

.taxbiz-cart-btn.taxbiz-cart-updated {
	animation: taxbiz-cart-pulse 0.75s ease-in-out;
}

.taxbiz-cart-count.taxbiz-cart-count-updated {
	animation: taxbiz-cart-count-pop 0.75s ease-in-out;
}

.taxbiz-cart-live-status {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect( 0, 0, 0, 0 ) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

@keyframes taxbiz-cart-pulse {
	0%, 100% {
		transform: scale( 1 );
	}
	35% {
		transform: scale( 1.12 ) rotate( -2deg );
		filter: brightness( 1.2 );
	}
	65% {
		transform: scale( 1.06 ) rotate( 2deg );
	}
}

@keyframes taxbiz-cart-count-pop {
	0%, 100% {
		transform: scale( 1 );
	}
	50% {
		transform: scale( 1.45 );
		box-shadow: 0 0 0 8px rgba( 255, 255, 255, 0.28 );
	}
}

@media ( prefers-reduced-motion: reduce ) {
	.taxbiz-cart-btn.taxbiz-cart-updated,
	.taxbiz-cart-count.taxbiz-cart-count-updated {
		animation: none;
	}
}

