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

* {
	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: 16px;
	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: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 14px clamp(18px, 4vw, 56px);
	background: var(--dtt-surface);
	border-bottom: 1px solid var(--dtt-line);
}

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

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

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

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

.dtt-header-nav a,
.dtt-dashboard-nav a,
.dtt-nav-trigger {
	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,
.dtt-dashboard-nav a:hover,
.dtt-nav-trigger:hover,
.dtt-nav-trigger:focus {
	background: #e9f8f8;
	color: var(--dtt-navy);
}

.dtt-nav-trigger::after {
	content: "v";
	margin-left: 8px;
	color: var(--dtt-muted);
	font-size: 10px;
}

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

.dtt-nav-menu a {
	display: flex;
	width: 100%;
	white-space: nowrap;
}

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

.dtt-page-shell {
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
	padding: 32px 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: var(--dtt-radius);
	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: 28px;
	background: var(--dtt-surface);
	border-left: 6px solid var(--dtt-teal);
	border-radius: var(--dtt-radius);
}

.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;
	justify-content: center;
	min-height: 520px;
	padding: clamp(28px, 5vw, 56px);
	background: #eaf8f6;
	border-left: 8px solid var(--dtt-yellow);
	border-radius: var(--dtt-radius);
}

.dtt-auth-brand img {
	width: min(420px, 100%);
	margin-bottom: 28px;
}

.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-dashboard-nav {
	margin-bottom: 18px;
	padding: 10px;
	background: var(--dtt-surface);
	border: 1px solid var(--dtt-line);
	border-radius: var(--dtt-radius);
}

.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-grid-span {
	grid-column: span 2;
}

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

.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(240px, 1.25fr) minmax(130px, 0.45fr) minmax(260px, 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-card,
.dtt-metric {
	display: grid;
	gap: 8px;
	padding: 20px;
	color: var(--dtt-ink);
}

.dtt-stat-card {
	box-shadow: none;
}

.dtt-stat-card span,
.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: 30px;
	line-height: 1;
	letter-spacing: 0;
}

.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-table-wrap {
	width: 100%;
	overflow-x: auto;
}

.dtt-table {
	width: 100%;
	min-width: 760px;
	border-collapse: collapse;
}

.dtt-table th,
.dtt-table td {
	padding: 13px 12px;
	border-bottom: 1px solid #edf2f5;
	text-align: left;
	vertical-align: top;
}

.dtt-table th {
	color: var(--dtt-muted);
	font-size: 12px;
	text-transform: uppercase;
}

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

.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-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-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-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 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-site-footer {
	padding: 24px;
	color: var(--dtt-muted);
	text-align: center;
}

@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-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-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-itinerary-meta {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@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: center;
	}

	.dtt-grid-2,
	.dtt-grid-3,
	.dtt-grid-4,
	.dtt-grid-5,
	.dtt-grid-6,
	.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-itinerary-line,
	.dtt-transport-line,
	.dtt-addon-line,
	.dtt-itinerary-meta {
		grid-template-columns: 1fr;
	}

	.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 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;
	}
}
