.ratingLike {
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 11;
    margin-bottom: 10px;
}

.ratingLike a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: #404040;
    color: #fff;
    border-radius: 20px;
    padding: 10px 20px;
    margin-right: 3px;
    cursor: pointer;
}

.ratingLike a:nth-child(1) {
    margin-right: 10px;
}

.ratingLike.small a {
    padding: 4px 8px;
}

.ratingLike .liked {
    margin-right: 10px;
}

.ratingLike .liked:before {
    content: "";
    display: inline-block;
    background: url(../img/like.png) no-repeat;
    background-size: cover;
    width: 25px;
    height: 25px;
    margin: 0 0 0 auto;
}

.ratingLike a.active {
    background: var(--principal);
}

.ratingLike .desliked:before {
    content: "";
    display: inline-block;
    background: url(../img/not-like.png) no-repeat;
    background-size: cover;
    width: 25px;
    height: 25px;
    margin: 0 0 0 auto;
}

.ratingLike a span {
    font-size: 18px;
    font-weight: bold;
    margin: auto auto 3px 10px;
}