@media screen and (max-width: 900px) {
		.woocommerce table.shop_table thead th.product-thumbnail, th.product-quantity {
    display: inherit;
}
tr.woocommerce-cart-form__cart-item.cart_item td.product-thumbnail, tr.woocommerce-cart-form__cart-item.cart_item td.product-quantity {
    display: inherit;
}			
		
td.product-name > a {
    display: block;
  display: -webkit-box;
  max-width: 100%;
  height: 48px;
  margin: 0 auto;
  font-size: 12px;
  line-height: 1;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}		
		
	}
    
    
    
    
    
@media only screen and (max-width: 760px)  {

	table { 
	  	width: 100%; 
	}

	/* Force table to not be like tables anymore */
	table, thead, tbody, th, td, tr { 
		display: block; 
	}
	
	/* Hide table headers (but not display: none;, for accessibility) */
	thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	
	tr { border: 1px solid #ccc; }
	
	td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding-left: 50%; 
	}

	td:before { 
		/* Now like a table header */
		position: relative;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
		/* Label the data */
		content: attr(data-column);

		color: #000;
		font-weight: bold;
	}
    
   td.product-thumbnail {
    margin: 10px auto;
}

td.product-name {
    text-align: center;
    padding-bottom: 0px !important;
}

td.product-quantity {
padding-bottom: 20px !important;
}

td.product-quantity .quantity.buttons_added {
    display: flex !important;
    float: none;
    justify-content: center;
    padding-bottom: 20px !important;
}

td.product-price {
    text-align: center;
}

td.product-price:before {
   content: 'Prezzo:';
    font-size: 12px;
    position: relative;
    top: -1px;
}

td.product-subtotal {
    text-align: center;
}

td.product-subtotal:before {
   content: 'Subtotale:';
    font-size: 12px;
    position: relative;
    top: -1px;
}


}