.chatbot .chatbot__launcher {
  position: fixed;
  bottom: 40px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.chatbot .chatbot__launcher img {
  width: 50%;
  height: 50%;
  object-fit: contain;
}

.chatbot .chatbot__container {
  display: none;
  position: fixed;
  bottom: 40px;
  right: 30px;
  width: 100dvh;
  max-width: 350px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.chatbot .chatbot__container .header {
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--primary-color);
}

.chatbot .chatbot__container .header .heading {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 500;
  font-size: 13px;
}

.chatbot .chatbot__container .header .icon__container {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chatbot .chatbot__container .header .icon__container img {
  width: 50%;
  height: 50%;
  object-fit: contain;
}

.chatbot .chatbot__container .header .close__icon {
  width: 16px;
  height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.chatbot .chatbot__container .header .close__icon img {
  width: 100%;
}

.chatbot .chatbot__container .messages__container,
.chatbot .chatbot__container .choices__container {
  padding: 20px;
  min-height: 300px;
  max-height: 300px;
  overflow-y: auto;
  background-color: white;
}

.chatbot .chatbot__container .messages__container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chatbot .chatbot__container .messages__container .message {
  font-size: 12px;
  font-weight: 500;
  display: flex;
}

.chatbot .chatbot__container .messages__container .message.questions {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.chatbot
  .chatbot__container
  .messages__container
  .message.questions
  .question-options {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chatbot
  .chatbot__container
  .messages__container
  .message.questions
  .question-options
  button {
  background-color: transparent;
  border: none;
  text-align: start;
  font-size: 12px;
  font-weight: 500;
  color: var(--primary-color);
  display: flex;
  gap: 6px;
  align-items: center;
  cursor: pointer;
}

.chatbot
  .chatbot__container
  .messages__container
  .message.questions
  .question-options
  button:hover {
  text-decoration: underline;
}

.chatbot
  .chatbot__container
  .messages__container
  .message.questions
  .question-options
  button
  img {
  width: 14px;
  height: 14px;
}

.chatbot .chatbot__container .messages__container .message .content {
  max-width: 80%;
  padding: 8px 16px;
  border-radius: 16px;
}

.chatbot .chatbot__container .messages__container .message.question .content {
  border-bottom-right-radius: 0;
  background-color: var(--primary-color);
  color: white;
}

.chatbot .chatbot__container .messages__container .message.question {
  justify-content: flex-end;
}

.chatbot .chatbot__container .messages__container .message.response .content {
  border-bottom-left-radius: 0;
  background-color: var(--primary-color-opacity);
}

.chatbot .chatbot__container .messages__container .message.response {
  justify-content: flex-start;
}

.chatbot .chatbot__container .choices__container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chatbot .chatbot__container .choices__container .choice__button {
  padding: 20px;
  border: 1px solid var(--text-gray-color);
  border-radius: var(--radius);
  cursor: pointer;
  background-color: white;
  font-weight: 500;
}

.chatbot .chatbot__container .text__container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 10px;
  background-color: white;
}

.chatbot .chatbot__container .text__container input {
  padding: 0 16px;
  width: 100%;
  height: 100%;
  border: none;
}

.chatbot .chatbot__container .text__container .send__button {
  width: 26px;
  height: 26px;
  border-radius: 100%;
  background: var(--primary-color);
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chatbot .chatbot__container .text__container .send__button img {
  width: 60%;
  margin-left: 2px;
}
