/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jun 09 2026 | 14:19:05 */
.ai-support {
	cursor:pointer;
}

 .ai-wrapper {
    position: relative;
	display: flex;
}

.ai-wrapper .tag-new {
    position: absolute;
    top: -10px;
    right: -12px;
    background: yellow;
    color: black;
    font-size: 8px;
    font-weight: bold;
    padding: 0px 4px;
    border-radius: 3px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  }

  .ai-wrapper img {
    width: 100%;
    display: block;
  }

.mwai-icon-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  display: inline-block;
  animation: pulseWrapper 1.5s infinite ease-out;
}

/* Imagen del ícono */
.mwai-icon {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
  position: relative;
  z-index: 2;
}

/* Círculo de onda animado */
.mwai-icon-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 174, 255, 0.3); /* Color de la onda */
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulseWave 1.5s infinite ease-out;
  z-index: 1;
}

@keyframes pulseWave {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}



/* Bocadillo */
.mwai-bubble {
  position: absolute;
  bottom: 100%;
  left: 0%;
  transform: translateX(-50%);
  background: #fff;
  color: #333;
  padding: 8px 12px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  font-size: 13px;
  white-space: nowrap;
  margin-bottom: 10px;
}

.mwai-bubble::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 70%;
  margin-left: -6px;
  border-width: 6px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}


/* Botón de cerrar */
.mwai-close-bubble {
    position: absolute;
    top: -17px;
    right: 2px;
    font-size: 12px;
    color: red;
    cursor: pointer;
    font-weight: bold;
    line-height: 1;
    border-radius: 30px;
    border: 1px solid red;
    padding-left: 3px;
    padding-right: 3px;
	background: #FFF;
}

.mwai-close-bubble:hover {
  color: red;
}


.mwai-icon-wrapper {
  position: relative;
  display: inline-block;
}

.jennifer-bubble {
  position: absolute;
  bottom: 110px;
  right: 0;
  background: #fff;
  color: #333;
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  font-size: 14px;
  width: max-content;
  z-index: 1000;
}

.jennifer-bubble::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 70%;
  margin-left: -6px;
  border-width: 6px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

.jennifer-bubble .bubble-close {
 	position: absolute;
    top: -17px;
    right: 2px;
    font-size: 12px;
    color: red;
    cursor: pointer;
    font-weight: bold;
    line-height: 1;
    border-radius: 30px;
    border: 1px solid red;
    padding-left: 3px;
    padding-right: 3px;
	background: #FFF;
}
