@media only screen and (max-width: 800px) {
	
	/* Force table to not be like tables anymore */
	 .manual-responsive table, 
	 .manual-responsive thead, 
	 .manual-responsive tbody, 
	.manual-responsive th, 
	 .manual-responsive td, 
	 .manual-responsive tr { 
		display: block; 
	}
 
	/* Hide table headers (but not display: none;, for accessibility) */
	 .manual-responsive tr > th { 
		/*position: absolute;
		top: -9999px;
		left: -9999px;*/
        display:none;
	}
	.manual-responsive tr {     border: 1px solid #dddddd;
    margin-bottom: 10px;
    border-radius: 4px;
    box-shadow: #dddddd 0px 0px 5px 0px; }
 .manual-responsive > tbody > tr:nth-child(1){
     display:none;
 }
	.manual-responsive td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding-left: 50%; 
		white-space: normal;
		text-align:right;
	}
 
	.manual-responsive td:before { 
		/* Now like a table header */
		/*position: absolute;*/
            /*float: right;*/
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
		text-align:right;
		font-weight: bold;
	}
 
	/*
	Label the data
	*/
	.manual-responsive td:before { content: attr(data-title);     color: #428bca;}
    #main-body > div > table > tbody > tr:nth-child(1) {
            border: 0;
    }
    

    .manual-responsive td:nth-child(1):before{
    	content:none;
    }
    .manual-responsive td:nth-child(1){
    	text-align:center;
    	background-color:#e7e7e7 !important;
    	border:none;
			color: #008;
			font-weight: bold;
    }
    .manual-responsive td:nth-child(1) a{
    	color:#008;
    	font-weight:bold;
    }
    .manual-responsive tr{
    	box-shadow:none;
    	border:7px solid #e7e7e7;    	
    }
    .manual-responsive td{
    	background-color: #f6f6f6 !important;  
    	border:none; 	
    	color:#666;    	
    }
    .manual-responsive td div{
    	display:inline-block
    }



 .btns{
         position: unset !important;
 }

}