.pricelist-left{
      text-align:left!important;
}

.pricelist-center{
      text-align:center!important;
}

.pricelist-right{
      text-align:right!important;
}

.table-bordered td {
	border-left: 2px solid #ddd;
}

.table-bordered th, .table-bordered td:first-child {
	border-left: 0;
}

.table-bordered th:first-child {
	border: 0;
}

.table-bordered th, .table-bordered td:nth-child(2n) {
	border-left: 2px solid #ddd;
}

.table th, .table td {
	border-top: 2px solid #ddd;
}

.table-bordered {
	border: 2px solid #ddd;
}

@media (max-width: 480px){
td.hide-mobile, th.hide-mobile{
	display:none!important;
}
}
 
/* 
Max width before this PARTICULAR table gets nasty
This query will take effect for any screen smaller than 760px
and also iPads specifically.
*/
@media 
only screen and (max-width: 760px) {

	/* Force table to not be like tables anymore */
	.responsive table, .responsive thead, .responsive tbody, .responsive td, .responsive tr { 
		display: block; 
    	width: inherit !important;
    	text-align: left !important;
	}

	.responsive .pricelist-center {
		text-align: left !important;
	}

	.responsive th {
		display: none;
	}
	
	/* Hide table headers (but not display: none;, for accessibility) */
	.responsive thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	
	.responsive tr { border: 1px solid #ccc; }
	
	.responsive td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding-left: 50%; 
	}
	
	.responsive td:before { 
		/* Now like a table header */
		position: unset;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 100%;  
		white-space: nowrap;
	}

}