@charset "utf-8";
/* CSS Document */

/* Animación para el contenedor */
#livechat-wrapper {
  animation: blinkWrapper 0.9s ease-in-out 4;
}

@keyframes blinkWrapper {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* Animación para los paths dentro del SVG */
.oct8-iw {
  fill: transparent;
  stroke: #DEDDE5;
  animation: blinkFill 0.9s ease-in-out 4;
}

@keyframes blinkFill {
  0%, 100% {
    opacity: 1;
    fill: transparent;
  }
  50% {
    opacity: 0;
    fill: #DEDDE5;
  }
}