/* FBM WEBSITE CHAT | SHARED WIDGET CSS | START */
.fbm-chat,
.fbm-chat * {
  box-sizing: border-box;
}

.fbm-chat {
  --fbm-chat-accent: var(
    --fbm-chat-theme-accent,
    var(--fbm-primary, var(--color-primary, #255f99))
  );
  --fbm-chat-accent-dark: var(
    --fbm-chat-theme-accent-dark,
    var(--fbm-primary-dark, var(--color-primary-dark, #183b63))
  );
  --fbm-chat-accent-soft: var(
    --fbm-chat-theme-accent-soft,
    var(--fbm-primary-hover, var(--color-primary, #2f7fc3))
  );
  --fbm-chat-accent-glow: color-mix(
    in srgb,
    var(--fbm-chat-accent) 12%,
    transparent
  );
  --fbm-chat-accent-shadow: color-mix(
    in srgb,
    var(--fbm-chat-accent) 24%,
    transparent
  );
  --fbm-chat-gradient: linear-gradient(
    135deg,
    var(--fbm-chat-accent-dark) 0%,
    var(--fbm-chat-accent) 58%,
    var(--fbm-chat-accent-soft) 100%
  );
  --fbm-chat-text: #172033;
  --fbm-chat-muted: #667085;
  --fbm-chat-line: #dce4ef;
  --fbm-chat-surface: #ffffff;
  --fbm-chat-soft: #f6f8fb;
  --fbm-chat-danger: #b42318;
  --fbm-chat-radius-lg: 24px;
  --fbm-chat-radius-md: 18px;
  --fbm-chat-shadow: 0 28px 78px rgba(15, 23, 42, 0.24);
  --fbm-chat-soft-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);

  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1090;
  display: none;
  color: var(--fbm-chat-text);
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

.fbm-chat--ready {
  display: block;
}

.fbm-chat [hidden] {
  display: none !important;
}

.fbm-chat--left {
  right: auto;
  left: 20px;
}

/* FBM WEBSITE CHAT | LAUNCHER | START */
.fbm-chat__launcher {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 112px;
  height: 58px;
  padding: 0 20px 0 16px;
  border: 0;
  border-radius: 999px;
  background: var(--fbm-chat-gradient);
  color: #ffffff;
  box-shadow:
    0 18px 42px rgba(15, 23, 42, 0.24),
    0 0 0 7px var(--fbm-chat-accent-glow);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  overflow: hidden;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
}

.fbm-chat__launcher::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
    circle at 18% 18%,
    rgba(255, 255, 255, 0.26),
    transparent 34%
  );
  pointer-events: none;
}

.fbm-chat__launcher:hover,
.fbm-chat__launcher:focus-visible {
  transform: translateY(-2px);
  filter: saturate(1.03);
  box-shadow:
    0 24px 54px rgba(15, 23, 42, 0.28),
    0 0 0 9px var(--fbm-chat-accent-glow);
}

.fbm-chat__launcher-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 0;
  line-height: 1;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 8px 18px rgba(15, 23, 42, 0.14);
}

.fbm-chat__launcher-icon::before {
  content: "";
  width: 15px;
  height: 11px;
  border-radius: 8px 8px 8px 3px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 6px 5px 0 -4px rgba(255, 255, 255, 0.92);
}

.fbm-chat__launcher-text {
  font-size: 14px;
}

.fbm-chat__launcher-badge {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: #ef4444;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  line-height: 20px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(239, 68, 68, 0.34);
}

.fbm-chat--has-unread .fbm-chat__launcher {
  animation: fbm-chat-launcher-pulse 1.8s ease-in-out infinite;
}

.fbm-chat--has-unread .fbm-chat__launcher-icon {
  background: rgba(255, 255, 255, 0.32);
}

@keyframes fbm-chat-launcher-pulse {
  0%,
  100% {
    box-shadow:
      0 18px 42px rgba(15, 23, 42, 0.24),
      0 0 0 7px var(--fbm-chat-accent-glow);
  }

  50% {
    box-shadow:
      0 18px 42px rgba(15, 23, 42, 0.24),
      0 0 0 13px var(--fbm-chat-accent-shadow);
  }
}
/* FBM WEBSITE CHAT | LAUNCHER | END */

/* FBM WEBSITE CHAT | ACCESSIBILITY | START */
.fbm-chat__launcher:focus-visible,
.fbm-chat__close:focus-visible,
.fbm-chat__send:focus-visible,
.fbm-chat__end:focus-visible,
.fbm-chat__start-new:focus-visible,
.fbm-chat__input:focus,
.fbm-chat__textarea:focus {
  outline: 3px solid var(--fbm-chat-accent-shadow);
  outline-offset: 2px;
}
/* FBM WEBSITE CHAT | ACCESSIBILITY | END */

/* FBM WEBSITE CHAT | PANEL SHELL | START */
.fbm-chat__panel {
  position: absolute;
  right: 0;
  bottom: 76px;
  display: none;
  width: min(410px, calc(100vw - 32px));
  height: min(640px, calc(100vh - 112px));
  max-height: min(640px, calc(100vh - 112px));
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--fbm-chat-radius-lg);
  background: var(--fbm-chat-surface);
  box-shadow: var(--fbm-chat-shadow);
  overflow: hidden;
  transform-origin: bottom right;
}

.fbm-chat--left .fbm-chat__panel {
  right: auto;
  left: 0;
  transform-origin: bottom left;
}

.fbm-chat--open .fbm-chat__panel {
  display: flex;
  flex-direction: column;
  animation: fbm-chat-panel-in 0.18s ease-out;
}

@keyframes fbm-chat-panel-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* FBM WEBSITE CHAT | PANEL SHELL | END */

/* FBM WEBSITE CHAT | HEADER | START */
.fbm-chat__header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 92px;
  padding: 16px 18px;
  border-bottom: 0;
  background: var(--fbm-chat-gradient);
  color: #ffffff;
  overflow: hidden;
}

.fbm-chat__header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 14% 10%,
      rgba(255, 255, 255, 0.22),
      transparent 28%
    ),
    radial-gradient(
      circle at 88% 6%,
      rgba(255, 255, 255, 0.14),
      transparent 24%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.fbm-chat__header-text {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 12px;
  align-items: center;
  min-width: 0;
}

.fbm-chat__header-text::before {
  content: "";
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 38%, #ffffff 0 18%, transparent 19%),
    radial-gradient(circle at 50% 74%, #ffffff 0 24%, transparent 25%),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(238, 245, 251, 0.88) 100%
    );
  box-shadow:
    0 12px 28px rgba(15, 23, 42, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.fbm-chat__header-text::after {
  content: "";
  position: absolute;
  left: 29px;
  bottom: 4px;
  width: 11px;
  height: 11px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
}

.fbm-chat__title {
  grid-column: 2;
  min-width: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.fbm-chat__status {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

.fbm-chat__status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow:
    0 0 0 3px rgba(34, 197, 94, 0.18),
    0 0 12px rgba(34, 197, 94, 0.45);
}

.fbm-chat__close {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 0;
  line-height: 1;
  transition:
    background-color 0.16s ease,
    transform 0.16s ease;
}

.fbm-chat__close::before {
  content: "×";
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
}

.fbm-chat__close:hover,
.fbm-chat__close:focus-visible {
  background: rgba(255, 255, 255, 0.24);
  transform: rotate(4deg);
}
/* FBM WEBSITE CHAT | HEADER | END */

/* FBM WEBSITE CHAT | PRESENCE STATE | START */
.fbm-chat__presence {
  position: absolute;
  top: 6px;
  right: 7px;
  z-index: 2;
  width: 11px;
  height: 11px;
  border: 2px solid rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  background: #22c55e;
  box-shadow:
    0 0 0 3px rgba(34, 197, 94, 0.16),
    0 8px 14px rgba(15, 23, 42, 0.18);
}

.fbm-chat--online .fbm-chat__presence,
.fbm-chat--online .fbm-chat__header-text::after,
.fbm-chat--online .fbm-chat__status::before {
  background: #22c55e;
}

.fbm-chat--online .fbm-chat__status::before {
  box-shadow:
    0 0 0 3px rgba(34, 197, 94, 0.18),
    0 0 12px rgba(34, 197, 94, 0.45);
}

.fbm-chat--offline .fbm-chat__presence,
.fbm-chat--offline .fbm-chat__header-text::after,
.fbm-chat--offline .fbm-chat__status::before {
  background: #ef4444;
}

.fbm-chat--offline .fbm-chat__presence {
  box-shadow:
    0 0 0 3px rgba(239, 68, 68, 0.15),
    0 8px 14px rgba(15, 23, 42, 0.18);
}

.fbm-chat--offline .fbm-chat__header-text::after {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.fbm-chat--offline .fbm-chat__status::before {
  box-shadow:
    0 0 0 3px rgba(239, 68, 68, 0.16),
    0 0 12px rgba(239, 68, 68, 0.38);
}

.fbm-chat--offline .fbm-chat__notice::before {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}
/* FBM WEBSITE CHAT | PRESENCE STATE | END */

/* FBM WEBSITE CHAT | BODY + MESSAGES | START */
.fbm-chat__body {
  display: flex;
  flex: 1 1 auto;
  min-height: 0;
  flex-direction: column;
  gap: 12px;
  padding: 16px 14px 14px;
  background:
    radial-gradient(
      circle at 14% 10%,
      var(--fbm-chat-accent-glow),
      transparent 32%
    ),
    linear-gradient(180deg, #f9fbfd 0%, #f1f5f9 100%);
}

.fbm-chat__notice {
  position: relative;
  padding: 12px 13px 12px 38px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: #475467;
  font-size: 13px;
  font-weight: 550;
  line-height: 1.45;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.fbm-chat__notice::before {
  content: "i";
  position: absolute;
  left: 13px;
  top: 12px;
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 999px;
  background: var(--fbm-chat-accent-glow);
  color: var(--fbm-chat-accent);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.fbm-chat--active .fbm-chat__notice,
.fbm-chat--ended .fbm-chat__notice {
  display: none;
}

.fbm-chat__messages {
  flex: 1 1 auto;
  min-height: 166px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 4px 3px 2px;
  scrollbar-width: thin;
  scrollbar-color: rgba(148, 163, 184, 0.7) transparent;
}

.fbm-chat--active .fbm-chat__messages {
  min-height: 208px;
}

.fbm-chat__messages::-webkit-scrollbar {
  width: 6px;
}

.fbm-chat__messages::-webkit-scrollbar-track {
  background: transparent;
}

.fbm-chat__messages::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.7);
}

.fbm-chat__empty {
  margin: auto;
  max-width: 260px;
  padding: 22px 14px;
  color: #667085;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.fbm-chat__message {
  width: fit-content;
  max-width: 84%;
  padding: 11px 13px;
  border-radius: 18px;
  font-size: 13px;
  font-weight: 520;
  line-height: 1.48;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.fbm-chat__message--visitor {
  align-self: flex-end;
  border-bottom-right-radius: 6px;
  background: var(--fbm-chat-gradient);
  color: #ffffff;
}

.fbm-chat__message--agent {
  align-self: flex-start;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-bottom-left-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--fbm-chat-text);
}

.fbm-chat__message--system {
  align-self: center;
  max-width: 92%;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--fbm-chat-muted);
  font-size: 12px;
  text-align: center;
  box-shadow: none;
}

.fbm-chat__error {
  padding: 10px 12px;
  border: 1px solid rgba(180, 35, 24, 0.22);
  border-radius: 14px;
  background: #fff4f2;
  color: var(--fbm-chat-danger);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.4;
}
/* FBM WEBSITE CHAT | BODY + MESSAGES | END */

/* FBM WEBSITE CHAT | ENDED STATE | START */
.fbm-chat__ended {
  display: grid;
  gap: 12px;
  justify-items: start;
  padding: 16px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--fbm-chat-soft-shadow);
}

.fbm-chat__ended-text {
  color: var(--fbm-chat-text);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.5;
}

.fbm-chat__start-new {
  flex: 0 0 auto;
  min-width: 128px;
  height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: var(--fbm-chat-gradient);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(37, 95, 153, 0.22);
}

.fbm-chat__start-new:hover,
.fbm-chat__start-new:focus-visible {
  filter: saturate(1.08);
}

.fbm-chat--ended .fbm-chat__form {
  display: none;
}
/* FBM WEBSITE CHAT | ENDED STATE | END */

/* FBM WEBSITE CHAT | FORM | START */
.fbm-chat__form {
  flex: 0 0 auto;
  padding: 14px;
  border-top: 1px solid rgba(226, 232, 240, 0.95);
  background: rgba(255, 255, 255, 0.98);
}

.fbm-chat__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-bottom: 10px;
}

.fbm-chat__field {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.fbm-chat__field--message {
  margin-top: 0;
}

.fbm-chat__label {
  color: #344054;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.fbm-chat__input,
.fbm-chat__textarea {
  width: 100%;
  border: 1px solid #d6dee9;
  background: #ffffff;
  color: var(--fbm-chat-text);
  font: inherit;
  font-size: 14px;
  transition:
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    background-color 0.16s ease;
}

.fbm-chat__input {
  height: 40px;
  padding: 0 12px;
  border-radius: 13px;
}

.fbm-chat__textarea {
  min-height: 68px;
  max-height: 130px;
  resize: vertical;
  padding: 11px 13px;
  border-radius: 16px;
  line-height: 1.45;
}

.fbm-chat__input:focus,
.fbm-chat__textarea:focus {
  border-color: var(--fbm-chat-accent);
  background: #ffffff;
  box-shadow: 0 0 0 4px var(--fbm-chat-accent-glow);
}

.fbm-chat__hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.fbm-chat__actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin-top: 11px;
}

.fbm-chat__action-buttons {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.fbm-chat__meta {
  min-width: 0;
  color: var(--fbm-chat-muted);
  font-size: 12px;
  font-weight: 560;
  line-height: 1.35;
}

.fbm-chat__send,
.fbm-chat__end {
  flex: 0 0 auto;
  height: 42px;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    background-color 0.16s ease,
    border-color 0.16s ease,
    color 0.16s ease;
}

.fbm-chat__send {
  min-width: 82px;
  padding: 0 17px;
  border: 0;
  background: var(--fbm-chat-gradient);
  color: #ffffff;
  box-shadow: 0 12px 26px var(--fbm-chat-accent-shadow);
}

.fbm-chat__send:hover,
.fbm-chat__send:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px var(--fbm-chat-accent-shadow);
}

.fbm-chat__end {
  min-width: 86px;
  padding: 0 14px;
  border: 1px solid #d6dee9;
  background: #ffffff;
  color: var(--fbm-chat-muted);
}

.fbm-chat__end:hover,
.fbm-chat__end:focus-visible {
  border-color: rgba(180, 35, 24, 0.34);
  color: var(--fbm-chat-danger);
  transform: translateY(-1px);
}

.fbm-chat__send[disabled],
.fbm-chat__launcher[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.fbm-chat--active .fbm-chat__fields {
  display: none;
}

/* FBM WEBSITE CHAT | ACTIVE INPUT BAR | START */
.fbm-chat--active .fbm-chat__form {
  padding: 11px 14px 12px;
  background: #ffffff;
}

.fbm-chat--active .fbm-chat__field--message {
  position: relative;
}

.fbm-chat--active .fbm-chat__field--message .fbm-chat__label {
  display: none;
}

.fbm-chat--active .fbm-chat__textarea {
  height: 52px;
  min-height: 52px;
  max-height: 52px;
  resize: none;
  overflow-y: hidden;
  padding: 14px 16px;
  border-radius: 18px;
  background: #f8fafc;
  line-height: 1.35;
}

.fbm-chat--active .fbm-chat__textarea:focus {
  outline: 0;
  border-color: var(--fbm-chat-accent);
  box-shadow: 0 0 0 3px var(--fbm-chat-accent-glow);
}

.fbm-chat--active .fbm-chat__actions {
  margin-top: 9px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.fbm-chat--active .fbm-chat__meta {
  max-width: 150px;
  color: #667085;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fbm-chat--active .fbm-chat__send {
  min-width: 92px;
}
.fbm-chat--active .fbm-chat__end {
  min-width: 86px;
}
/* FBM WEBSITE CHAT | ACTIVE INPUT BAR | END */

.fbm-chat--loading .fbm-chat__meta,
.fbm-chat--sending .fbm-chat__meta {
  color: var(--fbm-chat-accent);
}

.fbm-chat--requires-phone .fbm-chat__fields {
  grid-template-columns: 1fr;
}
/* FBM WEBSITE CHAT | FORM | END */

/* FBM WEBSITE CHAT | MOBILE | START */
@media (max-width: 640px) {
  .fbm-chat {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .fbm-chat--left {
    left: 12px;
    right: 12px;
  }

  .fbm-chat__launcher {
    height: 56px;
    margin-left: auto;
    padding-right: 18px;
  }

  .fbm-chat--left .fbm-chat__launcher {
    margin-left: 0;
    margin-right: auto;
  }

  .fbm-chat__panel,
  .fbm-chat--left .fbm-chat__panel {
    position: fixed;
    left: 8px;
    right: 8px;
    bottom: 8px;
    width: auto;
    height: min(86svh, calc(100vh - 16px));
    max-height: min(86svh, calc(100vh - 16px));
    border-radius: 22px;
    transform-origin: bottom center;
  }

  .fbm-chat__header {
    min-height: 88px;
    padding: 15px 16px;
  }

  .fbm-chat__header-text {
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: 11px;
  }

  .fbm-chat__header-text::before {
    width: 40px;
    height: 40px;
  }

  .fbm-chat__header-text::after {
    left: 28px;
    bottom: 4px;
  }

  .fbm-chat__body {
    padding: 14px 12px 12px;
  }

  .fbm-chat__messages {
    min-height: 120px;
  }

  .fbm-chat__fields {
    grid-template-columns: 1fr;
  }

  .fbm-chat__textarea {
    min-height: 68px;
  }
  .fbm-chat--active .fbm-chat__textarea {
    height: 52px;
    min-height: 52px;
    max-height: 52px;
  }
  .fbm-chat__actions {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .fbm-chat--active .fbm-chat__meta {
    max-width: 100%;
    white-space: normal;
  }

  .fbm-chat__action-buttons {
    justify-content: flex-end;
  }

  .fbm-chat__send,
  .fbm-chat__end {
    height: 40px;
  }
}
/* FBM WEBSITE CHAT | MOBILE | END */
/* FBM WEBSITE CHAT | SHARED WIDGET CSS | END */
