
@media only screen and (max-width: 800px) {
    
    /* Force table to not be like tables anymore */
	#no-more-tables table, 
	#no-more-tables thead, 
	#no-more-tables tbody, 
	#no-more-tables th, 
	#no-more-tables td, 
	#no-more-tables tr { 
		display: block; 
	}
 
	/* Hide table headers (but not display: none;, for accessibility) */
	#no-more-tables thead { 
		display: none;
	}
    #no-more-tables thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
 
	#no-more-tables tr { border: 1px solid #ccc; }
 
	#no-more-tables td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding-right: 40% !important; 
		white-space: normal;
		text-align:left !important;
        font-weight: bold;
	}
    #no-more-tables.no-head td{
        text-align:right !important;
        padding: 10px !important;
        width: 100% !important;
    }
    #no-more-tables.table-form tr{
        border: none !important;
    }
    #no-more-tables.table-form td{
        padding: 5px !important;
    }
 
	#no-more-tables td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 0;
		right: 0;
		width: 40%; 
		padding: 10px; 
		white-space: nowrap;
		text-align:right;
		font-weight: normal;
        color: #747474;
	}
 
	/*
	Label the data
	*/
	#no-more-tables td:before { content: attr(data-title); }
}