.ht_ctc_entry_animation {
	animation-duration: .4s;
	animation-fill-mode: both;
	animation-delay: 0s;
	animation-iteration-count: 1;
}

@keyframes ht_ctc_anim_corner {
	0% {
		opacity: 0;
		transform: scale(0);
	}
	
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

.ht_ctc_an_entry_corner {
	animation-name: ht_ctc_anim_corner;
	animation-timing-function: cubic-bezier(.25, 1, .5, 1);
	transform-origin: bottom var(--side, right);
}