.inquiry-consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	width: 100%;
	min-width: 0;
	margin: 4px 0 8px;
	padding: 8px 4px;
	color: #625e57;
	font-family: inherit;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.55;
	text-align: left;
	cursor: pointer;
}

.inquiry-consent__text {
	flex: 1;
	min-width: 0;
	overflow-wrap: anywhere;
}

.inquiry-consent .inquiry-consent__checkbox {
	-webkit-appearance: none;
	appearance: none;
	flex: 0 0 16px;
	width: 16px;
	height: 16px;
	min-height: 0;
	margin: 2px 0 0;
	padding: 0;
	border: 1px solid #8b857c;
	border-radius: 4px;
	background-color: #f6f3ef;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 12px 12px;
	cursor: pointer;
	transition: background-color 150ms ease, border-color 150ms ease;
}

.inquiry-consent .inquiry-consent__checkbox:checked {
	border-color: #625e57;
	background-color: #625e57;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='m3 8 3 3 7-7' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.inquiry-consent .inquiry-consent__checkbox:focus-visible {
	outline: 2px solid #625e57;
	outline-offset: 3px;
}

.inquiry-consent .inquiry-consent__checkbox:disabled {
	opacity: .6;
	cursor: wait;
}

@media (forced-colors: active) {
	.inquiry-consent .inquiry-consent__checkbox {
		-webkit-appearance: auto;
		appearance: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	.inquiry-consent .inquiry-consent__checkbox {
		transition: none;
	}
}
