/**
 * Cancellation survey popup. Inherits the popup shell from cancel-flow.css;
 * these rules cover only the survey's own elements.
 */

.pvc-survey__description {
	color: #727272;
	font-size: 14px;
}

.pvc-survey__reasons {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 16px 0;
}

.pvc-survey__reason {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	border: 1px solid #e3ded4;
	border-radius: 8px;
	cursor: pointer;
}

.pvc-survey__reason:has(input:checked) {
	border-color: #564f78;
	background: #f8f7f3;
}

.pvc-survey__details {
	width: 100%;
	box-sizing: border-box;
	margin-bottom: 12px;
	padding: 10px 12px;
	border: 1px solid #e3ded4;
	border-radius: 8px;
	font: inherit;
}

.pvc-survey__details[hidden] {
	display: none;
}

.pvc-survey__error {
	color: #a8364f;
	font-size: 13px;
}

.pvc-survey__error[hidden] {
	display: none;
}

.pvc-survey-step[hidden] {
	display: none;
}

.pvc-survey__offer-body {
	margin: 12px 0 16px;
}
