.sbchat-wrap {
  overflow: visible !important;
  height: auto !important;
}

.sbchat-page {
  width: 100%;
  min-height: calc(100vh - 20px);
  padding: 20px 10px 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  background: linear-gradient(180deg, #f6f8fb 0%, #eef3f8 100%);
}

.sbchat-sidebar-slot {
  flex: 0 0 auto;
  width: 450px;
  min-width: 340px;
  max-width: 1200px;
  height: calc(100vh - 245px);
}

.sbchat-sidebar {
  width: 100%;
  min-width: 340px;
  /* height: calc(100vh - 135px); */
  height: calc(100vh - 245px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  /* padding: 0 8px 20px 32px; */
  box-sizing: border-box;
}

.sbchat-sidebar.is-sticky {
  position: fixed;
  top: 135px;
  left: 0;
  background: rgba(241, 246, 252, 0.96);
  border-radius: 0 24px 24px 0;
  box-shadow: 0 12px 40px rgba(31, 59, 87, 0.16), 0 2px 8px rgba(31, 59, 87, 0.08);
  animation: sbchat-sticky-in 0.28s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes sbchat-sticky-in {
  from {
    opacity: 0.7;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sbchat-sidebar-bezel {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: padding 0.28s ease;
}

.sbchat-sidebar.is-sticky .sbchat-sidebar-bezel {
  padding: 10px;
}

.sbchat-resizer {
  flex: 0 0 8px;
  align-self: stretch;
  cursor: col-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.sbchat-resizer::after {
  content: "";
  width: 4px;
  height: 60px;
  border-radius: 2px;
  background: #c8d8e8;
  margin-left: 9px;
  margin-bottom: 300px;
}

.sbchat-resizer:hover::after,
.sbchat-resizer.is-resizing::after {
  background: #5d8ec2;
}

.sbchat-preview-area {
  flex: 1;
  min-width: 0;
  padding: 0px 0px 20px 8px;
  box-sizing: border-box;
}

.sbchat-panel {
  min-width: 0;
  min-height: 0;
  border: 1px solid #d5deea;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(31, 59, 87, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* padding: 10px; */
  padding-left: 10px;
  padding-right: 10px;
}

.sbchat-preview-panel {
  min-height: 230px;
  height: auto;
}

.sbchat-tab-panel {
  flex: 1;
  min-height: 0;
}

.sbchat-tab-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 12px 16px !important;
}

.sbchat-header-group {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0 8px;
  border-right: 1px solid #e0e8f0;
}

.sbchat-header-group:first-child {
  margin-left: 7px;
  padding-left: 0;
}

.sbchat-header-group:last-child {
  border-right: none;
}

.sbchat-main-tab {
  height: 36px;
  padding: 0 18px;
  border: 1px solid #cad8e7;
  border-radius: 10px;
  background: #ffffff;
  color: #31506d;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.sbchat-main-tab.is-active {
  border-color: #18344f;
  background: #18344f;
  color: #ffffff;
}

.sbchat-code-header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sbchat-main-tab-body {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.sbchat-main-tab-body[hidden] {
  display: none !important;
}

.sbchat-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid #e7edf5;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  flex: 0 0 auto;
}

.sbchat-panel-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #18344f;
}

.sbchat-panel-subtitle {
  margin: 10px 0 0;
  font-size: 12px;
  color: #708399;
}

.sbchat-panel-stack {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sbchat-response-body {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: 16px;
  padding-right: 12px;
}

.sbchat-message {
  max-width: 88%;
  margin-bottom: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  line-height: 1.6;
  font-size: 14px;
  word-break: break-word;
}

.sbchat-message.assistant {
  background: #eef5ff;
  color: #193450;
  border: 1px solid #d5e5ff;
}

.sbchat-message.user {
  margin-left: auto;
  background: #18344f;
  color: #ffffff;
  border: 1px solid #18344f;
}

.sbchat-code-toolbar {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.sbchat-code-tabs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.sbchat-code-tab {
  min-width: 64px;
  height: 36px;
  padding: 0 14px;
  border: 1px solid #cad8e7;
  border-radius: 10px;
  background: #ffffff;
  color: #31506d;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.sbchat-code-tab.is-active {
  border-color: #18344f;
  background: #18344f;
  color: #ffffff;
}

.sbchat-apply-button {
  height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 10px;
  background: #2d5d88;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.sbchat-apply-button:hover {
  background: #244e72;
}

.sbchat-code-panels {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.sbchat-code-panel {
  display: none;
}

.sbchat-code-panel.is-active {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.sbchat-code-editor {
  flex: 1;
  min-height: 0;
  width: 100%;
  overflow: hidden;
}

.sbchat-preview-body {
  overflow: visible;
  padding: 0;
  background: #f4f7fb;
}

.sbchat-preview-frame {
  width: 100%;
  height: calc(100vh - 350px);
  min-height: 400px;
  display: block;
  border: 0;
  background: #ffffff;
  overflow: auto;
}

.sbchat-input-panel {
  flex: 0 0 auto;
  border: 1px solid #cfdbe8;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 20px 44px rgba(31, 59, 87, 0.1);
  padding: 18px;
  box-sizing: border-box;
}

.sbchat-input-label {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #32506d;
}

.sbchat-input-actions {
  height: 100%;
}

.sbchat-upload-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.sbchat-image-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.sbchat-upload-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 14px;
  border: 1px solid #c7d6e6;
  border-radius: 12px;
  background: #f7fbff;
  color: #274969;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.sbchat-upload-button:hover {
  background: #eef5fd;
}

.sbchat-upload-hint {
  font-size: 12px;
  color: #7b8ea2;
}

.sbchat-image-preview {
  margin-bottom: 14px;
}

.sbchat-image-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border: 1px solid #d7e2ee;
  border-radius: 14px;
  background: #f8fbfe;
}

.sbchat-preview-image {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
  background: #e8eef5;
}

.sbchat-image-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sbchat-image-name {
  max-width: 240px;
  font-size: 13px;
  color: #26445f;
  word-break: break-all;
}

.sbchat-image-remove {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: #b14c4c;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.sbchat-image-remove:hover {
  color: #923737;
}

.sbchat-input-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.sbchat-input {
  width: 100%;
  min-height: 120px;
  max-height: 240px;
  padding: 16px 18px;
  border: 1px solid #d2deea;
  border-radius: 16px;
  resize: vertical;
  font-size: 15px;
  line-height: 1.6;
  box-sizing: border-box;
  outline: none;
}

.sbchat-input:focus {
  border-color: #5d8ec2;
  box-shadow: 0 0 0 4px rgba(93, 142, 194, 0.14);
}

.sbchat-send-button {
  /* height: 52px; */
  height: 100%;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  background: #18344f;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.sbchat-send-button:hover {
  background: #244969;
}

/* fixed-nav 슬라이드 아웃/인 애니메이션 (sbchat 전용) */
#sbchatFixedNav {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

#sbchatFixedNav.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-24px);
}

.sbchat-nav-toggle {
  position: fixed;
  bottom: 5%;
  left: 0;
  z-index: 10000;
  width: 15px;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: 0 8px 8px 0;
  background: rgba(24, 52, 79, 0.72);
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, opacity 0.25s ease, transform 0.25s ease;
}

.sbchat-nav-toggle:hover {
  background: rgba(24, 52, 79, 0.95);
}

.sbchat-nav-toggle.is-collapsed {
  transform: scaleX(-1);
}

/* 포커스 시 토글 버튼도 함께 흐려짐 */
.sbchat-nav-toggle.nav-toggle-hidden {
  opacity: 0.3;
}

@media (max-width: 900px) {
  .sbchat-page {
    flex-direction: column;
    height: auto;
    overflow: auto;
    padding: 100px 20px 40px;
  }

  .sbchat-sidebar {
    width: 100% !important;
    max-width: 100%;
  }

  .sbchat-resizer {
    display: none;
  }

  .sbchat-preview-area {
    padding: 0;
    height: 600px;
  }

  .sbchat-tab-panel {
    flex: none;
    height: 450px;
  }
}

@media (max-width: 720px) {
  .sbchat-input-box {
    grid-template-columns: 1fr;
  }

  .sbchat-send-button,
  .sbchat-apply-button {
    width: 100%;
  }

  .sbchat-code-toolbar {
    align-items: stretch;
  }
}

/* ── 아이콘 네비게이션 ─────────────────────────────────────────────────────── */

.sbchat-main-panel {
  flex: 1;
  min-height: 0;
  flex-direction: row !important;
  padding: 0 !important;
}

.sbchat-icon-nav {
  flex: 0 0 44px;
  width: 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-right: 1px solid #e7edf5;
  background: linear-gradient(180deg, #f8fbff 0%, #f0f5fb 100%);
  border-radius: 20px 0 0 20px;
}

.sbchat-icon-nav-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.sbchat-icon-nav-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sbchat-icon-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: #6a85a0;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  padding: 0;
}

.sbchat-icon-btn:hover {
  background: #e8f0f8;
  color: #18344f;
}

.sbchat-icon-btn.is-active {
  background: #18344f;
  color: #ffffff;
}

/* ── 콘텐츠 뷰 영역 ───────────────────────────────────────────────────────── */

.sbchat-view-area {
  flex: 1;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.sbchat-view {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.sbchat-view[hidden] {
  display: none !important;
}

/* 코드 뷰 헤더 (HTML / CSS / JS 탭 + 미리보기 적용) */
.sbchat-code-view-header {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  border-bottom: 1px solid #e7edf5;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  flex-wrap: wrap;
}

.sbchat-code-panels {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.sbchat-code-panel {
  display: none;
}

.sbchat-code-panel.is-active {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

/* ── 설정 모달 ────────────────────────────────────────────────────────────── */

.sbchat-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 24, 40, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
}

.sbchat-modal-overlay[hidden] {
  display: none !important;
}

.sbchat-modal {
  width: 420px;
  max-width: calc(100vw - 40px);
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(10, 24, 40, 0.22), 0 4px 16px rgba(10, 24, 40, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: sbchat-modal-in 0.22s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes sbchat-modal-in {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(-8px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.sbchat-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px 16px;
  border-bottom: 1px solid #e7edf5;
}

.sbchat-modal-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #18344f;
}

.sbchat-modal-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #7b8ea2;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  padding: 0;
}

.sbchat-modal-close:hover {
  background: #f0f4f8;
  color: #18344f;
}

.sbchat-modal-body {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sbchat-modal-footer {
  display: flex;
  justify-content: flex-end;
  padding: 14px 22px 20px;
  border-top: 1px solid #e7edf5;
}

.sbchat-modal-save {
  height: 40px;
  padding: 0 24px;
  border: none;
  border-radius: 10px;
  background: #18344f;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease;
}

.sbchat-modal-save:hover {
  background: #244969;
}

/* ── 모달 폼 요소 ─────────────────────────────────────────────────────────── */

.sbchat-form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sbchat-form-label {
  font-size: 13px;
  font-weight: 700;
  color: #32506d;
}

.sbchat-key-input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sbchat-form-input {
  flex: 1;
  height: 40px;
  padding: 10px 12px;
  border: 1px solid #cfdbe8;
  border-radius: 10px;
  font-size: 14px;
  color: #18344f;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.sbchat-form-input:focus {
  border-color: #5d8ec2;
  box-shadow: 0 0 0 3px rgba(93, 142, 194, 0.15);
}

.sbchat-form-select {
  width: 100%;
  height: 40px;
  padding: 0 36px 0 12px;
  border: 1px solid #cfdbe8;
  border-radius: 10px;
  font-size: 14px;
  color: #18344f;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2332506d' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  box-sizing: border-box;
  transition: border-color 0.15s ease;
}

.sbchat-form-select:focus {
  border-color: #5d8ec2;
}

.sbchat-form-select:disabled {
  background: #f5f7fa;
  color: #9aacbf;
  cursor: default;
}

.sbchat-form-hint {
  margin: 2px 0 0;
  font-size: 12px;
  color: #8fa3b8;
  line-height: 1.5;
}

/* ── 프로바이더 뱃지 ──────────────────────────────────────────────────────── */

.sbchat-provider-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.sbchat-provider-badge:empty {
  display: none;
}

.sbchat-provider-badge.is-detected.provider-anthropic {
  background: #fffbe6;
  color: #8a6000;
  border: 1px solid #f0d060;
}

.sbchat-provider-badge.is-detected.provider-openai {
  background: #e8f7ee;
  color: #1a6e3c;
  border: 1px solid #6fcf97;
}

.sbchat-provider-badge.is-unknown {
  background: #fff0f0;
  color: #b14c4c;
  border: 1px solid #f0a0a0;
}

/* ── BYOK 모달 추가 요소 ──────────────────────────────────────────────────── */

.sbchat-modal-title-sub {
  font-size: 13px;
  font-weight: 400;
  color: #7b8ea2;
  margin-left: 2px;
}

.sbchat-modal-desc {
  margin: 0;
  font-size: 13px;
  color: #5a7491;
  line-height: 1.6;
  padding-bottom: 14px;
  border-bottom: 1px solid #e7edf5;
}

.sbchat-modal-warning {
  margin: 0;
  font-size: 12px;
  color: #7b8ea2;
  line-height: 1.6;
  background: #f8fafc;
  border: 1px solid #e7edf5;
  border-radius: 8px;
  padding: 10px 12px;
}

.sbchat-form-hint a {
  color: #5d8ec2;
  text-decoration: none;
}

.sbchat-form-hint a:hover {
  text-decoration: underline;
}

.sbchat-notice {
  margin: 10px 0 0;
  font-size: 12px;
  color: #8fa3b8;
  line-height: 1.6;
}

.sbchat-key-mismatch {
  margin: 6px 0 0;
  font-size: 12px;
  color: #c0392b;
  background: #fdf0ef;
  border: 1px solid #f0c4c0;
  border-radius: 6px;
  padding: 7px 10px;
  line-height: 1.5;
}

/* ── AI Assistant 헤더 ────────────────────────────────────────────────────── */

.sbchat-ai-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 14px;
  background: #f0f4f8;
  border-bottom: 1px solid #e0e8f0;
  flex: 0 0 auto;
}

.sbchat-ai-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #32506d;
}

.sbchat-ai-header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sbchat-ai-model {
  font-size: 11px;
  font-weight: 500;
  color: #7b8ea2;
  background: #e4ecf5;
  border-radius: 5px;
  padding: 2px 8px;
}

.sbchat-clear-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: #8fa3b8;
  cursor: pointer;
  padding: 0;
  transition: background 0.15s, color 0.15s;
}

.sbchat-clear-btn:hover {
  background: #dce8f5;
  color: #32506d;
}

/* ── 메시지 텍스트 래퍼 ───────────────────────────────────────────────────── */

.sbchat-message-text {
  white-space: pre-wrap;
}

/* ── 트레이스 섹션 ────────────────────────────────────────────────────────── */

.sbchat-trace {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid #c8d9ee;
}

.sbchat-trace-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  color: #7b8ea2;
  cursor: pointer;
  user-select: none;
  padding: 3px 7px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.sbchat-trace-toggle:hover {
  background: #dce8f5;
  color: #32506d;
}

.sbchat-trace-content {
  margin-top: 6px;
  border: 1px solid #d5e3f0;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f9fd;
  font-size: 12px;
  white-space: normal;
}

.sbchat-trace-content[hidden] {
  display: none;
}

.sbchat-trace-stats {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 7px 12px;
  font-size: 11.5px;
  color: #32506d;
  background: #e8f0f8;
  border-bottom: 1px solid #d5e3f0;
  font-weight: 500;
}

.sbchat-trace-call {
  padding: 8px 12px;
  border-bottom: 1px solid #e0eaf4;
}

.sbchat-trace-call:last-child {
  border-bottom: none;
}

.sbchat-trace-call-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.sbchat-trace-call-name {
  font-family: monospace;
  font-size: 12px;
  font-weight: 600;
  color: #18344f;
}

.sbchat-trace-call-time {
  font-size: 11px;
  color: #8fa3b8;
}

.sbchat-trace-call-row {
  font-family: monospace;
  font-size: 11px;
  color: #5a7491;
  padding: 1px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}