.dsw-survey {
	display: flex;
	flex-direction: column;
	gap: 14px;
	width: 100%;
	padding: 22px;
	border: 0;
	border-radius: 8px;
	background: #ffffff;
	color: #1f2937;
	box-sizing: border-box;
}

.dsw-survey *,
.dsw-survey *::before,
.dsw-survey *::after {
	box-sizing: border-box;
}

.dsw-survey__question {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.35;
}

.dsw-survey__choices {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.dsw-survey__button,
.dsw-survey__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	padding: 10px 16px;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	background: #f8fafc;
	color: #111827;
	font: inherit;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.dsw-survey__button:hover,
.dsw-survey__button:focus,
.dsw-survey__submit:hover,
.dsw-survey__submit:focus {
	border-color: #2563eb;
	background: #eef4ff;
}

.dsw-survey__button:active,
.dsw-survey__submit:active {
	transform: translateY(1px);
}

.dsw-survey__button[disabled],
.dsw-survey__submit[disabled] {
	cursor: progress;
	opacity: 0.72;
}

.dsw-survey__icon {
	font-size: 18px;
	line-height: 1;
}

.dsw-survey__feedback {
	display: grid;
	gap: 10px;
}

.dsw-survey__feedback[hidden],
.dsw-survey__choices[hidden] {
	display: none;
}

.dsw-survey__feedback-label {
	font-weight: 700;
	line-height: 1.35;
}

.dsw-survey__textarea {
	width: 100%;
	min-height: 112px;
	padding: 12px;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	background: #ffffff;
	color: inherit;
	font: inherit;
	line-height: 1.45;
	resize: vertical;
}

.dsw-survey__submit {
	justify-self: start;
	background: #2563eb;
	border-color: #2563eb;
	color: #ffffff;
}

.dsw-survey__submit:hover,
.dsw-survey__submit:focus {
	background: #1d4ed8;
	border-color: #1d4ed8;
}

.dsw-survey__message {
	min-height: 1.4em;
	font-size: 14px;
	line-height: 1.4;
	color: #166534;
}

@media (max-width: 480px) {
	.dsw-survey {
		padding: 18px;
	}

	.dsw-survey__choices {
		flex-direction: column;
	}

	.dsw-survey__button,
	.dsw-survey__submit {
		width: 100%;
	}
}
