.p-table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}
.p-table thead th {
  background: var(--color-text-black);
  color: var(--color-white);
  font-weight: normal;
}
.p-table thead th:not(:first-child) {
  border-left: 1px solid var(--color-white);
}
@media only screen and (max-width: 980px) {
  .p-table thead th {
    font-size: 0.625rem;
    height: 20px;
  }
}
@media print, screen and (min-width: 981px) {
  .p-table thead th {
    font-size: 0.75rem;
    height: 24px;
  }
}
.p-table tbody th, .p-table tbody td {
  border-bottom: 1px solid var(--color-bg_B);
  color: var(--color-text-black);
  font-weight: 400;
}
@media only screen and (max-width: 980px) {
  .p-table tbody th, .p-table tbody td {
    font-size: 0.625rem;
    height: 20px;
  }
}
@media print, screen and (min-width: 981px) {
  .p-table tbody th, .p-table tbody td {
    font-size: 0.75rem;
    height: 24px;
  }
}
.p-table tbody th:not(:first-child), .p-table tbody td:not(:first-child) {
  border-left: 1px solid var(--color-bg_B);
}
.p-table tbody td {
  text-align: right;
}
@media only screen and (max-width: 980px) {
  .p-table tbody td {
    padding-right: 4px;
  }
}
@media print, screen and (min-width: 981px) {
  .p-table tbody td {
    padding-right: 8px;
  }
}