:root{
  --eeds-bg:#07111c;
  --eeds-bg-2:#0c1725;
  --eeds-panel:rgba(8,16,27,.96);
  --eeds-line:rgba(100,245,255,.16);
  --eeds-text:#ecf7ff;
  --eeds-muted:#97aec7;
  --eeds-cyan:#64f5ff;
  --eeds-violet:#7c4dff;
  --eeds-success:#75ffcf;
  --eeds-shadow:0 18px 55px rgba(0,0,0,.42), 0 0 40px rgba(124,77,255,.12);
}

.docbot-robot{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:99999;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

.docbot-robot *,
.docbot-robot *:before,
.docbot-robot *:after{
  box-sizing:border-box;
}

/* =========================
   ROBOT GRANDE
========================= */

.docbot-robot__launcher.docbot-robot__launcher-img{
  position:relative;
  z-index:5;
  background:none;
  border:0;
  box-shadow:none;
  backdrop-filter:none;
  padding:0;
  margin:0;
  width:auto;
  height:auto;
  display:flex;
  align-items:flex-end;
  justify-content:flex-end;
  gap:12px;
  cursor:pointer;
  transition:transform .22s ease, opacity .22s ease;
  overflow:visible;
	
}

.docbot-robot__launcher.docbot-robot__launcher-img:hover{
  transform:translateY(-4px);
}

.docbot-robot__img-wrap{
  position:relative;
  display:block;
  line-height:0;
	transform: translateX(185px) translateY(-58px);
  z-index:2;
}

.docbot-robot__img-wrap::before{
  content:"";
  position:absolute;
  inset:8% 14% 10% 14%;
  border-radius:40%;
  background:
    radial-gradient(circle at 50% 18%, rgba(100,245,255,.18), transparent 30%),
    radial-gradient(circle at 50% 58%, rgba(124,77,255,.14), transparent 38%);
  filter:blur(24px);
  opacity:.85;
  pointer-events:none;
  animation:eedsAura 3.8s ease-in-out infinite alternate;
}

.docbot-robot__img-wrap::after{
  content:"";
  position:absolute;
  left:50%;
  top:18%;
  width:34%;
  height:18%;
  transform:translateX(-50%);
  background:
    radial-gradient(circle at 35% 50%, rgba(100,245,255,.75), transparent 28%),
    radial-gradient(circle at 65% 50%, rgba(100,245,255,.75), transparent 28%);
  filter:blur(10px);
  opacity:.42;
  mix-blend-mode:screen;
  pointer-events:none;
  transition:opacity .25s ease, transform .25s ease;
}

.docbot-robot__img{
  width:clamp(140px, 18vw, 240px);
  height:auto;
  display:block;
  transform-origin:center bottom;
  filter:
    drop-shadow(0 20px 30px rgba(0,0,0,.35))
    drop-shadow(0 0 20px rgba(100,245,255,.22))
    drop-shadow(0 0 28px rgba(124,77,255,.12));
  animation:
    eedsFloatBody 4.2s ease-in-out infinite,
    eedsGlowPulse 2.8s ease-in-out infinite alternate,
    eedsIdleTilt 6s ease-in-out infinite;
  transition:transform .25s ease, filter .25s ease;
}

.docbot-robot__launcher-img:hover .docbot-robot__img{
  transform:scale(1.04) rotate(-1.5deg);
}

.docbot-robot__launcher-img:hover .docbot-robot__img-wrap::after{
  opacity:.65;
}

.docbot-robot__launcher-img::before{
  content:"";
  position:absolute;
  right:26px;
  bottom:6px;
  width:58%;
  height:24px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(100,245,255,.28), rgba(124,77,255,.12), transparent 72%);
  filter:blur(10px);
  animation:eedsShadowPulse 4s ease-in-out infinite;
  pointer-events:none;
}

.docbot-robot__img-label{
  margin-bottom:26px;
  max-width:min(220px, 38vw);
  background:
    radial-gradient(circle at top left, rgba(100,245,255,.10), transparent 45%),
    linear-gradient(180deg, rgba(8,20,35,.96), rgba(7,17,28,.96));
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(100,245,255,.16);
  color:#fff;
  display:flex;
  flex-direction:column;
  gap:4px;
  box-shadow:
    0 16px 30px rgba(0,0,0,.25),
    0 0 20px rgba(100,245,255,.08);
  text-align:left;
  animation:eedsBubbleBreath 4s ease-in-out infinite;
}

.docbot-robot__img-label strong{
  font-size:15px;
  line-height:1.15;
}

.docbot-robot__img-label em{
  font-style:normal;
  font-size:12px;
  line-height:1.35;
  color:var(--eeds-muted);
}

/* IMPORTANTE: mantener visible al abrir */
.docbot-robot.is-open .docbot-robot__launcher-img{
  opacity:1 !important;
  pointer-events:auto !important;
  transform:none !important;
}

/* partículas */
.docbot-robot__launcher-img .eeds-particles{
  position:absolute;
  inset:0;
  pointer-events:none;
}

.docbot-robot__launcher-img .eeds-particles span{
  position:absolute;
  width:6px;
  height:6px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(100,245,255,.9), rgba(124,77,255,.2));
  opacity:0;
}

/* =========================
   SALUDO AUTOMÁTICO
========================= */

.docbot-robot__hello{
  position:absolute;
  right:0;
  bottom:98px;
  width:min(300px, calc(100vw - 24px));
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px;
  border-radius:18px;
  background:rgba(7,17,28,.96);
  border:1px solid rgba(100,245,255,.16);
  box-shadow:var(--eeds-shadow);
  opacity:0;
  transform:translateY(10px) scale(.98);
  pointer-events:none;
  transition:all .28s ease;
  z-index:6;
}

.docbot-robot.is-hello-visible .docbot-robot__hello{
  opacity:1;
  transform:translateY(0) scale(1);
  pointer-events:auto;
}

.docbot-robot.is-open .docbot-robot__hello{
  opacity:0;
  pointer-events:none;
  transform:translateY(8px) scale(.98);
}

.docbot-robot__hello-avatar,
.docbot-robot__header-avatar,
.docbot-robot__msg-avatar{
  width:52px;
  height:52px;
  border-radius:999px;
  overflow:hidden;
  display:grid;
  place-items:center;
  flex:0 0 auto;
}

.docbot-robot__avatar-svg{
  width:100%;
  height:100%;
  display:block;
}

.docbot-robot__hello-text{
  display:flex;
  flex-direction:column;
  gap:2px;
  min-width:0;
}

.docbot-robot__hello-text strong{
  color:var(--eeds-text);
  font-size:14px;
  line-height:1.1;
}

.docbot-robot__hello-text span{
  color:var(--eeds-muted);
  font-size:12px;
  line-height:1.3;
}

.docbot-robot__hello-close,
.docbot-robot__close{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0;
  text-align:center;
  line-height:1;
}

.docbot-robot__hello-close{
  margin-left:auto;
  width:30px;
  height:30px;
  border-radius:999px;
  border:0;
  background:rgba(255,255,255,.06);
  color:#fff;
  font-size:20px;
  cursor:pointer;
  flex:0 0 auto;
}

.docbot-robot__close{
  width:36px;
  height:36px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  color:#fff;
  font-size:22px;
  cursor:pointer;
  flex:0 0 auto;
}

/* =========================
   PANEL CHAT
========================= */

.docbot-robot__panel{
  position:absolute;
  right:220px;
  bottom:20px;
  width:min(390px, calc(100vw - 280px));
  height:min(700px, calc(100vh - 40px));
  display:flex !important;
  flex-direction:column;
  background:linear-gradient(180deg, rgba(10,18,31,.99), rgba(6,10,18,.97));
  border:1px solid var(--eeds-line);
  border-radius:26px;
  box-shadow:var(--eeds-shadow);
  overflow:hidden;
  opacity:0;
  visibility:hidden;
  transform:translateY(14px) scale(.98);
  pointer-events:none;
  transition:all .24s ease;
  z-index:4;
}

.docbot-robot.is-open .docbot-robot__panel{
  opacity:1;
  visibility:visible;
  transform:translateY(0) scale(1);
  pointer-events:auto;
}

.docbot-robot__header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:16px;
  border-bottom:1px solid rgba(100,245,255,.10);
  background:
    radial-gradient(circle at top left, rgba(100,245,255,.08), transparent 38%),
    linear-gradient(180deg, rgba(100,245,255,.03), rgba(124,77,255,.03));
}

.docbot-robot__header-left{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.docbot-robot__title{
  display:flex;
  flex-direction:column;
  gap:3px;
  min-width:0;
}

.docbot-robot__title strong{
  font-size:16px;
  line-height:1.1;
  color:var(--eeds-text);
}

.docbot-robot__title span{
  font-size:12px;
  color:var(--eeds-muted);
  line-height:1.3;
}

.docbot-robot__body{
  flex:1;
  min-height:0;
  display:flex;
  flex-direction:column;
  background:
    radial-gradient(circle at top, rgba(100,245,255,.05), transparent 35%),
    linear-gradient(180deg, var(--eeds-bg), var(--eeds-bg-2));
}

.docbot-robot__messages{
  flex:1;
  min-height:0;
  overflow:auto;
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.docbot-robot__messages::-webkit-scrollbar{
  width:8px;
}

.docbot-robot__messages::-webkit-scrollbar-thumb{
  background:rgba(255,255,255,.10);
  border-radius:999px;
}

.docbot-robot__msg{
  display:flex;
  align-items:flex-start;
  gap:10px;
  animation:eedsMessageIn .22s ease;
}

.docbot-robot__msg--user{
  justify-content:flex-end;
}

.docbot-robot__msg--user .docbot-robot__msg-avatar{
  display:none;
}

.docbot-robot__bubble{
  max-width:78%;
  padding:14px 15px;
  border-radius:18px;
  color:var(--eeds-text);
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
  box-shadow:0 12px 26px rgba(0,0,0,.18);
}

.docbot-robot__msg--user .docbot-robot__bubble{
  background:linear-gradient(135deg, rgba(100,245,255,.16), rgba(124,77,255,.16));
  border-color:rgba(100,245,255,.12);
}

.docbot-robot__bubble-top{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:8px;
}

.docbot-robot__bubble-top strong{
  font-size:13px;
  color:var(--eeds-text);
}

.docbot-robot__status{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.05em;
  color:var(--eeds-cyan);
}

.docbot-robot__bubble p{
  margin:0;
  font-size:14px;
  line-height:1.55;
  color:var(--eeds-text);
  white-space:pre-wrap;
  word-break:break-word;
}

/* =========================
   ESTADO RESPONDIENDO
========================= */

.docbot-robot__msg--typing{
  align-items:center;
}

.docbot-robot__msg-avatar--speaking{
  position:relative;
  overflow:visible;
  isolation:isolate;
}

.docbot-robot__msg-avatar--speaking::before,
.docbot-robot__msg-avatar--speaking::after{
  content:"";
  position:absolute;
  inset:-8px;
  border-radius:999px;
  border:1px solid rgba(100,245,255,.28);
  box-shadow:
    0 0 0 1px rgba(100,245,255,.06),
    0 0 18px rgba(100,245,255,.22),
    0 0 30px rgba(124,77,255,.16);
  animation:eedsSpeakHalo 1.6s infinite ease-out;
  z-index:-1;
}

.docbot-robot__msg-avatar--speaking::after{
  inset:-16px;
  border-color:rgba(124,77,255,.18);
  animation-delay:.45s;
  opacity:.75;
}

.docbot-robot__msg-avatar--speaking .docbot-robot__avatar-svg{
  border-radius:999px;
  animation:eedsAvatarTalk 1s infinite ease-in-out;
  filter:
    drop-shadow(0 0 8px rgba(100,245,255,.22))
    drop-shadow(0 0 14px rgba(124,77,255,.16));
}

.docbot-robot__msg--typing .docbot-robot__bubble{
  background:
    radial-gradient(circle at top left, rgba(100,245,255,.10), transparent 40%),
    linear-gradient(135deg, rgba(255,255,255,.05), rgba(124,77,255,.07));
  border-color:rgba(100,245,255,.14);
}

.docbot-robot__msg--typing .docbot-robot__status{
  color:var(--eeds-success);
  animation:eedsStatusBlink 1.2s infinite ease-in-out;
}

.docbot-robot__voicebars{
  display:flex;
  align-items:flex-end;
  gap:4px;
  height:28px;
  padding-top:3px;
}

.docbot-robot__msg--typing .docbot-robot__voicebars{
  position:relative;
  min-width:74px;
}

.docbot-robot__msg--typing .docbot-robot__voicebars::before{
  content:"";
  position:absolute;
  left:-8px;
  right:-8px;
  top:50%;
  height:1px;
  transform:translateY(-50%);
  background:linear-gradient(90deg,
    rgba(100,245,255,0),
    rgba(100,245,255,.30),
    rgba(124,77,255,.30),
    rgba(100,245,255,0)
  );
  opacity:.7;
}

.docbot-robot__voicebars span{
  display:block;
  width:5px;
  height:8px;
  border-radius:999px;
  background:linear-gradient(180deg, #7efaff, #64f5ff 45%, #7c4dff);
  box-shadow:
    0 0 8px rgba(100,245,255,.30),
    0 0 14px rgba(124,77,255,.18);
  animation:eedsTalk 1s infinite ease-in-out;
}

.docbot-robot__voicebars span:nth-child(1){ animation-duration:.9s; }
.docbot-robot__voicebars span:nth-child(2){ animation-duration:1.05s; }
.docbot-robot__voicebars span:nth-child(3){ animation-duration:.85s; }
.docbot-robot__voicebars span:nth-child(4){ animation-duration:1.1s; }
.docbot-robot__voicebars span:nth-child(5){ animation-duration:.95s; }

.docbot-robot.is-speaking .docbot-robot__img{
  animation:
    eedsTalkingBody .75s ease-in-out infinite,
    eedsGlowPulseFast .9s ease-in-out infinite alternate;
}

.docbot-robot.is-speaking .docbot-robot__img-wrap::before{
  opacity:1;
  animation:eedsAuraFast .9s ease-in-out infinite alternate;
}

.docbot-robot.is-speaking .docbot-robot__img-wrap::after{
  opacity:.95;
  transform:translateX(-50%) scale(1.14);
  animation:eedsEyesPulse .45s ease-in-out infinite alternate;
}

.docbot-robot.is-speaking .docbot-robot__launcher-img::before{
  animation:eedsShadowTalk .75s ease-in-out infinite;
}

.docbot-robot.is-speaking .docbot-robot__launcher-img .eeds-particles span:nth-child(1){
  left:22%;
  top:18%;
  animation:eedsParticle1 1.3s linear infinite;
}
.docbot-robot.is-speaking .docbot-robot__launcher-img .eeds-particles span:nth-child(2){
  left:72%;
  top:24%;
  animation:eedsParticle2 1.1s linear infinite;
}
.docbot-robot.is-speaking .docbot-robot__launcher-img .eeds-particles span:nth-child(3){
  left:18%;
  top:52%;
  animation:eedsParticle3 1.4s linear infinite;
}
.docbot-robot.is-speaking .docbot-robot__launcher-img .eeds-particles span:nth-child(4){
  left:78%;
  top:60%;
  animation:eedsParticle4 1.2s linear infinite;
}

/* =========================
   FUENTES
========================= */

.docbot-robot__sources{
  padding:0 16px 14px;
}

.docbot-robot__sources-title{
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--eeds-muted);
  margin-bottom:8px;
}

.docbot-robot__sources-list{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.docbot-robot__source{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.06);
  font-size:12px;
  color:var(--eeds-muted);
  text-decoration:none;
}

.docbot-robot__source:hover{
  color:var(--eeds-text);
  border-color:rgba(100,245,255,.18);
}

.docbot-robot--hide-sources .docbot-robot__sources{
  display:none !important;
}

/* =========================
   FORMULARIO
========================= */

.docbot-robot__form{
  display:flex;
  gap:10px;
  align-items:center;
  padding:14px 16px 16px;
  border-top:1px solid rgba(100,245,255,.10);
  background:rgba(255,255,255,.02);
}

.docbot-robot__input{
  flex:1;
  min-width:0;
  height:48px;
  padding:0 16px;
  border-radius:16px;
  border:1px solid rgba(100,245,255,.14);
  background:rgba(255,255,255,.05);
  color:var(--eeds-text);
  outline:none;
  box-shadow:none;
}

.docbot-robot__input::placeholder{
  color:#7d94ac;
}

.docbot-robot__input:focus{
  border-color:rgba(100,245,255,.34);
  box-shadow:0 0 0 3px rgba(100,245,255,.08);
}

.docbot-robot__send{
  height:48px;
  padding:0 18px;
  border:0;
  border-radius:16px;
  background:linear-gradient(135deg, var(--eeds-cyan), var(--eeds-violet));
  color:#07111c;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(124,77,255,.22);
  transition:transform .18s ease, opacity .18s ease;
}

.docbot-robot__send:hover{
  transform:translateY(-1px);
}

.docbot-robot__send:disabled{
  opacity:.6;
  cursor:not-allowed;
  transform:none;
}

/* =========================
   ANIMACIONES
========================= */

@keyframes eedsTalk{
  0%,100%{ height:8px; opacity:.8; }
  30%{ height:25px; }
  60%{ height:13px; }
}

@keyframes eedsMessageIn{
  from{ opacity:0; transform:translateY(8px); }
  to{ opacity:1; transform:translateY(0); }
}

@keyframes eedsSpeakHalo{
  0%{ transform:scale(.92); opacity:.75; }
  70%{ transform:scale(1.22); opacity:0; }
  100%{ transform:scale(1.22); opacity:0; }
}

@keyframes eedsAvatarTalk{
  0%,100%{ transform:scale(1) translateY(0); }
  25%{ transform:scale(1.03) translateY(-1px); }
  50%{ transform:scale(.985) translateY(1px); }
  75%{ transform:scale(1.025) translateY(-1px); }
}

@keyframes eedsStatusBlink{
  0%,100%{ opacity:1; }
  50%{ opacity:.45; }
}

@keyframes eedsFloatBody{
  0%{ transform:translateY(0) rotate(-2deg) scale(1); }
  25%{ transform:translateY(-8px) rotate(2deg) scale(1.01); }
  50%{ transform:translateY(-14px) rotate(-1deg) scale(1.03); }
  75%{ transform:translateY(-7px) rotate(2deg) scale(1.01); }
  100%{ transform:translateY(0) rotate(-2deg) scale(1); }
}

@keyframes eedsTalkingBody{
  0%{ transform:translateY(0) rotate(-3deg) scale(1); }
  20%{ transform:translateY(-5px) rotate(3deg) scale(1.04); }
  40%{ transform:translateY(-2px) rotate(-2deg) scale(.99); }
  60%{ transform:translateY(-7px) rotate(2deg) scale(1.03); }
  80%{ transform:translateY(-1px) rotate(-3deg) scale(1.01); }
  100%{ transform:translateY(0) rotate(-3deg) scale(1); }
}

@keyframes eedsGlowPulse{
  from{
    filter:
      drop-shadow(0 20px 30px rgba(0,0,0,.35))
      drop-shadow(0 0 16px rgba(100,245,255,.18));
  }
  to{
    filter:
      drop-shadow(0 20px 30px rgba(0,0,0,.35))
      drop-shadow(0 0 26px rgba(100,245,255,.30))
      drop-shadow(0 0 34px rgba(124,77,255,.16));
  }
}

@keyframes eedsGlowPulseFast{
  from{
    filter:
      drop-shadow(0 20px 30px rgba(0,0,0,.35))
      drop-shadow(0 0 20px rgba(100,245,255,.24))
      drop-shadow(0 0 26px rgba(124,77,255,.18));
  }
  to{
    filter:
      drop-shadow(0 20px 30px rgba(0,0,0,.35))
      drop-shadow(0 0 38px rgba(100,245,255,.52))
      drop-shadow(0 0 54px rgba(124,77,255,.34));
  }
}

@keyframes eedsShadowPulse{
  0%{ transform:scale(.95); opacity:.45; }
  50%{ transform:scale(1.05); opacity:.8; }
  100%{ transform:scale(.95); opacity:.45; }
}

@keyframes eedsShadowTalk{
  0%{ transform:scale(.92); opacity:.55; }
  50%{ transform:scale(1.22); opacity:1; }
  100%{ transform:scale(.92); opacity:.55; }
}

@keyframes eedsAura{
  from{ transform:scale(.96); opacity:.55; }
  to{ transform:scale(1.05); opacity:.95; }
}

@keyframes eedsAuraFast{
  from{ transform:scale(.97); opacity:.7; }
  to{ transform:scale(1.12); opacity:1; }
}

@keyframes eedsEyesPulse{
  from{ opacity:.62; filter:blur(10px); }
  to{ opacity:1; filter:blur(12px); }
}

@keyframes eedsBubbleBreath{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-2px); }
}

@keyframes eedsIdleTilt{
  0%,100%{ transform:translateY(0) rotate(-1deg); }
  50%{ transform:translateY(-2px) rotate(.8deg); }
}

@keyframes eedsParticle1{
  0%{ transform:translate(0,0) scale(.5); opacity:0; }
  20%{ opacity:.9; }
  100%{ transform:translate(-10px,-28px) scale(1.2); opacity:0; }
}
@keyframes eedsParticle2{
  0%{ transform:translate(0,0) scale(.5); opacity:0; }
  20%{ opacity:.85; }
  100%{ transform:translate(12px,-24px) scale(1.1); opacity:0; }
}
@keyframes eedsParticle3{
  0%{ transform:translate(0,0) scale(.5); opacity:0; }
  20%{ opacity:.8; }
  100%{ transform:translate(-8px,-22px) scale(1.15); opacity:0; }
}
@keyframes eedsParticle4{
  0%{ transform:translate(0,0) scale(.5); opacity:0; }
  20%{ opacity:.85; }
  100%{ transform:translate(8px,-26px) scale(1.2); opacity:0; }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px){
  .docbot-robot{
    right:14px;
    bottom:14px;
  }

  .docbot-robot__img{
    width:clamp(120px, 24vw, 180px);
  }

  .docbot-robot__img-label{
    max-width:170px;
    margin-bottom:18px;
    padding:11px 12px;
  }

  .docbot-robot__img-label strong{
    font-size:13px;
  }

  .docbot-robot__img-label em{
    font-size:11px;
  }

  .docbot-robot__panel{
    right:170px;
    width:min(340px, calc(100vw - 220px));
  }
}

@media (max-width: 640px){
  .docbot-robot{
    right:12px;
    bottom:12px;
  }

  .docbot-robot__launcher.docbot-robot__launcher-img{
    gap:8px;
  }

  .docbot-robot__img{
    width:clamp(92px, 26vw, 130px);
  }

  .docbot-robot__img-label{
    max-width:120px;
    margin-bottom:10px;
    padding:9px 10px;
    border-radius:14px;
  }

  .docbot-robot__img-label strong{
    font-size:12px;
  }

  .docbot-robot__img-label em{
    font-size:10px;
    line-height:1.25;
  }

  .docbot-robot__panel{
    right:0;
    bottom:120px;
    width:min(calc(100vw - 24px), 360px);
    height:min(70vh, 640px);
    z-index:7;
  }

  .docbot-robot__launcher.docbot-robot__launcher-img{
    z-index:8;
  }

  .docbot-robot__hello{
    width:min(100vw - 24px, 300px);
    bottom:86px;
  }
}
.docbot-robot__panel{
  z-index: 20 !important;
}

.docbot-robot__hello{
  z-index: 19 !important;
}

.docbot-robot__launcher.docbot-robot__launcher-img{
  z-index: 10 !important;
}

.docbot-robot.is-open .docbot-robot__launcher.docbot-robot__launcher-img{
  pointer-events: none !important;
}