/* ============================================== */
/* RESET */
/* ============================================== */

@charset 'UTF-8';
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}


fieldset, a > img{border:none;}

html,footer {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

body{
  overflow-y: scroll;
  font-family: 'helvetica', sans-serif;
  font-size: 0.80em;
  color:black;
  height: 100%;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  border:none;
  vertical-align: top;
  max-width:100%;
  margin:0 auto;
  display:block;
}

a{
  text-decoration: none;
  color:gray;
}

b{
  font-weight: bold;
  color:black;
}

input,
textarea,
button{
  outline: none;
  display: block;
  overflow: hidden;
  float: left;
  border:none;
}

textarea{
  font-size: 1em;
}


p,label,input{
  cursor: default;
}

form,
input,
label{
  width: 100%;
  display: block;
  float: left;
  font-size: 1em;
}
label{
  font-weight: bold;
  color:black;
  margin-bottom:5px;
}
h1{font-size: 3em;}
h2{font-size: 1.5em;}

h1,h2{
  font-weight: lighter;
  margin-bottom: 10px;
}


/* ============================================== */
/* TABLE */
/* ============================================== */


table{
    border: 0;
    width: 100%;
    margin:0;
    padding:0;
    border-collapse: collapse;
    border-spacing: 0;
}

table tr{
    padding: 5px;
    text-align: left;
}

table thead tr th{
  overflow: hidden;
  color:white;
  font-size: 0.75em;
  letter-spacing: 1px;
}

table th,
table td {
    padding: 8px 20px;
    vertical-align:middle;
    overflow: hidden;
    line-height: 1.5em;
}
table td {
  text-align: left;
}

table td.mensaje {
  line-height: 1.5em;
}

table td.borrar i:before{
  margin: 0;
  padding:5px 0;
}

table th {
    text-transform: uppercase;
    letter-spacing: 0px;
    color:#303741;
    text-align: left;
}

table tbody td img.table{
  max-width:100px;
  margin:0 auto;
  display:block;
  float: none;
}

table span{
  display: block;
  color:#666666;
}

table td.titulo {
    line-height: 1.5em;
}

@media screen and (max-width: 768px) {

    table thead {
        display: none;
    }

    table tr {
        display: block;
        border-bottom: 2px solid #dddddd;
        padding:0;
        margin-bottom:10px;
    }

     table th, table td {
      border: 1px solid #dddddd;
    }

    table td{
        display: block;
        text-align: right;
        vertical-align:middle;
        border-bottom: 0;
        overflow: hidden;
    }


    table span{
      float:left;
      margin:0;
    }

    table td:last-child {
        border-bottom: 1px solid #ccc;
    }

    table td.titulo {
        text-align: center;
    }

    table td.mensaje {
      text-align: left;
    }

    table td:before {
        content: attr(data-label);
        float: left;
        text-transform: uppercase;
        font-weight: bold;
    }

    table th,
    table td {
        padding: 10px;
    }
}

/* ============================================== */
/* FOOTER */
/* ============================================== */

footer{
  display: block;
  width: auto;
  margin-left:300px;
  padding: 10px 20px 30px 20px;
  float: left;
}

footer p{
  width: 100%;
  display: block;
  text-align: center;
}

@media screen and (max-width: 1270px){

  footer{
    margin:0 auto;
    width: 100%;
    position: relative;
    text-align: center;
    display: block;
    float: left;
  }

}

