<style>
	.btn:focus {
	  outline: none;
	  box-shadow: none;
	}
</style>

# Livio's products pricelist

<abstract>
In this page it is possible to order the Livio Argentini's audio devices manufactured in Italy in partnership
with Acme Systems srl
</abstract>

Unfortunately we don't have any local reseller outside our regions so this is the only place where is possible to buy the Livio Argentini equipments.  

All these products are made by hand and the lead time is not less than 60 days.  

<div class="row">
	<div class="col-xs-6">
		<h3>Products</h3>
		<div id="listino" style="overflow: auto;">
		</div>
	</div>
	
	<div class="col-xs-6">
		<h3>Your shopping list <i class="fa fa-lock" aria-hidden="true" onclick="cartToggleLock(this)"></i></h3>
		<div id="lista_della_spesa"></div>
	</div>
</div>

<div class="row">
	<div class="col-xs-12">
		<h4>Protection of your personal data</h4>
		
		<small>
			Acme Systems srl is committed to respecting and protecting your personal privacy according to the provisions 
			of European regulation EU 2016/679 General Data Protecion Regulation (GDPR)
			Acme Systems srl collects, discloses and uses the information you are providing just for administrative 
			purposes and not for user profiling purposes. Following the law terms we keep your data for 10 years.
			Acme Systems srl does not use these informations for any other purpose and does not provide, share or sell 
			these data to any third parties.
			Acme Systems srl has physical, electronic and procedural safeguards in place to protect the 
			loss, misuse and alteration of yours personal information. 
			Only certain employees have access to the informations you provide.
			You have the right to demand access to information about the processing of any personal data 
			about you by Acme Systems srl.
			You have the right to obtain that Acme Systems srl deletes the informations about you.
			<br/>
			<br/>
			<a href='/privacy-policy'>More info about the privacy policy</a>
		<small>
	</div>
</div>

<script>
var mycart;

function cartToggleLock(id) {
	if ($(id).attr("class")==="fa fa-unlock") {
		$(id).attr("class","fa fa-lock");
	} else {
		$(id).attr("class","fa fa-unlock");
	}	
}

$(document).ready(function() {
	url_string = document.location.href;

	// https://dmitripavlutin.com/parse-url-javascript/
	const url = new URL(url_string);
	var category=url.searchParams.get('category');
	
	if (category===null) category="main";

	var a = new priceList();

	console.log("Ciao");
	
	mycart=new Cart();
	mycart.loadCart();		
	mycart.showCart("lista_della_spesa");

	html_contents=a.getHtml(pricelist.main);
	$("#listino").html(html_contents);

	// Aggiornamento automatico del carrello
	// https://javascript.info/localstorage		
	window.onstorage=function(event) {
		if (event.key != 'acmesystems_cart') return;
		mycart.loadCart();		
		mycart.showCart();
	};
});

</script>	

