.media {
display: flex;
}
.media.rev {
flex-direction: row-reverse
}
.media img {
width: 64px !important;
height: 64px !important;
border-radius: 32px;
object-fit: cover; object-position: center;
flex-shrink: 0;
margin-right: 16px;
}
.media.rev img {
margin-left: 16px;
}
.media-body {
display: flex;
flex-direction: column;
}
.media h5,
.media p {
text-align: left;
}
.media.rev h5,
.media.rev p {
text-align: right;
}