/**
 * Copyright (c) 2020, 2021 Visa, Inc.
 *
 * This source code is licensed under the MIT license
 * https://github.com/visa/visa-chart-components/blob/master/LICENSE
 *
 **/
/**
 * Copyright (c) 2020, 2021, 2024 Visa, Inc.
 *
 * This source code is licensed under the MIT license
 * https://github.com/visa/visa-chart-components/blob/master/LICENSE
 *
 **/
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .vcc-btn-label,
  .vcc-btn-split .vcc-btn--action {
    position: relative;
  }
}

@-moz-document url-prefix() {
  .vcc-btn-split .vcc-btn-label {
    display: block !important;
    float: left;
    text-align: center;
  }
}

@-moz-document url-prefix() {
  .vcc-btn-split .vcc-btn--action {
    display: block !important;
    float: right;
    text-align: center;
  }
}

.vcc-btn.vcc-state--flippable:active [class^='vcc-icon']:not([role]),
.vcc-btn.vcc-state--flippable.vcc-state--active [class^='vcc-icon']:not([role]) {
  transform: rotate(180deg);
}

.vcc-btn-container {
  margin-bottom: 48px;
}

.vcc-btn-group {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.vcc-btn-group > [class^='vcc-btn']:not(.vcc-btn-label) {
  margin: 0 3px 3px 3px;
}

.vcc-btn-group > [class^='vcc-btn']:not(.vcc-btn-label):first-child {
  margin-left: 0;
}

.vcc-btn-group > [class^='vcc-btn']:not(.vcc-btn-label):last-child {
  margin-right: 0;
}

.vcc-btn-group--reverse {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.vcc-btn-group--reverse > [class^='vcc-btn']:not(.vcc-btn-label):first-child {
  margin-left: 3px;
  margin-right: 0;
}

.vcc-btn-group--reverse > [class^='vcc-btn']:not(.vcc-btn-label):last-child {
  margin-left: 0;
  margin-right: 3px;
}

.vcc-btn-group--right {
  justify-content: flex-end;
}

.vcc-btn-label {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  cursor: pointer;
  flex: 0 0 auto;
  justify-content: center;
  margin: auto;
  max-width: 100%;
  overflow-wrap: break-word;
  padding: 0 16px;
  text-align: center;
  word-break: normal;
  word-wrap: normal;
}

.vcc-btn-label [class^='vcc-icon']:first-child {
  margin-right: 3px;
}

.vcc-btn-label [class^='vcc-icon']:last-child {
  margin-left: 3px;
}

@-moz-document url-prefix() {
  .vcc-btn-label {
    padding: 0 6px;
  }
}

.vcc-btn-icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-font-smoothing: antialiased;
  border-radius: var(--theme-button--radius, 2px);
  cursor: pointer !important;
  font-family: var(--theme-font, OpenSans, sans-serif);
  font-size: var(--theme-font-size, 14px);
  font-weight: var(--theme-font-weight--semibold, 600);
  outline: none;
  padding-bottom: 0;
  padding-top: 0;
  transition: background 0.25s ease;
  white-space: nowrap;
  align-items: center;
  background: var(--theme-action-primary, #1f1f1f);
  border: 0;
  border-radius: 16px;
  box-sizing: border-box;
  color: var(--theme-button--default-text, #fff);
  height: 32px;
  justify-content: center;
  min-width: 32px;
  position: relative;
}

.vcc-btn-icon.focus-visible {
  outline: 1px dashed var(--theme-focus-outline-color, #373737);
}

html:not(.js-focus-visible) .vcc-btn-icon:focus {
  outline: 1px dashed var(--theme-focus-outline-color, #373737);
}

.vcc-btn-icon[disabled],
.vcc-btn-icon.vcc-state--disabled {
  cursor: default !important;
  pointer-events: none;
}

.vcc-btn-icon[disabled] .vcc-btn-label,
.vcc-btn-icon[disabled] .vcc-btn--action,
.vcc-btn-icon.vcc-state--disabled .vcc-btn-label,
.vcc-btn-icon.vcc-state--disabled .vcc-btn--action {
  cursor: default !important;
}

.vcc-btn-icon[disabled] .vcc-btn--action,
.vcc-btn-icon.vcc-state--disabled .vcc-btn--action {
  border-color: var(--theme-button--default-text, #fff);
}

.vcc-btn-icon [class^='vcc-icon'] {
  fill: var(--theme-button--default-text, #fff);
  height: 16px;
  width: 16px;
}

.vcc-btn-icon _:-ms-fullscreen,
.vcc-btn-icon .ie11up,
.vcc-btn-icon {
  display: inline;
}

.vcc-btn-icon [class^='vcc-icon'] {
  fill: var(--theme-button--default-text, #fff);
  height: 16px;
  width: 16px;
}

.vcc-btn-icon:hover,
.vcc-btn-icon:active,
.vcc-btn-icon:focus {
  background: var(--theme-action-primary--hover, #d8d8d8);
  color: var(--theme-button--default-text--hover, #fff);
}

.vcc-btn-icon:hover::-moz-focus-inner,
.vcc-btn-icon:active::-moz-focus-inner,
.vcc-btn-icon:focus::-moz-focus-inner {
  border: 0;
}

.vcc-btn-icon:hover [class^='vcc-icon'],
.vcc-btn-icon:active [class^='vcc-icon'],
.vcc-btn-icon:focus [class^='vcc-icon'] {
  fill: var(--theme-button--default-text--hover, #fff);
  height: 16px;
  width: 16px;
}

.vcc-btn-icon:focus .vcc-btn-label {
  text-decoration: none;
}

.vcc-btn-icon[disabled],
.vcc-btn-icon.vcc-state--disabled {
  background-color: var(--theme-transparent, rgba(0, 0, 0, 0));
}

.vcc-btn-icon[disabled] [class^='vcc-icon'],
.vcc-btn-icon.vcc-state--disabled [class^='vcc-icon'] {
  fill: var(--theme-button-icon-light--disabled, #d7d7de);
  height: 16px;
  width: 16px;
}

.vcc-btn-icon.vcc-state--active {
  background: var(--theme-action-primary--selected, #1f1f1f);
  color: var(--theme-button--default-text--selected, #fff);
}

.vcc-btn-icon.vcc-state--active [class^='vcc-icon'] {
  fill: var(--theme-button--default-text--selected, #fff);
  height: 1.25rem;
  width: 1.25rem;
}

.vcc-btn-icon .vcc-btn-label {
  padding: 0;
}

.vcc-btn-icon .vcc-btn-label [class^='vcc-icon']:first-child {
  margin-right: 3px;
}

.vcc-btn-icon .vcc-btn-label [class^='vcc-icon']:last-child {
  margin-left: 3px;
}

.vcc-btn-icon--light {
  background-color: var(--theme-transparent, rgba(0, 0, 0, 0));
}

.vcc-btn-icon--light [class^='vcc-icon'] {
  fill: var(--theme-button-icon, #1f1f1f);
  height: 16px;
  width: 16px;
}

.vcc-btn-icon--light:active {
  background-color: var(--theme-button-icon-light--hover, #484848);
}

.vcc-btn-icon--light:active [class^='vcc-icon'] {
  fill: var(--theme-button--default-text--hover, #fff);
  height: 16px;
  width: 16px;
}

.vcc-btn-icon--light:hover:not(:active),
.vcc-btn-icon--light:focus:not(:active) {
  background-color: var(--theme-button--secondary-text--background--hover, #e0eafa);
}

.vcc-btn-icon--light:hover:not(:active) [class^='vcc-icon'],
.vcc-btn-icon--light:focus:not(:active) [class^='vcc-icon'] {
  fill: var(--theme-button--secondary-text--hover, #484848);
  height: 16px;
  width: 16px;
}

.vcc-btn-icon--light:disabled {
  background-color: var(--theme-transparent, rgba(0, 0, 0, 0));
}

.vcc-btn-icon--light:disabled [class^='vcc-icon'] {
  fill: var(--theme-button--default-text--disabled-background, #d7d7de);
  height: 16px;
  width: 16px;
}

.vcc-btn-icon--light-outline {
  background-color: var(--theme-transparent, rgba(0, 0, 0, 0));
  border: 2px solid var(--theme-button-icon, #1f1f1f);
}

.vcc-btn-icon--light-outline [class^='vcc-icon'] {
  fill: var(--theme-button-icon, #1f1f1f);
  height: 16px;
  width: 16px;
}

.vcc-btn-icon--light-outline:active {
  background-color: var(--theme-button-icon-light--hover, #484848);
  border-color: var(--theme-button-icon-light--hover, #484848);
}

.vcc-btn-icon--light-outline:active [class^='vcc-icon'] {
  fill: var(--theme-button--default-text--hover, #fff);
  height: 16px;
  width: 16px;
}

.vcc-btn-icon--light-outline:hover:not(:active) {
  background-color: var(--theme-button-icon-light-background--hover, #e0eafa);
  border-color: var(--theme-button-icon-light--hover, #484848);
}

.vcc-btn-icon--light-outline:hover:not(:active) [class^='vcc-icon'] {
  fill: var(--theme-button-icon-light--hover, #484848);
  height: 16px;
  width: 16px;
}

.vcc-btn-icon--light-outline:focus:not(:active) {
  background-color: var(--theme-button-icon-light-background--hover, #e0eafa);
  border-color: var(--theme-button-icon-light--hover, #484848);
}

.vcc-btn-icon--light-outline:focus:not(:active) [class^='vcc-icon'] {
  fill: var(--theme-button-icon-light--hover, #484848);
  height: 16px;
  width: 16px;
}

.vcc-btn-icon--light-outline:disabled {
  background-color: var(--theme-transparent, rgba(0, 0, 0, 0));
  border-color: var(--theme-button--default-text--disabled-background, #d7d7de);
}

.vcc-btn-icon--light-outline:disabled [class^='vcc-icon'] {
  fill: var(--theme-button--default-text--disabled-background, #d7d7de);
  height: 16px;
  width: 16px;
}

.vcc-btn-icon--light-tiny {
  background-color: var(--theme-transparent, rgba(0, 0, 0, 0));
  color: var(--theme-button-icon-light, #484848);
  height: 16px;
  min-width: 16px;
}

.vcc-btn-icon--light-tiny [class^='vcc-icon'] {
  fill: currentColor;
  height: 16px;
  width: 16px;
}

.vcc-btn-icon--light-tiny:active {
  background-color: var(--theme-button-icon-light--hover, #484848);
}

.vcc-btn-icon--light-tiny:active [class^='vcc-icon'] {
  fill: currentColor;
  height: 16px;
  width: 16px;
}

.vcc-btn-icon--light-tiny:hover:not(:active) {
  background-color: var(--theme-button-icon-light-background--hover, #e0eafa);
  color: var(--theme-button-icon-light, #484848);
}

.vcc-btn-icon--light-tiny:hover:not(:active) [class^='vcc-icon'] {
  fill: currentColor;
  height: 16px;
  width: 16px;
}

.vcc-btn-icon--light-tiny:focus:not(:active) {
  background-color: var(--theme-button-icon-light-background--hover, #e0eafa);
  color: var(--theme-button-icon-light, #484848);
}

.vcc-btn-icon--light-tiny:focus:not(:active) [class^='vcc-icon'] {
  fill: currentColor;
  height: 16px;
  width: 16px;
}

.vcc-btn-icon--light-tiny:disabled {
  background-color: var(--theme-transparent, rgba(0, 0, 0, 0));
  border-color: #d7d7de;
}

.vcc-btn-icon--light-tiny:disabled [class^='vcc-icon'] {
  fill: var(--theme-button--default-text--disabled-background, #d7d7de);
  height: 1rem;
  width: 1rem;
}

.vcc-btn-icon--dark {
  background-color: var(--theme-transparent, rgba(0, 0, 0, 0));
}

.vcc-btn-icon--dark:focus:not(:active) {
  outline-color: var(--theme-button--default-text--focus, #fff);
}

.vcc-btn-icon--dark:hover,
.vcc-btn-icon--dark:focus {
  background-color: var(--theme-button-icon-light--hover, #484848);
  border-color: var(--theme-button-icon-light--hover, #484848);
}

.vcc-btn-icon--dark:disabled {
  background-color: var(--theme-transparent, rgba(0, 0, 0, 0));
  border-color: var(--theme-button--default-text--disabled-background, #d7d7de);
}

.vcc-btn-icon--dark:disabled [class^='vcc-icon'] {
  fill: var(--theme-button--default-text--disabled-background, #d7d7de);
  height: 16px;
  width: 16px;
}

.vcc-btn-icon--dark-outline {
  background-color: var(--theme-transparent, rgba(0, 0, 0, 0));
  border: 2px solid var(--theme-button--default-text, #fff);
}

.vcc-btn-icon--dark-outline:focus:not(:active) {
  outline-color: var(--theme-button--default-text--focus, #fff);
}

.vcc-btn-icon--dark-outline:hover,
.vcc-btn-icon--dark-outline:focus {
  background-color: var(--theme-button-icon-light--hover, #484848);
  border-color: var(--theme-button-icon-light--hover, #484848);
}

.vcc-btn-icon--dark-outline:disabled {
  background-color: var(--theme-transparent, rgba(0, 0, 0, 0));
  border-color: var(--theme-button--default-text--disabled-background, #d7d7de);
}

.vcc-btn-icon--dark-outline:disabled [class^='vcc-icon'] {
  fill: var(--theme-button--default-text--disabled-background, #d7d7de);
  height: 16px;
  width: 16px;
}

.vcc-btn-icon--dark-tiny {
  background-color: var(--theme-transparent, rgba(0, 0, 0, 0));
  height: 16px;
  min-width: 16px;
}

.vcc-btn-icon--dark-tiny:focus:not(:active) {
  outline-color: var(--theme-button--default-text--focus, #fff);
}

.vcc-btn-icon--dark-tiny [class^='vcc-icon'] {
  fill: var(--theme-button--default-text, #fff);
  height: 16px;
  width: 16px;
}

.vcc-btn-icon--dark-tiny:active {
  background-color: var(--theme-button-icon-light--hover, #484848);
}

.vcc-btn-icon--dark-tiny:active [class^='vcc-icon'] {
  fill: var(--theme-button--default-text--hover, #fff);
  height: 16px;
  width: 16px;
}

.vcc-btn-icon--dark-tiny:hover:not(:active),
.vcc-btn-icon--dark-tiny:focus:not(:active) {
  background-color: var(--theme-button-icon-light--hover, #484848);
}

.vcc-btn-icon--dark-tiny:hover:not(:active) [class^='vcc-icon'],
.vcc-btn-icon--dark-tiny:focus:not(:active) [class^='vcc-icon'] {
  fill: var(--theme-button--default-text--hover, #fff);
  height: 16px;
  width: 16px;
}

.vcc-btn-icon--dark-tiny:disabled {
  background-color: var(--theme-transparent, rgba(0, 0, 0, 0));
  border-color: #d7d7de;
}

.vcc-btn-icon--dark-tiny:disabled [class^='vcc-icon'] {
  fill: var(--theme-button--default-text--disabled-background, #d7d7de);
  height: 16px;
  width: 16px;
}

/**
 * Copyright (c) 2020, 2021 Visa, Inc.
 *
 * This source code is licensed under the MIT license
 * https://github.com/visa/visa-chart-components/blob/master/LICENSE
 *
 **/
.vcc-thead .vcc-th {
  background-color: var(--theme-data-table-header-background, #fff);
  box-shadow: 0 -2px 0 var(--theme-data-table-header-underline, #333333) inset;
}

.vcc-tbody .vcc-tr:nth-child(odd) {
  background: var(--theme-data-table-row-background, #fff);
}

.vcc-tbody .vcc-tr:nth-child(even) {
  background: var(--theme-data-table-row-background--alt, #f2f4f8);
}

.vcc-th {
  color: var(--theme-data-table-header-text, #333333);
  font-weight: var(--theme-font-weight--semibold, 600);
  height: var(--theme-data-tableheader-height, 48px);
  text-align: left;
  vertical-align: middle;
}

.vcc-td {
  height: var(--theme-data-tablerow-height, 72px);
}

.vcc-td,
.vcc-th {
  padding: 0 var(--theme-data-table-padding, 14px);
}

.vcc-data-table {
  border-collapse: collapse;
  flex: 1;
}

.vcc-secondary-data-table {
  margin-left: 20px;
  flex: 1;
}

.vcc-data-table.vcc-state--single-select .vcc-tbody .vcc-tr:hover,
.vcc-data-table.vcc-state--multi-select .vcc-tbody .vcc-tr:hover {
  background-color: var(--theme-data-table-row-background--hover, #e0eafa);
}

.vcc-data-table.vcc-state--single-select .vcc-tbody .vcc-tr:active,
.vcc-data-table.vcc-state--multi-select .vcc-tbody .vcc-tr:active {
  background-color: var(--theme-data-table-row-background--pressed, #d7d7de);
}

.vcc-data-table.vcc-state--single-select .vcc-tbody .vcc-tr:focus,
.vcc-data-table.vcc-state--multi-select .vcc-tbody .vcc-tr:focus {
  background-color: var(--theme-data-table-row-background--focus, #e0eafa);
  outline: 1px dashed var(--theme-focus-outline-color, #373737);
}

.vcc-data-table.vcc-state--single-select .vcc-tbody .vcc-tr:focus.vcc-state--selected,
.vcc-data-table.vcc-state--multi-select .vcc-tbody .vcc-tr:focus.vcc-state--selected {
  background-color: var(--theme-data-table-row-background--selected, #d7d7de);
}

.vcc-data-table.vcc-state--single-select .vcc-tbody .vcc-tr.vcc-state--selected,
.vcc-data-table.vcc-state--multi-select .vcc-tbody .vcc-tr.vcc-state--selected {
  background-color: var(--theme-data-table-row-background--selected, #d7d7de);
}

.vcc-data-table.vcc-state--multi-select .vcc-th:first-child,
.vcc-data-table.vcc-state--multi-select .vcc-th:first-child,
.vcc-data-table.vcc-state--multi-select .vcc-td:first-child,
.vcc-data-table.vcc-state--multi-select .vcc-td:first-child {
  padding: 0 0 0 0.3125rem;
}

.vcc-data-table.vcc-state--multi-select .vcc-th:nth-child(2),
.vcc-data-table.vcc-state--multi-select .vcc-th:nth-child(2),
.vcc-data-table.vcc-state--multi-select .vcc-td:nth-child(2),
.vcc-data-table.vcc-state--multi-select .vcc-td:nth-child(2) {
  padding-left: 0;
}

.vcc-data-table.vcc-state--compact .vcc-td {
  height: var(--theme-data-tablerow-height--compact, 44px);
}

.vcc-data-table.vcc-state--customizable-columns .vcc-thead .vcc-data-table--column-control {
  padding-right: 0;
}

.vcc-data-table.vcc-state--key-value-pairs .vcc-th {
  background-color: var(--theme-transparent, rgba(0, 0, 0, 0));
  box-shadow: none;
  font-weight: var(--theme-font-weight--semibold, 600);
}

.vcc-data-table.vcc-state--key-value-pairs .vcc-tr:nth-child(odd) {
  background: var(--theme-data-table-row-background--alt, #f2f4f8);
}

.vcc-data-table.vcc-state--key-value-pairs .vcc-tr:nth-child(even) {
  background: var(--theme-data-table-row-background, #fff);
}

.vcc-data-table.vcc-state--divider-lines .vcc-tr:nth-child(n) {
  background-color: var(--theme-data-table-row-background, #fff);
}

.vcc-data-table.vcc-state--divider-lines .vcc-tr:not(:last-child) .vcc-td,
.vcc-data-table.vcc-state--divider-lines .vcc-tr:not(:last-child) .vcc-th {
  border-bottom: 1px solid var(--theme-data-table-divider-line, #d7d7de);
}

.vcc-data-table.vcc-state--reveal-first-column .vcc-th:first-child,
.vcc-data-table.vcc-state--reveal-first-column .vcc-th:first-child,
.vcc-data-table.vcc-state--reveal-first-column .vcc-td:first-child,
.vcc-data-table.vcc-state--reveal-first-column .vcc-td:first-child {
  display: none;
}

.vcc-data-table.vcc-state--reveal-last-column .vcc-th:last-child,
.vcc-data-table.vcc-state--reveal-last-column .vcc-th:last-child,
.vcc-data-table.vcc-state--reveal-last-column .vcc-td:last-child,
.vcc-data-table.vcc-state--reveal-last-column .vcc-td:last-child {
  display: none;
}

.vcc-data-table.vcc-state--reveal:hover .vcc-th:first-child,
.vcc-data-table.vcc-state--reveal:hover .vcc-th:first-child,
.vcc-data-table.vcc-state--reveal:hover .vcc-th:last-child,
.vcc-data-table.vcc-state--reveal:hover .vcc-th:last-child,
.vcc-data-table.vcc-state--reveal:hover .vcc-td:first-child,
.vcc-data-table.vcc-state--reveal:hover .vcc-td:first-child,
.vcc-data-table.vcc-state--reveal:hover .vcc-td:last-child,
.vcc-data-table.vcc-state--reveal:hover .vcc-td:last-child,
.vcc-data-table.vcc-state--reveal:hover .vcc-th:first-child,
.vcc-data-table.vcc-state--reveal:hover .vcc-th:first-child,
.vcc-data-table.vcc-state--reveal:hover .vcc-th:last-child,
.vcc-data-table.vcc-state--reveal:hover .vcc-th:last-child,
.vcc-data-table.vcc-state--reveal:hover .vcc-td:first-child,
.vcc-data-table.vcc-state--reveal:hover .vcc-td:first-child,
.vcc-data-table.vcc-state--reveal:hover .vcc-td:last-child,
.vcc-data-table.vcc-state--reveal:hover .vcc-td:last-child {
  display: table-cell;
}

.vcc-data-table.vcc-state--reveal:hover .vcc-data-table-inline-actions-cell {
  padding: 0 var(--theme-data-table-padding, 14px);
}

.vcc-data-table.vcc-state--reveal:hover .vcc-btn-group {
  display: block;
}

.vcc-data-table.vcc-state--reveal.vcc-state--multi-select .vcc-th:nth-child(2),
.vcc-data-table.vcc-state--reveal.vcc-state--multi-select .vcc-th:nth-child(2),
.vcc-data-table.vcc-state--reveal.vcc-state--multi-select .vcc-td:nth-child(2),
.vcc-data-table.vcc-state--reveal.vcc-state--multi-select .vcc-td:nth-child(2) {
  padding-left: var(--theme-data-table-padding, 14px);
}

.vcc-data-table.vcc-state--sticky-header .vcc-th {
  position: sticky;
}

.vcc-data-table-inline-actions-cell {
  padding: 0;
  width: 0;
}

.vcc-data-table-inline-actions-cell .vcc-btn-group {
  display: none;
  white-space: nowrap;
}

.vcc-data-table-inline-actions-row:hover .vcc-data-table-inline-actions-cell {
  padding: 0 var(--theme-data-table-padding, 14px);
}

.vcc-data-table-inline-actions-row:hover .vcc-btn-group {
  display: block;
}

.vcc-data-table--border-left .vcc-th:not(:first-child),
.vcc-data-table--border-left .vcc-th:not(:first-child),
.vcc-data-table--border-left .vcc-td:not(:first-child),
.vcc-data-table--border-left .vcc-td:not(:first-child) {
  border-left: 1px solid var(--theme-data-table-divider-line, #d7d7de);
}

.vcc-data-table .vcc-btn-icon {
  display: inline-block;
  margin-right: 0.25rem;
}

.vcc-data-table .vcc-data-table-cell-border-left {
  border-left: 1px solid var(--theme-data-table-divider-line, #d7d7de);
}

.vcc-data-table .vcc-data-table-color-background-alt {
  background-color: var(--theme-data-table-row-background--alt, #f2f4f8);
}

.vcc-data-table .vcc-text--right {
  text-align: right;
}

.vcc-pagination-bar .col {
  align-items: center;
  display: flex;
}

.vcc-pagination-bar .col.col--no-gutter {
  flex-direction: row;
}

.vcc-pagination-bar .col--align-end {
  justify-content: flex-end;
}

.vcc-pagination {
  margin-right: 0;
  width: auto;
}

.vcc-pagination-page-items-count {
  margin-left: 1.6875rem;
}

.vcc-pagination .vcc-btn-split {
  margin: 0;
}

.vcc-btn-sortable {
  -webkit-font-smoothing: antialiased;
  align-items: center;
  background: var(--theme-transparent, rgba(0, 0, 0, 0));
  border: 0;
  box-sizing: border-box;
  color: var(--theme-font-color, #222);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--theme-font, OpenSans, sans-serif);
  font-size: var(--theme-font-size, 14px);
  font-weight: var(--theme-font-weight--semibold, 600);
  height: auto;
  justify-content: flex-start;
  outline: none;
  padding: 0;
  text-align: left;
}

.vcc-btn-sortable.focus-visible {
  outline: 1px dashed var(--theme-focus-outline-color, #373737);
}

html:not(.js-focus-visible) .vcc-btn-sortable:focus {
  outline: 1px dashed var(--theme-focus-outline-color, #373737);
}

.vcc-btn-sortable-icon {
  display: flex;
  height: 2rem;
  width: 2rem;
}

.vcc-btn-sortable-icon .vcc-icon--tiny {
  margin: auto;
}

.o-layout {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.o-layout--chart {
  width: 100%;
}
.is--vertical .o-layout--chart {
  width: 90%;
}

/**
* Copyright (c) 2020, 2021, 2023 Visa, Inc.
*
* This source code is licensed under the MIT license
* https://github.com/visa/visa-chart-components/blob/master/LICENSE
*
**/
.vcc-sr {
  overflow: hidden;
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
}

.visa-viz-data-table-outer-container .visa-viz-data-table-container {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.visa-viz-data-table-outer-container .visa-viz-button-wrapper {
  height: 0px;
}
.visa-viz-data-table-outer-container .visa-viz-data-table-button {
  position: relative;
  padding: 0;
  height: 32px;
  width: 32px;
}
.visa-viz-data-table-outer-container .vcc-btn-icon.vcc-state--active [class^=vcc-icon] {
  height: 1rem;
  width: 1rem;
}
.visa-viz-data-table-outer-container svg.vcc-icons {
  display: none;
}
.visa-viz-data-table-outer-container .vcc-data-table {
  float: left;
}
.visa-viz-data-table-outer-container .vcc-data-table th {
  text-align: left;
}