/* Ekomart — Load More / Infinite Scroll button */
.ekomart-shop-more {
	display: flex;
	justify-content: center;
	width: 100%;
	margin: 40px 0 10px;
	clear: both;
}

.ekomart-load-more {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 200px;
	padding: 14px 36px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	color: #fff;
	background: #629D23;
	border: 0;
	border-radius: 6px;
	cursor: pointer;
	transition: background-color .2s ease, transform .15s ease, opacity .2s ease;
}

.ekomart-load-more:hover,
.ekomart-load-more:focus {
	background: #629D23;
	color: #fff;
	outline: none;
}

.ekomart-load-more:active {
	transform: translateY(1px);
}

.ekomart-load-more[disabled],
.ekomart-load-more:disabled {
	cursor: wait;
	opacity: .8;
}

.ekomart-load-more-spinner {
	display: none;
	width: 16px;
	height: 16px;
	border: 2px solid rgba(255, 255, 255, .35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: ekomart-load-more-spin .7s linear infinite;
}

.ekomart-shop-more.is-loading .ekomart-load-more-spinner {
	display: inline-block;
}

@keyframes ekomart-load-more-spin {
	to { transform: rotate(360deg); }
}
