.dt-print-mode header,
.dt-print-mode nav,
.dt-print-mode .hero,
.dt-print-mode .legacy-hero,
.dt-print-mode .menu-inline,
.dt-print-mode .menu-container { box-shadow: none !important; }
.legacy-table-card {
	border-radius: 20px;
	border: 1px solid rgba(15,23,42,0.08);
	box-shadow: 0 18px 40px rgba(15,23,42,0.08);
	background: #fff;
	padding: 0;
	margin: 12px 0;
	overflow: hidden;
}
.legacy-table-card table {
	width: 100%;
	border-collapse: collapse;
	border: 0;
}
.schedule-day-card {
	display: inline-block;
	max-width: min(420px, 100%);
}
.schedule-day-card table {
	width: auto;
	min-width: 0;
}
.legacy-table-card th,
.legacy-table-card td {
	padding: 10px 14px;
	border-bottom: 1px solid rgba(15,23,42,0.12);
	border-right: 1px solid rgba(15,23,42,0.12);
	font-size: 14px;
	color: var(--legacy-td-color, #0f172a);
}
.legacy-table-card th:last-child,
.legacy-table-card td:last-child {
	border-right: none;
}
.legacy-table-card tr:nth-child(even) td {
	background: rgba(15,23,42,0.02);
}
.legacy-table-card td.DateBoxWEH,
.legacy-table-card tr:nth-child(even) td.DateBoxWEH {
	background-color: #fff9bf !important;
}
.legacy-table-card td.DateBoxWeekday,
.legacy-table-card tr:nth-child(even) td.DateBoxWeekday {
	background-color: #c8f7c8 !important;
}
.legacy-table-card thead th {
	background: rgba(15,23,42,0.08);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #64748b;
}
.legacy-table-card tbody tr:hover td {
	background: rgba(10,132,255,0.08);
}
.legacy-table-card tr:last-child td {
	border-bottom: none;
}
.legacy-table-scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
.legacy-table-scroll table {
	min-width: 960px;
}

.schedule-return-form {
	margin: 18px 0;
}
.ehd-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	border: none;
	border-radius: 999px;
	padding: 10px 26px;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	background: linear-gradient(130deg, #0a84ff, #00c6ff);
	box-shadow: 0 12px 28px rgba(10,132,255,0.25);
	cursor: pointer;
	transition: transform 0.12s ease, box-shadow 0.12s ease;
	text-decoration: none;
}
.ehd-submit:hover,
.ehd-submit:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 16px 32px rgba(10,132,255,0.3);
	text-decoration: none;
	color: #fff;
}

:root {
	color-scheme: light;
}
body {
	--tix-page-bg: #f2f2f7;
	--tix-text: #0f172a;
	--tix-muted: #475569;
	--tix-card-bg: rgba(255,255,255,0.96);
	--tix-card-border: rgba(15,23,42,0.08);
	--tix-card-shadow: 0 18px 45px rgba(15,23,42,0.08);
	--tix-pill-bg: rgba(10,132,255,0.18);
	--tix-pill-text: #0a84ff;
	--tix-button-bg: linear-gradient(130deg, #0a84ff, #00c6ff);
	--tix-button-text: #ffffff;
	--tix-table-header-bg: rgba(248,250,252,0.97);
	--tix-table-header-text: #64748b;
	--hero-user-accent: linear-gradient(180deg, #38bdf8, #2563eb);
	--hero-user-shadow: 0 14px 34px rgba(14,165,233,0.35);
	--hero-admin-accent: linear-gradient(180deg, #fdba74, #f97316);
	--hero-admin-shadow: 0 14px 34px rgba(249,115,22,0.35);
	background-color: var(--tix-page-bg) !important;
	color: var(--tix-text);
}
body.theme-light {
	color-scheme: light;
}
body.theme-dark {
	color-scheme: dark;
	--tix-page-bg: #05060a;
	--tix-text: #f8fafc;
	--tix-muted: #cbd5f5;
	--tix-card-bg: rgba(15,23,42,0.92);
	--tix-card-border: rgba(94,106,137,0.45);
	--tix-card-shadow: 0 22px 60px rgba(0,0,0,0.75);
	--tix-pill-bg: rgba(59,130,246,0.3);
	--tix-pill-text: #bfdbfe;
	--tix-button-bg: linear-gradient(130deg, #2563eb, #38bdf8);
	--tix-button-text: #e0f2fe;
	--tix-table-header-bg: rgba(30,41,59,0.9);
	--tix-table-header-text: #cbd5f5;
	--hero-user-accent: linear-gradient(180deg, #60a5fa, #3b82f6);
	--hero-user-shadow: 0 16px 36px rgba(96,165,250,0.45);
	--hero-admin-accent: linear-gradient(180deg, #fdba74, #f97316);
	--hero-admin-shadow: 0 16px 36px rgba(251,146,60,0.45);
}
@media (prefers-color-scheme: dark) {
	:root {
		color-scheme: dark;
	}
	body:not(.theme-light) {
		--tix-page-bg: #05060a;
		--tix-text: #f8fafc;
		--tix-muted: #cbd5f5;
		--tix-card-bg: rgba(15,23,42,0.92);
		--tix-card-border: rgba(94,106,137,0.45);
		--tix-card-shadow: 0 22px 60px rgba(0,0,0,0.75);
		--tix-pill-bg: rgba(59,130,246,0.3);
		--tix-pill-text: #bfdbfe;
		--tix-button-bg: linear-gradient(130deg, #2563eb, #38bdf8);
		--tix-button-text: #e0f2fe;
		--tix-table-header-bg: rgba(30,41,59,0.9);
		--tix-table-header-text: #cbd5f5;
		--hero-user-accent: linear-gradient(180deg, #60a5fa, #3b82f6);
		--hero-user-shadow: 0 16px 36px rgba(96,165,250,0.45);
		--hero-admin-accent: linear-gradient(180deg, #fdba74, #f97316);
		--hero-admin-shadow: 0 16px 36px rgba(251,146,60,0.45);
		color-scheme: dark;
	}
}
@media (prefers-color-scheme: dark) {
	body.theme-light {
		color-scheme: light;
	}
}
body .tix-shell-nav,
body .hero,
body .pcert-card,
body .hcert-card,
body .attendance-card,
body .roster-card,
body .capreset-card,
body .legacy-table-card,
body .modern-date-picker-ng-shell,
body .modern-table,
body .waitlist-card {
	background-color: var(--tix-card-bg) !important;
	border-color: var(--tix-card-border) !important;
	box-shadow: var(--tix-card-shadow) !important;
	color: var(--tix-text) !important;
}
body .tix-shell-page-title,
body .pcert-name,
body .hcert-name,
body .attendance-title,
body .roster-card h2,
body .capreset-card h2 {
	color: var(--tix-text) !important;
}
body .tix-shell-greeting,
body .pcert-meta,
body .hcert-meta,
body .attendance-lede,
body .roster-card p,
body .capreset-card p {
	color: var(--tix-muted) !important;
}
body .tix-season-pill,
body .hero-pill {
	background: var(--tix-pill-bg) !important;
	color: var(--tix-pill-text) !important;
}
body .tix-shell-btn,
body .signin-pill {
	background: var(--tix-button-bg) !important;
	color: var(--tix-button-text) !important;
}
body .pcert-table th,
body .hcert-table th,
body .modern-table th,
body .legacy-table-card thead th {
	background: var(--tix-table-header-bg) !important;
	color: var(--tix-table-header-text) !important;
}
body .pcert-option small,
body .hcert-option small,
body .attendance-eyebrow,
body .attendance-lede {
	color: var(--tix-muted) !important;
}
body.theme-dark .pcert-option,
body.theme-dark .hcert-option {
	background: rgba(30,41,59,0.85) !important;
	border-color: rgba(148,163,184,0.35) !important;
	color: #f1f5f9 !important;
}
body.theme-dark .pcert-option--danger,
body.theme-dark .hcert-option--danger {
	background: rgba(220,38,38,0.2) !important;
	border-color: rgba(248,113,113,0.7) !important;
}
@media (prefers-color-scheme: dark) {
	body:not(.theme-light) .pcert-option,
	body:not(.theme-light) .hcert-option {
		background: rgba(30,41,59,0.85) !important;
		border-color: rgba(148,163,184,0.35) !important;
		color: #f1f5f9 !important;
	}
	body:not(.theme-light) .pcert-option--danger,
	body:not(.theme-light) .hcert-option--danger {
		background: rgba(220,38,38,0.2) !important;
		border-color: rgba(248,113,113,0.7) !important;
	}
}
body .tix-flash {
	color: var(--tix-text) !important;
}
body.theme-dark .tix-flash {
	background: rgba(59,130,246,0.18);
	border-color: rgba(59,130,246,0.35);
	color: #e0f2fe !important;
}
body.theme-dark .tix-flash.success {
	background: rgba(16,185,129,0.2);
	border-color: rgba(16,185,129,0.35);
	color: #bbf7d0 !important;
}
body.theme-dark .tix-flash.error {
	background: rgba(248,113,113,0.2);
	border-color: rgba(248,113,113,0.35);
	color: #fecaca !important;
}
@media (prefers-color-scheme: dark) {
	body:not(.theme-light) .tix-flash {
		background: rgba(59,130,246,0.18);
		border-color: rgba(59,130,246,0.35);
		color: #e0f2fe !important;
	}
	body:not(.theme-light) .tix-flash.success {
		background: rgba(16,185,129,0.2);
		border-color: rgba(16,185,129,0.35);
		color: #bbf7d0 !important;
	}
	body:not(.theme-light) .tix-flash.error {
		background: rgba(248,113,113,0.2);
		border-color: rgba(248,113,113,0.35);
		color: #fecaca !important;
	}
}

#pony {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100px;
	height: auto;
	--pony-w: 100px;
	--pony-h: 100px;
	transform-origin: center center;
	z-index: 20000;
}
#pony-toggle {
	position: fixed;
	right: 14px;
	bottom: 14px;
	z-index: 20001;
	border: 1px solid rgba(15,23,42,0.18);
	background: rgba(255,255,255,0.85);
	color: #0f172a;
	border-radius: 999px;
	padding: 6px 12px;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	box-shadow: 0 6px 18px rgba(15,23,42,0.2);
}
body.theme-dark #pony-toggle {
	background: rgba(15,23,42,0.75);
	color: #e2e8f0;
	border-color: rgba(226,232,240,0.35);
}
#report-wrap {
	position: fixed;
	right: 14px;
	bottom: 54px;
	z-index: 20001;
}
#report-toggle {
	border: 1px solid rgba(15,23,42,0.18);
	background: linear-gradient(120deg, #0a84ff, #00c6ff);
	color: #fff;
	border-radius: 999px;
	padding: 8px 14px;
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 10px 22px rgba(10,132,255,0.28);
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}
body.theme-dark #report-toggle {
	background: linear-gradient(120deg, #5ab0ff, #3388d8);
	color: #e2e8f0;
	border-color: rgba(226,232,240,0.35);
	box-shadow: 0 10px 22px rgba(90,176,255,0.25);
}
#report-toggle:hover,
#report-toggle:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 12px 26px rgba(10,132,255,0.32);
}
.report-modal-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(15,23,42,0.45);
	z-index: 9999;
}
.report-modal {
	background: #fff;
	border-radius: 16px;
	padding: 18px;
	width: min(480px, 90vw);
	box-shadow: 0 18px 40px rgba(15,23,42,0.28);
}
body.theme-dark .report-modal {
	background: #0b1220;
	color: #e2e8f0;
}
.report-modal h3 {
	margin-top: 0;
	margin-bottom: 8px;
	font-size: 18px;
}
.report-modal label {
	display: block;
	margin: 10px 0 4px;
	font-weight: 600;
}
.report-modal input[type="text"],
.report-modal input[type="email"],
.report-modal textarea {
	width: 100%;
	padding: 10px 12px;
	border-radius: 10px;
	border: 1px solid rgba(15,23,42,0.12);
	font: inherit;
}
body.theme-dark .report-modal input[type="text"],
body.theme-dark .report-modal input[type="email"],
body.theme-dark .report-modal textarea {
	background: rgba(255,255,255,0.04);
	border-color: rgba(148,163,184,0.35);
	color: #e2e8f0;
}
.report-modal-actions {
	margin-top: 14px;
	display: flex;
	gap: 10px;
	justify-content: flex-end;
	align-items: center;
}
.report-btn {
	border: none;
	border-radius: 999px;
	padding: 10px 18px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}
.report-btn.cancel {
	background: rgba(15,23,42,0.06);
	color: #0f172a;
}
body.theme-dark .report-btn.cancel {
	background: rgba(255,255,255,0.1);
	color: #e2e8f0;
}
.report-btn.primary {
	background: linear-gradient(120deg, #0a84ff, #00c6ff);
	color: #fff;
}
.report-status {
	font-size: 13px;
	color: #475569;
}
body.theme-dark .report-status {
	color: #cbd5f5;
}
@keyframes danceAcross {
	0% { left: 0; transform: rotate(0deg); }
	33.33% { left: 33.33%; transform: rotate(360deg) translateY(-10px); }
	66.66% { left: 66.66%; transform: rotate(720deg) translateY(0px); }
	100% { left: calc(100% - 100px); transform: rotate(1080deg) translateY(-10px); }
}
@keyframes danceAcrossNoSpin {
	0% { left: 0; transform: translateY(0px); }
	50% { left: 50%; transform: translateY(-10px); }
	100% { left: calc(100% - 100px); transform: translateY(0px); }
}

:root {
	color-scheme: light dark;
}
html {
	overflow-y: scroll;
}
body {
	background-color: #f2f2f7;
}
@supports(padding: env(safe-area-inset-top)) {
	body {
		padding-top: env(safe-area-inset-top);
		padding-left: env(safe-area-inset-left);
		padding-right: calc(env(safe-area-inset-right, 0px) + 16px);
	}
}
.tix-shell-nav {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	background-color: #fff;
	border: 1px solid #d1d1d6;
	border-radius: 20px;
	box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
	padding: 20px 28px 18px 20px;
	margin: 16px 4px 10px 4px;
	width: 100%;
	max-width: 520px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
}
.tix-shell-logo-wrap {
	position: relative;
	width: auto;
	display: inline-block;
	align-items: center;
	overflow: hidden;
}
.tix-shell-logo {
	display: block;
	border-radius: 12px;
	max-width: 100%;
	height: auto;
	object-fit: contain;
	pointer-events: none;
}
.tix-logo-overlay {
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	pointer-events: none;
	width: 100%;
	height: 100%;
}
.tix-logo-slice {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	text-indent: -9999px;
	z-index: 2;
	pointer-events: auto;
}
.tix-shell-atitle {
	font-size: 1.3rem;
	font-weight: 600;
	color: #0f172a;
	margin: 0;
}
.tix-shell-heading {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0;
}
.tix-shell-greeting {
	font-size: 0.95rem;
	letter-spacing: 0.01em;
	font-weight: 500;
	color: #475569;
	margin: 0;
}
.tix-shell-greeting a {
	color: #0a84ff;
	text-decoration: none;
	font-weight: 600;
}
.tix-shell-greeting a:hover {
	text-decoration: underline;
}
.tix-season-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 14px;
	border-radius: 999px;
	background: rgba(10,132,255,0.18);
	color: #0a84ff;
	font-weight: 600;
	font-size: 12px;
	text-decoration: none;
	transition: transform 0.12s ease;
	margin-left: auto;
	box-shadow: 0 10px 24px rgba(10,132,255,0.25);
}
.tix-season-pill span {
	color: inherit;
}
.tix-season-pill:hover {
	transform: translateY(-1px);
}
.tix-shell-actions {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-start;
	align-items: center;
}
.tix-shell-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 16px;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.82rem;
	letter-spacing: 0.02em;
	color: #fff;
	background: linear-gradient(130deg, #0a84ff, #00c6ff);
	box-shadow: 0 8px 18px rgba(10,132,255,0.25);
	border: none;
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.tix-shell-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 20px rgba(10,132,255,0.3);
}
.tix-shell-btn:active {
	transform: translateY(0);
	box-shadow: 0 6px 14px rgba(10,132,255,0.2);
}
.signin-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 22px;
	border-radius: 999px;
	border: none;
	font-weight: 600;
	font-size: 0.9rem;
	letter-spacing: 0.01em;
	color: #fff;
	background: linear-gradient(130deg, #0a84ff, #00c6ff);
	box-shadow: 0 12px 28px rgba(10,132,255,0.32);
	cursor: pointer;
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.signin-pill:hover,
.signin-pill:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 16px 32px rgba(10,132,255,0.38);
	outline: none;
}
.signin-pill:disabled {
	opacity: 0.55;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}
.signout-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 11px;
	border-radius: 999px;
	background: #16a34a;
	color: #fff;
	border: 1px solid #15803d;
	text-decoration: none;
	box-shadow: 0 6px 18px rgba(22,163,74,0.35);
	min-width: 32px;
	line-height: 1;
	vertical-align: middle;
	transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}
.signout-link:hover,
.signout-link:focus-visible {
	background: #15803d;
	transform: translateY(-1px);
	box-shadow: 0 10px 22px rgba(22,163,74,0.45);
	outline: none;
}
.signout-label {
	font-weight: 700;
	font-size: 0.75rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	line-height: 1;
}
.earlyout-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 11px;
	border-radius: 999px;
	background: #dc2626;
	color: #fff;
	border: 1px solid #b91c1c;
	text-decoration: none;
	min-width: 32px;
	font-weight: 700;
	font-size: 0.75rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	box-shadow: 0 6px 18px rgba(220,38,38,0.35);
	line-height: 1;
	vertical-align: middle;
	transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}
.earlyout-link:hover,
.earlyout-link:focus-visible {
	background: #b91c1c;
	transform: translateY(-1px);
	box-shadow: 0 10px 22px rgba(220,38,38,0.4);
	outline: none;
}
.table-remove-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 10px;
	background: rgba(15,23,42,0.08);
	color: #ef4444;
	text-decoration: none;
	transition: background 0.12s ease, transform 0.12s ease;
	line-height: 1;
	vertical-align: middle;
}
.table-remove-link:hover,
.table-remove-link:focus-visible {
	background: rgba(239,68,68,0.18);
	transform: translateY(-1px);
	outline: none;
}
.table-remove-icon {
	display: inline-flex;
	width: 18px;
	height: 18px;
	line-height: 0;
}
.table-remove-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}
.tix-shell-page-title {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 1.15rem;
	font-weight: 600;
	color: #1f2937;
	margin: 20px 28px 12px;
}
.hero {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	background: rgba(255,255,255,0.96);
	border: 1px solid #d1d1d6;
	border-radius: 28px;
	padding: 24px 28px 24px 40px;
	box-shadow: 0 18px 45px rgba(15,23,42,0.08);
	margin: 18px 0 16px 18px;
	position: relative;
	overflow: hidden;
}
.hero::before {
	content: '';
	position: absolute;
	top: -1px;
	bottom: -1px;
	left: -1px;
	width: 12px;
	border-radius: 28px 0 0 28px;
	background: var(--hero-accent, linear-gradient(180deg, #cbd5f5, #94a3b8));
	box-shadow: var(--hero-accent-shadow, 0 12px 24px rgba(0,0,0,0.08));
}
.hero-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}
.hero-overline {
	margin: 0;
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #64748b;
}
.hero-title {
	margin: 12px 0 6px;
	font-size: 28px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--tix-text);
}
.hero-helper {
	margin: 0;
	font-size: 14px;
	color: #475569;
}
.hero-pill-wrap {
	margin-left: auto;
}
.hero-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 16px;
	border-radius: 999px;
	background: rgba(10,132,255,0.18);
	color: #0a84ff;
	font-weight: 600;
	font-size: 13px;
	text-decoration: none;
	box-shadow: 0 12px 26px rgba(10,132,255,0.2);
}
.hero-pill span {
	color: inherit;
}
.hero-extra {
	margin-top: 10px;
	font-size: 14px;
	color: var(--tix-text);
}
.hero-user {
	--hero-accent: var(--hero-user-accent);
	--hero-accent-shadow: var(--hero-user-shadow);
}
.hero-admin {
	--hero-accent: var(--hero-admin-accent);
	--hero-accent-shadow: var(--hero-admin-shadow);
}
@media (prefers-color-scheme: dark) {
	body {
		background-color: #000;
		color: #f5f5f5;
	}
	.tix-shell-nav {
		background-color: #1c1c1e;
		border-color: #2c2c2e;
		box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
	}
	.tix-shell-atitle {
		color: #f5f5f5;
	}
	.tix-shell-greeting {
		color: #d1d1d6;
	}
	.tix-shell-greeting a {
		color: #64b5ff;
	}
	.tix-season-pill {
		background: rgba(10,132,255,0.25);
		color: #7cc4ff;
	}
	.tix-shell-btn {
		background: #2c2c2e;
		color: #0a84ff;
	}
	.tix-shell-btn:hover {
		background: #3a3a3c;
	}
	.tix-shell-page-title {
		color: #e5e5ea;
	}
	.hero {
		background: #1c1c1e;
		border-color: #2c2c2e;
		box-shadow: 0 18px 45px rgba(0,0,0,0.7);
	}
	.hero-helper {
		color: #d1d1d6;
	}
	.hero-pill {
		background: rgba(10,132,255,0.25);
		color: #7cc4ff;
	}
}
@media (max-width: 640px) {
	.tix-shell-nav {
		margin: 12px 10px 8px 10px;
		padding: 18px 16px;
	}
}
