.home .emove-ai-chatbot {
  width: 280px;
  position: fixed;
  right: 55px;
  left: 48px;
  z-index: 999999;
  bottom: 26px;
  padding: 0 20px;
  box-shadow: rgba(0, 18, 46, 0.16) 0px 8px 26px 0px;
  background-color: #90191C;
  border-radius: 12px;
}
@media (max-width: 600px) {
  .home .emove-ai-chatbot {
    width: 70%;
    left: 20px;
    bottom: 20px;
    z-index: 9999;
  }
}
.home .emove-ai-chatbot #button {
  position: absolute;
  width: 112px;
  height: 140px;
  bottom: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 9999;
  right: -55px;
  left: auto;
}
.home .emove-ai-chatbot #button a {
  width: 60px;
  height: 60px;
  border-radius: 28px;
  display: inherit;
  align-items: center;
  justify-content: center;
  pointer-events: initial;
  background-size: 130% 130%;
  transition: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  color: rgb(0, 125, 252);
}
.home .emove-ai-chatbot #button a:before {
  content: "";
  transition: opacity 0.5s ease-in-out;
  position: absolute;
  inset: -1px;
  opacity: 0;
  border-radius: 50%;
  background-color: rgb(198, 204, 220);
}
.home .emove-ai-chatbot #button a svg {
  fill: rgb(255, 255, 255);
  transition: 0.2s ease-in-out;
}
.home .emove-ai-chatbot #button a i {
  height: 26px;
  width: 26px;
  position: absolute;
  opacity: 0;
  transition: 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home .emove-ai-chatbot #button a i.for-opened {
  transform: translateX(10px);
}
.home .emove-ai-chatbot #button a i.type1.for-opened {
  width: 31px;
  height: 28px;
}
.home .emove-ai-chatbot #button a i.type1.for-opened svg {
  width: 28px;
  height: 28px;
  margin-left: 3px;
}
.home .emove-ai-chatbot #button a i.for-closed {
  transform: translateX(-10px);
}
.home .emove-ai-chatbot #button a i.for-closed.active {
  transform: translateX(0px);
}
.home .emove-ai-chatbot #button a i.type1 svg {
  fill: #ffffff;
}
.home .emove-ai-chatbot #button a i.active {
  opacity: 1;
}
.home .emove-ai-chatbot .chat-label {
  position: absolute;
  height: 42px;
  bottom: 61px;
  z-index: 1;
  white-space: nowrap;
  font-size: 17px;
  line-height: 17px;
  border-radius: 16px;
  padding: 10px 15px;
  box-shadow: rgba(0, 18, 46, 0.24) 0px 6px 32px 0px;
  background: #90191C;
  opacity: 0;
  border: none;
  color: #ffffff;
  line-height: 1.4em;
}
/* @media (max-width: 767px) {
  .home .emove-ai-chatbot .chat-label {
    display: none;
  }
} */
.home .emove-ai-chatbot .chat-label.active {
  opacity: 1;
  transition-property: opacity;
  bottom: 35px;
  left: 20px;
  box-shadow: rgba(0, 18, 46, 0.18) 0px 2px 20px 0px;
}
.home .goto-ai-section-wrapper {
  left: 0;
  bottom: 0;
  z-index: 9999;
  /* background-color: rgb(255, 255, 255); */
  /* background-color: #90191C; */
  padding: 0px;
  max-width: 100%;
  position: relative;
  /* bottom: 26px; */
  /* border-radius: 12px; */
  /* box-shadow: rgba(0, 18, 46, 0.16) 0px 8px 26px 0px; */
  display: flex;
  flex-direction: column;
  max-height: calc(100% - 76px);
  right: 54px;
  margin-left: 0px;
  font-family: louis_george_caferegular;
}
/* @media (max-width: 600px) {
  .home .goto-ai-section-wrapper {
    max-width: 100%;
  }
} */
.home .goto-ai-section-wrapper .close-button-wrapper {
  position: absolute;
  bottom: 70%;
  opacity: 1;
  width: 100%;
  height: 45px;
  transition: 0.3s;
  transform: translateY(10px);
  right: -21px;
}
.home .goto-ai-section-wrapper .close-button-wrapper button {
  position: absolute;
  top: -5px;
  border-radius: 50%;
  margin: 0px;
  padding: 5px;
  /* box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px; */
  height: 30px;
  width: 30px;
  display: flex;
  /* background: rgb(255, 255, 255); */
  right: 2px;
  cursor: pointer;
  box-shadow: none;
  background: transparent;
  border: none;
}
.home .goto-ai-section-wrapper .close-button-wrapper button svg {
  width: 20px;
  height: 20px;
  /* fill: rgb(136, 148, 171); */
  fill: #ffffff;
}
.home .goto-ai-section-wrapper .message-container {
  max-width: 100%;
  font-size: 18px;
  /* background: rgb(255, 255, 255); */
  position: relative;
  overflow-wrap: break-word;
  overflow-y: auto;
  white-space: normal;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 19px 38px 19px 0px;
  color: #ffffff;
}
.home .goto-ai-section-wrapper .message-container img {
  width: 20px;
  margin: 0px 2px -5px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.home .goto-ai-section-wrapper .message-container:after {
  content: "";
  border-bottom: 1px solid rgb(222, 222, 222);
  display: block;
  position: absolute;
  bottom: 0px;
  width: calc(100% - 38px);
}
.home .goto-ai-section-wrapper .input-group {
  padding: 9px 22px 9px 0px;
  width: 100%;
  position: relative;
  /* background: rgb(255, 255, 255); */
  z-index: 3;
  flex: 0 0 auto;
}
.home .goto-ai-section-wrapper .input-group .button-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.home .goto-ai-section-wrapper .input-group .button-wrapper a {
  font-size: 18px;
  color: #ffffff;
  /* background: rgb(255, 255, 255); */
  line-height: 21px;
  margin-top: 6px;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
  margin-right: 16px;
  text-align: left;
  border: none;
  border-bottom: 1px solid transparent;
}
.home .goto-ai-section-wrapper .input-group .button-wrapper a:hover {
  cursor: pointer;
  border-bottom: 1px solid #ffffff;
}
.home .goto-ai-section-wrapper:hover .close-button-wrapper {
  /* opacity: 1; */
  /* transform: translateY(0px); */
}
.home .goto-ai-section-wrapper:hover .close-button-wrapper svg{
  fill: rgba(#ffffff,0.6);
}
.home .goto-ai-section-wrapper.hide {
  display: none;
}
.home .emove-ai-chatbot.hide #button {
  left: 26px;
}
@media (max-width: 600px) {
  .home .emove-ai-chatbot.hide #button {
    left: 0;
    right: auto;
    height: auto;
  }
  .home .emove-ai-chatbot .chat-label.active{
    bottom: 0px;
    left: 0px;
  }
  .home .goto-ai-section-wrapper .close-button-wrapper{
    opacity: 1;
  }
  .home .goto-ai-section-wrapper .message-container{
    padding-right: 20px;
  }
  .home .goto-ai-section-wrapper .input-group{
    padding-right: 0;
  }
}/*# sourceMappingURL=home-ai-window.css.map */