button.sm-btn#minus-btn -
span.buy-licenses__counter
input#buy-licenses__count(type="text" value="1")
button.sm-btn#plus-btn +
$('#plus-btn').click(function() {
let count = $('#buy-licenses__count');
count.val() = parseInt(count.val())+1;
});