.gekkonen-reactions {
    margin: 34px 0 24px;
    padding: 20px 0 18px;
    border-top: 1px solid rgba(0,0,0,.14);
    border-bottom: 1px solid rgba(0,0,0,.14);
    text-align: center;
}

.gekkonen-reactions__title {
    margin: 0 0 16px;
    font-size: clamp(15px, 1.5vw, 19px);
    line-height: 1.15;
    font-weight: 800;
    text-transform: uppercase;
}

.gekkonen-reactions__items {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    align-items: start;
}

.gekkonen-reaction {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
    margin: 0;
    padding: 6px 2px 8px;
    min-width: 0;
    color: inherit;
    font: inherit;
    cursor: pointer;
    border-radius: 12px;
    transition: transform .15s ease, background-color .15s ease, opacity .15s ease;
}

.gekkonen-reaction:hover:not(:disabled) {
    transform: translateY(-2px);
    background: rgba(0,0,0,.035);
}

.gekkonen-reaction:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

.gekkonen-reaction:disabled {
    cursor: default;
    opacity: 1;
}

.gekkonen-reaction__image-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 4px;
    border: 0 !important;
    border-radius: 0;
    outline: 0 !important;
    box-shadow: none !important;
}

.gekkonen-reaction__image {
    display: block;
    width: 64px;
    height: 64px;
    object-fit: contain;
    transition: transform .16s ease;
}

.gekkonen-reaction.is-selected {
    background: rgba(230,46,46,.08);
}

.gekkonen-reaction.is-selected .gekkonen-reaction__image {
    transform: scale(1.09);
}

.gekkonen-reaction__percent {
    display: block;
    width: max-content;
    min-width: 48px;
    margin: 0 auto 4px;
    padding: 4px 9px;
    border-radius: 999px;
    background: #e53030;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
}

.gekkonen-reaction__label {
    display: block;
    font-size: 14px;
    line-height: 1.15;
    font-weight: 700;
}

.gekkonen-reactions.is-loading .gekkonen-reaction:not(:disabled) {
    pointer-events: none;
    opacity: .72;
}

.gekkonen-reactions__status {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@media (max-width: 600px) {
    .gekkonen-reactions {
        margin-top: 28px;
        padding-top: 17px;
        padding-bottom: 16px;
    }

    .gekkonen-reactions__items {
        gap: 2px;
    }

    .gekkonen-reaction {
        padding-left: 0;
        padding-right: 0;
    }

    .gekkonen-reaction.is-selected,
    .gekkonen-reaction.is-selected .gekkonen-reaction__image-wrap,
    .gekkonen-reaction.is-selected .gekkonen-reaction__image {
        border: 0 !important;
        outline: 0 !important;
        box-shadow: none !important;
    }

    .gekkonen-reactions__title {
        font-size: 15px;
    }

    .gekkonen-reaction__image-wrap {
        width: 56px;
        height: 56px;
    }

    .gekkonen-reaction__image {
        width: 52px;
        height: 52px;
    }

    .gekkonen-reaction__percent {
        min-width: 42px;
        padding: 4px 6px;
        font-size: 12px;
    }

    .gekkonen-reaction__label {
        font-size: 11px;
    }
}
