:root {
	color-scheme: dark;
	font-family: Inter, "Segoe UI", system-ui, sans-serif;
	--page-background: #151817;
	--surface: #242a27;
	--surface-raised: #2d3530;
	--surface-interactive: #343d38;
	--border: #495249;
	--border-soft: #323a35;
	--text: #e0e3dc;
	--text-muted: #a9b0a7;
	--accent: #bccb8e;
	--accent-strong: #d7e8a2;
	--accent-surface: #313b2c;
	--warning: #efc56e;
	--error-border: #a56e67;
	--error-text: #e2aea7;
	--error-surface: #3a2929;
	--shadow: 0 24px 80px rgb(0 0 0 / 24%);
	--radius: 0.5rem;
	background: var(--page-background);
	color: var(--text);
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	min-width: 20rem;
	min-height: 100vh;
	background: var(--page-background);
	color: inherit;
	transition: background-color 180ms ease, color 180ms ease;
}

button,
input,
select {
	font: inherit;
}

button {
	cursor: pointer;
	border: 1px solid var(--border);
	border-radius: calc(var(--radius) - 0.1rem);
	background: var(--surface-interactive);
	color: inherit;
}

button:hover {
	border-color: var(--accent);
	background: color-mix(in srgb, var(--surface-interactive) 80%, var(--accent));
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
a:focus-visible {
	outline: 3px solid var(--accent-strong);
	outline-offset: 3px;
}

.site-header,
main,
.site-footer {
	width: min(100% - 2rem, 90rem);
	margin-inline: auto;
}

.site-header {
	display: flex;
	justify-content: space-between;
	gap: 2rem;
	align-items: end;
	padding-block: 2rem 1rem;
	border-bottom: 1px solid var(--border);
}

h1,
h2,
p {
	margin-top: 0;
}

h1 {
	margin-bottom: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2.25rem, 6vw, 4.2rem);
	font-weight: 500;
	letter-spacing: -0.045em;
	line-height: 0.9;
}

h2 {
	font-size: 1.05rem;
	letter-spacing: -0.015em;
}

.eyebrow,
.section-kicker {
	margin-bottom: 0.3rem;
	color: var(--accent);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.site-title a {
	color: inherit;
	text-decoration: none;
}

.site-title a:hover,
.site-footer a:hover {
	text-decoration: underline;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.14em;
}

.header-status {
	display: grid;
	gap: 0.7rem;
	justify-items: end;
	text-align: right;
}

#player-summary {
	margin: 0;
	color: var(--text-muted);
	font-size: 0.9rem;
}

.theme-switcher {
	margin: 0;
	padding: 0;
	border: 0;
}

.theme-switcher legend {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

.theme-options {
	display: flex;
	gap: 0.25rem;
	padding: 0.22rem;
	border: 1px solid var(--border);
	border-radius: 999px;
	background: var(--surface);
}

.theme-options button {
	min-height: 2.3rem;
	padding: 0.45rem 0.72rem;
	border-color: transparent;
	border-radius: 999px;
	background: transparent;
	color: var(--text-muted);
	font-size: 0.875rem;
	font-weight: 700;
}

.theme-options button[aria-pressed="true"] {
	background: var(--text);
	color: var(--page-background);
	box-shadow: 0 2px 8px rgb(0 0 0 / 24%);
}

main {
	padding-block: 1.25rem 3rem;
}

.notice,
.entry,
.tick-clock,
.orders,
.pending {
	padding: 1rem;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--surface);
	box-shadow: var(--shadow);
}

.notice {
	margin-bottom: 1rem;
}

.notice.error {
	border-color: var(--error-border);
	background: var(--error-surface);
	color: var(--error-text);
}

.tick-clock {
	display: grid;
	grid-template-columns: minmax(12rem, 1fr) minmax(24rem, 2fr);
	gap: 1.25rem;
	align-items: center;
	margin-bottom: 1rem;
}

.tick-clock h2,
.tick-clock-message {
	margin-bottom: 0;
}

.tick-clock-message {
	margin-top: 0.35rem;
	color: var(--text-muted);
	font-size: 0.9rem;
}

.tick-clock-details {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.8rem;
	margin: 0;
}

.tick-clock-details div {
	min-width: 0;
	padding-left: 0.8rem;
	border-left: 1px solid var(--border-soft);
}

.tick-clock-details dt {
	color: var(--text-muted);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.tick-clock-details dd {
	margin: 0.25rem 0 0;
	font-size: 0.9rem;
	font-weight: 700;
}

#tick-countdown {
	color: var(--accent-strong);
	font-size: clamp(1.15rem, 2vw, 1.55rem);
	font-variant-numeric: tabular-nums;
}

.tick-clock[data-state="overdue"] #tick-countdown,
.tick-clock[data-state="invalid"] .tick-clock-message,
.tick-clock[data-state="unavailable"] .tick-clock-message {
	color: var(--warning);
}

.retry-button {
	margin-left: 0.75rem;
}

.toolbar {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	align-items: start;
	margin-bottom: 1rem;
	padding-bottom: 0.85rem;
	border-bottom: 1px solid var(--border-soft);
}

.toolbar h2 {
	margin-bottom: 0.25rem;
}

.toolbar p {
	margin-bottom: 0;
	color: var(--text-muted);
}

.toolbar button,
.entry button,
.orders button {
	min-height: 2.6rem;
	padding: 0.55rem 0.85rem;
	font-weight: 750;
}

.workspace {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 22rem;
	gap: 1rem;
	align-items: start;
}

.map {
	display: grid;
	gap: 0.55rem;
	align-items: stretch;
	overflow: auto;
	min-height: 28rem;
	padding: 1rem;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background:
		linear-gradient(var(--border-soft) 1px, transparent 1px),
		linear-gradient(90deg, var(--border-soft) 1px, transparent 1px),
		#1d2220;
	background-size: 2.5rem 2.5rem;
	box-shadow: var(--shadow);
}

.county {
	position: relative;
	min-width: 9rem;
	min-height: 9rem;
	padding: 0.75rem;
	border: 1px solid var(--border);
	border-radius: calc(var(--radius) - 0.12rem);
	background: var(--surface);
	color: inherit;
	text-align: left;
	transition: border-color 150ms ease, background-color 150ms ease;
}

.county.legal {
	border-color: var(--accent);
	background: var(--accent-surface);
}

.county.selected-destination {
	box-shadow: inset 0 0 0 3px var(--warning);
}

.destination-button {
	position: absolute;
	z-index: 1;
	inset: auto 0.6rem 0.6rem auto;
	min-height: 2rem;
	padding: 0.35rem 0.55rem;
	border-color: var(--accent);
	background: var(--accent);
	color: var(--page-background);
	font-size: 0.8rem;
	font-weight: 800;
}

.county-meta {
	display: block;
	margin-bottom: 1rem;
	color: var(--text-muted);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.units {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.unit {
	padding: 0.38rem 0.58rem;
	border: 1px solid var(--border);
	border-radius: 999px;
	background: var(--surface-raised);
	color: inherit;
	font-size: 0.86rem;
	font-weight: 750;
}

.unit.controlled {
	border-color: var(--accent);
	background: var(--accent-surface);
	color: var(--accent-strong);
}

.unit.selected {
	outline: 3px solid var(--warning);
	outline-offset: 2px;
}

.side-stack {
	display: grid;
	gap: 1rem;
}

.orders,
.pending {
	margin: 0;
}

.orders h2,
.pending h2 {
	margin-bottom: 0.65rem;
}

.pending ul {
	margin: 0.9rem 0 0;
	padding-left: 1.25rem;
}

.pending li {
	padding-top: 0.7rem;
	border-top: 1px solid var(--border-soft);
}

.pending li + li {
	margin-top: 0.7rem;
}

.cancel-order {
	margin-left: 0.75rem;
	padding: 0.3rem 0.5rem;
	color: var(--error-text);
}

.orders label {
	display: block;
	margin-block: 0.8rem;
	color: var(--text-muted);
	font-size: 0.82rem;
	font-weight: 750;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.orders input,
.orders select {
	display: block;
	width: 100%;
	min-height: 2.7rem;
	margin-top: 0.35rem;
	padding: 0.55rem 0.65rem;
	border: 1px solid var(--border);
	border-radius: calc(var(--radius) - 0.12rem);
	background: #1d2220;
	color: inherit;
	font-size: 0.95rem;
}

.orders > button {
	width: 100%;
	border-color: var(--accent);
	background: var(--accent);
	color: var(--page-background);
}

.site-footer {
	padding-block: 1rem 2rem;
	border-top: 1px solid var(--border);
	color: var(--text-muted);
	font-size: 0.82rem;
	text-align: center;
}

.site-footer p {
	margin: 0;
}

.site-footer a {
	color: inherit;
}

[hidden] {
	display: none !important;
}

html[data-theme="atlas"] {
	color-scheme: light;
	font-family: "Aptos", "Segoe UI", system-ui, sans-serif;
	--page-background: #ded7c7;
	--surface: #eee8dc;
	--surface-raised: #e1d9ca;
	--surface-interactive: #ddd5c7;
	--border: #8f887a;
	--border-soft: #c8c0b1;
	--text: #282a26;
	--text-muted: #68695f;
	--accent: #365e4d;
	--accent-strong: #244638;
	--accent-surface: #ced9ce;
	--warning: #9b5f26;
	--error-border: #994e44;
	--error-text: #7d352e;
	--error-surface: #ead3ce;
	--shadow: 0 18px 45px rgb(58 47 33 / 14%);
	--radius: 0.125rem;
}

html[data-theme="atlas"] .site-header,
html[data-theme="atlas"] main,
html[data-theme="atlas"] .site-footer {
	width: min(100% - 2.5rem, 82rem);
}

html[data-theme="atlas"] .site-header {
	align-items: center;
	border-top: 4px double var(--border);
	border-bottom: 4px double var(--border);
}

html[data-theme="atlas"] h1 {
	font-size: clamp(2.35rem, 6vw, 4.7rem);
	font-style: italic;
}

html[data-theme="atlas"] .workspace {
	grid-template-columns: 1fr;
}

html[data-theme="atlas"] .side-stack {
	grid-template-columns: minmax(18rem, 0.8fr) minmax(22rem, 1.2fr);
}

html[data-theme="atlas"] .map {
	gap: 0;
	padding: 1.1rem 0;
	border-width: 1px 0;
	background:
		radial-gradient(circle at 20% 18%, rgb(71 88 65 / 8%), transparent 32%),
		radial-gradient(circle at 80% 72%, rgb(121 79 38 / 8%), transparent 30%);
	box-shadow: none;
}

html[data-theme="atlas"] .county {
	min-height: 10rem;
	border-width: 0 1px 1px 0;
	background: rgb(238 232 220 / 78%);
}

html[data-theme="atlas"] .county.legal {
	background: var(--accent-surface);
}

html[data-theme="atlas"] .county-meta {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 0.88rem;
	font-style: italic;
	letter-spacing: 0.03em;
	text-transform: none;
}

html[data-theme="atlas"] .orders,
html[data-theme="atlas"] .tick-clock,
html[data-theme="atlas"] .pending {
	box-shadow: none;
}

html[data-theme="atlas"] .orders > button {
	width: auto;
	min-width: 12rem;
}

html[data-theme="signal"] {
	color-scheme: dark;
	font-family: "Bahnschrift", "DIN Alternate", "Segoe UI", sans-serif;
	--page-background: #0c1218;
	--surface: #15212b;
	--surface-raised: #1c2b37;
	--surface-interactive: #20333f;
	--border: #385365;
	--border-soft: #243a49;
	--text: #dbeaf0;
	--text-muted: #91a9b5;
	--accent: #64c6c5;
	--accent-strong: #91e6df;
	--accent-surface: #17363b;
	--warning: #f4bf67;
	--error-border: #a75c63;
	--error-text: #f0a3a9;
	--error-surface: #3b2229;
	--shadow: 0 30px 90px rgb(0 6 12 / 38%);
	--radius: 0.875rem;
}

html[data-theme="signal"] .site-header,
html[data-theme="signal"] main,
html[data-theme="signal"] .site-footer {
	width: min(100% - 1.25rem, 96rem);
}

html[data-theme="signal"] .site-header {
	position: relative;
	align-items: center;
	padding-inline: 0.35rem;
	border-bottom: 0;
}

html[data-theme="signal"] .site-header::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 1px;
	background: linear-gradient(90deg, var(--accent), transparent 75%);
	content: "";
}

html[data-theme="signal"] h1 {
	font-family: inherit;
	font-size: clamp(1.9rem, 4vw, 3rem);
	font-weight: 780;
	letter-spacing: -0.035em;
}

html[data-theme="signal"] .eyebrow,
html[data-theme="signal"] .section-kicker {
	font-family: ui-monospace, "Cascadia Mono", monospace;
}

html[data-theme="signal"] .workspace {
	grid-template-columns: 1fr;
}

html[data-theme="signal"] .side-stack {
	grid-template-columns: minmax(20rem, 0.8fr) minmax(26rem, 1.2fr);
}

html[data-theme="signal"] .map {
	min-height: 32rem;
	padding: 1.25rem;
	background:
		linear-gradient(rgb(100 198 197 / 7%) 1px, transparent 1px),
		linear-gradient(90deg, rgb(100 198 197 / 7%) 1px, transparent 1px),
		radial-gradient(circle at 50% 45%, #17303c, #111b24 68%);
	background-size: 2rem 2rem, 2rem 2rem, auto;
	box-shadow: 0 0 0 1px rgb(100 198 197 / 7%), var(--shadow);
}

html[data-theme="signal"] .county {
	min-height: 12rem;
	border-color: #315062;
	background: rgb(20 34 45 / 88%);
}

html[data-theme="signal"] .county.legal {
	box-shadow: inset 0 0 24px rgb(100 198 197 / 8%);
}

html[data-theme="signal"] .orders,
html[data-theme="signal"] .tick-clock,
html[data-theme="signal"] .pending {
	box-shadow: none;
}

html[data-theme="signal"] .pending ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.7rem;
	padding: 0;
	list-style: none;
}

html[data-theme="signal"] .pending li {
	margin: 0;
	padding: 0.75rem;
	border: 1px solid var(--border-soft);
	border-radius: 0.5rem;
}

html[data-theme="bronze"] {
	color-scheme: light;
	font-family: Georgia, "Times New Roman", serif;
	--page-background: #c7b98f;
	--surface: #e5d9ae;
	--surface-raised: #f0e6c5;
	--surface-interactive: #dfcf9b;
	--border: #423829;
	--border-soft: #8a7650;
	--text: #241f18;
	--text-muted: #675b44;
	--accent: #294f59;
	--accent-strong: #173a43;
	--accent-surface: #e3ce70;
	--warning: #873729;
	--error-border: #873729;
	--error-text: #762a20;
	--error-surface: #e0ad87;
	--shadow: 0 4px 0 rgb(59 49 31 / 28%);
	--radius: 0;
}

html[data-theme="bronze"] body {
	background:
		repeating-linear-gradient(0deg, rgb(63 49 27 / 3%) 0 1px, transparent 1px 4px),
		var(--page-background);
}

html[data-theme="bronze"] .site-header {
	align-items: center;
	margin-top: 1rem;
	padding: 1.1rem 1.25rem;
	border: 2px solid var(--border);
	border-right-width: 0.55rem;
	background: #e9ddb5;
	box-shadow: var(--shadow);
}

html[data-theme="bronze"] h1 {
	font-size: clamp(2.1rem, 5vw, 4rem);
	font-weight: 700;
	letter-spacing: 0.015em;
	line-height: 0.95;
	text-transform: uppercase;
}

html[data-theme="bronze"] .eyebrow,
html[data-theme="bronze"] .section-kicker {
	color: #873729;
	letter-spacing: 0.14em;
}

html[data-theme="bronze"] .header-status {
	min-width: min(100%, 19rem);
	padding: 0.7rem 0.85rem;
	border: 1px solid #182f35;
	background: #294f59;
	color: #f0e6c5;
}

html[data-theme="bronze"] #player-summary {
	color: #ded09f;
}

html[data-theme="bronze"] .theme-options {
	border-color: #9aa7a4;
	background: #173a43;
}

html[data-theme="bronze"] .theme-options button {
	font-family: Georgia, "Times New Roman", serif;
	color: #ded09f;
}

html[data-theme="bronze"] .theme-options button[aria-pressed="true"] {
	background: #f0e6c5;
	color: #173a43;
}

html[data-theme="bronze"] .toolbar {
	padding: 0.75rem 0.9rem;
	border: 2px solid var(--border);
	background: #d4c48d;
	box-shadow: var(--shadow);
}

html[data-theme="bronze"] .tick-clock {
	border: 2px solid var(--border);
	border-left: 0.7rem solid #294f59;
	background: #e9ddb5;
}

html[data-theme="bronze"] .toolbar h2,
html[data-theme="bronze"] .orders h2,
html[data-theme="bronze"] .pending h2 {
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

html[data-theme="bronze"] button,
html[data-theme="bronze"] input,
html[data-theme="bronze"] select {
	border-width: 2px;
	font-family: Georgia, "Times New Roman", serif;
}

html[data-theme="bronze"] .map {
	gap: 0;
	padding: 1.25rem;
	border: 2px solid var(--border);
	background:
		repeating-linear-gradient(105deg, rgb(255 255 255 / 5%) 0 2px, transparent 2px 8px),
		#66848a;
}

html[data-theme="bronze"] .county {
	min-height: 10.5rem;
	border: 1px solid var(--border);
	background: #d3bd72;
}

html[data-theme="bronze"] .county:nth-child(4n + 2),
html[data-theme="bronze"] .county:nth-child(4n + 3) {
	background: #b9c47a;
}

html[data-theme="bronze"] .county:nth-child(5n) {
	background: #d58a62;
}

html[data-theme="bronze"] .county.legal {
	background: #e3ce70;
	box-shadow: inset 0 0 0 3px #294f59;
}

html[data-theme="bronze"] .county.selected-destination {
	box-shadow: inset 0 0 0 4px #873729;
}

html[data-theme="bronze"] .county-meta {
	color: #453c2c;
	font-weight: 800;
	letter-spacing: 0.1em;
}

html[data-theme="bronze"] .unit,
html[data-theme="bronze"] .destination-button {
	border-radius: 0;
	box-shadow: 2px 2px 0 rgb(59 49 31 / 25%);
}

html[data-theme="bronze"] .unit {
	background: #efe4bc;
}

html[data-theme="bronze"] .unit.controlled {
	background: #efe4bc;
	color: #173a43;
}

html[data-theme="bronze"] .orders,
html[data-theme="bronze"] .pending {
	border: 2px solid var(--border);
}

html[data-theme="bronze"] .orders {
	border-top: 0.7rem solid #873729;
	background: #e8d9a5;
}

html[data-theme="bronze"] .pending {
	border-top: 0.7rem solid #294f59;
	background: #f0e6c5;
}

html[data-theme="bronze"] .orders input,
html[data-theme="bronze"] .orders select {
	background: #f0e6c5;
}

@media (max-width: 70rem) {
	.site-header {
		align-items: start;
	}

	.theme-options {
		flex-wrap: wrap;
		justify-content: flex-end;
		border-radius: 0.7rem;
	}
}

@media (max-width: 58rem) {
	.tick-clock {
		grid-template-columns: 1fr;
	}

	.workspace {
		grid-template-columns: 1fr;
	}

	.side-stack,
	html[data-theme="atlas"] .side-stack,
	html[data-theme="signal"] .side-stack {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 40rem) {
	.site-header,
	.toolbar {
		display: grid;
		gap: 1rem;
	}

	.site-header {
		padding-top: 1rem;
	}

	.tick-clock-details {
		grid-template-columns: 1fr;
	}

	.tick-clock-details div {
		padding: 0.65rem 0 0;
		border-top: 1px solid var(--border-soft);
		border-left: 0;
	}

	.header-status {
		justify-items: start;
		text-align: left;
	}

	.theme-options {
		overflow-x: auto;
		max-width: calc(100vw - 4rem);
		flex-wrap: nowrap;
	}

	.theme-options button {
		flex: 0 0 auto;
	}

	.side-stack,
	html[data-theme="atlas"] .side-stack,
	html[data-theme="signal"] .side-stack {
		grid-template-columns: 1fr;
	}

	.map {
		padding: 0.65rem;
	}

	html[data-theme="bronze"] .site-header {
		margin-top: 0.5rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		transition-duration: 0.01ms !important;
	}
}

/* Experimental layered unit markers: symbol / Tribe fill / Khanate rim. */
.marker-key {
	margin: 0.45rem 0 0;
	font-size: 0.78rem;
}

html .unit.heraldic,
.player-marker {
	display: inline-grid;
	align-items: center;
	min-height: 2.45rem;
	border: 0.24rem solid var(--unit-khanate);
	border-radius: 0.8rem;
	background: var(--unit-tribe);
	box-shadow: inset 0 0 0 1px rgb(255 255 255 / 28%);
	color: #fff;
}

html .unit.heraldic {
	padding: 0.24rem 0.38rem;
}

.player-marker {
	padding: 0.16rem 0.38rem;
	vertical-align: middle;
}

html .unit.heraldic.controlled {
	border-color: var(--unit-khanate);
	background: var(--unit-tribe);
	box-shadow:
		inset 0 0 0 1px rgb(255 255 255 / 40%),
		0 0 0 2px var(--accent);
	color: #fff;
}

.unit-symbol {
	font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
	font-size: 1.35rem;
	line-height: 1;
	filter:
		drop-shadow(0 0 0.055rem #fff)
		drop-shadow(0 0 0.055rem #fff);
	text-shadow: none;
}

.unit-symbols {
	display: flex;
	flex-wrap: wrap;
	gap: 0.12rem;
	align-items: center;
}
/* Pending population shown separately from units available to move. */
.transit-units {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	align-items: center;
	margin-top: 0.8rem;
	padding-top: 0.65rem;
	border-top: 1px dashed var(--border);
}

.transit-label {
	flex-basis: 100%;
	color: var(--text-muted);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.transit-marker {
	position: relative;
	z-index: 2;
	display: inline-flex;
}

.incoming-unit {
	border-style: dashed;
	opacity: 0.82;
}

.transit-cancel {
	position: absolute;
	top: -0.45rem;
	right: -0.45rem;
	z-index: 3;
	display: grid;
	width: 1.4rem;
	height: 1.4rem;
	padding: 0;
	place-items: center;
	border-color: var(--error-border);
	border-radius: 999px;
	background: var(--error-surface);
	color: var(--error-text);
	font-size: 0.68rem;
	line-height: 1;
	opacity: 0;
	transition: opacity 120ms ease;
}

.transit-marker:hover .transit-cancel,
.transit-marker:focus-within .transit-cancel {
	opacity: 1;
}

.outgoing-unit {
	border-style: dashed;
	filter: grayscale(1);
	opacity: 0.45;
}
