﻿.strikeout {
	text-decoration: line-through;
	color: red;
}

.giustificato {
	text-align: justify;
	text-justify: inter-character;
}

.container-lg {
	max-width: -moz-available; /* WebKit-based browsers will ignore this. */
	max-width: -webkit-fill-available; /* Mozilla-based browsers will ignore this. */
	max-width: fill-available;
	margin-left: 32px;
	margin-right: 32px;
}

.centrato {
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Per schermi >= 855px: mostra tabella desktop, nascondi tabella mobile */
.desktop-view {
	display: block !important;
}
.mobile-view {
	display: none !important;
}

/* Per schermi < 855px: nascondi tabella desktop, mostra tabella mobile */
@media (max-width: 855px) {
	.desktop-view {
		display: none !important;
	}
	.mobile-view {
		display: block !important;
	}
}