/**
 * Web Ok Honeypot Lite for CF7 — hide the honeypot field from human users.
 *
 * Uses offscreen positioning rather than display:none or visibility:hidden,
 * because some bots are smart enough to skip fields hidden with those methods.
 */
.cf7-honeypot-wrap {
	position: absolute !important;
	left: -9999px !important;
	height: 0 !important;
	width: 0 !important;
	overflow: hidden !important;
	opacity: 0 !important;
}
