@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap");
:root {
  --theme-font: "Montserrat", sans-serif;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-dark: #151411;
  --light-color: #d9d9d9;
  --color-gray: #696969;
  --chat-container: #070e1e;
  --chat-sidebar: #070e1e;
  --gray-50: #f7f7f8;
  --gray-100: #ececf1;
  --gray-200: #d9d9e3;
  --gray-300: #c5c5d2;
  --gray-400: #acacbe;
  --gray-500: #8e8ea0;
  --gray-600: #565869;
  --gray-700: #40414f;
  --gray-800: #343541;
  --gray-900: #202123;
  --gray-950: #050509;
  --gizmo-gray-500: #999;
  --gizmo-gray-600: #666;
  --gizmo-gray-950: #0f0f0f;
  --brand-purple: #ab68ff;
  --body-bg: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  --msger-bg: #fff;
  --border: 2px solid #ddd;
  --left-msg-bg: #ecf0f7;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  height: 100%;
}

body {
  margin: auto;
  font-family: var(--theme-font);
  scroll-behavior: smooth;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
body::-webkit-scrollbar {
  width: 5px;
}
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
body::-webkit-scrollbar-thumb {
  background-color: var(--color-gray);
  outline: 1px solid var(--color-gray);
}

ul {
  margin: 0;
  padding: 0;
  display: block;
}

li {
  list-style: none;
  font-family: var(--theme-font);
}

a,
h1,
h2,
h3,
h4,
h5,
h6,
aside,
* {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

*,
:after,
:before {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-scroll-snap-strictness: proximity;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #000000;
  --tw-ring-color: rgba(69, 89, 164, .5);
  --tw-ring-offset-shadow: 0 0 transparent;
  --tw-ring-shadow: 0 0 transparent;
  --tw-shadow: 0 0 transparent;
  --tw-shadow-colored: 0 0 transparent;
}

*,
:after,
:before {
  border: 0 solid #d9d9e3;
  box-sizing: border-box;
}

a,
a:hover,
a:focus,
button,
button:focus {
  outline: none !important;
  text-decoration: none;
  color: inherit;
  box-shadow: none;
  font-family: var(--theme-font);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

input:focus {
  outline: none;
  box-shadow: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--theme-font);
  font-weight: inherit;
  line-height: inherit;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

p {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  font-family: var(--theme-font);
  font-weight: normal;
  margin-bottom: 15px;
}

img {
  width: 100%;
  max-width: 100%;
  vertical-align: middle;
  height: auto;
  border-style: none;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

svg {
  vertical-align: middle;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

.chatbot-widget {
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 350px;
  margin: auto;
  height: calc(100vh - 200px);
  border: 1px solid var(--chat-sidebar);
  border-radius: 15px;
  background: var(--color-white);
  box-shadow: 0 15px 15px -5px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .chatbot-widget {
    max-width: 100vw;
    height: 100vh;
    border-radius: 0;
  }
}

.chatbot-widget-header {
  display: flex;
  justify-content: space-between;
  padding: 15px 15px;
  border-bottom: var(--chat-sidebar);
  background: var(--chat-sidebar);
  color: var(--color-white);
  width: 100%;
}

.chatbot-widget-header-title {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  text-transform: capitalize;
}

.chatbot-widget-header-title i {
  width: 30px;
  height: 30px;
  display: block;
}

.chatbot-widget-chat {
  flex: 1;
  overflow-y: auto;
  padding: 30px 16px;
  font-size: 12px;
  line-height: 22px;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap-reverse;
}

.chatbot-widget-chat::-webkit-scrollbar {
  width: 3px;
}

.chatbot-widget-chat::-webkit-scrollbar-track {
  background: #ddd;
}

.chatbot-widget-chat::-webkit-scrollbar-thumb {
  background: #bdbdbd;
}

.msg {
  display: flex;
  align-items: flex-end;
  margin-bottom: 15px;
}
.msg:last-child {
  margin-bottom: auto;
}

.msg:last-of-type {
  margin: 0;
}

.msg-img {
  width: 26px;
  height: 26px;
  margin-right: 10px;
  background: #ddd;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 50%;
  flex: none;
}

.msg-bubble {
  max-width: 100%;
  padding: 10px;
  border-radius: 10px;
  background: var(--left-msg-bg);
}

.msg-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.msg-info-name {
  margin-right: 10px;
  font-weight: bold;
}

.msg-info-time {
  font-size: 0.85em;
  display: flex;
  -moz-column-gap: 5px;
       column-gap: 5px;
}

.msg-info-time i {
  width: 15px;
  height: 15px;
}

.msg-info-time i img {
  width: 100%;
  height: 100%;
}

.left-msg .msg-bubble {
  border-bottom-left-radius: 0;
}

.right-msg {
  flex-direction: row-reverse;
}

.right-msg .msg-bubble {
  background: var(--chat-sidebar);
  color: var(--color-white);
  border-bottom-right-radius: 0;
}

.right-msg .msg-img {
  margin: 0 0 0 10px;
}

.chatbot-widget-inputarea {
  display: flex;
  padding: 10px;
  border-top: var(--color-gray);
  background: var(--color-white);
  width: 100%;
}

.chatbot-widget-inputarea * {
  padding: 10px;
  border: none;
  border-radius: 3px;
  font-size: 1em;
}

.chatbot-widget-input {
  flex: 1;
  background: #f7f7f7;
  height: 40px;
  outline: none;
  box-shadow: none;
}

.voice-send-btn {
  margin-right: 10px;
  background: #f7f7f7;
  cursor: pointer;
  transition: background 0.23s;
  font-size: 12px;
}

.chatbot-widget-send-btn {
  margin-left: 10px;
  background: var(--chat-sidebar);
  cursor: pointer;
  transition: background 0.23s;
}

.chatbot-widget-send-btn:hover {
  background: var(--color-black);
}

.chatbot-widget-inputarea button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.chatbot-widget-inputarea button img {
  padding: 0;
  max-width: 20px;
}

.chatbot-widget-chat {
  background-color: var(--color-white);
}

.popup-btn {
  display: inline-block;
  border: 1px solid var(--chat-sidebar);
  color: var(--chat-sidebar);
  padding: 8px 25px;
  border-radius: 5px;
  font-size: 12px;
  line-height: normal;
  margin-top: 10px;
  cursor: pointer;
}

.popup-block {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--chat-sidebar);
  padding: 15px 15px;
  z-index: 9;
}
.popup-block.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.popup-block .popup-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.popup-block .popup-form .input-control {
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 10px 15px;
  color: var(--chat-sidebar);
  border-radius: 5px;
  font-size: 12px;
}
.popup-block .popup-form .send-btn {
  background-color: #3f60ad;
  padding: 10px 15px;
  border-radius: 5px;
  color: var(--color-white);
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
}/*# sourceMappingURL=chatbot-widget.css.map */