@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(720deg);
  }
}

@keyframes zoom-in-zoom-out {
  0% {
    scale: 100%;
  }

  50% {
    scale: 150%;
  }

  100% {
    scale: 100%;
  }
}

#chatBox * {
  margin-block-start: 0;
  box-sizing: border-box;
}

#chat-icon {
  margin-block-start: 0;
  box-sizing: border-box;
  position: fixed;
  z-index: 9990;
  bottom: 100px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  text-align: center;
}

#chat-icon.hide {
  opacity: 0;
  filter: alpha(opacity=0);
}

#chat-icon img {
  width: 150px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

#chatBoxLoading {
  animation: rotate 5s infinite linear;
  width: 100%;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("./loading.png");
  z-index: 9995;
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
}

#chatBox {
  border-radius: 10px;
  margin-block-start: 0;
  box-sizing: border-box;
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 500px;
  min-height: 225px;
  border: none;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  background: rgb(0 0 0 / 20%);
}

#chatBox.show {
  z-index: 9991;
  opacity: 1;
  visibility: visible;
}

#chatBox.fullwidth {
  border-radius: 0px;
  width: 100% !important;
  max-width: 100% !important;
  height: 100vh !important;
  min-height: 100vh !important;
  bottom: auto;
  right: 0;
  top: 0;
  border-radius: 0;
}

#chatBox.fullwidth #chat-widget {
  min-height: 100vh !important;
  background: rgba(0, 0, 0, 0.85);
}

#chatBox.fullwidth #transcriptContainer {
  background: #ffffff;
  border-radius: 0 0 10px 10px;
}

#chatBox.fullwidth .chatBox-action {
  background-image: url("./fullscreen.png");
}

#chatBox.fullwidth .avatarContainer .textInput-wrapper,
#chatBox.fullwidth .avatarContainer .listeningIcon {
  width: 350px;
}

#chat-widget {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 225px;
  border: 0;
  box-shadow: unset;
  background: #000000;
  border-radius: 10px;
  justify-content: center;
}

#chatBox-action {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 9999;
  color: #ffffff;
  font-size: 14px;
}

#chatBox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 90;
  color: #ffffff;
  font-size: 14px;
}

#chatBox-close,
#chatBox-action,
.language-switcher,
.view-transcript-button {
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0.5) !important;
  border-radius: 5px;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
}

#chatBox-close:hover,
#chatBox-action:hover,
.language-switcher:hover,
.view-transcript-button:hover {
  background: rgba(0, 0, 0, 0.75) !important;
}

.fullwidth #chatBox-action .bi-fullscreen {
  display: none;
}

.fullwidth #chatBox-action .bi-arrows-angle-contract {
  display: block !important;
}

#chatBox-heading {
  border-radius: 10px 10px 0 0;
  font-size: 16px;
  position: absolute;
  text-align: center;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  background: #000000 !important;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  ) !important;
  padding: 10px 10px;
  color: #fff;
  box-sizing: border-box;
}

#chatBox.fullwidth .avatarContainer {
  margin: 50px auto 0;
  border-radius: 15px;
  width: 90%;
}

/** */

#chatBox .avatarContainer {
  border-radius: 15px;
  border: 0;
}

.avatarContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  max-width: 992px;
  margin: 0 auto;
  border: 2px solid transparent;
}

.avatarContainer #avatarVideo {
  width: 100%;
  /* height: 100%; */
  /* object-fit: contain; */
}

.avatarContainer .actionContainer {
  position: absolute;
  bottom: 10px;
  left: 20px;
  display: none;
  flex-direction: row;
  gap: 7px;
  width: 100%;
  justify-content: start;
  align-items: center;
  z-index: 999;
}

.fullwidth .avatarContainer .actionContainer {
  left: 0;
  justify-content: center;
}

.avatarContainer.streamReady .actionContainer {
  display: flex;
}

.avatarContainer button {
  font-weight: 600;
  font-size: 12px;
  border-radius: 9999px;
  text-align: center;
  padding: 8px 16px;
  margin-bottom: 0 !important;
  border: none;
  height: 36px;
}

.avatarContainer button:focus {
  outline: none;
}

.avatarContainer button:focus-visible {
  ring: 4px solid rgba(59, 130, 246, 0.3);
}

.avatarContainer #interruptTask {
  display: none;
  background-color: #1d4ed8;
  color: white;
}

.avatarContainer #interruptTask:hover {
  background-color: #1e40af;
}

.avatarContainer #interruptTask:focus-visible {
  background-color: #1d4ed8;
}

.avatarContainer #endSession {
  background-color: #ba432b;
  color: white;
}

.avatarContainer #endSession:hover {
  background-color: #b02a10;
}

.avatarContainer #endSession:focus-visible {
  background-color: #1d4ed8;
}

.avatarContainer button.dark {
  background-color: #2563eb;
}

.avatarContainer button.dark:hover {
  background-color: #1d4ed8;
}

.avatarContainer button.dark:focus-visible {
  background-color: #1d4ed8;
}

.avatarContainer img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
}

.avatarContainer .welcomeContainer {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  /* gap-8 */
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.avatarContainer .chatBtnContainer {
  max-width: 19.75rem;
  margin: 0 auto;
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.avatarContainer #startSession {
  width: 7.25rem;
  background-color: rgba(29, 78, 216, 0.5);
  color: white;
}

.avatarContainer #startSession:hover {
  background-color: #1e40af;
}

.avatarContainer #startSession:focus-visible {
  background-color: #1d4ed8;
}

.avatarContainer #startSession.dark {
  background-color: #2563eb;
}

.avatarContainer #startSession.dark:hover {
  background-color: #1d4ed8;
}

.avatarContainer #startSession.dark:focus-visible {
  background-color: #1d4ed8;
}

.avatarContainer .loadingText {
  display: none;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 10px 30px;
  border-radius: 50px;
  font-size: 16px;
}

.avatarContainer .loading-icon {
  display: none;
  color: teal;
  font-size: 8rem;
  animation: animate 2s infinite;
}

.avaterContainer.loading .loading-icon {
  display: block;
}

.avaterContainer.loading .chatBtnContainer {
  display: none !important;
}

.avaterContainer.streamReady .actionContainer {
  display: flex !important;
}

.avaterContainer.streamReady .welcomeContainer {
  display: none !important;
}

.avatarContainer .switchMode {
  width: 30px;
  height: 40px;
  cursor: pointer;
  text-align: center;
  color: #fff;
  font-size: 28px;
  line-height: 40px;
}

.avatarContainer .textInput-wrapper,
.avatarContainer .listeningIcon {
  width: 200px;
  height: 36px;
  background-position: center;
  background-size: auto 60px;
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 100px;
  position: relative;
}

.avatarContainer .textInput-wrapper {
  position: relative;
  display: none;
  background-color: rgba(255, 255, 255, 0.9);
}

.avatarContainer .textInput-wrapper .textInput {
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background: transparent;
  padding: 5px 45px 5px 15px;
  border: 0;
  color: #111111;
}

.avatarContainer .textInput-wrapper .textInput::placeholder {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text_mode .avatarContainer .textInput-wrapper {
  display: flex;
}

.avatarContainer .textInput-wrapper .speakButton {
  width: 40px;
  height: 40px;
  background-position: center;
  background-size: auto 40px;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 1);
  border-radius: 50px;
  cursor: pointer;
  position: absolute;
  right: 0;
  display: inline;
  text-align: center;
  font-size: 30px;
  color: #ffffff;
  line-height: 40px;
}

.text_mode .avatarContainer .listeningIcon {
  display: none;
}

.avatarContainer.talking .listeningIcon {
  background-image: url(./streaming-listening-dark.gif);
  /* animation: zoom-in-zoom-out 1s ease infinite; */
  /* display: block; */
}

#chatBox img.emoji {
  height: 24px !important;
  width: 24px !important;
  margin: 7px !important;
}

button.exportTranscript {
  margin: 10px 0;
  padding: 7px 10px;
}

#transcriptContainer {
  position: relative;
  padding: 10px 15px;
  display: none;
  width: 100%;
  max-width: 992px;
  margin: 0 auto;
  background: #ffffff;
}

#transcriptContainer .transcript-heading {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  padding: 0 0 10px;
  margin: 0 0 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#transcriptContainer .exportTranscript {
  background: #000000;
  color: #ffffff;
  border-radius: 30px;
  padding: 10px 25px;
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
}

#transcriptContainer p {
  font-size: 14px;
  position: relative;
  min-height: 28px;
}

p.avatar.transcript {
  text-align: left;
  padding-left: 40px !important;
}

p.user.transcript {
  text-align: right;
  padding-right: 40px !important;
}

p.transcript::before,
p.transcript::after {
  position: absolute;
  top: 7px;
}

p.avatar.transcript::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(./avatar.png);
  background-size: cover;
  left: 10px;
}

p.user.transcript::after {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(./user.png);
  background-size: cover;
  right: 10px;
}

.text_mode .mute-button {
  display: none !important;
}

.voice_mode .mute-button {
  display: inline !important;
}

.mute-button {
  position: absolute;
  top: 110px;
  right: 16px;
  background-color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: none;
}

.mute-button:hover {
  background: #ffffff !important;
}

.mute-button .icon {
  width: 36px;
  height: 36px;
  pointer-events: none;
  color: #000000 !important;
}

/* Main toggle button */
.view-transcript-button {
  position: absolute;
  bottom: 10px;
  right: 50px;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
  color: #ffffff;
  font-size: 14px;
}

.view-transcript-button.active {
  background-color: #e63946;
}

.streamingCountdown-container {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(000, 000, 000, 0.5);
  border: none;
  border-radius: 12px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: none;
  z-index: 1000;
  color: #fff;
  text-align: center;
  font-size: 24px;
  letter-spacing: 1px;
  padding: 3px 12px;
  font-weight: bold;
}

.streamingCountdown-container.session-ended {
  color: #ffffff !important;
  background: #ff00004d !important;
}

.language-switcher {
  position: absolute;
  bottom: 10px;
  right: 48px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
  font-size: 14px;
  color: #ffffff;
}

.language-switcher .lang-icon {
  cursor: pointer;
  user-select: none;
  margin: 0px !important;
  display: flex;
  font-size: inherit;
  align-items: center;
  justify-content: center;
}

#chatBox .language-switcher .lang-icon img.emoji {
  margin: 0 !important;
}

#chatBox #selectedLanguage img {
  vertical-align: middle !important;
}

.language-switcher .dropdown {
  display: none;
  position: absolute;
  bottom: 0px;
  right: 50px;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  min-width: 100px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.language-switcher .dropdown a {
  padding: 0px;
  text-decoration: none;
  color: black;
  font-size: 14px;
  display: flex;
  justify-content: start;
  align-items: center;
}

.language-switcher .dropdown img.emoji {
  height: 20px !important;
  width: 20px !important;
  margin: 0px 5px 0px 0px !important;
}

.language-switcher .dropdown a:hover {
  background-color: #f0f0f0;
}

/* Overlay Background */
.overlayQuestion-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.overlayQuestion-container.show {
  display: flex;
}

.overlayQuestion-content {
  background-color: rgba(255, 255, 255, 0.9);
  width: 90%;
  max-width: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.3s ease-out;
}

.overlayQuestion-header {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
}

.overlayQuestion-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.closeOverlayQuestion {
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #555;
  transition: color 0.2s ease;
}

.closeOverlayQuestion:hover {
  color: #e00;
}

.overlayQuestion-body {
  padding: 20px;
  font-size: 14px;
  color: #333;
}

.overlayQuestion-body .radio-option {
  display: flex;
  gap: 10px;
}

.overlayQuestion-body .radio-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.overlayQuestion-action {
  padding: 10px;
  text-align: right;
}

.overlayQuestion-action .submit-button {
  background-color: #4caf50;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.overlayQuestion-action .submit-button:hover {
  background-color: #45a049;
}

.avatarSessionStarted .language-switcher {
  display: none;
}

.avatarSessionStarted .view-transcript-button,
.avatarSessionStarted .mute-button {
  display: inline;
}

.avatarSessionStarted .mute-button {
  top: 60px;
  font-size: 22px;
}

div#streamingStatus {
  position: relative;
  font-size: 13px;
  height: 100px;
  overflow-y: scroll;
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 400px) {
  #chat-icon {
    bottom: 100px;
  }

  #chatBox {
    bottom: 105px;
    width: 370px;
    right: 10px;
  }

  #chat-widget {
  }

  #chatBox.fullwidth #chat-widget {
    position: relative;
    bottom: auto;
  }
}

@media (min-width: 400px) and (max-width: 767px) {
  #chat-icon {
    bottom: 100px;
  }

  #chatBox {
    bottom: 105px;
    width: 380px;
    right: 10px;
    min-height: 215px;
  }

  #chat-widget {
    min-height: 215px;
  }

  #chatBox.fullwidth #chat-widget {
    position: relative;
    bottom: auto;
  }
}

.hide {
  display: none;
}
