/* ═══════════════════════════════════════════════════════════
   InnoDexis Chat Assistant
═══════════════════════════════════════════════════════════ */
.idx-assistant {
  --asst-purple: #5B21B6;
  --asst-purple2: #7C3AED;
  --asst-purple-glow: rgba(124, 58, 237, 0.45);
  --asst-dark: #0F0A1E;
  --asst-dark2: #1A1333;
  --asst-ink: #12082A;
  --asst-ink3: #6B6480;
  --asst-cream: #FAF8F4;
  --asst-border: #E8E2D9;
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9990;
  font-family: 'Inter', sans-serif;
  pointer-events: none;
}

.idx-assistant * {
  box-sizing: border-box;
}

/* ── Teaser bubble ── */
.idx-asst-teaser {
  position: absolute;
  bottom: 76px;
  right: 0;
  width: min(300px, calc(100vw - 40px));
  background: #fff;
  border: 1px solid var(--asst-border);
  border-radius: 16px 16px 4px 16px;
  padding: 14px 16px 12px;
  box-shadow:
    0 4px 6px rgba(15, 10, 30, 0.04),
    0 20px 48px rgba(91, 33, 182, 0.14);
  opacity: 0;
  transform: translateY(12px) scale(0.95);
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.34, 1.4, 0.64, 1),
              transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1),
              visibility 0.4s;
  pointer-events: auto;
}

.idx-asst-teaser.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.idx-asst-teaser::after {
  content: '';
  position: absolute;
  bottom: -7px;
  right: 22px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-right: 1px solid var(--asst-border);
  border-bottom: 1px solid var(--asst-border);
  transform: rotate(45deg);
}

.idx-asst-teaser-text {
  font-size: 13px;
  line-height: 1.55;
  color: var(--asst-ink);
  padding-right: 20px;
}

.idx-asst-teaser-text strong {
  color: var(--asst-purple);
  font-weight: 600;
}

.idx-asst-teaser-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  border: none;
  background: var(--asst-cream);
  border-radius: 50%;
  cursor: pointer;
  color: var(--asst-ink3);
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.idx-asst-teaser-close:hover {
  background: #EDE9FE;
  color: var(--asst-purple);
}

.idx-asst-teaser-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--asst-purple);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: gap 0.2s;
}

.idx-asst-teaser-cta:hover {
  gap: 10px;
}

/* ── Chat panel ── */
.idx-asst-panel {
  position: absolute;
  bottom: 76px;
  right: 0;
  width: 380px;
  max-width: calc(100vw - 32px);
  max-height: min(560px, calc(100vh - 120px));
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(232, 226, 217, 0.8);
  box-shadow:
    0 0 0 1px rgba(91, 33, 182, 0.06),
    0 8px 16px rgba(15, 10, 30, 0.06),
    0 32px 80px rgba(91, 33, 182, 0.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.92);
  transform-origin: bottom right;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.34, 1.2, 0.64, 1),
              transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1),
              visibility 0.35s;
  pointer-events: auto;
}

.idx-asst-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}

/* Header */
.idx-asst-header {
  position: relative;
  padding: 18px 18px 16px;
  background: linear-gradient(135deg, var(--asst-dark2) 0%, #2D1B69 55%, var(--asst-purple) 100%);
  overflow: hidden;
  flex-shrink: 0;
}

.idx-asst-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(167, 139, 250, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 0% 100%, rgba(91, 33, 182, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

.idx-asst-header-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.idx-asst-avatar {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(145deg, #A78BFA, var(--asst-purple2));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.idx-asst-avatar::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 17px;
  background: linear-gradient(135deg, #C4B5FD, var(--asst-purple2), #5B21B6);
  z-index: -1;
  opacity: 0.7;
  animation: idx-asst-ring 3s ease-in-out infinite;
}

@keyframes idx-asst-ring {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.04); }
}

.idx-asst-avatar svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

.idx-asst-meta {
  flex: 1;
  min-width: 0;
}

.idx-asst-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #F8FAFC;
  margin-bottom: 3px;
}

.idx-asst-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #A78BFA;
  font-weight: 500;
}

.idx-asst-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.7);
  animation: idx-asst-pulse-dot 2s ease-in-out infinite;
}

@keyframes idx-asst-pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.idx-asst-panel-close {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  cursor: pointer;
  color: #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.idx-asst-panel-close:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
}

.idx-asst-header-sub {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  font-size: 11px;
  color: rgba(248, 250, 252, 0.55);
  font-family: 'Space Mono', monospace;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Messages area */
.idx-asst-messages {
  flex: 1;
  overflow-y: auto;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(180deg, var(--asst-cream) 0%, #fff 100%);
  min-height: 200px;
  max-height: 320px;
}

.idx-asst-messages::-webkit-scrollbar { width: 4px; }
.idx-asst-messages::-webkit-scrollbar-thumb { background: #DDD6FE; border-radius: 4px; }

.idx-asst-msg {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  animation: idx-asst-msg-in 0.45s cubic-bezier(0.34, 1.2, 0.64, 1) both;
}

@keyframes idx-asst-msg-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.idx-asst-msg.user {
  flex-direction: row-reverse;
}

.idx-asst-msg-avatar {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--asst-purple), var(--asst-purple2));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.idx-asst-msg-avatar svg {
  width: 13px;
  height: 13px;
  color: #fff;
}

.idx-asst-msg.user .idx-asst-msg-avatar {
  background: var(--asst-cream);
  border: 1.5px solid var(--asst-border);
}

.idx-asst-msg.user .idx-asst-msg-avatar svg {
  color: var(--asst-purple);
}

.idx-asst-bubble {
  max-width: 82%;
  padding: 11px 14px;
  border-radius: 16px 16px 16px 4px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--asst-ink);
  background: #fff;
  border: 1px solid var(--asst-border);
  box-shadow: 0 2px 8px rgba(15, 10, 30, 0.04);
}

.idx-asst-msg.user .idx-asst-bubble {
  background: linear-gradient(135deg, var(--asst-purple), var(--asst-purple2));
  color: #fff;
  border: none;
  border-radius: 16px 16px 4px 16px;
  box-shadow: 0 4px 14px var(--asst-purple-glow);
}

/* Quick-reply chips */
.idx-asst-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 4px 0 8px 34px;
  animation: idx-asst-msg-in 0.45s cubic-bezier(0.34, 1.2, 0.64, 1) both;
}

.idx-asst-chips--out {
  animation: idx-asst-chips-out 0.28s ease forwards;
}

@keyframes idx-asst-chips-out {
  to { opacity: 0; transform: translateY(6px); }
}

.idx-asst-chip {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--asst-purple);
  background: #fff;
  border: 1.5px solid #C4B5FD;
  border-radius: 20px;
  padding: 8px 14px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  line-height: 1.3;
  text-align: left;
}

.idx-asst-chip:hover {
  background: linear-gradient(135deg, var(--asst-purple), var(--asst-purple2));
  color: #fff;
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px var(--asst-purple-glow);
}

.idx-asst-chip:active {
  transform: translateY(0) scale(0.97);
}

.idx-asst-chip:focus-visible {
  outline: 2px solid var(--asst-purple2);
  outline-offset: 2px;
}

/* Typing indicator */
.idx-asst-typing {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  animation: idx-asst-msg-in 0.3s ease both;
}

.idx-asst-typing-bubble {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--asst-border);
  border-radius: 16px 16px 16px 4px;
}

.idx-asst-typing-bubble span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--asst-purple2);
  animation: idx-asst-typing 1.2s ease-in-out infinite;
}

.idx-asst-typing-bubble span:nth-child(2) { animation-delay: 0.15s; }
.idx-asst-typing-bubble span:nth-child(3) { animation-delay: 0.3s; }

@keyframes idx-asst-typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-5px); opacity: 1; }
}

/* Input area */
.idx-asst-footer {
  padding: 14px 16px 16px;
  background: #fff;
  border-top: 1px solid var(--asst-border);
  flex-shrink: 0;
}

.idx-asst-form {
  display: flex;
  gap: 8px;
  align-items: center;
}

.idx-asst-input-wrap {
  flex: 1;
  position: relative;
}

.idx-asst-input {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--asst-ink);
  background: var(--asst-cream);
  border: 1.5px solid var(--asst-border);
  border-radius: 12px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.idx-asst-input:focus {
  border-color: var(--asst-purple2);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

.idx-asst-input::placeholder {
  color: #A49FBA;
}

.idx-asst-input.error {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.idx-asst-send {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--asst-purple), var(--asst-purple2));
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.15s, box-shadow 0.2s, opacity 0.2s;
  box-shadow: 0 4px 14px var(--asst-purple-glow);
}

.idx-asst-send:hover:not(:disabled) {
  transform: scale(1.05);
  box-shadow: 0 6px 20px var(--asst-purple-glow);
}

.idx-asst-send:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.idx-asst-send svg {
  width: 18px;
  height: 18px;
}

.idx-asst-send .idx-asst-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: idx-asst-spin 0.7s linear infinite;
  display: none;
}

.idx-asst-send.loading svg { display: none; }
.idx-asst-send.loading .idx-asst-spinner { display: block; }

@keyframes idx-asst-spin {
  to { transform: rotate(360deg); }
}

/* Success state */
.idx-asst-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  text-align: center;
  animation: idx-asst-msg-in 0.5s ease both;
}

.idx-asst-success.visible {
  display: flex;
}

.idx-asst-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
  border: 2px solid #6EE7B7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
  animation: idx-asst-success-pop 0.5s cubic-bezier(0.34, 1.5, 0.64, 1) both;
}

@keyframes idx-asst-success-pop {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

.idx-asst-success-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--asst-ink);
  margin-bottom: 8px;
}

.idx-asst-success-sub {
  font-size: 13px;
  color: var(--asst-ink3);
  line-height: 1.6;
}

.idx-asst-success-sub strong {
  color: var(--asst-ink);
}

/* FAB wrapper + unread pulse rings */
.idx-asst-fab-wrap {
  position: relative;
  width: 60px;
  height: 60px;
  pointer-events: auto;
}

.idx-asst-pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--asst-purple2);
  opacity: 0;
  pointer-events: none;
  transform: scale(1);
}

.idx-assistant.has-unread .idx-asst-pulse-ring {
  animation: idx-asst-unread-ring 2.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.idx-assistant.has-unread .idx-asst-pulse-ring--delay {
  animation-delay: 1.1s;
}

@keyframes idx-asst-unread-ring {
  0% {
    opacity: 0.75;
    transform: scale(1);
  }
  70% {
    opacity: 0;
    transform: scale(1.85);
  }
  100% {
    opacity: 0;
    transform: scale(1.85);
  }
}

.idx-assistant.has-unread .idx-asst-fab {
  animation: idx-asst-fab-attention 2.2s ease-in-out infinite;
}

@keyframes idx-asst-fab-attention {
  0%, 100% { box-shadow: 0 4px 12px rgba(91, 33, 182, 0.35), 0 12px 32px rgba(91, 33, 182, 0.25); }
  50% { box-shadow: 0 4px 20px rgba(124, 58, 237, 0.55), 0 16px 40px rgba(124, 58, 237, 0.35); }
}

.idx-assistant.panel-open.has-unread .idx-asst-pulse-ring,
.idx-assistant.panel-open .idx-asst-pulse-ring {
  animation: none;
  opacity: 0;
}

/* FAB button */
.idx-asst-fab {
  position: relative;
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: linear-gradient(145deg, var(--asst-purple2), var(--asst-purple));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 12px rgba(91, 33, 182, 0.35),
    0 12px 32px rgba(91, 33, 182, 0.25);
  transition:
    transform 0.4s cubic-bezier(0.34, 1.45, 0.64, 1),
    box-shadow 0.3s ease,
    background 0.45s ease;
  pointer-events: auto;
  animation: idx-asst-fab-float 4s ease-in-out infinite;
  overflow: visible;
}

@keyframes idx-asst-fab-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.idx-asst-fab::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C4B5FD, var(--asst-purple2));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}

.idx-asst-fab:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow:
    0 6px 20px rgba(91, 33, 182, 0.45),
    0 16px 40px rgba(91, 33, 182, 0.3);
  animation: none;
}

.idx-asst-fab:hover::before {
  opacity: 0.5;
  animation: idx-asst-fab-pulse 1.5s ease-out infinite;
}

@keyframes idx-asst-fab-pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* Icon morph container */
.idx-asst-fab-icons {
  position: relative;
  width: 30px;
  height: 30px;
  display: block;
}

.idx-asst-fab-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform, opacity;
}

.idx-asst-fab-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

/* Idle crossfade — cycles AI ↔ message without clicking */
@keyframes idx-asst-fab-ai-idle {
  0%, 36% {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
  44%, 86% {
    opacity: 0;
    transform: rotate(70deg) scale(0.35);
  }
  94%, 100% {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

@keyframes idx-asst-fab-msg-idle {
  0%, 36% {
    opacity: 0;
    transform: rotate(-70deg) scale(0.35);
  }
  44%, 86% {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
  94%, 100% {
    opacity: 0;
    transform: rotate(-70deg) scale(0.35);
  }
}

.idx-assistant:not(.panel-open) .idx-asst-fab-icon--ai {
  animation: idx-asst-fab-ai-idle 5s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.idx-assistant:not(.panel-open) .idx-asst-fab-icon--msg {
  animation: idx-asst-fab-msg-idle 5s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.idx-assistant:not(.panel-open) .idx-asst-fab:hover .idx-asst-fab-icon--ai,
.idx-assistant:not(.panel-open) .idx-asst-fab:hover .idx-asst-fab-icon--msg {
  animation-play-state: paused;
}

/* Open: message bubble locked visible */
.idx-assistant.panel-open .idx-asst-fab {
  animation: none;
  background: linear-gradient(145deg, #6D28D9, #4C1D95);
  transform: scale(1.02);
}

.idx-assistant.panel-open .idx-asst-fab:hover {
  transform: scale(1.06);
}

.idx-assistant.panel-open .idx-asst-fab-icon--ai {
  animation: none !important;
  opacity: 0 !important;
  transform: rotate(80deg) scale(0.4) !important;
}

.idx-assistant.panel-open .idx-asst-fab-icon--msg {
  animation: none !important;
  opacity: 1 !important;
  transform: rotate(0deg) scale(1) !important;
}

/* AI bot icon — clear head, small sparkle accent */
.idx-asst-bot-head {
  fill: rgba(255, 255, 255, 0.1);
}

.idx-asst-bot-eye {
  transform-origin: center;
  transform-box: fill-box;
  animation: idx-asst-eye-blink 4.5s ease-in-out infinite;
}

.idx-asst-bot-eye:last-of-type {
  animation-delay: 0.12s;
}

@keyframes idx-asst-eye-blink {
  0%, 91%, 100% { transform: scaleY(1); }
  95% { transform: scaleY(0.12); }
}

.idx-asst-sparkle-accent {
  transform-origin: center;
  transform-box: fill-box;
  animation: idx-asst-sparkle-accent 2.4s ease-in-out infinite;
}

@keyframes idx-asst-sparkle-accent {
  0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
  50% { opacity: 0.45; transform: scale(0.7) rotate(18deg); }
}

.idx-assistant.panel-open .idx-asst-sparkle-accent,
.idx-assistant.panel-open .idx-asst-bot-eye {
  animation: none !important;
}

/* Message dots bounce when panel open */
.idx-assistant.panel-open .idx-asst-fab-icon--msg circle {
  animation: idx-asst-dot-bounce 1.2s ease-in-out infinite;
}

.idx-assistant.panel-open .idx-asst-fab-icon--msg circle:nth-of-type(2) {
  animation-delay: 0.15s;
}

.idx-assistant.panel-open .idx-asst-fab-icon--msg circle:nth-of-type(3) {
  animation-delay: 0.3s;
}

@keyframes idx-asst-dot-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.65; }
  30% { transform: translateY(-2px); opacity: 1; }
}

.idx-asst-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  background: #EF4444;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 10px;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: idx-asst-badge-bounce 0.6s cubic-bezier(0.34, 1.5, 0.64, 1) both;
  transition: opacity 0.3s, transform 0.3s;
}

.idx-asst-badge.hidden {
  opacity: 0;
  transform: scale(0);
  pointer-events: none;
}

@keyframes idx-asst-badge-bounce {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

/* Hide teaser when panel open */
.idx-assistant.panel-open .idx-asst-teaser {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Mobile */
@media (max-width: 480px) {
  .idx-assistant {
    bottom: 16px;
    right: 16px;
    left: 16px;
  }

  .idx-asst-panel {
    width: 100%;
    right: 0;
    bottom: 72px;
    max-height: calc(100vh - 100px);
    border-radius: 20px 20px 12px 12px;
  }

  .idx-asst-teaser {
    right: 0;
    left: 0;
    width: 100%;
    bottom: 72px;
  }

  .idx-asst-fab-wrap {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}
