.table-freeze {
  height: 80vh;
  margin: 2rem 0;
  overflow: auto;
  scroll-snap-type: both mandatory;
  white-space: nowrap;
}
.table-freeze table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  font-size: 12px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.table-freeze th, .table-freeze td {
  padding: 0.5rem 1rem;
  text-align: right;
}
.table-freeze thead th {
  border-bottom: 1px solid #ccc;
  font-weight: 600;
  top: 0;
  z-index: 1;
}
.table-freeze tfoot th {
  border-top: 1px solid #ccc;
  font-weight: 600;
  bottom: 0;
  z-index: 1;
}
.table-freeze th.tp {
  z-index: 2;
  left: 0;
}
.table-freeze tbody th {
  left: 0;
  text-align: left;
}
.table-freeze tbody th, .table-freeze th.tp {
  border-right: 1px solid #ccc;
}
.table-freeze tr {
  padding: 0;
}
.table-freeze td {
  color: #555;
  vertical-align: top;
}
.table-freeze tbody tr:nth-child(odd) th {
  background-color: #fff;
}
.table-freeze thead th {
  background-color: #003da7;
  color: white;
  text-align: center;
}
.table-freeze tfoot th {
  background-color: #003da7;
  color: white;
  text-align: center;
}
.table-freeze tbody tr:nth-child(even) th, .table-freeze tr:nth-child(even) td {
  background-color: #f4f4f4; /* striped background color */
}
.table-freeze thead th, .table-freeze tbody th, .table-freeze tfoot th {
  position: sticky;
  -webkit-position: sticky;
}

@media screen and (max-width: 680px) {
  .table-freeze {
    height: 70vh;
  }
}
@media screen and (max-width: 480px) {
  .table-freeze {
    height: 60vh;
  }
}/*# sourceMappingURL=style.css.map */