/*
 * Shared styles.
 *
 * Councillors will mostly use this on a phone, standing outside whatever they
 * just filmed, so touch targets are generous and nothing depends on hover.
 */

:root {
  --bg: #eef1f5;
  --surface: #ffffff;
  --surface-sunk: #f4f6f9;
  --ink: #11151b;
  --ink-soft: #38414e;
  --muted: #626d7d;
  --rule: #d8dee7;
  --rule-strong: #bcc5d2;
  --accent: #10357f;
  --accent-hover: #0b2760;
  --accent-soft: #e6ecf8;
  --accent-ink: #10357f;
  --warn: #9a4a06;
  --warn-soft: #fdf0e2;
  --warn-rule: #f0cfa8;
  --bad: #a52318;
  --bad-soft: #fdecea;
  --bad-rule: #f2c3bd;
  --good: #0d6b39;
  --good-soft: #e4f3ea;
  --good-rule: #b3ddc4;
  --shadow: 0 1px 2px rgba(17, 21, 27, 0.06), 0 10px 28px -16px rgba(17, 21, 27, 0.25);

  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: ui-monospace, "Cascadia Code", "Segoe UI Mono", Consolas, monospace;

  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0d1015;
    --surface: #161b22;
    --surface-sunk: #10151b;
    --ink: #e8ecf2;
    --ink-soft: #c3cbd6;
    --muted: #8d97a6;
    --rule: #262d38;
    --rule-strong: #3a4350;
    --accent: #7d9bf0;
    --accent-hover: #9db3f5;
    --accent-soft: #1a2540;
    --accent-ink: #a8bdf7;
    --warn: #f0a95e;
    --warn-soft: #2a1e12;
    --warn-rule: #4a361f;
    --bad: #f08c82;
    --bad-soft: #2c1614;
    --bad-rule: #532723;
    --good: #5fd394;
    --good-soft: #10251a;
    --good-rule: #1f4432;
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.5), 0 10px 28px -16px rgba(0, 0, 0, 0.8);

    color-scheme: dark;
  }
}

:root[data-theme="dark"] {
  --bg: #0d1015;
  --surface: #161b22;
  --surface-sunk: #10151b;
  --ink: #e8ecf2;
  --ink-soft: #c3cbd6;
  --muted: #8d97a6;
  --rule: #262d38;
  --rule-strong: #3a4350;
  --accent: #7d9bf0;
  --accent-hover: #9db3f5;
  --accent-soft: #1a2540;
  --accent-ink: #a8bdf7;
  --warn: #f0a95e;
  --warn-soft: #2a1e12;
  --warn-rule: #4a361f;
  --bad: #f08c82;
  --bad-soft: #2c1614;
  --bad-rule: #532723;
  --good: #5fd394;
  --good-soft: #10251a;
  --good-rule: #1f4432;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.5), 0 10px 28px -16px rgba(0, 0, 0, 0.8);

  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Colour only, so this cannot shift any layout on the form pages. */
a {
  color: var(--accent-ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--accent-hover);
}

.shell {
  max-width: 44rem;
  margin: 0 auto;
  padding: 0 1rem 5rem;
}

/* ------------------------------------------------------------------ header */

.masthead {
  border-bottom: 1px solid var(--rule);
  background: var(--surface);
}

.masthead-inner {
  max-width: 44rem;
  margin: 0 auto;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wordmark {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.wordmark span {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.who {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: right;
}

/* ------------------------------------------------------------- typography */

h1 {
  font-size: clamp(1.6rem, 4.5vw, 2.1rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0 0 0.6rem;
  text-wrap: balance;
}

/* Heading and intro above the first card. */
.page-head {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 2.25rem 0 1.5rem;
}

.page-head h1 {
  margin: 0;
}

h2 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
}

/*
 * No measure cap: the cards below run the full width of the shell, and a
 * narrower intro left a ragged column of short lines sitting above them.
 * Consistency with what follows beats the ideal line length here.
 */
.lede {
  font-size: 1rem;
  color: var(--ink-soft);
  margin: 0;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin: 0 0 0.5rem;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card > h2 + p {
  margin-top: -0.7rem;
}

.card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.hint {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

label.label,
.field > label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}

.req {
  color: var(--bad);
  font-weight: 400;
}

input[type="text"],
input[type="email"],
select,
textarea {
  font: inherit;
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--rule-strong);
  border-radius: 8px;
  background: var(--surface-sunk);
  color: var(--ink);
}

textarea {
  min-height: 8rem;
  resize: vertical;
  line-height: 1.55;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible,
.filedrop:focus-within {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

input[aria-invalid="true"],
textarea[aria-invalid="true"],
select[aria-invalid="true"] {
  border-color: var(--bad);
}

.field-error {
  font-size: 0.82rem;
  color: var(--bad);
  margin: 0;
}

/* ---------------------------------------------------------------- buttons */

button {
  font: inherit;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0.7rem 1.15rem;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  min-height: 2.75rem;
}

button:hover:not(:disabled) {
  background: var(--accent-hover);
}

button.secondary {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--rule-strong);
}

button.secondary:hover:not(:disabled) {
  background: var(--surface-sunk);
  border-color: var(--muted);
}

button.quiet {
  background: none;
  color: var(--muted);
  border-color: transparent;
  padding: 0.4rem 0.5rem;
  min-height: auto;
  font-weight: 500;
  font-size: 0.85rem;
}

button.quiet:hover:not(:disabled) {
  background: none;
  color: var(--bad);
  text-decoration: underline;
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ------------------------------------------------------------- choice grid */

.choices {
  display: grid;
  gap: 0.6rem;
}

.choice {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--rule-strong);
  border-radius: 9px;
  background: var(--surface-sunk);
  cursor: pointer;
}

.choice:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.choice input {
  margin: 0.2rem 0 0;
  accent-color: var(--accent);
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
}

.choice-text strong {
  display: block;
  font-size: 0.95rem;
}

.choice-text span {
  display: block;
  font-size: 0.83rem;
  color: var(--muted);
}

.choices.inline {
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
}

/* ------------------------------------------------------------------ files */

.filedrop {
  border: 1px dashed var(--rule-strong);
  border-radius: 9px;
  background: var(--surface-sunk);
  padding: 1rem;
  text-align: center;
}

.filedrop input[type="file"] {
  display: block;
  width: 100%;
  font: inherit;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.filelist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.filelist li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--surface-sunk);
  font-size: 0.87rem;
}

.filelist .name {
  flex: 1;
  min-width: 0;
  overflow-wrap: anywhere;
}

.filelist .size {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  font-size: 0.82rem;
}

.filelist li.bad {
  border-color: var(--bad-rule);
  background: var(--bad-soft);
  color: var(--bad);
}

/* ---------------------------------------------------------------- stories */

.story {
  border: 1px solid var(--rule-strong);
  border-radius: 10px;
  overflow: hidden;
}

.story-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.9rem;
  background: var(--surface-sunk);
  border-bottom: 1px solid var(--rule);
}

.story-head h3 {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.story-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ----------------------------------------------------------------- notice */

.notice {
  display: flex;
  gap: 0.7rem;
  padding: 0.8rem 0.95rem;
  border-radius: 9px;
  font-size: 0.9rem;
  border: 1px solid var(--rule);
  background: var(--surface-sunk);
  color: var(--ink-soft);
}

.notice.bad {
  background: var(--bad-soft);
  border-color: var(--bad-rule);
  color: var(--bad);
}

.notice.good {
  background: var(--good-soft);
  border-color: var(--good-rule);
  color: var(--good);
}

.notice.warn {
  background: var(--warn-soft);
  border-color: var(--warn-rule);
  color: var(--warn);
}

.notice strong {
  color: var(--ink);
}

.note-mark {
  flex: 0 0 auto;
  line-height: 1.55;
}

/* ---------------------------------------------------------------- example */

/*
 * The example lives inside the guidance note, so the picture and its caption
 * line up with the advice they illustrate rather than sitting in a second box
 * with its own margins and its own measure.
 */
.notice-body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 0;
}

.notice-body p {
  margin: 0;
}

.example {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.example img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  border: 1px solid var(--rule-strong);
  display: block;
}

/* Inherits the note's size, colour and measure, so both read as one block. */
.example figcaption strong {
  color: var(--ink);
}

/* --------------------------------------------------------------- progress */

.progress-file {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--rule);
}

.progress-file:last-child {
  border-bottom: none;
}

.progress-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.87rem;
}

.progress-top .state {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.bar {
  height: 7px;
  border-radius: 99px;
  background: var(--rule);
  overflow: hidden;
}

.bar > i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--accent);
  border-radius: 99px;
  transition: width 0.2s linear;
}

.progress-file.done .bar > i {
  background: var(--good);
}

.progress-file.failed .bar > i {
  background: var(--bad);
}

/*
 * Imprint.
 *
 * Legally required on political material, so it is plain HTML on every page
 * rather than injected by script, and it sits outside the app container so it
 * still renders while the page is loading or if the script fails.
 */
.imprint {
  max-width: 44rem;
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
  border-top: 1px solid var(--rule);
  font-size: 0.76rem;
  line-height: 1.5;
  color: var(--muted);
}

[hidden] {
  display: none !important;
}

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

/* -------------------------------------------------------------------- guide */

/*
 * /guide is the only page on the site with running text. Everything here is
 * scoped to .guide, because the forms have no prose and set their spacing with
 * flex gaps rather than margins -- a global `p { margin: 0 }` would quietly
 * shift every card on the submission form.
 */

/* Cards are flex columns with a 1rem gap, so paragraphs need no margins. */
.guide .card p {
  margin: 0;
}

/*
 * "submit.westminsterconservatives.org.uk" is a single 38-character token, and
 * on a narrow phone it is wider than the viewport -- without this the whole
 * page scrolls sideways, which on a guide is the first thing you notice.
 *
 * `anywhere` rather than `break-word`: both break a word only as a last
 * resort, but only `anywhere` reduces the element's min-content width, which
 * is what the steps grid measures its 1fr track against. With `break-word` the
 * track still sizes itself to the whole unbroken domain and the page overflows.
 */
.guide p,
.guide dt,
.guide dd,
.guide li {
  overflow-wrap: anywhere;
}

.guide .card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}

.guide code {
  font-family: var(--mono);
  font-size: 0.88em;
  background: var(--surface-sunk);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 0.06em 0.32em;
}

/*
 * Numbered because signing in genuinely is a sequence -- each step needs the
 * one before it. Nothing else on the page is numbered.
 */
.guide .steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.guide .steps > li {
  display: grid;
  grid-template-columns: 1.65rem 1fr;
  gap: 0.75rem;
  align-items: start;
}

.guide .steps .n {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.65rem;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

/* Label above, explanation below: the shape of every field list and answer. */
.guide .rows {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.guide .rows dt {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.1rem;
}

.guide .rows dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Ruled variant, for a set of alternatives that should read as one choice. */
.guide .rows.ruled {
  gap: 0;
}

.guide .rows.ruled > div {
  padding: 0.75rem 0;
  border-top: 1px solid var(--rule);
}

.guide .rows.ruled > div:first-child {
  border-top: none;
  padding-top: 0;
}

.guide .rows.ruled > div:last-child {
  padding-bottom: 0;
}

/*
 * accent-soft on accent-ink rather than the buttons' white-on-accent: those
 * two tokens are defined as a pair in both themes, so the link stays legible
 * when the accent lightens for dark mode.
 */
.guide .cta {
  align-self: flex-start;
  background: var(--accent-soft);
  color: var(--accent-ink);
  border: 1px solid var(--rule-strong);
  border-radius: 8px;
  padding: 0.7rem 1.15rem;
  font-weight: 600;
  text-decoration: none;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
}

.guide .cta:hover {
  border-color: var(--muted);
}

/* A quiet link back to the form, in the masthead's spare right-hand slot. */
.masthead-inner .backlink {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-ink);
  text-decoration: none;
  white-space: nowrap;
}

.masthead-inner .backlink:hover {
  text-decoration: underline;
}

/* Councillors may well print this and keep it in the car. */
@media print {
  .masthead,
  .guide .cta {
    display: none;
  }

  body {
    background: #fff;
    font-size: 10.5pt;
  }

  .guide.shell {
    max-width: none;
    padding: 0;
  }

  .guide .card {
    background: #fff;
    box-shadow: none;
    border-color: #999;
    break-inside: avoid;
    margin-bottom: 0.6rem;
  }

  .guide .example {
    break-inside: avoid;
  }
}

/* ==========================================================================
 * Consent form.
 *
 * Everything below is additions for this site. Nothing above has been changed,
 * so the two sites can keep sharing the stylesheet by copying it across.
 * ========================================================================== */

/*
 * The date input is not in the shared input selector above, because the
 * submission form has no dates. Without it, the date box renders at the
 * browser default size and sits noticeably smaller than every other field.
 */
input[type="date"] {
  font: inherit;
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--rule-strong);
  border-radius: 8px;
  background: var(--surface-sunk);
  color: var(--ink);
}

/*
 * A date is at most ten characters, and a full-width box invites people to
 * expect more of it than that.
 */
.date-field {
  max-width: 14rem;
}

/*
 * Running text inside a card.
 *
 * Cards are flex columns with a 1rem gap, so paragraphs set their own spacing
 * to nothing and let the gap do the work. Scoped to .card rather than global
 * for the same reason the guide scopes it: a bare `p { margin: 0 }` would
 * quietly reflow the hints and the imprint too.
 */
.card > p,
.card > ul,
.card > ol {
  margin: 0;
}

/* ---------------------------------------------------------- fieldsets */

/*
 * A fieldset is the right element for a radio group -- it is what gives the
 * group an accessible name via its legend -- but it arrives with a border, its
 * own padding and a legend that sits inside that border. Stripped back to
 * behave exactly like .field.
 */
.field.bare {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.field.bare > legend.label {
  padding: 0;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}

/* ---------------------------------------------------------- statements */

/*
 * What the person is agreeing to.
 *
 * Set as a list rather than as paragraphs: these are seven separate
 * undertakings, and a wall of prose is what people skip. The marker is a rule
 * down the left instead of a bullet, which keeps the block reading as one
 * quoted declaration rather than as seven unrelated points.
 */
.statements {
  list-style: none;
  margin: 0;
  padding: 0 0 0 1rem;
  border-left: 3px solid var(--accent-soft);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.statements li {
  overflow-wrap: anywhere;
}

/* ------------------------------------------------------------- choices */

/*
 * The consent tick itself, given more weight than the other choices.
 *
 * It is the only control on the page that legally matters, so it does not look
 * like the optional checkbox sitting under it.
 */
.choice.consent {
  border-width: 2px;
  padding: 1rem;
}

.choice.consent:has(input:checked) {
  border-color: var(--good);
  background: var(--good-soft);
}

.choice.consent .choice-text strong {
  font-size: 1rem;
}

/* Quieter, because it is genuinely optional and should not read as required. */
.choice.optional {
  background: var(--surface);
  border-style: dashed;
}

.choice.optional:has(input:checked) {
  border-style: solid;
}

/* --------------------------------------------------------------- names */

/*
 * First and last name side by side on anything wider than a small phone.
 * auto-fit rather than a media query, so it collapses on the basis of the
 * space actually available -- which inside a card is not the viewport width.
 */
.two-up {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
}

/* ----------------------------------------------------------- signature */

.padwrap {
  position: relative;
  border: 1px solid var(--rule-strong);
  border-radius: 9px;
  background: var(--surface-sunk);
  overflow: hidden;
}

/*
 * touch-action: none is what stops a signature drawn with a finger scrolling
 * the page instead. block display removes the inline-element baseline gap that
 * otherwise leaves a few stray pixels under the canvas.
 */
#pad {
  display: block;
  width: 100%;
  height: 180px;
  touch-action: none;
  cursor: crosshair;
}

/* The line people expect to sign on, so the box reads as a signature box. */
.padline {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 2.75rem;
  border-bottom: 1px dashed var(--rule-strong);
  pointer-events: none;
}

.padactions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.4rem;
}

/*
 * The typed signature.
 *
 * Larger and in a script-adjacent stack, so a typed name still reads as a
 * signature rather than as one more text field. Cursive is a genuine fallback
 * here: every platform has something for it.
 */
.typed-signature {
  font-family: "Segoe Script", "Bradley Hand", "Brush Script MT", cursive;
  font-size: 1.5rem;
  padding: 0.9rem 0.8rem;
  text-align: center;
}

/* ------------------------------------------------------------ utilities */

/*
 * Available to a screen reader, invisible on screen.
 *
 * Not display:none, which removes it from the accessibility tree as well, and
 * not width/height 0, which some screen readers skip. This is the clip-path
 * version, which keeps the element focusable -- needed for the honeypot to
 * behave like a real field to anything inspecting the form.
 */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* The confirmation card takes focus on submit; it is not an interactive one. */
#done:focus {
  outline: none;
}

/* ---------------------------------------------------------------- print */

/*
 * Someone will want a paper copy in a folder, and someone else will hand this
 * form to a resident who would rather sign on paper. Both work: the statements
 * and the signature box print, the buttons and the spam trap do not.
 */
@media print {
  .masthead,
  .actions,
  .padactions,
  .visually-hidden,
  #banner,
  #done {
    display: none !important;
  }

  body {
    background: #fff;
    font-size: 10.5pt;
  }

  .shell {
    max-width: none;
    padding: 0;
  }

  .card {
    background: #fff;
    box-shadow: none;
    border-color: #999;
    break-inside: avoid;
    margin-bottom: 0.6rem;
  }

  .padwrap {
    background: #fff;
    break-inside: avoid;
  }

  /* Hidden cards are hidden because they do not apply; a blank paper form
     needs both, so the conditional blocks are forced visible when printing. */
  #about-card[hidden],
  #guardian-card[hidden] {
    display: flex !important;
  }
}
