:root {
  --bg: #0c0b0a;
  --bg-2: #141210;
  --card: #1a1714;
  --line: rgba(244, 239, 230, 0.1);
  --text: #f4efe6;
  --muted: #9a9186;
  --accent: #ff8a1a;
  --accent-2: #ffc05c;
  --danger: #e25a4a;
  --sans: "Outfit", ui-sans-serif, system-ui, sans-serif;
  --serif: "Fraunces", Georgia, serif;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
}

@supports (padding: constant(safe-area-inset-top)) {
  :root {
    --safe-top: constant(safe-area-inset-top);
    --safe-right: constant(safe-area-inset-right);
    --safe-bottom: constant(safe-area-inset-bottom);
    --safe-left: constant(safe-area-inset-left);
  }
}

html.standalone {
  --safe-top: max(52px, env(safe-area-inset-top, 0px));
  --safe-bottom: max(28px, env(safe-area-inset-bottom, 0px));
}

html.safe-fallback {
  --safe-top: 52px;
  --safe-bottom: 28px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  height: 100dvh;
  background: var(--bg);
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

.login {
  min-height: 100%;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 28px 0 72px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
}

.orb-a {
  width: 420px;
  height: 420px;
  background: #c45a12;
  top: -120px;
  right: -80px;
}

.orb-b {
  width: 320px;
  height: 320px;
  background: #3a2418;
  bottom: -80px;
  left: -60px;
}

.login-card {
  position: relative;
  width: min(400px, calc(100% - 40px));
  padding: 40px 36px 32px;
  background: var(--card);
  border: 1px solid var(--line);
  overflow: visible;
}

.anon-stamp {
  position: absolute;
  top: 14px;
  right: 16px;
  margin: 0;
  color: var(--accent);
  font: 400 11px/1 var(--sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  z-index: 3;
}

.hey-logo {
  display: block;
  margin-bottom: 20px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.login-card h1 {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 560;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.lede,
.pin-hint,
.fine {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.lede {
  margin-bottom: 28px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
}

.field > span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.combo {
  position: relative;
}

.combo input,
.field > input,
.search,
.composer textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font: 500 16px/1.4 var(--sans);
  letter-spacing: 0.12em;
  padding: 10px 32px 10px 0;
  outline: none;
  border-radius: 0;
}

.combo input:focus,
.field > input:focus,
.search:focus,
.composer textarea:focus {
  border-bottom-color: var(--accent);
}

.login-card .field + .field {
  margin-top: 16px;
}

.field > input:disabled {
  opacity: 0.65;
}

.login-nick {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 560;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
}

#login-auth .field {
  margin-top: 0;
}

#login-auth .sign-in {
  margin-top: 22px;
}

.combo-btn {
  position: absolute;
  right: 0;
  top: 8px;
  border: 0;
  background: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
}

.pin-hint {
  margin: 10px 0 16px;
  letter-spacing: 0;
  text-transform: none;
}

.pin-hint strong {
  color: var(--text);
  font-weight: 600;
}

.pin-error {
  color: var(--danger);
  font-size: 13px;
  margin: -8px 0 12px;
}

.status-row {
  position: relative;
  margin-bottom: 18px;
}

.status-toggle {
  border: 0;
  background: none;
  color: var(--text);
  font: 500 14px var(--sans);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
}

.status-toggle.slim {
  color: var(--muted);
  font-size: 12px;
}

.chevron {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}

.check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}

.check input {
  accent-color: var(--accent);
}

.text-btn {
  border: 0;
  background: none;
  color: var(--accent);
  font: 500 13px var(--sans);
  cursor: pointer;
  margin-left: auto;
}

.sign-in,
.send {
  border: 0;
  background: var(--accent);
  color: #1a0e04;
  font: 600 15px var(--sans);
  cursor: pointer;
}

.sign-in {
  width: 100%;
  height: 48px;
  margin-top: 22px;
}

.sign-in:active,
.send:active {
  filter: brightness(0.95);
}

.sign-in:disabled {
  opacity: 0.45;
  cursor: default;
}

.fine,
.fine-link {
  text-align: center;
  margin-top: 16px;
  font-size: 12px;
}

.fine-link {
  display: block;
  width: 100%;
  border: 0;
  background: none;
  color: var(--accent);
  font: 500 13px var(--sans);
  cursor: pointer;
}

.fine-link:hover {
  color: var(--accent-2);
}

.fine-link[hidden] {
  display: none;
}

.install-hint {
  margin: 8px 20px 0;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

.install-hint[hidden] {
  display: none;
}

#login-pin {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}

.assigned {
  margin: 0 0 22px;
  padding: 0 0 8px;
}

.assigned span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.assigned strong {
  display: block;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 560;
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.assigned p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  margin-top: 10px;
}

.assigned em {
  font-style: normal;
  color: var(--text);
}

.menu {
  position: absolute;
  z-index: 4;
  left: 0;
  top: calc(100% + 6px);
  min-width: 180px;
  list-style: none;
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 6px;
}

.combo-menu {
  right: 0;
}

.menu button {
  width: 100%;
  border: 0;
  background: none;
  color: var(--text);
  text-align: left;
  padding: 8px 10px;
  font: 500 13px var(--sans);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu button:hover,
.menu button.active {
  background: rgba(255, 138, 26, 0.12);
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8a8a8a;
}

.dot.on {
  background: #5dba6a;
}
.dot.busy {
  background: #e25a4a;
}
.dot.away {
  background: #e0a24a;
}
.dot.off {
  background: #6a6560;
}

.app {
  height: 100%;
  min-height: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
}

.roster {
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  border-right: 1px solid var(--line);
  min-width: 0;
}

.roster-head {
  padding: 24px 20px 16px;
  border-bottom: 1px solid var(--line);
}

.me {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
  position: relative;
}

.me-mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  position: relative;
  background: none;
  flex-shrink: 0;
  overflow: visible;
}

.me-mark svg {
  width: 56px;
  height: 56px;
  display: block;
}

.me-mark::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid var(--bg-2);
  background: #5dba6a;
}

.me-mark[data-status="away"]::after {
  background: #e0a24a;
}

.me-mark[data-status="offline"]::after {
  background: #6a6560;
}

.me .my-pin {
  display: block;
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.08em;
}

.net-state {
  margin-top: 4px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.net-state[data-ok="1"] {
  color: #5dba6a;
}

.roster-head .my-nick {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: 0.01em;
  word-break: break-word;
  text-align: left;
}

.roster-head .my-nick[hidden] {
  display: none;
}

.add-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 0 20px 12px;
  min-width: 0;
}

.add-row input,
.add-row button {
  min-width: 0;
  max-width: 100%;
  height: 36px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font: 500 12px var(--sans);
  padding: 0 8px;
}

.add-row button {
  background: var(--accent);
  color: #1a0e04;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  padding: 0 14px;
}

.search {
  width: auto;
  display: block;
  margin: 12px 20px;
  letter-spacing: 0;
  font-size: 14px;
}

.contact-list {
  flex: 1;
  overflow: auto;
  padding: 4px 8px 16px;
}

.group-head {
  width: 100%;
  border: 0;
  background: none;
  color: var(--muted);
  font: 500 11px var(--sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: left;
  padding: 14px 12px 6px;
  cursor: pointer;
}

.contact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  cursor: pointer;
}

.contact:hover,
.contact.active {
  background: rgba(255, 138, 26, 0.08);
}

.avatar-dot {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: grid;
  place-items: center;
  position: relative;
  background: #2a241f;
  color: var(--accent-2);
  font: 600 14px var(--serif);
}

.presence {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--bg-2);
  background: #6a6560;
}

.presence.on {
  background: #5dba6a;
}

.presence.away {
  background: #e0a24a;
}

.presence.off {
  background: #6a6560;
}

.contact .meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact .name {
  font-size: 14px;
  font-weight: 600;
}

.contact .msg {
  font-size: 12px;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact .unread {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--accent);
  color: #1a1008;
  font: 700 11px var(--sans);
  display: grid;
  place-items: center;
}

.contact.blocked {
  opacity: 0.62;
}

.nudge {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  display: grid;
  place-items: center;
  border-radius: 8px;
}

.nudge svg {
  width: 18px;
  height: 18px;
}

.nudge:hover,
.nudge.is-busy {
  background: rgba(255, 138, 26, 0.12);
  color: var(--accent-2);
}

@keyframes hey-shake {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  12% {
    transform: translate3d(-9px, 1px, 0) rotate(-1deg);
  }
  24% {
    transform: translate3d(9px, -1px, 0) rotate(1deg);
  }
  36% {
    transform: translate3d(-7px, 1px, 0);
  }
  48% {
    transform: translate3d(7px, -1px, 0);
  }
  60% {
    transform: translate3d(-4px, 0, 0);
  }
  72% {
    transform: translate3d(4px, 0, 0);
  }
  84% {
    transform: translate3d(-2px, 0, 0);
  }
}

.is-shaking {
  animation: hey-shake 0.7s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

.kebab {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border: 0;
  padding: 0;
  margin-left: 2px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  display: grid;
  place-items: center;
  border-radius: 8px;
}

.kebab:hover,
.kebab[aria-expanded="true"] {
  background: rgba(255, 138, 26, 0.12);
  color: var(--text);
}

.kebab-dots {
  display: flex;
  flex-direction: column;
  gap: 3px;
  pointer-events: none;
}

.kebab-dots i {
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

.thread-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
}

.contact-menu {
  z-index: 45;
}

.contact-menu [data-act="delete"] {
  color: var(--danger);
}

.blocked-note {
  margin: 0 18px 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  border-radius: 12px;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: calc(24px + var(--safe-top)) max(24px, var(--safe-right)) calc(24px + var(--safe-bottom))
    max(24px, var(--safe-left));
  background: rgba(8, 6, 5, 0.72);
}

.overlay[hidden] {
  display: none;
}

.overlay-card {
  width: min(380px, 100%);
  padding: 28px 24px 22px;
  background: var(--card);
  border: 1px solid var(--line);
}

.overlay-card h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 560;
  margin: 4px 0 18px;
}

.info-grid {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
}

.info-grid div {
  display: grid;
  gap: 3px;
}

.info-grid dt {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-grid dd {
  font-size: 15px;
  word-break: break-all;
}

.hey-toast {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 40;
  max-width: min(360px, calc(100vw - 28px));
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border: 0;
  border-radius: 16px;
  background: #1c1713;
  color: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  text-align: left;
  cursor: pointer;
}

.hey-toast[hidden] {
  display: none;
}

.hey-toast strong {
  font: 600 14px var(--sans);
  color: var(--accent-2);
}

.hey-toast span {
  font-size: 13px;
  color: #d7cdc4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notify-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  padding: calc(12px + var(--safe-top)) max(18px, var(--safe-right)) 12px max(18px, var(--safe-left));
  background: #2a1b10;
  border-bottom: 1px solid rgba(255, 138, 26, 0.35);
  color: var(--text);
}

.notify-banner[hidden] {
  display: none;
}

.notify-banner p {
  flex: 1 1 220px;
  margin: 0;
  color: #f4efe6;
  font-size: 13px;
  line-height: 1.45;
}

.notify-banner a {
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  word-break: break-all;
}

.notify-banner a:hover {
  text-decoration: underline;
}

body.has-notify-banner .login {
  padding-top: calc(92px + var(--safe-top));
}

body.has-notify-banner .app {
  padding-top: calc(58px + var(--safe-top));
}

.sign-out {
  margin: 8px 20px 20px;
  border: 1px solid var(--line);
  background: none;
  color: var(--muted);
  height: 40px;
  font: 500 13px var(--sans);
  cursor: pointer;
}

.install-app {
  margin: 8px 20px 0;
  border: 1px solid var(--accent);
  background: none;
  color: var(--accent);
  height: 40px;
  font: 600 13px var(--sans);
  cursor: pointer;
}

.install-app[hidden] {
  display: none;
}

.thread {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  padding: 16px 16px 16px 18px;
  background: var(--bg);
}

.empty {
  flex: 1;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 22px;
}

.thread-live {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  overflow: hidden;
  margin-left: 10px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.thread-live::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 26px;
  width: 14px;
  height: 14px;
  background: var(--card);
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transform: rotate(45deg);
}

.thread-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px 14px;
  border-bottom: 1px solid var(--line);
  flex: 0 0 auto;
}

.thread-head > div {
  min-width: 0;
}

.thread-head strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 560;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.thread-head p {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.transcript {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bubble {
  max-width: 72%;
  padding: 10px 14px;
  background: #221e1a;
  font-size: 14px;
  line-height: 1.45;
  align-self: flex-start;
  border-radius: 18px 18px 18px 4px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.bubble.mine {
  align-self: flex-end;
  background: var(--accent);
  color: #1a0e04;
  border-radius: 18px 18px 4px 18px;
}

.bubble .who {
  display: block;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 4px;
}

.last-line {
  padding: 0 22px 8px;
  color: var(--muted);
  font-size: 11px;
}

.composer {
  display: flex;
  gap: 12px;
  padding: 12px 16px 14px;
  align-items: flex-end;
  border-top: 1px solid var(--line);
  flex: 0 0 auto;
  min-width: 0;
}

.composer textarea {
  letter-spacing: 0;
  resize: none;
  min-height: 44px;
  padding: 10px 0;
}

.send {
  height: 44px;
  padding: 0 18px;
  flex: 0 0 auto;
}

@media (max-width: 800px) {
  html,
  body {
    height: 100dvh;
    overflow: hidden;
  }

  .login {
    height: 100dvh;
    min-height: 0;
    place-items: center;
    padding: calc(12px + var(--safe-top)) max(12px, var(--safe-right)) calc(16px + var(--safe-bottom))
      max(12px, var(--safe-left));
    overflow-x: hidden;
    overflow-y: auto;
  }

  .login-card {
    width: min(400px, 100%);
    margin: 0;
    padding: 20px 18px 16px;
  }

  .anon-stamp {
    top: 10px;
    right: 12px;
    font-size: 10px;
  }

  .hey-logo {
    width: 52px;
    height: 52px;
    margin-bottom: 8px;
  }

  .login-card h1 {
    font-size: 28px;
  }

  .lede {
    margin-bottom: 14px;
    font-size: 13px;
  }

  .pin-hint {
    margin: 8px 0 10px;
    font-size: 12px;
  }

  .status-row {
    margin-bottom: 10px;
  }

  .check {
    display: none;
  }

  .sign-in {
    height: 44px;
    margin-top: 14px;
  }

  .fine-link {
    margin-top: 10px;
  }

  .assigned {
    margin: 14px 0 4px;
    padding-top: 12px;
  }

  .assigned strong {
    font-size: 24px;
  }

  .app {
    height: 100dvh;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .roster,
  .thread {
    min-height: 0;
    height: 100%;
    max-height: 100%;
    overflow: hidden;
  }

  .thread {
    padding: calc(6px + var(--safe-top)) max(8px, var(--safe-right)) calc(6px + var(--safe-bottom))
      max(8px, var(--safe-left));
  }

  .thread-live {
    margin-left: 0;
    border-radius: 18px;
  }

  .thread-live::before {
    display: none;
  }

  .app:not(.chat-open) .thread {
    display: none;
  }

  .app.chat-open .roster {
    display: none;
  }

  .roster-head {
    padding: calc(12px + var(--safe-top)) 16px 10px;
  }

  .search {
    margin: 10px 16px;
  }

  .add-row {
    padding: 0 16px 10px;
  }

  .sign-out {
    margin: 8px 16px calc(12px + var(--safe-bottom));
  }

  .install-app {
    margin: 8px 16px 0;
  }

  .thread-head {
    align-items: center;
    padding: 10px 10px 10px 14px;
    min-height: 52px;
  }

  .thread-head strong {
    font-size: 18px;
  }

  .thread-head p {
    font-size: 12px;
    margin-top: 2px;
  }

  .thread-actions {
    gap: 2px;
    margin-top: 0;
  }

  .nudge,
  .kebab {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .nudge svg {
    width: 16px;
    height: 16px;
  }

  #close-chat {
    font-size: 13px;
    padding: 0 8px;
  }

  body.has-notify-banner .roster-head {
    padding-top: 12px;
  }

  body.has-notify-banner .thread {
    padding-top: 6px;
  }

  .transcript {
    padding: 14px 16px;
  }

  .last-line {
    padding: 0 16px 6px;
  }

  .combo input,
  .field > input,
  .search,
  .add-row input,
  .composer textarea {
    font-size: 16px;
  }

  .composer {
    padding: 8px 12px 10px;
  }

  #hey-toast {
    top: calc(10px + var(--safe-top));
    bottom: auto;
    left: 16px;
    right: 16px;
    transform: none;
    width: auto;
  }

  .blocked-note {
    margin: 0 16px 12px;
  }
}
