@import url("https://fonts.googleapis.com/css?family=Open+Sans:100,200,300,400,500,600,700,800,900");
/*--------------------
Mixins
--------------------*/
#kasina-chatbot {
  display: none;
  font-family: "Open Sans";
  border: none;
  position: fixed;
  box-shadow: rgba(150, 150, 150, 0.2) 0px 10px 30px 0px, rgba(150, 150, 150, 0.2) 0px 0px 0px 1px;
  bottom: 5rem;
  right: 1rem;
  width: 448px;
  height: 85dvh;
  max-height: 824px;
  border-radius: 0.75rem;
  z-index: 2147483646;
  overflow: hidden;
  background-color: white;
  left: unset;
  top: unset;
  /*--------------------
  Loader
  --------------------*/
  /*--------------------
  Chat
  --------------------*/
  /*--------------------
  Chat Title
  --------------------*/
  /*--------------------
  Clear Chat
  --------------------*/
  /*--------------------
  Messages
  --------------------*/
  /*--------------------
  Message Box
  --------------------*/
  /*--------------------
  Custom Srollbar
  --------------------*/
  /*--------------------
  Suggested Text
  --------------------*/
}
#kasina-chatbot.left {
  left: 1rem;
  right: unset;
}
#kasina-chatbot div#chatbot_loader {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  z-index: 1;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
}
#kasina-chatbot div#chatbot_loader svg {
  height: 140px;
  width: 140px;
}
#kasina-chatbot .chat {
  width: 100%;
  height: 100%;
  max-height: 100%;
  z-index: 2;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  overflow: hidden;
}
#kasina-chatbot .chat-title {
  flex: 0 1 24px;
  position: relative;
  z-index: 2;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.02) 0.44%, rgba(0, 0, 0, 0) 49.5%), #ffffff;
  text-align: left;
  padding: 15px 12px 15px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}
#kasina-chatbot .chat-title h1,
#kasina-chatbot .chat-title h2 {
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  margin: 0;
  padding: 0;
  color: #27272a;
  font-family: "Open Sans";
}
#kasina-chatbot .chat-title h3 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
  letter-spacing: 1px;
  margin: 0;
  font-family: "Open Sans";
}
#kasina-chatbot .chat-title .avatar {
  z-index: 1;
  overflow: hidden;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
#kasina-chatbot .chat-title .avatar img {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
#kasina-chatbot .chat-title .chat-title-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
#kasina-chatbot .clear-chat-wrapper {
  cursor: pointer;
  display: flex;
  gap: 7px;
  margin-right: 10px;
  align-items: center;
  font-weight: 500;
}
#kasina-chatbot .clear-chat-wrapper:hover span {
  font-weight: bold;
}
#kasina-chatbot .clear-chat-wrapper:hover svg {
  fill: antiquewhite;
}
#kasina-chatbot .messages {
  flex: 1 1 auto;
  color: #27272a;
  overflow: hidden;
  position: relative;
  width: 100%;
}
#kasina-chatbot .messages pre {
  white-space: pre-wrap;
  word-wrap: break-word;
}
#kasina-chatbot .messages .messages-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 101%;
  width: 100%;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
}
#kasina-chatbot .messages .message {
  clear: both;
  float: left;
  padding: 13px 16px 14px;
  border-radius: 10px 10px 10px 0;
  background-color: hsla(240, 6%, 90%, 0.5);
  margin: 8px 0;
  font-size: 14px;
  line-height: 1.4;
  margin-left: 35px;
  position: relative;
}
#kasina-chatbot .messages .message .timestamp {
  position: absolute;
  bottom: -15px;
  font-size: 9px;
  color: #929292;
}
#kasina-chatbot .messages .message::before {
  content: "";
  position: absolute;
  bottom: -6px;
  border-top: 6px solid hsla(240, 6%, 90%, 0.5);
  left: 0;
  border-right: 7px solid transparent;
}
#kasina-chatbot .messages .message .avatar {
  position: absolute;
  z-index: 1;
  bottom: -15px;
  left: -35px;
  border-radius: 30px;
  width: 26px;
  height: 26px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.24);
}
#kasina-chatbot .messages .message .avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#kasina-chatbot .messages .message.message-personal {
  float: right;
  color: #fff;
  text-align: right;
  background-color: #3b81f6;
  border-radius: 10px 10px 0 10px;
}
#kasina-chatbot .messages .message.message-personal::before {
  left: auto;
  right: 0;
  border-right: none;
  border-left: 5px solid transparent;
  border-top: 4px solid #3b81f6;
  bottom: -4px;
}
#kasina-chatbot .messages .message:last-child {
  margin-bottom: 30px;
}
#kasina-chatbot .messages .message.new {
  transform: scale(0);
  transform-origin: 0 0;
  animation: bounce 500ms linear both;
}
#kasina-chatbot .messages .message.loading::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 2;
  margin-top: 4px;
  animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
  border: none;
  animation-delay: 0.15s;
  background-color: #4b4747;
}
#kasina-chatbot .messages .message.loading span {
  display: block;
  font-size: 0;
  width: 20px;
  height: 10px;
  position: relative;
}
#kasina-chatbot .messages .message.loading span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 2;
  margin-top: 4px;
  animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
  margin-left: -7px;
  background-color: #4b4747;
}
#kasina-chatbot .messages .message.loading span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 2;
  margin-top: 4px;
  animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
  margin-left: 7px;
  animation-delay: 0.3s;
  background-color: #4b4747;
}
#kasina-chatbot .messages .message li,
#kasina-chatbot .messages .message strong,
#kasina-chatbot .messages .message h1,
#kasina-chatbot .messages .message h2,
#kasina-chatbot .messages .message h3,
#kasina-chatbot .messages .message h4,
#kasina-chatbot .messages .message h5,
#kasina-chatbot .messages .message h6 {
  font-family: "Open Sans";
}
#kasina-chatbot .messages .message p {
  font-family: "Open Sans";
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  color: #27272a;
  font-size: 14px;
  font-weight: normal;
  line-height: normal;
  letter-spacing: normal;
}
#kasina-chatbot .message-box {
  display: flex;
  width: 100%;
  position: relative;
  border-top: 1px solid #e4e4e7;
  gap: 10px;
  align-items: center;
}
#kasina-chatbot .message-box .message-input {
  background: none;
  border: none;
  outline: none !important;
  resize: none;
  font-size: 14px;
  color: #27272a;
  height: 45px;
  margin: 0;
  padding: 0.75rem;
  width: 100%;
  font-family: "Open Sans";
  overflow: hidden;
}
#kasina-chatbot .message-box textarea:focus:-webkit-placeholder {
  color: transparent;
}
#kasina-chatbot .message-box .message-submit {
  border: none;
  background-color: transparent;
  padding: 0px;
  width: 48px;
  height: 40px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  transition: background-color 150ms ease-out;
  font-size: 18px;
  margin-right: 8px;
}
#kasina-chatbot .message-box .message-submit:hover {
  background: #f1f1f1;
}
#kasina-chatbot .message-box .message-submit svg {
  fill: #1f1f1f;
}
#kasina-chatbot .mCSB_scrollTools {
  margin: 1px -3px 1px 0;
}
#kasina-chatbot .mCSB_scrollTools div.mCSB_draggerRail {
  height: 100vh;
}
#kasina-chatbot .mCSB_inside > .mCSB_container {
  margin-right: 0px;
  padding: 0 10px;
}
#kasina-chatbot .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: rgba(0, 0, 0, 0.7) !important;
}
#kasina-chatbot .footer {
  background-color: #fafafa;
  color: #71717a;
  display: flex;
  gap: 16px;
  padding: 0 12px;
}
#kasina-chatbot .footer a,
#kasina-chatbot .footer p {
  text-decoration: none;
  color: #71717a;
  font-size: 12px;
  line-height: 15px;
}
#kasina-chatbot .footer p {
  margin-top: 12px;
  margin-bottom: 12px;
}
#kasina-chatbot .footer p.copyright-wrapper {
  display: flex;
  align-items: center;
  gap: 3px;
  text-wrap: nowrap;
}
#kasina-chatbot .footer svg {
  width: 1rem;
  height: 1rem;
}
#kasina-chatbot .suggested-box {
  padding: 12px;
}
#kasina-chatbot .suggested-box button:not(:last-child) {
  margin-right: 10px;
}
#kasina-chatbot .suggested-box button {
  border-radius: 10px;
  background-color: hsla(240, 6%, 90%, 0.5);
  padding: 7px 16px;
  display: inline-block;
  cursor: pointer;
  border: 1px solid #e4e4e7;
}
#kasina-chatbot .suggested-box button:hover {
  background-color: #e4e4e7;
}

/*--------------------
  Bounce
  --------------------*/
@keyframes bounce {
  0% {
    transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  4.7% {
    transform: matrix3d(0.45, 0, 0, 0, 0, 0.45, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  9.41% {
    transform: matrix3d(0.883, 0, 0, 0, 0, 0.883, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  14.11% {
    transform: matrix3d(1.141, 0, 0, 0, 0, 1.141, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  18.72% {
    transform: matrix3d(1.212, 0, 0, 0, 0, 1.212, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  24.32% {
    transform: matrix3d(1.151, 0, 0, 0, 0, 1.151, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  29.93% {
    transform: matrix3d(1.048, 0, 0, 0, 0, 1.048, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  35.54% {
    transform: matrix3d(0.979, 0, 0, 0, 0, 0.979, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  41.04% {
    transform: matrix3d(0.961, 0, 0, 0, 0, 0.961, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  52.15% {
    transform: matrix3d(0.991, 0, 0, 0, 0, 0.991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  63.26% {
    transform: matrix3d(1.007, 0, 0, 0, 0, 1.007, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  85.49% {
    transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  100% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}
@keyframes ball {
  from {
    transform: translateY(0) scaleY(0.8);
  }
  to {
    transform: translateY(-10px);
  }
}
#chat-circle {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background: #ffffff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: rgb(0, 0, 0);
  padding: 8px;
  cursor: pointer;
  text-align: center;
  box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.6), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease-in-out;
  transform: scale(1);
  box-sizing: border-box;
  z-index: 999999999;
}
#chat-circle.left {
  left: 1rem;
  right: unset;
}
#chat-circle svg {
  height: 32px;
}
#chat-circle:hover {
  transform: scale(1.08);
}
#chat-circle .message-open-icon img {
  height: 100%;
  width: 100%;
  max-width: 32px;
  max-height: 32px;
  -o-object-fit: cover;
     object-fit: cover;
}

#chat-overlay {
  background: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: none;
}

svg.message-close-icon {
  display: none;
}

.open-chatbox svg.message-close-icon {
  display: block;
}
.open-chatbox .message-open-icon {
  display: none;
}/*# sourceMappingURL=style.css.map */