/* Drag bars so tables, chat, and staff columns can be sized by hand. */
.display-frame {
  display: flex;
  flex-direction: column;
  flex: none;
  min-width: 0;
  width: 100%;
  position: relative;
}
.display-frame.is-sized > .table-scroll,
.display-frame.is-sized > [data-live-visitors-host] {
  height: var(--display-h);
  max-height: var(--display-h);
  overflow: auto;
}
.display-frame.is-sized > .visit-profile {
  height: var(--display-h);
  max-height: var(--display-h);
  overflow: hidden;
}
.display-handle {
  appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
  min-height: 0;
  background: transparent;
  color: inherit;
  touch-action: none;
  flex: none;
  box-shadow: none;
  font-size: 0;
  line-height: 0;
}
.display-handle.is-s {
  height: 1.15rem;
  width: 100%;
  cursor: ns-resize;
}
.display-handle.is-s::after {
  content: "";
  display: block;
  width: 2.75rem;
  height: 0.28rem;
  margin: 0.28rem auto 0;
  border-radius: 999px;
  background: color-mix(in srgb, currentColor 42%, transparent);
}
.display-handle.is-e {
  position: absolute;
  inset-block: 0.6rem;
  inset-inline-end: -0.4rem;
  width: 0.85rem;
  cursor: ew-resize;
  z-index: 8;
}
.display-handle.is-e::after {
  content: "";
  position: absolute;
  inset-block: 12%;
  inset-inline-start: 0.3rem;
  width: 0.22rem;
  border-radius: 999px;
  background: color-mix(in srgb, currentColor 45%, transparent);
}
.display-handle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 1px;
}
html body .display-handle,
html body button.display-handle,
html body .live-chat .live-chat-handle {
  min-height: 0;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
}
html body .display-handle.is-s {
  width: 100%;
  height: 1.15rem;
}
aside.side > button.display-handle {
  color: #f3eadc;
}
body.is-display-dragging {
  user-select: none;
}
body.is-display-dragging iframe,
body.is-display-dragging textarea {
  pointer-events: none;
}
