.eatc-button {
	display: inline-block;
	cursor: pointer;
	border: none;
	outline: none;
	text-decoration: none;
	line-height: 1;
	-webkit-appearance: none;
	box-sizing: border-box;
}

.eatc-button:focus {
	outline: none;
}

.eatc-button.eatc-disabled {
	cursor: not-allowed;
	opacity: 0.6;
}

.eatc-button.eatc-loading {
	position: relative;
	pointer-events: none;
}

.eatc-button.eatc-loading .eatc-button-text {
	visibility: hidden;
}

.eatc-button.eatc-loading::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	height: 16px;
	margin: -8px 0 0 -8px;
	border: 2px solid currentColor;
	border-top-color: transparent;
	border-radius: 50%;
	animation: eatc-spin 0.6s linear infinite;
}

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