/*lo conseguir por ahi este es el autor: 
This technique was developed by Chris Coyier (@chriscoyier) and described in his post Responsive Data Tables at css-tricks.com

*/
@CHARSET "UTF-8";


/* 
Generic Styling, for Desktops/Laptops 
*/
table.no-more-tables { 
  width: 100%; 
  border-collapse: collapse; 
}

table.no-more-tables tr{ 
	padding-top: 5px;
	padding-bottom: 5px;	
}
thead.no-more-tables{
	border-radius: 6px;
	background: rgba(162, 165, 185, 0.3)!important; 
}

/* Zebra striping */
tr.no-more-tables:nth-of-type(odd) { 
  background: rgba(162, 165, 185, 0.0)!important; 
}



th.no-more-tables { 
  color: #283252; 
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  line-height: 13px;
  padding: 6px;
  height: 46px; 
}

th.no-more-tables { 
 text-align: center;
}

/*modificado por marielena porque a veces es nesario que la alinacion del texto no sea solo al centro*/
td.no-more-tables {
  text-align: center;
  color: #a2a5b9;
  border-top: 0px solid #dddddd;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  padding: 12px 5px;
}

td.no-more-tables a {
  text-align: center;
  color: #41b883;
  font-size: 14px;
  /*padding: 7px 7px 5px;
  border-radius: 50%;
  border: 1px solid #a2a5b9;*/
}

tr.no-more-tables:nth-of-type(odd) {
    background-color: #ffffff;
}


.fix-col-table {
	width: 285px!important;
}

@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; 
	}

	.fix-col-table {
	width: 100%!important; 
	padding-left: 10px!important;
	}

 
	/* Hide table headers (but not display: none;, for accessibility) */
	.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-left: 50%; */
		padding-left: 15px;
		padding-right: 5px;
		white-space: normal;
		text-align:left!important;
		font-size: 12px;		
		min-height: 50px;
	}
 	
 	td.no-more-tables {
 	  padding: 6px 5px;
 	}

	.no-more-tables td:before { 
		/* Now like a table header */
		position: relative;
		display: block;
		/* Top/left values mimic padding */
		top: 5px;
		left:0px;
		/*width: 45%; */
		width: 100%;
		padding-right: 10px;
		white-space: nowrap;
		text-align:left!important;
		font-weight: bold;
		font-size: 13px;
		line-height: 28px;
		/*border-right: 1px solid #cecece;*/
	}
 
 	td.no-more-tables a {
 	  padding: 4px 9px;
    margin: 0.5em 0;
    display: inline-block;
 	}

	/*
	Label the data
	*/
	.no-more-tables td:before { content: attr(data-title); }
}

/*INICIO TABLA ESPECIAL para listado de turnos agregado por marielena porque le necesito sacar  "Zebra striping" */
table.no-more-tablesT { 
  width: 100%; 
  border-collapse: collapse; 
}

th.no-more-tablesT { 
  background: #ffffff; 
  color: #22282E; 
  font-weight: bold;
  font-size: 14px;
  padding: 6px;
  border-bottom: 2px solid #cecece!important; 
}

th.no-more-tablesT { 
  border: 0px solid #ccc; 
 text-align: center;
}


td.no-more-tablesT { 
  border: 0px solid #ccc; 
 
  font-size: 16px;
  padding: 10px; 
}


@media only screen and (max-width: 800px) {
	
	/* Force table to not be like tables anymore */
	.no-more-tablesT table, 
	.no-more-tablesT thead, 
	.no-more-tablesT tbody, 
	.no-more-tablesT th, 
	.no-more-tablesT td, 
	.no-more-tablesT tr { 
		display: block; 
	}
 
	/* Hide table headers (but not display: none;, for accessibility) */
	.no-more-tablesT thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
 
 	tr.no-more-tables:nth-of-type(odd) {
    background: rgba(162, 165, 185, 0.1)!important; 
}

	.no-more-tablesT tr { border: 0px solid #ccc; }
 
	.no-more-tablesT td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding-left: 50%; 
		white-space: normal;
		text-align:center;
		font-size: 14px;
	}
 
	.no-more-tablesT td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 10px;
		left: 10px;
		width: 45%; 
		padding-right: 10px;
		white-space: nowrap;
		text-align:left;
		font-weight: bold;
		font-size: 13px;
		border-right: 1px solid #cecece;
	}
 
	/*
	Label the data
	*/
	.no-more-tablesT td:before { content: attr(data-title); }
}
/*FIN DE TABLA ESPECIAL*/



td.no-more-tables.tdInfoTecnica { 

    border-top: none!important;
}


tr.no-more-tables.tdInfoTecnica:nth-of-type(odd) {
    background-color: #fff!important;
}

td.no-more-tables.tdInfoTecnica .fa {
	color: #635e5b;
}