/**
 * eTermin Booking — widget styles.
 *
 * EVERY selector is scoped under `#etb-widget`, and that is load-bearing rather than tidy.
 *
 * This runs inside somebody else's theme. On the first real deployment the page was built with
 * Elementor, whose kit stylesheet carries `.elementor-kit-6 button { color: … }` — specificity
 * (0,1,1). The widget's own `.etb-opt` was (0,1,0), so the theme won: every button inherited the
 * theme's white button text and the service names rendered white on near-white, at a measured
 * contrast ratio of **1.03**. Twelve properties were being won by the theme on the first step
 * alone. An id selector is (1,0,0) and settles all of them without a single `!important`.
 *
 * Two rules follow, for anyone editing this file:
 *   1. Never add a bare `.etb-…` selector. It will lose to some theme eventually.
 *   2. Never rely on inheritance for colour, background, font or border on a control. State it.
 *      A theme that styles `button` reaches anything that does not.
 *
 * The fallback card carries the same id for the same reason — without it it renders unstyled.
 */

#etb-widget {
	--etb-brand: #1B5A8C;
	/* Hover/active accent. Defaults to the brand colour, so a practice that never sets it sees
	   exactly what it saw before. */
	--etb-hover: var(--etb-brand);
	--etb-brand-soft: #E7F0F7;
	--etb-ink: #1E2A2E;
	--etb-soft: #5D6C73;   /* AA on white (5.44), --etb-tint (5.10) and --etb-brand-soft (4.72) */
	--etb-line: #E2E7EA;
	--etb-bg: #FFFFFF;
	--etb-tint: #F5F8FA;

	/* Row metrics live here so the slot box, the loading placeholder and the skeleton can all
	   reserve the SAME height — three different guesses is what made the calendar jump twice. */
	--etb-row: 2.375rem;
	--etb-gap: 6px;
	--etb-slotbox: calc(var(--etb-row) * 3 + var(--etb-gap) * 2);
	--etb-chev: 23px;      /* the "more times" row, incl. its gap */
	--etb-dayhead: 60px;   /* weekday + number + month, incl. its gap */

	position: relative;
	/**
	 * A DEFINITE width, capped by the container. Both halves matter.
	 *
	 * `width: 100%` was not enough. A page builder that wraps the shortcode in a shrink-to-fit
	 * box — an inline-block, a flex item, a grid cell with `auto` — sizes that box to its
	 * contents, and `100%` then resolves against a number the content just produced. Measured on
	 * staging: the widget went 401px on the service step, 313px on the gate, 324px on the
	 * practitioner step. It changed width as the visitor walked through it.
	 *
	 * A definite width gives the shrink-to-fit parent something to size to, so every step is the
	 * same width. `max-width: 100%` keeps the container the ceiling — on a 415px Elementor column
	 * a 520px setting simply becomes 415px, and on a 320px phone it becomes 320px.
	 *
	 * Note for `%`: a percentage width against a shrink-to-fit parent is indeterminate and the
	 * browser falls back to the content width, so `%` only does what it says inside a container
	 * that has a width of its own. The admin hint says so.
	 */
	width: var(--etb-w, 520px);
	max-width: 100%;
	margin: 0 auto;
	background: var(--etb-bg);
	color: var(--etb-ink);
	border: 1px solid var(--etb-line);
	border-radius: 14px;
	overflow: hidden;
	font-family: inherit;
	font-size: 16px;
	line-height: 1.55;
	box-shadow: 0 1px 2px rgba(20, 40, 55, .05), 0 18px 40px -22px rgba(20, 40, 55, .4);
	box-sizing: border-box;
}

#etb-widget *,
#etb-widget *::before,
#etb-widget *::after { box-sizing: border-box; }

/**
 * Take back the tags themes actually meddle with.
 *
 * Eighteen rules in this file style text without naming a colour, because they were written to
 * inherit from the widget root. That is fine until a theme targets the *tag*: `.some-kit h3`
 * beats nothing at all, and the heading turns beige — measured at 2.28:1 on the first live
 * deployment, after the button fix had already landed.
 *
 * `color: inherit` sends them back up to `#etb-widget`, which sets the ink. Specificity here is
 * (1,0,1), so it beats a theme's `.kit h3` (0,1,1) while still losing to this file's own
 * `#etb-widget .etb-sub` (1,1,0) — the greys and accents below are unaffected.
 *
 * `text-transform` and `text-decoration` are here for the same reason: uppercase buttons and
 * underlined headings are the two most common things a theme does to somebody else's markup.
 */
#etb-widget h1, #etb-widget h2, #etb-widget h3, #etb-widget h4, #etb-widget h5, #etb-widget h6,
#etb-widget p, #etb-widget b, #etb-widget strong, #etb-widget em, #etb-widget i,
#etb-widget span, #etb-widget small, #etb-widget label,
#etb-widget ul, #etb-widget ol, #etb-widget li, #etb-widget button {
	color: inherit;
	text-transform: none;
	text-decoration: none;
	letter-spacing: normal;
}

#etb-widget .etb-sr {
	position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0;
}

#etb-widget .etb-confetti { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 5; }

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

#etb-widget .etb-head { display: flex; align-items: center; gap: 11px; padding: 15px 18px 13px; }
#etb-widget .etb-logo {
	width: 34px; height: 34px; border-radius: 8px; background: var(--etb-brand); color: #fff;
	flex: none; display: grid; place-items: center; font-weight: 700; font-size: .86rem; overflow: hidden;
}
#etb-widget .etb-logo img { width: 100%; height: 100%; object-fit: cover; }
#etb-widget .etb-org { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
#etb-widget .etb-org b { font-size: .9rem; font-weight: 650; line-height: 1.25; }
#etb-widget .etb-org span { font-size: .74rem; color: var(--etb-soft); }

#etb-widget .etb-bar { height: 3px; background: var(--etb-line); position: relative; overflow: hidden; }
#etb-widget .etb-bar i { position: absolute; inset: 0 auto 0 0; background: var(--etb-brand); transition: width .34s cubic-bezier(.4, 0, .2, 1); }

#etb-widget .etb-body { padding: 20px 18px 22px; position: relative; z-index: 2; }
#etb-widget .etb-foot {
	display: flex; align-items: center; justify-content: center; padding: 11px 18px 14px;
	border-top: 1px solid var(--etb-line); font-size: .725rem; color: var(--etb-soft);
	background: var(--etb-tint); position: relative; z-index: 2;
}

#etb-widget .etb-step { animation: etb-in .26s cubic-bezier(.4, 0, .2, 1); }
@keyframes etb-in { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: none; } }

#etb-widget .etb-q { font-size: 1.06rem; font-weight: 650; letter-spacing: -.01em; margin: 0 0 3px; line-height: 1.3; }
#etb-widget .etb-q:focus { outline: none; }
#etb-widget .etb-q:focus-visible { outline: 2px solid var(--etb-brand); outline-offset: 3px; border-radius: 4px; }
#etb-widget .etb-sub { font-size: .82rem; color: var(--etb-soft); margin: 0 0 15px; }

/* ---------------------------------------------------------------- options */

#etb-widget .etb-opts { display: flex; flex-direction: column; gap: 8px; }
#etb-widget .etb-opt {
	display: flex; align-items: center; gap: 12px; width: 100%; text-align: left; cursor: pointer;
	background: var(--etb-bg); border: 1px solid var(--etb-line); border-radius: 10px;
	padding: 13px 14px; font: inherit; color: var(--etb-ink); transition: border-color .14s, background .14s;
}
#etb-widget .etb-opt:hover { border-color: var(--etb-hover); background: var(--etb-tint); }
#etb-widget .etb-opt:focus-visible { outline: 2px solid var(--etb-brand); outline-offset: 2px; }
#etb-widget .etb-opt[aria-checked="true"] { border-color: var(--etb-brand); background: var(--etb-brand-soft); }
#etb-widget .etb-t { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
#etb-widget .etb-t b { font-size: .9rem; font-weight: 620; line-height: 1.3; }
#etb-widget .etb-t span { font-size: .765rem; color: var(--etb-soft); line-height: 1.4; }
#etb-widget .etb-meta { font-size: .75rem; color: var(--etb-soft); white-space: nowrap; text-align: right; font-variant-numeric: tabular-nums; }
#etb-widget .etb-av {
	width: 36px; height: 36px; border-radius: 50%; flex: none; display: grid; place-items: center;
	background: var(--etb-brand-soft); color: var(--etb-brand); font-size: .74rem; font-weight: 700; overflow: hidden;
}
#etb-widget .etb-av img { width: 100%; height: 100%; object-fit: cover; }
#etb-widget .etb-any { background: var(--etb-tint); color: var(--etb-soft); }

#etb-widget .etb-costs { font-size: .745rem; color: var(--etb-soft); line-height: 1.45; margin: 12px 0 0; padding: 9px 11px; background: var(--etb-tint); border-radius: 8px; }

/* Same component as .etb-wlbanner — identical padding, radius, size and icon treatment — so the
   gap and the bottom margin are the same two numbers in both places rather than four. */
#etb-widget .etb-prereq {
	display: flex; gap: 9px; align-items: flex-start; margin: 0 0 12px; padding: 11px 13px;
	border-radius: 9px; background: #FDF4E7; border: 1px solid #E8CFA3; color: #7A5417;
	font-size: .79rem; line-height: 1.5;
}
#etb-widget .etb-prereq svg { flex: none; margin-top: 2px; }

/* ---------------------------------------------------------------- recap */

#etb-widget .etb-recap { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
#etb-widget .etb-back {
	width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--etb-line);
	background: var(--etb-bg); display: grid; place-items: center; cursor: pointer;
	color: var(--etb-soft); flex: none; padding: 0;
}
#etb-widget .etb-back:hover { border-color: var(--etb-hover); color: var(--etb-hover); }
#etb-widget .etb-back:focus-visible { outline: 2px solid var(--etb-brand); outline-offset: 2px; }
#etb-widget .etb-pill {
	background: var(--etb-tint); border: 1px solid var(--etb-line); border-radius: 100px;
	padding: 4px 11px; font-size: .755rem; color: var(--etb-ink); font-weight: 550;
}

/* ---------------------------------------------------------------- calendar */

#etb-widget .etb-jump {
	display: flex; align-items: center; gap: 9px; padding: 10px 12px; border-radius: 9px;
	background: var(--etb-brand-soft); color: var(--etb-brand); font-size: .81rem; font-weight: 600; margin-bottom: 11px;
}
#etb-widget .etb-jumpbtn { font: inherit; font-size: .81rem; font-weight: 600; cursor: pointer; border: 0; background: none; color: inherit; text-decoration: underline; text-underline-offset: 2px; padding: 0; }
#etb-widget .etb-jumpbtn:focus-visible { outline: 2px solid currentColor; outline-offset: 2px; border-radius: 4px; }

#etb-widget .etb-presets { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; margin-bottom: 11px; }
#etb-widget .etb-preset {
	font: inherit; font-size: .735rem; padding: 5px 11px; border-radius: 100px;
	border: 1px solid var(--etb-line); background: var(--etb-bg); color: var(--etb-soft);
	cursor: pointer; white-space: nowrap;
}
#etb-widget .etb-preset:hover { border-color: var(--etb-hover); color: var(--etb-hover); }
#etb-widget .etb-preset:focus-visible { outline: 2px solid var(--etb-brand); outline-offset: 2px; }
#etb-widget .etb-lead { border-color: var(--etb-brand); color: var(--etb-brand); background: var(--etb-brand-soft); font-weight: 600; }

#etb-widget .etb-wlbanner {
	display: flex; gap: 9px; align-items: flex-start; padding: 11px 13px; border-radius: 9px;
	background: var(--etb-brand-soft); color: var(--etb-brand); font-size: .79rem; line-height: 1.5; margin-bottom: 12px;
}
#etb-widget .etb-wlbanner svg { flex: none; margin-top: 2px; }

#etb-widget .etb-nav { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 9px; }
#etb-widget .etb-nav b { font-size: .78rem; font-weight: 620; }
#etb-widget .etb-navbtn {
	width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--etb-line);
	background: var(--etb-bg); display: grid; place-items: center; cursor: pointer;
	color: var(--etb-soft); padding: 0; flex: none;
}
#etb-widget .etb-navbtn:hover:not(:disabled) { border-color: var(--etb-hover); color: var(--etb-hover); }
#etb-widget .etb-navbtn:disabled { opacity: .35; cursor: not-allowed; }
#etb-widget .etb-navbtn:focus-visible { outline: 2px solid var(--etb-brand); outline-offset: 2px; }

#etb-widget .etb-cal { display: grid; grid-template-columns: repeat(var(--etb-cols, 3), 1fr); gap: 8px; align-items: start; }
#etb-widget .etb-day { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
#etb-widget .etb-dh { text-align: center; padding-bottom: 3px; }
#etb-widget .etb-dh .wd { font-size: .68rem; color: var(--etb-soft); text-transform: uppercase; letter-spacing: .08em; display: block; }
#etb-widget .etb-dh .dm { font-size: .94rem; font-weight: 650; display: block; line-height: 1.2; font-variant-numeric: tabular-nums; }
#etb-widget .etb-dh .mo { font-size: .65rem; color: var(--etb-soft); display: block; }

/**
 * Three times, then scroll.
 *
 * The height is derived from the row height and the gap rather than typed as a magic number, so
 * changing the slot padding cannot silently start showing three-and-a-half rows.
 * `overscroll-behavior` keeps a flick inside the column instead of scrolling the whole page.
 */
#etb-widget .etb-slots {
	display: flex;
	flex-direction: column;
	gap: var(--etb-gap);
	max-height: var(--etb-slotbox);
	overflow-y: auto;
	overscroll-behavior: contain;
	scrollbar-width: thin;
	/* Deliberately NOT scroll-behavior:smooth — some engines accept the property but never run
	   the animation, which swallows the scroll entirely and leaves the chevron doing nothing. */
}
#etb-widget .etb-slots::-webkit-scrollbar { width: 4px; }
#etb-widget .etb-slots::-webkit-scrollbar-thumb { background: var(--etb-line); border-radius: 4px; }
#etb-widget .etb-slots:focus-visible { outline: 2px solid var(--etb-brand); outline-offset: 2px; border-radius: 7px; }

/* In flow, not absolute: floating it over the column used to overlap the third time. */
#etb-widget .etb-more-times {
	align-self: center;
	border: 0;
	background: none;
	padding: 2px;
	margin: -2px 0 0;
	color: var(--etb-soft);
	cursor: pointer;
	line-height: 0;
	-webkit-appearance: none;
	appearance: none;
}
#etb-widget .etb-more-times:hover { color: var(--etb-hover); }
#etb-widget .etb-more-times:focus-visible { outline: 2px solid var(--etb-brand); outline-offset: 2px; border-radius: 4px; }

#etb-widget .etb-slot {
	padding: 8px 2px; border: 1px solid var(--etb-line); border-radius: 7px; background: var(--etb-bg);
	font: inherit; color: inherit; font-size: .795rem; cursor: pointer;
	/* Pinned so three rows are exactly the height .etb-slots reserves for them. */
	min-height: 2.375rem; box-sizing: border-box; flex: none;
	font-variant-numeric: tabular-nums; transition: border-color .14s, background .14s;
}
#etb-widget .etb-slot:hover { border-color: var(--etb-hover); background: var(--etb-tint); }
#etb-widget .etb-slot:focus-visible { outline: 2px solid var(--etb-brand); outline-offset: 2px; }

#etb-widget .etb-wl {
	border: 1px dashed rgba(102, 117, 124, .55); background: var(--etb-tint); border-radius: 7px;
	padding: 9px 4px; color: var(--etb-soft); text-align: center; line-height: 1.35;
	cursor: pointer; font: inherit; font-size: .7rem;
}
#etb-widget .etb-wl:hover { border-color: var(--etb-hover); color: var(--etb-hover); }
#etb-widget .etb-wl:focus-visible { outline: 2px solid var(--etb-brand); outline-offset: 2px; }
#etb-widget .etb-wl b { display: block; font-size: .71rem; font-weight: 650; }
#etb-widget .etb-strong { border-style: solid; border-color: var(--etb-brand); background: var(--etb-brand-soft); color: var(--etb-brand); }

#etb-widget .etb-loading { display: block; height: calc(var(--etb-slotbox) + var(--etb-chev)); border-radius: 7px; background: var(--etb-tint); animation: etb-pulse 1.1s ease-in-out infinite; }
#etb-widget .etb-none { text-align: center; font-size: .78rem; color: var(--etb-soft); padding: 14px 0; }

/**
 * The emergency line, which is the one thing here that has to stay readable at any width.
 *
 * `nowrap` on the number is what makes it break cleanly on a phone: the label keeps the first
 * line and the whole number moves to the second, instead of splitting into "+43" / "732 000000".
 * A `<br>` in the `acute_txt` override puts the break somewhere specific; this is what happens
 * when nobody sets one.
 */
#etb-widget .etb-acute { display: flex; align-items: center; gap: 8px; justify-content: center; margin: 14px 0 0; font-size: .775rem; color: var(--etb-soft); }
#etb-widget .etb-acute svg { flex: none; }
#etb-widget .etb-acute span { text-align: center; }
#etb-widget .etb-acute a { color: var(--etb-brand); font-weight: 600; white-space: nowrap; }

/* ---------------------------------------------------------------- form */

#etb-widget .etb-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 11px; }
#etb-widget .etb-field label { font-size: .775rem; font-weight: 600; color: var(--etb-soft); }
/**
 * 16px, in px, unconditionally.
 *
 * iOS Safari zooms the viewport whenever a focused form control computes under 16px — and does
 * not zoom back on blur. At .9rem these were 14.4px, so tapping Vorname on the last step of the
 * funnel left the widget wider than the screen with "Termin verbindlich buchen" off-frame, and
 * every field after it needing a pinch. The admin screens were fixed for this; these were not.
 *
 * px rather than 1rem, because rem resolves against the html element, which a plugin does not
 * control — a theme with a 15px root would put us back under the threshold. Unconditional rather
 * than behind a media query, because Safari zooms at any width, landscape included.
 */
#etb-widget .etb-field input,
#etb-widget .etb-field select,
#etb-widget .etb-field textarea {
	font: inherit; font-size: 16px; padding: 10px 12px; border: 1px solid var(--etb-line);
	border-radius: 9px; background: var(--etb-tint); color: var(--etb-ink); width: 100%;
}
#etb-widget .etb-field input:focus,
#etb-widget .etb-field select:focus,
#etb-widget .etb-field textarea:focus {
	outline: none; border-color: var(--etb-brand); background: var(--etb-bg);
	box-shadow: 0 0 0 3px var(--etb-brand-soft);
}

/* honeypot: a real field for bots, clipped rather than offset so layout stays sane */
#etb-widget .etb-hp { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }

#etb-widget .etb-error { color: #8C3535; font-size: .8rem; margin: 0 0 10px; }

/**
 * The button never sits flush against what it follows.
 *
 * It had no margin at all, and on the gate step it is emitted directly after `.etb-opts` — so a
 * 100px-radius pill shared an edge with a 10px-radius option card, measured at 0.00px apart. The
 * other three emit sites follow a field or a paragraph and got 11px; margin collapsing takes the
 * larger of the two, so this is one value for all four rather than a rule per site.
 */
#etb-widget .etb-cta {
	display: block; width: 100%; margin-top: 16px; padding: 13px; border: 0; border-radius: 100px;
	background: var(--etb-brand); color: #fff; font: inherit; font-size: .93rem;
	font-weight: 650; cursor: pointer; text-align: center; text-decoration: none;
}
#etb-widget .etb-cta:hover { background: var(--etb-hover); filter: brightness(1.03); }
#etb-widget .etb-cta:disabled { opacity: .6; cursor: progress; }
#etb-widget .etb-cta:focus-visible { outline: 2px solid var(--etb-brand); outline-offset: 2px; }

#etb-widget .etb-skip {
	background: none; border: 0; -webkit-appearance: none; appearance: none; box-shadow: none;
	color: var(--etb-soft); font: inherit; font-size: .775rem; cursor: pointer;
	text-decoration: underline; text-underline-offset: 2px; padding: 8px 4px 0; display: block; margin: 0 auto;
}

/* ---------------------------------------------------------------- success */

#etb-widget .etb-done { text-align: center; padding: 12px 0 4px; }
#etb-widget .etb-check {
	width: 46px; height: 46px; border-radius: 50%; background: var(--etb-brand-soft);
	color: var(--etb-brand); display: grid; place-items: center; margin: 0 auto 13px;
}
#etb-widget .etb-sum {
	border: 1px solid var(--etb-line); border-radius: 10px; background: var(--etb-tint);
	padding: 13px 15px; text-align: left; display: flex; flex-direction: column; gap: 7px; margin-top: 15px;
}
#etb-widget .etb-sum div { display: flex; justify-content: space-between; gap: 14px; font-size: .815rem; }
#etb-widget .etb-sum span { color: var(--etb-soft); }
#etb-widget .etb-sum b { font-weight: 620; text-align: right; }

#etb-widget .etb-bring { border: 1px solid var(--etb-line); border-radius: 10px; padding: 13px 15px; margin-top: 14px; text-align: left; }
#etb-widget .etb-bring b { font-size: .83rem; font-weight: 640; display: block; margin-bottom: 6px; }
#etb-widget .etb-bring ul { margin: 0; padding-left: 18px; font-size: .785rem; color: var(--etb-soft); line-height: 1.6; }

#etb-widget .etb-more,
#etb-widget .etb-anam {
	border: 1px solid var(--etb-line); border-radius: 10px; padding: 14px 15px;
	margin-top: 14px; text-align: left; background: var(--etb-tint);
}
#etb-widget .etb-more b, #etb-widget .etb-anam b { font-size: .87rem; font-weight: 640; display: block; }
#etb-widget .etb-more p, #etb-widget .etb-anam p { font-size: .775rem; color: var(--etb-soft); line-height: 1.5; margin: 4px 0 11px; }
/**
 * Only .etb-anam b, never the shared rule above: `.etb-more b` also renders a Texte string, and
 * blockifying its `<br>` into a separate flex item would break the same line-break setting this
 * layout exists to protect.
 */
#etb-widget .etb-anam b { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
/* font-weight is not polish — inside the <b> the badge would otherwise inherit 640 and stop
   reading as a quiet micro-label. flex: none so a long title never squeezes it onto two lines. */
#etb-widget .etb-est { font-size: .7rem; font-weight: 400; color: var(--etb-soft); flex: none; }

/* ---------------------------------------------------------------- skeleton & fallback */

#etb-widget .etb-skeleton { display: grid; grid-template-columns: repeat(var(--etb-cols, 3), 1fr); gap: 8px; }
#etb-widget .etb-skeleton span { display: block; height: calc(var(--etb-slotbox) + var(--etb-chev) + var(--etb-dayhead)); border-radius: 8px; background: var(--etb-tint); animation: etb-pulse 1.1s ease-in-out infinite; }
@keyframes etb-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .55; } }

#etb-widget.etb-fallback { padding: 22px 20px; text-align: center; }
#etb-widget .etb-fallback-msg { font-size: .9rem; margin: 0 0 8px; }
#etb-widget .etb-fallback-phone { font-size: .85rem; color: var(--etb-soft); margin: 0; }
#etb-widget .etb-fallback-phone a { color: var(--etb-brand); font-weight: 650; }

@media (prefers-reduced-motion: reduce) {
	#etb-widget .etb-bar i { transition: none; }
	#etb-widget .etb-step { animation: none; }
	#etb-widget .etb-skeleton span, #etb-widget .etb-loading { animation: none; }
}

@media (max-width: 420px) {
	#etb-widget .etb-body { padding: 18px 14px 20px; }
	#etb-widget .etb-cal, #etb-widget .etb-skeleton { gap: 6px; }
}
