.container-message {
	width: 100%;
	display: flex;
    flex-flow: column nowrap;
    padding-top: 16px;
}

.container-message.user {
    padding-right: 48px;
    padding-left: 20px;
}

.container-message.bot {
    padding-left: 48px;
    padding-right: 20px;
}

.outerMessage {
    display: flex;
    flex-flow: column nowrap;
    position: relative;
    margin-bottom: 0px;
    -webkit-animation: isOpen 0.7s;
            animation: isOpen 0.7s;
}


@-webkit-keyframes isOpen {
    0% {
      opacity:0;
    }
  
    75% {
      opacity: 1;
    }
}


@keyframes isOpen {
    0% {
      opacity:0;
    }
  
    75% {
      opacity: 1;
    }
}

.outerMessage.user {
    align-self: flex-end;
    justify-content: flex-end;
}

.outerMessage.user.avatar:after {
    content: '';
    width: 36px;
    border-radius: 20px;
    background: url(3d53e66a074fbdc51eb55729b364e280.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 36px;
    position: absolute;
    right: -42px;
    top: -4px;
}

.outerMessage.bot {
    align-self: flex-start;
}

.outerMessage.bot.avatar:before {
    content: '';
    width: 40px;
    background: url(01112773f0aa63cf24a6032beb017ecf.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 40px;
    position: absolute;
    left: -44px;
    top: -4px;
}

.message {
    text-align: left;
    padding:12px;
    background: #fff;
    font-size: 15px;
    background:#CFD8DC;
    margin-bottom: 4px;
    line-height: 20px;
    width: auto;
    border-radius: 20px;
    position: relative;
}

.message b {
    font-weight: bold;
    color: #58595B;
}

.message.bot {
    border-top-left-radius: 0px;
    background:#FFFFFF;
}

.message.user {
    font-weight: bolder;
    border-top-right-radius: 0px;
}

.message:img {
    position: relative;
    top: 8px;
}

.currentTime {
    display: flex;
    justify-content: flex-end;
    font-size:12px;
    color: #666;
    padding-right:16px;
    margin-bottom: 8px;
}

.message b.highlight_text {
    font-weight: bolder;
    color: #DB532A;
}

