:root {
	--dtt-navy: #07165c;
	--dtt-ink: #172033;
	--dtt-muted: #667085;
	--dtt-line: #e6ebf1;
	--dtt-surface: #ffffff;
	--dtt-bg: #f3f3f9;
	--dtt-teal: #18bfc1;
	--dtt-teal-dark: #0f969a;
	--dtt-green: #12a85b;
	--dtt-yellow: #f5c84b;
	--dtt-red: #d33f49;
	--dtt-radius: 8px;
	--dtt-shadow: 0 8px 22px rgba(7, 22, 92, 0.06);
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--dtt-bg);
	color: var(--dtt-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 15px;
	line-height: 1.5;
}

a {
	color: var(--dtt-teal-dark);
	text-decoration: none;
}

a:hover,
a:focus {
	color: var(--dtt-navy);
}

img {
	max-width: 100%;
	height: auto;
}

.dtt-site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 24px;
	min-height: 70px;
	padding: 10px clamp(18px, 5vw, 72px);
	background: var(--dtt-surface);
	border-bottom: 1px solid var(--dtt-line);
	box-shadow: 0 1px 2px rgba(7, 22, 92, 0.04);
}

.dtt-brand {
	display: inline-flex;
	align-items: center;
	min-width: 190px;
}

.dtt-brand img {
	display: block;
	width: min(230px, 36vw);
	max-height: 48px;
	object-fit: contain;
	object-position: left center;
}

.dtt-header-nav {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.dtt-header-nav {
	justify-content: flex-end;
	justify-self: end;
}

.dtt-user-chip {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 50px;
	padding: 0 14px;
	background: #f8f9fc;
	border-left: 1px solid var(--dtt-line);
}

.dtt-user-avatar {
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	background: #e8f8ef;
	border: 2px solid #ffffff;
	border-radius: 50%;
	color: var(--dtt-green);
	font-size: 14px;
	font-weight: 900;
	box-shadow: 0 0 0 1px #cdebd9;
}

.dtt-user-chip strong,
.dtt-user-chip small {
	display: block;
	line-height: 1.1;
}

.dtt-user-chip small {
	margin-top: 4px;
	color: var(--dtt-muted);
	font-size: 12px;
}

.dtt-nav-group {
	position: relative;
	display: inline-flex;
	min-width: 0;
}

.dtt-header-nav a {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 9px 12px;
	background: transparent;
	border: 0;
	color: var(--dtt-ink);
	border-radius: 6px;
	cursor: pointer;
	font: inherit;
	font-weight: 700;
	font-size: 14px;
}

.dtt-header-nav a:hover {
	background: #e9f8f8;
	color: var(--dtt-navy);
}

.dtt-dashboard-nav {
	position: relative;
	z-index: 15;
	display: flex;
	align-items: center;
	gap: 20px;
	min-height: 50px;
	margin: -8px 0 24px;
	padding: 0 18px;
	background: var(--dtt-surface);
	border: 1px solid var(--dtt-line);
	border-radius: 4px;
	box-shadow: 0 1px 3px rgba(7, 22, 92, 0.06);
}

.dtt-dashboard-nav a,
.dtt-nav-trigger {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 48px;
	padding: 0;
	background: transparent;
	border: 0;
	color: #5d6680;
	cursor: pointer;
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
}

.dtt-dashboard-nav > a:hover,
.dtt-dashboard-nav > a:focus,
.dtt-nav-trigger:hover,
.dtt-nav-trigger:focus {
	color: var(--dtt-navy);
}

.dtt-nav-icon {
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.dtt-nav-trigger::after {
	content: "⌄";
	margin-left: 8px;
	color: var(--dtt-muted);
	font-size: 13px;
	line-height: 1;
}

.dtt-nav-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 45;
	display: none;
	min-width: 230px;
	padding: 7px;
	background: var(--dtt-surface);
	border: 1px solid var(--dtt-line);
	border-radius: 4px;
	box-shadow: 0 18px 36px rgba(7, 22, 92, 0.14);
}

.dtt-nav-menu a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	min-height: 38px;
	padding: 0 10px;
	border-radius: 4px;
	color: #5d6680;
	white-space: nowrap;
}

.dtt-nav-menu a:hover,
.dtt-nav-menu a:focus {
	background: #f3f6f9;
	color: var(--dtt-navy);
}

.dtt-nav-group.dtt-nav-open .dtt-nav-menu {
	display: grid;
	gap: 2px;
}

.dtt-page-shell {
	width: min(1280px, calc(100% - 32px));
	margin: 0 auto;
	padding: 26px 0 56px;
}

.dtt-content-panel,
.dtt-auth-card,
.dtt-stat-card,
.dtt-action-band,
.dtt-form-section,
.dtt-quote-shell {
	background: var(--dtt-surface);
	border: 1px solid var(--dtt-line);
	border-radius: 6px;
	box-shadow: var(--dtt-shadow);
}

.dtt-panel-flat {
	box-shadow: none;
}

.dtt-content-panel {
	padding: clamp(22px, 4vw, 34px);
}

.dtt-app-page {
	width: 100%;
}

.dtt-entry-header h1,
.dtt-page-heading h1,
.dtt-app-hero h1,
.dtt-auth-brand h1 {
	margin: 0;
	color: var(--dtt-navy);
	line-height: 1.1;
	letter-spacing: 0;
}

.dtt-page-heading,
.dtt-app-hero {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 22px;
	padding: 22px 24px;
	background: var(--dtt-surface);
	border: 1px solid var(--dtt-line);
	border-left: 4px solid var(--dtt-teal);
	border-radius: 6px;
}

.dtt-page-heading p,
.dtt-app-hero p,
.dtt-auth-brand p,
.dtt-action-band p {
	margin: 8px 0 0;
	color: var(--dtt-muted);
}

.dtt-eyebrow {
	margin: 0 0 6px;
	color: var(--dtt-green);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.dtt-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 16px;
	border: 1px solid transparent;
	border-radius: 6px;
	cursor: pointer;
	font: inherit;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.dtt-button-primary {
	background: var(--dtt-teal);
	color: #04233f;
	border-color: var(--dtt-teal);
}

.dtt-button-primary:hover,
.dtt-button-primary:focus {
	background: var(--dtt-yellow);
	border-color: var(--dtt-yellow);
	color: var(--dtt-navy);
}

.dtt-button-secondary,
.dtt-button-ghost {
	background: #eef7f7;
	color: var(--dtt-navy);
	border-color: #cde8e8;
}

.dtt-button-secondary:hover,
.dtt-button-ghost:hover {
	background: #dff2f2;
}

.dtt-button-danger {
	background: #fff1f2;
	color: var(--dtt-red);
	border-color: #ffd0d4;
}

.dtt-button-small {
	min-height: 34px;
	padding: 7px 10px;
	font-size: 12px;
}

.dtt-button-wide {
	width: 100%;
}

.dtt-auth-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, 420px);
	gap: 28px;
	align-items: stretch;
}

.dtt-auth-brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 360px;
	padding: clamp(20px, 4vw, 36px);
	background: #eaf8f6;
	border-left: 8px solid var(--dtt-yellow);
	border-radius: var(--dtt-radius);
	text-align: center;
}

.dtt-auth-brand img {
	width: min(220px, 70%);
	margin-bottom: 20px;
	opacity: 0.82;
	mix-blend-mode: multiply;
}

.dtt-auth-card {
	padding: 28px;
}

.dtt-auth-card h2,
.dtt-form-section h2,
.dtt-content-panel h2,
.dtt-quote-section h2,
.dtt-action-band h2 {
	margin: 0 0 18px;
	color: var(--dtt-navy);
	font-size: 20px;
	line-height: 1.2;
	letter-spacing: 0;
}

.dtt-auth-switch {
	margin: 18px 0 0;
	color: var(--dtt-muted);
	text-align: center;
}

.dtt-form {
	display: grid;
	gap: 18px;
}

.dtt-form-section {
	padding: 22px;
	box-shadow: none;
}

.dtt-grid {
	display: grid;
	gap: 16px;
}

.dtt-grid > * {
	min-width: 0;
}

.dtt-grid-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dtt-grid-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dtt-grid-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dtt-grid-5 {
	grid-template-columns: 1.4fr repeat(4, minmax(0, 1fr));
}

.dtt-grid-6 {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.dtt-tour-rate-grid,
.dtt-tour-rate-less-grid {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.dtt-tour-rate-less-grid {
	margin-bottom: 8px;
	align-items: end;
}

.dtt-checkbox-field .dtt-checkbox-control {
	display: flex;
	align-items: center;
	gap: 8px;
	box-sizing: border-box;
	height: 65px;
	min-height: 65px;
	padding: 8px 10px;
	background: #fbfcfd;
	border: 1px solid #cbd7de;
	border-radius: 6px;
	color: var(--dtt-ink);
	font-size: 11px;
	font-weight: 800;
	line-height: 1.2;
	white-space: normal;
	overflow: hidden;
}

.dtt-checkbox-field input[type="checkbox"] {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	min-height: 0;
	margin: 0;
	padding: 0;
	accent-color: var(--dtt-teal);
}

.dtt-checkbox-label {
	flex: 1 1 auto;
	min-width: 0;
	overflow-wrap: anywhere;
}

.dtt-grid-span {
	grid-column: span 2;
}

.dtt-grid-span-full {
	grid-column: 1 / -1;
}

.dtt-room-media-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.dtt-photo-thumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	margin-top: 8px;
}

.dtt-photo-thumb-link {
	display: inline-flex;
	border-radius: 4px;
	outline-offset: 3px;
}

.dtt-photo-thumb-link:hover img,
.dtt-photo-thumb-link:focus img {
	border-color: var(--dtt-teal);
	box-shadow: 0 0 0 3px rgba(24, 191, 193, 0.16);
}

.dtt-photo-thumb-link img,
.dtt-photo-thumbs > img {
	display: block;
	width: 48px;
	height: 48px;
	border: 1px solid var(--dtt-line);
	border-radius: 4px;
	object-fit: cover;
	background: #f3f6f9;
}

.dtt-photo-more {
	display: inline-grid;
	place-items: center;
	min-width: 48px;
	height: 48px;
	padding: 0 8px;
	background: #edf8f8;
	border: 1px dashed #b8dedf;
	border-radius: 4px;
	color: var(--dtt-navy);
	font-size: 13px;
	font-weight: 900;
}

.dtt-photo-edit-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 10px;
}

.dtt-photo-edit-item {
	display: grid;
	gap: 5px;
	justify-items: center;
	width: 74px;
	padding: 6px;
	border: 1px solid var(--dtt-line);
	border-radius: 6px;
	background: #fff;
}

.dtt-photo-delete {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	min-height: auto;
	font-size: 11px;
	font-weight: 800;
	color: var(--dtt-red);
}

.dtt-photo-delete input {
	width: auto;
	min-height: auto;
	padding: 0;
}

.dtt-upload-status {
	min-height: 18px;
	color: var(--dtt-muted);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.35;
}

.dtt-upload-status-error {
	color: var(--dtt-red);
}

.dtt-file-current {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-top: 4px;
	color: var(--dtt-muted);
	font-size: 13px;
}

.dtt-form label,
.dtt-upload-box {
	display: grid;
	gap: 7px;
	min-width: 0;
}

.dtt-form label span,
.dtt-upload-box span {
	color: var(--dtt-ink);
	font-size: 13px;
	font-weight: 800;
}

.dtt-form input,
.dtt-form select,
.dtt-form textarea {
	width: 100%;
	min-height: 42px;
	padding: 10px 12px;
	background: #fbfcfd;
	border: 1px solid #cbd7de;
	border-radius: 6px;
	color: var(--dtt-ink);
	font: inherit;
}

.select2-hidden-accessible {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.select2-container {
	position: relative;
	display: block;
	width: 100%;
	min-width: 0;
}

.select2-selection {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	width: 100%;
	min-height: 42px;
	padding: 10px 12px;
	background: #fbfcfd;
	border: 1px solid #cbd7de;
	border-radius: 6px;
	color: var(--dtt-ink);
	cursor: pointer;
	font: inherit;
	text-align: left;
	min-width: 0;
}

.select2-selection:focus {
	outline: 3px solid rgba(24, 191, 193, 0.18);
	border-color: var(--dtt-teal);
}

.select2-selection__rendered {
	display: block;
	flex: 1 1 auto;
	min-width: 0;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.select2-selection__arrow {
	flex: 0 0 auto;
	color: var(--dtt-muted);
	font-size: 12px;
}

.select2-dropdown {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 4px);
	z-index: 40;
	display: none;
	padding: 8px;
	background: var(--dtt-surface);
	border: 1px solid #b8c9d2;
	border-radius: 6px;
	box-shadow: 0 16px 34px rgba(7, 22, 92, 0.14);
}

.select2-container--open .select2-dropdown {
	display: block;
}

.select2-search__field {
	width: 100%;
	min-height: 36px !important;
	margin: 0 0 8px;
	padding: 8px 10px !important;
	background: #f1fbfb !important;
	border-color: #bce4e5 !important;
	font-size: 14px !important;
}

.select2-results__options {
	max-height: 220px;
	margin: 0;
	padding: 0;
	overflow-y: auto;
	list-style: none;
}

.select2-results__option {
	padding: 9px 10px;
	border-radius: 5px;
	cursor: pointer;
	font-size: 14px;
}

.select2-results__option:hover,
.select2-results__option--selected {
	background: #e8f8f8;
	color: var(--dtt-navy);
}

.select2-results__option--empty {
	color: var(--dtt-muted);
	cursor: default;
}

.dtt-form textarea {
	resize: vertical;
}

.dtt-form input:focus,
.dtt-form select:focus,
.dtt-form textarea:focus {
	outline: 3px solid rgba(24, 191, 193, 0.18);
	border-color: var(--dtt-teal);
}

.dtt-upload-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
}

.dtt-upload-box {
	min-height: 118px;
	padding: 16px;
	background: #f8fbfc;
	border: 1px dashed #aebfc8;
	border-radius: var(--dtt-radius);
}

.dtt-section-header,
.dtt-form-actions,
.dtt-quote-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.dtt-section-header {
	margin-bottom: 16px;
}

.dtt-section-header h2 {
	margin: 0;
}

.dtt-repeater-row {
	position: relative;
	padding: 16px 0;
	border-top: 1px solid #edf2f5;
}

.dtt-repeater-row:first-child {
	padding-top: 0;
	border-top: 0;
}

.dtt-day-list {
	display: grid;
	gap: 16px;
}

.dtt-day-card {
	padding: 16px;
	background: #f8fbfc;
	border: 1px solid #edf2f5;
	border-radius: var(--dtt-radius);
}

.dtt-day-header {
	display: grid;
	grid-template-columns: 96px minmax(0, 1fr);
	gap: 14px;
	align-items: end;
}

.dtt-day-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: flex-end;
}

.dtt-day-blocks {
	display: grid;
	gap: 12px;
	margin-top: 14px;
}

.dtt-day-block {
	position: relative;
	padding: 14px;
	background: var(--dtt-surface);
	border: 1px solid #dfe8ed;
	border-radius: 6px;
}

.dtt-day-block-title {
	margin-bottom: 10px;
	color: var(--dtt-navy);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.dtt-itinerary-line {
	grid-template-columns: 86px minmax(230px, 1fr) minmax(190px, 0.7fr) auto;
	align-items: end;
}

.dtt-booking-form [data-dtt-repeater="hotels"] .dtt-hotel-line {
	grid-template-columns: minmax(190px, 1.4fr) minmax(150px, 1.2fr) minmax(120px, 0.8fr) repeat(3, minmax(96px, 0.7fr));
}

.dtt-transport-actions {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: flex-end;
}

.dtt-transport-line {
	grid-template-columns: minmax(130px, 1fr) minmax(95px, 0.75fr) minmax(105px, 0.8fr) minmax(95px, 0.75fr) minmax(110px, 0.85fr) minmax(145px, 1fr) minmax(130px, 0.9fr) minmax(90px, 0.65fr) minmax(116px, 0.8fr);
	align-items: end;
}

[data-dtt-transfer-rate-wrap][hidden] {
	display: none !important;
}

.dtt-itinerary-actions {
	display: flex;
	align-items: end;
	gap: 8px;
	padding-bottom: 1px;
}

.dtt-row-actions {
	display: flex;
	justify-content: flex-end;
	margin-top: 10px;
}

.dtt-day-block > .dtt-row-actions {
	margin-top: 10px;
	padding-bottom: 0;
	justify-content: flex-end;
}

.dtt-addon-line {
	grid-template-columns: minmax(220px, 1.2fr) minmax(110px, 0.45fr) minmax(130px, 0.5fr) minmax(240px, 1fr);
	align-items: end;
}

.dtt-addons-grid {
	grid-template-columns: repeat(6, minmax(96px, 1fr));
	gap: 12px;
}

.dtt-compact-grid input,
.dtt-compact-grid select,
.dtt-compact-grid textarea,
.dtt-compact-grid .select2-selection {
	min-height: 36px;
	padding: 8px 10px;
}

.dtt-form-actions {
	padding: 20px 0;
}

.dtt-filter-form {
	margin-bottom: 14px;
	padding: 14px;
	background: #f8fbfc;
	border: 1px solid #edf2f5;
	border-radius: var(--dtt-radius);
}

.dtt-filter-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: end;
}

.dtt-filter-actions {
	display: flex;
	gap: 8px;
	align-items: end;
}

.dtt-form-actions p {
	margin: 0;
	color: var(--dtt-muted);
	font-size: 13px;
	font-weight: 700;
}

.dtt-live-total {
	display: grid;
	gap: 7px;
	padding: 14px 16px;
	background: #f7fcfb;
	border: 1px solid #d7ecec;
	border-radius: var(--dtt-radius);
}

.dtt-live-total span {
	color: var(--dtt-muted);
	font-size: 13px;
	font-weight: 800;
}

.dtt-live-total strong {
	color: var(--dtt-navy);
	font-size: 28px;
	line-height: 1;
}

.dtt-notice {
	margin: 0 0 18px;
	padding: 14px 16px;
	border-radius: 6px;
	border: 1px solid;
	font-weight: 700;
}

.dtt-notice-success {
	background: #edf9f2;
	border-color: #bfe9cf;
	color: #096235;
}

.dtt-notice-error {
	background: #fff1f2;
	border-color: #ffd0d4;
	color: #9f1d2b;
}

.dtt-notice-info,
.dtt-notice-warning {
	background: #fff8e1;
	border-color: #f2d27d;
	color: #6a4b00;
}

.dtt-stat-grid,
.dtt-metric-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-bottom: 22px;
}

.dtt-stat-grid-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dtt-stat-card,
.dtt-metric {
	display: grid;
	gap: 8px;
	padding: 20px;
	color: var(--dtt-ink);
}

.dtt-stat-card {
	position: relative;
	min-height: 132px;
	overflow: hidden;
	box-shadow: none;
}

.dtt-stat-card::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 4px;
	background: var(--dtt-teal);
}

.dtt-stat-card-teal::before {
	background: var(--dtt-teal);
}

.dtt-stat-card-green::before {
	background: var(--dtt-green);
}

.dtt-stat-card-yellow::before {
	background: var(--dtt-yellow);
}

.dtt-stat-card-navy::before {
	background: var(--dtt-navy);
}

.dtt-stat-card .dtt-stat-label,
.dtt-metric span {
	color: var(--dtt-muted);
	font-size: 13px;
	font-weight: 800;
}

.dtt-stat-card strong,
.dtt-metric strong {
	color: var(--dtt-navy);
	font-size: 28px;
	line-height: 1;
	letter-spacing: 0;
}

.dtt-stat-card small {
	max-width: calc(100% - 58px);
	color: #8a94a6;
	font-size: 12px;
	font-weight: 700;
}

.dtt-stat-icon {
	position: absolute;
	right: 18px;
	bottom: 18px;
	width: 44px;
	height: 44px;
	background: #e8f8f8;
	border-radius: 50%;
}

.dtt-stat-icon::after {
	content: "";
	position: absolute;
	inset: 13px;
	border: 3px solid var(--dtt-teal-dark);
	border-top-color: transparent;
	border-radius: 50%;
}

.dtt-dashboard-hero {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 22px;
	padding: 24px;
	background: linear-gradient(135deg, rgba(7, 22, 92, 0.92), rgba(15, 150, 154, 0.82));
	border-radius: 6px;
	color: #ffffff;
	overflow: hidden;
}

.dtt-dashboard-hero h1 {
	margin: 0;
	color: #ffffff;
	font-size: 34px;
	line-height: 1.15;
}

.dtt-dashboard-hero p {
	max-width: 760px;
	margin: 8px 0 0;
	color: rgba(255, 255, 255, 0.78);
}

.dtt-dashboard-hero .dtt-eyebrow {
	color: var(--dtt-yellow);
}

.dtt-dashboard-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
}

.dtt-dashboard-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
	gap: 18px;
	margin-bottom: 22px;
}

.dtt-dashboard-grid-main {
	grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
}

.dtt-dashboard-grid-6 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dtt-dashboard-card {
	padding: 20px;
	background: var(--dtt-surface);
	border: 1px solid var(--dtt-line);
	border-radius: 6px;
	box-shadow: 0 1px 2px rgba(7, 22, 92, 0.04);
}

.dtt-dashboard-card h2 {
	margin: 0;
	color: var(--dtt-ink);
	font-size: 18px;
}

.dtt-card-kicker {
	color: #8a94a6;
	font-size: 12px;
	font-weight: 800;
}

.dtt-bar-chart {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 16px;
	align-items: end;
	min-height: 260px;
	padding-top: 20px;
}

.dtt-bar-item {
	display: grid;
	gap: 8px;
	align-items: end;
	min-width: 0;
	text-align: center;
}

.dtt-bar-track {
	position: relative;
	height: 168px;
	background: #f3f6f9;
	border-radius: 999px;
	overflow: hidden;
}

.dtt-bar-track span {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: var(--bar);
	background: linear-gradient(180deg, var(--dtt-teal), var(--dtt-green));
	border-radius: 999px;
}

.dtt-bar-item strong {
	color: var(--dtt-ink);
	font-size: 12px;
	line-height: 1.2;
}

.dtt-bar-item small {
	color: var(--dtt-muted);
	font-size: 12px;
	font-weight: 800;
}

.dtt-status-chart {
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr);
	gap: 20px;
	align-items: center;
	padding-top: 14px;
}

.dtt-donut {
	position: relative;
	display: grid;
	place-items: center;
	width: 150px;
	aspect-ratio: 1;
	border-radius: 50%;
}

.dtt-donut::after {
	content: "";
	position: absolute;
	inset: 24px;
	background: #ffffff;
	border-radius: 50%;
	box-shadow: inset 0 0 0 1px #edf0f5;
}

.dtt-donut span {
	position: relative;
	z-index: 1;
	color: var(--dtt-navy);
	font-size: 28px;
	font-weight: 900;
}

.dtt-status-list,
.dtt-catalog-list {
	display: grid;
	gap: 10px;
}

.dtt-status-list div,
.dtt-catalog-list a {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 10px;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid #edf0f5;
}

.dtt-status-list i {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.dtt-status-list span,
.dtt-catalog-list span {
	color: var(--dtt-muted);
	font-weight: 800;
}

.dtt-status-list strong,
.dtt-catalog-list strong {
	color: var(--dtt-navy);
}

.dtt-profile-summary {
	display: grid;
	gap: 8px;
}

.dtt-profile-summary strong {
	color: var(--dtt-navy);
	font-size: 18px;
}

.dtt-profile-summary small,
.dtt-profile-summary p {
	margin: 0;
	color: var(--dtt-muted);
	font-weight: 700;
}

.dtt-progress-line {
	height: 8px;
	margin: 10px 0 2px;
	background: #edf0f5;
	border-radius: 999px;
	overflow: hidden;
}

.dtt-progress-line span {
	display: block;
	width: var(--progress);
	height: 100%;
	background: linear-gradient(90deg, var(--dtt-teal), var(--dtt-green));
	border-radius: inherit;
}

.dtt-action-band {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 22px;
	padding: 24px;
	background: #f7fcfb;
	box-shadow: none;
}

.dtt-filter-form {
	margin-bottom: 14px;
	padding: 16px;
	background: var(--dtt-surface);
	border: 1px solid var(--dtt-line);
	border-radius: 4px;
	box-shadow: 0 1px 3px rgba(7, 22, 92, 0.04);
}

.dtt-table-wrap {
	width: 100%;
	overflow-x: auto;
	background: var(--dtt-surface);
	border: 1px solid var(--dtt-line);
	border-radius: 4px;
	box-shadow: 0 1px 3px rgba(7, 22, 92, 0.06);
}

.dtt-table {
	width: 100%;
	min-width: 760px;
	border-collapse: collapse;
	color: #172033;
	font-size: 13px;
}

.dtt-table th,
.dtt-table td {
	padding: 13px 16px;
	border-bottom: 1px solid #eef1f5;
	text-align: left;
	vertical-align: middle;
}

.dtt-table th {
	background: var(--dtt-surface);
	color: #172033;
	font-size: 13px;
	font-weight: 800;
	text-transform: none;
	white-space: nowrap;
}

.dtt-table tbody tr:hover {
	background: #f8f9fc;
}

.dtt-table tbody tr:last-child td {
	border-bottom: 0;
}

.dtt-table td small {
	display: block;
	margin-top: 3px;
	color: var(--dtt-muted);
}

.dtt-pagination {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: 12px;
	color: var(--dtt-muted);
	font-size: 13px;
	font-weight: 700;
}

.dtt-pagination-links {
	display: flex;
	align-items: center;
	gap: 6px;
}

.dtt-pagination-page {
	display: inline-grid;
	place-items: center;
	min-width: 34px;
	height: 34px;
	padding: 0 10px;
	border: 1px solid var(--dtt-line);
	border-radius: 4px;
	background: #fff;
	color: var(--dtt-navy);
	font-weight: 900;
}

.dtt-pagination-page.is-active {
	background: var(--dtt-teal);
	border-color: var(--dtt-teal);
	color: #fff;
}

.dtt-disabled {
	opacity: 0.52;
	pointer-events: none;
}

.dtt-date-warning {
	color: #b42318;
	font-weight: 900;
}

.dtt-status {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 5px 9px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.dtt-status-approved,
.dtt-status-active {
	background: #e8f8ef;
	color: #08723d;
}

.dtt-status-pending,
.dtt-status-draft_quote,
.dtt-status-submitted {
	background: #fff5d1;
	color: #765300;
}

.dtt-status-declined,
.dtt-status-suspended,
.dtt-status-inactive,
.dtt-status-paused {
	background: #fff1f2;
	color: #a51d2c;
}

.dtt-inline-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.dtt-inline-actions form {
	margin: 0;
}

.dtt-profile-grid,
.dtt-quote-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 18px;
}

.dtt-detail-list {
	display: grid;
	grid-template-columns: 160px 1fr;
	gap: 10px 16px;
	margin: 0;
}

.dtt-detail-list dt {
	color: var(--dtt-muted);
	font-weight: 800;
}

.dtt-detail-list dd {
	margin: 0;
}

.dtt-catalog-detail {
	display: grid;
	gap: 24px;
	margin-bottom: 18px;
}

.dtt-catalog-detail h2 {
	margin: 0;
	font-size: 22px;
	line-height: 1.25;
}

.dtt-catalog-detail .dtt-photo-thumbs {
	gap: 10px;
	margin-top: 0;
}

.dtt-catalog-detail .dtt-photo-thumb-link img,
.dtt-catalog-detail .dtt-photo-thumbs > img {
	width: 72px;
	height: 72px;
}

.dtt-catalog-detail .dtt-detail-list {
	grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
	gap: 16px 32px;
	align-items: start;
}

.dtt-catalog-detail .dtt-detail-list dt {
	padding-top: 2px;
	line-height: 1.35;
}

.dtt-catalog-detail .dtt-detail-list dd {
	max-width: 820px;
	line-height: 1.65;
	overflow-wrap: anywhere;
}

.dtt-catalog-detail .dtt-table-wrap {
	margin-top: 8px;
}

.dtt-detail-text {
	white-space: normal;
}

.dtt-document-list {
	display: grid;
	gap: 10px;
}

.dtt-document-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px;
	background: #f8fbfc;
	border: 1px solid #edf2f5;
	border-radius: 6px;
}

.dtt-quote-shell {
	padding: clamp(20px, 4vw, 34px);
	box-shadow: none;
}

.dtt-quote-header {
	align-items: flex-start;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--dtt-line);
}

.dtt-quote-header img {
	width: 240px;
}

.dtt-quote-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px;
}

.dtt-quote-actions form {
	margin: 0;
}

.dtt-status-form {
	grid-template-columns: minmax(220px, 320px) auto;
	align-items: end;
	margin: 18px 0 0;
	padding: 16px;
	background: #f8fbfc;
	border: 1px solid #edf2f5;
	border-radius: var(--dtt-radius);
}

.dtt-quote-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 24px 0;
}

.dtt-quote-grid > div,
.dtt-quote-section {
	padding: 18px;
	border: 1px solid #edf2f5;
	border-radius: var(--dtt-radius);
}

.dtt-quote-grid h2,
.dtt-quote-section h2 {
	margin-bottom: 12px;
	font-size: 17px;
}

.dtt-quote-grid p {
	margin: 8px 0;
}

.dtt-quote-section {
	margin-top: 18px;
}

.dtt-itinerary-list {
	display: grid;
	gap: 12px;
}

.dtt-itinerary-item {
	padding: 14px;
	background: #f8fbfc;
	border-radius: 6px;
}

.dtt-itinerary-item h3 {
	margin: 4px 0;
	color: var(--dtt-navy);
	font-size: 17px;
}

.dtt-itinerary-entry + .dtt-itinerary-entry {
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px solid var(--dtt-line);
}

.dtt-itinerary-item p {
	margin: 0 0 6px;
}

.dtt-itinerary-meta {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 8px 12px;
	margin: 10px 0 12px;
	padding: 10px;
	background: #f8fbfc;
	border-radius: 6px;
}

.dtt-itinerary-meta dt {
	color: var(--dtt-muted);
	font-size: 12px;
	font-weight: 800;
}

.dtt-itinerary-meta dd {
	margin: 0;
	color: var(--dtt-ink);
	font-weight: 700;
}

.dtt-total-row td {
	color: var(--dtt-navy);
	font-weight: 900;
	font-size: 18px;
}

.dtt-validity {
	margin: 14px 0 0;
	color: var(--dtt-muted);
	font-weight: 800;
}

.dtt-modal-open {
	overflow: hidden;
}

.dtt-modal[hidden] {
	display: none;
}

.dtt-modal {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: grid;
	place-items: center;
	padding: 20px;
}

.dtt-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(7, 22, 92, 0.52);
}

.dtt-modal-panel {
	position: relative;
	z-index: 1;
	width: min(720px, 100%);
	max-height: min(720px, calc(100vh - 40px));
	overflow: hidden;
	background: var(--dtt-surface);
	border-radius: var(--dtt-radius);
	box-shadow: 0 24px 60px rgba(7, 22, 92, 0.24);
}

.dtt-modal-panel-image {
	width: min(1040px, 100%);
}

.dtt-modal-panel header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 18px 20px;
	border-bottom: 1px solid var(--dtt-line);
}

.dtt-modal-panel h2 {
	margin: 0;
	color: var(--dtt-navy);
	font-size: 20px;
}

.dtt-modal-panel button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	background: #eef7f7;
	border: 1px solid #cde8e8;
	border-radius: 6px;
	color: var(--dtt-navy);
	cursor: pointer;
	font: inherit;
	font-weight: 900;
}

.dtt-modal-body {
	max-height: calc(100vh - 132px);
	padding: 20px;
	overflow: auto;
	color: var(--dtt-ink);
	white-space: pre-line;
}

.dtt-modal-body-image {
	display: grid;
	place-items: center;
	padding: 16px;
	background: #f8fbfc;
	white-space: normal;
}

.dtt-gallery-frame {
	display: grid;
	gap: 12px;
	justify-items: center;
	margin: 0;
	width: 100%;
}

.dtt-modal-body-image img {
	display: block;
	max-width: 100%;
	max-height: calc(100vh - 172px);
	border-radius: 4px;
	object-fit: contain;
}

.dtt-gallery-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	color: var(--dtt-muted);
	font-size: 13px;
	font-weight: 900;
}

.dtt-gallery-controls .dtt-button {
	width: auto;
	height: 34px;
	min-height: 34px;
	padding: 0 12px;
}

.dtt-agent-suspend-form {
	display: grid;
	gap: 16px;
	white-space: normal;
}

.dtt-agent-suspend-form label {
	display: grid;
	gap: 8px;
}

.dtt-agent-suspend-form textarea {
	min-height: 120px;
	resize: vertical;
}

.dtt-agent-suspend-form .dtt-button {
	width: auto;
	height: 38px;
	min-height: 38px;
	padding: 0 16px;
}

.dtt-site-footer {
	padding: 24px;
	color: var(--dtt-muted);
	text-align: center;
}

body.logged-in {
	background: linear-gradient(180deg, #f6f9fd 0%, #eef3f8 100%);
}

body.logged-in .dtt-site-header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 50;
	display: grid;
	grid-template-columns: 180px 1fr;
	min-height: 46px;
	padding: 0 18px 0 16px;
	border-bottom: 1px solid rgba(15, 37, 78, 0.08);
	box-shadow: 0 4px 16px rgba(7, 22, 92, 0.08);
}

body.admin-bar.logged-in .dtt-site-header {
	top: 32px;
}

body.logged-in .dtt-brand {
	min-width: 0;
}

body.logged-in .dtt-brand img {
	width: 112px;
	max-height: 34px;
}

body.logged-in .dtt-header-nav {
	grid-column: 2;
	flex-wrap: nowrap;
	gap: 8px;
}

body.logged-in .dtt-user-chip {
	min-height: 40px;
	padding: 0;
	background: transparent;
	border-left: 0;
}

body.logged-in .dtt-user-avatar {
	width: 30px;
	height: 30px;
	background: #e5f8ef;
	color: #0aa05b;
}

body.logged-in .dtt-user-chip strong {
	color: #061657;
	font-size: 13px;
}

body.logged-in .dtt-user-chip small {
	font-size: 11px;
}

body.logged-in .dtt-header-nav .dtt-button-ghost {
	min-height: 34px;
	padding: 7px 10px;
	background: transparent;
	border-color: transparent;
	color: var(--dtt-navy);
}

body.logged-in .dtt-page-shell {
	width: auto;
	max-width: none;
	margin: 0 22px 0 0;
	margin-left: 210px;
	padding-top: 62px;
}

body.admin-bar.logged-in .dtt-page-shell {
	padding-top: 94px;
}

body.logged-in .dtt-dashboard-nav {
	position: fixed;
	top: 46px;
	bottom: 0;
	left: 0;
	z-index: 30;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 5px;
	width: 180px;
	min-height: 0;
	margin: 0;
	padding: 18px 14px;
	overflow-y: auto;
	background:
		linear-gradient(180deg, rgba(0, 93, 202, 0.98), rgba(0, 68, 169, 0.98)),
		linear-gradient(140deg, rgba(255, 255, 255, 0.13), transparent 46%);
	border: 0;
	border-radius: 0;
	box-shadow: 10px 0 28px rgba(0, 63, 161, 0.12);
}

body.admin-bar.logged-in .dtt-dashboard-nav {
	top: 78px;
}

body.logged-in .dtt-dashboard-nav a,
body.logged-in .dtt-nav-trigger {
	width: 100%;
	min-height: 38px;
	justify-content: flex-start;
	padding: 0 10px;
	border-radius: 6px;
	color: rgba(255, 255, 255, 0.86);
	font-size: 13px;
	font-weight: 800;
}

body.logged-in .dtt-dashboard-nav > a:hover,
body.logged-in .dtt-dashboard-nav > a:focus,
body.logged-in .dtt-dashboard-nav > a.dtt-nav-active,
body.logged-in .dtt-nav-trigger:hover,
body.logged-in .dtt-nav-trigger:focus,
body.logged-in .dtt-nav-group.dtt-nav-active > .dtt-nav-trigger,
body.logged-in .dtt-nav-group.dtt-nav-open .dtt-nav-trigger {
	background: rgba(18, 190, 169, 0.96);
	color: #ffffff;
}

body.logged-in .dtt-nav-icon {
	width: 17px;
	height: 17px;
}

body.logged-in .dtt-nav-trigger::after {
	content: "v";
	margin-left: auto;
	color: rgba(255, 255, 255, 0.62);
	font-size: 10px;
}

body.logged-in .dtt-nav-group {
	display: block;
	width: 100%;
}

body.logged-in .dtt-nav-menu {
	position: static;
	min-width: 0;
	width: 100%;
	margin: 4px 0 4px;
	padding: 4px 0 4px 12px;
	background: transparent;
	border: 0;
	border-left: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 0;
	box-shadow: none;
}

body.logged-in .dtt-nav-menu a {
	min-height: 32px;
	padding: 0 8px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 12px;
}

body.logged-in .dtt-nav-menu a:hover,
body.logged-in .dtt-nav-menu a:focus,
body.logged-in .dtt-nav-menu a.dtt-nav-active {
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
}

body.logged-in .dtt-page-heading,
body.logged-in .dtt-app-hero {
	align-items: center;
	margin-bottom: 20px;
	padding: 20px 24px;
	border-left: 4px solid var(--dtt-teal);
	border-radius: 8px;
	box-shadow: 0 10px 28px rgba(7, 22, 92, 0.05);
}

body.logged-in .dtt-page-heading h1,
body.logged-in .dtt-app-hero h1 {
	font-size: 30px;
}

body.logged-in .dtt-quotation-heading {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.96) 55%, rgba(255, 255, 255, 0.36) 100%),
		url("../images/quotation-wave-heading.jpg") right top / auto 100% no-repeat;
}

body.logged-in .dtt-eyebrow {
	color: #1b5678;
	font-size: 11px;
	letter-spacing: 0;
}

body.logged-in .dtt-form-section,
body.logged-in .dtt-dashboard-card,
body.logged-in .dtt-content-panel,
body.logged-in .dtt-table-wrap,
body.logged-in .dtt-stat-card,
body.logged-in .dtt-quote-shell {
	border-color: #dfe8f0;
	border-radius: 8px;
	box-shadow: 0 10px 28px rgba(7, 22, 92, 0.05);
}

body.logged-in .dtt-form-section,
body.logged-in .dtt-dashboard-card {
	padding: 20px;
}

body.logged-in .dtt-booking-form {
	counter-reset: dtt-quote-step;
}

body.logged-in .dtt-booking-form > .dtt-form-section > h2,
body.logged-in .dtt-booking-form > .dtt-form-section > .dtt-section-header h2 {
	display: inline-flex;
	align-items: center;
	gap: 9px;
}

body.logged-in .dtt-booking-form > .dtt-form-section > h2::before,
body.logged-in .dtt-booking-form > .dtt-form-section > .dtt-section-header h2::before {
	counter-increment: dtt-quote-step;
	content: counter(dtt-quote-step);
	display: inline-grid;
	place-items: center;
	width: 22px;
	height: 22px;
	background: #13bca8;
	border-radius: 6px;
	color: #ffffff;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
}

body.logged-in .dtt-form label span,
body.logged-in .dtt-upload-box span {
	color: #10254b;
	font-size: 12px;
}

body.logged-in .dtt-form input,
body.logged-in .dtt-form select,
body.logged-in .dtt-form textarea,
body.logged-in .select2-selection {
	min-height: 40px;
	background: #ffffff;
	border-color: #d4e0ea;
	border-radius: 6px;
	font-size: 13px;
}

body.logged-in .dtt-filter-form {
	padding: 16px;
	background: #ffffff;
	border-color: #dfe8f0;
	border-radius: 8px;
	box-shadow: 0 8px 22px rgba(7, 22, 92, 0.04);
}

body.logged-in .dtt-table th {
	color: #061657;
	font-size: 12px;
}

body.logged-in .dtt-table td {
	font-size: 13px;
}

body.logged-in .dtt-button-primary {
	background: linear-gradient(180deg, #13c4b1, #0aa890);
	border-color: #0aa890;
	color: #ffffff;
	box-shadow: 0 8px 18px rgba(10, 168, 144, 0.18);
}

body.logged-in .dtt-button-primary:hover,
body.logged-in .dtt-button-primary:focus {
	background: linear-gradient(180deg, #0fb29e, #078c7a);
	border-color: #078c7a;
	color: #ffffff;
}

body.logged-in .dtt-button-secondary,
body.logged-in .dtt-button-ghost {
	background: #f6fbfd;
	border-color: #cfe2ee;
	color: var(--dtt-navy);
}

body.logged-in .dtt-dashboard-hero {
	min-height: 136px;
	padding: 24px 30px;
	background:
		linear-gradient(90deg, #0060c9 0%, rgba(0, 111, 213, 0.96) 42%, rgba(0, 111, 213, 0.18) 74%),
		url("../images/dashboard-hero-generated.png");
	background-size: cover;
	background-position: center right;
	background-repeat: no-repeat;
	border-radius: 0;
	box-shadow: 0 12px 26px rgba(0, 91, 190, 0.12);
}

body.logged-in .dtt-dashboard-hero h1 {
	font-size: 36px;
}

body.logged-in .dtt-dashboard-hero .dtt-eyebrow {
	color: #fff7b8;
}

body.logged-in .dtt-stat-grid,
body.logged-in .dtt-metric-grid {
	gap: 18px;
}

body.logged-in .dtt-stat-card {
	min-height: 112px;
	padding: 18px 20px 18px 22px;
	background: #ffffff;
}

@media (max-width: 980px) {
	.dtt-site-header,
	.dtt-page-heading,
	.dtt-app-hero,
	.dtt-action-band,
	.dtt-form-actions,
	.dtt-quote-header {
		align-items: flex-start;
		flex-direction: column;
	}

	.dtt-site-header,
	.dtt-dashboard-grid,
	.dtt-dashboard-grid-main {
		grid-template-columns: 1fr;
	}

	.dtt-header-nav,
	.dtt-dashboard-actions {
		justify-content: flex-start;
	}

	.dtt-dashboard-nav {
		overflow-x: auto;
		flex-wrap: nowrap;
	}

	.dtt-auth-layout,
	.dtt-profile-grid,
	.dtt-quote-grid,
	.dtt-status-form {
		grid-template-columns: 1fr;
	}

	.dtt-auth-brand {
		min-height: auto;
	}

	.dtt-grid-3,
	.dtt-grid-4,
	.dtt-grid-5,
	.dtt-grid-6,
	.dtt-room-media-grid,
	.dtt-tour-rate-grid,
	.dtt-tour-rate-less-grid,
	.dtt-addons-grid,
	.dtt-booking-form [data-dtt-repeater="hotels"] .dtt-hotel-line,
	.dtt-day-header,
	.dtt-filter-grid,
	.dtt-itinerary-line,
	.dtt-transport-line,
	.dtt-addon-line,
	.dtt-upload-grid,
	.dtt-stat-grid,
	.dtt-metric-grid,
	.dtt-bar-chart,
	.dtt-itinerary-meta {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.dtt-status-chart {
		grid-template-columns: 1fr;
	}

	.dtt-tour-rate-less-grid > span[aria-hidden="true"] {
		display: none;
	}
}

@media (max-width: 640px) {
	.dtt-page-shell {
		width: min(100% - 20px, 1180px);
		padding-top: 20px;
	}

	.dtt-brand img {
		width: min(250px, 80vw);
	}

	.dtt-header-nav,
	.dtt-dashboard-nav {
		width: 100%;
	}

	.dtt-nav-group,
	.dtt-nav-trigger {
		width: 100%;
	}

	.dtt-nav-menu {
		position: static;
		width: 100%;
		box-shadow: none;
	}

	.dtt-header-nav a,
	.dtt-dashboard-nav > a,
	.dtt-nav-trigger {
		flex: 1 1 auto;
		justify-content: flex-start;
	}

	.dtt-grid-2,
	.dtt-grid-3,
	.dtt-grid-4,
	.dtt-grid-5,
	.dtt-grid-6,
	.dtt-room-media-grid,
	.dtt-tour-rate-grid,
	.dtt-tour-rate-less-grid,
	.dtt-addons-grid,
	.dtt-booking-form [data-dtt-repeater="hotels"] .dtt-hotel-line,
	.dtt-day-header,
	.dtt-filter-grid,
	.dtt-upload-grid,
	.dtt-stat-grid,
	.dtt-metric-grid,
	.dtt-bar-chart,
	.dtt-itinerary-line,
	.dtt-transport-line,
	.dtt-addon-line,
	.dtt-itinerary-meta {
		grid-template-columns: 1fr;
	}

	.dtt-dashboard-hero,
	.dtt-status-chart {
		align-items: flex-start;
	}

	.dtt-donut {
		width: 132px;
	}

	.dtt-grid-span {
		grid-column: span 1;
	}

	.dtt-detail-list {
		grid-template-columns: 1fr;
	}

	.dtt-quote-header img {
		width: 210px;
	}

	.dtt-day-actions,
	.dtt-filter-actions {
		justify-content: flex-start;
	}

	.dtt-day-block {
		grid-template-columns: 1fr;
	}

	.dtt-day-block > .dtt-grid,
	.dtt-day-block > .dtt-row-actions {
		grid-column: 1;
	}

	.dtt-day-block > .dtt-row-actions {
		justify-content: flex-start;
	}
}

@media (max-width: 1100px) {
	body.logged-in .dtt-site-header {
		position: sticky;
		top: 0;
		grid-template-columns: 130px 1fr;
		gap: 12px;
		padding: 8px 16px;
	}

	body.admin-bar.logged-in .dtt-site-header {
		top: 32px;
	}

	body.logged-in .dtt-header-nav {
		grid-column: 2;
		justify-content: flex-end;
	}

	body.logged-in .dtt-page-shell,
	body.admin-bar.logged-in .dtt-page-shell {
		width: min(100% - 24px, 1180px);
		margin: 0 auto;
		padding-top: 20px;
	}

	body.logged-in .dtt-dashboard-nav,
	body.admin-bar.logged-in .dtt-dashboard-nav {
		position: relative;
		top: auto;
		bottom: auto;
		left: auto;
		flex-direction: row;
		width: 100%;
		min-height: 54px;
		margin: 0 0 18px;
		padding: 8px;
		overflow-x: auto;
		overflow-y: visible;
		border-radius: 8px;
	}

	body.logged-in .dtt-dashboard-nav > a,
	body.logged-in .dtt-nav-group,
	body.logged-in .dtt-nav-trigger {
		width: auto;
		flex: 0 0 auto;
	}

	body.logged-in .dtt-nav-menu {
		position: absolute;
		min-width: 220px;
		margin: 6px 0 0;
		padding: 7px;
		background: #ffffff;
		border: 1px solid var(--dtt-line);
		border-radius: 6px;
		box-shadow: 0 18px 36px rgba(7, 22, 92, 0.14);
	}

	body.logged-in .dtt-nav-menu a {
		color: #5d6680;
	}

	body.logged-in .dtt-nav-menu a:hover,
	body.logged-in .dtt-nav-menu a:focus {
		background: #eef7f7;
		color: var(--dtt-navy);
	}
}

@media (max-width: 782px) {
	body.admin-bar.logged-in .dtt-site-header {
		top: 46px;
	}
}

@media (max-width: 700px) {
	body.logged-in .dtt-site-header {
		grid-template-columns: 1fr;
	}

	body.logged-in .dtt-header-nav {
		grid-column: 1;
	}

	body.logged-in .dtt-user-chip {
		padding-left: 0;
	}

	body.logged-in .dtt-page-heading h1,
	body.logged-in .dtt-app-hero h1 {
		font-size: 24px;
	}

	body.logged-in .dtt-dashboard-hero h1 {
		font-size: 28px;
	}
}

@media print {
	.dtt-site-header,
	.dtt-site-footer,
	.dtt-dashboard-nav,
	.dtt-quote-actions,
	.dtt-status-form,
	.dtt-print-button {
		display: none !important;
	}

	body {
		background: #ffffff;
	}

	.dtt-page-shell {
		width: 100%;
		padding: 0;
	}

	.dtt-quote-shell {
		border: 0;
	}
}
