:root {
	--agdpr-red: #E31E24;
	--agdpr-red-dark: #B4151A;
	--agdpr-black: #101012;
	--agdpr-gray-100: #f4f4f6;
	--agdpr-gray-200: #e7e7ea;
}

.agdpr-field {
	font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
	margin-bottom: 18px;
}

.agdpr-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
	padding: 12px 14px;
	border: 2px solid var(--agdpr-gray-200);
	border-radius: 10px;
	background: var(--agdpr-gray-100);
	transition: border-color .16s ease, background .16s ease;
}
.agdpr-checkbox:hover {
	border-color: var(--agdpr-red);
}

.agdpr-checkbox input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.agdpr-box {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	margin-top: 1px;
	border-radius: 6px;
	border: 2px solid var(--agdpr-gray-200);
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .16s ease, border-color .16s ease;
}
.agdpr-box svg {
	width: 12px;
	height: 12px;
	color: #fff;
	opacity: 0;
	transform: scale(0.6);
	transition: opacity .14s ease, transform .14s ease;
}

.agdpr-checkbox input:checked ~ .agdpr-box {
	background: var(--agdpr-red) !important;
	border-color: var(--agdpr-red) !important;
}
.agdpr-checkbox input:checked ~ .agdpr-box svg {
	opacity: 1;
	transform: scale(1);
}
.agdpr-checkbox input:focus-visible ~ .agdpr-box {
	outline: 2px solid var(--agdpr-red);
	outline-offset: 2px;
}
.agdpr-checkbox:has(input:checked) {
	border-color: var(--agdpr-red);
	background: #ffffff;
}

.agdpr-text {
	font-size: 13px;
	line-height: 1.5;
	color: var(--agdpr-black);
}
.agdpr-text a {
	color: var(--agdpr-red);
	font-weight: 700;
	text-decoration: underline;
}
.agdpr-text a:hover {
	color: var(--agdpr-red-dark);
}
