#higgins-ai-chatbot-iframe-container {
  width: 30rem;
  height: 35rem;
  z-index: 100000;
  position: fixed;
  bottom: 5rem;
  right: 1rem;
  top: auto;
  left: auto;
  visibility: hidden;
  border: none;
  pointer-events: none;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  opacity: 0;
  transition: opacity 0.1s ease, visibility 0.1s ease, transform 0.3s ease;
  overflow: hidden;
  transform: translateY(2rem);
}
#higgins-ai-chatbot-iframe-container.open {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
  transform: translateY(0rem);
}
#higgins-ai-chatbot-iframe {
  width: 100%;
  height: 100%;
  border: none;
}
#higgins-ai-chatbot-toggle-button {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  top: auto;
  left: auto;
  transition: 0.1s ease;
  border: none;
  background-color: transparent;
  cursor: pointer;
  z-index: 100000;
}
#higgins-ai-chatbot-toggle-button:hover,
#higgins-ai-chatbot-toggle-button:focus-visible {
  transform: scale(1.1);
}
#higgins-ai-chatbot-toggle-button > div {
  width: 3.5rem;
  height: 3.5rem;
}
#higgins-ai-chatbot-toggle-button > div > img {
  width: 100%;
  height: auto;
  object-fit: contain;
  cursor: pointer;
}
#higgins-ai-chatbot-close-button {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  color: #ffffff;
  fill: #ffffff;
  background-color: transparent;
  border: none;
  display: flex;
  padding: 0.25rem;
  cursor: pointer;
  transition: transform 0.1s ease;
}
#higgins-ai-chatbot-close-button:hover,
#higgins-ai-chatbot-close-button:focus-visible {
  transform: scale(1.1);
}
#higgins-ai-chatbot-close-button svg {
  width: 1.5rem;
  height: 1.5rem;
}

@media screen and (max-width: 767px) {
  #higgins-ai-chatbot-iframe-container {
    width: calc(100% - 2rem);
    height: calc(100% - 6rem);
  }
}
