.Table {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.Table-grid {
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.Table-pagination {
  display: flex;
  justify-content: center;
  background: var(--white);
  padding: var(--spacing-20) 0;
  border-top: var(--border);
}

.Table-Header--Divider {
  height: var(--spacing-60);
}

.Table-Header-Label--hide {
  animation: fadeOut var(--duration--fast-02) var(--exit-productive-curve);
  animation-fill-mode: forwards;
}

.Table-Header-Label--show {
  animation: fadeIn var(--duration--moderate-01) var(--entrance-productive-curve);
  animation-fill-mode: forwards;
}
