	/* spinner for captcha */
	.captcha-spinner {
		display: none;
		width: 20px;
		height: 20px;
		border: 2px solid #ccc;
		border-top: 2px solid black;
		border-radius: 50%;
		animation: captcha-spin 1s linear infinite;
	}

	.captcha-element:hover {
		cursor: pointer;
	}

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

	/* input[type="checkbox"]:disabled { */
		/* for captcha */
		/* cursor: not-allowed;
	} */
