$(document).ready(function() {
$(".link_pop").click(function(){
$('.popup').show();
return false;
});
$(".close").click(function(){
$(this).parent().hide();
return false;
});
var phone = document.getElementById('phone'),
button = document.getElementById('button');
button.addEventListener('click', function(e){
e.preventDefault();
this.classList.add('is-done','is-active');
setTimeout(function(){
button.innerHTML = "Ок"
});
});