.section-dry-quiz {
	position: relative;
}

.section-dry-quiz .section-header {
	max-width: 649px;
	margin-bottom: 12px;
}

.section-dry-quiz__desc {
	max-width: 875px;
	margin: 0 0 32px;
	font-size: 16px;
	line-height: 24px;
	color: #031537;
}

.dry-quiz {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
}

.dry-quiz__main {
	flex: 1 1 auto;
	min-width: 0;
	max-width: 872px;
}

.dry-quiz__step[hidden] {
	display: none;
}

.dry-quiz__q {
	margin: 0;
	padding: 0;
	font-size: 20px;
	font-weight: 600;
	line-height: 28px;
	color: #031537;
	list-style-position: inside;
}

.dry-quiz__hint {
	margin: 10px 0 22px;
	font-size: 14px;
	line-height: 22px;
	color: #031537;
	opacity: 0.6;
}

.dry-quiz__cards {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: flex-start;
}

.dry-quiz__card {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 280px;
	padding: 10px;
	box-sizing: border-box;
	cursor: pointer;
	background: transparent;
}

.dry-quiz__card.is-selected {
	background: #fff;
}

.dry-quiz__card img {
	display: block;
	width: 100%;
	height: 160px;
	object-fit: cover;
	border-radius: 0;
}

.dry-quiz__radio {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 16px;
	line-height: 24px;
	color: #031537;
}

.dry-quiz__card.is-selected .dry-quiz__radio span:last-child {
	font-weight: 500;
}

.dry-quiz__radio input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	pointer-events: none;
}

.dry-quiz__radio-ui {
	flex: 0 0 16px;
	width: 16px;
	height: 16px;
	border: 1px solid #031537;
	border-radius: 50%;
	box-sizing: border-box;
	position: relative;
	background: #fff;
}

.dry-quiz__radio input:checked + .dry-quiz__radio-ui {
	border-color: #1bb2e6;
}

.dry-quiz__radio input:checked + .dry-quiz__radio-ui::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 6px;
	height: 6px;
	margin: -3px 0 0 -3px;
	border-radius: 50%;
	background: #1bb2e6;
}

.dry-quiz__radio--plain {
	padding: 8px 0;
}

.dry-quiz__nav {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 22px;
}

.dry-quiz__back {
	min-width: 148px;
	height: 48px;
	padding: 12px 32px;
	border: 1px solid rgba(3, 21, 55, 0.2);
	background: #fff;
	color: #031537;
	font: inherit;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	cursor: pointer;
}

.dry-quiz__next,
.dry-quiz__nav .btn {
	min-height: 48px;
	padding: 12px 48px;
}

.dry-quiz__aside {
	flex: 0 0 430px;
	width: 430px;
	box-sizing: border-box;
	padding: 28px;
	background: #dcf6ff;
	border: 1px solid #1bb2e6;
}

.dry-quiz__aside-title {
	margin: 0 0 22px;
	font-size: 24px;
	font-weight: 600;
	line-height: 34px;
	color: #031537;
}

.dry-quiz__params {
	list-style: none;
	margin: 0;
	padding: 0 0 16px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.15);
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 16px;
	line-height: 24px;
	color: #031537;
}

.dry-quiz__params span {
	opacity: 0.5;
}

.dry-quiz__params span.is-set {
	opacity: 1;
}

.dry-quiz__totals {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 16px 0 22px;
	font-size: 16px;
	line-height: 24px;
	color: #031537;
}

.dry-quiz__totals p {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
	margin: 0;
}

.dry-quiz__totals strong {
	font-weight: 500;
	line-height: 28px;
	opacity: 0.6;
	text-align: right;
}

.dry-quiz__totals strong.is-set {
	opacity: 1;
}

.dry-quiz__bars {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 22px;
}

.dry-quiz__bar-row {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	line-height: 21px;
	color: #031537;
	opacity: 0.6;
	margin-bottom: 8px;
}

.dry-quiz__bar-track {
	height: 4px;
	background: rgba(27, 178, 230, 0.2);
}

.dry-quiz__bar-fill {
	display: block;
	height: 4px;
	background: #1bb2e6;
}

.dry-quiz__submit {
	width: 100%;
	height: 54px;
}

.dry-quiz__note {
	margin: 14px 0 0;
	font-size: 14px;
	line-height: 22px;
	color: #031537;
	opacity: 0.6;
}

.dry-quiz__note + .dry-quiz__note {
	margin-top: 2px;
}

.dry-quiz__fields,
.dry-quiz__size {
	display: flex;
	flex-direction: column;
	gap: 14px;
	max-width: 520px;
}

.dry-quiz__field-label {
	margin: 0 0 8px;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	color: #031537;
}

.dry-quiz__inline {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin-bottom: 8px;
}

.dry-quiz__input {
	width: 100%;
	max-width: 320px;
	height: 48px;
	padding: 12px 16px;
	border: 1px solid rgba(3, 21, 55, 0.2);
	background: #fff;
	font: inherit;
	font-size: 16px;
	color: #031537;
	box-sizing: border-box;
}

.dry-quiz__size {
	flex-direction: row;
	gap: 16px;
}

.dry-quiz__size label {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 14px;
	color: #031537;
}

.dry-quiz__checks-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px 24px;
	margin: 0 0 22px;
}

.dry-quiz .calc-checkbox {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	line-height: 24px;
	margin: 0;
	cursor: pointer;
	user-select: none;
}

.dry-quiz .calc-checkbox input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	pointer-events: none;
}

.dry-quiz .calc-checkbox__box {
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
	border: 1px solid #e2e8f0;
	border-radius: 2px;
	background: #fff;
	position: relative;
}

.dry-quiz .calc-checkbox input:checked + .calc-checkbox__box {
	background: #1bb2e6;
	border-color: #1bb2e6;
}

.dry-quiz .calc-checkbox input:checked + .calc-checkbox__box::after {
	content: "";
	position: absolute;
	left: 5px;
	top: 1px;
	width: 5px;
	height: 10px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.section-dry-odors .section-header {
	max-width: 649px;
}

.dry-odors {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 15px;
}

.dry-odors__item {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 98px;
	padding: 20px;
	box-sizing: border-box;
	background: #fff;
	box-shadow: 0 4px 18px rgba(3, 21, 55, 0.06);
}

.dry-odors__icon {
	flex: 0 0 58px;
	width: 58px;
	height: 58px;
	object-fit: contain;
}

.dry-odors__text {
	margin: 0;
	font-size: 16px;
	line-height: 24px;
	color: #031537;
}

@media (max-width: 1200px) {
	.dry-quiz {
		flex-direction: column;
	}

	.dry-quiz__aside,
	.dry-quiz__main {
		width: 100%;
		max-width: none;
		flex: none;
	}

	.dry-odors {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.dry-quiz__card {
		width: calc(50% - 5px);
	}

	.dry-quiz__card img {
		height: 120px;
	}

	.dry-quiz__checks-grid,
	.dry-quiz__size {
		grid-template-columns: 1fr 1fr;
		flex-direction: column;
	}

	.dry-quiz__nav {
		flex-wrap: wrap;
	}

	.dry-quiz__back,
	.dry-quiz__next,
	.dry-quiz__nav .btn {
		flex: 1 1 auto;
		min-width: 0;
		padding-left: 16px;
		padding-right: 16px;
	}

	.dry-odors {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 480px) {
	.dry-quiz__card {
		width: 100%;
	}

	.dry-odors {
		grid-template-columns: 1fr;
	}
}
