/* ==========================================================================
   Multi-Step Enquiry Form
   Mobile-first, professional design
   ========================================================================== */

/* Modal Overlay */
.tcl-enquiry-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(4px);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	animation: fadeIn 0.2s ease-out;
	overflow-y: auto;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* Main Container */
.tcl-multistep-container {
	background: var(--tcl-bg-dark);
	border-radius: 16px;
	max-width: 600px;
	width: 100%;
	max-height: 90vh;
	overflow-x: hidden;
	overflow-y: auto;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
	animation: slideUp 0.3s ease-out;
	position: relative;
	border: 1px solid var(--tcl-bg-card);
}

@keyframes slideUp {
	from {
		transform: translateY(20px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* Modal Header */
.tcl-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 1.5rem 1.5rem 1rem;
	border-bottom: 1px solid var(--tcl-bg-card);
}

.tcl-modal-title {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--tcl-white);
	line-height: 1.2;
}

.tcl-modal-subtitle {
	margin: 0.25rem 0 0;
	font-size: 0.9rem;
	color: var(--tcl-gray-light);
	font-weight: 500;
}

.tcl-modal-close {
	background: none;
	border: none;
	font-size: 2rem;
	line-height: 1;
	color: var(--tcl-gray);
	cursor: pointer;
	padding: 0;
	width: 2rem;
	height: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	transition: all 0.2s;
	flex-shrink: 0;
	margin-left: 1rem;
}

.tcl-modal-close:hover {
	background: var(--tcl-bg-card);
	color: var(--tcl-white);
}

/* Progress Bar */
.tcl-progress {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 2rem 1.5rem 1.5rem;
	position: relative;
	overflow: hidden;
}

.tcl-progress-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	flex: 1;
	position: relative;
	z-index: 2;
}

.tcl-progress-circle {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: var(--tcl-bg-card);
	color: var(--tcl-gray);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1rem;
	transition: all 0.3s;
	border: 3px solid var(--tcl-bg-card);
}

.tcl-progress-step.active .tcl-progress-circle {
	background: var(--tcl-primary);
	color: var(--tcl-white);
	border-color: var(--tcl-primary);
	transform: scale(1.1);
}

.tcl-progress-step.completed .tcl-progress-circle {
	background: var(--tcl-success);
	color: var(--tcl-white);
	border-color: var(--tcl-success);
}

.tcl-progress-step.completed .tcl-progress-circle::before {
	content: '✓';
}

.tcl-progress-label {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--tcl-gray);
	transition: color 0.3s;
	text-align: center;
}

.tcl-progress-step.active .tcl-progress-label {
	color: var(--tcl-primary);
}

.tcl-progress-step.completed .tcl-progress-label {
	color: var(--tcl-success);
}

.tcl-progress-line {
	flex: 1;
	height: 3px;
	background: var(--tcl-bg-card);
	position: relative;
	z-index: 1;
	margin: 0 -0.5rem;
	margin-bottom: 1.75rem;
}

/* Form Container */
.tcl-multistep-form {
	padding: 1.5rem;
}

/* Form Steps */
.tcl-form-step {
	display: none;
	animation: fadeInStep 0.3s ease-out;
}

.tcl-form-step.active {
	display: block;
}

@keyframes fadeInStep {
	from {
		opacity: 0;
		transform: translateX(10px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.tcl-step-title {
	margin: 0 0 0.5rem;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--tcl-white);
}

.tcl-step-desc {
	margin: 0 0 1.5rem;
	font-size: 0.9rem;
	color: var(--tcl-gray-light);
	transition: color 0.3s;
}

/* Stage Selection Cards (Step 1) */
.tcl-stage-cards {
	display: grid;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.tcl-stage-card {
	position: relative;
	cursor: pointer;
	margin: 0;
}

.tcl-stage-card input[type="radio"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.tcl-stage-card-inner {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.25rem;
	background: var(--tcl-bg-card);
	border: 2px solid var(--tcl-bg-lighter);
	border-radius: 12px;
	transition: all 0.2s;
}

.tcl-stage-card:hover .tcl-stage-card-inner {
	background: var(--tcl-bg-lighter);
	border-color: #4a4a4a;
}

.tcl-stage-card input[type="radio"]:checked + .tcl-stage-card-inner {
	background: #2a1a1a;
	border-color: var(--tcl-primary);
	box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}

.tcl-stage-card-icon {
	font-size: 2rem;
	line-height: 1;
	flex-shrink: 0;
}

.tcl-stage-card-title {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--tcl-white);
}

.tcl-stage-card-desc {
	margin: 0.125rem 0 0;
	font-size: 0.85rem;
	color: var(--tcl-gray-light);
}

/* Timeline Options (Step 2) */
.tcl-timeline-options {
	display: grid;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
	max-width: 100%;
}

.tcl-timeline-option {
	position: relative;
	cursor: pointer;
	margin: 0;
}

.tcl-timeline-option input[type="radio"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.tcl-timeline-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.25rem;
	background: var(--tcl-bg-card);
	border: 2px solid var(--tcl-bg-lighter);
	border-radius: 12px;
	transition: all 0.2s;
}

.tcl-timeline-option:hover .tcl-timeline-inner {
	background: var(--tcl-bg-lighter);
	border-color: #4a4a4a;
}

.tcl-timeline-option input[type="radio"]:checked + .tcl-timeline-inner {
	background: #2a1a1a;
	border-color: var(--tcl-primary);
	box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}

.tcl-timeline-text {
	font-size: 1rem;
	font-weight: 600;
	color: var(--tcl-white);
}

.tcl-timeline-badge {
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.25rem 0.75rem;
	border-radius: 6px;
	background: var(--tcl-bg-lighter);
	color: var(--tcl-gray-light);
}

.tcl-timeline-badge.hot {
	background: #2a1a1a;
	color: var(--tcl-primary);
}

/* Contact Form (Step 2) */
.tcl-form-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	margin-bottom: 12px;
}

/* Vehicle field that spans full width */
.tcl-form-grid > .tcl-form-group:first-child[style*="grid-column"] {
	margin-bottom: 0;
}

.tcl-form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin: 0 !important;
	padding: 0;
}

/* Ensure no extra spacing from theme on inputs within grid */
.tcl-form-grid .tcl-form-group,
.tcl-form-grid .tcl-form-input,
.tcl-form-grid .tcl-form-label {
	margin: 0 !important;
}

/* Override common WordPress theme margin/padding on form elements */
.tcl-multistep-form .tcl-form-group,
.tcl-multistep-form input[type="text"],
.tcl-multistep-form input[type="email"],
.tcl-multistep-form input[type="tel"],
.tcl-multistep-form textarea,
.tcl-multistep-form label {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

/* Message group outside the grid needs small top margin */
.tcl-multistep-form > .tcl-form-step > .tcl-form-group:not(:first-child) {
	margin-top: 12px !important;
}

.tcl-form-label {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--tcl-gray-lighter);
}

.tcl-form-input,
.tcl-form-textarea {
	padding: 0.75rem 1rem;
	border: 2px solid var(--tcl-bg-lighter);
	border-radius: 12px !important;
	font-size: 1rem;
	font-family: inherit;
	transition: all 0.2s;
	background: var(--tcl-bg-card);
	color: var(--tcl-white);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.tcl-form-input::placeholder,
.tcl-form-textarea::placeholder {
	color: var(--tcl-gray);
}

.tcl-form-input:focus,
.tcl-form-textarea:focus {
	outline: none;
	border-color: var(--tcl-primary);
	box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
	background: var(--tcl-bg-lighter);
}

.tcl-form-input.error {
	border-color: var(--tcl-primary-light);
	background: #2a1a1a;
}

.tcl-form-textarea {
	resize: vertical;
	min-height: 100px;
}

/* Navigation Buttons */
.tcl-step-nav {
	display: flex;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.tcl-btn-prev,
.tcl-btn-next,
.tcl-btn-submit {
	flex: 1;
	padding: 0.875rem 1.5rem;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	font-family: inherit;
}

.tcl-btn-prev {
	background: var(--tcl-bg-card);
	color: var(--tcl-gray-lighter);
	border: 1px solid var(--tcl-bg-lighter);
}

.tcl-btn-prev:hover {
	background: var(--tcl-bg-lighter);
	border-color: #4a4a4a;
}

.tcl-btn-next,
.tcl-btn-submit {
	background: var(--tcl-primary);
	color: var(--tcl-white);
	box-shadow: 0 2px 8px rgba(220, 38, 38, 0.25);
}

.tcl-btn-next {
	margin-left: auto;
	flex: 0 0 auto;
	min-width: 160px;
}

.tcl-btn-next:hover,
.tcl-btn-submit:hover {
	background: var(--tcl-primary-dark);
	box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
	transform: translateY(-1px);
}

.tcl-btn-next:active,
.tcl-btn-submit:active {
	transform: translateY(0);
}

.tcl-btn-submit:disabled {
	background: var(--tcl-gray-light);
	cursor: not-allowed;
	box-shadow: none;
	transform: none;
}

/* Success State */
.tcl-form-success {
	text-align: center;
	padding: 3rem 1.5rem;
	animation: fadeIn 0.3s ease-out;
}

.tcl-success-icon {
	width: 4rem;
	height: 4rem;
	margin: 0 auto 1.5rem;
	background: var(--tcl-success);
	color: var(--tcl-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	font-weight: 700;
	animation: scaleIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
	from {
		transform: scale(0);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}

.tcl-success-title {
	margin: 0 0 0.5rem;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--tcl-white);
}

.tcl-success-text {
	margin: 0;
	font-size: 1rem;
	color: var(--tcl-gray-light);
}

/* Responsive Design */
@media (min-width: 640px) {
	.tcl-enquiry-modal {
		padding: 2rem;
	}

	.tcl-multistep-container {
		border-radius: 20px;
	}

	.tcl-modal-header {
		padding: 2rem 2rem 1.5rem;
	}

	.tcl-modal-title {
		font-size: 1.75rem;
	}

	.tcl-modal-subtitle {
		font-size: 1rem;
	}

	.tcl-progress {
		padding: 2.5rem 2rem 2rem;
	}

	.tcl-progress-circle {
		width: 3rem;
		height: 3rem;
		font-size: 1.125rem;
	}

	.tcl-progress-label {
		font-size: 0.875rem;
	}

	.tcl-multistep-form {
		padding: 2rem;
	}

	.tcl-step-title {
		font-size: 1.5rem;
	}

	.tcl-step-desc {
		font-size: 1rem;
	}

	.tcl-stage-cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.tcl-stage-card-inner {
		flex-direction: column;
		text-align: center;
		padding: 1.5rem 1rem;
	}

	.tcl-form-success {
		padding: 4rem 2rem;
	}
}

@media (min-width: 768px) {
	.tcl-form-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	/* Make phone field span full width on desktop */
	.tcl-form-grid .tcl-phone-group {
		grid-column: 1 / -1;
	}
	.tcl-modal-header {
		padding: 2.5rem 2.5rem 1.5rem;
	}

	.tcl-progress {
		padding: 3rem 2.5rem 2rem;
	}

	.tcl-multistep-form {
		padding: 2.5rem;
	}
}

/* Smooth scrolling for modal */
.tcl-multistep-container {
	scroll-behavior: smooth;
}

/* Accessibility improvements */
.tcl-stage-card:focus-within .tcl-stage-card-inner,
.tcl-timeline-option:focus-within .tcl-timeline-inner {
	outline: 2px solid var(--tcl-primary);
	outline-offset: 2px;
}

.tcl-form-input:focus-visible,
.tcl-form-textarea:focus-visible {
	outline: 2px solid var(--tcl-primary);
	outline-offset: 2px;
}

/* Loading state for submit button */
.tcl-btn-submit:disabled::after {
	content: '';
	display: inline-block;
	width: 1rem;
	height: 1rem;
	margin-left: 0.5rem;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-top-color: #ffffff;
	border-radius: 50%;
	animation: spin 0.6s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* ==========================================================================
   Smart Info Popup - Shows price/power info before submission
   ========================================================================== */

.tcl-smart-info-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.7);
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	animation: fadeIn 0.2s ease-out;
}

.tcl-smart-info-popup {
	background: var(--tcl-bg-dark);
	border-radius: 16px;
	max-width: 420px;
	width: 100%;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
	border: 1px solid var(--tcl-bg-lighter);
	animation: slideUp 0.3s ease-out;
	overflow: hidden;
}

.tcl-smart-info-header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1.25rem 1.5rem;
	background: linear-gradient(135deg, var(--tcl-bg-card) 0%, var(--tcl-bg-dark) 100%);
	border-bottom: 1px solid #333;
}

.tcl-smart-info-icon {
	font-size: 1.75rem;
}

.tcl-smart-info-header h4 {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 700;
	color: #fbbf24;
}

.tcl-smart-info-body {
	padding: 1.5rem;
}

.tcl-smart-info-body > p {
	margin: 0 0 1rem;
	font-size: 0.95rem;
	color: var(--tcl-gray-light);
}

.tcl-smart-info-row {
	padding: 0.75rem 1rem;
	background: var(--tcl-bg-card);
	border-radius: 8px;
	margin-bottom: 0.5rem;
	font-size: 1rem;
	color: var(--tcl-gray-lighter);
}

.tcl-smart-info-row:last-child {
	margin-bottom: 0;
}

.tcl-smart-info-row strong {
	color: var(--tcl-white);
	font-weight: 600;
}

.tcl-smart-gain {
	color: #22c55e;
	font-weight: 600;
}

.tcl-smart-info-footer {
	display: flex;
	gap: 0.75rem;
	padding: 1.25rem 1.5rem;
	background: #151515;
	border-top: 1px solid var(--tcl-bg-card);
}

.tcl-smart-btn-view,
.tcl-smart-btn-send {
	flex: 1;
	padding: 0.875rem 1rem;
	border: none;
	border-radius: 8px;
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	font-family: inherit;
}

.tcl-smart-btn-view {
	background: var(--tcl-bg-card);
	color: var(--tcl-gray-lighter);
	border: 1px solid var(--tcl-bg-lighter);
}

.tcl-smart-btn-view:hover {
	background: var(--tcl-bg-lighter);
	border-color: #4a4a4a;
}

.tcl-smart-btn-send {
	background: var(--tcl-primary);
	color: var(--tcl-white);
}

.tcl-smart-btn-send:hover {
	background: var(--tcl-primary-dark);
}

/* ==========================================================================
   Compact Timeline (when combined with stage cards on step 1)
   ========================================================================== */

.tcl-timeline-section {
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tcl-timeline-section .tcl-step-title {
	font-size: 1rem;
	margin-bottom: 12px;
	color: var(--tcl-gray-light);
}

.tcl-timeline-compact {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
	margin-bottom: 0;
	max-width: 100%;
	overflow: hidden;
}

.tcl-timeline-compact .tcl-timeline-option {
	display: flex;
	min-width: 0;
}

.tcl-timeline-compact .tcl-timeline-inner {
	padding: 10px 14px;
	border-radius: 8px;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
}

.tcl-timeline-compact .tcl-timeline-text {
	font-size: 0.9rem;
	word-break: break-word;
	overflow-wrap: break-word;
}

.tcl-timeline-compact .tcl-timeline-badge {
	font-size: 0.7rem;
	padding: 2px 6px;
}

/* 4 columns on larger screens */
@media (min-width: 480px) {
	.tcl-timeline-compact {
		grid-template-columns: repeat(4, 1fr);
	}

	.tcl-timeline-compact .tcl-timeline-inner {
		flex-direction: column;
		text-align: center;
		gap: 4px;
		padding: 12px 8px;
	}

	.tcl-timeline-compact .tcl-timeline-text {
		font-size: 0.8rem;
	}
}

/* ==========================================================================
   Inline Contact Form (non-modal version for [tuning_contact_form] shortcode)
   ========================================================================== */

.tcl-contact-form-wrapper {
	max-width: 600px;
	margin: 0 auto;
}

.tcl-contact-form-wrapper .tcl-multistep-container.tcl-inline-form {
	animation: none;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.tcl-contact-form-wrapper .tcl-modal-header {
	border-bottom: none;
	padding-bottom: 0;
}

/* Remove close button space since there's no modal */
.tcl-contact-form-wrapper .tcl-modal-close {
	display: none;
}

/* Center header content for inline form */
.tcl-contact-form-wrapper .tcl-header-content {
	text-align: center;
	width: 100%;
}

/* Logo above title */
.tcl-contact-logo {
	display: block;
	max-width: 180px;
	max-height: 60px;
	margin: 0 auto 1rem;
	object-fit: contain;
}

/* CSS-only stage icons (bars for stages 1/2/3) */
.tcl-stage-bars {
	display: flex;
	gap: 3px;
	align-items: flex-end;
	height: 24px;
}

.tcl-stage-bars i {
	display: block;
	width: 6px;
	background: currentColor;
	border-radius: 2px;
}

.tcl-stage-bars i:nth-child(1) { height: 8px; }
.tcl-stage-bars i:nth-child(2) { height: 16px; }
.tcl-stage-bars i:nth-child(3) { height: 24px; }

/* Wrench icon (CSS) */
.tcl-icon-wrench {
	display: block;
	width: 20px;
	height: 20px;
	position: relative;
}

.tcl-icon-wrench::before {
	content: '';
	position: absolute;
	width: 14px;
	height: 4px;
	background: currentColor;
	border-radius: 2px;
	top: 8px;
	left: 3px;
	transform: rotate(-45deg);
}

.tcl-icon-wrench::after {
	content: '';
	position: absolute;
	width: 8px;
	height: 8px;
	border: 3px solid currentColor;
	border-radius: 50%;
	top: 0;
	right: 0;
	background: transparent;
}

/* Chat icon (CSS) */
.tcl-icon-chat {
	display: block;
	width: 22px;
	height: 18px;
	background: currentColor;
	border-radius: 4px;
	position: relative;
}

.tcl-icon-chat::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 4px;
	width: 0;
	height: 0;
	border-left: 6px solid currentColor;
	border-right: 6px solid transparent;
	border-top: 6px solid currentColor;
	border-bottom: 6px solid transparent;
}

/* Font inheritance for inline form */
.tcl-contact-form-wrapper,
.tcl-contact-form-wrapper * {
	font-family: inherit;
}

.tcl-contact-form-wrapper .tcl-step-title,
.tcl-contact-form-wrapper .tcl-timeline-text,
.tcl-contact-form-wrapper .tcl-btn-next,
.tcl-contact-form-wrapper .tcl-btn-prev,
.tcl-contact-form-wrapper .tcl-btn-submit {
	font-family: inherit;
}

/* Disabled state for Next and Submit buttons */
.tcl-btn-next:disabled,
.tcl-btn-submit:disabled {
	background: #4a4a4a;
	color: var(--tcl-gray-light);
	cursor: not-allowed;
	box-shadow: none;
	transform: none;
}

.tcl-btn-next:disabled:hover,
.tcl-btn-submit:disabled:hover {
	background: #4a4a4a;
	transform: none;
	box-shadow: none;
}

/* Inline form - remove height restriction and overflow scrolling */
.tcl-contact-form-wrapper .tcl-multistep-container.tcl-inline-form {
	max-height: none;
	overflow-y: visible;
}

/* Mobile full-width override for WPBakery containers */
@media (max-width: 767px) {
	.tcl-contact-form-wrapper {
		max-width: 100% !important;
		width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		padding: 0 !important;
	}

	/* Override WPBakery column padding on mobile */
	.vc_column-inner .tcl-contact-form-wrapper,
	.wpb_wrapper .tcl-contact-form-wrapper,
	[class*="vc_col-"] .tcl-contact-form-wrapper {
		max-width: 100% !important;
		width: 100% !important;
		padding: 0 !important;
	}

	/* Override parent container padding only when containing the contact form */
	.vc_column-inner:has(.tcl-contact-form-wrapper),
	.wpb_wrapper:has(.tcl-contact-form-wrapper) {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	.tcl-contact-form-wrapper .tcl-multistep-container {
		border-radius: 0;
		max-width: 100% !important;
		width: 100% !important;
	}

	.tcl-contact-form-wrapper .tcl-multistep-form {
		padding: 1.5rem;
	}
}

/* Fieldset reset for accessibility — native semantics without visual disruption */
.tcl-fieldset-reset {
	border: none;
	padding: 0;
	margin: 0;
	min-width: 0;
	max-width: 100%;
}
.tcl-fieldset-reset > legend {
	padding: 0;
	float: left;
	width: 100%;
}
