/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

:root {
	--tccr-ink: #0f172a;
	--tccr-theme: #02b7f6;
	--line: #f1f1f1;
	--mutted: #7A7A7A
}


.tccr-login-card .form-control,
.tccr-registration-card .form-control {
	border-radius: 12px;
	border: 1px solid #e2e8f0;
	background-color: #fff;
}

.tccr-login-card .form-control:focus,
.tccr-registration-card .form-control:focus {
	border-color: #3b82f6;
	box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.15);
}

.tccr-login-card .btn-primary,
.tccr-registration-card .btn-primary {
	border-radius: 12px;
	background: linear-gradient(135deg, #2563eb, #4f46e5);
	border: none;
	box-shadow: 0 10px 24px rgba(37, 99, 235, 0.25);
}

.tccr-login-card .btn-primary:hover,
.tccr-registration-card .btn-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 14px 28px rgba(37, 99, 235, 0.28);
}

.tccr-login-card .btn-outline-secondary,
.tccr-registration-card .btn-outline-secondary {
	border-radius: 12px;
}

.tccr-login-response {
	border-radius: 14px;
	font-size: 0.95rem;
}

.tccr-alert-icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1rem;
	background: rgba(15, 23, 42, 0.08);
}

.alert-success .tccr-alert-icon::before {
	content: "✓";
}

.alert-danger .tccr-alert-icon::before {
	content: "!";
}

.alert-warning .tccr-alert-icon::before {
	content: "…";
}

.tccr-btn-spinner {
	display: none;
}

.tccr-loading .tccr-btn-spinner {
	display: inline-block;
}

.tccr-loading .tccr-btn-text {
	opacity: 0.7;
}

.tccr-password-meter .progress {
	border-radius: 999px;
	background-color: #e2e8f0;
	overflow: hidden;
}

.tccr-password-meter .progress-bar {
	transition: width 0.3s ease;
}



.tccr-form .form-label {
	font-size: 14px;
	color: var(--tccr-ink);
}

.tccr-form .form-control {
	border-radius: 14px;
	border: 1px solid #e2e8f0;
	padding: 0.7rem 0.9rem;
}

.tccr-form .form-control:focus {
	border-color: var(--tccr-accent);
	box-shadow: 0 0 0 0.2rem rgba(14, 165, 233, 0.2);
}

/* Two-column form layout without Bootstrap */
.tccr-row {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 12px;
}

.tccr-col {
	flex: 1 1 48%;
	min-width: 220px;
}

.tccr-field-group {
	margin-bottom: 12px;
}

@media (max-width: 600px) {
	.tccr-col {
		flex: 1 1 100%;
		min-width: 0;
	}
}

/* Shared option card styles */
.tccr-option-section {
	width: 100%;
	margin-top: 8px;
}

.tccr-option-title {
	margin: 0 0 16px;
	font-size: 20px;
	font-weight: 700;
	color: var(--tccr-ink);
}

.tccr-option-list {
	display: grid;
	gap: 16px;
}

.tccr-option-card {
	position: relative;
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr) auto;
	align-items: center;
	gap: 14px;
	padding: 16px 18px;
	border: 1px solid #d8e3fb;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.08);
	cursor: pointer;
}

.tccr-option-input {
	width: 28px;
	height: 28px;
	border-radius: 6px;
	border: 1.5px solid #d8e3fb;
	appearance: none;
	-webkit-appearance: none;
	background: transparent;
	margin: 0;
	flex: 0 0 auto;
	position: relative;
	cursor: pointer;
	outline: none;
}

.tccr-option-input:checked {
	background: #02b7f6;
	border-color: #d8e3fb;
}

.tccr-option-input:checked::after {
	content: "✓";
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
}

.tccr-option-content {
	min-width: 0;
}

.tccr-option-content--stacked {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.tccr-option-content--inline {
	display: flex;
	align-items: center;
	gap: 10px;
}

.tccr-option-label {
	font-size: 18px;
	font-weight: 700;
	color: var(--tccr-ink);
	line-height: 1.2;
}

.tccr-option-note {
	font-size: 12px;
	font-weight: 600;
	line-height: 1.4;
	color: #ff4d4f;
}

.tccr-option-info {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 1px solid #cbd5e1;
	color: #94a3b8;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	flex: 0 0 auto;
}

.tccr-option-price {
	align-self: end;
	font-size: 18px;
	font-weight: 800;
	color: var(--tccr-ink);
	white-space: nowrap;
}

.tccr-option-card.is-selected,
.tccr-option-card:has(.tccr-option-input:checked) {
	background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 640px) {
	.tccr-option-card {
		grid-template-columns: 28px minmax(0, 1fr);
	}

	.tccr-option-price {
		grid-column: 2;
		justify-self: end;
		margin-top: 4px;
	}
}

button.tccr-submit {
	width: 100%;
	border: 0;
	padding: 0.7rem 0.9rem !important;
	border-radius: 14px !important;
}

.tccr-invoice-error {
	font-size: 18px;
	color: #f70404;
	margin-bottom: 0;
}

.sr-logo .custom-logo {
	width: 70px;
}

.search-result-header {
	display: flex;
	border-bottom: 1px solid rgba(181, 180, 186, 0.25);
	flex: 0 1 auto;
	height: 80px;
	gap: 16px;
	justify-content: space-between;
	align-items: center;
	/* position: fixed; */
	top: 0px;
	padding: 16px 16px;
}

.search-results-filter {
	border-bottom: 1px solid rgba(181, 180, 186, 0.25);
	padding: 7px 24px 8px;
	white-space: nowrap;
	box-shadow: rgba(0, 0, 0, 0.12) 0px 2px 9px -3px;
	gap: 8px;
	background: rgb(255, 255, 255);
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	height: 48px;
}

.search-results-filter .filter-dropdown-toggle {

	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.3px;
	line-height: 16px;
	text-transform: none;
	cursor: pointer;
	display: inline-block;
	padding: 7px 12px;
	position: relative;
	border: 1px solid rgb(208, 208, 208);
	border-radius: 8px;
	background-color: rgb(255, 255, 255);
	color: rgb(65, 65, 67);
}

.search-results-filter .filter-dropdown-toggle:hover,
.search-results-filter .filter-dropdown-toggle:focus {
	color: rgb(18, 18, 20);
	background-color: var(--tccr-theme);
}

.selected-filters {
	flex-wrap: wrap;
}

.filter-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background-color: var(--chip, #e8f3ff);
	border: 1px solid var(--border, #b5d4e8);
	border-radius: 999px;
	padding: 6px 10px;
	font-size: 12px;
	color: #374151;
	font-weight: 500;
	line-height: 1;
}

.filter-chip .chip-label {
	display: flex;
	align-items: center;
	gap: 4px;
}

.filter-chip .chip-label strong {
	font-weight: 600;
	color: #111827;
}

.filter-chip .chip-remove {
	cursor: pointer;
	color: #94a3b8;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	font-size: 14px;
	line-height: 1;
	transition: color 0.2s ease;
}

.filter-chip .chip-remove:hover {
	color: #111827;
}

.sr-queried-form .form-group {
	max-width: 350px;
	padding: 4px 10px 4px 0;
	width: 100%;
}

.sr-queried-form .form-group .field-content {
	border-bottom: 1px solid #e7e7e8;
	display: flex;
	position: relative;
}

.sr-queried-form .form-group .field-content label {
	color: var(--tccr-theme);
	line-height: 25px;
	white-space: nowrap;
}

.sr-queried-form .form-group .field-content input {
	background: #fff0;
	border: none;
	color: #121214;
	font-size: 16px;
	height: 25px;
	line-height: 24px;
	text-overflow: ellipsis;
	box-shadow: none;
	padding: 3px 10px !important;
}


.tccr-results-topbar {
	border-radius: 18px;
	background-color: rgb(255, 255, 255);
}

.tccr-results-topbar input {
	background: #fff;
	color: #7a7a7a;
	padding: 6px 16px !important;
	border: none !important;
	border-radius: 16px !important;
}

.tccr-results-topbar .form-label {
	color: #7a7a7a;

	font-size: 14px;
}

.tccr-filter-card {
	border-radius: 16px;
	position: sticky;
	top: 16px;
}

.tccr-vehicle-card {
	border-radius: 12px;
	transition: .25s ease;
	border: 1px solid rgb(231, 231, 232);
}

.tccr-vehicle-grid img {
	height: 250px;
	object-fit: cover;
}

.tccr-vehicle-grid .tccr-price-tag {
	font-weight: 600;
	text-align: left;
}

.tccr-vehicle-grid .tccr-price-tag .tccr-price-tax-info {
	text-align: left;
	margin-top: -10px;
}

.tccr-vehicle-card:hover {
	background: rgba(18, 18, 20, 0.02);
	transform: translateY(-3px);
	box-shadow: 0 16px 36px rgba(15, 23, 42, .12) !important;
}

.vehicle-overview ul {
	color: var(--bs-secondary-color);
	padding: 0;
	list-style: none;
	display: flex;
	gap: 12px;
}


.tccr-vehicle-card .vehicle-image {
	height: 260px;
	width: 100%;
	object-fit: cover;
}

.tccr-vehicle-card .card-body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.tccr-vehicle-card .card-body-footer {
	display: flex;
	justify-content: end;
}

.tccr-vehicle-card .card-body-footer .tccr-price-tag {
	color: rgb(18, 18, 20);
	font-size: 16px;
	font-weight: 900;
	letter-spacing: 0px;
	line-height: 20px;
	text-transform: none;
}

.tccr-price-tag .tccr-price-tax-info {
	font-size: 13px;
	font-weight: normal;
	text-align: end;
}

.vehicle-overview ul li {
	position: relative;
}

.vehicle-overview ul li:not(:last-child):after {
	content: "•";
	font-size: 0.8em;
	color: rgb(118, 118, 119);
	top: -2px;
	left: 5px;
	position: relative;
}

.rating .icon svg {
	margin-top: -3px;
}

.rating .icon svg path {
	fill: var(--tccr-theme);
}

.add-to-fav .add-to-fav-btn,
.add-to-fav .add-to-fav-btn:hover {
	background: transparent;
	border: none;
}

.add-to-fav {
	z-index: 10;
}


.tccr-price {
	font-size: 1.4rem;
	font-weight: 800;
	color: #0f172a;
}

.tccr-price span {
	font-size: .85rem;
	color: #64748b;
	margin-left: 4px;
}

.tccr-btn-pill {
	border-radius: 999px !important;
}

.search-results-list {
	/* position: absolute; */
	height: 100%;
	padding-top: 0px;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 16px;
}

#map {
	height: calc(95.6vh - 128px);
	width: 100%;
}

.user-avater .user-dropdown-toggle {
	padding: 0;
	background: transparent !important;
	border: none;
}

/* ====== Gallery Layout ====== */
.tccr-gallery {
	border-radius: 18px;
	overflow: hidden;
	background: #f3f4f6;
	padding: 0;
}

button.lg-icon {
	background: transparent;
}

.tccr-gallery-grid {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: 10px;
	height: clamp(320px, 42vw, 520px);
	min-height: 320px;
}

.tccr-left {
	grid-row: 1 / span 2;
	min-width: 0;
}

.tccr-right {
	grid-column: 2;
	grid-row: 1 / span 2;
	min-width: 0;
}

.tccr-tile {
	position: relative;
	cursor: pointer;
	overflow: hidden;
	border-radius: 16px;
	background: #e5e7eb;
	min-width: 0;
	min-height: 0;
}

.tccr-tile img {
	width: 100%;
	height: 100% !important;
	display: block;
	object-fit: cover;
	transition: transform .25s ease;
}

.tccr-tile:hover img {
	transform: scale(1.03);
}

.tccr-right {
	display: grid;
	grid-template-rows: 1fr 1fr;
	gap: 10px;
}

/* ====== View X Photos button overlay (bottom-right on 3rd tile) ====== */
.tccr-gallery-grid button.tccr-view-btn {
	position: absolute;
	right: 19px;
	bottom: 10px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	border-radius: 14px;
	border: 1px solid rgba(0, 0, 0, .08);
	background: rgba(255, 255, 255, .92);
	backdrop-filter: blur(6px);
	font-weight: 600;
	font-size: 12px;
	color: #111827;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
	text-transform: capitalize;
}

.tccr-view-btn:hover {
	background: rgba(255, 255, 255, .98);
}

.tccr-view-btn svg {
	width: 18px;
	height: 18px;
}

/* ====== Responsive ====== */
@media (max-width: 767px) {
	.tccr-gallery {
		margin: 16px;
	}

	.tccr-gallery-grid {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		height: auto;
		min-height: 0;
		gap: 8px;
	}

	.tccr-left {
		grid-row: auto;
		min-height: 220px;
	}

	.tccr-right {
		grid-column: auto;
		grid-row: auto;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: minmax(120px, 1fr);
		gap: 8px;
	}

	.tccr-right .tccr-tile {
		min-height: 120px;
	}

	.tccr-tile {
		min-height: 160px;
	}

	.tccr-tile img {
		object-position: center;
	}

	.tccr-gallery-grid button.tccr-view-btn {
		right: 12px;
		bottom: 12px;
		padding: 10px 12px;
		font-size: 11px;
	}

	.tccr-view-btn svg {
		width: 16px;
		height: 16px;
	}
}

.tccr_vehicle-tags {
	display: flex;
	gap: 10px;
}

.tccr_vehicle-tags .tccr-tag {
	padding: 6px 11px;
	background: #f1f1f1;
	border-radius: 6px;
	font-size: 13px;
	line-height: 1;
}

.tccr_vehicle-tags .tccr-tag .tccr-tag-icon svg {
	width: 20px;
	height: 20px;
	margin-right: 6px;
}

.tccr-add-favorites .tccr-add-fav-btn {
	font-weight: 700;
	border-radius: 8px;
	text-transform: capitalize;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	background-color: #FFFFFF;
	border: 1px solid #D0D0D0;
	color: #414143;
	padding: 7px 15px;
	height: 40px;
}

.tccr-add-favorites .tccr-add-fav-btn:active {
	background-color: #F4F4F4;
}

.tccr-price-details-item.total {
	border-top: 1px dashed #f1f1f1;
	padding-top: 10px;
	margin-top: 10px !important;

}

.tccr-price-details-item.total ._price-tag {
	font-weight: 800;
}

.tccr-priceing-details {
	border-bottom: 1px solid #f1f1f1;
	padding-bottom: 30px;
	margin-bottom: 30px;

}

/* Pricing summary styles */
.tccr-pricing-summary {
	background: #eef6f9;
	border: 1px solid rgba(2, 39, 60, 0.06);
	border-radius: 12px;
	padding: 18px;
}

.tccr-pricing-title {
	font-size: 20px;
	margin: 0 0 12px;
	font-weight: 800;
	color: var(--tccr-ink);
}

.tccr-pricing-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.tccr-pricing-line {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 12px;
}

.tccr-pricing-item {
	min-width: 0;
}

.tccr-pricing-item-title {
	font-weight: 700;
}

.tccr-pricing-item-sub {
	font-size: 13px;
	color: #64748b;
	margin-top: 4px;
}

.tccr-pricing-value {
	font-weight: 800;
	color: var(--tccr-ink);
	white-space: nowrap;
}

.tccr-pricing-divider {
	height: 1px;
	background: rgba(15, 23, 42, 0.04);
	margin: 8px 0;
	border-radius: 2px;
}

.tccr-pricing-total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 8px;
	font-size: 18px;
	font-weight: 800;
	border-top: 1px dashed rgba(15, 23, 42, 0.04);
	margin-top: 8px;
}

.tccr-pricing-total-label {
	font-weight: 700;
}

.tccr-pricing-total-value {
	font-size: 22px;
	color: var(--tccr-ink);
}

.tccr-pricing-deposit {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px;
	border-radius: 10px;
	border: 1px dashed rgba(234, 158, 158, 0.6);
	background: rgba(253, 238, 240, 0.6);
	margin-top: 12px;
}

.tccr-deposit-info {
	min-width: 0;
}

.tccr-deposit-label {
	font-weight: 800;
}

.tccr-deposit-note {
	font-size: 13px;
	color: #6b7280;
}

.tccr-deposit-value {
	font-weight: 900;
	color: var(--tccr-ink);
}

@media (max-width: 640px) {
	.tccr-pricing-line {
		flex-direction: column;
		align-items: flex-start;
	}

	.tccr-pricing-value {
		margin-top: 6px;
	}

	.tccr-pricing-deposit {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
}

.single_pricing_tabs {
	display: flex;
	gap: 8px;
	padding: 10px;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: rgba(15, 23, 42, .015);
}

.single_pricing_tabs .nav-item {
	flex: 1;
}

.single_pricing_tabs button.nav-link {
	font-size: 16px;
	padding: 12px 20px;
	border-radius: 14px;
	border: 1px solid transparent;
	background: transparent;
	cursor: pointer;
	color: var(--mutted);
	transition: background .15s ease, border-color .15s ease, transform .15s ease, color .15s ease;
}

.single_pricing_tabs button.nav-link:hover {
	color: #0f172a;
}

.single_pricing_tabs button.nav-link.active {
	background: var(--accentSoft);
	border-color: rgba(37, 99, 235, .22);
	color: var(--tccr-ink);
}

.price-big {
	color: #0f172a;
	margin: 16px 0 8px;
	font-size: 34px;
	letter-spacing: -.3px;
	font-weight: 900;
}

.search-results-summary h4 {
	margin-bottom: 0;
}

.tccr-loader {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #fff;
	top: 0;
}

.search-results-list.yes-loading {
	padding: 50px;
}

.tccr-loader .spinner-border {
	position: relative;
	text-align: center;
	left: 50%;
	top: 30%;
}

.tccr-loader-new {
	background-color: #fff;
	inset: 0;
}

.tccr-custom-loader {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: conic-gradient(from 10deg, #0d6efd 0 280deg, rgba(13, 110, 253, 0.1) 280deg 360deg);
	-webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 8px), #000 calc(100% - 7px));
	mask: radial-gradient(farthest-side, transparent calc(100% - 8px), #000 calc(100% - 7px));
	animation: tccr-custom-loader-spin 0.85s linear infinite;
}

@keyframes tccr-custom-loader-spin {
	to {
		transform: rotate(360deg);
	}
}

.container-small {
	max-width: 940px;
}

/* Card */
.tccr_cancellation-form {
	background: #f4f4f4;
	border: 1px solid #e7e7e8;
	border-radius: 12px;
	padding: 16px;
}

/* Divider between options */
.tccr_cancellation-option+.tccr_cancellation-option {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid #e7e7e8;
}

/* Radio layout */
.tccr_radio {
	display: flex;
	width: 100%;
	position: relative;
	user-select: none;
	cursor: pointer;
}

/* Visually hidden but accessible input */
.tccr_radio__input {
	position: absolute;
	opacity: 0;
	width: 20px;
	height: 20px;
	margin: 0;
}

/* Custom control (SVG container) */
.tccr_radio__control {
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Content */
.tccr_radio__content {
	padding-left: 12px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.tccr_radio__top {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 12px;
}

.tccr_radio__title {
	color: #121214;
	font-size: 16px;
	line-height: 22px;
	font-weight: 500;
}

.tccr_radio__price {
	color: #121214;
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	white-space: nowrap;
}

.tccr_radio__desc {
	color: #59595b;
	font-size: 12px;
	line-height: 16px;
	font-weight: 500;
}

/* Default (unchecked) SVG colors */
.tccr_radio__bg {
	fill: #ffffff;
}

.tccr_radio__ring {
	fill: #414143;
}

.tccr_radio__dot {
	fill: transparent;
}

/* Checked state */
.tccr_radio__input:checked+.tccr_radio__control .tccr_radio__bg {
	fill: #414143;
}

.tccr_radio__input:checked+.tccr_radio__control .tccr_radio__ring {
	fill: #414143;
}

.tccr_radio__input:checked+.tccr_radio__control .tccr_radio__dot {
	fill: #ffffff;
}

/* Focus state (keyboard) */
.tccr_radio__input:focus-visible+.tccr_radio__control {
	outline: 2px solid rgba(18, 18, 20, .35);
	outline-offset: 3px;
	border-radius: 999px;
}

.vehicle-specs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.vehicle-specs .spec {
	background: var(--chip);
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: 0px 5px;
	font-size: 14px;
	color: #374151;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
}

.tccr-location-wrap {
	position: relative;
}

.tccr-clear-btn {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 1.5rem;
	height: 1.5rem;
	font-size: 18px;
	color: #94a3b8;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
	line-height: 1;
	z-index: 2;
	user-select: none;
}

.tccr-location-input {
	padding-right: 2.5rem;
}

.tccr-clear-btn:hover {
	color: #111827;
}

.tccr-location-dropdown {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	width: 100%;
	background: #fff;
	border: 1px solid #dfe7f1;
	border-radius: 14px;
	box-shadow: 0 18px 35px rgba(15, 23, 42, 0.14);
	padding: 8px;
	display: none;
	z-index: 9999;
}

.tccr-location-dropdown.is-open {
	display: block;
}

.tccr-location-option {
	padding: 11px 12px;
	border-radius: 10px;
	cursor: pointer;
	font-size: 14px;
}

.tccr-location-option:hover {
	background: #f1f5f9;
}

.tccr-same-dropoff {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 11px 12px;
	border-radius: 10px;
	background: #e0f2fe;
	color: #0369a1;
	font-weight: 600;
	cursor: pointer;
	margin-bottom: 6px;
	user-select: none;
}

.tccr-same-dropoff input[type="checkbox"] {
	width: 16px;
	height: 16px;
	margin: 0;
	accent-color: #0284c7;
}

.tccr-same-dropoff:hover {
	background: #bae6fd;
}

.tccr-no-result {
	display: none;
	padding: 11px 12px;
	color: #94a3b8;
	font-size: 14px;
}

.tccr-location-options {
	max-height: 200px;
	overflow-y: scroll;
}

.dropdown-menu .dropdown-item {
	cursor: pointer;
}

span.error_notice {
	position: absolute;
	bottom: -28px;
	font-size: 12px;
	color: #ff0000;
}

.error_msg {
	font-size: 12px;
	color: #ff0000;
}

.single-trip-details {
	border: 1px solid #d8e3fb;
	padding: 30px;
	border-radius: 30px;
}

.tccr-form input:not([type="radio"]):not([type="checkbox"]) {
	border: 1px solid #2563EB2E;
	padding: 10px;
}

.tccr-form input:focus {
	border: 1px solid #2563EB;
	box-shadow: unset;
}

.tccr-option-section--insurance.yes-loading {
	position: relative;
}

.yes-loading.tccr-pricing-summary-wrap {
	position: relative;
	min-height: 80px;
	margin-top: 20px;
}

.yes-loading.tccr-pricing-summary .tccr-loader-new {
	padding-left: 20px;
	padding-top: 20px;
}

.form-check {
	display: flex;
	gap: 10px;
	align-items: start;
}

.form-check-label {
	line-height: 1.5em;
}

.tccr-booking-error .error_msg {
	padding: 10px;
	background: #ff000017;
	border-radius: 12px;
	margin-top: 20px;
	font-weight: 500;
	border: 1px solid #ff9c9c;
}

.tccr-payment-modal .modal-content {
	border: 0;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 30px 80px rgba(15, 23, 42, 0.24);
	background: #f8fbfc;
}

.tccr-payment-modal-header {
	padding: .75rem 1.75rem;
	background: #000026;
	border-bottom: 0;
	color: #fff;
}

.tccr-payment-modal-header .modal-title {
	text-transform: uppercase;
	color: #fff;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.tccr-payment-modal-header .btn-close {
	filter: brightness(0) invert(1);
	opacity: 0.9;
}

.tccr-payment-modal-body {
	padding: 1.75rem;
}

.tccr-payment-panel {
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 20px;
	padding: 1.35rem;
	box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

.tccr-payment-panel-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 1rem;
}

.tccr-payment-eyebrow {
	font-size: 0.74rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #64748b;
}

.tccr-payment-panel-title {
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--tccr-ink);
}

.tccr-payment-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.45rem 0.75rem;
	border-radius: 999px;
	background: rgba(15, 118, 110, 0.08);
	color: #0f766e;
	font-size: 0.78rem;
	font-weight: 700;
	white-space: nowrap;
}

.tccr-payment-badge-muted {
	background: rgba(100, 116, 139, 0.08);
	color: #475569;
}

.tccr-payment-summary-list {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
}

.tccr-payment-summary-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1rem;
	padding: 0.3rem 0;
	border-bottom: 1px solid rgba(15, 23, 42, 0.06);
	color: #334155;
	font-size: 14px;
}

.tccr-payment-summary-row:last-child {
	border-bottom: 0;
}

.tccr-payment-summary-row span small {
	display: block;
	margin-top: 0.2rem;
	color: #64748b;
}

.tccr-payment-summary-row strong {
	font-size: 14px;
	font-weight: 600;
	color: var(--tccr-ink);
	text-align: right;
	white-space: nowrap;
}

.tccr-payment-summary-row-total {
	padding-top: 1rem;
	font-size: 1.05rem;
	font-weight: 800;
}

.tccr-payment-summary-row-total strong {
	font-size: 1.4rem;
	color: #0f4c5c;
}


.tccr-payment-summary-row-deposit {
	margin-top: 0.35rem;
	padding: 0.95rem 1rem;
	border: 1px dashed rgb(2 183 246);
	border-radius: 14px;
	background: rgb(2 183 246 / 9%);
}

.tccr-payment-summary-row-deposit strong {
	color: #1a718f;
}

.tccr-payment-policy-panel {
	background: linear-gradient(180deg, rgba(255, 248, 237, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.tccr-payment-policy-copy {
	color: #475569;
	line-height: 1.65;
	margin-bottom: 0;
}

.tccr-policy-check {
	padding-top: 0.25rem;
	margin-bottom: 0;
}

.tccr-policy-check .form-check-input {
	margin-top: 0.2rem;
}

.tccr-policy-check .form-check-label {
	font-weight: 700;
	color: var(--tccr-ink);
}

.tccr-payment-help {
	padding: 0.95rem 1rem;
	border-radius: 14px;
	background: #f8fafc;
	color: #64748b;
	font-size: 0.95rem;
	line-height: 1.6;
}

.tccr-payment-modal-footer {
	padding: 1rem 1.75rem 1.75rem;
	border-top: 0;
	background: #f8fbfc;
}

@media (max-width: 991.98px) {
	.tccr-payment-modal-body {
		padding: 1.25rem;
	}

	.tccr-payment-panel {
		padding: 1.1rem;
	}

	.tccr-payment-modal-footer {
		padding: 0 1.25rem 1.25rem;
	}
}

body.modal-open {
	overflow: hidden;
	position: fixed;
}

.tccr-add-fav-btn svg path,
.add-to-fav-btn svg path {
	fill: transparent;
	stroke: #121214;
	stroke-width: 2;
	transition: all 0.2s ease;
}

.tccr-add-fav-btn.is-favorited svg path,
.add-to-fav-btn.is-favorited svg path {
	fill: var(--tccr-theme);
	stroke: var(--tccr-theme);
}

.tccr-top-bar,
.tccr-agreement-card,
.tccr-terms-card {
	border: 1px solid #e5e5e5;
	border-radius: 5px;
	background: #fff;
}

.tccr-top-bar {
	padding: 8px 14px;
	margin-bottom: 14px;
}

.tccr-download-btn {
	background: #ff6b45;
	color: #fff;
	border: none;
	border-radius: 3px;
	font-size: 11px;
	padding: 8px 14px;
}

.tccr-title {
	font-size: 14px;
	font-weight: 700;
	margin: 0 0 2px;
}

.tccr-muted-text {
	color: #7b8494;
	font-size: 13px;
}

.tccr-agreement-card,
.tccr-terms-card {
	padding: 12px;
	margin-bottom: 14px;
}

.tccr-company-logo {
	width: 96px;
	height: 78px;
	border: 1px solid #e7e7e7;
	border-radius: 4px;
	object-fit: contain;
	padding: 8px;
	background: #fff;
}

.tccr-company-name {
	font-weight: 700;
	margin-bottom: 4px;
}

.tccr-section {
	border: 1px solid #e5e5e5;
	border-radius: 4px;
	overflow: hidden;
	margin-top: 14px;
}

.tccr-section-title {
	background: #f7f7f7;
	border-bottom: 1px solid #ddd;
	padding: 7px 13px;
	font-weight: 700;
	font-size: 12px;
}

.tccr-field {
	border-right: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
	min-height: 58px;
	padding: 8px 13px;
}

.tccr-row-last .tccr-field {
	border-bottom: none;
}

.tccr-field-last {
	border-right: none;
}

.tccr-label {
	color: #5d626b;
	font-size: 13px;
	margin-bottom: 5px;
}

.tccr-value {
	font-size: 13px;
	color: #000;
	font-weight: 400;
}

.tccr-price-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border: 1px solid #e5e5e5;
	border-radius: 4px;
	overflow: hidden;
	margin-top: 14px;
}

.tccr-price-row div {
	padding: 7px 13px;
	background: #f7f7f7;
	border-bottom: 1px solid #e5e5e5;
	font-weight: 700;
}

.tccr-price-row div:nth-last-child(-n+2) {
	border-bottom: none;
}

.tccr-signature-box {
	min-height: 95px;
	padding: 18px 18px 12px;
}

.tccr-signature {
	font-family: "Brush Script MT", "Segoe Script", cursive;
	font-size: 33px;
	line-height: 1;
	margin-bottom: 10px;
}

.tccr-signed-text {
	font-size: 10px;
	color: #555;
}

@media (max-width: 767px) {
	.tccr-field {
		border-right: none;
	}

	.tccr-field:not(:last-child) {
		border-bottom: 1px solid #e5e5e5;
	}

	.tccr-price-row {
		grid-template-columns: 1fr;
	}

	.tccr-company-logo {
		margin-bottom: 10px;
	}
}

.booking_form_1.loading:before {
	content: '';
	width: 100%;
	height: 100%;
	background: #ffffff94;
	position: absolute;
	z-index: 1;
}

.booking_form_1.loading {
	position: relative;
}

.booking_form_1.loading .tccr-form-loader {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.flatpickr-minute,
.flatpickr-time-separator {
	display: none !important;
}

.flatpickr-time .numInputWrapper:not(:first-child) {
	display: none !important;
}

.custom-time-dropdown {
	width: calc(100% - 10px);
	margin: 10px 5px 5px;
	padding: 8px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 14px;
}

.flatpickr-day.partial_unavailable {
	background: linear-gradient(54deg, #d1d5db 0 50%, #f8fafc 50% 100%);
	color: #334155;
	font-weight: 600;
	position: relative;
}

.flatpickr-day.partial_unavailable:hover,
.flatpickr-day.partial_unavailable:focus {
	color: unset;
	background: linear-gradient(54deg, #cbd5e1 0 50%, #f8fafc 50% 100%);
}