/* ------- Chat toggle button --------*/
.chat-toggle {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #0866FF;
  padding: 10px;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  cursor: pointer;
}
@media (max-width: 768px) {
  .chat-toggle {
    height: 45px;
    width: 45px;
    padding: 8px;
  }
}

.wp-spotlight-chat {
  animation: icon-animation2 0.3s ease;
  width: auto;
  max-width: 32px;
  height: auto;
}
@media (max-width: 768px) {
  .wp-spotlight-chat {
    max-width: 25px;
  }
}

.wp-spotlight-hide {
  display: none;
  max-width: 25px;
  animation: icon-animation 0.3s ease;
}

@keyframes icon-animation {
  0% {
    transform: rotate(-30deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes icon-animation2 {
  0% {
    transform: rotate(30deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.chatbox-iframe-wraper {
  display: none;
  width: 430px;
  height: 570px;
  max-height: 77vh;
  overflow: hidden;
  position: fixed;
  z-index: 999;
  right: 16px;
  bottom: 92px;
  border-radius: 10px;
  transition: 0.3s all;
}
.chatbox-iframe-wraper.extended {
  width: 600px;
  max-width: 96%;
  height: 770px;
}
@media (max-width: 480px) {
  .chatbox-iframe-wraper {
    max-height: 100%;
    max-width: 100%;
    height: 100%;
    width: 100%;
    top: 32px;
    right: 0;
    bottom: inherit;
    left: 0;
  }
}

.close-chat-sm {
  position: fixed;
  top: -32px;
  right: 4px;
  bottom: unset;
  left: unset;
  background: #405261;
  color: white;
  height: 24px;
  padding: 0 8px;
  border-radius: 50px;
  font-size: 12px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: none;
  outline: none;
  transition: top 0.3s ease;
}
.close-chat-sm .icon {
  width: 12px;
  transform: rotate(270deg);
}
@media (max-width: 480px) {
  .close-chat-sm.show-chatbox {
    top: 4px;
  }
}

.chatbox-iframe-wraper.show-chatbox {
  display: block;
  animation: chatbox-animation 0.4s;
  -webkit-animation: chatbox-animation 0.4s;
}

.chatbox-iframe-wraper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@keyframes chatbox-animation {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/*# sourceMappingURL=embed-assistant.css.map */
