#chatbot-container {
  z-index: 19925;
}

#chatbot {
  display: none;
  flex-direction: column;
  margin-bottom: 16px;
  width: 300px !important;
  min-width: 250px;
  height: 420px;
  max-height: 602px !important;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 7px 6px 1px rgba(0,0,0,.16);
  position: fixed;
  right: 36px;
  bottom: 92px;
  z-index: inherit;
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  line-height: 19px;
}

#chatbot-header {
  background-color: black;
  color: white;
  text-align: left;
  padding: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  min-height: 30px;
}

#chatbot-header h2 {
  margin: 0;
}

.conversation-bubble-icon {
  width: 30px;
  height: 30px;
}

.conversation-bubble-icon.header {
  float: left;
  margin-right: 10px;
  background: url("i/blk_icn_chatbot.svg") no-repeat center;
  background-size: 30px;
}

#chatbot-body {
  height: calc(100% - 50px);
  overflow-y: scroll;
}

#chatbot-messages {
  padding: 15px;
  margin: 10px;
}

.chatbot-message {
  padding: 10px;
  background-color: rgb(245, 248, 250);
  border-radius: 10px;
}

#chatbot-consent-btn-group {
  display: flex;
  flex-direction: column;
  margin-left: 65%;
  margin-right: 10px;
}

.conversation-consent-btn {
  background-color: #000000;
  color: #fff;
  padding: 12px 20px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  margin-bottom: 10px;
}

#chatbot-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 10px;
}

.privacy-link {
  color: lightgrey;
  text-decoration: none;
  font-size: smaller;
}

#chatbot-controller {
  position: fixed;
  height: 56px;
  width: 56px;
  cursor: pointer;
  right: 36px;
  bottom: 36px;
  padding: 0;
  z-index: inherit;
}

.chatbot-controller-btn {
  background-color: #000000;
  color: #fff;
  border-radius: 100%;
  border: none;
  padding: 15px;
}

.chatbot-controller-btn.conversation {
  background-color: #fff;
  border: #000000;
  border-radius: 100%;
  padding: 10px 10px;
}

#chatbot-controller-close-circle-icon {
  width: 24;
  height: 24;
}

#chatbot-controller-conversation-circle-icon {
  width: 38px;
  height: 38px;
  background: url("i/blk_icn_chatbot.svg") no-repeat center;
  background-size: 38px;
}

#chatbot-controller-close-btn {
  display: none;
}