	
	home nav * {
		background-repeat: no-repeat;
		background-size: 100%;
		background-position: center;
		
		display: grid;
		
		grid-template-areas:
			'spazio'
			'titolo'
			'punt';
		grid-template-rows: 30% 20% 15%;
	}
	
	home nav bari		{	background-image:url('../immagini/home-bari.svg');		background-color:#DC2F23;	border-radius: 3vh 0px 0px 0px;	}
	home nav brindisi	{	background-image:url('../immagini/home-brindisi.svg');	background-color:#E85B0D;	border-radius: 0px 3vh 0px 0px;	}
	home nav foggia		{	background-image:url('../immagini/home-foggia.svg');	background-color:#92C01F;	border-radius: 0px 0px 0px 3vh;	}
	home nav taranto	{	background-image:url('../immagini/home-taranto.svg');	background-color:#32B0CC;	border-radius: 0px 0px 3vh 0px;	}
	
	home nav titolo {
		font-size:1.5em;
		font-weight:bold;
		margin-bottom: 15px;
	}
	
	home nav punt {	
		background-image:	url('../immagini/home_puntatore.svg');
		background-size:100% 100%;
		width: 100%;
		margin-top: 1vh;
		height: 2vh;
	}
	
	hamb {
		background-image:	url('../immagini/hamburger.svg');
		background-size:100% 100%;
		display: block;
		width: 4vh;
		height: 4vh;
		float: left;
		margin-left: 3vw;
		margin-top: 1vh;
	}
	

		logo {
				background-image: url('../immagini/logo_con_aeroporti.svg');
				background-size: 80% 80%;
				background-repeat: no-repeat;
				background-position: center;
				height: 5vh;
				width: 70%;
				display: block;
				float: left;
			}

    info_min {
			position: absolute;
			top: 0;
			right: 0;
			background-repeat: no-repeat;
			background-size: 100%;
			background-position: center;
			padding:2vh;
			width: 20vw;
			height: 8vh;
			background-color: lime;
			color:white;
			border-radius: 2vh 0 0 0;
			text-align:center;
		}
		
			info_min b {
				margin-left:5px;
			}

	footer tasto {
		background-size:100% 100%;
		display: block;
		margin: 2vh;
		width:100%;
	}
	
	tastocategoria {
		text-align: center;
		display:block;
		width:100%;
		padding:.2vh;
		background-color:white;
		color:white;
		font-weight:bold;
		font-size:.6em;
		color:#DB2F23;
	}
	tastocategoria.nascosto{
		background-color: #ededed !important;
		border:solid 2vh #ededed !important;
	}

	tastocategoria img {
		height: 50%;
		background-color:unset !important;
		border: unset !important;
		width: 100%;
	}
	
	tastocategoria.scelta {
		background-color:whitesmoke;
		color:#DB2F23;
	}
	
	tastoacf {
		display:inline-block;
		width:100%;
		border-radius:3px;
		height: 5vh;
		background-color: green;
		
		
		background-color: #6bb98e;
		color:whitesmoke;
		font-weight: bold;
		border:solid 1px #ccc;
		padding: 1vh 0;
		margin: 1vh 0;
		text-align: center;
		border-radius: 2vw;
	}

	tastoacf img {
		width: 100%;
		height: 100%;
		object-fit: contain;
		object-position: center center;
	}
	
	.toggle{
		width: 30px;
		height: 16px;
		border-radius: 15px;
		border: 1px solid white;
		background-color: white;
		position:relative;
		-webkit-appearance: none;
		box-sizing: border-box;
		margin-left: 0;
	}
	  .toggle::after{
			content: '';
			display: inline-block;
			box-sizing: border-box;
			width: 14px;
			height: 14px;
			/*border: 1px solid white;*/
			border-radius: 14px;
			background-color:currentcolor;
			z-index:99;
			-webkit-appearance: none;
			transition: transform .1s ease;
			background-color: red;
			border:solid 1px white;
	  }
	  .toggle:checked::after{
			-webkit-appearance: none;
			position: absolute;
			transform: translateX(14px);
			transition: transform .1s ease;
			background-color: green;
	  }
	