@keyframes msaFadeUp {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.msa-chat-bubble[data-msa-animate="1"] {
	animation: msaFadeUp 0.45s ease both;
}

@media (prefers-reduced-motion: reduce) {
	.msa-chat-bubble {
		animation: none !important;
		opacity: 1;
		transform: none;
	}

	html {
		scroll-behavior: auto;
	}
}
