
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap');

/*
	font-family: 'Manrope', sans-serif;
*/

html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	font-size:62.5%;
}

*{
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
	box-sizing: border-box;
}

/************************************************/
/* 				Testo							*/
/************************************************/
h1{
	position: relative;
	top: 0px;
	left: 0px;
	margin: 0px 0px 0px 0px;
	padding: 1.0rem 0rem 1.0rem 0rem;
	font-weight: 700;
	font-family: 'Manrope', sans-serif;
	font-size: 3rem;
	line-height: 3.4rem;
}

h2{
	position: relative;
	top: 0px;
	left: 0px;
	margin: 0px 0px 0px 0px;
	padding: 1.0rem 0rem 0.8rem 0rem;
	font-weight: 700;
	font-family: 'Manrope', sans-serif;
	font-size: 2rem;
}

h3{
	position: relative;
	top: 0px;
	left: 0px;
	margin: 0px 0px 0px 0px;
	padding: 0rem 0rem 0rem 0rem;
	font-size: 1.6rem;
	font-weight: 700;
	font-family: 'Manrope', sans-serif;
}

h4{
	position: relative;
	top: 0px;
	left: 0px;
	margin: 0px 0px 0px 0px;
	padding: 0rem 0rem 0rem 0rem;
	font-size: 1.4rem;
	font-weight: 700;
	font-family: 'Manrope', sans-serif;
}

body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	text-align: left;	
	font-family: 'Manrope', sans-serif;
	font-size: 1.4rem;
	line-height: 2rem;
}

a{
	text-decoration: none;
	color: #010101;
	font-weight: 700;
}

a:hover{
	text-decoration: none;
	color: #010101;
}

.fa-input {
	font-family: FontAwesome !important;
}

.text-center{
	text-align: center;
}

.text-right{
	text-align: right;
}

/********************************************************/
/* 				Form generica							*/
/********************************************************/
form label{
	position: relative;
	width: 100%;
	padding: 0;
	font-weight: bold;
	padding-top: 0.4rem;
}

form input[type="text"], form input[type="password"], form textarea, form select{
	position: relative;
	width: 100%;
	border: 0.1rem solid #ccc;
	padding: 0.8rem 1%;
	border-radius: 0.4rem;
	margin: 0 0 1.6rem 0;
	font-size: 1.6rem;
}

form input[type="text"]:focus, form input[type="password"]:focus, form textarea:focus, form select:focus{
	border: 0.1rem solid #f8dc00;
	box-shadow: 0.1rem 0.1rem 0.4rem #c8c8c8;
}

form textarea{
	min-height: 10rem;
	font-family: 'Manrope', sans-serif;
	font-size: 1.2rem;
	color: #444444;
}

form select{
	color: #444444;
}

form input[type='radio'], input[type='checkbox'] {
	cursor: pointer;
	margin: 5px 0;
}

form input[type="submit"], form input[type="reset"]{
	display: inline-block;
	margin: 1rem 1%;
	padding: 0.8rem 5%;
	border: 0.1rem solid #f8dc00;
	border-radius: 0.4rem;
	background: #f8dc00;
	color: #ffffff;
	cursor: pointer;
	transition: background 0.4s, color 0.4s;
	font-family: 'Manrope', sans-serif;
	font-weight: 600;
	font-size: 1.2rem;
}

form input[type="submit"]:hover, form input[type="reset"]:hover{
	background: #f8dc00;
	color: #ffffff;
}

.errore{
	color: #cf3838;
}

span.errore{
	font-size: 1.1rem; 
	color: #cf3838;
}

/************************************************/
/* 				Box principali					*/
/************************************************/
#container{
	position:relative;
	min-height:100%;
	width: 100%;
	left: 0px;
}

#contenitore{
	position:relative;
	width: 100%;
}

.contenuto{
	max-width: 1300px;
	width: 90%;
	margin: 0 auto;
}

#header{
	position: relative;
	font-size: 1.4rem;
	text-align: center;
	padding: 1rem 0;
	background: #f8dc00;
}	

.headerContatto{
	position: relative;
	float: left;
	padding: 0.5rem 1.5%;
}

.headerContatto a{
	color: #010101;
}

.headerContatto a:hover{
	color: #010101;
}

.headerContatto a img{
	width: 2.3rem;
	float: left;
}

#barraSu{
	position: relative;
	max-width: 120rem;
	width: 90%;
	margin: 1rem auto;
}

#titolo{
	position: relative;
	width: 100%;
	background: #010101;
	align: center;
	text-align: center;
	padding: 0rem 0;
}

#titolo h1{
	font-size: 2rem;
	color: #f8dc00;
}

#briciole{
	position: relative;
	padding: 1rem 0;
	text-transform: uppercase;
	font-weight: 300;
}

#briciole a{
	color: #f8dc00;
	text-decoration: none;
	font-weight: 400;
}

#briciole a:hover{
	color: #f8dc00;
	text-decoration: none;
	font-weight: 500;
}

#logo{
	position: relative;
	float: left;
	top: 0;
	left: 0;
	width: 15%;
	text-align: center;
	display: block;
	margin-top: 1rem;
}

#logo img{
	width: 100%;
	display: inline-block;
}

@media only screen and ( max-width: 767px){
	
	#barraSu{
		width: 100%;
	}
	
	#logo{
		width: 50%;
		margin-top: 0rem;		
	}
	
}

/********************************************************/
/* 		Area riservata (lib_utenti.php)					*/
/********************************************************/
#areaRiservata{
	position: relative;
	float: right;
	width: 25%;
	margin: 0.6rem 0;
	padding: 0;
	font-size: 1.2rem;
}

#areaRiservata ul{
	position: relative;
	top: 0px;
	right: 0px;
	margin: 0 auto; 
	padding: 0px 0px 0px 0px;
	list-style-type: none;
	width: 100%;
}

#areaRiservata ul li{
	position: relative;
	float: right;
	top: 0px;
	left: 0px;
	padding: 0rem .5rem;
	margin: 0rem;
	list-style-type: none;
	text-align: center;
}

#areaRiservata ul li a{	
	display: block;
	text-decoration: none;
	padding: 0.6rem 0rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

#areaRiservata ul li a:hover{
	text-decoration:none;
}
/**/
#areaRiservata svg{
	width: 2.3rem;
	height: 2.3rem;
}

.areaRiservataCls {
	fill: #010101;
}

.areaRiservataSvg:hover .areaRiservataCls{
	fill: #010101;
}

/********************************************************/
/* 		Riassunto carrello								*/
/********************************************************/
#riassuntoCarrello{
	position: relative;
	float: right;
	right: 0rem;

	text-align: right;
	line-height: 0;
	overflow: hidden;
	margin: 0.4rem 0 0.4rem 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

#riassuntoCarrello a, #riassuntoCarrello a:hover{
	color: #010101;
}

#riassuntoCarrelloImg{
	position: relative;
	float: left;
	padding: 0.8rem 0;
	color: #010101;
	font-size: 1.2rem;
}

#riassuntoCarrelloImg svg{
	width: 2.6rem;
	height: 2.6rem;
}

.carrelloCls {
	fill: #010101;
}

.carrelloCls:hover .carrelloCls{
	fill: #010101;
}


#riassuntoCarrelloTesto{
	position: relative;
	float: left;
	padding: 0rem;
	font-weight: 600;
	font-size: 1.2rem;
}

#riassuntoCarrelloNum{
	position: relative;
	float: left;
	padding: 2rem 0.4rem;
	font-weight: 600;
}

#riassuntoCarrelloTot{
	position: relative;
	float: left;
	padding: 2rem 1.8rem;
	font-weight: 600;
}

#riassuntoCarrello a{
}

#riassuntoCarrello a:hover{
	text-decoration: none;
}

#riassuntoCarrelloBox{
	position:absolute; 
	z-index:10000; 
	display:block; 
	top: 100%; 
	right: -0.2rem;
	width: 30rem; 
	height: 0;
	max-height: 50rem;
	background: #ffffff;
	opacity: 0;
	text-align: left;
	line-height: 1.8rem;
	font-size: 1.4rem;
}

#riassuntoCarrelloBoxSpese{
	position: relative;
	width: 96%;
	margin: 0.6rem 3%;
	font-size: 1.2rem;
	font-weight: 700;
}

.riassuntoCarrelloBoxRiga{
	position: relative;
	width: 94%;
	padding: 0.4rem 0;
	margin: 0 3%;
}

.riassuntoCarrelloBoxImg{
	position: relative;
	float: left; 
	width: 25%;
}

.riassuntoCarrelloBoxImg img{
	width: 100%;
	height: auto!important;
	display: inline-block;
	padding: 0 0.4rem;
}

.riassuntoCarrelloBoxNome{
	position: relative;
	float: left; 
	width: 45%;
}

span.riassuntoCarrelloBoxPeso{
	font-weight: 400;
	font-style: italic;
	font-size: 1.2rem;
}

.riassuntoCarrelloBoxTot{
	position: relative;
	float: left; 
	width: 30%;
	text-align: right;
}

@media only screen and ( max-width: 767px){
	.headerContatto{
		display: none;
	}
	
	#areaRiservata{
		position: relative;
		width: 100%;
		float: none;
	}

	#riassuntoCarrello{
		position: relative;
		float: none;
		top: 0rem;
		right: 2%;
	}
}
/************************************************/
/* 				Ricerca							*/
/************************************************/
#boxRicerca{
	position: relative;
	float: left;
	padding: 0rem;
	top: 2rem;
	left: 15%;
	width: 30%;
	overflow: hidden;
	background: #ffffff;
}

#boxRicerca form input[type="text"]{
	position:relative;
	float: left;
	top: 0;
	width: 80%;
	height: 100%;
	border: 0px;
	padding: 1.2rem 2%;
	margin: 0;
	border-top: 0.1rem solid #010101;
	border-bottom: 0.1rem solid #010101;
	border-left: 0.1rem solid #010101;
	border-radius: 0;
	color: 010101;
	font-size: 1.4rem;
	background:transparent;
}

#boxRicerca form input[type="submit"]{
	position:relative;
	float: left;
	top: 0;
	left: 0;
	width: 20%;
	height: 100%;
	border: 0px;
	padding: 1.4rem 0 1.5rem 0;
	margin: 0;
	background: #010101;
	color: #ffffff;
	cursor: pointer;
	transition: background 0.4s;
	font-weight: normal;
	border-radius: 0;
}

#boxRicerca form input[type="submit"]:hover{
	background: #f2f2f2;
	color: #ffffff;
}


@media only screen and ( max-width: 767px){
	#boxRicerca{
		position: relative;
		float: none;
		margin: 1rem auto;
		padding: 0rem;
		width: 90%;
		border: 1px solid #f8dc00;
		background: #ffffff;
		height: 3rem;
		overflow: hidden;
		bottom: auto;
	}
	
	#boxRicerca form input[type="text"]{
		width: 70%;
		background: #ffffff;
	}

	#boxRicerca form input[type="submit"]{
		left: 70%;
		width: 30%;
	}
}
/************************************************/
/* 				MenuText						*/
/************************************************/
#logoMenu{
	position: relative;
	bottom: 0rem;
	right: 0;
	width: 100%;
	padding: 0;
	z-index: 2000;
	background: #010101;	
}

#menu{
	position: relative;
	float: left;
	width: 45%;
	margin: 0 0 0 2%;
}

#nav{
	width: 100%;
}

#nav > a{
    display: none;
}

#nav li{
    position: relative;
}
 
/* primo livello*/
#nav > ul{
	position: relative;
	top: 0;
	right: 0;
	margin: 0 auto; 
	padding: 0;
	list-style-type: none;
	font-size: 1.4rem;
	text-transform: uppercase;
	font-weight: 500;
}

#nav > ul > li{
	position: relative;
	float: left;
	top: 0px;
	left: 0px;
	margin: 0; 
	text-align: center;
	transition: background 0.4s;
	padding: 0 2%;
}

#nav > ul > li:hover{
}

#nav > ul > li a{
	display: block;
	text-decoration: none;
	padding: 3rem 0; 
	color: #fff;
	font-weight: 600;
}

#nav > ul > li a:hover{
	text-decoration: none;
	color: #f8dc00;
}

/* secondo livello*/
#nav > ul > li ul{
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	list-style-type: none;
	margin: 0;
	padding: 0;
	width: 100%;
	font-size: 1.4rem;
	background: #fff;
	text-transform: lowercase;
	font-weight: 400;
}

#nav > ul > li:hover > ul{
    display: block;
}

#nav > ul ul > li{
	position: relative;
	width: 100%;
}

#nav > ul ul > li:hover{
	background: #f8dc00;
}

#nav > ul ul > li a{
	display: block;
	text-align: center;
	padding: 0.8rem 0rem; 
	color: #010101;
}

#nav > ul ul > li a:hover{
	text-decoration:none;
	color: #010101;
}

/* terzo livello*/
#nav > ul ul > li ul{
	display: none;
	position: absolute;
	top: 0%;
	left: 100%;
	list-style-type: none;
	margin: 0;
	padding: 0;
	width: 100%;
	font-size: 1.4rem;
	background: #f2f2f2;
}

#nav > ul ul > li:hover > ul{
    display: block;
}

@media only screen and ( max-width: 767px){
	#menu{
		position: relative;
		float: right;
		width: 50%;
		background: transparent;
		margin: 0;
	}

    #nav{
        position: relative;
    }
    
	#nav > a{
    }
	
	#nav:not( :target ) > a:first-of-type,
	#nav:target > a:last-of-type
	{
		display: block;
	}
	
    /* first level */
 
    #nav > ul{
        height: auto;
        display: none;
        position: absolute;
        right: 0%;
		top: 6rem;
		font-size: 1.8rem;
		width: 200%;
		z-index: 1000;
		background: #f8dc00;
    }
	
	#nav:target > ul{
		display: block;
	}
	
	#nav > ul > li{
		width: 100%;
		float: none;
		padding: 0 5%;
	}
	
	#nav > ul > li:hover{
		background: #010101;
	}
	
	#nav > ul > li a{
		color: #010101;
		padding: 1.4rem 0;
	}
	
	#nav > ul > li a:hover{
		color: #ffffff;
	}
	
    /*second level */
	#nav > ul > li ul{
		display: none;
		position: relative;
		top: 100%;
		list-style-type: none;
		margin: 0;
		padding: 0;
		width: 100%;
		font-size: 1.4rem;
		background: #f2f2f2;
	}
	
	#nav li:hover ul{
		//display: block;
	}

	#nav > ul ul > li{
		position: relative;
		width: 100%;
		border: 0;
	}

	#nav > ul ul > li a{
		display: block;
		text-align: left;
		padding: 0.8rem 5%;
		border-top: 1px solid #f2f2f2;
		color: #010101;
	}

	#nav > ul ul > li a:hover{
		text-decoration:none;
		color: #ffffff;
	}
	
	/* terzo livello*/
	#nav > ul ul > li ul{
		display: none;
		position: relative;
		top: 0%;
		left: 0;
		list-style-type: none;
		margin: 0;
		padding: 0;
		width: 100%;
		font-size: 1.4rem;
		background: #f8dc00;
	}
	
	#nav > ul ul ul > li a{
		display: block;
		text-align: left;
		padding: 0.8rem 5%;
		border-top: 1px solid #ffffff;
		color: #ffffff;
	}
	
}

.tastoMenu{
	position: relative;
	float: right;
	margin: 2rem 5% 1rem 0;
	border-radius: 4rem;
	padding: 0.6rem 1rem;
	color: #010101;
	line-height: 0;
	background: #f8dc00;
}

.tastoMenu:hover{
	color: #fff;
}

/************************************************/
/* 				countdown						*/
/************************************************/
#countdown{
	position: relative;
	float: left;
	width: 18%;
	margin-top: 2.4rem;
}

.countdownG, .countdownO, .countdownM ,.countdownS{
	background: #f8dc00;
	border-radius: 0.5rem;
	border: 0.1rem solid #f8dc00;
	font-size: 1.6rem;
	padding: 0.4rem;
	color: #010101;
}

.countdownDiv{
	position: relative;
	float: right;
	border-radius: 0.5rem;
	color: #ffffff;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 700;
	padding-top: 0.2rem;
}

.countdownDown{
	position: relative;
	float: right;
	color: #ffffff;
	text-align: center;
	font-size: 0.8rem;
	min-width: 3rem;
	line-height: 1.4rem;
}

@media (max-width: 767px){
	#countdown{
		width: 49%;
		margin-top: 1rem;
	}
}

/************************************************/
/* 				Tasto iscriviti					*/
/************************************************/
#iscriviti{
	position: relative;
	float: left;
	width: 20%;
	margin-top: 2.4rem;
	text-align: right;
	
}

#iscrizioneTasto{
	display: inline-block;
	background: #f8dc00;
	padding: 0.4rem 2%;
	border: 0.1rem solid #f8dc00;
	border-radius: 0.4rem;
	font-weight: 700;
	cursor: pointer;
}

@media (max-width: 767px){
	#iscriviti{
		width: 49%;
		margin-top: 1rem;
	}
}

/************************************************/
/* 				home							*/
/************************************************/
#preBanner{
	background: #f8dc00;
	text-align: center;
	padding: 0.6rem 0;
	font-weight: 600;
}

#boxBannerHome{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 80vh;
	overflow: hidden;
}

#boxBannerIn{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 70vh;
	overflow: hidden;
}

#slides{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 100;
	overflow: hidden;
}

#velinaSlide{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 200;
	background: radial-gradient(
		circle,
		transparent 20%,
		rgba(0, 0, 0, 0.4) 60%,
		rgba(0, 0, 0, 0.9) 100%
	);
}

#testoSlides{
	position: absolute;
	bottom: 10%;
	width: 40%;
	left: 10%;
	z-index: 500;
	color: #ffffff;
	line-height: 2.4rem;
	text-align: left;

}

#titoloSlide{
	display: inline-block;
	/*background: rgba(0, 0, 0, 0.1);*/
	padding: 1.4rem 5%;
	text-shadow: 0.4rem 0.4rem 0.4rem #000000;
}

.nomeSlide{
	position: relative;
	font-weight: 700;
	font-size: 4rem;
	letter-spacing: 0.2rem;
	line-height: 5rem;
} 

.descrizioneSlide{
	position: relative;
	font-weight: 300;
	font-size: 1.8rem;
	padding-top: 0.6rem;
}

@media (max-width: 767px) {
	#boxBannerHome{
		height: 40vh;
	}
	
	#testoSlides{
		position: absolute;
		bottom: 10%;
		width: 80%;
		left: 10%;
	}
	
	.nomeSlide{
		position: relative;
		font-weight: 700;
		font-size: 3rem;
		letter-spacing: 0.2rem;
		line-height: 3.2rem;
	} 

	.descrizioneSlide{
		position: relative;
		font-weight: 300;
		font-size: 1.4rem;
		padding-top: 0.6rem;
		line-height: 1.6rem;
	}
}

/************************************************/
/* 				HomeIscrizione					*/
/************************************************/
#boxHomeIscrizione{
	background: #f2f2f2;
	padding: 5rem 0;
}

#boxHomeIscrizione .contenuto{
	display: flex;
	align-items: stretch; /* stessa altezza */
	justify-content: center;
	gap: 2.5%;
}

.boxHomeIscrizione{
	position: relative;
	width: 28.3%;
	padding: 1rem 1% 2rem 1%;
	border-radius: 0.8rem;
	border: 0.1rem solid transparent;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
}

.boxHomeIscrizione h2{
	color: #010101;
}
	
.boxHomeIscrizione h3{
	color: #010101;
}

.boxHomeIscrizioneNero{
	background: #010101;
	color: #fff;
}

.boxHomeIscrizioneNero h2{
	color: #f8dc00;
}
	
.boxHomeIscrizioneNero h3{
	color: #fff;
}

.boxHomeIscrizioneNero h4{
	color: #f8dc00;
}

.boxHomeIscrizioneGiallo{
	background: #f8dc00;
	color: #010101;
}

.boxHomeIscrizioneBianco{
	background: #fff;
	color: #010101;
}

.boxHomeIscrizioneInfo{
	position: relative;
	width: 100%;
	margin: 1rem 0;
}

.boxHomeIscrizioneIcona{
	position: relative;
	float: left;
	width: 10%;
	text-align: center;
}

.boxHomeIscrizioneNero .boxHomeIscrizioneIcona{
	color: #f8dc00;
}

.boxHomeIscrizioneTesto{
	position: relative;
	float: left;
	width: 90%;
}

.boxHomeIscrizioneFooter{
	margin-top: auto;
	padding-top: 1rem;
	border-top: 0.1rem solid #010101;
	text-align: right;
}

.boxHomeIscrizioneNero .boxHomeIscrizioneFooter{
	border-top: 0.1rem solid #fff;
}

.boxHomeIscrizioneTasto{
	display: inline-block;
	background: #f8dc00;
	padding: 0.4rem 2%;
	border: 0.1rem solid #f8dc00;
	border-radius: 0.4rem;
	font-weight: 700;
	cursor: pointer;
	color: #010101;
	margin: 1rem 0 0 0;
}

.boxHomeIscrizioneGiallo .boxHomeIscrizioneTasto{
	border: 0.1rem solid #010101;
	background: #010101;
	color: #fff;
}

@media (max-width: 767px){
	
	#boxHomeIscrizione .contenuto{
		flex-direction: column; /* uno sotto l'altro */
		align-items: normal;    /* oppure initial */
		gap: 1rem;
	}
	
	.boxHomeIscrizione{
		position: relative;
		width: 100%;
		padding: 1rem 2%;
		margin: 2rem 0;
	}
}

/************************************************/
/* 				HomeProgramma					*/
/************************************************/
#homeProgramma{
	position: relative;
	width: 100%;
	background: #fff;
	padding: 5rem 0;
}

#homeProgramma .contenuto{
	padding: 0 1.5%;
}

#programma{
	position: relative;
	float:left;
	width: 70%;
}

.programma{
	position: relative;
	width: 100%;
	border-top: 0.1rem solid #ccc;
	padding: 0.7rem 0 1.4rem 0;
}

.programmaOra{
	position: relative;
	width: 100%;
	font-weight: 700;
}

.programmaEvento{
	position: relative;
	width: 100%;
	font-size: 2.2rem;
	font-weight: 300;
	padding: 1rem 0;
}

.programmaPoi{
	position: relative;
	width: 100%;
	font-weight: 300;
}

#menuProgramma{
	position: relative;
	float: right;
	width: 20%;
}

#menuProgramma > ul{
	position: relative;
	top: 0;
	left: 0;
	margin: 0 auto; 
	padding: 0;
	list-style-type: none;
	font-size: 1.6rem;
	font-weight: 700;
}

#menuProgramma > ul > li{
	position: relative;
	top: 0px;
	left: 0px;
	margin: 0; 
	text-align: left;
	transition: background 0.4s;
	padding: 0;
	border-bottom: 0.1rem solid #010101;
}

#menuProgramma > ul > li:hover{
}

#menuProgramma > ul > li a{
	display: block;
	text-decoration: none;
	padding: 1rem 0 0.2rem 0; 
	color: #010101;
	font-weight: 700;
}

#menuProgramma > ul > li a:hover{
	text-decoration: none;
	color: #f8dc00;
}

@media (max-width: 767px) {
	#programma, #menuProgramma{
		position: relative;
		float:none;
		width: 100%;
	}
}

/************************************************/
/* 				HomeBox							*/
/************************************************/
#boxHome{
	position: relative;
	background: #f2f2f2;
}

#boxHome .contenuto{
	display: flex;
	align-items: stretch;
	justify-content: center;
}

.boxHome{
	position: relative;
	float: left;
	width: 23%;
	margin: 5rem 1%;
	border: 0.1rem solid transparent;
	border-radius: 0.8rem;
	background: #fff;
	padding: 0 1.5%;
	font-size: 1.6rem;
	overflow: hidden;
}

.boxHomeGiallo{
	background: #f8dc00;
}

.boxHomeMappa{
	background-image: url("../img/percorso.png");
    background-position: right 5% top 5%;
    background-size: auto 60%;
	background-repeat: no-repeat;
}

.boxHomeStoria{
	background-image: url("../img/storia.jpg");
    background-position: center center;
    background-size: auto 100%;
	background-repeat: no-repeat;
	color: #fff;
}

.boxHomeGallery{
	background-image: url("../img/gallery.jpg");
    background-position: center center;
    background-size: auto 100%;
	background-repeat: no-repeat;
	color: #fff;
}

a.boxHomeStoria, a.boxHomeGallery{
	color: #fff;
}

a:hover.boxHomeStoria, a:hover.boxHomeGallery{
	color: #fff;
}

.boxHomeTitolo{
	position: relative;
	width: 100%;
	padding: 1.6rem 0;
	font-size: 2rem;
}

.boxHomeTesto{
	position: absolute;
	width: 100%;
	height: 40%;
	bottom:0;
	left:0;
	background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 1));
	z-index: 100;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0rem 5%;
	font-size: 1.6rem;
}

.boxHome form{
	margin-top: 1rem;
}

.boxHome form input[type="submit"], .boxHome form input[type="reset"]{
	display: inline-block;
	margin: 1rem 1%;
	padding: 0.8rem 5%;
	border: 0.1rem solid #010101;
	border-radius: 0.4rem;
	background: #010101;
	color: #ffffff;
	cursor: pointer;
	transition: background 0.4s, color 0.4s;
	font-family: 'Manrope', sans-serif;
	font-weight: 600;
	font-size: 1.2rem;
}

.boxHome form input[type="submit"]:hover, .boxHome form input[type="reset"]:hover{
	background: #010101;
	color: #ffffff;
}

@media (max-width: 767px) {
	#boxHome .contenuto{
		flex-direction: column; /* uno sotto l'altro */
		align-items: normal;    /* oppure initial */
		gap: 1rem;
	}
	
	.boxHome{
		position: relative;
		float: none;
		width: 90%;
		padding: 1rem 2%;
		margin: 2rem 5%;
		min-height: 50vh;
	}
	
}

/************************************************/
/* 				HomeMappa						*/
/************************************************/
#homePassiataNelMondo{
	position: relative;
	width: 100%;
	margin: 0;
}

.homePNMintro{
	position: relative;
	float: left;
	width: 30%;
	height: 60vh;
	background: #f8dc00;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem 2%;
}

.homePNMmappa{
	position: relative;
	float: left;
	width: 70%;
	height: 60vh;
}

#velinaHomePNMmappa{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 200;
	pointer-events: none;
	background: radial-gradient(
		circle,
		transparent 20%,
		rgba(0, 0, 0, 0.4) 60%,
		rgba(0, 0, 0, 0.9) 100%
	);
}

@media (max-width: 767px){
	.homePNMintro{
		float: none;
		width: 100%;
		padding: 2rem 5%;
	}

	.homePNMmappa{
		float: none;
		width: 100%;
		height: 60vh;
	}
}

/************************************************/
/* 				Contenuto						*/
/************************************************/
#contenuto{
	position: relative;
	padding: 0;
	z-index: 5;
}

#corpo{
	position: relative;
	max-width: 1200px;
	margin: 4rem auto;
	z-index: 10;
}

#corpoSx{
	position: relative;
	float: left;
	width: 30%;
	padding: 2rem 2%;
}

#corpoDx{
	position: relative;
	float: left;
	width: 70%;
	padding: 2rem 2%;
}

#titoloHome{
	position: relative;
	width: 100%;
	margin: 2rem 0 0 0;
}

#titoloHome h1{
	font-size: 1.6rem;
	margin: 0 0.8rem;
	padding: 0;
}

@media (max-width: 767px) {

	#corpo{
		float: none;
		width: 100%;
		padding: 3rem 5%;
	}
	
	#corpoSx, #corpoDx{
		position: relative;
		float: none;
		width: 90%;
		margin: 0 auto;
	}

}

/************************************************/
/* 				Classifica						*/
/************************************************/
.rigaPos{
	position: relative;
	width: 100%;
	border-bottom: 0.1rem solid #010101;
	padding: 0.2rem 0;
}

span.posizione{
	display: inline-block;
	background: #010101;
	color: #f8dc00;
	padding: 0rem 0.6rem;
	border-radius: 0.4rem;
	font-size: 1.0rem;
	margin: 0 1rem 0 0;
}

.atleta{
	position: relative;
	float: left;
	width: 40%;
	font-weight: 600;
}

.tempo{
	position: relative;
	float: left;
	width: 20%;
	text-align: right;
	padding: 0 2% 0 0;
	font-style: italic;
}

.squadra{
	position: relative;
	float: left;
	width: 40%;
}

.albo{
	position: relative;
	width: 100%;
	padding: 2rem 2%;
	border: 0.1rem solid #f8dc00;
	border-radius: 0.4rem;
	margin: 2rem 0;
	background: #f2f2f2;
}

.alboAnno{
	font-weight: 700;
	font-size: 1.6rem;
	padding: 0 0 1rem 0;
}

.alboClassifica{
	padding: 1rem 0 0 0;
	text-align: right;
}

#ricercaClassifica{
	position: relative;
	width: 100%;
	padding: 1rem 2%;
	background: #f8dc00;
	border: 0.1rem solid #f8dc00;
	border-radius: 0.8rem;
	margin: 0 0 2rem 0;
}

#ricercaClassifica form input[type="text"], #ricercaClassifica form input[type="password"], #ricercaClassifica form select{
	float: left;
	width: 23%;
	margin: 0 1%;
}

#ricercaClassifica  form input[type="submit"]{
	display: inline-block;
	margin: 0rem 1%;
	padding: 0.8rem 5%;
	border: 0.1rem solid #010101;
	border-radius: 0.4rem;
	background: #010101;
	color: #f8dc00;
	cursor: pointer;
	transition: background 0.4s, color 0.4s;
	font-family: 'Manrope', sans-serif;
	font-weight: 600;
	font-size: 1.2rem;
}

@media (max-width: 767px){
	#ricercaClassifica form input[type="text"], #ricercaClassifica form input[type="password"], #ricercaClassifica form select{
		float: none;
		width: 95%;
		margin: 1rem 2.5%;
	}
}

/************************************************/
/* 				Iscrizioni						*/
/************************************************/
.tastoIscrizioni{
	position: relative;
	float: left;
	width: 45%;
	margin: 2rem 2.5%;
	background: #f8dc00;
	padding: 2rem 0;
	text-align: center;
	border-radius: 0.8rem;
}

/************************************************/
/* 				Media Video						*/
/************************************************/
.video{
	position: relative;
	height: 0;
	overflow: hidden;
	padding-bottom: 55%
}

.video iframe,
.video object,
.video embed {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

@media (max-width: 767px){
	.videoExt{
		float: none;
		width: 100%;
	}
}

/************************************************/
/* 				Video							*/
/************************************************/
.boxVideo{
	position: relative;
	float: left;
	width: 55%;
	margin: 2rem 0;
}

.boxVideoText{
	position: relative;
	float: left;
	width: 40%;
	margin: 2rem 0 2rem 5%;
}

@media (max-width: 767px){
	
	.boxVideo, .boxVideoText{
		position: relative;
		float: none;
		width: 90%;
		margin: 2rem 5%;
	}
	
}

/************************************************/
/* 				Sponsor							*/
/************************************************/
#sponsor{
	position: relative;
	width: 100%;
	text-align: center;
	background: #fff;
	padding: 5rem 0;
}

.sponsor{
	margin: 0;
}

.fasciaSponsor1, .fasciaSponsor2, .fasciaSponsor3, .fasciaSponsor4, .fasciaSponsor5{
	margin: 0;
	display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.sponsor img{
	width: 100%;
}

.fasciaSponsor1 .sponsor{
	flex: 0 0 20%;
}

.fasciaSponsor2 .sponsor{
	flex: 0 0 16.6%;
}

.fasciaSponsor3 .sponsor{
	flex: 0 0 12.5%;
}

.fasciaSponsor4 .sponsor{
	flex: 0 0 11.11%;
}

.fasciaSponsor5 .sponsor{
	flex: 0 0 10%;
}

@media (max-width: 767px){

	.fasciaSponsor1 .sponsor{
		flex: 0 0 50%;
	}

	.fasciaSponsor2 .sponsor{
		flex: 0 0 33.3%;
	}

	.fasciaSponsor3 .sponsor{
		flex: 0 0 25%;
	}

	.fasciaSponsor4 .sponsor{
		flex: 0 0 25%;
	}

	.fasciaSponsor5 .sponsor{
		flex: 0 0 25%;
	}
	
}

/************************************************/
/* 				box fine						*/
/************************************************/
#fine{
	position:absolute;
	padding: 0rem;
	left: 0px;
	bottom: 0px; 
	width: 100%;
	text-align: left;
	z-index: 30;
}

#fine1{
	position: relative;
	width: 100%;
	background: #010101;
	color: #fff;
	padding: 4rem 0;
}

#fine2{
	position: relative;
	width: 100%;
	text-align: center;
	background: #f8dc00;
	padding: 2rem 0;
	color: #010101;
	font-size: 1.2rem;
	font-weight: 300;
}

.boxFine, .boxFineImg{
	position: relative;
	float: left;
	width: 23%;
	margin: 2rem 1%;
	line-height: 2.6rem;
	text-align: center;
}

.boxFine h2{
	color: #fff;
	font-size: 1.6rem;
	font-weight: 300;
	text-transform: uppercase;
}

.boxFine img{
	height: 3.4rem;
}

.boxFineImg img{
	width: 50%;
	displsy: inline-block;
}

.boxFine a, .boxFine a:hover{
	color: #010101;
	font-weight: 600;
}

.boxFine ul{
	position: relative;
	top: 0;
	right: 0;
	margin: 0; 
	padding: 0;
	list-style-type: none;
	z-index: 100;
}

.boxFine ul ul{
	display: none;
}

.boxFine li{
	position: relative;
	width: 100%;
	top: 0px;
	left: 0px;
	font-size: 1.4rem;
    font-weight: 400;
}

.boxFine li a{
	display: block;
	text-decoration: none;
	padding: 0.2rem 2%; 
	color: #444444;
	font-weight: 400;
}

.boxFine li a:hover{	
	font-weight: 700;
}

.boxFine li #logoMenu{
	height: 0;
	display: none;
}

@media (max-width: 767px) {
	.boxFine, .boxFineImg{
		float: none;
		width: 100%;
		margin: 3rem 0;
	}
}

/************************************************/
/* 				Foto							*/
/************************************************/
.foto{
	position: relative;
	float: left;
	width: 22%;
	margin: 2rem 1.5%;
}

.foto img{
	width: 100%;
	display: block;
}

@media (max-width: 767px) {
}

/************************************************/
/* 				Utilità							*/
/************************************************/
.vuoto {
	clear:both;
}

.visible-mob{
	display: none;
}

@media (max-width: 767px) {
	.visible-mob{
		display: block;
	}
	
	.hidden-mob{
		display: none;
	}
}