.speech-balloon-wrapper {
	display: flex;
	align-items: flex-start;
	margin: 20px;
	gap: 5px;
}
.speech-balloon-wrapper.right-side {
	flex-direction: row-reverse;
}
.speech-balloon {
/*	background-color: #f9f9f9;*/
	border-radius: 10px;
	padding: 10px;
/*	margin-left: 10px;*/
	border: 1px solid #dddddd;
    background: #ffffff;
    margin: 40px auto 0 10px;
    color: #222222;
	box-shadow: 2px 2px 3px 0px #888888;
	position: relative;
}
.speech-balloon:before {
    left: -12px;
    top: 19px;
    border: 6px solid transparent;
    content: '';
    position: absolute;
	border-top-color: #dddddd;
    border-right-color: #dddddd;
}
.speech-balloon:after {
	content: '';
    position: absolute;
	top: 20px;
    border: 5px solid transparent;
    border-top-color: #ffffff;
    border-right-color: #ffffff;
    left: -10px;
}
.speech-balloon-wrapper.right-side .speech-balloon:before {
    content: '';
    position: absolute;
    top: 19px;
    border: 6px solid transparent;
	border-top-color: #dddddd;
    border-left-color: #dddddd;
    right: -12px;
	left: unset;
}
.speech-balloon-wrapper.right-side .speech-balloon:after {
	content: '';
    position: absolute;
	top: 20px;
    border: 5px solid transparent;
	border-top-color: #ffffff;
    border-left-color: #ffffff;
    right: -10px;
	left: unset;	
}
.speech-balloon-wrapper.right-side .speech-balloon {
	margin-left: 0;
	margin-right: 10px;
	border: 1px solid #dddddd;
	box-shadow: -2px 2px 3px 0px #888888;
}
.speech-balloon-wrapper .author-info {
	font-size: 12px;
}
.speech-balloon-wrapper img {
	width: 96px;
	height: 96px;
	border-radius: 50%;
}
.author-info span {
    display: block;
    text-align: center;
	color: #000;
}
.author-info .name {
    font-weight: bold;
}
.author-info .experience {
    margin-top: 0px;
    line-height: 15px;
}
/* Hover effects */
.speech-balloon-wrapper a:hover .experience, 
.speech-balloon-wrapper a:hover .name {
    color: #b40000;
}
.speech-balloon-wrapper a:hover img {
    opacity: 0.8;
}
.speech-balloon a {
    color: #A01D1D;
    text-decoration: none;
}
.speech-balloon a:hover {
    text-decoration: underline;
}
/* Animation */ 
.speech-balloon.slide-in-left {
  transform: translateX(-100%);
  opacity: 0;
  animation: slideInFromLeft 1s forwards;
  animation-fill-mode: both;
}

.speech-balloon.slide-in-right {
  transform: translateX(100%);
  opacity: 0;
  animation: slideInFromRight 1s forwards;
  animation-fill-mode: both;
}

@keyframes slideInFromLeft {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}