/*** Table Styles **/

.table-fill {
  font-family:'IBMPlexSans-Condensed-Medium', Arial, Helvetica, sans-serif; 
  background-color: rgba(243,243,243, 0.6);
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  border-collapse: collapse;
  height: 30px;
  margin: auto;
  margin-top:20px;
  padding:2px;
  width: 100%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.1);
  transition: 0.3s;
  border-bottom: 2px solid #777;
}
 
th {
  font-family:'IBMPlexSans-Bold', Arial, Helvetica, sans-serif; 
  color:#4d5158;
  border-bottom:1px solid #777;
  border-right: 1px solid #777;
  font-size:16px;
  font-weight: 100;
  padding-top:10px;
  padding-bottom:7px;
  text-align:left;
  vertical-align:middle;
}

th:first-child {
  border-top-left-radius:5px;
}
 
th:last-child {
  border-top-right-radius:5px;
  border-right:none;
}
  
tr {
  border-top: 1px solid #777;
  border-bottom-: 1px solid #C1C3D1;
  color:#000000;
  font-size:14px;
  font-weight:normal;
}
 
tr:hover td {
  background:#B6B6B6;
  color:#FFFFFF;
  border-top: 1px solid #22262e;
  border-bottom: 1px solid #22262e;
}

a:hover td {
  color:#FFFFFF;
}
 
tr:first-child {
  border-top:none;
}

tr:last-child {
  border-bottom:none;
}
 
tr:nth-child(odd) td {
  background:#e7e7e7;
}
 
tr:nth-child(odd):hover td {
  background:#B6B6B6;
}

tr:last-child td:first-child {
  border-bottom-left-radius:3px;
}
 
tr:last-child td:last-child {
  border-bottom-right-radius:3px;
}
 
td {
  font-family: 'Verbatim-Medium', Arial, Helvetica, sans-serif;
  background:#F3F3F3;
  padding:10px;
  text-align: left;
  vertical-align:middle;
  font-weight:normal;
  font-size:13px;
  border-right: 1px solid #777;
}

td:last-child {
  border-right: 0px;
}

th.text-left {
  text-align: left;
}

th.text-center {
  text-align: center;
}

th.text-right {
  text-align: right;
}

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

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

td.text-right {
  text-align: right;
}

.smallfont {
  font-size: 80%;
  color: #000000;
  opacity: 0.6;
}

