.table-block{
  overflow-x: none;
}

@media (max-width:991px){
  .table-block{
    overflow-x: scroll;
  }
}

.table-block::-webkit-scrollbar { width: 0 !important }
.table-block { overflow: -moz-scrollbars-none; }
.table-block { -ms-overflow-style: none; }

.table-block table{
  width: 100%;
  table-layout:fixed;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #dddddd;
}

.table-block table.head{
  margin-bottom: 0.5em;
}

.table-block table thead tr{
  background-color: var(--secondarycolor);
  /* font-family: 'Play', sans-serif; */
}

.table-block table thead tr th{
  padding: 0.2em .5em;
  color: #47494A;
  font-weight: 700;
  font-size: 0.8em;
  text-transform: uppercase;
  text-align: center;
}

.table-block table tbody{
  background: #eff0f0;
}

.table-block table tbody tr td{
  padding: 0.5em;
  border: 1px solid #dddddd;
  font-size: 0.8em;
}

.table-block table tbody tr:nth-child(odd){
    background: #ffffff;
}

.table-block table tbody tr:first-child td{
  margin-top: 0.5em;
  border-top: 1px solid transparent;

}

.table-block table tbody tr td:first-child{
  border-left: 1px solid transparent;
}

.table-block table tbody tr td:last-child{
  border-right: 1px solid transparent;
}

.table-block table.left_header tbody tr td:first-child{
  font-weight: 700;
  background: #fff0c7;
  color: #47494A;
  min-width: 160px;
  font-size: 0.85rem;
}

.table-block table tbody tr:last-child{
  font-weight: unset;
}

.table-block table tr td a.btn{
  margin-top: 0;
}
@media screen and (max-width: 650px){
  .table-block table.left_header tbody tr td:first-child, .table-block table tbody tr td, .table-block table thead tr th{
    font-size: 0.7em;
  }
}