.table-block{overflow-x: none;}
.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 var(--midgray);
}
.table-block table.head{
  margin-bottom: 0.5em;
}
.table-block table tbody{
  background: var(--white);
}
.table-block table thead tr th{
  padding: 10px 15px;
  color: var(--primarycolor)!important;
  font-weight: 700;
  background-color: var(--barelyoffwhite);
  border: 1px solid var(--midgray);
}
.table-block table thead tr{
  background-color: var(--barelyoffwhite);
}
.table-block table tr:nth-child(2n+1) {
  background-color: var(--white);
}
.table-block table tbody tr td{
  padding: 10px 15px;
  border: 1px solid var(--midgray);
  background-color: var(--white)!important;
}
.table-block table tbody tr:first-child td{
  margin-top: 0.5em;
}
.table-block table.left_header tbody tr td:first-child{
  font-weight: 700;
  min-width: 120px;
}
.table-block table tr td a.btn{
  margin-top: 0;
}

@media (max-width:991px){
  .table-block{
    overflow-x: scroll;
  }
}
@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;
  }
}