.gds-reactions {
    display: flex;
    position: relative;
}

.gds-reactions button {
    border: 1px solid var(--primary);
    border-radius: 100%;
    margin: 0 0.2rem;
    padding: 0.3rem;
    font-size: 1.5em;
    text-align: center;
    width: 2.6rem;
    height: 2.6rem;
    position: relative;
}

.gds-reactions button::after {
    content: attr(count);
    position: absolute;
    top: -1.2rem;
    right: -0.5rem;
    font-size: 0.6em;
    background-color: #fffc;
    color: #555;
    display: block;
    padding: 0 1px;
    border-radius: 100%;
    width: fit-content;
    height: 1.3rem;
    line-height: 1.3rem;
    min-width: 1.3rem;
}

.gds-reactions .like::before {
    content: "👍";
}
.gds-reactions .clamp::before {
    content: "👏";
}
.gds-reactions .givefive::before {
    content: "🙌";
}
.gds-reactions .party::before {
    content: "🎉";
}
.gds-reactions .diamond::before {
    content: "💎";
}
.gds-reactions .happy::before {
    content: "😀";
}
.gds-reactions .sad::before {
    content: "😞";
}
.gds-reactions .question::before {
    content: "❔";
}
.gds-reactions .goat::before {
    content: "🐐";
}
.gds-reactions .lol::before {
    content: "😂";
}
.gds-reactions .heart2::before {
    content: "\2665";
    color: RED;
}

.gds-reactions .emo-animated {
    position: absolute;
    top: 0;
    opacity: 0.7;
    font-size: 1.4em;
    transition-duration: 1.5s;
    transition-timing-function: ease-in;
}
.gds-reactions .emo-animated.runme {
    top: -100vh;
    font-size: 1em;
}

.gds-reactions .disabled {
    cursor: not-allowed;
}
