.component-chat-image {
  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%;
    }
  }
  .image {
    line-height: 24px;
    width: 40vw;
    height: 28.5333vw;
    overflow: hidden;
    img {
      width: 100%;
      height: 100%;
    }
  }
  &-master {
    justify-content: flex-start;
    .avatar {
      margin-right: 15px;
    }
    .image {
      background-color: #fff;
      border-top-right-radius: 8px;
      border-bottom-right-radius: 8px;
    }
  }
  &-guest {
    justify-content: flex-end;
    .avatar {
      margin-left: 15px;
    }
    .image {
      background-color: #fff;
      border-top-left-radius: 8px;
      border-bottom-left-radius: 8px;
      // border-bottom-right-radius: 8px;
    }
  }
}
