/* ── Toggle Radio Button ─────────────────────────────── */
.tc-toggle-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-family: 'Proxima Nova', sans-serif;
}

/* Switch container */
.tc-toggle-switch {
	position: relative;
	display: inline-flex;
	cursor: pointer;
	flex-shrink: 0;
}

/* Hide native checkbox */
.tc-toggle-input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	margin: 0;
	padding: 0;
}

/* Track */
.tc-toggle-track {
	position: relative;
	display: block;
	width: 42px;
	height: 22px;
	background-color: #829AB1;
	border-radius: 999px;
	transition: background-color 0.3s ease;
}

/* Knob */
.tc-toggle-knob {
	position: absolute;
	top: 1.5px;
	left: 1.5px;
	width: 19px;
	height: 19px;
	background-color: #FFFFFF;
	border-radius: 50%;
	transition: transform 0.3s ease;
}

/* Active state */
.tc-toggle-input:checked + .tc-toggle-track {
	background-color: #338033;
}

.tc-toggle-input:checked + .tc-toggle-track .tc-toggle-knob {
	transform: translateX(20px);
}

/* Labels */
.tc-toggle-label {
	font-size: 18px;
	line-height: 23px;
	color: #102A43;
	white-space: nowrap;
}

.tc-toggle-suffix {
	font-size: 14px;
	line-height: 18px;
	color: #829AB1;
	white-space: nowrap;
}
