.table__content
{
  overflow: scroll;
}

.order-table
{
  width: 100%;
  margin-bottom: 1rem;

  vertical-align: middle;
}

.table tbody
{
  color: rgb(51,51,51);
}

.table__row:nth-child(n)
{
  background: rgba(0, 0, 0, .01);;
}

.table__row:nth-child(2n)
{
  background: rgba(0, 0, 0, .03);
}

.table th
{
  font-size: 16px;
  font-weight: 800;
  border: 0;
}

.table td {
  border: 0;
}

.table__number-link
{
  display: flex;
  align-items: center;

  width: 100%;
  height: 100%;
}
.table__number-link:focus,
.table__number-link:hover
{
  text-decoration: underline;

  color: #001d4c;
}

/* MediaQueries */
@media (min-width: 768px)
{
  .table__content
  {
    overflow: unset;
  }
}
/* EndMediaQueries */
