.table__scroller {
  overflow: auto;
}
.table__bordered {
  border: 1px solid #c0ccda;
}
.table__bordered .row_data:last-child .cell {
  border: none;
}
.table {
  border-spacing: 0;
  white-space: nowrap;
  width: 100%;
  border-collapse: separate;
}
.table.header-sticky .row_header:nth-child(1) th {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: white;
}
.table.header-sticky .row_header:nth-child(1) th:first-child {
  z-index: 2;
}
.table.column-sticky .row_header:nth-child(1) th:first-child {
  width: 100px;
  min-width: 100px;
  left: 0px;
  border-right: 1px solid #c0ccda;
}
.table.column-sticky .row_data td:nth-child(1) {
  position: -webkit-sticky;
  position: sticky;
  background-color: white;
  width: 100px;
  min-width: 100px;
  left: 0px;
  border-right: 1px solid #c0ccda;
}
.table.column-sticky .row_data:hover .cell {
  background: #f9fafc;
}
.row_header {
  color: #687484;
  text-align: left;
  vertical-align: bottom;
}
.row_header .cell {
  padding: 11px 1rem;
}
.row_header:first-child label {
  margin-right: 1.5rem;
}
.row_listing-header .cell {
  border-bottom: 1px solid #eff2f7;
}
.row_selection {
  display: flex;
  padding: 11px 1rem;
  border-bottom: 1px solid #c0ccda;
  position: sticky;
  left: 0;
}
.row_data {
  vertical-align: top;
}
.row_data:hover .cell {
  background: #f9fafc;
}
.row_data .cell {
  padding: 11px 1rem;
}
.row_data:first-child label {
  margin-right: 1.5rem;
}
.row_listing-data:hover .row__link {
  color: #0092ff;
}
.row_listing-data .cell {
  padding: 1rem;
  border-bottom: 1px solid #eff2f7;
}
.column__sorter {
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: inline;
  font: inherit;
  padding: 0 1rem 0 0;
  position: relative;
}
.column__sorter:hover {
  text-decoration: underline;
}
.column__sorter:focus {
  outline: 0;
}
.column__sorter::after,
.column__sorter::before {
  border: 0.25rem solid transparent;
  content: '';
  position: absolute;
  right: 0;
}
.column__sorter__disable {
  cursor: not-allowed !important;
}
.column__sorter__disable:hover {
  text-decoration: none !important;
}
.column__sorter__disable:focus {
  text-decoration: none !important;
}
.column__sorter::after {
  border-bottom: 0;
  bottom: 25%;
}
.column__sorter::before {
  border-top: 0;
  top: 25%;
}
.cell {
  border-bottom: 1px solid #c0ccda;
  font-weight: 400;
  text-align: inherit;
  width: 1px;
}
.cell[aria-sort='none'] .column__sorter::after {
  border-top-color: #c0ccda;
}
.cell[aria-sort='none'] .column__sorter::before {
  border-bottom-color: #c0ccda;
}
.cell[aria-sort='none'] .column__sorter:hover::before {
  border-bottom-color: currentColor;
}
.cell[aria-sort='disable'] .column__sorter::after {
  border-top-color: #c0ccda;
}
.cell[aria-sort='disable'] .column__sorter::before {
  border-bottom-color: #c0ccda;
}
.cell[aria-sort='disable'] .column__sorter:hover::after {
  border-top-color: currentColor;
}
.cell[aria-sort='disable'] .column__sorter:hover::before {
  border-bottom-color: currentColor;
}
.cell[aria-sort='ascending'] .column__sorter::after {
  border-top-color: #c0ccda;
}
.cell[aria-sort='ascending'] .column__sorter::before {
  border-bottom-color: currentColor;
}
.cell[aria-sort='ascending'] .column__sorter:hover::after {
  border-top-color: currentColor;
}
.cell[aria-sort='ascending'] .column__sorter:hover::before {
  border-bottom-color: #c0ccda;
}
.cell[aria-sort='descending'] .column__sorter::after {
  border-top-color: currentColor;
}
.cell[aria-sort='descending'] .column__sorter::before {
  border-bottom-color: #c0ccda;
}
.cell[aria-sort='descending'] .column__sorter:hover::after {
  border-top-color: #c0ccda;
}
.cell[aria-sort='descending'] .column__sorter:hover::before {
  border-bottom-color: currentColor;
}
.cell__supplementary {
  color: #687484;
  font-size: 0.87055056rem;
  line-height: 1.5rem;
}
.cell__supplementary.clickable__group,
.cell__supplementary .clickable__group {
  display: flex;
}
.column_primary {
  white-space: normal;
  width: auto;
  max-width: 320px;
}
.column_primary-link-wrapper {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.column_secondary {
  color: #687484;
}
.row_header .column_iconbox {
  text-align: center;
}
.row_data .column_iconbox,
.column_iconbox.row_listing-data {
  position: relative;
  vertical-align: middle;
}
.row_data .column_iconbox .checkbox,
.column_iconbox.row_listing-data .checkbox {
  display: none;
  left: 50%;
  margin: -0.5em 0 0 -0.5em;
  position: absolute;
  top: 50%;
}
.row_data .column_iconbox :checked + .checkbox,
.column_iconbox.row_listing-data :checked + .checkbox,
.row_data .column_iconbox :focus + .checkbox,
.column_iconbox.row_listing-data :focus + .checkbox {
  display: block;
}
.row_data .column_iconbox :checked ~ .iconbox__icon,
.column_iconbox.row_listing-data :checked ~ .iconbox__icon,
.row_data .column_iconbox :focus ~ .iconbox__icon,
.column_iconbox.row_listing-data :focus ~ .iconbox__icon {
  visibility: hidden;
}
.row_data .column_iconbox:hover .checkbox,
.column_iconbox.row_listing-data:hover .checkbox {
  display: block;
}
.row_data .column_iconbox:hover .iconbox__icon,
.column_iconbox.row_listing-data:hover .iconbox__icon {
  visibility: hidden;
}
.column_right {
  text-align: right;
}
.column_left {
  text-align: left;
}
.column_center {
  text-align: center;
}
.column_truncate {
  width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.row__link {
  color: #1f2d3d;
  font-weight: 700;
  text-decoration: none;
}
.row__link:hover,
.row__link:focus {
  text-decoration: underline;
}
.row__link:focus {
  color: #0092ff;
  outline: 0;
}
.iconbox__icon {
  border-radius: 1.25rem;
  display: block;
  height: 2.5rem;
  width: 2.5rem;
}

