/**
 * @file
 * Styles for Bootstrap Barrio's tables.
 */

table {
  border: 0;
  border-spacing: 0;
  margin: 10px 0;
  width: 100%;

}
table table {
  font-size: 1em;
}
tr {
  border-bottom: 1px solid #ccc;
  padding: 0.1em 0.6em;
  background: #ffffff;

}
thead > tr {
  border-bottom: 1px solid #000;
}
tr.odd {
  background: #ffffff;

}
table tr th {
  background: #ffffff;
  color: #6f6f6f;
  font-weight: 400;
}
table tr th,
table tr th a,
table tr th a:hover,
table tr th a:focus {
    color: #000;
    text-transform: uppercase;
    font-weight: 600;
}
table tbody tr th {
  vertical-align: top;
}
tr td,
tr th {
  padding: 4px 9px;
  text-align: left; /* LTR */
}
tr th {

}

tr td, tr td a {
    /*font-size: 1.4286em;*/

}


[dir="rtl"] tr td,
[dir="rtl"] tr th {
  text-align: right;
}

/**
 * Responsive tables.
 */
@media screen and (max-width: 37.5em) { /* 600px */
  th.priority-low,
  td.priority-low,
  th.priority-medium,
  td.priority-medium {
    display: none;
  }
}
@media screen and (max-width: 60em) { /* 920px */
  th.priority-low,
  td.priority-low {
    display: none;
  }
}
