@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes fill {
	0% {
		transform: scale(0);
	}
	100% {
		transform: scale(100);
	}
}

.custom-animation-fadeIn {
	animation: fadeIn 1s forwards;
}

.custom-animation-fadeOut {
	animation: fadeIn 1s reverse forwards;
}

.custom-animation-fill {
	animation: fill 0.8s;
}
