/* RIGA RIEPILOGO ORDINE */
.wc-order-summary-row {
	display: table;
	width: 100%;
	border: 1px dashed #e2e2e2;
	background: #fafafa;
	table-layout: fixed;
	margin-bottom: 30px;
}

/* COLONNE */
.wc-order-summary-row .summary-col {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	padding: 22px 10px;
	border-right: 1px dashed #e2e2e2;
}

/* ULTIMA COLONNA */
.wc-order-summary-row .summary-col:last-child {
	border-right: none;
}

/* ETICHETTE */
.wc-order-summary-row .label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.5px;
	color: #222;
	margin-bottom: 6px;
	text-transform: uppercase;
}

/* VALORI */
.wc-order-summary-row .value {
	display: block;
	font-size: 14px;
	color: #777;
	word-break: break-word;
}

/* MOBILE */
@media (max-width: 768px) {
	.wc-order-summary-row {
		display: block;
	}

	.wc-order-summary-row .summary-col {
		display: block;
		border-right: none;
		border-bottom: 1px dashed #e2e2e2;
	}

	.wc-order-summary-row .summary-col:last-child {
		border-bottom: none;
	}
}
