﻿body {
}

@media 
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {

	/* Force table to not be like tables anymore */
	.data-table>table,.data-table>thead,.data-table>tbody,.data-table>th,.data-table>tbody>tr>td,.data-table>tbody>tr { 
		display: block; 
	}
	
	/* Hide table headers (but not display: none;, for accessibility) */
	.data-table>thead>tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	
	.data-table tr { border: 1px solid #ccc; }

    .data-table td:not(.complete){
        /* Behave  like a "row" */
        border: none;
        /*border-bottom: 1px solid #eee; */
        border-top: 0px !important ;
        position: relative;
        width:100%;
        padding-left: 50%;
        /*float:left;*/
    }
	
	.data-table 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;
        font-weight: bold;
        color:#17233e;
	}
	
	
}