#chat-container {
  position: fixed;
  right: 16px;
  bottom: 6rem;
  width: 100%;
  max-width: 384px;
}
#chat-container__inner {
  background-color: white;
  width: 100%;
  filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
  border-radius: 20px;
}
#chat-container .chat-header {
  background-color: #33BCDA;
  border-radius: 20px 20px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  box-sizing: border-box;
  padding: 1rem;
}
#chat-container .chat-messenge {
  display: flex;
  gap: 1rem;
}
#chat-container .chat-messenge--user {
  text-align: right;
  justify-content: flex-end;
}
#chat-container .chat-messenge--assistant {
  text-align: left;
  justify-content: flex-start;
}
#chat-container .chat-footer {
  padding: 1rem;
  box-sizing: border-box;
  border-top: 1px solid var(--grey-2);
}
#chat-container #send-button {
  padding: 0;
  box-sizing: border-box;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  transition: all 0.2s;
  background-color: transparent;
  cursor: pointer;
}

.message {
  padding: 16px;
  border-radius: 20px;
  background-color: white;
  margin-top: 8px;
}
.message p {
  margin: 0;
}
.message--assistant {
  border: 1px solid var(--blue-light-active);
  color: var(--grey-7);
}
.message--user {
  background-color: var(--blue-light-active);
  color: var(--grey-10);
}

#chat-form {
  background-color: var(--grey-2);
  display: flex;
  width: 100%;
  gap: 1rem;
  height: 60px;
  padding: 10px 20px;
  box-sizing: border-box;
  border-radius: 20px;
  transition: all 0.2s;
}
#user-input {
  background-color: transparent;
  border: none;
  outline: none;
  color: var(--grey-10);
  flex: 1;
}
#user-input::placeholder {
  color: var(--grey-7);
}

#send-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  transition: all 0.2s;
}
#send-button:active {
  opacity: 0.7;
}

#open-chat-wrap {
  display: block;
  position: fixed;
  right: 0;
  bottom: 0;
  padding: 0 16px 16px 0;
  box-sizing: border-box;
}

#open-chat {
  height: 60px;
  width: 60px;
  background-color: var(--blue-light);
  border-radius: 16px;
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.0666666667);
  cursor: pointer;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

#close-chat {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

#chatbot-message-wrap {
  padding: 1rem;
  box-sizing: border-box;
  overflow-y: auto;
  height: 320px;
}

/*# sourceMappingURL=chatbox.css.map */
