.likes__block {
    position: relative;
    display: flex;
    margin-bottom: 20px;
}
.likes__block .btn {
    background-color: #fff;
    width: auto;
    border: 1px solid #fff;
    font-size: 14px;
    gap: 5px;
    color: #000;
}
.likes__block .btn:hover {
    background-color: #fff;
}
.likes__block .btn:last-child {
    margin-left: 10px;
}
.likes__block .btn:first-child:hover {
    color: #6cd47f;
}
.likes__block .btn:last-child:hover {
    color: #ed1c24;
}
.likes__block-icon {
    width: 15px;
    height: 15px;
}
.likes__block-icon svg {
    color: #000;
}
.likes__block .btn:first-child:hover svg {
    color: #6cd47f;
}
.likes__block .btn:last-child:hover svg {
    color: #ed1c24;
}