/* CSS Document */

.blocco-barometro-sezione{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	padding: 48px;
	color: white;
  	font-family: "SoleSans", Arial, Helvetica, sans-serif;
	font-size: 56px;
	font-weight: 600;
	line-height: 60px;
	letter-spacing: 0em;
	text-align: center;
	position: relative;
	margin-top: 128px;
}

.blocco-barometro-sezione img{
	width: 130px;
	margin-bottom: 28px;
}

.barometro-sezione-1{
	background-color: #223BC0;
}
.barometro-sezione-2{
	background-color: #ED98B5;
}
.barometro-sezione-3{
	background-color: #FF4C4F;
}
.barometro-sezione-4{
	background-color: #4F3783;
}
.barometro-sezione-5{
	background-color: #223BC0;
}
.barometro-sezione-6{
	background-color: #4F3783;
}

.blocco-barometro-segnaposti{
	width: 100%;
	height: 24px;
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	justify-content: space-between;
	margin-top: 128px;
}

.blocco-barometro-segnaposto{
	width: 100%;
	height: 100%;
}

.blocco-barometro-segnaposto.selezionato{
	background-color: rgba(255,255,255,.7);
}

.blocco-barometro-segnaposto:not(.selezionato){
	background-color: #fff;  /*#fff8f0*/
}

@media only screen and (max-width: 820px) {
	.blocco-un-elemento{
    	width: 100%;
		max-width: none
	}
}

@media only screen and (max-width: 480px) {
	.blocco-un-elemento:not(.rispetta-proporzioni){
		max-height: 100vh;
	}
	
	.blocco-un-elemento{
		aspect-ratio: 4 / 3;
	}
	
	.blocco-un-elemento {
		max-height: none!important;
	}

	.blocco-barometro-segnaposti{
		bottom: -1px;
	}
}

