.chat_service_board_cpnt {
  width: 100%;
  margin-bottom: 5px;
}
.chat_service_board_cpnt:last-child {
  margin-bottom: 0px;
}
img.chat_service_board_cpnt {
  margin-bottom: 0px;
}

.edit-highlight {
  animation-name: edit-highlight-animation;
  animation-duration: 1.5s;
  animation-delay: 0.3s;
}

@keyframes edit-highlight-animation {
  0% {
    box-shadow: transparent;
  }

  50% {
    box-shadow: 0px 0px 5px 0.1px rgb(3, 136, 208);
  }

  100% {
    box-shadow: transparent;
  }
}