body {
  font-family: Arial, Helvetica, sans-serif;
}

.ol-chat-init {
  position: fixed;
  z-index: 5000000;
  bottom: 0;
  right: 5%;
}
.ol-chat-init .ol-chat-button {
  width: 225px;
  box-sizing: border-box;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 2px #00a6cd;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
  background: #ffffff;
  border-bottom: none;
  color: #00a6cd;
  padding: 15px 20px;
  cursor: pointer;
  font-weight: bold;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
.ol-chat-init .ol-chat-button img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
.ol-chat-init .ol-chat-choices {
  display: none;
  width: 225px;
  box-sizing: border-box;
  background: #ffffff;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
  padding: 10px;
  text-align: center;
  border-right: solid 2px #00a6cd;
  border-left: solid 2px #00a6cd;
  font-size: 14px;
}
.ol-chat-init .ol-chat-choices .choice {
  color: #005e74;
  padding: 20px 15px;
  margin: 10px 0;
  border: solid 1px #e1e1e1;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition-duration: 0.6s;
  border-radius: 8px;
  font-weight: bold;
}
.ol-chat-init .ol-chat-choices .choice.choice-virtual {
  border: dotted 1px #ffc62b;
}
.ol-chat-init .ol-chat-choices .choice.choice-live {
  border: dotted 1px #00a6cd;
}
.ol-chat-init .ol-chat-choices .choice:hover {
  background: #fafafa;
  border-style: solid;
}

#chatbot-chat {
  left: unset !important;
  right: 5% !important;
}/*# sourceMappingURL=ol-chat.css.map */