[data-ecore-incremental-list="1"] > .ecore-incremental-list__navigation {
	display:none;
}

.ecore-incremental-list__status {
	box-sizing:border-box;
	clear:both;
	color:#666;
	font-size:13px;
	line-height:20px;
	min-height:20px;
	padding:10px;
	text-align:center;
	width:100%;
}

.ecore-incremental-list__status[hidden] {
	display:none !important;
}

.ecore-incremental-list__status--loading::before {
	animation:ecore-incremental-list-spin 0.8s linear infinite;
	border:2px solid #bbb;
	border-right-color:#444;
	border-radius:50%;
	content:"";
	display:inline-block;
	height:12px;
	margin-right:7px;
	vertical-align:-2px;
	width:12px;
}

.ecore-incremental-list__status--error {
	color:#8a2c2c;
}

.ecore-incremental-list__action {
	background:#f5f5f5;
	border:1px solid #bbb;
	border-radius:3px;
	color:#333;
	cursor:pointer;
	font:inherit;
	margin-left:8px;
	padding:3px 9px;
}

.ecore-incremental-list__item--pending {
	opacity:0;
}

.ecore-incremental-list__item--revealed {
	opacity:1;
	transition:opacity 180ms ease-out;
}

@keyframes ecore-incremental-list-spin {
	to { transform:rotate(360deg); }
}

@media (prefers-reduced-motion:reduce) {
	.ecore-incremental-list__status--loading::before {
		animation:none;
	}

	.ecore-incremental-list__item--revealed {
		transition:none;
	}
}
