.msgbubble-container {
    max-width: 800px;
    margin: auto;
    display: flex;
}
.fadebox:not(:first-child) {
    opacity: 0;
    transition: all .3s ease-in-out;
    visibility: hidden;
}
.fadebox:nth-of-type(odd) {
    transform: translateX(-90%);
}
.fadebox:nth-of-type(even) {
    transform: translateX(90%);
}
.fadebox:first-child {
    transform: initial!important;
}
.fadebox.fbvisible {
    visibility: visible;
    transform: translateX(0);
    opacity: 1;
    animation-delay: .2s;
    width: 100%;
}
.msgbubble {
    display: block;
    margin: 10px;
    font-family: 'Helvetica Neue', Helvetica, Arial, Roboto, 'Segoe UI', sans-serif;
    width: 100%;
    float: left;
    clear: both;
}
.msgbubble-right {
    float: right;
}
.mb-participant {
    width: 54px;
    height: 54px;
    float: left;
}
.msgbubble-right .mb-participant {
    float: right;
}
.mb-participant img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    margin-top: 15px;
    object-fit: cover;
}
.mb-msg {
    position: relative;
    max-width: 60%;
    margin: 0 0 25px 30px;
    float: left;
}
.msgbubble-right .mb-msg {
    margin: 0 30px 25px 0;
    float: right;
}
.mb-participant-name {
    height: 20px;
    font-size: 12px;
    color: #767676;
    padding: 0 20px;
}

.msgbubble-right .mb-participant-name {
	text-align: right;
}

.mb-msgtext {
    position: relative;
    background: #dde8ef;
    border-radius: 20px;
    min-height: 44px;
    padding: 20px;
    color: #000;
    -webkit-box-shadow: 9px 10px 20px -5px rgba(0, 0, 0, .5);
    -moz-box-shadow: 9px 10px 20px -5px rgba(0, 0, 0, .5);
    box-shadow: 9px 10px 20px -5px rgba(0, 0, 0, .5);
    font-size: 16px;
}
.msgbubble-right .mb-msgtext {
    background: #007aff;
    color: #fff;
}
.mb-msgtext p {
    margin-bottom: 0;
    word-break: break-word;
}

.msgbubble .mb-msgtext a {
    color: #007aff; 
    text-decoration: underline;
}

.msgbubble.msgbubble-right .mb-msgtext a {
    background: #007aff;
    color: #fff;
    text-decoration: underline;
}

.mb-msgtext:after {
    content: '';
    position: absolute;
    top: 22px;
    border: 20px solid transparent;
    border-bottom-width: 10px;
    border-top: 0;
}
.msgbubble-left .mb-msgtext:after {
    left: 0;
    border-right-color: #dde8ef;
    border-left: 0;
    margin-left: -20px;
}
.msgbubble-right .mb-msgtext:after {
    left: 100%;
    border-left-color: #007aff;
    border-right: 0;
    margin-left: 0;
}
.msgbubble .mb-msgtext img {
    max-width: 100%;
	height: auto;}
.msgbubble .mb-msgtext img {
    margin: 10px 0;
    display: block;
}
.msgbubble .mb-msgtext .wp-caption-text {
    margin: 3px 0;
    font-family: tuitypelight, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-style: normal;
    color: #ccc;
}
.msgbubble-left .mb-msgtext .wp-caption-text {
    color: #777;
}
