.lazy-load-sentinel {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 72px;
	padding: 18px 0;
	text-align: center;
}

.lazy-load-sentinel[hidden],
.lazy-load-retry[hidden] {
	display: none !important;
}

.lazy-load-message {
	color: #750a90;
	font-size: 0.95rem;
}

.lazy-load-sentinel.is-loading .lazy-load-message::before {
	animation: gallery-spin 0.8s linear infinite;
	border: 2px solid rgba(117, 10, 144, 0.2);
	border-radius: 50%;
	border-top-color: #750a90;
	content: "";
	display: inline-block;
	height: 18px;
	margin-right: 8px;
	vertical-align: -4px;
	width: 18px;
}

.lazy-load-retry {
	background: #750a90;
	border: 0;
	color: #fff;
	cursor: pointer;
	margin-top: 10px;
	padding: 8px 16px;
}

.empty-gallery-message {
	padding: 40px 0;
	text-align: center;
}

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