
.dt-reactions{
    margin: 18px 0 28px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid #edf0f2;
    border-radius: 14px;
    box-shadow: 0 5px 22px rgba(0,59,87,.06);
}
.dt-reactions__title{
    margin-bottom: 12px;
    color: #003B57;
    font-size: 15px;
    font-weight: 800;
}
.dt-reactions__items{
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
}
.dt-reaction{
    appearance: none;
    min-width: 72px;
    padding: 9px 10px;
    background: #f7f9fa;
    border: 1px solid #e7ecef;
    border-radius: 12px;
    color: #22313a;
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.dt-reaction:hover{
    transform: translateY(-2px);
    border-color: #EE2B7B;
    box-shadow: 0 7px 16px rgba(238,43,123,.14);
}
.dt-reaction.is-selected{
    background: #fff0f6;
    border-color: #EE2B7B;
    box-shadow: 0 0 0 2px rgba(238,43,123,.12);
}
.dt-reaction__emoji{
    display: block;
    font-size: 28px;
    line-height: 1.1;
}
.dt-reaction__count{
    display: block;
    margin-top: 4px;
    color: #003B57;
    font-size: 13px;
    font-weight: 800;
}
.dt-reaction__label{
    display: block;
    margin-top: 2px;
    font-size: 10px;
    opacity: .7;
}
.dt-reactions__message{
    min-height: 18px;
    margin-top: 9px;
    color: #EE2B7B;
    font-size: 12px;
    font-weight: 700;
}
@media (max-width: 600px){
    .dt-reactions{
        padding: 13px 11px;
        border-radius: 12px;
    }
    .dt-reactions__items{
        gap: 6px;
    }
    .dt-reaction{
        flex: 1 1 calc(25% - 6px);
        min-width: 62px;
        padding: 8px 5px;
    }
    .dt-reaction__emoji{
        font-size: 25px;
    }
    .dt-reaction__label{
        display: none;
    }
}
