function calculaprecio() {

var slots1 = document.getElementById("slots1").value;
var slots2 = document.getElementById("slots2").value;
var slots3 = document.getElementById("slots3").value;

var pago1 = document.getElementById('pago1').value;
var pago2 = document.getElementById('pago2').value;
var pago3 = document.getElementById('pago3').value;

var precio1 = (slots1*0.40)*pago1;
var precio2 = (slots2*0.40)*pago2;
var precio3 = (slots3*0.30)*pago3;

precio1=precio1*100;
precio1=Math.floor(precio1);
precio1=precio1/100;

precio2=precio2*100;
precio2=Math.floor(precio2);
precio2=precio2/100;

precio3=precio3*100;
precio3=Math.floor(precio3);
precio3=precio3/100;

document.getElementById('precio1').value = precio1 + '€';
document.getElementById('precio2').value = precio2 + '€';
document.getElementById('precio3').value = precio3 + '€';

}

function showLightbox() {
    document.getElementById('over').style.display='block';
    document.getElementById('fade').style.display='block';
}
function hideLightbox() {
    document.getElementById('over').style.display='none';
    document.getElementById('fade').style.display='none';
}