/********** Reset Row Border *****************/
.gigpress-row td {
	border: none;
}
.gigpress-table tbody {
	border-top: none;
}
.support-row td {
	border-top: none;
}


/********** Gigpress Custom Styling *********/
.vevent {
	border-bottom: 1px solid white;
}
span.gigpress-info-label {
	color: #666;
}
span.gigpress-info-item {
	color: #e7d0ba;
}


/********** Mobile Rules ********************/
/* attempt to make tables responsive */
@media 
only screen and (max-width: 500px),
(min-device-width: 500px) and (max-device-width: 1024px)  {

	/* 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) */
	.gigpress-header, .gigpress-links-cell { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	
	.gigpress-table td { 
		/* Behave  like a "row" */
		border: none;
		position: relative;
		padding: 0;
	}
	
	td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
	}
        
        /* add styling to date and city element */
        abbr, .gigpress-city {
          font-size: 1.5em;
        }

        /* try to align date and city on one line */
       .gigpress-date {
         float: left;
       }
       .gigpress-city {
         float: right;
       }
       .gigpress-venue {
         clear: both;
       }
}