.forumax-emoji-picker-container {
  display: inline-block;
  position: relative;
}
.forumax-emoji-picker-container .forumax-emoji-trigger {
  padding: 0 5px;
  height: 28px;
  line-height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.forumax-emoji-picker-container .forumax-emoji-list {
  position: absolute;
  top: 30px;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  padding: 8px;
  width: 250px;
  max-height: 200px;
  overflow-y: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  z-index: 10000;
  border-radius: 4px;
}
.forumax-emoji-picker-container .forumax-emoji-list.hidden {
  display: none;
}

.forumax-emoji-item {
  cursor: pointer;
  font-size: 22px;
  padding: 5px;
  border-radius: 4px;
  transition: transform 0.1s;
  line-height: 1.2;
}
.forumax-emoji-item:hover {
  background-color: transparent !important;
  transform: scale(1.3);
}

.forumax-reactions-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.forumax-react-btn-group {
  position: relative;
  display: inline-block;
}
.forumax-react-btn-group .forumax-main-react-btn {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: 500;
  color: #606770;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
  flex-shrink: 0;
  white-space: nowrap;
}
.forumax-react-btn-group .forumax-main-react-btn .forumax-total-reacts-count {
  background: #f0f2f5;
  color: #606770;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
  margin-left: 2px;
}
.forumax-react-btn-group .forumax-main-react-btn .react-text {
  font-size: 14px;
  font-weight: 500;
}
.forumax-react-btn-group .forumax-main-react-btn[data-user-reaction=like] {
  color: #1877f2;
  border-color: #1877f2;
}
.forumax-react-btn-group .forumax-main-react-btn[data-user-reaction=love] {
  color: #f23e5c;
  border-color: #f23e5c;
}
.forumax-react-btn-group .forumax-main-react-btn[data-user-reaction=haha],
.forumax-react-btn-group .forumax-main-react-btn[data-user-reaction=wow],
.forumax-react-btn-group .forumax-main-react-btn[data-user-reaction=sad] {
  color: #f7b928;
  border-color: #f7b928;
}
.forumax-react-btn-group .forumax-main-react-btn[data-user-reaction=angry] {
  color: #e44d37;
  border-color: #e44d37;
}
.forumax-react-btn-group .forumax-main-react-btn[data-user-reaction=dislike] {
  color: #606770;
  border-color: #606770;
}
.forumax-react-btn-group .forumax-reaction-popup::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
}
.forumax-react-btn-group:hover .forumax-reaction-popup {
  opacity: 1;
  visibility: visible;
  transform: translateY(-8px) scale(1);
  pointer-events: auto;
}

.forumax-reaction-popup {
  position: absolute;
  bottom: 100%;
  right: -80px;
  background: #fff;
  border: none;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
  border-radius: 60px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.8);
  transform-origin: bottom left;
  transition: all 0.25s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  pointer-events: none;
}

.forumax-reaction-option {
  background: none !important;
  border: none;
  cursor: pointer;
  padding: 5px;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 30px !important;
  width: 30px !important;
  height: 30px !important;
}
.forumax-reaction-option img,
.forumax-reaction-option svg {
  width: 30px !important;
  height: 30px !important;
  max-width: none !important;
}
.forumax-reaction-option:hover {
  background-color: transparent !important;
  transform: scale(1.2);
}
.forumax-reaction-option.active {
  position: relative;
}
.forumax-reaction-option.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #0073aa;
}

@keyframes emoji-like {
  0%, 100% {
    transform: scale(1.2) rotate(0deg);
  }
  25% {
    transform: scale(1.3) rotate(-15deg);
  }
  50% {
    transform: scale(1.3) rotate(0deg);
  }
  75% {
    transform: scale(1.3) rotate(15deg);
  }
}
@keyframes emoji-dislike {
  0%, 100% {
    transform: scale(1.2) rotate(0deg);
  }
  25% {
    transform: scale(1.3) rotate(15deg);
  }
  50% {
    transform: scale(1.3) rotate(0deg);
  }
  75% {
    transform: scale(1.3) rotate(-15deg);
  }
}
@keyframes emoji-love {
  0%, 100% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(1.4);
  }
}
@keyframes emoji-haha {
  0%, 100% {
    transform: scale(1.2) rotate(0deg);
  }
  25% {
    transform: scale(1.2) rotate(-20deg);
  }
  75% {
    transform: scale(1.2) rotate(20deg);
  }
}
@keyframes emoji-wow {
  0%, 100% {
    transform: scale(1.2);
  }
  40% {
    transform: scale(1.35);
  }
}
@keyframes emoji-sad {
  0%, 100% {
    transform: scale(1.2) translateY(0);
  }
  50% {
    transform: scale(1.2) translateY(5px);
  }
}
@keyframes emoji-angry {
  0%, 100% {
    transform: scale(1.2) translateX(0);
  }
  25% {
    transform: scale(1.2) translateX(-3px);
  }
  75% {
    transform: scale(1.2) translateX(3px);
  }
}
.forumax-reaction-option[data-reaction=like]:hover {
  animation: emoji-like 0.8s ease-in-out infinite;
}

.forumax-reaction-option[data-reaction=dislike]:hover {
  animation: emoji-dislike 0.8s ease-in-out infinite;
}

.forumax-reaction-option[data-reaction=love]:hover {
  animation: emoji-love 0.8s ease-in-out infinite;
}

.forumax-reaction-option[data-reaction=haha]:hover {
  animation: emoji-haha 0.8s ease-in-out infinite;
}

.forumax-reaction-option[data-reaction=wow]:hover {
  animation: emoji-wow 0.8s ease-in-out infinite;
}

.forumax-reaction-option[data-reaction=sad]:hover {
  animation: emoji-sad 1.5s ease-in-out infinite;
}

.forumax-reaction-option[data-reaction=angry]:hover {
  animation: emoji-angry 0.3s ease-in-out infinite;
}

.forumax-reactions-display {
  display: flex;
  gap: 8px;
  align-items: center;
}

.reaction-count-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  padding: 8px 16px;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}
.reaction-count-item:hover {
  transform: translateY(-2px);
}
.reaction-count-item[data-reaction=like] {
  background: #e7f3ff;
  color: #1877f2;
}
.reaction-count-item[data-reaction=dislike] {
  background: #f0f2f5;
  color: #606770;
}
.reaction-count-item[data-reaction=love] {
  background: #fff0f0;
  color: #f23e5c;
}
.reaction-count-item[data-reaction=haha] {
  background: #fff9e6;
  color: #f7b928;
}
.reaction-count-item[data-reaction=wow] {
  background: #fff9e6;
  color: #f7b928;
}
.reaction-count-item[data-reaction=sad] {
  background: #fff9e6;
  color: #f7b928;
}
.reaction-count-item[data-reaction=angry] {
  background: #ffe9e9;
  color: #e44d37;
}

.bbpc-agree-disagree-buttons.forumax-voting-merged {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.bbpc-agree-disagree-buttons.forumax-voting-merged .forumax-reactions-wrapper {
  margin-top: 0;
  margin-left: 10px;
}
.bbpc-agree-disagree-buttons.forumax-voting-merged .forumax-reaction-option {
  font-size: 35px !important;
  width: 35px !important;
  height: 35px !important;
  border: none !important;
  margin: 0 2px;
  display: flex;
}

/*# sourceMappingURL=emoji.css.map */
