.table {
  display: table;
  width: 100%;
  margin-top: 15px;
  border-collapse: collapse;
}
.table .table-heading {
  display: table-header-group;
  font-weight: bold;
  height: 45px;
}
.table .table-heading.red {
  background-color: #EF3101;
}
.table .table-heading.gray {
  background-color: #f5f5f5;
}
.table .table-heading .table-head {
  display: table-cell;
  padding: 3px 10px;
  vertical-align: middle;
}
.table .table-heading .table-head.white {
  color: #ffffff;
}
.table .table-heading .table-head.black {
  color: #454d52;
}
.table .table-body {
  display: table-row-group;
}
.table .table-body .table-row {
  display: table-row;
}
.table .table-body .table-row .table-cell {
  display: table-cell;
  vertical-align: middle;
  padding: 15px 10px;
}
.countries {
  margin: 20px auto;
  max-width: 210px;
}
.reports {
  width: 80%;
  margin: 0 auto;
  background-color: #f5f5f5;
}
.report {
  padding: 15px;
}
.report a {
  color: #d52b1e;
  text-decoration: none;
}
.report a:hover {
  text-decoration: underline;
}
.reports-text {
  font-weight: bold;
  color: #454d52;
  font-size: 13px;
  padding: 15px;
}
