/* V305 - Reacoes do WhatsApp no historico de mensagens. */
.whats-sales-message {
  position: relative;
}

.whats-sales-reaction-controls {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: calc(100% + 5px);
  display: flex;
  align-items: center;
  transform: translateY(-50%);
}

.whats-sales-message.inbound .whats-sales-reaction-controls {
  right: auto;
  left: calc(100% + 5px);
}

.whats-sales-reaction-toggle,
.whats-sales-reaction-palette button {
  min-width: 28px;
  min-height: 28px;
  padding: 3px;
  border: 1px solid #d8dfdb;
  border-radius: 999px;
  background: #fff;
  color: #4f5c55;
  box-shadow: 0 2px 8px rgba(20, 39, 28, .12);
}

.whats-sales-reaction-toggle {
  opacity: .35;
}

.whats-sales-message:hover .whats-sales-reaction-toggle,
.whats-sales-reaction-toggle:focus {
  opacity: 1;
}

.whats-sales-reaction-palette {
  display: none;
  gap: 3px;
  margin: 0 4px;
  padding: 4px;
  border: 1px solid #d8dfdb;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(20, 39, 28, .16);
  white-space: nowrap;
}

.whats-sales-reaction-controls:hover .whats-sales-reaction-palette,
.whats-sales-reaction-controls:focus-within .whats-sales-reaction-palette {
  display: inline-flex;
}

.whats-sales-reaction-palette button:hover,
.whats-sales-reaction-palette button:focus {
  border-color: #00a884;
  transform: scale(1.12);
}

.whats-sales-reaction-event {
  color: #526159;
  font-style: italic;
}

.whats-sales-reaction-event b {
  margin-left: 4px;
  font-size: 18px;
  font-style: normal;
}

@media (max-width: 760px) {
  .whats-sales-reaction-toggle {
    opacity: .75;
  }

  .whats-sales-reaction-palette {
    position: fixed;
    z-index: 90;
    right: 12px;
    bottom: 72px;
    left: 12px;
    justify-content: space-around;
    padding: 8px;
  }
}
