/** Shopify CDN: Minification failed

Line 77:0 Unexpected "}"

**/
.table--responsive td {
  min-height: 10px;	
  vertical-align: middle;
}

.table--responsive td img {
	padding: 0 10px;
  	vertical-align: middle;
}

.table--responsive__retired {
	margin: 0 auto;
}

@media 
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {

	/* Force table to not be like tables anymore */
	.table--responsive, .table--responsive thead, .table--responsive tbody, .table--responsive th, .table--responsive td, .table--responsive tr { 
		display: block; 
	}
	
	/* Hide table headers (but not display: none;, for accessibility) */
	.table--responsive thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	
	.table--responsive tr { border: 1px solid #ccc; }
	
	.table--responsive td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee !important; 
		position: relative;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
        padding-right: 0 !important;
		padding-left: 30% !important; 
	}
	
	.table--responsive td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 25%;
		left: 6px;
		width: 25%; 
		padding-right: 10px; 
		white-space: nowrap;
	}
	
	/*
	Label the data
	*/
	.table--responsive__active td:nth-of-type(1):before { content: "Date"; }
	.table--responsive__active td:nth-of-type(2):before { content: "Event"; }
	.table--responsive__active td:nth-of-type(3):before { content: "Location"; }
	.table--responsive__active td:nth-of-type(4):before { content: "Venue"; }
  	.table--responsive__active td:nth-of-type(5):before { content: "Phone"; }
	.table--responsive__active td:nth-of-type(6):before { content: "Contact"; }
  	.table--responsive__active td:nth-of-type(7):before { content: "Media"; }

  
	.table--responsive__retired td:nth-of-type(1):before { content: "Event"; }
	.table--responsive__retired td:nth-of-type(2):before { content: "Location"; }
	.table--responsive__retired td:nth-of-type(3):before { content: "Phone"; }
	.table--responsive__retired td:nth-of-type(4):before { content: "Contact"; }
}
}