.chat {
  width: 360px;
  flex-direction: column;
  margin: 0 auto;
  display: none;
  position: fixed;
  right: 100px;
  bottom: 10px;
}
.chat.show {
  display: flex;
}
.chat .chat__title {
  color: #FFF;
  font-family: "Bebas";
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 30px */
  text-transform: uppercase;
  display: inline-flex;
  justify-content: space-between;
  border-radius: 15px 15px 0 0;
  background: linear-gradient(211deg, #0F0098 -29.55%, #B200FF 48.7%, #FF00F5 94.76%);
  padding: 28px 24px;
}
.chat .chat__inner {
  background-color: white;
}
.chat .chat__inner * {
  box-sizing: border-box;
}
.chat .chat__inner #message-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-height: 400px;
  overflow-y: auto;
  padding: 16px;
}
.chat .chat__inner #message-container::-webkit-scrollbar {
  background-color: white;
  width: 4px;
}
.chat .chat__inner #message-container::-webkit-scrollbar-thumb {
  background-color: #b7b6b6;
}
.chat .chat__inner #message-container span {
  font-family: "Montserrat";
  font-size: 14px;
  padding: 14px 12px;
  border-radius: 10px 10px 10px 0;
  background: rgba(23, 0, 33, 0.02);
  color: #690097;
  font-feature-settings: "liga" off, "clig" off;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  color: #690097;
}
.chat .chat__inner #message-container .question {
  margin-left: auto;
  text-align: right;
  display: flex;
}
.chat .chat__inner #message-container .question span {
  background: #690097;
  color: white;
}
.chat .chat__inner #message-container .answer span {
  width: 100%;
  display: inline-flex;
}
.chat .chat__inner .chat-messages__content {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding-top: 16px;
  padding: 16px;
  justify-content: end;
  max-height: 200px;
  overflow-y: auto;
}
.chat .chat__inner .chat-messages__content::-webkit-scrollbar {
  background-color: white;
  width: 4px;
}
.chat .chat__inner .chat-messages__content::-webkit-scrollbar-thumb {
  background-color: #690097;
}
.chat .chat__inner .chat-messages__content button {
  color: #690097;
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 14px */
  padding: 13px 15px;
  border-radius: 5px;
  border: 1px solid rgba(28, 0, 27, 0.1);
}

@media screen and (max-width: 1000px) {
  .chat .chat__inner .chat-messages__content button {
    font-size: 11px;
    padding: 6px 10px;
  }
  .chat {
    transform: translateX(-50%);
    left: 50%;
  }
}