#g-chatbot {
  bottom: 60px;
  position: fixed;
  right: 60px;
  z-index: 2147483647;
}
@media (max-width: 1024px) {
  #g-chatbot {
    bottom: 15px;
    right: 15px;
  }
}
#g-chatbot * {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-sizing: border-box;
  outline: none;
}
#g-chatbot .g-chatbot-button {
  background: #25d366 url("../images/logo.svg") center center no-repeat;
  background-size: 45px;
  border-radius: 1000px;
  box-shadow: 0 0 2px rgba(0,0,0,0.2);
  box-sizing: border-box;
  cursor: pointer;
  height: 70px;
  transition: all 0.3s ease-in-out;
  width: 70px;
}
@media (max-width: 1024px) {
  #g-chatbot .g-chatbot-button {
    background-size: 30px;
    height: 50px;
    width: 50px;
  }
}
#g-chatbot .g-chatbot-button:hover {
  transform: translateY(-5px);
}
#g-chatbot .g-chatbot-modal {
  background: #efeae2 url("../images/bg.png");
  background-size: 80% auto;
  border-radius: 10px;
  bottom: calc(100% + 20px);
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  height: 500px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  right: -600px;
  transition: all 0.3s ease-in-out;
  width: 500px;
}
@media (max-width: 1024px) {
  #g-chatbot .g-chatbot-modal {
    height: calc(100vh - 200px);
    width: calc(100vw - 35px);
  }
}
#g-chatbot .g-chatbot-modal.opened {
  opacity: 1;
  right: 0;
}
#g-chatbot .g-chatbot-modal-header {
  align-items: center;
  background: #f0f2f5;
  color: #131b20;
  display: flex;
  font-family: system, -apple-system, system-ui, sans-serif;
  font-size: 16px;
  padding: 10px 15px;
  width: 100%;
}
#g-chatbot .g-chatbot-modal-header img {
  border-radius: 10000px;
  height: 40px;
  margin-right: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 40px;
}
#g-chatbot .g-chatbot-modal-input-area {
  align-items: flex-end;
  background: #f0f2f5;
  color: #131b20;
  display: flex;
  font-family: system, -apple-system, system-ui, sans-serif;
  font-size: 16px;
  padding: 10px 15px;
  width: 100%;
}
#g-chatbot .g-chatbot-modal-input-area input {
  background: #fff;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #131b20;
  font-family: system, -apple-system, system-ui, sans-serif;
  font-size: 15px;
  height: 38px;
  padding: 9px 12px;
  resize: none;
  width: 100%;
}
#g-chatbot .g-chatbot-modal-input-area input:disabled {
  opacity: 0.5;
}
#g-chatbot .g-chatbot-modal-input-area .send {
  background: url("../images/send.svg") center center no-repeat;
  background-size: 24px 24px;
  cursor: pointer;
  height: 40px;
  margin-left: 15px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 30px;
}
#g-chatbot .g-chatbot-modal-chat-area {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  padding: 30px;
}
#g-chatbot .g-chatbot-modal-chat-area::-webkit-scrollbar {
  display: none;
}
#g-chatbot .g-chatbot-modal-chat-area .message,
#g-chatbot .g-chatbot-modal-chat-area .button-group .button {
  animation: show 0.3s;
  background: #fff;
  border-radius: 8px;
  box-shadow: 1px 1px 1px rgba(0,0,0,0.2);
  color: #131b20;
  font-family: system, -apple-system, system-ui, sans-serif;
  font-size: 15px;
  padding: 8px 10px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
#g-chatbot .g-chatbot-modal-chat-area .message + .message,
#g-chatbot .g-chatbot-modal-chat-area .button-group .button + .message {
  margin-top: 5px;
}
#g-chatbot .g-chatbot-modal-chat-area .message.received,
#g-chatbot .g-chatbot-modal-chat-area .button-group .button.received {
  align-self: flex-end;
  background: #d9fdd3;
  box-shadow: -1px 1px 1px rgba(0,0,0,0.2);
}
#g-chatbot .g-chatbot-modal-chat-area .button-group {
  display: flex;
  margin-bottom: 5px;
}
#g-chatbot .g-chatbot-modal-chat-area .button-group .button {
  align-items: center;
  color: #009de2;
  cursor: pointer;
  display: flex;
  justify-content: center;
  margin-top: 5px;
  padding: 8px 30px;
  text-align: center;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#g-chatbot .g-chatbot-modal-chat-area .button-group .button svg {
  fill: #009de2;
  height: 14px;
  margin-right: 5px;
  width: 14px;
}
#g-chatbot .g-chatbot-modal-chat-area .button-group .button + .button {
  margin-left: 5px;
}
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
