  @media only screen and (max-width:767px) {
	
	/* Force table to not be like tables anymore */
	#directories-table table, 
	#directories-table thead, 
	#directories-table tbody, 
	#directories-table th, 
	#directories-table td, 
	#directories-table tr { 
		display: block; 
	}
 
	/* Hide table headers (but not display: none;, for accessibility) */
	#directories-table thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
 
	#directories-table tr { border: 1px solid #ccc; }
 
	#directories-table td { 
		/* Behave  like a "row" */
		font-size:1em;
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding-left: 35% !important; 
		white-space: normal !important;
		text-align:left !important;
	}
	#directories-table td span.name
	{
		font-size:1em;
	}
		#directories-table td:empty
		{
			min-height:15px;
			
		}
 
	#directories-table td:before { 
		position: absolute;
    top: 15px;
    left: 15px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
    font-size: 1em;
    color: #4c4d4f;
    font-weight: 600;
	}
	/*
	Label the data
	*/
	#directories-table td:before { content: attr(data-title); }
}