﻿/* Velocity data tables */
.vel-table-table.vel-table-table--fullWidth, .vel-table-table--fullWidth.dataTable {
  width: 100%;
}

.vel-table-table, .dataTable {
  box-sizing: border-box;
  font-weight: var(--vel-typography-text-200-font_weight);
  font-size: var(--vel-typography-text-200-font_size);
  line-height: var(--vel-typography-text-200-line_height);
  font-family: var(--vel-typography-text-200-font_family);
  letter-spacing: var(--vel-typography-text-200-letter_spacing);
  color: var(--vel-color-neutral-700);
  border-collapse: separate;
  border-spacing: 0px;
  width: auto;
}

.vel-table-table thead, .dataTable thead {
  position: relative;
  background: var(--vel-color-neutral-white);
  --vel-table-columns-row-border: 2px solid var(--vel-color-neutral-400);
}

.vel-table-table thead tr, .dataTable thead tr {
  position: relative;
  background: transparent;
}

.vel-table-table thead tr th:focus, .dataTable thead tr th:focus,
.vel-table-table thead tr th:focus-visible,
.dataTable thead tr th:focus-visible,
.vel-table-table thead tr th:focus-within,
.dataTable thead tr th:focus-within {
  box-shadow: 0 0 0 2px var(--vel-color-misc-focused) inset;
}

.vel-table-table thead tr, .dataTable thead tr {
  border-bottom: var(--vel-table-columns-row-border);
}

.vel-table-table tbody tr th, .dataTable tbody tr th,
.vel-table-table thead tr th,
.dataTable thead tr th {
  position: relative;
  margin: 0px;
  padding: 0px;
  border: 0px;
  text-align: start;
  background: transparent;
  align-items: center;
  justify-content: flex-start;
  height: 56px;
  font-weight: var(--vel-typography-text-200-bold-font_weight, var(--vel-typography-text-200-font_weight));
  font-size: var(--vel-typography-text-200-bold-font_size, var(--vel-typography-text-200-font_size));
  line-height: var(--vel-typography-text-200-bold-line_height, var(--vel-typography-text-200-line_height));
  font-family: var(--vel-typography-text-200-bold-font_family, var(--vel-typography-text-200-font_family));
  letter-spacing: var(--vel-typography-text-200-bold-letter_spacing, var(--vel-typography-text-200-letter_spacing));
  overflow-wrap: break-word;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  gap: var(--vel-fixed-spacing-04);
  padding: var(--vel-fixed-spacing-02) var(--vel-fixed-spacing-04);
  color: var(--vel-color-secondary-400);
  /*width: auto !important;*/
  outline: none;
  border-bottom: inherit;
}

.vel-table-table tbody tr th, .dataTable tbody tr th {
  text-align: left;
  height: initial;
}

.vel-table-table thead tr th.sorting_asc, .dataTable thead tr th.sorting_asc {
  cursor: pointer;
  position: relative;
  padding-right: 24px;
  background-image: url("../../../img/velocity/arrow_down.svg");
  background-position-y: center;
  background-position-x: calc(100% - 4px);
  background-repeat: no-repeat;
  background-size: 20px;
}

.vel-table-table thead tr th.sorting_desc, .dataTable thead tr th.sorting_desc {
  cursor: pointer;
  position: relative;
  padding-right: 24px;
  background-image: url("../../../img/velocity/arrow_up.svg");
  background-position-y: center;
  background-position-x: calc(100% - 4px);
  background-repeat: no-repeat;
  background-size: 20px;
}

.vel-table-table thead tr th.sorting, .dataTable thead tr th.sorting {
  cursor: pointer;
  position: relative;
  padding-right: 20px;
  /*width: 20px;
  height: 20px;
  background-image: url("../../../img/velocity/arrow_down.svg");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: 20px;*/
}

.vel-table-table tbody tr, .dataTable tbody tr {
  background: transparent;
}

.vel-table-table tbody tr.even, .dataTable tbody tr.even {
  background: var(--vel-color-neutral-100);
}

.vel-table-table tbody tr, .dataTable tbody tr {
  border-bottom-color: var(--vel-color-dividerColor);
}

.vel-table-table tbody tr th, .dataTable tbody tr th,
.vel-table-table tbody tr td,
.dataTable tbody tr td {
  vertical-align: middle;
  background: transparent;
  width: auto;
  margin: 0px;
  padding: var(--vel-fixed-spacing-03) var(--vel-fixed-spacing-04);
  border-width: 0px 0px 1px;
  border-top-style: initial;
  border-right-style: initial;
  border-left-style: initial;
  border-top-color: initial;
  border-right-color: initial;
  border-left-color: initial;
  border-image: initial;
  border-bottom-style: solid;
  border-bottom-color: inherit;
}

.vel-table-expand-down, table.dataTable tbody tr th.dt-child-table-expand,
table.dataTable tbody tr td.dt-child-table-expand {
  /*height: 100%;
  display: flex;
  flex-flow: row;
  -webkit-box-align: center;
  align-items: center;
  gap: var(--vel-fixed-spacing-02);
  cursor: pointer;
  margin-inline-start: calc(-1* var(--vel-fixed-spacing-03));
  background-image: url(../../../img/velocity/chevron_down.svg);
  background-repeat: no-repeat;
  border-radius: var(--vel-shape200-border_radius);
  position: relative;
  display: inline-flex;
  flex-flow: row;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  padding: var(--vel-fixed-spacing-03);
  color: var(--vel-color-neutral-700);
  transition: background 0.1s ease-out 0s, color 0.1s ease-out 0s;
  display: block;
  color: currentcolor;*/
  cursor: pointer;
  background-image: url(../../../img/velocity/chevron_down.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 24px;
  transition: background 0.1s ease-out 0s, color 0.1s ease-out 0s;
}

.vel-table-expand-down:last-child, table.dataTable tbody tr th.dt-child-table-expand:last-child,
table.dataTable tbody tr td.dt-child-table-expand:last-child {
  margin-inline-end: calc(-1 * var(--vel-fixed-spacing-03));
}

.vel-table-expand-up, table.dataTable tbody tr.dt-expanded th.dt-child-table-expand,
table.dataTable tbody tr.dt-expanded td.dt-child-table-expand {
  background-image: url(../../../img/velocity/chevron_up.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 24px;
  transition: background 0.1s ease-out 0s, color 0.1s ease-out 0s;
  cursor: pointer;
}

.vel-table-select-label {
  box-sizing: border-box;
  display: flow-root;
  color: var(--vel-color-form-text-default);
  width: fit-content;
  margin: 0px;
  padding: 0px;
  vertical-align: top;
  user-select: none;
  border-radius: var(--vel-shape200-border_radius);
}

/*
.vel-table-cell-markupContainer {
    max-width: 100%;
    display: flex;
    flex-flow: column;
    -webkit-box-pack: center;
    justify-content: center;
}*/
.vel-table-cell-mainContentContainer {
  width: min-content;
}

button.vel-table-button-option {
  /*border-radius: var(--vel-shape300-border_radius);
  position: relative;
  display: inline-flex;
  flex-flow: row;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  padding: var(--vel-fixed-spacing-03);
  min-width: 40px;
  height: 40px;
  color: var(--vel-color-neutral-700);
  transition: background 0.1s ease-out 0s, color 0.1s ease-out 0s;*/
  background-image: url(../../../img/velocity/option.svg);
  background-size: 24px;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
}

button.vel-table-button-option:hover {
  /*background-color: var(--vel-color-neutral-100);*/
}

/*.vel-table-button-option-container {
    box-sizing: border-box;
    overflow-wrap: anywhere;
    border: none;
    padding: 0px;
    margin: 0px;
    text-decoration: none;
    background: transparent;
    outline: none;
    appearance: none;
    user-select: none;
    vertical-align: middle;
    font: inherit;
    color: inherit;
    text-transform: none;
    overflow: visible;
    text-align: start;
    cursor: default;
}*/
.vel-table-button-option-container:not([disabled]) {
  cursor: pointer;
}

/*
.vel-table-button-option-svg {
    display: block;
    color: currentcolor;
    height: 24px;
    width: 24px;
}*/
.vel-table-dialog-container[x-placement^=bottom-] {
  -webkit-box-align: start;
  align-items: start;
  border-top: var(--vel-fixed-spacing-02) solid transparent;
}

.vel-table-dialog-container[x-placement^=top-] {
  -webkit-box-align: end;
  align-items: start;
  border-bottom: var(--vel-fixed-spacing-02) solid transparent;
}

/*.vel-table-dialog-container {
    z-index: var(--vel-zindex-dropdown);
    display: flex;
    position: sticky;
    min-width: 40px;
    max-width: 1087px;
    width: max-content;
    will-change: transform;
    top: 0px;
    left: 0px;
    transform: translate3d(-130px, 55px, 0px);
}*/
.vel-table-dialog {
  width: max-content;
  box-shadow: var(--vel-elevation300-box_shadow);
  border-radius: var(--vel-shape300-border_radius);
  box-sizing: content-box;
  background: var(--vel-color-neutral-white);
  flex-direction: column;
}

/*.vel-table-dialog-main {
    box-sizing: border-box;
    outline: none;
}

.vel-table-dialog-items {
    position: relative;
    outline: none;
    padding: var(--vel-fixed-spacing-03) 0;
    max-height: 50vh;
    overflow: auto;
}*/
/*.vel-table-dialog-item-main {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}*/
/*.vel-table-dialog-item-container {
    font-weight: var(--vel-typography-text-200-font_weight);
    font-size: var(--vel-typography-text-200-font_size);
    line-height: var(--vel-typography-text-200-line_height);
    font-family: var(--vel-typography-text-200-font_family);
    letter-spacing: var(--vel-typography-text-200-letter_spacing);
    overflow-wrap: anywhere;
    position: relative;
    padding: var(--vel-fixed-spacing-03) var(--vel-fixed-spacing-04);
    margin: 0px;
    background: transparent;
    outline: none;
    display: block;
    transition: background 0.1s ease-out 0s;
    color: var(--vel-color-form-text-default);
}*/
/*.vel-table-dialog-item-container:not([aria-disabled="true"]).highlighted {
    color: var(--vel-color-neutral-900);
}

.vel-table-dialog-item-container:not([aria-disabled="true"]) {
    cursor: pointer;
}*/
/*.vel-table-dialog-item-label-container {
    flex: 1 1 0%;
}*/
/*.vel-table-dialog-item-label-main {
    display: flex;
    -webkit-box-align: baseline;
    align-items: baseline;
    flex-flow: wrap;
    gap: 0 var(--vel-fixed-spacing-03);
}*/
.vel-table-dialog-item-label {
  font-weight: var(--vel-typography-text-200-font_weight);
  font-size: var(--vel-typography-text-200-font_size);
  line-height: var(--vel-typography-text-200-line_height);
  font-family: var(--vel-typography-text-200-font_family);
  letter-spacing: var(--vel-typography-text-200-letter_spacing);
  padding: var(--vel-fixed-spacing-03) var(--vel-fixed-spacing-04);
  background: transparent;
  outline: none;
  display: block;
  color: var(--vel-color-form-text-default);
  cursor: pointer;
  border-left: 2px solid transparent;
  transition: border-left-color 0.1s ease-out 0s;
}

.vel-table-dialog-item-label:not([disabled]) {
  cursor: pointer;
}

.vel-table-dialog-item-label:not([disabled]):hover {
  border-left-color: var(--vel-color-neutral-600);
}

.vel-table-dialog-item-label:not([disabled]) a:hover,
.vel-table-dialog-item-label a {
  text-decoration: none;
  background-color: transparent;
  font-weight: normal;
  color: var(--vel-color-form-text-default);
  display: block;
}

.hide {
  display: none;
}

table.dataTable {
  width: 100% !important;
}

table.dataTable.autoSize {
  width: auto !important;
}

table.dataTable.row-border tbody td {
  border-width: 0px 0px 1px;
  border-top-style: initial;
  border-right-style: initial;
  border-left-style: initial;
  border-top-color: initial;
  border-right-color: initial;
  border-left-color: initial;
  border-image: initial;
  border-bottom-style: solid;
  border-bottom-color: inherit;
}

table.dataTable.row-border td.bold {
  font-weight: bold;
}

.dataTables_wrapper {
  padding: 1rem 0;
}

.dataTables_wrapper .table-footer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-weight: var(--vel-typography-text-200-font_weight);
  font-size: var(--vel-typography-text-200-font_size);
  line-height: var(--vel-typography-text-200-line_height);
  font-family: var(--vel-typography-text-200-font_family);
  letter-spacing: var(--vel-typography-text-200-letter_spacing);
  color: var(--vel-color-text-default);
  margin-top: var(--vel-fixed-spacing-04);
  gap: var(--vel-fixed-spacing-04);
}

.dataTables_wrapper .table-header .dataTables_length > label,
.dataTables_wrapper .table-footer .dataTables_length > label {
  display: flex;
  flex-direction: row;
  gap: 4px;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  align-items: center;
}

.dataTables_wrapper .table-header .dataTables_length > label > select,
.dataTables_wrapper .table-footer .dataTables_length > label > select {
  width: auto;
}

.dataTables_wrapper .table-header .dataTables_length .dataTables_wrapper .table-footer .dataTables_length {
  display: flex;
  align-items: center;
}

.dataTables_wrapper .table-footer .dataTables_paginate > span {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.dataTables_wrapper .table-footer .dataTables_paginate {
  flex: 1 1 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.dataTables_wrapper .table-footer .dataTables_paginate > a,
.dataTables_wrapper .table-footer .dataTables_paginate > span {
  flex: 0 0 auto;
}

.dataTables_wrapper .table-footer .dataTables_paginate > a.paginate_button.previous,
.dataTables_wrapper .table-footer .dataTables_paginate > a.paginate_button.next {
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: center center;
}

.dataTables_wrapper .table-footer .dataTables_paginate > a.paginate_button.previous.disabled,
.dataTables_wrapper .table-footer .dataTables_paginate > a.paginate_button.next.disabled {
  visibility: hidden;
}

.dataTables_wrapper .table-footer .dataTables_paginate > a.paginate_button.previous {
  background-image: url(../../../img/velocity/chevron_left.svg);
}

.dataTables_wrapper .table-footer .dataTables_paginate > a.paginate_button.next {
  background-image: url(../../../img/velocity/chevron_right.svg);
}

.dataTables_wrapper .table-footer .dataTables_paginate > a.paginate_button.previous,
.dataTables_wrapper .table-footer .dataTables_paginate > a.paginate_button.next,
.dataTables_wrapper .table-footer .dataTables_paginate > span > a.paginate_button {
  border-radius: var(--vel-shape300-border_radius);
  outline: none;
  transition: color 0.1s ease-out 0s, background 0.1s ease-out 0s;
  color: var(--vel-color-form-text-default);
  text-align: center;
  height: 40px;
  width: 40px;
  align-content: center;
  text-decoration: none;
}

.dataTables_wrapper .table-footer .dataTables_paginate > span > a.paginate_button.current {
  background-color: var(--vel-color-secondary-400);
  color: var(--vel-color-text-on_secondary);
}

.dataTables_wrapper .table-footer .dataTables_paginate > span > a.paginate_button.current:not([disabled]):hover {
  background-color: var(--vel-color-secondary-300);
}

.dataTables_wrapper .table-footer .dataTables_paginate > a.paginate_button.previous:not([disabled]):hover,
.dataTables_wrapper .table-footer .dataTables_paginate > a.paginate_button.next:not([disabled]):hover,
.dataTables_wrapper .table-footer .dataTables_paginate > span > a.paginate_button:not([disabled]):hover {
  background-color: var(--vel-color-neutral-100);
  font-weight: normal;
}

.dataTables_wrapper .table-footer .dataTables_info {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
}

/*.dataTables_wrapper .table-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    border-bottom: 1px solid var(--vel-color-dividerColor);
    gap:1rem;
    padding-bottom:1rem;
}*/
.dataTables_wrapper .table-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: 1px solid var(--vel-color-dividerColor);
  column-gap: 1rem;
  padding-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.dataTables_wrapper .table-header .dt-buttons {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.dataTables_wrapper .table-header .dataTables_filter > label {
  flex: 1 1 auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.dataTables_wrapper .table-header .dataTables_filter > label > input {
  background-image: url(../../../img/velocity/search.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 24px;
  background-position-x: calc(100% - 4px);
  padding-right: 30px;
  width: 30px;
  border: 0;
  transition: width 0.5s ease-out 0s;
  border-radius: 4px;
}

.dataTables_wrapper .table-header .dataTables_filter > label > input:not(:placeholder-shown) {
  width: 30%;
  border: 1px solid var(--vel-color-neutral-300);
}

.dataTables_wrapper .table-header .dataTables_filter > label > input:focus {
  cursor: initial;
  width: 30%;
  border: 1px solid var(--vel-color-neutral-300);
}

.dataTables_wrapper .table-header .dataTables_filter > label > input:hover {
  cursor: pointer;
  background-color: var(--vel-color-neutral-100);
}

.dataTables_wrapper .table-header .dataTables_filter {
  padding: var(--vel-fixed-spacing-03);
  flex: 1 1 auto;
  display: flex;
  flex-direction: row;
  /*text-align: right;
  position: absolute;
  width: 100%;
  padding-bottom: var(--vel-fixed-spacing-05);
  font-weight: var(--vel-typography-text-200-font_weight);
  font-size: var(--vel-typography-text-200-font_size);
  line-height: var(--vel-typography-text-200-line_height);
  font-family: var(--vel-typography-text-200-font_family);
  letter-spacing: var(--vel-typography-text-200-letter_spacing);
  box-sizing: border-box;
  color: var(--vel-color-form-text-default);
  outline: none;
  min-height: 40px;
  -webkit-box-align: center;
  align-items: center;
  flex-flow: row;
  padding-inline-end: var(--vel-fixed-spacing-01);
  padding-inline-start: var(--vel-fixed-spacing-02);
  padding-block: var(--vel-fixed-spacing-02);*/
}

table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before {
  color: var(--vel-color-neutral-700);
}

@media only screen and (min-width: 740px) {
  .dataTables_info {
    grid-template-columns: 1fr max-content 1fr;
    /*grid-template-areas: "page-size-select pagination-list page-info";*/
  }
}
.dataTables_wrapper .dt-child-table {
  padding-left: 50px;
  width: 100%;
}

.dataTables_wrapper table {
  border-spacing: 0;
}

.dataTables_wrapper table td.dt-bold {
  font-weight: bold;
}

.vel-table-table tbody tr.dt-expanded, .dataTable tbody tr.dt-expanded {
  border-bottom-color: transparent;
}

.dataTable .dt-child-table tbody tr:last-child {
  border-bottom-color: transparent;
}

.dataTables_wrapper table.dataTable > thead > tr > th.command-column {
  width: 1px !important;
}

.dataTables_wrapper table.dataTable > tbody > tr[role=row] > td.dtr-drop,
.dataTables_wrapper table.dataTable > thead > tr > th.dtr-drop {
  padding: 0;
  width: 1px !important;
}

.dataTables_wrapper table.dataTable.dtr-column.collapsed {
  padding-right: 1rem;
}

.dataTables_wrapper table.dataTable.dtr-column.collapsed {
  padding-right: 1rem;
}

.dataTables_wrapper table.dataTable.dtr-column.collapsed > tbody > tr[role=row] > td.dtr-drop {
  position: relative;
}

.dataTables_wrapper table.dataTable.dtr-column.collapsed > tbody > tr[role=row] > td.dtr-drop:after {
  position: absolute;
  content: "";
  display: block;
  /* margin-left: 4px; */
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: center center;
  background-image: url(../../../img/velocity/chevron_right.svg);
  width: 24px;
  height: 100%;
  top: 0;
  cursor: pointer;
}

.dataTables_wrapper table.dataTable.dtr-column.collapsed > tbody > tr.parent > td.dtr-drop:after {
  background-image: url(../../../img/velocity/chevron_left.svg);
}

.dataTables_wrapper table.dataTable.dtr-column.collapsed > tbody > tr.child > td.child {
  padding-left: 2rem;
}

.dataTables_wrapper table.dataTable.dtr-column.collapsed > tbody > tr.child > td.child ul {
  list-style: disc;
}

.dataTables_wrapper table.dataTable.dtr-column.collapsed > tbody > tr.child > td.child ul li {
  padding-block: 0.5rem;
}

.dataTables_wrapper table.dataTable.dtr-column.collapsed > tbody > tr.child > td.child ul li > span:nth-child(1) {
  font-weight: bold;
  width: 200px;
}

.dataTables_wrapper table.dataTable.dtr-column.collapsed > tbody > tr.child > td.child ul li > span:nth-child(1)::after {
  content: ":";
  font-weight: bold;
}

.dataTables_wrapper table.dataTable > tbody > tr[role=row] > td > input[type=checkbox].dt-checkbox {
  border-radius: var(--vel-shape200-border_radius);
  display: inline-block;
  vertical-align: middle;
  height: 1rem;
  width: 1rem;
}

table.dataTable tbody tr th > .accordion,
table.dataTable tbody tr td > .accordion {
  height: 100%;
}

table.dataTable.row-border tbody td.dt-icon {
  padding-inline: 4px;
}

table.dataTable.row-border tbody td.dt-icon svg {
  width: 24px;
}

table.dataTable.striped > tbody > tr:nth-child(even) {
  background: var(--vel-color-neutral-100);
}

@media only screen and (max-width: 480px) {
  .dataTables .dataTables_wrapper .table-header .dataTables_length {
    width: 100%;
  }
  .dataTables_wrapper .table-header .dataTables_filter > label > input {
    width: 100%;
  }
  .dataTables_wrapper .table-header .dataTables_filter > label > input:not(:placeholder-shown),
  .dataTables_wrapper .table-header .dataTables_filter > label > input:focus {
    width: 100%;
  }
}
@media only screen and (max-width: 740px) {
  .dataTables .dataTables_wrapper .table-header .dataTables_length {
    width: 50%;
  }
  .dataTables_wrapper .table-header .dataTables_filter > label > input:not(:placeholder-shown),
  .dataTables_wrapper .table-header .dataTables_filter > label > input:focus {
    width: 100%;
  }
}
