@mixin lui_is_animated($name, $loop: false) {
	@extend %#{$cleanNamespace}-animated;

	animation-name: unquote(str-camelcase($name));

	@if $loop {
		animation-iteration-count: infinite;
	}
}
