:root {
	--colore_grigio: #717171;
}

html {
	scroll-behavior: smooth;
}

/* CSS Document */
.blocco-100 {
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	width: 100%;
	position: relative;
	pointer-events: none;
	z-index: 1;
	transform: translate3d(0, 0, 0);
}

.blocco-elemento {
	width: 100%;
	height: 100%;
	position: relative;
}

.blocco-elemento:has(.dida) {
	padding-bottom: 16px;
}

.blocco-elemento:has(video),
.blocco-elemento:has(img) {
	overflow: hidden;
	position: relative;
}

.blocco-elemento video,
.blocco-elemento img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}

.sfondo-pubblicita {
	background-color: #E7E5DE;
}

.rispetta-proporzioni .blocco-elemento {
	width: 100%;
	height: auto;
	position: relative;
}

.rispetta-proporzioni .blocco-elemento:has(video),
.rispetta-proporzioni .blocco-elemento:has(img) {
	overflow: visible;
}

.rispetta-proporzioni .blocco-elemento video,
.rispetta-proporzioni .blocco-elemento img {
	height: auto;
	width: 100%;
	object-fit: scale-down;
	position: relative;
	top: auto;
	left: auto;
	transform: none;
}

.dida-grande {
	width: 100%;
	max-width: 1440px;
	color: var(--colore_grigio);
	font-family: "SoleSans", Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 14px;
	margin-top: 8px;
	margin-left: auto;
	margin-right: auto;
}

.blocco-elemento-titolo {
	width: 100%;

	text-align: center;
	font-family: "SoleSans", Arial, Helvetica, sans-serif;
	font-size: 28px;
	font-style: normal;
	font-weight: 800;
	line-height: 40px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 16px;
}

.blocco-elemento-titolo+.blocco-elemento-dida {
	margin-top: -8px;
}

.blocco-elemento-dida {
	width: 100%;
	max-width: var(--larghezza);
	color: var(--colore-grigio);
	text-align: center;
	font-family: "SoleSans", Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 16px;
}

.rispetta-proporzioni .blocco-elemento.tipo-grafico {
	height: 110%;
}


.no-spazio-sopra {
	margin-top: 16px !important;
}

.no-aspect-ratio {
	aspect-ratio: unset !important;
}

.blocco-dida-esterna {
	width: 100%;
	padding: 8px 0;
	color: var(--colore_grigio);
	font-family: "SoleSans", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: 500;
	line-height: 14px;
	background-color: #fff;
	/*#fff8f0*/
	z-index: 5;
	bottom: 0;
}

@media only screen and (max-width: 820px) {
	.dida-grande {
		width: 100%;
		max-width: none;
		padding-left: 4px;
		padding-right: 4px;
	}
}

@media only screen and (max-width: 480px) {
	.blocco-bottoni-mobile {
		display: flex;
		justify-content: center;
		gap: 24px;
	}

	.blocco-bottoni-elementi .blocco-elemento-titolo {
		color: #000;
		text-align: center;
		font-family: "roboto-condensed", sans-serif;
		font-size: 28px;
		font-style: normal;
		font-weight: 700;
		line-height: 40px;
		/* 142.857% */
	}

	.blocco-bottone-mobile {
		border-radius: 4px;
		min-width: 100px;
		border: 2px solid #afafaf;
		color: #afafaf;
		padding-top: 4px;
		padding-bottom: 4px;
		text-align: center;
		transition: all .25s ease-in;
	}

	.blocco-bottone-mobile.selezionato {
		background-color: #000;
		border-color: #000;
		color: white;
	}

	.blocco-bottoni-elementi {
		overflow: hidden;
		width: max-content;
		transition: all .25s ease-in;
	}

	.blocco-bottoni-elementi>div {
		width: 100vw !important;
		position: relative;
		float: left;
		padding-left: 18px;
		padding-right: 18px;
	}

	.blocco-elemento-titolo {
		width: 100%;
		max-width: none;
		padding-left: 8px;
		padding-right: 8px;
		text-align: center;

		font-size: 24px;
		line-height: 28px;
	}

	.blocco-elemento-dida {
		width: 100%;
		max-width: none;
		padding-left: 8px;
		padding-right: 8px;

		font-size: 18px;
		line-height: 22px;
	}

	.rispetta-proporzioni .blocco-elemento.tipo-grafico {
		height: 135%;
	}

	.dida-grande {
		padding-left: 18px;
		padding-right: 18px;
	}
}