.info_bar .icms-reactions__btn {
    margin-left: auto; 
    display: flex; 
    align-items: center; 
}

.content_reactions .reaction {
    margin: 0 4px; 
    cursor: pointer;
    font-size: 24px;
}

.content_reactions .reaction:hover {
    opacity: 0.7;
}

.content_reactions .reaction_wrapper {
    display: inline-block;
    position: relative;
    margin: 0 4px;
    cursor: pointer;
}

.content_reactions .reaction_counter {
    position: absolute;
    top: -7px;
    right: -7px;
    background-color: #0ec710;
    color: white;
    border-radius: 22%;
    padding: 1px 4px;
    font-size: 12px;
    line-height: 1;
    min-width: 20px;
    text-align: center;
  }

.content_reactions .reaction:hover {
    opacity: 0.7;
}

.guest_reactions .reaction {
    filter: grayscale(100%); 
    cursor: not-allowed; 
}

.reaction.selected {
    background-color: rgb(75, 213, 255);
    border-radius: 10px;
    border: 2px solid #86b0ff;
    padding: 2px;
}

.reaction {
    text-decoration: none; 
}

.reaction:hover,
.reaction:focus {
    text-decoration: none;
}

/* Стили для мобильных устройств */
@media (max-width: 767px) {
    .info_bar .icms-reactions__btn {
        justify-content: center; /* центрирование дочерних элементов по горизонтали */
    }
    .content_reactions {
        margin-top: 20px; /* отступ сверху */
        width: 100%; /* ширина блока */
        justify-content: center; /* центрирование внутри flex-контейнера */
    }
    .reaction_wrapper {
        margin: 0; /* убираем горизонтальные отступы */
    }
}