.fiore-infinite-scroll-status {
	clear: both;
	width: 100%;
	min-height: 42px;
	margin: 36px 0 10px;
	text-align: center;
	font-size: 14px;
	line-height: 1.4;
}

.fiore-infinite-scroll-status .fiore-spinner {
	display: none;
	width: 24px;
	height: 24px;
	margin: 0 auto 10px;
	border: 2px solid currentColor;
	border-top-color: transparent;
	border-radius: 50%;
	animation: fioreInfiniteSpin 0.8s linear infinite;
}

.fiore-infinite-scroll-status.is-loading .fiore-spinner {
	display: block;
}

#fiore-infinite-scroll-trigger {
	clear: both;
	width: 100%;
	height: 1px;
}

.fiore-infinite-loaded-product {
	animation: fioreInfiniteFadeIn 0.28s ease both;
}

@keyframes fioreInfiniteSpin {
	to { transform: rotate(360deg); }
}

@keyframes fioreInfiniteFadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}
