.component-chat-message {
  display: flex;
  align-items: start;
  font-size: 18px;
  padding: 8.75px 10px;

  .avatar {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    box-sizing: border-box;
    overflow: hidden;
    img {
      width: 100%;
      height: 100%;
    }
  }
  .text {
    padding: 12px;
    font-size: 17px;
    line-height: 24px;
    max-width: 65.3333vw;
    box-sizing: border-box;
    word-wrap: break-word;
  }
  &-master {
    justify-content: flex-start;
    .avatar {
      margin-right: 15px;
    }
    .text {
      background-color: #fff;
      border-top-right-radius: 8px;
      border-bottom-right-radius: 8px;
      border-bottom-left-radius: 8px;
    }
  }
  &-guest {
    justify-content: flex-end;
    .avatar {
      margin-left: 15px;
    }
    .text {
      background-color: #8256f5;
      color: #ffffff;
      border-top-left-radius: 8px;
      border-bottom-left-radius: 8px;
      border-bottom-right-radius: 8px;
    }
  }
}
