:root {
  --br-surface: #ffffff;
  --br-surface-2: #f7faff;
  --br-border: #e6ecf5;
  --br-text: #1f2533;
  --br-blue: #4c8dff;
  --br-green: #1fc77a;
  --br-orange: #ff8a3d;
  --br-red: #ea445a;
  --br-accent: linear-gradient(90deg, var(--br-blue) 0%, var(--br-green) 100%);
  --br-radius: 16px;
}

.br-chat {
  font-family: "Gilroy-Regular", sans-serif;
  font-weight: 400;
  --br-chat-ink: #1b2434;
  --br-chat-link: #2563eb;
  --br-chat-bot-bubble: #f1f5fc;
  --br-chat-user-bubble: linear-gradient(135deg, #5b93ff 0%, #3a6fe0 100%);
  --br-chat-head: linear-gradient(135deg, #2f6fe0 0%, #4c8dff 45%, #22b981 100%);
  --br-chat-shadow: 0 20px 52px rgba(14, 34, 74, .26);
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 2147483000;
  font-size: 16px;
  line-height: 1.52;
  color: var(--br-chat-ink);
}
.br-chat *, .br-chat *::before, .br-chat *::after {
  box-sizing: border-box;
}

.br-owl {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.br-owl__lids {
  transform-box: view-box;
  transform-origin: 32px 29px;
  transform: scaleY(0);
  -webkit-animation: br-owl-blink 6s infinite;
          animation: br-owl-blink 6s infinite;
}

@-webkit-keyframes br-owl-blink {
  0%, 90%, 100% {
    transform: scaleY(0);
  }
  93%, 95% {
    transform: scaleY(1);
  }
}

@keyframes br-owl-blink {
  0%, 90%, 100% {
    transform: scaleY(0);
  }
  93%, 95% {
    transform: scaleY(1);
  }
}
.br-owl__pupils {
  transform-box: view-box;
  transform-origin: 32px 30px;
  -webkit-animation: br-owl-glance 9s ease-in-out infinite;
          animation: br-owl-glance 9s ease-in-out infinite;
}

@-webkit-keyframes br-owl-glance {
  0%, 30%, 100% {
    transform: translateX(0);
  }
  40%, 55% {
    transform: translateX(1.6px);
  }
  70%, 85% {
    transform: translateX(-1.6px);
  }
}

@keyframes br-owl-glance {
  0%, 30%, 100% {
    transform: translateX(0);
  }
  40%, 55% {
    transform: translateX(1.6px);
  }
  70%, 85% {
    transform: translateX(-1.6px);
  }
}
.br-chat__launcher-wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.br-chat__launcher {
  position: relative;
  width: 64px;
  height: 64px;
  flex: none;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--br-chat-head);
  box-shadow: 0 10px 26px rgba(20, 46, 92, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s cubic-bezier(0.2, 0.9, 0.3, 1.3), box-shadow 0.2s ease;
}
.br-chat__launcher:hover {
  transform: scale(1.06);
  box-shadow: 0 14px 32px rgba(20, 46, 92, 0.38);
}
.br-chat__launcher:active {
  transform: scale(0.94);
  transition-duration: 0.08s;
}
.br-chat__launcher:focus-visible {
  outline: 3px solid rgba(76, 141, 255, 0.55);
  outline-offset: 3px;
}

.br-chat__launcher-face {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 4px 0;
  overflow: hidden;
  transition: opacity 0.18s ease, transform 0.22s ease;
}

.br-chat__launcher-x {
  position: absolute;
  width: 24px;
  height: 24px;
  fill: #fff;
  opacity: 0;
  transform: rotate(-90deg) scale(0.6);
  transition: opacity 0.18s ease, transform 0.22s ease;
}

.br-chat--open .br-chat__launcher-face {
  opacity: 0;
  transform: scale(0.6);
}

.br-chat--open .br-chat__launcher-x {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.br-chat__online {
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #22c55e;
  border: 2.5px solid #fff;
}
.br-chat__online::after {
  content: "";
  position: absolute;
  inset: -2.5px;
  border-radius: 50%;
  border: 2px solid #22c55e;
  -webkit-animation: br-chat-ping 2s ease-out infinite;
          animation: br-chat-ping 2s ease-out infinite;
}

@-webkit-keyframes br-chat-ping {
  0% {
    opacity: 0.85;
    transform: scale(1);
  }
  80% {
    opacity: 0;
    transform: scale(2.1);
  }
  100% {
    opacity: 0;
    transform: scale(2.1);
  }
}

@keyframes br-chat-ping {
  0% {
    opacity: 0.85;
    transform: scale(1);
  }
  80% {
    opacity: 0;
    transform: scale(2.1);
  }
  100% {
    opacity: 0;
    transform: scale(2.1);
  }
}
.br-chat--open .br-chat__online {
  opacity: 0;
  transition: opacity 0.18s ease;
}

.br-chat__peek {
  font-family: "Gilroy-Medium", sans-serif;
  font-weight: 500;
  position: absolute;
  right: 0;
  bottom: 100%;
  margin-bottom: 14px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: min(272px, 100vw - 44px);
  padding: 11px 15px;
  border-radius: 18px 18px 4px 18px;
  background: #fff;
  color: var(--br-chat-ink);
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
  box-shadow: 0 12px 30px rgba(14, 34, 74, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.4) translateY(10px);
  transform-origin: bottom right;
  pointer-events: none;
}
.br-chat__peek::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: -7px;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 0 solid transparent;
  border-top: 9px solid #fff;
  filter: drop-shadow(0 3px 2px rgba(14, 34, 74, 0.06));
}

.br-chat--peek .br-chat__peek {
  opacity: 1;
  visibility: visible;
  -webkit-animation: br-chat-peek-in 0.46s cubic-bezier(0.18, 1.25, 0.4, 1) both, br-chat-peek-bob 3.4s ease-in-out 0.5s infinite;
          animation: br-chat-peek-in 0.46s cubic-bezier(0.18, 1.25, 0.4, 1) both, br-chat-peek-bob 3.4s ease-in-out 0.5s infinite;
}

@-webkit-keyframes br-chat-peek-in {
  0% {
    opacity: 0;
    transform: scale(0.4) translateY(10px);
  }
  60% {
    opacity: 1;
    transform: scale(1.04) translateY(-2px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes br-chat-peek-in {
  0% {
    opacity: 0;
    transform: scale(0.4) translateY(10px);
  }
  60% {
    opacity: 1;
    transform: scale(1.04) translateY(-2px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@-webkit-keyframes br-chat-peek-bob {
  0%, 100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1) translateY(-4px);
  }
}
@keyframes br-chat-peek-bob {
  0%, 100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1) translateY(-4px);
  }
}
.br-chat__panel {
  position: absolute;
  right: 0;
  bottom: 68px;
  display: flex;
  flex-direction: column;
  width: 408px;
  max-width: calc(100vw - 32px);
  height: min(80vh, 800px);
  height: min(80dvh, 800px);
  max-height: calc(100vh - 116px);
  max-height: calc(100dvh - 116px);
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--br-chat-shadow);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.97);
  transform-origin: bottom right;
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.2, 0.9, 0.3, 1.2), visibility 0.22s;
}

.br-chat--open .br-chat__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.br-chat--open .br-chat__peek {
  display: none;
}

.br-chat__header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 15px;
  background: var(--br-chat-head);
  color: #fff;
  flex: none;
  overflow: hidden;
}
.br-chat__header::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -30px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28) 0%, transparent 65%);
  pointer-events: none;
}

.br-chat__avatar {
  position: relative;
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 3px 10px rgba(6, 24, 56, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 4px 0;
}

.br-chat__identity {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
}

.br-chat__title {
  font-family: "Gilroy-Bold", sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin: 0;
  line-height: 1.2;
}

.br-chat__status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13.5px;
  line-height: 1.3;
  opacity: 0.92;
  margin: 2px 0 0;
}

.br-chat__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6ef5b0;
  box-shadow: 0 0 0 0 rgba(110, 245, 176, 0.7);
  -webkit-animation: br-chat-header-ping 2.4s ease-out infinite;
          animation: br-chat-header-ping 2.4s ease-out infinite;
}

@-webkit-keyframes br-chat-header-ping {
  0% {
    box-shadow: 0 0 0 0 rgba(110, 245, 176, 0.7);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(110, 245, 176, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(110, 245, 176, 0);
  }
}

@keyframes br-chat-header-ping {
  0% {
    box-shadow: 0 0 0 0 rgba(110, 245, 176, 0.7);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(110, 245, 176, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(110, 245, 176, 0);
  }
}
.br-chat__header-actions {
  position: relative;
  margin-left: auto;
  display: flex;
  flex: none;
  gap: 3px;
}

.br-chat__icon-btn {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.br-chat__icon-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}
.br-chat__icon-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 1px;
}
.br-chat__icon-btn svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.br-chat__log {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  padding: 15px;
  background: #fbfcff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-width: thin;
}
.br-chat__log::-webkit-scrollbar {
  width: 7px;
}
.br-chat__log::-webkit-scrollbar-thumb {
  background: #d9e2ef;
  border-radius: 4px;
}

.br-chat__msg {
  display: flex;
  flex-direction: column;
  max-width: 92%;
  -webkit-animation: br-chat-in 0.24s cubic-bezier(0.2, 0.9, 0.3, 1.1) both;
          animation: br-chat-in 0.24s cubic-bezier(0.2, 0.9, 0.3, 1.1) both;
}

@-webkit-keyframes br-chat-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes br-chat-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.br-chat__msg--user {
  align-self: flex-end;
  align-items: flex-end;
}

.br-chat__msg--bot {
  align-self: flex-start;
}

.br-chat__bubble {
  padding: 11px 14px;
  border-radius: 15px;
  font-size: 15px;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}
.br-chat__bubble p {
  margin: 0 0 7px;
}
.br-chat__bubble p:last-child {
  margin-bottom: 0;
}
.br-chat__bubble ul, .br-chat__bubble ol {
  margin: 5px 0;
  padding-left: 20px;
}
.br-chat__bubble ul {
  list-style: disc outside;
}
.br-chat__bubble ol {
  list-style: decimal outside;
}
.br-chat__bubble li {
  margin-bottom: 2px;
  list-style: inherit;
}
.br-chat__bubble a,
.br-chat__bubble a:visited {
  color: var(--br-chat-link);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-family: "Gilroy-Semibold", sans-serif;
  font-weight: 600;
}
.br-chat__bubble a:hover {
  color: #174fb8;
}
.br-chat__bubble code {
  background: rgba(0, 0, 0, 0.06);
  padding: 1px 5px;
  border-radius: 5px;
  font-size: 0.9em;
}
.br-chat__bubble strong {
  font-family: "Gilroy-Bold", sans-serif;
  font-weight: 700;
}

.br-chat__msg--user .br-chat__bubble {
  background: var(--br-chat-user-bubble);
  color: #fff;
  border-bottom-right-radius: 5px;
  box-shadow: 0 4px 12px rgba(58, 111, 224, 0.28);
}
.br-chat__msg--user .br-chat__bubble a,
.br-chat__msg--user .br-chat__bubble a:visited {
  color: var(--br-chat-link);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 4px;
  padding: 0 3px;
}

.br-chat__msg--bot .br-chat__bubble {
  background: var(--br-chat-bot-bubble);
  color: var(--br-chat-ink);
  border-bottom-left-radius: 5px;
}

.br-chat__msg--error .br-chat__bubble {
  background: #fdeaec;
  color: #9c2333;
}

.br-chat__typing {
  display: flex;
  gap: 4px;
  padding: 13px 15px;
}
.br-chat__typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9db4d4;
  -webkit-animation: br-chat-blink 1.3s infinite ease-in-out both;
          animation: br-chat-blink 1.3s infinite ease-in-out both;
}
.br-chat__typing span:nth-child(2) {
  -webkit-animation-delay: 0.18s;
          animation-delay: 0.18s;
}
.br-chat__typing span:nth-child(3) {
  -webkit-animation-delay: 0.36s;
          animation-delay: 0.36s;
}

@-webkit-keyframes br-chat-blink {
  0%, 80%, 100% {
    opacity: 0.25;
    transform: scale(0.85);
  }
  40% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes br-chat-blink {
  0%, 80%, 100% {
    opacity: 0.25;
    transform: scale(0.85);
  }
  40% {
    opacity: 1;
    transform: scale(1);
  }
}
.br-chat__caret {
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 1px;
  background: currentColor;
  vertical-align: text-bottom;
  -webkit-animation: br-chat-caret 0.9s steps(2) infinite;
          animation: br-chat-caret 0.9s steps(2) infinite;
}

@-webkit-keyframes br-chat-caret {
  50% {
    opacity: 0;
  }
}

@keyframes br-chat-caret {
  50% {
    opacity: 0;
  }
}
.br-chat__feedback {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 3px;
  padding-left: 3px;
  min-height: 32px;
}

.br-chat__rate {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #9bb0cc;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.br-chat__rate:hover {
  background: #e9f0fb;
  color: var(--br-blue);
  transform: scale(1.08);
}
.br-chat__rate:focus-visible {
  outline: 2px solid var(--br-blue);
  outline-offset: 1px;
}
.br-chat__rate svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.br-chat__rate--active {
  color: #12a35f;
  background: #e2f7ee;
}

.br-chat__rate--active-down {
  color: var(--br-red);
  background: #fdeaec;
}

.br-chat__feedback-thanks {
  font-size: 13px;
  color: #12a35f;
  margin-left: 2px;
}

.br-chat__suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
  -webkit-animation: br-chat-in 0.24s cubic-bezier(0.2, 0.9, 0.3, 1.1) both;
          animation: br-chat-in 0.24s cubic-bezier(0.2, 0.9, 0.3, 1.1) both;
}

.br-chat__suggestions-label {
  width: 100%;
  margin: 2px 0 1px;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #8fa1bb;
  font-family: "Gilroy-Semibold", sans-serif;
  font-weight: 600;
}

.br-chat__chip {
  font-family: "Gilroy-Medium", sans-serif;
  font-weight: 500;
  min-height: 38px;
  max-width: 100%;
  padding: 8px 13px;
  border: 1px solid #d5e3fa;
  border-radius: 999px;
  background: #fff;
  color: #3a6fe0;
  font-size: 13.5px;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.12s ease, box-shadow 0.15s ease;
}
.br-chat__chip:hover {
  background: #eef4ff;
  border-color: #4c8dff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(76, 141, 255, 0.18);
}
.br-chat__chip:active {
  transform: translateY(0) scale(0.98);
}
.br-chat__chip:focus-visible {
  outline: 2px solid var(--br-blue);
  outline-offset: 2px;
}

.br-chat__composer {
  flex: none;
  border-top: 1px solid #eaf0f8;
  background: #fff;
  padding: 10px 12px;
}

.br-chat__input-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.br-chat__input {
  font-family: "Gilroy-Regular", sans-serif;
  font-weight: 400;
  flex: 1 1 auto;
  resize: none;
  min-width: 0;
  min-height: 48px;
  height: 48px;
  max-height: 128px;
  border: 1px solid #e0e8f4;
  border-radius: 12px;
  padding: 11px 14px;
  font-size: 16.5px;
  line-height: 1.4;
  color: var(--br-chat-ink);
  background: #f7f9fd;
  overflow-y: auto;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.br-chat__input:focus {
  outline: none;
  border-color: #4c8dff;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(76, 141, 255, 0.14);
}
.br-chat__input::-moz-placeholder {
  color: #9fb0c6;
}
.br-chat__input:-ms-input-placeholder {
  color: #9fb0c6;
}
.br-chat__input::placeholder {
  color: #9fb0c6;
}

.br-chat__send {
  width: 48px;
  height: 48px;
  flex: none;
  border: 0;
  border-radius: 12px;
  background: var(--br-chat-head);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(58, 111, 224, 0.3);
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.br-chat__send:hover:not(:disabled) {
  transform: translateY(-1px) scale(1.04);
}
.br-chat__send:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}
.br-chat__send:focus-visible {
  outline: 2px solid var(--br-blue);
  outline-offset: 2px;
}
.br-chat__send svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (max-width: 600px), (orientation: landscape) and (max-height: 600px), (orientation: landscape) and (max-width: 1180px) and (hover: none) and (pointer: coarse) {
  .br-chat {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
  }

  .br-chat__panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    width: 100dvw;
    max-width: 100vw;
    max-width: 100dvw;
    height: 100vh;
    height: 100dvh;
    min-height: 0;
    max-height: none;
    border-radius: 0;
    transform: none;
    transition: opacity 0.18s ease, visibility 0.18s;
  }

  .br-chat--open .br-chat__panel {
    transform: none;
  }

  .br-chat--open .br-chat__launcher-wrap {
    display: none;
  }

  .br-chat__header {
    min-height: 76px;
    gap: 12px;
    padding-top: calc(12px + env(safe-area-inset-top));
    padding-right: calc(8px + env(safe-area-inset-right));
    padding-bottom: 12px;
    padding-left: calc(14px + env(safe-area-inset-left));
  }

  .br-chat__avatar {
    width: 52px;
    height: 52px;
    padding: 5px 5px 0;
  }

  .br-chat__title {
    font-size: 20px;
    line-height: 1.18;
  }

  .br-chat__status {
    gap: 7px;
    margin-top: 3px;
    font-size: 15px;
    line-height: 1.25;
  }

  .br-chat__status-dot {
    width: 9px;
    height: 9px;
    flex: none;
  }

  .br-chat__header-actions {
    gap: 0;
  }

  .br-chat__icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
  .br-chat__icon-btn svg {
    width: 22px;
    height: 22px;
  }

  .br-chat__log {
    gap: 14px;
    padding-top: 16px;
    padding-right: calc(14px + env(safe-area-inset-right));
    padding-bottom: 18px;
    padding-left: calc(14px + env(safe-area-inset-left));
  }

  .br-chat__msg {
    max-width: min(94%, 760px);
  }

  .br-chat__msg--user {
    max-width: min(88%, 680px);
  }

  .br-chat__bubble {
    padding: 11px 14px;
    border-radius: 17px;
    font-size: 15px;
    line-height: 1.5;
  }
  .br-chat__bubble p {
    margin-bottom: 9px;
  }
  .br-chat__bubble ul,
.br-chat__bubble ol {
    margin: 7px 0;
    padding-left: 22px;
  }
  .br-chat__bubble li {
    margin-bottom: 4px;
  }

  .br-chat__bubble p,
.br-chat__bubble li {
    font-size: 15px;
    line-height: 1.5;
  }

  .br-chat__feedback {
    gap: 2px;
    min-height: 44px;
    margin-top: 4px;
    padding-left: 1px;
  }

  .br-chat__rate {
    width: 44px;
    height: 44px;
    border-radius: 11px;
  }
  .br-chat__rate svg {
    width: 20px;
    height: 20px;
  }

  .br-chat__feedback-thanks {
    font-size: 14.5px;
  }

  .br-chat__suggestions {
    gap: 8px;
    width: 100%;
    margin-top: 1px;
  }

  .br-chat__suggestions-label {
    margin: 3px 0 1px;
    font-size: 12.5px;
  }

  .br-chat__chip {
    height: auto !important;
    min-height: 44px !important;
    max-height: none !important;
    padding: 10px 14px;
    font-size: 14.5px !important;
    line-height: 1.35;
    white-space: normal;
  }

  .br-chat__composer {
    padding-top: 10px;
    padding-right: calc(12px + env(safe-area-inset-right));
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    padding-left: calc(12px + env(safe-area-inset-left));
  }

  .br-chat__input-row {
    gap: 8px;
  }

  .br-chat__input {
    min-height: 56px;
    height: 56px;
    max-height: 144px;
    border-radius: 16px;
    padding: 14px 15px;
    font-size: 18px;
    line-height: 1.35;
  }

  .br-chat__send {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }
  .br-chat__send svg {
    width: 23px;
    height: 23px;
  }

  .br-chat__launcher {
    width: 72px;
    height: 72px;
  }

  .br-chat__launcher-face {
    width: 54px;
    height: 54px;
  }

  .br-chat__launcher-x {
    width: 28px;
    height: 28px;
  }

  .br-chat__online {
    right: 5px;
    bottom: 5px;
    width: 16px;
    height: 16px;
  }

  .br-chat__peek {
    max-width: min(280px, 100vw - 36px);
    padding: 11px 14px;
    font-size: 14.5px;
    line-height: 1.38;
  }
}
html.br-chat-page--locked,
html.br-chat-page--locked body {
  overflow: hidden !important;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

html.br-chat-page--locked body {
  min-width: 0 !important;
  width: 100% !important;
}

@media (prefers-reduced-motion: reduce) {
  .br-chat *,
.br-chat *::before,
.br-chat *::after {
    -webkit-animation-duration: 0.001ms !important;
            animation-duration: 0.001ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
