.fh-native-chat {
  --fh-chat-blue: #3f3d3a;
  --fh-chat-blue-dark: #27231d;
  --fh-chat-cream: rgba(255, 255, 255, .98);
  --fh-chat-gold: #dcc190;
  --fh-chat-gold-border: rgba(220, 193, 144, .28);
  --fh-chat-muted: rgba(39, 35, 29, .72);
  --fh-chat-line: rgba(39, 35, 29, .16);
  position: fixed;
  z-index: 2147483000;
  inset: auto auto 20px 50%;
  transform: translateX(-50%);
  color: var(--fh-chat-blue-dark);
  font-family: var(--font-ui, "Montserrat", Arial, sans-serif);
  display: flex;
  align-items: center;
  gap: 12px;
}

.fh-native-call {
  --fh-chat-blue: #3f3d3a;
  --fh-chat-blue-dark: #27231d;
  --fh-chat-cream: rgba(255, 255, 255, .98);
  --fh-chat-gold: #dcc190;
  --fh-chat-gold-border: rgba(220, 193, 144, .28);
  position: fixed;
  right: 22px;
  bottom: 20px;
  z-index: 2147483001;
  font-family: var(--font-ui, "Montserrat", Arial, sans-serif);
}

.fh-native-chat,
.fh-native-chat *,
.fh-native-call,
.fh-native-call * {
  box-sizing: border-box;
}

.fh-native-chat button,
.fh-native-chat input,
.fh-native-chat select,
.fh-native-call button,
.fh-native-call input,
.fh-native-call select {
  font: inherit;
}

.fh-native-chat__launcher {
  min-width: 132px;
  height: 58px;
  border: 1px solid var(--fh-chat-gold-border);
  border-radius: 999px;
  background: var(--fh-chat-blue);
  color: #fff;
  box-shadow: 0 18px 44px rgba(42, 35, 24, .24);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.fh-native-chat__launcher:not(.fh-native-chat__launcher--call) {
  min-width: 300px;
  padding: 0 18px 0 14px;
  justify-content: flex-start;
}

.fh-native-chat__launcher:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 56px rgba(42, 35, 24, .32);
}

.fh-native-call__launcher {
  position: relative;
  width: 66px;
  min-width: 66px;
  height: 64px;
  border: 1px solid var(--fh-chat-gold-border);
  border-radius: 50%;
  background: var(--fh-chat-blue);
  color: #fff;
  box-shadow: 0 18px 44px rgba(42, 35, 24, .34);
  display: grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
  isolation: isolate;
  font-weight: 900;
  transition: opacity .18s ease, transform .18s ease, box-shadow .18s ease;
}

.fh-native-call__launcher:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 58px rgba(42, 35, 24, .42);
}

.fh-native-call__launcher::before,
.fh-native-call__launcher::after {
  content: "";
  position: absolute;
  inset: -9px;
  border: 2px solid rgba(220, 193, 144, .62);
  border-radius: 50%;
  opacity: 0;
  z-index: -1;
  animation: fh-call-wave 2.4s ease-out infinite;
}

.fh-native-call__launcher::after {
  animation-delay: 1.2s;
}

.fh-native-call__icon {
  display: grid;
  place-items: center;
  grid-area: 1 / 1;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  animation: fh-call-icon-cycle 5.6s ease-in-out infinite;
}

.fh-native-call__icon svg,
.fh-native-chat__callback-icon svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fh-native-call__label {
  grid-area: 1 / 1;
  max-width: 52px;
  color: #fff;
  font-size: 9px;
  font-weight: 950;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  transform: scale(.88);
  animation: fh-call-label-cycle 5.6s ease-in-out infinite;
}

.fh-native-chat__launcher-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  font-size: 16px;
}

.fh-native-chat__launcher-logo img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
  object-position: center;
}

.fh-native-chat__launcher-logo {
  background: transparent;
}

.fh-native-chat__launcher-text {
  font-size: 15px;
  letter-spacing: 0;
}

.fh-native-chat.is-open .fh-native-chat__launcher,
.fh-native-chat.is-callback-open .fh-native-chat__launcher {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.fh-native-call.is-callback-open .fh-native-call__launcher {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.fh-native-chat__teaser {
  position: absolute;
  left: 50%;
  bottom: 74px;
  width: min(370px, calc(100vw - 28px));
  transform: translate(-50%, 10px);
  opacity: 0;
  pointer-events: none;
  border: 1px solid var(--fh-chat-gold-border);
  border-radius: 16px;
  background: var(--fh-chat-cream);
  box-shadow: 0 18px 48px rgba(42, 35, 24, .18);
  color: var(--fh-chat-blue-dark);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  text-align: left;
  cursor: pointer;
  transition: opacity .22s ease, transform .22s ease;
}

.fh-native-chat__teaser-photo,
.fh-native-chat__avatar {
  overflow: hidden;
}

.fh-native-chat__teaser-photo {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex: 0 0 auto;
  border: 2px solid rgba(220, 193, 144, .72);
}

.fh-native-chat__teaser-photo img,
.fh-native-chat__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fh-native-chat__teaser-copy {
  display: grid;
  gap: 5px;
}

.fh-native-chat.has-teaser:not(.is-open) .fh-native-chat__teaser {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.fh-native-chat__teaser-title {
  color: var(--fh-chat-gold);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.fh-native-chat__teaser-text {
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
}

.fh-native-chat__panel {
  position: absolute;
  left: 50%;
  bottom: 74px;
  width: min(400px, calc(100vw - 28px));
  max-height: min(680px, calc(100vh - 112px));
  transform: translate(-50%, 10px);
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--fh-chat-gold-border);
  border-radius: 18px;
  background: var(--fh-chat-cream);
  box-shadow: 0 26px 76px rgba(0, 0, 0, .28);
  transition: opacity .2s ease, transform .2s ease;
}

.fh-native-chat__panel--callback {
  position: absolute;
  left: auto;
  right: 0;
  bottom: 78px;
  width: min(386px, calc(100vw - 28px));
  border-color: var(--fh-chat-gold-border);
  background: var(--fh-chat-cream);
  transform: translateY(10px);
}

.fh-native-chat__panel--callback::after {
  content: "";
  position: absolute;
  right: 25px;
  bottom: -9px;
  width: 18px;
  height: 18px;
  background: var(--fh-chat-cream);
  border-right: 1px solid var(--fh-chat-gold-border);
  border-bottom: 1px solid var(--fh-chat-gold-border);
  transform: rotate(45deg);
}

.fh-native-chat.is-open .fh-native-chat__panel:not(.fh-native-chat__panel--callback) {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.fh-native-call.is-callback-open .fh-native-chat__panel--callback {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.fh-native-chat__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--fh-chat-blue);
  color: #fff;
}

.fh-native-chat__head--callback {
  align-items: flex-start;
  background: var(--fh-chat-blue);
}

.fh-native-chat__avatar {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, .78);
  background: linear-gradient(135deg, rgba(220, 193, 144, .42), var(--fh-chat-gold));
  color: var(--fh-chat-blue-dark);
  font-family: var(--serif, Georgia, serif);
  font-size: 24px;
  font-weight: 600;
}

.fh-native-chat__avatar--phone {
  font-family: Arial, sans-serif;
  font-size: 21px;
}

.fh-native-chat__callback-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 50%;
  color: #fff;
  flex: 0 0 auto;
  font-size: 20px;
  line-height: 1;
}

.fh-native-chat__callback-question {
  flex: 1;
  min-width: 0;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.24;
}

.fh-native-chat__head-text {
  min-width: 0;
  flex: 1;
}

.fh-native-chat__eyebrow {
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.fh-native-chat__online {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.fh-native-chat__online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #35d36a;
  box-shadow: 0 0 0 0 rgba(53, 211, 106, .55);
  animation: fh-online-pulse 1.4s ease-out infinite;
}

.fh-native-chat__title {
  margin-top: 3px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.fh-native-chat__close {
  position: relative;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  cursor: pointer;
  font-size: 0;
  line-height: 1;
  padding: 0;
}

.fh-native-chat__close::before {
  content: "×";
  display: block;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-1px);
}

.fh-native-chat__messages {
  flex: 1;
  min-height: 220px;
  max-height: 360px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}

.fh-native-chat__message {
  max-width: 88%;
  border-radius: 16px;
  padding: 11px 13px;
  font-size: 14px;
  line-height: 1.42;
}

.fh-native-chat__message--bot {
  align-self: flex-start;
  background: var(--fh-chat-cream);
  border: 1px solid var(--fh-chat-line);
}

.fh-native-chat__message--user {
  align-self: flex-end;
  background: var(--fh-chat-blue);
  color: #fff;
}

.fh-native-chat__quick {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  padding: 0 16px 12px;
}

.fh-native-chat__quick[hidden],
.fh-native-chat__form[hidden],
.fh-native-chat__contact-form[hidden] {
  display: none;
}

.fh-native-chat__quick button {
  flex: 1 1 0;
  min-height: 34px;
  border: 1px solid var(--fh-chat-gold-border);
  border-radius: 999px;
  background: var(--fh-chat-cream);
  color: var(--fh-chat-blue);
  padding: 7px 6px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

.fh-native-chat__form {
  position: relative;
  display: grid;
  grid-template-columns: 34px 34px 1fr 44px;
  align-items: center;
  gap: 8px;
  padding: 0 16px 12px;
}

.fh-native-chat__contact-form {
  display: grid;
  gap: 10px;
  padding: 0 16px 12px;
}

.fh-native-chat__consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(12, 45, 75, .72);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
}

.fh-native-chat__consent input {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: var(--fh-chat-blue);
  flex: 0 0 auto;
}

.fh-native-chat__consent a {
  color: var(--fh-chat-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.fh-native-chat__callback-body {
  display: grid;
  gap: 14px;
  padding: 16px;
  background: var(--fh-chat-cream);
}

.fh-native-chat__callback-form {
  display: grid;
  gap: 10px;
}

.fh-native-chat__callback-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.fh-native-chat__callback-choice label {
  min-width: 0;
}

.fh-native-chat__callback-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.fh-native-chat__callback-choice span {
  min-height: 42px;
  border: 1px solid var(--fh-chat-gold-border);
  border-radius: 999px;
  background: var(--fh-chat-cream);
  color: var(--fh-chat-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
  cursor: pointer;
}

.fh-native-chat__callback-choice input:checked + span {
  background: var(--fh-chat-blue);
  border-color: var(--fh-chat-gold-border);
  color: #fff;
}

.fh-native-chat__schedule {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.fh-native-chat__schedule[hidden] {
  display: none;
}

.fh-native-chat__callback-send {
  min-height: 46px;
  border: 1px solid var(--fh-chat-gold-border);
  border-radius: 999px;
  background: var(--fh-chat-blue);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
}

.fh-native-chat__callback-send:disabled {
  cursor: default;
  opacity: .65;
}

.fh-native-chat__input {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  border: 1px solid var(--fh-chat-gold-border);
  border-radius: 999px;
  background: #fff;
  color: var(--fh-chat-blue-dark);
  outline: 0;
  padding: 0 16px;
  font-size: 14px;
}

.fh-native-chat__select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--fh-chat-gold-border);
  border-radius: 999px;
  background: #fff;
  color: var(--fh-chat-blue-dark);
  outline: 0;
  padding: 0 42px 0 16px;
  font-size: 14px;
  cursor: pointer;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--fh-chat-blue) 50%),
    linear-gradient(135deg, var(--fh-chat-blue) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 20px,
    calc(100% - 14px) 20px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.fh-native-chat__select:focus {
  border-color: var(--fh-chat-gold-border);
  box-shadow: 0 0 0 3px rgba(220, 193, 144, .16);
}

.fh-native-chat__timer {
  justify-self: center;
  min-width: 132px;
  border: 1px solid var(--fh-chat-gold-border);
  border-radius: 999px;
  background: rgba(12, 78, 94, .08);
  color: var(--fh-chat-blue);
  padding: 7px 14px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0;
}

.fh-native-chat__timer.is-active {
  animation: fh-timer-blink 1s steps(2, start) infinite;
}

.fh-native-chat__timer-sep {
  animation: fh-timer-sep-blink 1s steps(2, start) infinite;
}

.fh-native-chat__input:focus {
  border-color: var(--fh-chat-gold-border);
  box-shadow: 0 0 0 3px rgba(220, 193, 144, .16);
}

.fh-native-chat__tool {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 44px;
  border: 1px solid var(--fh-chat-gold-border);
  border-radius: 999px;
  background: var(--fh-chat-cream);
  color: var(--fh-chat-blue);
  padding: 0;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  appearance: none;
}

.fh-native-chat__emoji-panel {
  grid-column: 1 / -1;
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%);
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(6, 34px);
  gap: 7px;
  width: auto;
  max-width: calc(100% - 32px);
  border: 1px solid var(--fh-chat-gold-border);
  border-radius: 14px;
  background: var(--fh-chat-cream);
  padding: 8px;
  box-shadow: 0 12px 26px rgba(9, 33, 52, .16);
}

.fh-native-chat__emoji-panel[hidden] {
  display: none;
}

.fh-native-chat__emoji-panel button {
  display: inline-grid;
  place-items: center;
  align-items: center;
  justify-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(12, 78, 94, .08);
  cursor: pointer;
  padding: 0;
  text-align: center;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: 18px;
  line-height: 1;
}

.fh-native-chat__send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--fh-chat-blue);
  color: #fff;
  padding: 0;
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
  appearance: none;
}

.fh-native-chat__send:disabled {
  cursor: default;
  opacity: .65;
}

.fh-native-chat__contact-submit {
  min-height: 46px;
  border: 1px solid var(--fh-chat-gold-border);
  border-radius: 999px;
  background: var(--fh-chat-blue);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
}

.fh-native-chat__contact-submit:disabled {
  cursor: default;
  opacity: .65;
}

.fh-native-chat__typing {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  min-width: 50px;
}

.fh-native-chat__typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fh-chat-blue);
  animation: fh-chat-typing 1s infinite ease-in-out;
}

.fh-native-chat__typing span:nth-child(2) {
  animation-delay: .14s;
}

.fh-native-chat__typing span:nth-child(3) {
  animation-delay: .28s;
}

@keyframes fh-chat-typing {
  0%, 80%, 100% {
    transform: translateY(0);
    opacity: .45;
  }
  40% {
    transform: translateY(-3px);
    opacity: 1;
  }
}

@keyframes fh-online-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(53, 211, 106, .55);
    opacity: 1;
  }
  70% {
    box-shadow: 0 0 0 8px rgba(53, 211, 106, 0);
    opacity: .72;
  }
  100% {
    box-shadow: 0 0 0 0 rgba(53, 211, 106, 0);
    opacity: 1;
  }
}

.fh-native-chat__status {
  min-height: 18px;
  padding: 0 18px 12px;
  color: var(--fh-chat-muted);
  font-size: 12px;
}

[class*="envybox"][class*="chat"],
[id*="envybox"][id*="chat"],
[class*="ws-chat"] {
  display: none !important;
}

@keyframes fh-call-wave {
  0% {
    opacity: .68;
    transform: scale(.9);
  }
  72% {
    opacity: 0;
    transform: scale(1.34);
  }
  100% {
    opacity: 0;
    transform: scale(1.34);
  }
}

@keyframes fh-call-icon-cycle {
  0%, 42% {
    opacity: 1;
    transform: scale(1);
  }
  50%, 92% {
    opacity: 0;
    transform: scale(.82);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fh-call-label-cycle {
  0%, 42% {
    opacity: 0;
    transform: scale(.88);
  }
  50%, 92% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(.88);
  }
}

@keyframes fh-timer-blink {
  50% {
    background: rgba(220, 193, 144, .2);
    box-shadow: 0 0 0 4px rgba(220, 193, 144, .12);
  }
}

@keyframes fh-timer-sep-blink {
  50% {
    opacity: .18;
  }
}

@media (max-width: 640px) {
  .fh-native-chat {
    inset: auto auto 26px 12px;
    bottom: 26px;
    transform: none;
  }

  .fh-native-chat__launcher {
    min-width: 118px;
    height: 54px;
  }

  .fh-native-chat__launcher:not(.fh-native-chat__launcher--call) {
    width: calc(100vw - 132px);
    min-width: 0;
    max-width: 252px;
    padding: 0 13px 0 11px;
  }

  .fh-native-chat__launcher-text {
    font-size: 13px;
    line-height: 1.1;
  }

  .fh-native-call {
    right: 14px;
    bottom: 26px;
  }

  .fh-native-call__launcher {
    width: 56px;
    min-width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 50%;
  }

  .fh-native-call__label {
    max-width: 44px;
    font-size: 7.6px;
    line-height: 1;
  }

  .fh-native-chat__teaser {
    position: fixed;
    left: 50%;
    bottom: 96px;
    width: min(330px, calc(100vw - 48px));
    transform: translate(-50%, 10px);
    padding: 12px 13px;
    gap: 10px;
  }

  .fh-native-chat.has-teaser:not(.is-open) .fh-native-chat__teaser {
    transform: translate(-50%, 0);
  }

  .fh-native-chat__teaser-photo {
    width: 42px;
    height: 42px;
  }

  .fh-native-chat__teaser-title {
    font-size: 10px;
  }

  .fh-native-chat__teaser-text {
    font-size: 13px;
    line-height: 1.25;
  }

  .fh-native-chat__panel {
    position: fixed;
    left: 12px;
    bottom: 84px;
    width: calc(100vw - 24px);
    max-height: calc(100svh - 112px);
    transform: translateY(10px);
  }

  .fh-native-chat.is-open .fh-native-chat__panel:not(.fh-native-chat__panel--callback) {
    transform: translateY(0);
  }

  .fh-native-chat__panel--callback {
    position: fixed;
    left: auto;
    right: 12px;
    bottom: 88px;
    width: calc(100vw - 24px);
  }

  .fh-native-call.is-callback-open .fh-native-chat__panel--callback {
    transform: translateY(0);
  }

  .fh-native-chat__callback-choice,
  .fh-native-chat__schedule {
    grid-template-columns: 1fr;
  }

  .fh-native-chat__messages {
    min-height: 220px;
    max-height: 46svh;
  }

  .fh-native-chat__form {
    grid-template-columns: 32px 32px minmax(0, 1fr) 42px;
    gap: 6px;
    padding: 0 12px 12px;
  }

  .fh-native-chat__tool {
    width: 32px;
    height: 42px;
  }

  .fh-native-chat__send {
    width: 42px;
    height: 42px;
  }

  .fh-native-chat__emoji-panel {
    grid-template-columns: repeat(6, 32px);
    gap: 6px;
    left: 50%;
    bottom: calc(100% + 7px);
    transform: translateX(-50%);
    max-width: calc(100% - 24px);
    padding: 7px;
  }

  .fh-native-chat__emoji-panel button {
    width: 32px;
    height: 32px;
  }
}
