@charset "UTF-8";
.chat-popup {
  position: fixed;
  bottom: 20px;
  right: 80px;
  z-index: 99999999;
}
.chat-icon {
  color: #fff;
  border: none;
  /* width: 55px; */
  /* height: 55px; */
  font-size: 20px;
  justify-content: center;
  position: fixed;
  bottom: 40px;
  right: 25px;
  z-index: 1000;
  border-radius: 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
  background: none;
}
.chat-icon:hover .service-text {
  display: block;
}
.service-text {
  width: 100px;
  background: #fff;
  line-height: 40px;
  border-radius: 25px;
  margin-left: -30px;
  border: 1px solid #277FFA;
  flex: 1;
  text-align: center;
  color: #277FFA;
  font-size: 15px;
  font-weight: bold;
  display: none;
  padding-left: 20px;
}
.chat-icon img {
  width: 50px;
  /* height: 50px; */
  z-index: 111;
}
.chat-window {
  position: fixed;
  bottom: 100px;
  right: 50px;
  width: 500px;
  height: 80vh;
  border: 1px solid #E2E2E2;
  border-radius: 25px;
  overflow: hidden;
  display: none;
  flex-direction: column;
  background: #fff;
  font-size: 16px;
}
.close {
  text-align: right;
  line-height: 30px;
  margin-right: 20px;
}
.close img {
  width: 30px;
  margin-top: 10px;
}
.chat-header {
  padding: 10px 10px;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-header .tabBox {
  display: flex;
  width: 50%;
  margin: 0 auto;
  justify-content: space-around;
  align-items: center;
  background: #F5F5F5;
  border-radius: 66px;
  opacity: 1;
  border: 1px solid #EDEDED;
  padding: 5px;
  color: #7D7D7D;
}
.chat-header .tabBox .itemTab {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  padding: 5px;
  font-size: 15px;
  cursor: pointer;
}
.chat-header .tabBox .itemTab.activeTab {
  background: #0066FF;
  color: #fff;
  border-radius: 57px;
}
.chat-header .tabBox .itemTab img {
  width: 25px;
  height: 25px;
  margin-right: 10px;
  border-radius: 50%;
}
.service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #F4F8FF;
  border-radius: 30px;
  padding: 5px 10px;
  cursor: pointer;
}
.serviceImg {
  width: 30px;
  margin-right: 8px;
}
.tittle {
  font-size: 30px;
  font-family: Poppins-SemiBold, Poppins;
  font-weight: 600;
  color: #000000;
  line-height: 20px;
}
.chat-messages {
  padding: 10px;
  flex: 1;
  overflow-y: auto;
  background: #fff;
}
.message {
  display: flex;
  /* flex-direction: column; */
  margin-bottom: 10px;
}
.message p {
  padding: 12px;
  border-radius: 5px;
  word-break: break-all;
}
.message img {
  width: 40px;
}
.received {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.received p {
  background-color: #f2f2f2;
  align-self: flex-start;
  border-radius: 3px 10px 10px 10px;
}
.received img {
  margin-right: 10px;
}
.sent {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.sent img {
  margin-left: 10px;
}
.sent p {
  background: #277FFA;
  color: #fff;
  align-self: flex-end;
  border-radius: 10px 3px 10px 10px;
}
.buttonDiv {
  height: 50px;
}
.buttonDiv button {
  border: 1px solid #277FFA;
  border-radius: 8px;
  background: #FFFFFF;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 30px;
  font-family: Poppins-Regular, Poppins;
  font-weight: 400;
  color: #277FFA;
  padding: 10px;
  margin: 10px auto;
}
.buttonDiv button img {
  width: 15px;
  margin-right: 10px;
}
.chat-input {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  height: 50px;
  margin: 0 auto;
  border-radius: 10px;
  opacity: 1;
  border: 1px solid #AEAEAE;
  margin-bottom: 20px;
  padding: 0 10px;
}
.chat-input input {
  flex: 1;
  margin-right: 10px;
  padding: 5px;
  border: none;
  border-radius: 5px;
}
.chat-input button {
  width: 15%;
  padding: 5px 10px;
  border: none;
  border-radius: 8px;
  background-color: #007bff;
  color: #fff;
  cursor: pointer;
}
.chat-input button img {
  width: 30px;
}
#TextComponents {
  display: none;
}
#latestAnswer {
  display: none;
}
#stop,
#regenerateResponse {
  display: none;
}
#loading-container.loading-dots {
  display: none;
  justify-content: center;
}
#loading-container.loading-dots span {
  width: 13px;
  height: 13px;
  margin-right: 5px;
  background-color: #3498db;
  border-radius: 50%;
  opacity: 0;
  animation: dot 1s ease-in-out infinite;
}
#loading-container.loading-dots span:nth-child(1) {
  animation-delay: 0.1s;
}
#loading-container.loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
#loading-container.loading-dots span:nth-child(3) {
  animation-delay: 0.3s;
}
@keyframes dot {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}
.serviceDialog {
  display: flex;
  flex-direction: column;
  height: 92%;
}
.iframeCon {
  width: 100%;
  height: 100%;
}
.chatBotDialog {
  display: none;
  overflow: hidden;
  flex-direction: column;
  background: #fff;
  font-size: 16px;
  height: 92%;
  width: 100%;
}
