@charset "utf-8";

/* Mobile */
@media only screen and (min-width: 0px) {
	.blocco-percorso{
		display: flex;
		justify-content: space-evenly;
		margin: 20px auto;
		order: 0;
		width: 100%;
		flex-wrap: wrap;
	}
	.parte-percorso{
		display: flex;
		align-items: center;
		padding: 4px;
		border-bottom-width: 3px;
		border-bottom-style: solid;
	}
	.numero-percorso{
		width: 20px;
		height: 20px;
		font-size: 14px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-right: 10px;
	}
	.testo-percorso{
		text-decoration: none;
		font-size: 14px;
	}
	.testo-percorso:hover{
		text-decoration: underline;
	}
	.testo-percorso-disattivo{
		text-decoration: none;
	}
	.testo-percorso-disattivo:hover{
		text-decoration: none !important;
	}
}

/* Desktop */ 
@media only screen and (min-width: 769px) {
	.blocco-percorso{
		flex-wrap: nowrap;
		width: 60%;
	}
	.numero-percorso{
		width: 30px;
		height: 30px;
		font-size: 20px;
	}
	.testo-percorso{
		font-size: 20px;
	}
	.parte-percorso{
		padding: 10px;
	}
}