/* POXY Support Panel — Apple-inspired · bottom sheet mobile · sidebar desktop */

:root {
  --poxy-surface: rgba(28, 28, 30, 0.95);
  --poxy-text: #ffffff;
  --poxy-text-body: rgba(255, 255, 255, 0.6);
  --poxy-text-muted: rgba(255, 255, 255, 0.3);
  --poxy-text-subtle: rgba(255, 255, 255, 0.25);
  --poxy-border: rgba(255, 255, 255, 0.08);
  --poxy-border-light: rgba(255, 255, 255, 0.1);
  --poxy-hover: rgba(255, 255, 255, 0.07);
  --poxy-ease: cubic-bezier(0.32, 0, 0.15, 1);
  --poxy-font: -apple-system, 'SF Pro Display', 'Helvetica Neue', sans-serif;
}

.st-nav-icon-btn#stNavSupport { position: relative; }

/* ── Overlay ── */
.poxy-support-overlay {
  position: fixed;
  inset: 0;
  z-index: 11600;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  font-family: var(--poxy-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.poxy-support-overlay.is-open { pointer-events: auto; }
.poxy-support-overlay[hidden] { display: none !important; }

.poxy-support-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 300ms var(--poxy-ease);
}
.poxy-support-overlay.is-open .poxy-support-backdrop { opacity: 1; }

/* ── Panel shell (.poxy-support-drawer) ── */
.poxy-support-drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 85vh;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  background: var(--poxy-surface);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid var(--poxy-border-light);
  border-bottom: none;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.6);
  transform: translateY(100%);
  opacity: 1;
  transition: transform 300ms var(--poxy-ease);
  overflow: hidden;
  will-change: transform;
  font-family: var(--poxy-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.poxy-support-overlay.is-open .poxy-support-drawer { transform: translateY(0); }
.poxy-support-drawer.is-dragging { transition: none; }

/* Drag handle — mobile only */
.poxy-support-drag-handle {
  display: none;
  flex-shrink: 0;
  width: 40px;
  height: 4px;
  margin: 10px auto 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: grab;
  touch-action: none;
}
.poxy-support-drag-handle:active { cursor: grabbing; }

/* ── Desktop: right sidebar ── */
@media (min-width: 769px) {
  .poxy-support-overlay {
    align-items: stretch;
    justify-content: flex-end;
    padding: 0;
  }
  .poxy-support-backdrop {
    display: none;
  }
  .poxy-support-drawer {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    left: auto;
    width: 420px;
    max-width: 100vw;
    height: auto;
    max-height: none;
    border-radius: 20px 0 0 20px;
    border: none;
    border-left: 1px solid var(--poxy-border-light);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    opacity: 1;
    transition: transform 300ms var(--poxy-ease);
  }
  .poxy-support-overlay.is-open .poxy-support-drawer {
    transform: translateX(0);
  }
  .poxy-support-drag-handle { display: none !important; }
}

/* ── Scrollbars ── */
.poxy-support-drawer ::-webkit-scrollbar { width: 3px; height: 3px; }
.poxy-support-drawer ::-webkit-scrollbar-track { background: transparent; }
.poxy-support-drawer ::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}
.poxy-support-drawer {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

/* ── Header ── */
.poxy-support-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px 16px;
  border-bottom: 1px solid var(--poxy-border);
  flex-shrink: 0;
  flex-grow: 0;
  background: transparent;
}
.poxy-support-head h2 {
  margin: 0;
  font-family: var(--poxy-font);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--poxy-text);
}
.poxy-support-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: var(--poxy-text);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms ease;
}
.poxy-support-close:hover { background: rgba(255, 255, 255, 0.2); }

/* ── Tabs ── */
.poxy-support-tabs {
  display: flex;
  gap: 0;
  padding: 0 16px;
  border-bottom: 1px solid var(--poxy-border);
  flex-shrink: 0;
  flex-grow: 0;
  background: transparent;
}
.poxy-support-tab {
  flex: 1;
  padding: 14px 8px;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--poxy-font);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: none;
  cursor: pointer;
  transition: color 120ms ease, border-color 120ms ease;
  margin-bottom: -1px;
}
.poxy-support-tab:hover { color: rgba(255, 255, 255, 0.7); }
.poxy-support-tab.active {
  color: var(--poxy-text);
  font-weight: 600;
  border-bottom-color: #ffffff;
}

/* ── Body (.poxy-support-body) — flex content slot ── */
.poxy-support-body {
  flex: 1 1 0%;
  min-height: 0;
  max-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: transparent;
}
/* [hidden] must win over display:flex on tabs/panels */
.poxy-support-tabs[hidden],
#supportMainTabs[hidden],
#supportPanelsWrap[hidden] {
  display: none !important;
}
/* Chat mode — tabs are OUTSIDE .poxy-support-body (sibling), hide via drawer class */
.poxy-support-drawer.is-chat-active .poxy-support-tabs,
.poxy-support-drawer.is-chat-active #supportMainTabs,
.poxy-support-drawer.is-chat-active #supportPanelsWrap,
.poxy-support-body.is-chat-active #supportPanelsWrap {
  display: none !important;
}
.poxy-support-body.is-chat-active,
.poxy-support-drawer.is-chat-active .poxy-support-body {
  flex: 1 1 0%;
  min-height: 0;
  overflow: hidden;
}
#supportPanelsWrap {
  flex: 1 1 0%;
  min-height: 0;
  max-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.poxy-support-panel {
  display: none;
  position: relative;
  flex: 1;
  min-height: 0;
  width: 100%;
  overflow-y: auto;
  padding: 16px 18px 20px;
  -webkit-overflow-scrolling: touch;
  opacity: 1;
  font-weight: 400;
}
.poxy-support-panel[data-support-panel="faq"],
.poxy-support-panel[data-support-panel="new"] {
  padding: 20px 22px 24px;
}
.poxy-support-panel.is-visible,
.support-tab-active {
  display: block;
  animation: fadeIn 120ms ease;
}
.poxy-support-panel[hidden] { display: none !important; }

/* ── FAQ ── */
.poxy-support-search {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--poxy-border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--poxy-text);
  font-family: var(--poxy-font);
  font-size: 14px;
  font-weight: 400;
  outline: none;
  margin-bottom: 14px;
  transition: border-color 150ms ease;
}
.poxy-support-search::placeholder { color: rgba(255, 255, 255, 0.3); font-weight: 300; }
.poxy-support-search:focus { border-color: rgba(255, 255, 255, 0.2); }

.poxy-support-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.poxy-support-cat {
  padding: 6px 14px;
  border-radius: 20px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--poxy-font);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: none;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
}
.poxy-support-cat:hover { background: rgba(255, 255, 255, 0.1); }
.poxy-support-cat.active {
  background: rgba(255, 255, 255, 0.15);
  color: var(--poxy-text);
  font-weight: 400;
}

.poxy-support-faq-item {
  border: none;
  border-radius: 12px;
  margin-bottom: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  transition: background 150ms ease;
}
.poxy-support-faq-item:hover { background: var(--poxy-hover); }
.poxy-support-faq-item.open { background: var(--poxy-hover); }

.poxy-support-faq-q {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  border: none;
  background: transparent;
  color: var(--poxy-text);
  font-family: var(--poxy-font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.poxy-support-faq-q span.ico {
  color: #ffffff;
  font-size: 11px;
  flex-shrink: 0;
  transition: transform 200ms ease;
}
.poxy-support-faq-a {
  display: block;
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  font-family: var(--poxy-font);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--poxy-text-body);
  transition: max-height 200ms ease, padding 200ms ease, opacity 200ms ease;
  opacity: 0;
}
.poxy-support-faq-item.open .poxy-support-faq-a {
  max-height: 600px;
  padding: 0 16px 14px;
  opacity: 1;
}
.poxy-support-faq-item.open .poxy-support-faq-q span.ico { transform: rotate(180deg); }

/* ── Tickets list ── */
.poxy-support-ticket {
  display: block;
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  border-radius: 12px;
  border: none;
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 8px;
  cursor: pointer;
  transition: background 150ms ease;
}
.poxy-support-ticket:hover { background: var(--poxy-hover); }
.poxy-support-ticket-subj {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--poxy-text);
  margin-bottom: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.poxy-support-ticket-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  font-weight: 300;
  color: var(--poxy-text-muted);
}
.poxy-support-status {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
}
.poxy-support-status.open {
  background: rgba(52, 211, 153, 0.15);
  color: #34d399;
}
.poxy-support-status.in_progress {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
}
.poxy-support-status.closed {
  background: rgba(255, 255, 255, 0.1);
  color: var(--poxy-text-muted);
}

/* ── Forms (New Ticket) ── */
.poxy-support-field { margin-bottom: 16px; }
.poxy-support-label {
  display: block;
  font-family: var(--poxy-font);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}
.poxy-support-input,
.poxy-support-textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--poxy-border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--poxy-text);
  font-family: var(--poxy-font);
  font-size: 14px;
  font-weight: 400;
  outline: none;
  transition: border-color 150ms ease;
}
.poxy-support-textarea { min-height: 100px; resize: vertical; }
.poxy-support-input:focus,
.poxy-support-textarea:focus { border-color: rgba(255, 255, 255, 0.2); }

.poxy-support-attach-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.poxy-support-attach-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--poxy-border);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--poxy-font);
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
}
.poxy-support-attach-btn:hover {
  background: var(--poxy-hover);
  color: var(--poxy-text);
}
.poxy-support-attach-preview {
  display: none;
  margin-top: 10px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--poxy-border);
  background: rgba(255, 255, 255, 0.04);
}
.poxy-support-attach-preview.visible { display: block; }
.poxy-support-attach-preview img {
  max-width: 100%;
  max-height: 140px;
  border-radius: 8px;
  display: block;
  margin-bottom: 8px;
  object-fit: contain;
}
.poxy-support-attach-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  font-weight: 300;
  color: var(--poxy-text-muted);
}
.poxy-support-attach-remove {
  border: none;
  background: transparent;
  color: #f87171;
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
}
.poxy-support-submit {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: #ffffff;
  color: #000000;
  font-family: var(--poxy-font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  cursor: pointer;
  transition: background 150ms ease, opacity 150ms ease;
}
.poxy-support-submit:hover:not(:disabled) { background: rgba(255, 255, 255, 0.9); }
.poxy-support-submit:disabled { opacity: 0.5; cursor: not-allowed; }

/* ── Chat view (.poxy-support-chat / #supportChatView) ── */
.poxy-support-chat,
#supportChatView {
  flex: 1 1 0%;
  min-height: 0;
  max-height: 100%;
  display: none;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transition: opacity 120ms ease;
  background: transparent;
}
.poxy-support-drawer.is-chat-active .poxy-support-body {
  position: relative;
  flex: 1 1 0%;
  min-height: 0;
  overflow: hidden;
}
.poxy-support-drawer.is-chat-active #supportChatView.is-active-view,
.poxy-support-body.is-chat-active #supportChatView.is-active-view {
  position: absolute;
  inset: 0;
  display: flex !important;
  flex-direction: column;
  overflow: hidden;
  opacity: 1;
  max-height: none;
  height: auto;
  /* anchor for absolutely positioned compose bar */
  isolation: isolate;
}
.poxy-support-drawer.is-chat-active .poxy-support-chat-head {
  flex: 0 0 auto;
}
.poxy-support-drawer.is-chat-active .poxy-support-messages,
.poxy-support-drawer.is-chat-active #supportChatMessages {
  flex: 1 1 0%;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: var(--support-compose-h, 80px);
}
.poxy-support-drawer.is-chat-active .poxy-support-compose,
.poxy-support-drawer.is-chat-active #supportChatCompose {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  flex: none;
  display: flex !important;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  visibility: visible;
  min-height: 56px;
  z-index: 10;
  background: rgba(44, 44, 48, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
  padding-bottom: max(12px, env(safe-area-inset-bottom, 0px));
}
.poxy-support-drawer.is-chat-active .poxy-support-compose-input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 10px 14px;
}
.poxy-support-chat.is-visible,
#supportChatView.is-visible { opacity: 1; }
.poxy-support-chat[hidden],
#supportChatView[hidden] { display: none !important; }

.poxy-support-chat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--poxy-border);
  flex: 0 0 auto;
  flex-shrink: 0;
  background: transparent;
}
.poxy-support-back {
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--poxy-font);
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 20px;
  transition: background 150ms ease, color 150ms ease;
}
.poxy-support-back:hover {
  background: var(--poxy-hover);
  color: var(--poxy-text);
}
.poxy-support-chat-info { flex: 1; min-width: 0; }
.poxy-support-chat-subj {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--poxy-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ── Messages (.poxy-support-messages) — sole scroll region ── */
.poxy-support-messages,
#supportChatMessages {
  flex: 1 1 0%;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  -webkit-overflow-scrolling: touch;
}

.poxy-support-msg {
  max-width: 85%;
  display: flex;
  flex-direction: column;
}
.poxy-support-msg--static { animation: none; }
.poxy-support-msg--enter {
  animation: poxySupportMsgIn 200ms ease-out forwards;
}
@keyframes poxySupportMsgIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.poxy-support-msg.player { align-self: flex-end; align-items: flex-end; }
.poxy-support-msg.staff { align-self: flex-start; align-items: flex-start; }
.poxy-support-msg.auto { align-self: center; align-items: center; max-width: 90%; }

.poxy-support-bubble {
  padding: 10px 14px;
  font-family: var(--poxy-font);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  word-break: break-word;
}

/* Player — right */
.poxy-support-msg.player .poxy-support-bubble {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px 18px 4px 18px;
  color: var(--poxy-text);
}

/* Staff — left */
.poxy-support-msg.staff .poxy-support-bubble {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--poxy-border);
  border-radius: 18px 18px 18px 4px;
  color: var(--poxy-text);
}

/* Auto — no bubble */
.poxy-support-msg.auto .poxy-support-bubble {
  background: none;
  border: none;
  border-radius: 0;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 300;
  font-style: italic;
  color: var(--poxy-text-muted);
  text-align: center;
}

.poxy-support-msg img {
  max-width: 100%;
  border-radius: 12px;
  margin-top: 6px;
  display: block;
  cursor: pointer;
}
.poxy-support-msg-time {
  font-size: 11px;
  font-weight: 300;
  color: var(--poxy-text-subtle);
  margin-top: 4px;
  padding: 0 4px;
}
.poxy-support-msg.player .poxy-support-msg-time { text-align: right; }

/* ── Input bar (.poxy-support-compose / #supportChatCompose) — pinned bottom ── */
.poxy-support-compose,
#supportChatCompose {
  flex: 0 0 auto;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(28, 28, 30, 0.95);
}
.poxy-support-compose .poxy-support-attach-preview {
  flex-shrink: 0;
}
.poxy-support-compose.is-disabled .poxy-support-compose-input,
.poxy-support-compose.is-disabled .poxy-support-send,
.poxy-support-compose.is-disabled .poxy-support-attach-btn {
  opacity: 0.45;
  pointer-events: none;
}
.poxy-support-compose-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.poxy-support-compose .poxy-support-attach-btn {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.4);
  padding: 8px;
  border-radius: 50%;
}
.poxy-support-compose .poxy-support-attach-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
}
.poxy-support-compose-input {
  flex: 1;
  min-width: 0;
  min-height: 36px;
  padding: 10px 4px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--poxy-text);
  font-family: var(--poxy-font);
  font-size: 14px;
  font-weight: 400;
  outline: none;
  resize: none;
  max-height: 80px;
  line-height: 1.4;
}
.poxy-support-compose-input::placeholder {
  color: var(--poxy-text-muted);
  font-weight: 300;
}
.poxy-support-compose-input:focus { outline: none; }

.poxy-support-send {
  flex-shrink: 0;
  padding: 10px 18px;
  border: none;
  border-radius: 20px;
  background: #ffffff;
  color: #000000;
  font-family: var(--poxy-font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  cursor: pointer;
  transition: background 150ms ease, opacity 150ms ease;
}
.poxy-support-send:hover:not(:disabled) { background: rgba(255, 255, 255, 0.9); }
.poxy-support-send:disabled { opacity: 0.45; cursor: not-allowed; }

.poxy-support-empty {
  text-align: center;
  padding: 32px 16px;
  color: var(--poxy-text-muted);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
}
.poxy-support-err {
  color: #f87171;
  font-size: 13px;
  font-weight: 400;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .poxy-support-drag-handle { display: block; }
}

/* Chat mode: drop transform so fixed compose anchors to viewport (not transformed drawer) */
.poxy-support-overlay.is-open .poxy-support-drawer.is-chat-active {
  transform: none;
}

/* Desktop: compose pinned to viewport bottom-right */
@media (min-width: 769px) {
  .poxy-support-drawer.is-chat-active #supportChatCompose {
    position: fixed;
    right: 0;
    bottom: 0;
    left: auto;
    width: 420px;
    max-width: 100vw;
    z-index: 11602;
  }
}
