:root {
--tb-green:       #27ae60;
--tb-green-h:     #219a52;
--tb-green-light: #edfaf3;
--tb-dark:        #1a1a2e;
--tb-text:        #2d3748;
--tb-muted:       #718096;
--tb-border:      #e2e8f0;
--tb-bg:          #ffffff;
--tb-bg2:         #f8fafc;
--tb-shadow:      0 4px 24px rgba(0,0,0,.08);
--tb-shadow-sm:   0 2px 8px rgba(0,0,0,.06);
--tb-radius:      10px;
--tb-radius-lg:   16px;
--tb-font:        'Segoe UI', system-ui, -apple-system, sans-serif;
--tb-transition:  .18s ease;
} .tb-wrap {
max-width: 1060px;
margin: 0 auto;
font-family: var(--tb-font);
font-size: 17px;
color: var(--tb-text);
-webkit-font-smoothing: antialiased;
} .tb-stepbar {
display: flex;
align-items: center;
margin-bottom: 32px;
padding: 0 2px;
}
.tb-step {
display: flex;
flex-direction: column;
align-items: center;
gap: 6px;
flex-shrink: 0;
}
.tb-step span {
font-size: 12px;
color: var(--tb-muted);
font-weight: 500;
letter-spacing: .02em;
transition: color var(--tb-transition);
}
.tb-step-num {
width: 34px;
height: 34px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 13px;
font-weight: 600;
background: var(--tb-border);
color: var(--tb-muted);
transition: background var(--tb-transition), color var(--tb-transition);
}
.tb-step.active .tb-step-num {
background: var(--tb-green);
color: #fff;
}
.tb-step.active span { color: var(--tb-green); }
.tb-step.done .tb-step-num {
background: var(--tb-green-light);
color: var(--tb-green);
}
.tb-step.done .tb-step-num::after { content: '✓'; font-size: 14px; }
.tb-step.done .tb-step-num { font-size: 0; }
.tb-step.done span { color: var(--tb-green); }
.tb-step-track {
flex: 1;
height: 2px;
background: var(--tb-border);
margin: 0 8px;
margin-bottom: 20px;
transition: background var(--tb-transition);
}
.tb-step-track.done { background: var(--tb-green); } .tb-panel {
display: none;
background: var(--tb-bg);
border: 1px solid var(--tb-border);
border-radius: var(--tb-radius-lg);
box-shadow: var(--tb-shadow);
overflow: visible;
animation: tbFadeIn .22s ease;
}
.tb-panel.active { display: block; }
@keyframes tbFadeIn {
from { opacity: 0; transform: translateY(6px); }
to   { opacity: 1; transform: translateY(0); }
}
.tb-panel-head {
padding: 32px 40px 24px;
border-bottom: 1px solid var(--tb-border);
}
.tb-panel-head h2 {
margin: 0 0 6px;
font-size: 20px;
font-weight: 700;
color: var(--tb-dark);
line-height: 1.3;
}
.tb-panel-head p {
margin: 0;
font-size: 14px;
color: var(--tb-muted);
} .tb-grid { display: grid; gap: 18px; padding: 28px 40px 0; }
.tb-grid-1 { grid-template-columns: 1fr; }
.tb-grid-2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 580px) { .tb-grid-2 { grid-template-columns: 1fr; } }
.tb-field { display: flex; flex-direction: column; gap: 7px; }
.tb-field label {
font-size: 15px;
font-weight: 600;
color: var(--tb-text);
letter-spacing: .01em;
}
.tb-req { color: var(--tb-green); }
.tb-field input[type="text"],
.tb-field input[type="email"],
.tb-field input[type="tel"],
.tb-field textarea {
width: 100%;
padding: 10px 14px;
border: 1.5px solid var(--tb-border);
border-radius: var(--tb-radius);
font-size: 16px;
font-family: var(--tb-font);
color: var(--tb-text);
background: var(--tb-bg);
outline: none;
transition: border-color var(--tb-transition), box-shadow var(--tb-transition);
box-sizing: border-box;
}
.tb-field input:focus,
.tb-field textarea:focus {
border-color: var(--tb-green);
box-shadow: 0 0 0 3px rgba(39,174,96,.12);
} .tb-field-hint {
display: block;
min-height: 0;
font-size: 12px;
line-height: 1.35;
margin-top: 5px;
}
.tb-field-hint--error {
color: #c53030;
font-weight: 500;
}
.tb-field input.tb-input-error,
.tb-field textarea.tb-input-error,
.tb-field .tb-custom-select-trigger.tb-input-error {
border-color: #e53935 !important;
box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.12) !important;
}
.tb-field input:disabled {
background: #f7f8fa;
color: #a0aec0;
cursor: not-allowed;
opacity: 0.85;
}
.tb-field textarea { resize: vertical; min-height: 80px; } .tb-icon-field {
position: relative;
display: block;
}
.tb-icon-field svg {
position: absolute !important;
left: 11px !important;
top: 50% !important;
transform: translateY(-50%) !important;
width: 16px !important;
height: 16px !important;
color: #888 !important;
pointer-events: none !important;
z-index: 2 !important;
display: block !important;
margin: 0 !important;
padding: 0 !important;
float: none !important;
vertical-align: unset !important;
}
.tb-icon-field input[type="text"] {
width: 100% !important;
padding: 10px 14px 10px 38px !important;
border: 1.5px solid var(--tb-border) !important;
border-radius: var(--tb-radius) !important;
font-size: 16px !important;
font-family: var(--tb-font) !important;
color: var(--tb-text) !important;
background: var(--tb-bg) !important;
outline: none !important;
box-sizing: border-box !important;
cursor: pointer !important;
display: block !important;
line-height: 1.5 !important;
height: auto !important;
box-shadow: none !important;
}
.tb-icon-field input[type="text"]:focus {
border-color: var(--tb-green) !important;
box-shadow: 0 0 0 3px rgba(39,174,96,.12) !important;
} .tb-select-wrap {
position: relative;
}
.tb-select-wrap::after {
content: '';
pointer-events: none;
position: absolute;
right: 12px;
top: 50%;
transform: translateY(-50%);
width: 0;
height: 0;
border-left: 4px solid transparent;
border-right: 4px solid transparent;
border-top: 5px solid var(--tb-muted);
}
.tb-select {
width: 100%;
padding: 10px 32px 10px 14px;
border: 1.5px solid var(--tb-border);
border-radius: var(--tb-radius);
font-size: 16px;
font-family: var(--tb-font);
color: var(--tb-text);
background: var(--tb-bg);
appearance: none;
outline: none;
cursor: pointer;
transition: border-color var(--tb-transition);
}
.tb-select:focus { border-color: var(--tb-green); } .tb-loc-wrap { position: relative; }
.tb-loc-trigger {
display: flex;
align-items: center;
gap: 8px;
padding: 10px 14px;
border: 1.5px solid var(--tb-border);
border-radius: var(--tb-radius);
cursor: pointer;
background: var(--tb-bg);
transition: border-color var(--tb-transition), box-shadow var(--tb-transition);
user-select: none;
}
.tb-loc-trigger:hover { border-color: #cbd5e0; }
.tb-loc-trigger.open {
border-color: var(--tb-green);
box-shadow: 0 0 0 3px rgba(39,174,96,.12);
}
.tb-loc-icon { font-size: 16px; flex-shrink: 0; }
.tb-loc-input {
flex: 1;
border: none;
background: transparent;
font-size: 16px;
font-family: var(--tb-font);
color: var(--tb-text);
outline: none;
cursor: pointer;
pointer-events: none;
min-width: 0;
}
.tb-loc-input::placeholder { color: var(--tb-muted); }
.tb-chevron {
width: 16px;
height: 16px;
color: var(--tb-muted);
flex-shrink: 0;
transition: transform var(--tb-transition);
}
.tb-loc-trigger.open .tb-chevron { transform: rotate(180deg); }
.tb-loc-dropdown {
position: absolute;
top: calc(100% + 6px);
left: 0;
right: 0;
background: var(--tb-bg);
border: 1.5px solid var(--tb-border);
border-radius: var(--tb-radius);
box-shadow: var(--tb-shadow);
z-index: 1000;
overflow: hidden;
}
.tb-loc-search {
display: flex;
align-items: center;
gap: 8px;
padding: 10px 14px;
border-bottom: 1px solid var(--tb-border);
}
.tb-loc-search svg { width: 15px; height: 15px; color: var(--tb-muted); flex-shrink: 0; }
.tb-loc-search input {
flex: 1;
border: none;
outline: none;
font-size: 13px;
font-family: var(--tb-font);
color: var(--tb-text);
background: transparent;
}
.tb-loc-search input::placeholder { color: var(--tb-muted); }
.tb-loc-dropdown ul {
list-style: none;
margin: 0;
padding: 6px 0;
max-height: 220px;
overflow-y: auto;
}
.tb-loc-dropdown li {
display: flex;
align-items: center;
gap: 10px;
padding: 9px 16px;
font-size: 14px;
color: var(--tb-text);
cursor: pointer;
transition: background var(--tb-transition);
}
.tb-loc-dropdown li:hover { background: var(--tb-bg2); }
.tb-loc-dropdown li.selected { background: var(--tb-green-light); color: var(--tb-green); font-weight: 600; }
.tb-loc-dropdown li .tb-li-icon { font-size: 15px; }
.tb-loc-dropdown li.tb-loc-loading,
.tb-loc-dropdown li.tb-loc-empty {
color: var(--tb-muted);
cursor: default;
font-style: italic;
font-size: 13px;
} #tb-vehicles-container { padding: 24px 32px 0; }
.tb-vehicles-grid {
display: grid;
grid-template-columns: 1fr;
gap: 14px;
}
.tb-vehicle-card {
display: grid;
grid-template-columns: 240px 1fr auto;
gap: 0;
border: 2px solid var(--tb-border);
border-radius: var(--tb-radius-lg);
overflow: hidden;
cursor: pointer;
transition: border-color var(--tb-transition), box-shadow var(--tb-transition), transform var(--tb-transition);
background: var(--tb-bg);
}
.tb-vehicle-card:hover {
border-color: #a0d9b8;
box-shadow: 0 4px 16px rgba(39,174,96,.10);
transform: translateY(-1px);
}
.tb-vehicle-card.selected {
border-color: var(--tb-green);
box-shadow: 0 0 0 3px rgba(39,174,96,.15);
}
.tb-vc-image {
background: #f0f0f0;
display: flex;
align-items: center;
justify-content: center;
width: 240px;
min-width: 240px;
overflow: hidden;
padding: 0;
}
.tb-vc-image img {
width: 240px;
height: 150px;
object-fit: cover;
object-position: center;
display: block;
}
.tb-vc-image .tb-vc-emoji { font-size: 40px; } .tb-vc-stats {
display: flex;
gap: 20px;
margin-top: 10px;
}
.tb-vc-stat {
display: flex;
flex-direction: column;
align-items: center;
gap: 2px;
min-width: 60px;
}
.tb-vc-stat-icon { font-size: 20px; line-height: 1; }
.tb-vc-stat-val  { font-size: 14px; font-weight: 700; color: var(--tb-dark); line-height: 1.2; }
.tb-vc-stat-lbl  { font-size: 10px; color: var(--tb-muted); text-align: center; }
.tb-vc-info {
padding: 14px 16px;
display: flex;
flex-direction: column;
justify-content: center;
gap: 4px;
min-width: 0;
}
.tb-vc-info h3 {
margin: 0;
font-size: 15px;
font-weight: 700;
color: var(--tb-dark);
}
.tb-vc-info p {
margin: 0;
font-size: 12px;
color: var(--tb-muted);
line-height: 1.4;
}
.tb-vc-meta {
display: flex;
gap: 10px;
margin-top: 6px;
}
.tb-vc-meta span {
display: flex;
align-items: center;
gap: 4px;
font-size: 12px;
color: var(--tb-muted);
font-weight: 500;
}
.tb-vc-feats {
display: flex;
flex-wrap: wrap;
gap: 4px;
margin-top: 6px;
}
.tb-vc-feat {
font-size: 11px;
background: var(--tb-bg2);
color: var(--tb-muted);
padding: 2px 8px;
border-radius: 20px;
border: 1px solid var(--tb-border);
}
.tb-vc-price {
display: flex;
flex-direction: column;
align-items: flex-end;
justify-content: center;
gap: 6px;
padding: 14px 18px;
border-left: 1px solid var(--tb-border);
min-width: 170px;
}
.tb-vc-old-price {
font-size: 15px;
font-weight: 600;
color: #e53935;
text-decoration: line-through;
line-height: 1;
}
.tb-vc-amount {
font-size: 24px;
font-weight: 800;
color: var(--tb-green);
line-height: 1;
white-space: nowrap;
}
.tb-vc-total-note {
font-size: 11px;
color: var(--tb-muted);
text-align: right;
line-height: 1.4;
}
.tb-vc-total-note small {
color: var(--tb-green);
font-size: 10px;
}
.tb-vc-select-btn {
padding: 9px 18px;
font-size: 13px;
font-weight: 700;
font-family: var(--tb-font);
border: 2px solid var(--tb-dark);
border-radius: 6px;
color: var(--tb-dark);
background: var(--tb-dark);
color: #fff;
cursor: pointer;
transition: background var(--tb-transition), color var(--tb-transition);
white-space: nowrap;
letter-spacing: 0.3px;
}
.tb-vc-select-btn:hover,
.tb-vehicle-card.selected .tb-vc-select-btn {
background: var(--tb-green);
border-color: var(--tb-green);
color: #fff;
}
.tb-loading {
display: flex;
flex-direction: column;
align-items: center;
gap: 12px;
padding: 40px 0;
color: var(--tb-muted);
font-size: 14px;
}
.tb-spinner {
width: 28px;
height: 28px;
border: 3px solid var(--tb-border);
border-top-color: var(--tb-green);
border-radius: 50%;
animation: tbSpin .7s linear infinite;
}
@keyframes tbSpin { to { transform: rotate(360deg); } } .tb-summary {
margin: 24px 32px 0;
border: 1px solid var(--tb-border);
border-radius: var(--tb-radius);
overflow: hidden;
}
.tb-sum-row {
display: flex;
justify-content: space-between;
align-items: center;
padding: 12px 18px;
font-size: 14px;
border-bottom: 1px solid var(--tb-border);
}
.tb-sum-row:last-child { border-bottom: none; }
.tb-sum-row:nth-child(odd) { background: var(--tb-bg2); }
.tb-sum-label { color: var(--tb-muted); font-weight: 500; }
.tb-sum-val { color: var(--tb-text); font-weight: 600; text-align: right; }
.tb-sum-total {
display: flex;
justify-content: space-between;
align-items: center;
padding: 16px 18px;
background: var(--tb-green-light);
border-top: 2px solid var(--tb-green);
font-size: 16px;
}
.tb-sum-total .tb-sum-label { color: var(--tb-green); font-weight: 700; }
.tb-sum-total .tb-sum-val   { color: var(--tb-green); font-weight: 800; font-size: 20px; } .tb-actions {
padding: 24px 32px 28px;
display: flex;
justify-content: flex-end;
}
.tb-actions-split { justify-content: space-between; }
.tb-btn {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 11px 22px;
font-size: 14px;
font-weight: 600;
font-family: var(--tb-font);
border-radius: var(--tb-radius);
border: 2px solid transparent;
cursor: pointer;
transition: all var(--tb-transition);
line-height: 1;
}
.tb-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.tb-btn-primary {
background: var(--tb-green);
color: #fff;
border-color: var(--tb-green);
}
.tb-btn-primary:hover {
background: var(--tb-green-h);
border-color: var(--tb-green-h);
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(39,174,96,.3);
}
.tb-btn-ghost {
background: transparent;
color: var(--tb-muted);
border-color: var(--tb-border);
}
.tb-btn-ghost:hover {
border-color: #cbd5e0;
color: var(--tb-text);
}
.tb-btn-success {
background: var(--tb-dark);
color: #fff;
border-color: var(--tb-dark);
padding: 12px 28px;
font-size: 15px;
}
.tb-btn-success:hover {
background: #2d2d4a;
border-color: #2d2d4a;
transform: translateY(-1px);
box-shadow: 0 4px 14px rgba(26,26,46,.25);
}
.tb-btn:disabled {
opacity: .6;
cursor: not-allowed;
transform: none !important;
box-shadow: none !important;
} .tb-error-bar {
margin-bottom: 16px;
padding: 12px 18px;
background: #fff5f5;
border: 1.5px solid #fed7d7;
border-radius: var(--tb-radius);
color: #c53030;
font-size: 14px;
font-weight: 500;
display: flex;
align-items: center;
gap: 8px;
} .tb-field-check { padding: 0 32px; padding-bottom: 4px; }
.tb-check-label {
display: flex;
align-items: flex-start;
gap: 10px;
font-size: 13px;
color: var(--tb-muted);
cursor: pointer;
line-height: 1.5;
}
.tb-check-label input[type="checkbox"] {
width: 16px;
height: 16px;
flex-shrink: 0;
accent-color: var(--tb-green);
margin-top: 2px;
}
.tb-check-label a { color: var(--tb-green); text-decoration: none; }
.tb-check-label a:hover { text-decoration: underline; } .tb-success-panel {
max-width: 1060px;
margin: 0 auto;
}
.tb-success {
text-align: center;
padding: 52px 32px 48px;
}
.tb-success-icon {
width: 72px;
height: 72px;
margin: 0 auto 20px;
color: var(--tb-green);
}
.tb-success-icon svg { width: 100%; height: 100%; }
.tb-success h2 {
font-size: 24px;
font-weight: 800;
color: var(--tb-dark);
margin: 0 0 10px;
}
.tb-success p {
font-size: 15px;
color: var(--tb-muted);
margin: 0 0 28px;
}
.tb-success-cards {
display: flex;
gap: 16px;
justify-content: center;
flex-wrap: wrap;
}
.tb-success-card {
background: var(--tb-bg2);
border: 1px solid var(--tb-border);
border-radius: var(--tb-radius);
padding: 16px 24px;
min-width: 160px;
}
.tb-success-card span {
display: block;
font-size: 12px;
color: var(--tb-muted);
font-weight: 500;
margin-bottom: 6px;
text-transform: uppercase;
letter-spacing: .05em;
}
.tb-success-card strong {
font-size: 18px;
font-weight: 800;
color: var(--tb-dark);
} .flatpickr-calendar {
border: 1.5px solid var(--tb-border);
border-radius: var(--tb-radius-lg);
box-shadow: var(--tb-shadow);
}
.flatpickr-day.selected,
.flatpickr-day.selected:hover {
background: var(--tb-green);
border-color: var(--tb-green);
}
.flatpickr-day:hover { background: var(--tb-green-light); }
.flatpickr-time input:focus { border-color: var(--tb-green); } .flatpickr-time .numInput:focus,
.flatpickr-time .flatpickr-hour:focus,
.flatpickr-time .flatpickr-minute:focus,
.flatpickr-time input.flatpickr-hour:focus,
.flatpickr-time input.flatpickr-minute:focus {
background: var(--tb-green-light) !important;
outline: none !important;
color: var(--tb-text) !important;
}
.flatpickr-time input::selection { background: var(--tb-green); color: #fff; }
.flatpickr-time .numInputWrapper:hover,
.flatpickr-time .flatpickr-am-pm:hover { background: var(--tb-green-light) !important; }
.flatpickr-time .arrowUp:after { border-bottom-color: var(--tb-green) !important; }
.flatpickr-time .arrowDown:after { border-top-color: var(--tb-green) !important; } @media (max-width: 640px) { .tb-wrap {
margin-left: -10px;
margin-right: -10px;
width: calc(100% + 20px);
}
.tb-sec-body {
padding: 0 10px 18px;
}
.tb-panel-head { padding: 20px 16px 16px; }
.tb-grid { padding: 16px 0 0; }
.tb-actions { padding: 18px 0 22px; }
.tb-summary { margin: 18px 0 0; }
#tb-vehicles-container { padding: 8px 0 0; }
.tb-field-check { padding: 0; } .tb-vehicle-card {
display: grid;
grid-template-columns: 1fr;
grid-template-rows: auto auto auto;
}
.tb-vc-image {
width: 100%;
min-width: 0;
max-width: none;
height: auto;
min-height: 0;
padding: 12px 14px;
box-sizing: border-box;
overflow: hidden;
}
.tb-vc-image img {
width: 100%;
height: auto;
max-height: 130px;
max-width: 100%;
object-fit: contain;
object-position: center;
}
.tb-vc-info {
min-width: 0;
padding: 12px 12px 8px;
}
.tb-vc-stats {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 8px;
margin-top: 12px;
}
.tb-vc-stat {
min-width: 0;
}
.tb-vc-stat-val,
.tb-vc-stat-lbl {
word-break: break-word;
}
.tb-vc-price {
grid-column: 1;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
justify-content: flex-start;
gap: 8px 12px;
border-left: none;
border-top: 1px solid var(--tb-border);
padding: 12px 12px 14px;
min-width: 0;
}
.tb-vc-amount {
flex: 0 0 auto;
}
.tb-vc-total-note {
text-align: left;
flex: 1 1 120px;
}
.tb-vc-select-btn {
flex: 1 1 100%;
width: 100%;
text-align: center;
padding: 12px 18px;
box-sizing: border-box;
} .tb-sidebar {
max-width: none;
margin-top: 20px;
}
.tb-sb-row {
grid-template-columns: 1fr;
gap: 3px;
padding: 10px 0;
}
.tb-sb-value {
text-align: left;
}
.tb-stepbar { gap: 0; }
.tb-step span { display: none; }
}  .tb-loc-trigger--disabled {
opacity: .55;
cursor: not-allowed;
pointer-events: none;
}
.tb-loc-trigger--disabled.open,
.tb-loc-trigger--disabled:hover {
border-color: var(--tb-border) !important;
box-shadow: none !important;
} .tb-vc-title-row {
display: flex;
align-items: center;
gap: 8px;
flex-wrap: wrap;
} .tb-vc-multi-badge {
font-size: 11px;
font-weight: 700;
background: #fff3cd;
color: #856404;
border: 1px solid #ffc107;
border-radius: 20px;
padding: 2px 8px;
white-space: nowrap;
} .tb-vc-total-note {
font-size: 11px;
color: var(--tb-muted);
text-align: center;
} .tb-no-vehicles {
padding: 40px 24px;
text-align: center;
color: var(--tb-muted);
font-size: 14px;
line-height: 1.7;
} .tb-counter-wrap {
display: inline-flex;
align-items: center;
border: 1.5px solid var(--tb-border);
border-radius: var(--tb-radius);
overflow: hidden;
background: var(--tb-bg);
transition: border-color var(--tb-transition);
width: 100%;
}
.tb-counter-wrap:focus-within {
border-color: var(--tb-green);
box-shadow: 0 0 0 3px rgba(39,174,96,.12);
}
.tb-counter-btn {
width: 48px;
height: 44px;
border: none;
background: var(--tb-bg2);
color: var(--tb-text);
font-size: 22px;
font-weight: 400;
cursor: pointer;
flex-shrink: 0;
transition: background var(--tb-transition), color var(--tb-transition);
line-height: 1;
display: flex;
align-items: center;
justify-content: center;
font-family: var(--tb-font);
}
.tb-counter-btn:hover:not(:disabled) {
background: var(--tb-green-light);
color: var(--tb-green);
}
.tb-counter-btn:disabled {
color: var(--tb-border);
cursor: not-allowed;
background: var(--tb-bg2);
}
.tb-counter-display {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
border-left: 1px solid var(--tb-border);
border-right: 1px solid var(--tb-border);
padding: 0 12px;
height: 44px;
}
.tb-counter-num {
font-size: 18px;
font-weight: 700;
color: var(--tb-dark);
min-width: 20px;
text-align: center;
}
.tb-counter-text {
font-size: 13px;
color: var(--tb-muted);
} .tb-section {
background: var(--tb-bg);
border: 1.5px solid var(--tb-border);
border-radius: var(--tb-radius-lg);
margin-bottom: 12px;
overflow: visible;
transition: border-color .2s;
width: 100%;
box-sizing: border-box;
max-width: 1060px;
}
.tb-section-open {
border-color: var(--tb-green);
box-shadow: 0 0 0 3px rgba(39,174,96,.08);
}
.tb-section-done {
border-color: var(--tb-border);
}
.tb-section-locked {
border-color: var(--tb-border);
opacity: .6;
}
.tb-sec-head {
display: flex;
align-items: center;
gap: 14px;
padding: 18px 24px;
}
.tb-sec-badge {
width: 32px;
height: 32px;
border-radius: 50%;
background: var(--tb-border);
color: var(--tb-muted);
font-size: 14px;
font-weight: 700;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
transition: background .2s, color .2s;
}
.tb-section-open .tb-sec-badge,
.tb-sec-badge-active {
background: var(--tb-green) !important;
color: #fff !important;
}
.tb-section-done .tb-sec-badge {
background: var(--tb-green-light);
color: var(--tb-green);
font-size: 16px;
}
.tb-section-done .tb-sec-badge::after {
content: '✓';
}
.tb-section-done .tb-sec-badge { font-size: 0; }
.tb-section-done .tb-sec-badge::after { font-size: 16px; }
.tb-sec-title-wrap { flex: 1; }
.tb-sec-title-wrap h3 {
margin: 0;
font-size: 16px;
font-weight: 700;
color: var(--tb-dark);
line-height: 1.3;
}
.tb-sec-summary {
margin: 2px 0 0;
font-size: 13px;
color: var(--tb-muted);
}
.tb-sec-edit {
font-size: 13px;
font-weight: 600;
color: var(--tb-green);
background: none;
border: none;
cursor: pointer;
padding: 4px 8px;
border-radius: 6px;
transition: background .15s;
font-family: var(--tb-font);
}
.tb-sec-edit:hover { background: var(--tb-green-light); }
.tb-sec-body {
padding: 0 24px 24px;
animation: tbSlideDown .25s ease;
}
@keyframes tbSlideDown {
from { opacity: 0; transform: translateY(-8px); }
to   { opacity: 1; transform: translateY(0); }
} .tb-extras-title {
font-size: 13px;
font-weight: 700;
color: var(--tb-text);
text-transform: uppercase;
letter-spacing: .05em;
margin: 20px 0 12px;
display: flex;
align-items: center;
gap: 8px;
}
.tb-extras-note {
font-weight: 400;
text-transform: none;
letter-spacing: 0;
color: var(--tb-muted);
font-size: 12px;
}
.tb-extras-grid {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: repeat(3, auto);
grid-auto-flow: column;
gap: 10px;
}
@media (max-width: 560px) { .tb-extras-grid { grid-template-columns: 1fr; grid-auto-flow: row; } }
.tb-extra-row {
display: flex;
align-items: center;
justify-content: space-between;
padding: 12px 14px;
border: 1.5px solid var(--tb-border);
border-radius: var(--tb-radius);
background: var(--tb-bg);
gap: 12px;
transition: border-color .15s;
}
.tb-extra-row:has(.tb-extra-val:not(:empty)) { }
.tb-extra-row.tb-extra-active {
border-color: var(--tb-green);
background: var(--tb-green-light);
}
.tb-extra-info { flex: 1; }
.tb-extra-name {
display: block;
font-size: 14px;
font-weight: 600;
color: var(--tb-dark);
}
.tb-extra-desc {
display: block;
font-size: 12px;
color: var(--tb-muted);
margin-top: 2px;
}
.tb-extra-counter {
display: flex;
align-items: center;
gap: 10px;
flex-shrink: 0;
}
.tb-extra-btn {
width: 30px;
height: 30px;
border-radius: 50%;
border: 1.5px solid var(--tb-border);
background: var(--tb-bg);
color: var(--tb-text);
font-size: 18px;
font-weight: 400;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all .15s;
line-height: 1;
font-family: var(--tb-font);
}
.tb-extra-btn:hover:not(:disabled) {
border-color: var(--tb-green);
color: var(--tb-green);
background: var(--tb-green-light);
}
.tb-extra-btn:disabled {
opacity: .3;
cursor: not-allowed;
}
.tb-extra-val {
font-size: 16px;
font-weight: 700;
color: var(--tb-dark);
min-width: 36px;
width: 36px;
text-align: center;
background: transparent;
border: none;
outline: none;
padding: 0;
margin: 0;
font-family: inherit;
-moz-appearance: textfield;
}
.tb-extra-val::-webkit-outer-spin-button,
.tb-extra-val::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
.tb-extra-val:focus {
outline: none;
background: rgba(39, 174, 96, 0.08);
border-radius: 4px;
} .tb-success-panel {
background: var(--tb-bg);
border: 1.5px solid var(--tb-green);
border-radius: var(--tb-radius-lg);
box-shadow: 0 0 0 3px rgba(39,174,96,.08);
} .tb-section-hidden {
display: none !important;
}
.tb-section-open {
border-color: var(--tb-green) !important;
box-shadow: 0 0 0 3px rgba(39,174,96,.07) !important;
}
.tb-sec-head-simple {
padding: 18px 24px 0;
}
.tb-sec-head-simple h3 {
margin: 0 0 4px;
font-size: 16px;
font-weight: 700;
color: var(--tb-dark);
} .tb-sec-error {
margin: 0 0 16px;
padding: 10px 14px;
background: #fff5f5;
border: 1.5px solid #fed7d7;
border-radius: var(--tb-radius);
color: #c53030;
font-size: 14px;
font-weight: 500;
display: flex;
align-items: center;
gap: 8px;
} .tb-grid-3 {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 16px;
padding: 0;
}
@media (max-width: 640px) { .tb-grid-3 { grid-template-columns: 1fr; } }
.tb-flight-section {
background: var(--tb-bg2);
border: 1.5px solid var(--tb-border);
border-radius: var(--tb-radius-lg);
padding: 18px 20px;
}
.tb-flight-label {
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .06em;
color: var(--tb-muted);
margin-bottom: 14px;
display: flex;
align-items: center;
gap: 6px;
}
.tb-flight-label::before {
content: '✈';
font-size: 14px;
} .tb-time-wrap {
display: flex;
align-items: center;
gap: 8px;
padding: 0 14px;
border: 1.5px solid var(--tb-border);
border-radius: var(--tb-radius);
background: var(--tb-bg);
cursor: pointer;
transition: border-color var(--tb-transition), box-shadow var(--tb-transition);
}
.tb-time-wrap:hover { border-color: #a0d9b8; }
.tb-time-wrap:focus-within {
border-color: var(--tb-green);
box-shadow: 0 0 0 3px rgba(39,174,96,.12);
}
.tb-time-wrap svg {
width: 16px;
height: 16px;
color: var(--tb-muted);
flex-shrink: 0;
pointer-events: none;
}
.tb-time-wrap input[type="time"] {
border: none !important;
outline: none !important;
background: transparent !important;
font-size: 15px !important;
font-weight: 500 !important;
color: var(--tb-text) !important;
padding: 10px 0 !important;
width: 100% !important;
cursor: pointer !important;
box-shadow: none !important;
} .tb-route-summary-bar {
display: flex;
align-items: center;
gap: 12px;
padding: 12px 16px;
background: #f8f9fa;
border-radius: 8px;
margin-bottom: 20px;
font-size: 15px;
color: #555;
}
.tb-route-summary-bar strong { color: #1a1a1a; }
.tb-route-arrow { color: #2e7d32; font-size: 18px; }
.tb-input-readonly {
background: #f8f9fa;
border: 1.5px solid var(--tb-border);
border-radius: var(--tb-radius);
padding: 10px 14px;
font-size: 16px;
width: 100%;
box-sizing: border-box;
color: #333;
}
.tb-info-box {
display: flex;
align-items: center;
gap: 10px;
background: #e8f4fd;
border: 1px solid #b8d9f0;
border-radius: 8px;
padding: 12px 16px;
margin-bottom: 20px;
color: #1a5276;
font-size: 14px;
}
.tb-info-box svg { flex-shrink: 0; color: #2980b9; }
.tb-flight-label {
font-size: 13px;
font-weight: 600;
color: #555;
margin-bottom: 12px;
margin-top: 4px;
letter-spacing: 0.3px;
} .tb-pax-range-wrap {
display: flex;
gap: 10px;
}
.tb-pax-range-btn {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
gap: 4px;
padding: 14px 8px;
background: #fff;
border: 2px solid var(--tb-border);
border-radius: var(--tb-radius);
cursor: pointer;
transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
font-family: var(--tb-font);
}
.tb-pax-range-btn:hover {
border-color: var(--tb-green);
background: #f0faf2;
}
.tb-pax-range-btn.selected {
border-color: var(--tb-green);
background: #f0faf2;
box-shadow: 0 0 0 3px rgba(39,174,96,0.12);
}
.tb-pax-range-icon { font-size: 22px; line-height: 1; }
.tb-pax-range-label { font-size: 17px; font-weight: 700; color: #1a1a1a; }
.tb-pax-range-sub { font-size: 11px; color: #888; font-weight: 400; }
@media (max-width: 480px) {
.tb-pax-range-wrap { flex-direction: column; }
} #tb-pax-range-select option:checked,
#tb-pax-range-select option:hover {
background: #e8f5e9;
color: #1e7e34;
} #tb-pax-range-select:focus {
border-color: #1e7e34;
box-shadow: 0 0 0 3px rgba(30,126,52,0.12);
} .tb-custom-select { position: relative; user-select: none; }
.tb-custom-select-trigger {
display: flex; align-items: center; justify-content: space-between;
padding: 10px 14px;
border: 1.5px solid var(--tb-border);
border-radius: var(--tb-radius);
background: #fff;
cursor: pointer;
font-size: 16px;
color: #888;
transition: border-color 0.15s, box-shadow 0.15s;
}
.tb-custom-select.selected .tb-custom-select-trigger { color: var(--tb-text); }
.tb-custom-select.open .tb-custom-select-trigger,
.tb-custom-select-trigger:hover {
border-color: var(--tb-green);
box-shadow: 0 0 0 3px rgba(30,126,52,0.1);
}
.tb-custom-select-trigger svg { transition: transform 0.2s; flex-shrink: 0; }
.tb-custom-select.open .tb-custom-select-trigger svg { transform: rotate(180deg); }
.tb-custom-select-dropdown {
display: none;
position: absolute;
top: calc(100% + 4px);
left: 0; right: 0;
background: #fff;
border: 1.5px solid var(--tb-green);
border-radius: var(--tb-radius);
box-shadow: 0 6px 20px rgba(0,0,0,0.15);
z-index: 9999;
overflow: visible;
}
.tb-custom-select.open .tb-custom-select-dropdown { display: block; }
.tb-field { overflow: visible !important; }
.tb-grid { overflow: visible !important; }
.tb-custom-select-option {
padding: 12px 16px;
font-size: 15px;
color: var(--tb-text);
cursor: pointer;
transition: background 0.12s, color 0.12s;
}
.tb-custom-select-option:hover { background: #f0faf2; color: var(--tb-green); }
.tb-custom-select-option.selected { background: #e8f5e9; color: var(--tb-green); font-weight: 600; } #tb-confirm-date-wrap {
display: flex;
align-items: center;
gap: 10px;
padding: 10px 14px;
border: 1.5px solid var(--tb-border);
border-radius: var(--tb-radius);
background: #fff;
transition: border-color 0.15s;
}
#tb-confirm-date-wrap:hover,
#tb-confirm-date-wrap:focus-within {
border-color: var(--tb-green);
}
#tb-confirm-date-wrap svg { flex-shrink: 0; color: var(--tb-muted); } .tb-time-picker {
display: flex;
align-items: center;
justify-content: center;
gap: 4px;
border: 1.5px solid var(--tb-border);
border-radius: var(--tb-radius);
padding: 4px 12px;
background: #fff;
transition: border-color 0.15s;
width: 100%;
box-sizing: border-box;
min-height: 46px;
}
.tb-time-val {
font-size: 16px;
font-weight: 700;
color: var(--tb-text);
line-height: 1.2;
cursor: text;
border: none;
outline: none;
background: transparent;
width: 28px;
padding: 0;
text-align: center;
font-family: var(--tb-font);
}
.tb-time-colon {
font-size: 16px;
font-weight: 700;
color: var(--tb-muted);
line-height: 1.2;
padding: 0 2px;
margin-top: 12px;
}
.tb-time-arrow {
background: none;
border: none;
cursor: pointer;
font-size: 8px;
color: var(--tb-muted);
padding: 1px 4px;
border-radius: 3px;
transition: background 0.12s, color 0.12s;
line-height: 1;
}
.tb-time-arrow:hover {
background: #f0faf2;
color: var(--tb-green);
}
.tb-time-picker:focus-within {
border-color: var(--tb-green);
box-shadow: 0 0 0 3px rgba(30,126,52,0.1);
}
.tb-time-segment {
display: flex;
flex-direction: column;
align-items: center;
gap: 0;
}
.tb-time-val {
font-size: 18px;
font-weight: 700;
color: var(--tb-text);
line-height: 1.2;
min-width: 28px;
text-align: center;
cursor: text;
border: none;
outline: none;
background: transparent;
width: 36px;
padding: 0;
font-family: var(--tb-font);
}
.tb-time-colon {
font-size: 18px;
font-weight: 700;
color: var(--tb-muted);
line-height: 1.2;
padding: 0 2px;
margin-top: 14px;
}
.tb-time-arrow {
background: none;
border: none;
cursor: pointer;
font-size: 9px;
color: var(--tb-muted);
padding: 1px 6px;
border-radius: 3px;
transition: background 0.12s, color 0.12s;
line-height: 1;
}
.tb-time-arrow:hover {
background: #f0faf2;
color: var(--tb-green);
} #tb-confirm-date-wrap,
#tb-arrival-wrap {
display: flex;
align-items: center;
gap: 10px;
padding: 10px 14px;
border: 1.5px solid var(--tb-border);
border-radius: var(--tb-radius);
background: #fff;
transition: border-color 0.15s;
box-sizing: border-box;
width: 100%;
}
#tb-confirm-date-wrap:hover,
#tb-confirm-date-wrap:focus-within,
#tb-arrival-wrap:hover,
#tb-arrival-wrap:focus-within {
border-color: var(--tb-green);
}
#tb-confirm-date-wrap svg,
#tb-arrival-wrap svg { flex-shrink: 0; color: var(--tb-muted); }
.tb-field #tb-confirm-date-wrap,
.tb-field #tb-arrival-wrap { width: 100% !important; } #tb-arrival-time {
width: 100%;
padding: 10px 14px;
border: 1.5px solid var(--tb-border);
border-radius: var(--tb-radius);
font-size: 16px;
font-family: var(--tb-font);
color: var(--tb-text);
background: var(--tb-bg);
outline: none;
cursor: pointer;
box-sizing: border-box;
transition: border-color var(--tb-transition);
-webkit-appearance: none;
}
#tb-arrival-time:focus { border-color: var(--tb-green); } .tb-layout {
position: relative; width: 100vw;
margin-left: calc(-50vw + 50%);
margin-right: calc(-50vw + 50%);
}
.tb-form-col {
max-width: 1060px;
margin: 0 auto;
min-width: 0;
} .tb-sidebar {
position: absolute;
top: 0; left: calc(50% + 530px + 24px);
width: 220px;
height: 100%; z-index: 50;
}
.tb-sidebar-card {
position: sticky;
top: 88px; } @media (max-width: 1303px) {
.tb-layout {
width: auto;
margin-left: 0;
margin-right: 0;
}
.tb-sidebar {
position: static;
width: auto;
max-width: 480px;
margin: 24px auto 0;
left: auto;
}
.tb-sidebar-card {
position: static;
max-height: none;
overflow: visible;
}
} .tb-sidebar-card {
background: var(--tb-bg);
border: 1px solid var(--tb-border);
border-radius: var(--tb-radius-lg);
box-shadow: var(--tb-shadow-sm);
font-family: var(--tb-font); }
.tb-sidebar-head {
background: var(--tb-dark);
color: #fff;
font-size: 13px;
font-weight: 700;
letter-spacing: 0.08em;
padding: 14px 16px;
border-top-left-radius: var(--tb-radius-lg);
border-top-right-radius: var(--tb-radius-lg);
}
.tb-sidebar-body { padding: 16px 16px 4px; }
.tb-sb-section-title {
font-size: 15px;
font-weight: 700;
color: var(--tb-text);
margin-bottom: 12px;
}
.tb-sb-row {
display: grid;
grid-template-columns: minmax(0, 42%) minmax(0, 1fr);
gap: 8px 10px;
align-items: start;
padding: 7px 0;
border-bottom: 1px solid var(--tb-border);
font-size: 12.5px;
line-height: 1.4;
}
.tb-sb-row:last-of-type { border-bottom: none; }
.tb-sb-label {
color: var(--tb-muted);
font-size: 11px;
font-weight: 600;
letter-spacing: 0.06em;
padding-top: 2px;
min-width: 0;
overflow-wrap: anywhere;
line-height: 1.35;
}
.tb-sb-value {
color: var(--tb-text);
font-weight: 600;
min-width: 0;
word-break: break-word;
overflow-wrap: anywhere;
text-align: right;
}
.tb-sb-row--multi .tb-sb-value {
font-weight: 500;
white-space: pre-line;
} .tb-sidebar-total {
background: var(--tb-green);
color: #fff;
padding: 14px 16px 16px;
text-align: left;
border-bottom-left-radius: var(--tb-radius-lg);
border-bottom-right-radius: var(--tb-radius-lg);
}
.tb-sb-total-label {
font-size: 12px;
font-weight: 700;
letter-spacing: 0.06em;
margin-bottom: 3px;
}
.tb-sb-total-price {
font-size: 22px;
font-weight: 800;
line-height: 1.1;
}
.tb-sb-total-note {
font-size: 11px;
opacity: 0.9;
margin-top: 2px;
} .tb-sec-intro {
display: flex;
align-items: flex-start;
gap: 10px;
background: rgba(39, 174, 96, 0.08);
border-left: 3px solid var(--tb-green);
border-radius: 6px;
padding: 12px 14px;
margin: 32px 0 6px;
font-size: 14px;
color: var(--tb-text);
line-height: 1.5;
} .tb-btn-book {
display: block;
width: 100%;
padding: 18px 24px;
font-size: 18px;
font-weight: 800;
letter-spacing: 0.08em;
text-transform: uppercase;
} #tb-arrival-date[readonly] {
background: #f7f8fa;
color: var(--tb-text);
cursor: default;
} .tb-dev-num {
display: flex;
align-items: center;
gap: 12px;
background: transparent;
border: none;
padding: 0 !important;
margin: 0 0 18px !important;
}
.tb-sec-head-simple.tb-dev-num {
padding: 18px 0 0 !important;
}
.tb-dev-num h3 {
display: flex !important;
align-items: center;
gap: 12px;
color: var(--tb-dark) !important;
margin: 0 !important;
font-family: inherit !important;
font-size: 17px !important;
font-weight: 700 !important;
letter-spacing: 0;
line-height: 1.2;
}
.tb-dev-num .tb-step-badge {
display: inline-flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
background: var(--tb-green);
color: #fff;
border-radius: 50%;
font-size: 14px;
font-weight: 700;
font-family: inherit;
flex-shrink: 0;
box-shadow: 0 2px 6px rgba(39, 174, 96, 0.25);
}
.tb-dev-num .tb-step-title {
color: var(--tb-dark);
} .tb-custom-select-dropdown--scroll {
max-height: 260px;
overflow-y: auto;
}
.tb-no-vehicles {
text-align: center;
padding: 40px 20px;
color: var(--tb-muted);
background: #f7f8fa;
border-radius: var(--tb-radius);
font-size: 15px;
} .tb-vc-real-badge {
display: inline-block;
margin-left: 8px;
padding: 3px 8px;
border-radius: 12px;
font-size: 12px;
font-weight: 700;
letter-spacing: 0.02em;
vertical-align: middle;
}
.tb-vc-real-discount {
background: #d4f5d8;
color: #0f6b25;
}
.tb-vc-real-markup {
background: #fde0d8;
color: #8a2b18;
} .tb-paylink-card {
display: inline-block;
cursor: pointer;
position: relative;
}
.tb-paylink-card input[type="radio"] {
position: absolute;
opacity: 0;
pointer-events: none;
}
.tb-paylink-card .tb-paylink-card-inner {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 16px;
border: 2px solid #d0d7de;
border-radius: 8px;
background: #ffffff;
color: #444;
font-size: 14px;
font-weight: 500;
transition: all 0.15s ease;
}
.tb-paylink-card:hover .tb-paylink-card-inner {
border-color: var(--tb-green);
background: #f7fbf7;
}
.tb-paylink-card input[type="radio"]:checked + .tb-paylink-card-inner {
border-color: var(--tb-green);
background: var(--tb-green);
color: #ffffff;
box-shadow: 0 2px 8px rgba(46, 154, 60, 0.25);
}
.tb-paylink-card input[type="radio"]:checked + .tb-paylink-card-inner svg {
stroke: #ffffff;
} .tb-wheel-overlay {
display: none;
position: fixed;
inset: 0;
z-index: 100000;
background: rgba(0, 0, 0, 0.42);
align-items: flex-end;
justify-content: center;
}
.tb-wheel-overlay.open {
display: flex;
}
.tb-wheel-sheet {
width: 100%;
background: #fff;
border-radius: 16px 16px 0 0;
padding-bottom: env(safe-area-inset-bottom, 12px);
animation: tbWheelUp 0.28s ease;
font-family: var(--tb-font);
}
@keyframes tbWheelUp {
from { transform: translateY(100%); }
to   { transform: translateY(0); }
}
.tb-wheel-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 12px 16px;
border-bottom: 1px solid var(--tb-border);
}
.tb-wheel-cancel,
.tb-wheel-done {
border: none;
background: none;
font-size: 16px;
padding: 8px 6px;
cursor: pointer;
font-family: var(--tb-font);
}
.tb-wheel-cancel { color: var(--tb-muted); }
.tb-wheel-done {
color: var(--tb-green);
font-weight: 700;
}
.tb-wheel-title {
font-weight: 600;
font-size: 15px;
color: var(--tb-dark);
}
.tb-wheel-body {
position: relative;
display: flex;
align-items: center;
justify-content: center;
height: 220px;
overflow: hidden;
gap: 2px;
}
.tb-wheel-highlight {
position: absolute;
left: 20px;
right: 20px;
top: 50%;
transform: translateY(-50%);
height: 44px;
background: rgba(39, 174, 96, 0.1);
border-radius: 10px;
border: 1px solid rgba(39, 174, 96, 0.18);
pointer-events: none;
z-index: 1;
}
.tb-wheel-fade-top,
.tb-wheel-fade-bottom {
position: absolute;
left: 0;
right: 0;
height: 88px;
pointer-events: none;
z-index: 2;
}
.tb-wheel-fade-top {
top: 0;
background: linear-gradient(to bottom, #fff 30%, rgba(255, 255, 255, 0));
}
.tb-wheel-fade-bottom {
bottom: 0;
background: linear-gradient(to top, #fff 30%, rgba(255, 255, 255, 0));
}
.tb-wheel-col-wrap {
flex: 1;
max-width: 110px;
height: 220px;
overflow: hidden;
z-index: 3;
}
.tb-wheel-col {
height: 100%;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
scroll-snap-type: y mandatory;
scrollbar-width: none;
overscroll-behavior: contain;
}
.tb-wheel-col::-webkit-scrollbar { display: none; }
.tb-wheel-spacer {
height: 88px;
flex-shrink: 0;
}
.tb-wheel-item {
height: 44px;
display: flex;
align-items: center;
justify-content: center;
font-size: 21px;
font-weight: 500;
color: #a0aec0;
scroll-snap-align: center;
user-select: none;
}
.tb-wheel-item.active {
color: var(--tb-dark);
font-weight: 700;
font-size: 24px;
}
.tb-wheel-sep {
font-size: 24px;
font-weight: 700;
color: var(--tb-dark);
z-index: 3;
line-height: 1;
padding-bottom: 2px;
} @media (max-width: 768px) {
#tb-pickup-time-input,
#tb-pickup-time-input-2,
#tb-arrival-date,
#tb-return-pickup-time,
#tb-return-flight-time {
cursor: pointer;
caret-color: transparent;
}
}