/************************************************************************************
TABLAS
*************************************************************************************/
table {
    border: 1px solid #ccc;
    width: 100%;
    margin:0;
    padding:0;
    border-collapse: collapse;
    border-spacing: 0;
  }

  table tr {
    border: 1px solid #ddd;
    padding: 5px;
  }

  table th, table td {
  	border-right: 1px solid #ccc;
    padding: 15px;
    font-size: 93%;
    line-height:1.4em;
    text-align: left;
    background:#fff;
    position:relative;
  }

  table th {
	background-color: #F5F5F5;
	border-right: 1px solid #ccc;
	font-size: 100%;
	color:#7a7a7a;
    font-weight:600;
  }
	
  
@media screen and (max-width: 600px) {
	
    table {
      border: 0;
    }

    table thead {
      display: none;
    }

    table tr {
      margin-bottom: 10px;
      display: block;
      border-bottom: 2px solid #ddd;
    }

    table td {
      display: block;
      text-align: center;
      font-size: 90%;
      border-right: none;
      border-bottom: 1px dotted #ccc;
    }
    
     table th {
    clear:both; 
  	}

    table td:last-child {
      border-bottom: 0;
    }

    table td:before {
      content: attr(data-label);
      float: left; display:none;
      text-transform: uppercase;
      font-weight: bold;
    }
  }
@media screen and (max-width: 480px) {
	table td {
      display: block;
      float:none;
      text-align: center;
      font-size: 90%;
      border-right: none;
      border-bottom: 1px dotted #ccc;
    }
    
	table th {
    clear:both; 
  	}
  }