@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background-color: #21293C;
}

::-webkit-scrollbar {
  width: 0px;
}

.bg-chat {
  min-width: 360px;
  max-width: 360px;
  min-height: 100vh;
  max-height: 100vh;
  background-color: #21293C;
  position: relative;
  margin: auto;
}

.area-messages {
  display: flex;
  flex-direction: column;
  padding: 16px 10px;
  max-height: 85vh;
  overflow-y: auto;
}

.bot-message {
  align-self: flex-start;
  background-color: #fff;
  border-radius: 12px;
  padding: 11px 21px;
  max-width: 300px;
  word-wrap: break-word;
  margin-bottom: 10px;
}

.user-message {
  align-self: flex-end;
  background-color: #63E2DB;
  color: #000;
  border-radius: 12px;
  padding: 11px 21px;
  max-width: 300px;
  word-wrap: break-word;
  margin-bottom: 10px;
}

.area-interaction {
  position: absolute;
  bottom: 16px;
  width: calc(100% - 20px);
  padding: 0 10px;
}

.is-typing {
  display: block;
  font-size: 14px;
  font-style: italic;
  margin-bottom: 4px;
  color: #fff;
}

.no-typing {
  display: none;
}

.text-interaction {
  display: flex;
  align-items: center;
}

#message {
  height: 48px;
  width: 100%;
  margin-right: 10px;
  outline: none;
  border: none;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

#send {
  background-color: #181E2A;
  color: #fff;
  border: none;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.social {
  margin-right: 12px;
  font-size: 24px;
  color: #fff;
}

.social:hover {
  color: #808080;
}

@media (min-width: 361px) {
  .bg-desktop {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #21293C;
  }
}
