/*Tabla general*/
#table1 
{
  display: table;
  width: 100%;
  height: 300px;
  border-collapse: collapse;
  margin-top:10px;
}
/*fila*/
.row 
{
  display: table-row;
  height: 100px;
}
/*celda*/
.cell 
{
  display: table-cell;
  border: 1px solid black;
  padding: 10px;
  vertical-align: middle;
  text-align: center;
}
/*Encabezado*/
.header 
{
  border: solid #2d3142;
  font-family: 'Marvel', sans-serif;
  font-size: 15px;
  font-weight: bold;
  border-radius: 15px;
  background-color: #ef8354;
  text-align: center;
}
/*celda1*/
.cell:nth-child(1) 
{
  width: 25%;
  font-size: 20px;
}
/*celda2*/
.cell:nth-child(2) 
{
  width: 50%;
  font-size: 20px;
}
/*celda3*/
.cell:nth-child(3) 
{
  width: 25%;
  font-size: 20px;
}
/*celda3 imagen*/
.cell:nth-child(3) img 
{
  max-width: 100%;
  height: 200px;
  display: block;
  margin: auto;
}

/*Configuración responsive*/
@media screen and (max-width: 768px) 
{
  #table1 {
    display: block;
    height: auto;
  }

  .row {
    display: block;
    margin-bottom: 10px;
    height: auto;
  }

  .cell {
    display: block;
    width: 100%;
    border: none;
    padding: 30px 0;
    text-align: center;
  }

  .cell:nth-child(1) {
    width: 100%;
    font-size: 20px;
    border-bottom: 1px solid black;
    margin-top: -11px;
    margin-right: 10px;
    margin-bottom: -13px;
    margin-left: 0px;
  }
  .cell:nth-child(2) {
    width: 100%;
    font-size: 20px;
    border-bottom: 1px solid black;
    margin-top: -11px;
    margin-right: 10px;
    margin-bottom: -13px;
    margin-left: 0px;
  }

  .cell:nth-child(3) img {
    max-width: 100%;
    height: 300px;
    display: block;
    margin: auto;
  }

  .cell:nth-child(3) {
    display: block;
    width:100% ;
    border-bottom: 1px solid black;
    margin-top: -11px;
    margin-right: 10px;
    margin-bottom: -13px;
    margin-left: 0px;
  }
  /*Contenido estetico celdas*/
  .cell:before {
    content: attr(data-label);
    font-weight: bold;
    display: block;
    text-align: left;
  }

  header
  {
    display: none;
  }
}