/* Table for COVID-19 */
table {
    border-spacing: 1;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    position: relative;
  }
  table * {
    position: relative;
  }
  table td, table th {
    padding-left: 8px;
  }
  table thead tr {
    height: 60px;
    background:rgba(60, 60, 60, 0.9);
  }
  table tbody tr {
    height: 50px;
  }
  table tbody tr:last-child {
    border: 0;
  }
  table td, table th {
    text-align: left;
  }
  table td.l, table th.l {
    text-align: right;
  }
  table td.c, table th.c {
    text-align: center;
  }
  table td.r, table th.r {
    text-align: center;
  }
  
  
  .table100-head th{
    font-family: OpenSans-Regular;
    font-size: 17px;
    color: #fff;
    line-height: 1.2;
    font-weight: unset;
  }
  
  tbody tr:nth-child(even) {
    background-color: #f5f5f5;
  }
  
  tbody tr {
    font-family: OpenSans-Regular;
    font-size: 15px;
    color: #808080;
    line-height: 1.2;
    font-weight: unset;
  }
  
  tbody tr:hover {
    color: #555555;
    background-color: #f5f5f5;
    cursor: pointer;
  }
  
  .column1 {
    width: 25%;
    padding-left: 0px;
    text-align: center;
    border-right: 1px solid grey;
  }
  
  .column2 {
    width: 25%;
    border-right: 1px solid grey;
    text-align: center;
  }
  
  .column3 {
    width: 25%;
    /* padding-right: 20px; */
    text-align: center;
  }
  
  .wrap-table100 {
    width: 500px;
    margin-top: 2cm;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  
  @media (max-width: 550px) {
    .wrap-table100 {
      width:100%;
    }
  }