/* =========================================================
   ECA SPINNER STYLES
   ========================================================= */
.eca-spinner-overlay {
	position: absolute;
	inset: 0;
	width: 100%; 
	height: 100%;
	background: rgba(255, 255, 255, 0.7);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	border-radius: 8px;
}	
.eca-spinner {
	text-align: center;
}
.eca-spinner p {
	font-size: 14px;
}
.eca-spinner-ring {
	width: 48px;
	height: 48px;
	border: 5px solid #d8d8d8;
	border-top-color: var(--section-color) !important;
	border-radius: 50%;
	animation: eca-spin 0.8s linear infinite;
	margin: 0 auto 10px;
	box-sizing: border-box;
}
@keyframes eca-spin {
	to {
		transform: rotate(360deg);
	}
}

/* =========================================================
   ECA ACCESS PLUGIN STYLES
   ========================================================= */
#ecaContainer {
	
}
#ecaPagingTop,
#ecaPagingBottom {
	display: none;
}

