#chatbot-container.chatbot-container-closed {
  display: none;
  opacity: 0;
  content: none;
  animation: onHideContainer 0.2s ease-in-out !important;
}
/* Customize the chatbot window styles */
#chatbot-container {
  display: flex;
  flex: 1;
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 8000;
  width: 448px;
  height: 80dvh;
  border-radius: 15px;
  overflow: hidden;
  animation: onShowContainer 0.2s ease-in-out;
  border: 0.5px solid #e0e0e0;
}

@media only screen and (max-width: 600px) {
  #chatbot-container {
    z-index: 100;
    position: fixed;
    bottom: 0px;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    border-radius: 0px;
    overflow: hidden;
    animation: onShowContainer 0.2s ease-in-out;
    flex: 1;
    display: flex;
  }
}

.button-hidden {
  display: none;
}

@keyframes onShowContainer {
  0% {
    opacity: 0;
    display: none;
  }
  100% {
    opacity: 1;
  }
}

@keyframes onHideContainer {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}

#chat-botcontainer #chatbot-container .chatbot-body {
  display: none;
  padding: 10px;
  height: 100%;
}

#chatbot-container iframe {
  border: none;
  width: 100%;
  height: 100%;
}

/* Customize the FAB styles */
#chatbot-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 80;
  padding: 0px;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}
#chatbot-fab > :hover {
  transform: scale(1.1);
  transition: transform 0.2s ease-in-out;
}

#chatbot-fab > :active {
  transform: scale(1.1);
  transition: transform 0.2s ease-in-out;
}

#frameWindow {
  width: 100%;
  height: 100%;
  border: none;
}

#chatbot-fab img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 100%;
}

#chatbot-placeholder {
  width: 60px;
  height: 60px;
  display: flex; 
  justify-content: center; 
  align-items: center; 
  font-weight: 400; 
  font-size: 20px;
  color: #ffffff; 
  background-image: linear-gradient(to right, #5D43DC, #8C2ACD);
  border-radius: 100%;
}
