/* Longwave — warm dark, analog-radio inspired.
   Amber on charcoal in the dark theme, ink on warm paper in the light one. */

:root {
	color-scheme: dark;

	--bg: #100e0c;
	--bg-glow: #1a1611;
	--surface: #191612;
	--surface-2: #221e18;
	--surface-3: #2b261e;
	--line: #322c23;
	--line-soft: #262119;

	--text: #f2ede4;
	--text-dim: #cfc6b6;
	--muted: #948a79;

	--accent: #f3a838;
	--accent-hot: #ff8a3d;
	--accent-ink: #1a1204;
	--accent-soft: rgba(243, 168, 56, 0.13);
	--accent-line: rgba(243, 168, 56, 0.32);

	--danger: #f47c6f;
	--danger-soft: rgba(244, 124, 111, 0.12);

	--yt: #ff4e45;

	--radius: 14px;
	--radius-sm: 9px;
	--shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 8px 24px -12px rgba(0, 0, 0, 0.6);

	--ff: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Inter, sans-serif;
	--ff-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
}

@media (prefers-color-scheme: light) {
	:root {
		color-scheme: light;

		--bg: #f7f3ec;
		--bg-glow: #fffdf9;
		--surface: #fffdfa;
		--surface-2: #f3eee4;
		--surface-3: #e9e2d5;
		--line: #e0d8c9;
		--line-soft: #ece5d8;

		--text: #1d1a15;
		--text-dim: #3d382f;
		--muted: #776f61;

		/* Darker than the dark theme's amber on purpose: this sits behind
		   near-white button text, and the lighter shade only reached 4.0:1. */
		--accent: #90570a;
		--accent-hot: #a8480a;
		--accent-ink: #fffaf0;
		--accent-soft: rgba(144, 87, 10, 0.1);
		--accent-line: rgba(144, 87, 10, 0.3);

		--danger: #c0392b;
		--danger-soft: rgba(192, 57, 43, 0.09);

		--shadow: 0 1px 2px rgba(80, 60, 20, 0.08), 0 10px 26px -14px rgba(80, 60, 20, 0.3);
	}
}

* {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--bg);
	/* A faint warm glow behind the header, like a lit dial. */
	background-image: radial-gradient(120% 55% at 50% -12%, var(--bg-glow) 0%, transparent 70%);
	background-repeat: no-repeat;
	color: var(--text);
	font: 15px/1.6 var(--ff);
	letter-spacing: 0.005em;
	-webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
	line-height: 1.25;
	letter-spacing: -0.015em;
	margin: 0;
}
h1 {
	font-size: 1.55rem;
	font-weight: 650;
}
h2 {
	font-size: 1.02rem;
	font-weight: 620;
}
h3 {
	font-size: 0.74rem;
	font-weight: 650;
	text-transform: uppercase;
	letter-spacing: 0.09em;
	color: var(--muted);
}

a {
	color: var(--accent);
	text-decoration-color: var(--accent-line);
	text-underline-offset: 2px;
}

:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
	border-radius: 4px;
}

/* ---------- chrome ---------- */

.topbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: 0.85rem 1.15rem;
	border-bottom: 1px solid var(--line-soft);
	background: color-mix(in srgb, var(--surface) 72%, transparent);
	backdrop-filter: blur(10px);
	position: sticky;
	top: 0;
	z-index: 20;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	font-weight: 640;
	font-size: 1rem;
	letter-spacing: -0.02em;
	color: var(--text);
	text-decoration: none;
}
.brand svg {
	color: var(--accent);
	flex-shrink: 0;
}

main {
	max-width: 940px;
	margin: 0 auto;
	padding: 1.75rem 1.15rem 4rem;
}

.pagehead {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 1.15rem;
}

footer {
	max-width: 940px;
	margin: 0 auto;
	padding: 0 1.15rem 2.5rem;
	color: var(--muted);
	font-size: 0.78rem;
}

.crumb {
	margin: 0 0 0.6rem;
	font-size: 0.82rem;
}
.crumb a {
	color: var(--muted);
	text-decoration: none;
}
.crumb a:hover {
	color: var(--accent);
}

.muted {
	color: var(--muted);
}
.small {
	font-size: 0.8rem;
}

/* ---------- cards ---------- */

.card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.05rem 1.15rem;
	margin-bottom: 1rem;
	box-shadow: var(--shadow);
}
.card > h2 {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	margin-bottom: 0.7rem;
}

.grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 1rem;
}

/* ---------- on-air state ---------- */

.pill {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.64rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.24rem 0.55rem;
	border-radius: 999px;
	background: var(--surface-3);
	color: var(--muted);
	border: 1px solid var(--line);
	white-space: nowrap;
}
.pill.live {
	background: var(--accent-soft);
	color: var(--accent);
	border-color: var(--accent-line);
}
.pill .dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
	flex-shrink: 0;
}
.pill.live .dot {
	animation: pulse 1.9s ease-in-out infinite;
}

@keyframes pulse {
	0%,
	100% {
		opacity: 1;
		box-shadow: 0 0 0 0 var(--accent-line);
	}
	50% {
		opacity: 0.65;
		box-shadow: 0 0 0 4px transparent;
	}
}

/* Four bars bouncing like a level meter — the clearest possible signal that
   audio is actually moving, not just that a flag is set. */
.eq {
	display: inline-flex;
	align-items: flex-end;
	gap: 2px;
	height: 13px;
}
.eq i {
	width: 3px;
	border-radius: 1px;
	background: var(--accent);
	animation: bounce 1.1s ease-in-out infinite;
}
.eq i:nth-child(1) {
	height: 45%;
	animation-delay: -0.9s;
}
.eq i:nth-child(2) {
	height: 90%;
	animation-delay: -0.5s;
}
.eq i:nth-child(3) {
	height: 65%;
	animation-delay: -0.7s;
}
.eq i:nth-child(4) {
	height: 100%;
	animation-delay: -0.2s;
}

@keyframes bounce {
	0%,
	100% {
		transform: scaleY(0.35);
	}
	50% {
		transform: scaleY(1);
	}
}

@media (prefers-reduced-motion: reduce) {
	.eq i,
	.pill.live .dot {
		animation: none;
	}
	.eq i {
		height: 70%;
	}
	* {
		transition: none !important;
	}
}

/* ---------- artwork ---------- */

.art {
	background: var(--surface-3);
	border-radius: var(--radius-sm);
	overflow: hidden;
	flex-shrink: 0;
	position: relative;
}
.art img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.art.wide {
	aspect-ratio: 16 / 9;
	width: 100%;
}
.art.sq {
	width: 42px;
	height: 42px;
}
.art.hero {
	width: 116px;
	height: 116px;
}

/* ---------- now playing ---------- */

.now {
	display: flex;
	gap: 0.95rem;
	align-items: center;
}
.now-body {
	min-width: 0;
	flex: 1;
}
.now-title {
	font-weight: 600;
	font-size: 1.05rem;
	margin: 0 0 0.15rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}
.now-sub {
	color: var(--muted);
	font-size: 0.84rem;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.stationcard-now {
	display: flex;
	gap: 0.7rem;
	align-items: center;
	margin: 0.85rem 0;
	min-height: 42px;
}
.stationcard-now .t {
	min-width: 0;
	font-size: 0.9rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* ---------- stream url ---------- */

.streamurl {
	display: flex;
	gap: 0.4rem;
	margin: 0.7rem 0;
}
.streamurl input {
	flex: 1;
	min-width: 0;
	margin: 0;
	font-family: var(--ff-mono);
	font-size: 0.76rem;
	letter-spacing: -0.01em;
	background: var(--surface-2);
}

audio {
	width: 100%;
	height: 36px;
	margin-top: 0.5rem;
	border-radius: 999px;
}

/* ---------- forms ---------- */

label {
	display: block;
	margin-bottom: 0.85rem;
	font-size: 0.85rem;
	font-weight: 550;
	color: var(--text-dim);
}
label small {
	display: block;
	font-weight: 400;
	color: var(--muted);
	margin-top: 0.15rem;
}
label.check {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-weight: 550;
}
label.check input {
	width: auto;
	margin: 0.25rem 0 0;
	accent-color: var(--accent);
}

input[type="text"],
input[type="password"],
input[type="url"],
select {
	width: 100%;
	margin-top: 0.3rem;
	padding: 0.55rem 0.7rem;
	background: var(--surface-2);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	color: var(--text);
	font: inherit;
	font-size: 0.9rem;
	transition: border-color 0.15s, background 0.15s;
}
input::placeholder {
	color: var(--muted);
}
input:hover,
select:hover {
	border-color: var(--surface-3);
}
input:focus,
select:focus {
	outline: none;
	border-color: var(--accent);
	background: var(--surface);
}

button {
	padding: 0.55rem 0.95rem;
	background: var(--accent);
	color: var(--accent-ink);
	border: 1px solid transparent;
	border-radius: var(--radius-sm);
	font: inherit;
	font-weight: 620;
	font-size: 0.86rem;
	cursor: pointer;
	white-space: nowrap;
	transition: filter 0.15s, background 0.15s;
}
button:hover:not(:disabled) {
	filter: brightness(1.08);
}
button:active:not(:disabled) {
	filter: brightness(0.95);
}
button:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

button.ghost {
	background: var(--surface-2);
	color: var(--text);
	border-color: var(--line);
}
button.ghost:hover:not(:disabled) {
	border-color: var(--accent-line);
	color: var(--accent);
	filter: none;
}
button.warn {
	background: transparent;
	color: var(--accent-hot);
	border-color: color-mix(in srgb, var(--accent-hot) 40%, transparent);
}
button.warn:hover:not(:disabled) {
	background: var(--accent-soft);
	filter: none;
}
button.link {
	background: none;
	border: none;
	color: var(--muted);
	padding: 0.15rem 0;
	font-weight: 550;
	font-size: 0.8rem;
}
button.link:hover:not(:disabled) {
	color: var(--accent);
	filter: none;
}
button.link.danger:hover:not(:disabled) {
	color: var(--danger);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	padding: 0.5rem 0.9rem;
	background: var(--surface-2);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	color: var(--text);
	text-decoration: none;
	font-size: 0.85rem;
	font-weight: 560;
}
.btn:hover {
	border-color: var(--accent-line);
	color: var(--accent);
}

form.inline {
	display: inline;
}

/* In-flight state for a fragment being swapped. Dimming rather than hiding
   keeps the layout still, so the page does not jump while an action runs. */
[aria-busy="true"] {
	opacity: 0.55;
	transition: opacity 0.12s ease-in;
	pointer-events: none;
	cursor: progress;
}

/* Confirmation that a credential is on file. Deliberately not muted: the
   whole question this answers is "is it actually saved?" */
.stored {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	margin: 0.9rem 0;
	padding: 0.7rem 0.85rem;
	background: var(--accent-soft);
	border: 1px solid var(--accent-line);
	border-radius: var(--radius-sm);
	font-size: 0.86rem;
	color: var(--text);
}
.stored > svg {
	color: var(--accent);
	flex-shrink: 0;
	margin-top: 0.15rem;
}
.stored > div {
	flex: 1;
	min-width: 0;
}
.stored .when {
	display: block;
	/* --muted only reaches 4.2:1 against the tinted panel, and these lines
	   (when it was stored, whether it goes stale) are the ones people come
	   here to read. */
	color: var(--text-dim);
	font-size: 0.8rem;
	margin-top: 0.2rem;
}
.stored form {
	flex-shrink: 0;
}
.stored .actions {
	display: flex;
	gap: 0.4rem;
	flex: 0 0 auto;
}
.stored .actions button {
	padding: 0.35rem 0.7rem;
	font-size: 0.8rem;
}

button.danger-outline {
	color: var(--danger);
	border-color: color-mix(in srgb, var(--danger) 38%, transparent);
	background: transparent;
	font-size: 0.8rem;
	padding: 0.35rem 0.7rem;
}
button.danger-outline:hover:not(:disabled) {
	background: var(--danger-soft);
	filter: none;
}

.topnav {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 0.85rem;
}
.topnav a {
	color: var(--muted);
	text-decoration: none;
	font-weight: 550;
}
.topnav a:hover {
	color: var(--accent);
}

textarea {
	width: 100%;
	margin-top: 0.3rem;
	padding: 0.55rem 0.7rem;
	background: var(--surface-2);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	color: var(--text);
	font-family: var(--ff-mono);
	font-size: 0.76rem;
	line-height: 1.5;
	resize: vertical;
	transition: border-color 0.15s, background 0.15s;
}
textarea:focus {
	outline: none;
	border-color: var(--accent);
	background: var(--surface);
}

details summary::marker {
	color: var(--muted);
}
details[open] summary {
	margin-bottom: 0.2rem;
}

.addsource,
.newstation {
	display: flex;
	gap: 0.45rem;
	align-items: flex-start;
}
.addsource input,
.newstation input {
	margin: 0;
}

.controls {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: center;
	margin-top: 1rem;
	padding-top: 0.9rem;
	border-top: 1px solid var(--line-soft);
}
.controls .hint {
	flex-basis: 100%;
	color: var(--muted);
	font-size: 0.76rem;
	margin: 0;
}

.settings {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 1rem;
}
.settings label.check,
.settings .save {
	grid-column: 1 / -1;
}
.settings .save {
	justify-self: start;
	margin-top: 0.3rem;
}

/* ---------- source list ---------- */

.sources {
	list-style: none;
	margin: 0.9rem 0 0;
	padding: 0;
	border-top: 1px solid var(--line-soft);
}
.sources li {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	padding: 0.7rem 0;
	border-bottom: 1px solid var(--line-soft);
}
.sources li.off {
	opacity: 0.45;
}
.sources .info {
	flex: 1;
	min-width: 0;
}
.sources .name {
	display: block;
	font-weight: 550;
	font-size: 0.9rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: var(--text);
	text-decoration: none;
}
.sources .name:hover {
	color: var(--accent);
}
.sources .meta {
	font-size: 0.78rem;
	color: var(--muted);
	display: flex;
	align-items: center;
	gap: 0.45rem;
	flex-wrap: wrap;
	margin-top: 0.12rem;
}
.sources .acts {
	display: flex;
	gap: 0.7rem;
	flex-shrink: 0;
}

.chip {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	font-size: 0.68rem;
	font-weight: 600;
	padding: 0.12rem 0.42rem;
	border-radius: 5px;
	background: var(--surface-3);
	color: var(--text-dim);
	white-space: nowrap;
}
.chip .swatch {
	width: 6px;
	height: 6px;
	border-radius: 2px;
}
.chip .swatch {
	background: var(--yt);
}

.err {
	color: var(--danger);
	font-size: 0.8rem;
}
.banner {
	background: var(--danger-soft);
	border: 1px solid color-mix(in srgb, var(--danger) 35%, transparent);
	color: var(--danger);
	padding: 0.6rem 0.8rem;
	border-radius: var(--radius-sm);
	font-size: 0.86rem;
	margin-bottom: 1rem;
}
.notice {
	background: var(--accent-soft);
	border: 1px solid var(--accent-line);
	color: var(--text-dim);
	padding: 0.55rem 0.75rem;
	border-radius: var(--radius-sm);
	font-size: 0.8rem;
	margin-top: 0.7rem;
}

/* ---------- track lists ---------- */

.tracks {
	list-style: none;
	margin: 0.5rem 0 0;
	padding: 0;
}
.tracks li {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.32rem 0;
	font-size: 0.86rem;
	min-width: 0;
}
.tracks .t {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	min-width: 0;
	flex: 1;
}
.tracks .when {
	color: var(--muted);
	font-size: 0.76rem;
	font-variant-numeric: tabular-nums;
	flex-shrink: 0;
}
/* Positions come from the server, not a CSS counter. content-visibility on
   the rows below applies style containment, which scopes counter-increment
   to each row — every line would number itself "1". */
.tracks .n {
	color: var(--muted);
	font-size: 0.74rem;
	font-variant-numeric: tabular-nums;
	width: 1.6rem;
	flex-shrink: 0;
	text-align: right;
}

/* ---------- editable queue ---------- */

.queue li {
	gap: 0.5rem;
	padding: 0.3rem 0.45rem;
	/* Pulled back out so the hover band spans the card's full width without
	   the list itself being inset. */
	margin: 0 -0.45rem;
	border-radius: var(--radius-sm);
	transition: background 0.12s;
	/* "Show all" on a several-hundred-track station must not cost layout for
	   the rows nobody can see. The intrinsic size keeps the scrollbar honest
	   so the page does not jump as rows come into view. */
	content-visibility: auto;
	contain-intrinsic-size: auto 40px;
}
.queue li.dragging {
	opacity: 0.55;
	background: var(--surface-2);
}

/* Sprite host: referenced by <use>, never drawn itself. Positioned out of
   flow rather than display:none, which some engines treat as a reason not to
   resolve the references. */
.sprite {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
}

/* Geometry lives in the symbols, paint lives here — stroke and fill are
   inherited properties, so one rule styles every icon in the sprite. */
.i {
	width: 16px;
	height: 16px;
	display: block;
	flex-shrink: 0;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.grip .i {
	fill: currentColor;
	stroke: none;
	width: 14px;
	height: 14px;
}

.queue .grip {
	display: flex;
	align-items: center;
	color: var(--surface-3);
	cursor: grab;
	flex-shrink: 0;
	padding: 0.4rem 0.2rem;
	transition: color 0.15s;
	/* The whole of the mobile drag story. A touch starting on the handle
	   drags instead of scrolling; a touch anywhere else in the row scrolls
	   the list normally, which is why this is not on the <li>. */
	touch-action: none;
	user-select: none;
	-webkit-user-select: none;
}
.queue li.dragging .grip {
	cursor: grabbing;
	color: var(--accent);
}

.qacts {
	display: flex;
	gap: 0.1rem;
	flex-shrink: 0;
	margin-left: auto;
}
/* A repeated pair of icons down fifty rows is noise. Where there is a real
   pointer, let them recede until the row is pointed at — opacity rather than
   display, so the row never changes size and nothing jumps.
   Dimmed rather than hidden, deliberately: an action nobody can see is an
   action nobody discovers, and at zero the buttons would still be clickable
   while invisible, which is a worse failure than being faint. */
@media (hover: hover) and (pointer: fine) {
	.queue .qacts {
		opacity: 0.35;
		transition: opacity 0.12s;
	}
	.queue li:hover .qacts,
	.queue li:focus-within .qacts {
		opacity: 1;
	}
	/* Confined to real pointers as well: on a touchscreen :hover sticks
	   after a tap, which would leave a row lit up long after it was let go. */
	.queue li:hover {
		background: var(--surface-2);
	}
	.queue li:hover .grip {
		color: var(--muted);
	}
}
/* No hover to reveal anything, so the handle has to read as grabbable at
   rest and the actions simply stay put. */
@media (hover: none) {
	.queue .grip {
		color: var(--muted);
	}
}
.iconbtn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: 1px solid transparent;
	color: var(--muted);
	padding: 0;
	min-width: 32px;
	min-height: 32px;
	border-radius: var(--radius-sm);
	transition: color 0.15s, background 0.15s, border-color 0.15s;
}
.iconbtn:hover:not(:disabled) {
	background: var(--surface-2);
	border-color: var(--accent-line);
	color: var(--accent);
	filter: none;
}
.iconbtn:active:not(:disabled) {
	background: var(--surface-3);
	filter: none;
}
.iconbtn.danger:hover:not(:disabled) {
	background: var(--danger-soft);
	border-color: color-mix(in srgb, var(--danger) 34%, transparent);
	color: var(--danger);
}
.iconbtn:disabled {
	opacity: 0.22;
	cursor: default;
}

.qmore {
	margin: 0.5rem 0 0;
	font-size: 0.82rem;
}

.empty {
	text-align: center;
	padding: 2.2rem 1rem;
	color: var(--muted);
}
.empty svg {
	color: var(--surface-3);
	margin-bottom: 0.5rem;
}

/* ---------- auth ---------- */

.narrow {
	max-width: 370px;
	margin: 3.5rem auto;
}
.narrow .card {
	padding: 1.5rem;
}
.narrow h1 {
	margin-bottom: 1.1rem;
	font-size: 1.3rem;
}
.narrow button[type="submit"] {
	width: 100%;
	margin-top: 0.2rem;
	padding: 0.65rem;
}
.narrow .alt {
	text-align: center;
	margin: 1rem 0 0;
	font-size: 0.85rem;
}

.danger-zone {
	border-color: color-mix(in srgb, var(--danger) 22%, var(--line));
	background: none;
	box-shadow: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

@media (max-width: 620px) {
	.settings {
		grid-template-columns: 1fr;
	}
	.now {
		gap: 0.7rem;
	}
	.art.hero {
		width: 78px;
		height: 78px;
	}
	main {
		padding: 1.25rem 0.9rem 3rem;
	}
	/* Fingers, not cursors: bigger targets. Two actions rather than four
	   leaves roughly 170px for the title at 375px, so the position number
	   can stay — and nothing is hidden behind an overflow menu, which the
	   five-second poll would close under the user anyway. */
	.queue li {
		gap: 0.35rem;
		padding: 0.3rem 0.3rem;
		margin: 0 -0.3rem;
	}
	.queue .n {
		width: 1.3rem;
	}
	.queue .grip {
		padding: 0.55rem 0.2rem;
	}
	.iconbtn {
		min-width: 36px;
		min-height: 36px;
	}
	.sources li {
		flex-wrap: wrap;
	}
	.sources .acts {
		width: 100%;
		justify-content: flex-end;
	}
}
