@keyframes _fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
._fade-in {
	animation: _fadeIn 0.5s ease-in-out;
}
