.chat-ov {
  position: fixed;
  inset: 0 0 96px 0;
  z-index: 48;
  display: grid;
  justify-content: center;
  background: #f7f3ec;
}

.chat-ov[hidden],
.chat-thread[hidden],
.chat-gal[hidden] { display: none !important; }

.inbox {
  width: min(480px, 100%);
  height: 100%;
  background: #f7f3ec;
  overflow: auto;
}

.inbox-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px 8px;
  background: #f7f3ec;
  position: sticky;
  top: 0;
  z-index: 2;
}

.inbox-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px 8px 16px;
}

.inbox-head h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.inbox-tools {
  display: flex;
  align-items: center;
  gap: 2px;
}

.inbox-tool {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #2a2a2a;
  display: grid;
  place-items: center;
  cursor: pointer;
  border-radius: 50%;
}

.inbox-search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 16px 12px;
  padding: 10px 14px;
  border: 1px solid #e4e0d8;
  border-radius: 999px;
  background: #fff;
  color: #9a9a9a;
}

.inbox-search input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
}

.inbox-search input::placeholder { color: #b0b0b0; }

.inbox-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 18px 14px;
  font-size: 14px;
  color: #3a3a3a;
  cursor: pointer;
}

.inbox-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.inbox-toggle i {
  width: 44px;
  height: 26px;
  border-radius: 999px;
  background: #d8d4cc;
  position: relative;
  flex-shrink: 0;
  transition: background .2s;
}

.inbox-toggle i::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .18);
  transition: transform .2s;
}

.inbox-toggle input:checked + i { background: #de6a24; }
.inbox-toggle input:checked + i::after { transform: translateX(18px); }

.inbox-row {
  width: 100%;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.inbox-av {
  position: relative;
  width: 52px;
  height: 52px;
}

.inbox-av img,
.chat-av {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.chat-av-ini {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .02em;
}

.chat-av-wrap.chat-av-ini,
.chat-av-wrap.chat-av-ini.chat-av-wrap--sm {
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  border-radius: 50%;
}

.chat-on {
  position: absolute;
  right: 1px;
  bottom: 1px;
  width: 12px;
  height: 12px;
  background: #22c55e;
  border: 2px solid #f7f3ec;
  border-radius: 50%;
}

.inbox-meta {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.inbox-meta strong {
  display: flex;
  align-items: center;
  gap: 1px;
  font-size: 15px;
  font-weight: 800;
}

.inbox-meta em {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
  font-style: normal;
  font-size: 13px;
  color: #8a8a8a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.inbox-meta em svg {
  flex-shrink: 0;
  opacity: .7;
}

.inbox-side {
  display: grid;
  justify-items: end;
  gap: 8px;
  align-self: start;
  padding-top: 2px;
}

.inbox-side time {
  font-size: 12px;
  color: #9a9a9a;
}

.inbox-badge {
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: #de6a24;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.inbox-badge[hidden] { display: none !important; }

.inbox-empty {
  padding: 28px 20px;
  text-align: center;
  color: #9a9a9a;
  font-size: 14px;
}

.chat-thread {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: flex;
  justify-content: center;
  background: #fff;
  height: 100%;
  height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
}

.chat-sheet {
  width: min(480px, 100%);
  height: 100%;
  max-height: 100%;
  min-height: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.chat-top {
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 36px 40px 1fr 36px 36px 36px;
  align-items: center;
  gap: 6px;
  padding: 8px 8px 8px 6px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.chat-icon {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--ink);
  border-radius: 50%;
}

.chat-icon.is-fav {
  color: var(--ink);
}

.chat-icon.is-fav svg {
  fill: currentColor;
  stroke: currentColor;
}

.chat-pic.is-lock img,
.chat-vid.is-lock video {
  filter: blur(16px) brightness(.62);
  transform: scale(1.14);
}

.chat-lock-ico {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .45);
}

.chat-pic.is-lock,
.chat-vid.is-lock {
  overflow: hidden;
}

.chat-av-wrap {
  position: relative;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
  cursor: pointer;
  aspect-ratio: 1;
  display: block;
  text-decoration: none;
  color: inherit;
}

.chat-av-wrap .chat-on { border-color: #faf8f4; }

.chat-av-wrap .chat-av,
.chat-av-wrap img {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.chat-av-wrap--sm,
.chat-av-wrap--sm img {
  flex-basis: 32px;
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  max-width: 32px;
  max-height: 32px;
}

.chat-msg > div {
  min-width: 0;
  flex: 1;
}

.chat-who {
  min-width: 0;
  padding-left: 4px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.chat-who strong {
  display: flex;
  align-items: center;
  gap: 1px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.15;
}

.chat-who strong svg,
.inbox-meta strong svg {
  flex-shrink: 0;
}

.chat-who span,
.chat-status {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 1px;
}

.chat-feed {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  padding: 16px 12px 18px;
  background: #faf8f4;
  -webkit-overflow-scrolling: touch;
}

.chat-day {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 16px;
  color: #9a9a9a;
  font-size: 12px;
}

.chat-day::before,
.chat-day::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #ece8e1;
}

.chat-msg {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
  max-width: 92%;
  position: relative;
}

.chat-msg.chat-msg--me {
  margin-left: auto;
  flex-direction: row-reverse;
  max-width: 82%;
}

.chat-msg.chat-msg--me .chat-bubble {
  background: #f8e4d6;
}

.chat-bubble {
  background: #f6efe8;
  border-radius: 16px;
  overflow: hidden;
  padding: 10px 12px;
}

.chat-msg.chat-msg--pack {
  max-width: 100%;
}

.chat-pack-col {
  min-width: 0;
  flex: 1;
}

.chat-bubble--pack {
  padding-bottom: 10px;
}

.chat-pack {
  position: relative;
  width: calc(100% + 24px);
  margin: -10px -12px 10px;
  background: #1a1a1a;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  height: 280px;
}

.chat-pack-n {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 8px;
  background: rgba(40, 40, 40, .62);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  pointer-events: none;
}

.chat-pack-slide {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 22%;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.chat-pack-slide.is-on {
  left: 14%;
  width: 72%;
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
  filter: none;
}

.chat-pack-slide.is-prev {
  left: 0;
  opacity: 1;
  z-index: 1;
  filter: blur(10px) brightness(.7);
}

.chat-pack-slide.is-next {
  right: 0;
  left: auto;
  opacity: 1;
  z-index: 1;
  filter: blur(10px) brightness(.7);
}

.chat-pack-cell {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  position: relative;
  border: 0;
  padding: 0;
  background: #1a1a1a;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.chat-pack-cell img,
.chat-pack-cell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.chat-pack-cell.is-lock img,
.chat-pack-cell.is-lock video {
  filter: blur(22px) saturate(.35) brightness(1.2);
  transform: scale(1.22);
}

.chat-pack-cell .chat-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  z-index: 2;
  pointer-events: none;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .4);
}

.chat-pack-lock {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  pointer-events: none;
  background: rgba(232, 224, 212, .28);
}

.chat-pack-lockico {
  width: 46px;
  height: 46px;
  border: 1.6px solid #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, .25));
}

.chat-pack-lockico svg { stroke: #fff; }

.chat-pack-card {
  min-width: 138px;
  padding: 12px 18px 10px;
  border-radius: 12px;
  background: rgba(45, 45, 45, .55);
  color: #fff;
  text-align: center;
  backdrop-filter: blur(8px);
}

.chat-pack-card strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.chat-pack-card em {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, .3);
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
}

.chat-pack-card em span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.chat-pack-nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .82);
  color: #444;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}

.chat-pack-prev { left: calc(14% + 6px); }
.chat-pack-next { right: calc(14% + 6px); }

.chat-pack.is-locked-view {
  background: #e4dcd0;
}

.chat-pack.is-locked-view .chat-pack-slide.is-on {
  left: 0;
  width: 100%;
}

.chat-pack.is-locked-view .chat-pack-slide.is-prev,
.chat-pack.is-locked-view .chat-pack-slide.is-next {
  opacity: 0;
}

.chat-pack.is-locked-view .chat-pack-prev { left: 8px; }
.chat-pack.is-locked-view .chat-pack-next { right: 8px; }

.chat-pack.is-locked-view .chat-pack-nav {
  background: rgba(255, 255, 255, .38);
  color: #fff;
  box-shadow: none;
}

.chat-pack-col .chat-unlock {
  margin-top: 8px;
}

.chat-bubble p {
  font-size: 15px;
  line-height: 1.4;
}

.chat-bubble b { color: #c45c32; font-weight: 700; }

.chat-msg time {
  display: block;
  font-size: 12px;
  color: #8d8d8d;
  font-weight: 500;
  margin: 6px 4px 0;
}

.chat-npago {
  font-weight: 700;
  color: #6a6a6a;
}

.chat-msg-more {
  position: absolute;
  right: -22px;
  top: 8px;
  width: 22px;
  height: 22px;
  border: 0;
  background: transparent;
  color: #b0b0b0;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.chat-pic,
.chat-vid {
  display: block;
  width: calc(100% + 24px);
  margin: -10px -12px 10px;
  border: 0;
  padding: 0;
  background: #111;
  position: relative;
  cursor: pointer;
}

.chat-pic img,
.chat-vid video {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.chat-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .35);
}

.chat-pic .wm,
.chat-vid .wm {
  right: 10px;
  bottom: 10px;
  font-size: 11px;
}

.chat-unlock {
  display: block;
  width: 100%;
  margin-top: 10px;
  border: 0;
  border-radius: 10px;
  padding: 12px 14px;
  background: #de6a24;
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.chat-compose {
  flex: 0 0 auto;
  z-index: 6;
  padding: 8px 16px calc(10px + env(safe-area-inset-bottom));
  background: #fff;
  border-top: 1px solid #f0ece6;
  box-shadow: 0 -6px 16px rgba(0, 0, 0, .04);
}

.chat-input {
  width: 100%;
  border: 0;
  outline: 0;
  resize: none;
  font: inherit;
  font-size: 16px;
  line-height: 1.4;
  min-height: 28px;
  max-height: 88px;
  background: transparent;
  color: var(--ink);
}

.chat-input::placeholder { color: #c0c0c0; }

.chat-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 10px;
}

.chat-compose.is-rec .js-chat-mic { display: none; }

.chat-rec {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.chat-rec[hidden] { display: none !important; }

.chat-rec-x { color: #e24b3c; }
.chat-rec-ok { color: #22a35a; }

.chat-rec-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e24b3c;
  flex-shrink: 0;
  animation: chat-rec-pulse 1s ease-in-out infinite;
}

.chat-rec-time {
  font-size: 15px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #3a3a3a;
  min-width: 48px;
}

@keyframes chat-rec-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .45; transform: scale(.86); }
}

.chat-audio {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 168px;
}

.chat-audio audio { display: none; }

.chat-audio-play {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #de6a24;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
}

.chat-audio-play.is-on { background: #c45c32; }

.chat-audio-wave {
  flex: 1;
  height: 22px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.chat-audio-wave i {
  width: 3px;
  border-radius: 2px;
  background: #de6a24;
  display: block;
}

.chat-audio-wave i:nth-child(1) { height: 8px; }
.chat-audio-wave i:nth-child(2) { height: 16px; }
.chat-audio-wave i:nth-child(3) { height: 11px; }
.chat-audio-wave i:nth-child(4) { height: 20px; }
.chat-audio-wave i:nth-child(5) { height: 9px; }
.chat-audio-wave i:nth-child(6) { height: 14px; }
.chat-audio-wave i:nth-child(7) { height: 7px; }

.chat-audio.is-play .chat-audio-wave i {
  animation: chat-wave 1s ease-in-out infinite;
}

.chat-audio.is-play .chat-audio-wave i:nth-child(2) { animation-delay: .1s; }
.chat-audio.is-play .chat-audio-wave i:nth-child(3) { animation-delay: .2s; }
.chat-audio.is-play .chat-audio-wave i:nth-child(4) { animation-delay: .08s; }
.chat-audio.is-play .chat-audio-wave i:nth-child(5) { animation-delay: .18s; }
.chat-audio.is-play .chat-audio-wave i:nth-child(6) { animation-delay: .12s; }

@keyframes chat-wave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(.45); }
}

.chat-audio-dur {
  font-size: 12px;
  font-weight: 700;
  color: #8a8a8a;
  font-variant-numeric: tabular-nums;
}

.chat-bar-btn {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #5a5a5a;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.chat-pill {
  height: 32px;
  padding: 0 12px;
  border: 1px solid #ddd8d0;
  border-radius: 999px;
  background: #fff;
  color: #4a4a4a;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.chat-send {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: #f3cfc2;
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .04em;
  cursor: pointer;
}

.chat-send:not(:disabled) {
  background: var(--grad);
}

.chat-send:disabled { cursor: default; }

.chat-left {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  color: #9a9a9a;
}

.chat-limit {
  display: none;
  text-align: center;
  padding: 8px 4px 4px;
}

.chat-limit strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.chat-limit span {
  display: block;
  margin: 6px 0 12px;
  color: #7a7a7a;
  font-size: 14px;
}

.chat-compose.is-lock .chat-input,
.chat-compose.is-lock .chat-bar,
.chat-compose.is-lock .chat-send,
.chat-compose.is-lock .chat-left { display: none; }

.chat-compose.is-lock .chat-limit { display: block; }

.chat-compose.is-wait .chat-send { opacity: .6; pointer-events: none; }

.chat-dots {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 16px;
  padding: 2px 4px;
}

.chat-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #de6a24;
  animation: chat-dot 1s ease-in-out infinite;
}

.chat-dots i:nth-child(2) { animation-delay: .15s; }
.chat-dots i:nth-child(3) { animation-delay: .3s; }

@keyframes chat-dot {
  0%, 80%, 100% { opacity: .28; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-3px); }
}

.chat-gal {
  position: fixed;
  inset: 0;
  z-index: 62;
  display: flex;
  justify-content: center;
  background: #f7f3ec;
  height: 100%;
  height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
}

.gal-sheet {
  width: min(480px, 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #f7f3ec;
  overflow: hidden;
}

.gal-top {
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 4px;
  padding: 8px 12px 6px 6px;
  background: #f7f3ec;
}

.gal-who {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.15;
}

.gal-who strong {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
}

.gal-who span {
  font-size: 13px;
  font-weight: 500;
  color: #9a9a9a;
  margin-top: 1px;
}

.gal-tabs {
  flex-shrink: 0;
  display: flex;
  gap: 8px;
  padding: 8px 14px 12px;
  overflow-x: auto;
  scrollbar-width: none;
}

.gal-tabs::-webkit-scrollbar { display: none; }

.gal-tab {
  border: 1px solid #e4dfd6;
  background: #fff;
  color: #3a3a3a;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
}

.gal-tab.is-on {
  background: #e9a07a;
  border-color: #e9a07a;
  color: #fff;
  font-weight: 700;
}

.gal-body {
  flex: 1;
  min-height: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.gal-cell {
  aspect-ratio: 1;
  border: 0;
  padding: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #e8d9c6;
}

.gal-cell[hidden] { display: none !important; }

.gal-cell img,
.gal-cell video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gal-play {
  position: relative;
  z-index: 2;
  color: #fff;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, .45));
}

.gal-p {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .38);
  pointer-events: none;
  transform: translateY(-8px);
}

.gal-lock {
  position: relative;
  z-index: 2;
}

.gal-lock svg rect { fill: #fff; }
.gal-lock svg path { stroke: #fff; }

.gal-pills {
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 7px;
  display: flex;
  gap: 4px;
  z-index: 3;
  pointer-events: none;
}

.gal-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(42, 36, 32, .52);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 999px;
  line-height: 1;
}

.gal-pill svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.gal-empty {
  padding: 36px 20px;
  text-align: center;
  color: #9a9a9a;
  font-size: 14px;
}
