.nw-gp-infinite-active .nw-gp-pagination {
	display: none !important;
}

.nw-gp-infinite-marker {
	clear: both;
	display: block;
	width: 100%;
	height: 1px;
}

.nw-gp-infinite-status {
	clear: both;
	display: block;
	width: 100%;
	min-height: 36px;
	margin: 24px 0;
	text-align: center;
	font-size: 14px;
	line-height: 36px;
	color: #666;
}

.nw-gp-infinite-status.is-idle {
	visibility: hidden;
}

.nw-gp-infinite-status.is-loading span::before {
	display: inline-block;
	width: 18px;
	height: 18px;
	margin-right: 9px;
	border: 2px solid rgba(229, 16, 63, .2);
	border-top-color: #e5103f;
	border-radius: 50%;
	vertical-align: -4px;
	content: '';
	animation: nw-gp-spin .7s linear infinite;
}

.nw-gp-infinite-retry {
	margin-left: 10px;
	padding: 8px 15px;
	border: 0;
	border-radius: 5px;
	background: #e5103f;
	color: #fff;
	font-weight: 600;
	cursor: pointer;
}

.nw-gp-infinite-retry:hover {
	background: #bd0d34;
}

@keyframes nw-gp-spin {
	to {
		transform: rotate(360deg);
	}
}

