.flows-chat {
  margin-top: 80px;
  margin-bottom: 80px;
}
.flows-chat__section-title {
  font-weight: 600;
  font-size: 40px;
  line-height: 110%;
  color: #051320;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .flows-chat__section-title {
    font-size: 24px;
    line-height: 110%;
    margin-bottom: 20px;
  }
}
.flows-chat__list {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .flows-chat__list {
    flex-direction: column;
    gap: 12px;
  }
}
.flows-chat__item {
  flex: 1;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 32px;
  padding: 24px 16px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .flows-chat__item {
    padding: 16px;
  }
}
.flows-chat__user {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.flows-chat__user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 44px;
  overflow: hidden;
}
.flows-chat__user-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.flows-chat__user-name {
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  color: rgba(5, 19, 32, 0.8);
}
@media screen and (max-width: 768px) {
  .flows-chat__user-name {
    font-size: 16px;
    line-height: 110%;
  }
}
.flows-chat__user-job-title {
  font-size: 14px;
  line-height: 140%;
  color: rgba(5, 19, 32, 0.8);
}
@media screen and (max-width: 768px) {
  .flows-chat__user-job-title {
    font-size: 12px;
    line-height: 140%;
  }
}
.flows-chat__user-message {
  margin-left: 52px;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 140%;
  color: rgba(5, 19, 32, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px 16px 32px 32px;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .flows-chat__user-message {
    margin-left: 0;
    font-size: 14px;
    line-height: 140%;
  }
}
.flows-chat__answer-user {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 4px;
}
.flows-chat__answer-user-name {
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  color: rgba(5, 19, 32, 0.8);
}
.flows-chat__answer-user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 44px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.flows-chat__answer-user-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.flows-chat__answer-message {
  margin-right: 44px;
  font-size: 16px;
  line-height: 140%;
  color: #fff;
  border-radius: 16px 4px 32px 32px;
  padding: 16px;
  background: linear-gradient(229deg, #ff1d74 0%, #8e00bd 100%);
}
@media screen and (max-width: 768px) {
  .flows-chat__answer-message {
    margin-right: 0;
    font-size: 14px;
    line-height: 140%;
  }
}/*# sourceMappingURL=style.min.css.map */