/* Выбор комплектации на странице options (kit-change) */
.kit-change-form {
	width: 100%;
}

.kit-choice {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.75rem;
	margin: 0;
	padding: 0.4rem 0.5rem;
	border: 2px solid transparent;
	border-radius: 6px;
	cursor: pointer;
	transition: color 0.15s ease, background-color 0.3s ease,
		border-color 0.3s ease;
	word-break: break-word;
	background: transparent;
}

.kit-choice--alt:hover {
	background: rgba(255, 152, 0, 0.06);
	border-color: rgba(255, 152, 0, 0.2);
}

.kit-choice--alt.kit-choice--selected:hover {
	background: rgba(255, 152, 0, 0.1);
	border-color: rgba(255, 152, 0, 0.35);
}

.kit-choice__control {
	position: relative;
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	margin-top: 0;
}

.kit-choice__input {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.kit-choice__radio {
	display: block;
	width: 22px;
	height: 22px;
	border: 2px solid #bbb;
	border-radius: 50%;
	background: #fff;
	position: relative;
	transition: border-color 0.15s ease;
}

.kit-choice__input:checked + .kit-choice__radio {
	border-color: #ff9800;
}

.kit-choice__input:checked + .kit-choice__radio::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 10px;
	margin: -5px 0 0 -5px;
	border-radius: 50%;
	background: #ff9800;
}

.kit-choice__input:focus + .kit-choice__radio {
	box-shadow: 0 0 0 2px rgba(255, 152, 0, 0.35);
}

.kit-choice__body {
	flex: 1;
	min-width: 0;
	max-width: 100%;
}

.kit-choice__line {
	display: inline-flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 0.4em;
	max-width: 100%;
}

.kit-choice__item-title {
	font-weight: 500;
	color: #64748b;
	font-size: 0.95rem;
	line-height: 1.45;
	transition: color 0.15s ease, font-weight 0.15s ease;
}

.kit-choice--selected .kit-choice__item-title {
	font-weight: 700;
	color: #1e293b;
	font-size: 1rem;
}

.kit-choice--selected .kit-choice__item-title::before {
	content: '\2714\00a0';
	color: #ff9800;
	font-weight: 700;
}

.kit-choice .more-info {
	display: inline-flex;
	flex-shrink: 0;
	margin: 0;
	font-size: 0.75rem;
	vertical-align: middle;
	white-space: nowrap;
}

.kit-choice-row,
.kit-choice-selected,
.kit-choice-alternatives {
	padding: 0 1rem 0.5rem;
}

.kit-choice-alternatives {
	padding-bottom: 1rem;
}

.kit-choice-alternatives__title {
	margin-bottom: 0.75rem;
	font-weight: 600;
	font-size: 1.1rem;
	color: #2c3e50;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid #e2e8f0;
}

.kit-choice-alternatives__title img {
	width: 1.25rem;
	height: 1.25rem;
	flex-shrink: 0;
	object-fit: contain;
}

.kit-choice-alternatives__list {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.kit-change-continue-wrap {
	padding: 1.5rem 1rem;
	text-align: center;
}

.kit-change-continue-btn {
	display: inline-block;
	box-sizing: border-box;
	width: auto;
	max-width: 100%;
	margin: 0;
	padding: 12px 5rem 12px 5rem;
	background: #ff9800 url(/img/property/introduce.svg) no-repeat 5% 50%;
	background-size: contain;
	color: #fff;
	border: none;
	border-bottom: 12px solid #c0392b;
	border-radius: 6px;
	text-align: center;
	text-transform: uppercase;
	cursor: pointer;
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.25;
	transition: background-color 0.15s ease;
}

.kit-change-continue-btn:hover,
.kit-change-continue-btn:focus {
	color: #fff;
	background-color: #ffa726;
	outline: none;
}

#kit-contact-step {
	padding: 0 1rem 2rem;
}

.kit-change-success {
	background: #ff9800;
	color: #fff;
	padding: 1rem;
	text-align: center;
	margin: 1rem;
	font-size: 1.25rem;
	border-radius: 10px;
	box-shadow: 3px 3px 20px #a2a2a2;
}

@media (min-width: 576px) {
	.kit-choice-alternatives__list {
		padding-left: 0.25rem;
	}
}

@media (max-width: 767.98px) {
	.kit-choice {
		padding: 0.35rem 0.25rem;
		min-height: 44px;
	}

	.kit-choice__control {
		width: 20px;
		height: 20px;
	}

	.kit-choice__radio {
		width: 20px;
		height: 20px;
		border-width: 2px;
	}

	.kit-choice__input:checked + .kit-choice__radio::after {
		width: 9px;
		height: 9px;
		margin: -4.5px 0 0 -4.5px;
	}

	.kit-choice--selected .kit-choice__item-title {
		font-size: 0.95rem;
	}
}
