@keyframes clip-bottom-in {
	from {
		clip-path: inset(0 0 100% 0);
		translate: 0 100%;
	}

	to {
		clip-path: inset(0 0 0 0);
		translate: 0 0;
	}
}

@keyframes fade-in {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fade-out {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}