@charset "utf-8";

#chat-bubble #bubble-icon { animation: 2s ease-in-out 0s infinite normal none running pulse; transition: transform 0.2s ease 0s; }

#chat-bubble #bubble-close { position: absolute; top: 2px; right: 4px; width: 22px; height: 22px; border: none; border-radius: 50%; background: rgba(0, 0, 0, 0.6); color: white; font-size: 16px; line-height: 18px; cursor: pointer; z-index: 2147483647; transition: opacity 0.2s ease 0s, background 0.2s ease 0s; }

@media (hover: hover) {
  #chat-bubble #bubble-close { opacity: 0; }
  #chat-bubble:hover #bubble-close { opacity: 1; }
}

@media (hover: none) {
  #chat-bubble #bubble-close { opacity: 1; }
}

#chat-bubble #bubble-close:hover { background: rgba(0, 0, 0, 0.8); }

html, body { overscroll-behavior: none; }

#chat-bubble, #chat-bubble * { -webkit-tap-highlight-color: transparent; }