/*
 * ToursZoom Homepage — Temporary Standalone CSS
 * Pairs with homepage-classic-editor.html in the WordPress Classic Editor.
 *
 * HOW TO LOAD THIS:
 *   Option A (quickest): Paste entire file into Appearance > Customize > Additional CSS
 *   Option B (cleaner):  Upload to /wp/wp-content/themes/tourszoom/ and add to
 *                        tourszoom-custom.php via wp_enqueue_style(), front_page only.
 *
 * PAGE TEMPLATE: Set the WordPress page to a full-width template
 *   (Page Attributes > Template > Full Width, or equivalent in Travelfic).
 *   Without it, sections will be clipped to the theme's content column width.
 *
 * HERO IMAGE: Currently points to the prelaunch plugin asset (still on disk after
 *   deactivation). Upload hero.jpg to the media library and update the URL in
 *   the .tz-hero rule below when ready.
 */

/* ------------------------------------------------------------------ */
/* Fonts                                                               */
/* ------------------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Fraunces:opsz,wght@9..144,400;9..144,600&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* ------------------------------------------------------------------ */
/* Brand tokens                                                        */
/* ------------------------------------------------------------------ */
:root {
	--tz-navy:         #103d62;
	--tz-amber:        #e8a84e;
	--tz-amber-hover:  #c8893a;
	--tz-amber-tint:   rgba(232, 168, 78, 0.14);
	--tz-amber-shadow: 0 4px 16px rgba(200, 137, 58, 0.20);
	--tz-cream:        #e8dece;
	--tz-cream-border: #d8c8a8;
	--tz-white:        #ffffff;
	--tz-gray-bg:      #f4f6f9;
	--tz-text:         #374151;
	--tz-text-light:   #6b7280;
	--tz-border:       #e5e7eb;
	--tz-radius:       12px;
	--tz-font-heading: 'Fraunces', Georgia, serif;
	--tz-font-body:    'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--tz-max-width:    1200px;
	--tz-gap:          24px;
}

/* ------------------------------------------------------------------ */
/* Full-width breakout                                                 */
/* Makes sections span 100vw even inside a boxed content column.      */
/* ------------------------------------------------------------------ */
.tz-hero,
.tz-stats,
.tz-section,
.tz-cta {
	width: 100vw;
	position: relative;
	left: 50%;
	margin-left: -50vw;
	box-sizing: border-box;
}

/* ------------------------------------------------------------------ */
/* Buttons                                                             */
/* ------------------------------------------------------------------ */
.tz-btn {
	display: inline-block;
	background: var(--tz-amber);
	color: var(--tz-white);
	font-family: var(--tz-font-body);
	font-size: 17px;
	font-weight: 600;
	padding: 16px 40px;
	border-radius: 4px;
	text-decoration: none;
	border: 2px solid var(--tz-amber);
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s;
	text-align: center;
	letter-spacing: 0.3px;
}

.tz-btn:hover {
	background: var(--tz-amber-hover);
	border-color: var(--tz-amber-hover);
	color: var(--tz-white);
}

.tz-btn--large {
	font-size: 18px;
	padding: 18px 48px;
}

.tz-btn--outline {
	background: transparent;
	color: var(--tz-navy);
	border: 2px solid var(--tz-navy);
}

.tz-btn--outline:hover {
	background: var(--tz-navy);
	color: var(--tz-white);
}

/* ------------------------------------------------------------------ */
/* Sections                                                            */
/* ------------------------------------------------------------------ */
.tz-section {
	padding: 80px 24px;
	background: var(--tz-white);
}

.tz-section--gray {
	background: var(--tz-gray-bg);
}

.tz-section__inner {
	max-width: var(--tz-max-width);
	margin: 0 auto;
}

.tz-section__header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 48px;
}

.tz-section__header h2 {
	font-family: 'Space Grotesk', var(--tz-font-body);
	font-size: 36px;
	font-weight: 600;
	color: var(--tz-navy);
	letter-spacing: -0.02em;
	margin: 0 0 16px;
	line-height: 1.2;
}

.tz-section__header p {
	font-size: 18px;
	color: var(--tz-text-light);
	margin: 0;
	line-height: 1.6;
}

/* ------------------------------------------------------------------ */
/* Hero                                                                */
/* ------------------------------------------------------------------ */
.tz-hero {
	position: relative;
	/* Update to media library URL once hero.jpg is uploaded */
	background: url('/wp-content/plugins/tourszoom-prelaunch/assets/hero.jpg') center / cover no-repeat;
	background-color: var(--tz-navy); /* shown if image fails to load */
	color: #fff;
	text-align: center;
	padding: 130px 24px 120px;
	min-height: 580px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.tz-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		170deg,
		rgba(16, 61, 98, 0.78) 0%,
		rgba(16, 61, 98, 0.55) 55%,
		rgba(10, 22, 40, 0.65) 100%
	);
	z-index: 0;
}

.tz-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 760px;
	margin: 0 auto;
}

.tz-hero h1 {
	color: #fff;
	font-family: 'Space Grotesk', var(--tz-font-body);
	font-size: 54px;
	font-weight: 600;
	letter-spacing: -0.02em;
	margin: 0 0 20px;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
	line-height: 1.15;
}

.tz-hero__sub {
	font-size: 19px;
	color: rgba(255, 255, 255, 0.88);
	margin: 0 auto 36px;
	line-height: 1.6;
	max-width: 560px;
	display: block;
}

/* ------------------------------------------------------------------ */
/* Stats strip                                                         */
/* ------------------------------------------------------------------ */
.tz-stats {
	background: var(--tz-cream);
	padding: 32px 24px;
	border-top: 1px solid var(--tz-cream-border);
	border-bottom: 1px solid var(--tz-cream-border);
}

.tz-stats__inner {
	max-width: var(--tz-max-width);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--tz-gap);
	text-align: center;
	color: var(--tz-navy);
}

.tz-stats__number {
	font-family: 'Space Grotesk', var(--tz-font-body);
	font-size: 36px;
	font-weight: 600;
	display: block;
	color: var(--tz-amber);
	line-height: 1;
}

.tz-stats__label {
	font-family: var(--tz-font-body);
	font-size: 14px;
	opacity: 0.85;
	margin-top: 6px;
	display: block;
}

/* ------------------------------------------------------------------ */
/* Steps (How It Works)                                                */
/* ------------------------------------------------------------------ */
.tz-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.tz-step {
	text-align: center;
}

.tz-step__number {
	width: 56px;
	height: 56px;
	background: var(--tz-amber);
	color: var(--tz-white);
	font-family: 'Space Grotesk', var(--tz-font-body);
	font-size: 24px;
	font-weight: 600;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.tz-step h3 {
	font-family: 'Space Grotesk', var(--tz-font-body);
	font-size: 22px;
	font-weight: 600;
	color: var(--tz-navy);
	margin: 0 0 12px;
}

.tz-step p {
	color: var(--tz-text-light);
	font-size: 15px;
	line-height: 1.6;
	margin: 0;
}

/* ------------------------------------------------------------------ */
/* Feature cards (Why ToursZoom) — 2×2 grid                          */
/* ------------------------------------------------------------------ */
.tz-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--tz-gap);
}

.tz-card {
	background: var(--tz-white);
	border-radius: var(--tz-radius);
	padding: 32px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
	transition: box-shadow 0.2s, transform 0.2s;
}

.tz-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
	transform: translateY(-2px);
}

.tz-card__icon {
	width: 48px;
	height: 48px;
	background: var(--tz-amber-tint);
	border: 1px solid rgba(232, 168, 78, 0.28);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	color: var(--tz-amber);
	font-size: 24px;
}

.tz-card h3 {
	font-family: 'Space Grotesk', var(--tz-font-body);
	font-size: 20px;
	font-weight: 600;
	color: var(--tz-navy);
	margin: 0 0 12px;
}

.tz-card p {
	color: var(--tz-text-light);
	font-size: 15px;
	line-height: 1.6;
	margin: 0;
}

/* ------------------------------------------------------------------ */
/* Destination cards — 5-column grid                                  */
/* ------------------------------------------------------------------ */
.tz-destinations {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
}

.tz-dest-card {
	background: var(--tz-white);
	border: 1px solid var(--tz-border);
	border-radius: var(--tz-radius);
	padding: 24px;
	min-height: 180px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.tz-dest-card:hover {
	transform: translateY(-3px);
	border-color: var(--tz-amber);
	box-shadow: var(--tz-amber-shadow);
}

.tz-dest-card h3 {
	font-family: 'Space Grotesk', var(--tz-font-body);
	font-size: 22px;
	font-weight: 600;
	color: var(--tz-navy);
	margin: 0 0 8px;
}

.tz-dest-card p {
	font-size: 13px;
	color: var(--tz-text);
	line-height: 1.5;
	margin: 0;
}

/* ------------------------------------------------------------------ */
/* Blog cards — 3-column grid                                         */
/* ------------------------------------------------------------------ */
.tz-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.tz-blog-card {
	background: var(--tz-white);
	border-radius: var(--tz-radius);
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
	transition: box-shadow 0.2s, transform 0.2s;
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
}

.tz-blog-card:hover {
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
	transform: translateY(-3px);
	color: inherit;
}

.tz-blog-card__img {
	height: 180px;
	background-size: cover;
	background-position: center;
	background-color: var(--tz-cream);
}

.tz-blog-card__body {
	padding: 20px 24px 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.tz-blog-card__cat {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--tz-amber);
	margin-bottom: 8px;
	display: block;
}

.tz-blog-card h3 {
	font-family: 'Space Grotesk', var(--tz-font-body);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;
	margin: 0 0 10px;
	color: var(--tz-navy);
}

.tz-blog-card p {
	font-size: 14px;
	line-height: 1.6;
	color: var(--tz-text-light);
	flex: 1;
	margin: 0;
}

.tz-blog-cta {
	text-align: center;
	margin-top: 40px;
}

/* ------------------------------------------------------------------ */
/* CTA section                                                         */
/* ------------------------------------------------------------------ */
.tz-cta {
	text-align: center;
	padding: 80px 24px;
	background: var(--tz-gray-bg);
}

.tz-cta h2 {
	font-family: 'Space Grotesk', var(--tz-font-body);
	font-size: 36px;
	font-weight: 600;
	color: var(--tz-navy);
	letter-spacing: -0.02em;
	margin: 0 0 16px;
}

.tz-cta p {
	font-size: 18px;
	color: var(--tz-text-light);
	margin: 0 auto 32px;
	max-width: 600px;
	line-height: 1.6;
}

/* ------------------------------------------------------------------ */
/* Responsive — tablet (≤1024px)                                      */
/* ------------------------------------------------------------------ */
@media (max-width: 1024px) {
	.tz-hero h1               { font-size: 40px; }
	.tz-section__header h2,
	.tz-cta h2                { font-size: 30px; }
	.tz-destinations          { grid-template-columns: repeat(3, 1fr); }
	.tz-blog-grid             { grid-template-columns: repeat(2, 1fr); }
}

/* ------------------------------------------------------------------ */
/* Responsive — mobile (≤768px)                                       */
/* ------------------------------------------------------------------ */
@media (max-width: 768px) {
	.tz-hero                  { padding: 72px 16px 64px; min-height: 460px; }
	.tz-hero h1               { font-size: 34px; }
	.tz-hero__sub             { font-size: 16px; }
	.tz-section               { padding: 48px 16px; }
	.tz-cta                   { padding: 48px 16px; }
	.tz-section__header h2,
	.tz-cta h2                { font-size: 26px; }
	.tz-steps                 { grid-template-columns: 1fr; gap: 32px; }
	.tz-features              { grid-template-columns: 1fr; }
	.tz-stats__inner          { grid-template-columns: repeat(2, 1fr); gap: 16px; }
	.tz-destinations          { grid-template-columns: repeat(2, 1fr); }
	.tz-blog-grid             { grid-template-columns: 1fr; }
	.tz-grid-2                { grid-template-columns: 1fr; }
	.tz-contact-methods       { grid-template-columns: 1fr; }
	.tz-cta-btns              { flex-direction: column; align-items: center; }
	.tz-form .tz-grid-2       { grid-template-columns: 1fr; }
}

/* ================================================================== */
/* HOW IT WORKS PAGE                                                   */
/* ================================================================== */

/* ------------------------------------------------------------------ */
/* Generic 2-column grid                                               */
/* ------------------------------------------------------------------ */
.tz-grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--tz-gap);
}

/* Step numbers used inline (not centered) on How It Works page */
.tz-step__number--inline {
	display: inline-flex;
	margin: 0 0 16px;
}

/* ------------------------------------------------------------------ */
/* CTA with multiple buttons                                           */
/* ------------------------------------------------------------------ */
.tz-cta-btns {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 8px;
}

/* ================================================================== */
/* CONTACT PAGE                                                        */
/* ================================================================== */

/* ------------------------------------------------------------------ */
/* Contact method cards                                                */
/* ------------------------------------------------------------------ */
.tz-contact-methods {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--tz-gap);
	max-width: 820px;
	margin: 0 auto;
}

.tz-contact-card {
	background: var(--tz-white);
	border: 1px solid var(--tz-border);
	border-radius: var(--tz-radius);
	padding: 32px;
	text-align: center;
}

.tz-contact-card__icon {
	font-size: 32px;
	margin-bottom: 16px;
	display: block;
}

.tz-contact-card h3 {
	font-family: 'Space Grotesk', var(--tz-font-body);
	font-size: 20px;
	font-weight: 600;
	color: var(--tz-navy);
	margin: 0 0 8px;
}

.tz-contact-card p {
	color: var(--tz-text-light);
	font-size: 14px;
	margin: 0 0 16px;
	line-height: 1.6;
}

.tz-contact-social {
	display: flex;
	gap: 12px;
	justify-content: center;
	margin-top: 8px;
}

.tz-contact-social a {
	color: var(--tz-navy);
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	border-bottom: 1px solid var(--tz-border);
	padding-bottom: 2px;
	transition: color 0.2s, border-color 0.2s;
}

.tz-contact-social a:hover {
	color: var(--tz-amber);
	border-color: var(--tz-amber);
}

/* ------------------------------------------------------------------ */
/* Contact info columns (For Travelers / For Operators)               */
/* ------------------------------------------------------------------ */
.tz-contact-info h3 {
	font-family: 'Space Grotesk', var(--tz-font-body);
	font-size: 20px;
	font-weight: 600;
	color: var(--tz-navy);
	margin: 0 0 12px;
}

.tz-contact-info p {
	color: var(--tz-text);
	font-size: 15px;
	line-height: 1.7;
	margin: 0 0 12px;
}

.tz-contact-info a {
	color: var(--tz-amber);
	text-decoration: none;
}

.tz-contact-info a:hover {
	color: var(--tz-amber-hover);
}

/* ------------------------------------------------------------------ */
/* Contact form                                                        */
/* ------------------------------------------------------------------ */
.tz-form {
	max-width: 680px;
	margin: 0 auto;
}

.tz-form__group {
	margin-bottom: 20px;
}

.tz-form__label {
	display: block;
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 6px;
	color: var(--tz-navy);
}

.tz-form__input,
.tz-form__textarea,
.tz-form__select {
	width: 100%;
	padding: 12px 16px;
	border: 1.5px solid var(--tz-border);
	border-radius: 8px;
	font-family: var(--tz-font-body);
	font-size: 15px;
	color: var(--tz-text);
	background: var(--tz-white);
	transition: border-color 0.2s, box-shadow 0.2s;
	box-sizing: border-box;
}

.tz-form__input:focus,
.tz-form__textarea:focus,
.tz-form__select:focus {
	outline: none;
	border-color: var(--tz-navy);
	box-shadow: 0 0 0 3px rgba(16, 61, 98, 0.08);
}

.tz-form__textarea {
	min-height: 140px;
	resize: vertical;
}

.tz-form__notice {
	padding: 14px 18px;
	border-radius: 8px;
	margin-bottom: 20px;
	font-weight: 500;
	font-size: 15px;
	max-width: 680px;
	margin-left: auto;
	margin-right: auto;
}

.tz-form__notice--success {
	background: #ecfdf5;
	color: #065f46;
	border: 1px solid #a7f3d0;
}

.tz-form__notice--error {
	background: #fef2f2;
	color: #991b1b;
	border: 1px solid #fecaca;
}

.tz-form__consent-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	color: var(--tz-text);
	cursor: pointer;
	line-height: 1.55;
}

.tz-form__consent-label input[type="checkbox"] {
	margin-top: 3px;
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	accent-color: var(--tz-navy);
	cursor: pointer;
}

.tz-form__consent-label a {
	color: var(--tz-amber);
}

/* ================================================================== */
/* TRAVEL INSURANCE PAGE                                               */
/* ================================================================== */

/* ------------------------------------------------------------------ */
/* Recommended partner card                                            */
/* ------------------------------------------------------------------ */
.tz-insurance-partner {
	max-width: 640px;
	margin: 0 auto;
	text-align: center;
	background: var(--tz-white);
	border: 1px solid var(--tz-border);
	border-radius: var(--tz-radius);
	padding: 48px 40px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.tz-insurance-partner__badge {
	display: inline-block;
	background: var(--tz-amber-tint);
	color: var(--tz-amber);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	padding: 5px 14px;
	border-radius: 20px;
	border: 1px solid rgba(232, 168, 78, 0.28);
	margin-bottom: 24px;
}

.tz-insurance-partner__logo {
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.tz-insurance-partner__logo img {
	max-height: 56px;
	max-width: 200px;
	object-fit: contain;
}

.tz-insurance-partner__name {
	font-family: 'Space Grotesk', var(--tz-font-body);
	font-size: 28px;
	font-weight: 600;
	color: var(--tz-navy);
	margin: 0 0 16px;
}

.tz-insurance-partner__desc {
	color: var(--tz-text-light);
	font-size: 16px;
	line-height: 1.7;
	margin: 0 0 32px;
}

.tz-affiliate-notice {
	font-size: 12px;
	color: var(--tz-text-light);
	margin: 20px 0 0;
	line-height: 1.55;
}

/* ------------------------------------------------------------------ */
/* FAQ accordion (display-all, no JS required)                        */
/* ------------------------------------------------------------------ */
.tz-faq {
	max-width: 760px;
	margin: 0 auto;
}

.tz-faq__item {
	border-bottom: 1px solid var(--tz-border);
	padding: 28px 0;
}

.tz-faq__item:first-child {
	border-top: 1px solid var(--tz-border);
}

.tz-faq__q {
	font-family: 'Space Grotesk', var(--tz-font-body);
	font-size: 18px;
	font-weight: 600;
	color: var(--tz-navy);
	margin: 0 0 12px;
	line-height: 1.3;
}

.tz-faq__a {
	color: var(--tz-text-light);
	font-size: 15px;
	line-height: 1.7;
	margin: 0;
}

/* ------------------------------------------------------------------ */
/* Affiliate exit interstitial modal                                   */
/* ------------------------------------------------------------------ */
.tz-exit-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	background: rgba(0, 0, 0, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	box-sizing: border-box;
}

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

.tz-exit-modal__box {
	background: var(--tz-white);
	border-radius: var(--tz-radius);
	padding: 40px;
	max-width: 540px;
	width: 100%;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.tz-exit-modal__icon {
	width: 48px;
	height: 48px;
	background: var(--tz-amber-tint);
	border: 1px solid rgba(232, 168, 78, 0.28);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: var(--tz-amber);
	margin-bottom: 20px;
}

.tz-exit-modal__title {
	font-family: 'Space Grotesk', var(--tz-font-body);
	font-size: 22px;
	font-weight: 700;
	color: var(--tz-navy);
	margin: 0 0 12px;
}

.tz-exit-modal__body {
	color: var(--tz-text);
	font-size: 15px;
	line-height: 1.6;
	margin: 0 0 12px;
}

.tz-exit-modal__list {
	color: var(--tz-text-light);
	font-size: 14px;
	line-height: 1.7;
	margin: 0 0 28px;
	padding-left: 20px;
}

.tz-exit-modal__list li {
	margin-bottom: 6px;
}

.tz-exit-modal__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

/* Scoped button styles — isolated from .tz-btn to avoid conflicts */
.tz-exit-btn {
	flex: 1;
	min-width: 140px;
	font-family: var(--tz-font-body);
	font-size: 15px;
	font-weight: 600;
	padding: 14px 20px;
	border-radius: 4px;
	cursor: pointer;
	text-align: center;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
	line-height: 1.2;
}

.tz-exit-btn--primary {
	background: var(--tz-amber);
	color: var(--tz-white);
	border: 2px solid var(--tz-amber);
}

.tz-exit-btn--primary:hover {
	background: var(--tz-amber-hover);
	border-color: var(--tz-amber-hover);
}

.tz-exit-btn--outline {
	background: transparent;
	color: var(--tz-navy);
	border: 2px solid var(--tz-navy);
}

.tz-exit-btn--outline:hover {
	background: var(--tz-navy);
	color: var(--tz-white);
}

@media (max-width: 768px) {
	.tz-insurance-partner        { padding: 32px 24px; }
	.tz-exit-modal__box          { padding: 28px 20px; }
	.tz-exit-modal__actions      { flex-direction: column; }
	.tz-exit-btn                 { flex: none; width: 100%; }
}
