.bubble.reply {
  background: transparent;
  box-shadow: none;
  /* float: right; */
  display: unset;
  position: relative;
  transform-origin: right top;
  margin: 8px 0 10px;
  padding: 0;
  max-width: 65%;
  border: 0;
}

.bubble.reply.history {
  margin: 0 0 2px 0; /* remembered bubbles do not need to stand out via margin */
}

.bubble.reply.say {
  min-width: 350px;
}

.bubble.reply .bubble-content {
  transition: all 200ms;
}

.bubble.reply .bubble-content .bubble-button {
  color: #ffffff;
  padding: 8px 4px;
  border-radius: 15px 15px 5px 5px;
  margin-left: 2px;
  text-align: center;
  display: inline-block;
  float: right;
  cursor: pointer;
  transition: all 200ms;
  text-decoration: none;
  word-break: normal;
	box-sizing: content-box;
  /* animation-duration: 1s; */
  animation-name: animate-reply;
  animation-play-state: paused;
  animation-fill-mode: forwards;
  /* opacity: 0; */
  transform: translate3d(0px, 0px, 0px);
  animation-delay: -3s;
  -ms-animation-delay: -3;
  -webkit-animation-delay: -3s;
}

@keyframes animate-reply {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.bubble.reply.say .bubble-content .bubble-button {
  animation-play-state: running;
  margin-top: 3px;
  margin-bottom: 5px;
  min-height: 24px;
  overflow: hidden;
  font-weight: 600;
}

.bubble.reply .bubble-content .bubble-button:first-child {
  border-radius: 15px 15px 15px 5px;
  margin-left: 2px;
}

.bubble.reply .bubble-content .bubble-button:last-child,
.bubble.reply .bubble-content .bubble-button.bubble-pick {
  border-radius: 15px 15px 5px 15px;
}

.bubble.reply.bubble-picked .bubble-content .bubble-button {
  transform: scale(0) translate3d(0px, 0px, 0px);
  padding: 0;
}

.bubble.reply:not(.bubble-picked) .bubble-content .bubble-button:hover,
.bubble.reply .bubble-content .bubble-button.bubble-pick {
  background: rgba(44, 44, 44, 1);
  transform: scale(1) translate3d(0px, 0px, 0px);
  padding: 8px 16px;
  height: auto;
}

/* interaction recall styles */
.bubble.history .bubble-content .bubble-button,
.bubble.history.reply:not(.bubble-picked) .bubble-content .bubble-button:hover,
.bubble.history.reply .bubble-content .bubble-button.bubble-pick {
  background: rgba(44, 44, 44, 0.67);
  cursor: default;
}
