/* src/styles.scss */
table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0.25rem 0;
}
table thead tr th {
  position: relative;
  border: #f3f3f3 0.0625rem solid;
  border-bottom: #dee1e5 0.0625rem solid;
  background-color: #f6f6f6;
  font-size: 0.6875rem;
  text-transform: uppercase;
  line-height: 0.9375rem;
  padding: 0.625rem;
  text-align: left;
  font-weight: 400;
}
table thead tr th.number {
  text-align: right;
}
table thead tr th.sortable {
  padding: 0.625rem 2.125rem 0.625rem 0.625rem;
  cursor: pointer;
}
table thead tr th.sortable:hover {
  border: #dee1e5 0.0625rem solid;
  border-bottom: #dee1e5 0.0625rem solid;
  background-color: #dee1e5;
}
table thead tr th.sortable.sorted {
  border-bottom: #727e91 0.0625rem solid;
}
table thead tr th.sortable.sorted:hover {
  border-bottom: #727e91 0.0625rem solid;
}
table thead tr th.sortable.sorted::after {
  content: "";
  display: block;
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: calc(50% - 0.5rem);
  right: 0.625rem;
  background: url(/assets/icons/common/sort-arrow.svg) right center no-repeat content-box;
  background-size: 1rem;
}
table thead tr th.sortable.sorted.descending::after {
  transform: rotate(180deg);
}
table tbody tr {
  box-shadow: 0 0.125rem 0 -0.0625rem rgba(0, 0, 0, 0.2);
}
table tbody tr.clickable {
  cursor: pointer;
}
table tbody tr td {
  border: none;
  background-color: transparent;
  font-size: 0.8125rem;
  line-height: 1.125rem;
  padding: 1rem 0.5rem;
  text-align: left;
  font-weight: 400;
}
table tbody tr td.number {
  text-align: right;
}
@media (max-width: 768px) {
  table {
    border-spacing: 0.125rem 0;
  }
  table thead tr th {
    padding: 0.375rem;
    font-size: 0.625rem;
  }
  table thead tr th.sortable {
    padding: 0.375rem 1.5rem 0.375rem 0.375rem;
  }
  table tbody tr td {
    padding: 0.25rem 0.375rem;
    font-size: 0.75rem;
  }
}
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}
html {
  font-size: 100%;
}
body {
  --theme-colour: #2563eb;
  --font-family: Lato;
  --font-colour: #2c3e5a;
  color: var(--font-colour);
  background-color: white;
  font-family:
    var(--font-family),
    Lato,
    sans-serif;
}
*,
*::before,
*::after {
  font-family: inherit;
}
body,
input,
textarea,
select,
button,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
div,
a,
table,
th,
td,
label,
li,
ul,
ol {
  font-family:
    var(--font-family),
    Lato,
    sans-serif;
}
a {
  color: var(--font-colour);
}
a:focus {
  outline: 0.0625rem dotted;
}
button {
  color: var(--font-colour);
  border: none;
  cursor: pointer;
  font-family:
    var(--font-family),
    Lato,
    sans-serif;
}
button:focus {
  outline: 0.0625rem dotted;
}
.btn-primary {
  background: var(--theme-colour, #2563eb) !important;
  color: white !important;
  border-color: var(--theme-colour, #2563eb) !important;
  transition: opacity 0.2s ease;
}
.btn-primary:hover:not(:disabled) {
  opacity: 0.9 !important;
}
.btn-primary:disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
}
.mat-typography,
.mat-button,
.mat-raised-button,
.mat-flat-button,
.mat-form-field,
.mat-input-element,
.nz-button,
.nz-input,
.nz-select,
app-root,
app-root * {
  font-family:
    var(--font-family),
    Lato,
    sans-serif !important;
}
p,
span,
div,
h1,
h2,
h3,
h4,
h5,
h6,
label,
td,
th,
li,
.text,
.label,
.title,
.description,
.help-text,
.hint {
  color: inherit !important;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
