.ccc-wrap {
	background: #fff;
	border: 1px solid #e9e9e9;
	border-radius: 14px;
	padding: 28px 28px 24px;
	color: #111;
	margin-bottom: 50px;
}

.ccc-head { margin-bottom: 18px; }

.ccc-select-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin-bottom: 16px;
}

.ccc-field select {
	width: 100%;
	height: 46px;
	border: 1px solid #e5e5e5;
	border-radius: 10px;
	padding: 0 14px;
	background: #fff;
	color: #111;
	outline: none;
}

.ccc-field select:disabled {
	background: #f6f6f6;
	color: #555;
	cursor: not-allowed;
}

.ccc-bank-tabs {
	display: flex;
	gap: 22px;
	align-items: center;
	padding: 10px 0 6px;
	border-bottom: 1px solid #eee;
}

.ccc-bank-tab {
	background: transparent;
	border: none;
	padding: 0 0 10px;
	cursor: pointer;
	opacity: 0.35;
	border-bottom: 3px solid transparent;
}

.ccc-bank-tab img { height: 34px; width: auto; display: block; }

.ccc-bank-tab.is-active {
	opacity: 1;
}

.ccc-body { margin-top: 18px; }

.ccc-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 44px;
}

.ccc-block { margin-bottom: 18px; }

.ccc-k { font-size: 16px; color: #555; margin-bottom: 10px; }

.ccc-kv {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
}

.ccc-v { font-size: 22px; font-weight: 700; color: #1c1c1c; }
.ccc-v-accent { color: #cb6228; }

.ccc-cur { font-size: 14px; font-weight: 600; color: #666; }

.ccc-advance {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.ccc-advance button {
	height: 38px;
	padding: 0 14px;
	border-radius: 999px;
	border: 1px solid #dedede;
	background: #fff;
	cursor: pointer;
	font-weight: 600;
	color: #222;
}

.ccc-advance button.is-active {
	border-color: #cb6228;
	color: #cb6228;
	box-shadow: 0 0 0 2px rgba(203,98,40,0.10);
}

.ccc-range {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 14px;
}

#ccc-term { width: 100%; }

.ccc-term {
	min-width: 44px;
	text-align: right;
	font-weight: 700;
	color: #1c1c1c;
}

.ccc-result {
	display: grid;
	gap: 14px;
	padding: 0 0 18px 0;
	border-bottom: 1px solid #eee;
	margin-bottom: 16px;
}

.ccc-form :where(input, textarea, select) {
	border-radius: 10px !important;
}

.ccc-form :where(input[type="submit"], button, .wpcf7-submit) {
	background: #cb6228 !important;
	border: 0 !important;
	border-radius: 12px !important;
	color: #fff !important;
	padding: 12px 20px !important;
	font-weight: 700 !important;
}

@media (max-width: 900px) {
	.ccc-select-row { grid-template-columns: 1fr; }
	.ccc-grid { grid-template-columns: 1fr; gap: 26px; }
	.ccc-bank-tabs { flex-wrap: wrap; }
}

.ccc-selected-car {
	margin-bottom: 6px;
}

.ccc-selected-title {
	font-size: 18px;
	font-weight: 700;
	color: #1c1c1c;
}



.ccc-wrap {
	position: relative;
}

/* ОБЩИЙ disabled-стейт */
.ccc-wrap.ccc-disabled {
	position: relative;
	opacity: 0.45;
}

/* БЛОКИРУЕМ ТОЛЬКО СОДЕРЖИМОЕ, А НЕ ВЕСЬ WRAP */
.ccc-wrap.ccc-disabled .ccc-head,
.ccc-wrap.ccc-disabled .ccc-body {
	pointer-events: none;
}

/* HINT */
.ccc-disabled-hint {
	display: none;
	position: absolute;
	inset: 0;
	z-index: 20;
	backdrop-filter: blur(1px);
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px;
	pointer-events: auto; /* важно */
}

.ccc-disabled-hint-text {
	color: #ff0000;
	font-weight: 600;
	padding: 7px 12px;
	border-radius: 5px;
	background: #e5e5e5;
	font-size: 22px;
}

/* показываем hint только при disabled */
.ccc-wrap.ccc-disabled .ccc-disabled-hint {
	display: flex;
}

/* ПОЛОСАТЫЙ ОВЕРЛЕЙ */
.ccc-wrap.ccc-disabled::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 10;

	background: repeating-linear-gradient(
		45deg,
		rgba(230, 229, 229, 0.35),
		rgba(230, 229, 229, 0.35) 10px,
		rgba(230, 229, 229, 0.55) 10px,
		rgba(230, 229, 229, 0.55) 20px
	);

	border-radius: inherit;
	pointer-events: none;
}
.text-notification-form {font-size: 12px; line-height: 14px; margin-top: 10px;}
.title-calc {margin-top: 20px!important;}