@import url(https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap);
/* Copyright 2014 Mozilla Foundation
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

:root {
  --react-pdf-annotation-layer: 1;
  --annotation-unfocused-field-background: url("data:image/svg+xml;charset=UTF-8,<svg width='1px' height='1px' xmlns='http://www.w3.org/2000/svg'><rect width='100%' height='100%' style='fill:rgba(0, 54, 255, 0.13);'/></svg>");
  --input-focus-border-color: Highlight;
  --input-focus-outline: 1px solid Canvas;
  --input-unfocused-border-color: transparent;
  --input-disabled-border-color: transparent;
  --input-hover-border-color: black;
  --link-outline: none;
}

@media screen and (forced-colors: active) {
  :root {
    --input-focus-border-color: CanvasText;
    --input-unfocused-border-color: ActiveText;
    --input-disabled-border-color: GrayText;
    --input-hover-border-color: Highlight;
    --link-outline: 1.5px solid LinkText;
  }
  .annotationLayer .textWidgetAnnotation :is(input, textarea):required,
  .annotationLayer .choiceWidgetAnnotation select:required,
  .annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input:required {
    outline: 1.5px solid selectedItem;
  }

  .annotationLayer .linkAnnotation:hover {
    backdrop-filter: invert(100%);
  }
}

.annotationLayer {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  transform-origin: 0 0;
  z-index: 3;
}

.annotationLayer[data-main-rotation='90'] .norotate {
  transform: rotate(270deg) translateX(-100%);
}
.annotationLayer[data-main-rotation='180'] .norotate {
  transform: rotate(180deg) translate(-100%, -100%);
}
.annotationLayer[data-main-rotation='270'] .norotate {
  transform: rotate(90deg) translateY(-100%);
}

.annotationLayer canvas {
  position: absolute;
  width: 100%;
  height: 100%;
}

.annotationLayer section {
  position: absolute;
  text-align: initial;
  pointer-events: auto;
  box-sizing: border-box;
  margin: 0;
  transform-origin: 0 0;
}

.annotationLayer .linkAnnotation {
  outline: var(--link-outline);
}

.textLayer.selecting ~ .annotationLayer section {
  pointer-events: none;
}

.annotationLayer :is(.linkAnnotation, .buttonWidgetAnnotation.pushButton) > a {
  position: absolute;
  font-size: 1em;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.annotationLayer :is(.linkAnnotation, .buttonWidgetAnnotation.pushButton) > a:hover {
  opacity: 0.2;
  background: rgba(255, 255, 0, 1);
  box-shadow: 0 2px 10px rgba(255, 255, 0, 1);
}

.annotationLayer .textAnnotation img {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.annotationLayer .textWidgetAnnotation :is(input, textarea),
.annotationLayer .choiceWidgetAnnotation select,
.annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input {
  background-image: var(--annotation-unfocused-field-background);
  border: 2px solid var(--input-unfocused-border-color);
  box-sizing: border-box;
  font: calc(9px * var(--scale-factor)) sans-serif;
  height: 100%;
  margin: 0;
  vertical-align: top;
  width: 100%;
}

.annotationLayer .textWidgetAnnotation :is(input, textarea):required,
.annotationLayer .choiceWidgetAnnotation select:required,
.annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input:required {
  outline: 1.5px solid red;
}

.annotationLayer .choiceWidgetAnnotation select option {
  padding: 0;
}

.annotationLayer .buttonWidgetAnnotation.radioButton input {
  border-radius: 50%;
}

.annotationLayer .textWidgetAnnotation textarea {
  resize: none;
}

.annotationLayer .textWidgetAnnotation :is(input, textarea)[disabled],
.annotationLayer .choiceWidgetAnnotation select[disabled],
.annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input[disabled] {
  background: none;
  border: 2px solid var(--input-disabled-border-color);
  cursor: not-allowed;
}

.annotationLayer .textWidgetAnnotation :is(input, textarea):hover,
.annotationLayer .choiceWidgetAnnotation select:hover,
.annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input:hover {
  border: 2px solid var(--input-hover-border-color);
}
.annotationLayer .textWidgetAnnotation :is(input, textarea):hover,
.annotationLayer .choiceWidgetAnnotation select:hover,
.annotationLayer .buttonWidgetAnnotation.checkBox input:hover {
  border-radius: 2px;
}

.annotationLayer .textWidgetAnnotation :is(input, textarea):focus,
.annotationLayer .choiceWidgetAnnotation select:focus {
  background: none;
  border: 2px solid var(--input-focus-border-color);
  border-radius: 2px;
  outline: var(--input-focus-outline);
}

.annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) :focus {
  background-image: none;
  background-color: transparent;
}

.annotationLayer .buttonWidgetAnnotation.checkBox :focus {
  border: 2px solid var(--input-focus-border-color);
  border-radius: 2px;
  outline: var(--input-focus-outline);
}

.annotationLayer .buttonWidgetAnnotation.radioButton :focus {
  border: 2px solid var(--input-focus-border-color);
  outline: var(--input-focus-outline);
}

.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::before,
.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::after,
.annotationLayer .buttonWidgetAnnotation.radioButton input:checked::before {
  background-color: CanvasText;
  content: '';
  display: block;
  position: absolute;
}

.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::before,
.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::after {
  height: 80%;
  left: 45%;
  width: 1px;
}

.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::before {
  transform: rotate(45deg);
}

.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::after {
  transform: rotate(-45deg);
}

.annotationLayer .buttonWidgetAnnotation.radioButton input:checked::before {
  border-radius: 50%;
  height: 50%;
  left: 30%;
  top: 20%;
  width: 50%;
}

.annotationLayer .textWidgetAnnotation input.comb {
  font-family: monospace;
  padding-left: 2px;
  padding-right: 0;
}

.annotationLayer .textWidgetAnnotation input.comb:focus {
  /*
   * Letter spacing is placed on the right side of each character. Hence, the
   * letter spacing of the last character may be placed outside the visible
   * area, causing horizontal scrolling. We avoid this by extending the width
   * when the element has focus and revert this when it loses focus.
   */
  width: 103%;
}

.annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input {
  appearance: none;
}

.annotationLayer .popupTriggerArea {
  height: 100%;
  width: 100%;
}

.annotationLayer .fileAttachmentAnnotation .popupTriggerArea {
  position: absolute;
}

.annotationLayer .popupWrapper {
  position: absolute;
  font-size: calc(9px * var(--scale-factor));
  width: 100%;
  min-width: calc(180px * var(--scale-factor));
  pointer-events: none;
}

.annotationLayer .popup {
  position: absolute;
  max-width: calc(180px * var(--scale-factor));
  background-color: rgba(255, 255, 153, 1);
  box-shadow: 0 calc(2px * var(--scale-factor)) calc(5px * var(--scale-factor))
    rgba(136, 136, 136, 1);
  border-radius: calc(2px * var(--scale-factor));
  padding: calc(6px * var(--scale-factor));
  margin-left: calc(5px * var(--scale-factor));
  cursor: pointer;
  font: message-box;
  white-space: normal;
  word-wrap: break-word;
  pointer-events: auto;
}

.annotationLayer .popup > * {
  font-size: calc(9px * var(--scale-factor));
}

.annotationLayer .popup h1 {
  display: inline-block;
}

.annotationLayer .popupDate {
  display: inline-block;
  margin-left: calc(5px * var(--scale-factor));
}

.annotationLayer .popupContent {
  border-top: 1px solid rgba(51, 51, 51, 1);
  margin-top: calc(2px * var(--scale-factor));
  padding-top: calc(2px * var(--scale-factor));
}

.annotationLayer .richText > * {
  white-space: pre-wrap;
  font-size: calc(9px * var(--scale-factor));
}

.annotationLayer .highlightAnnotation,
.annotationLayer .underlineAnnotation,
.annotationLayer .squigglyAnnotation,
.annotationLayer .strikeoutAnnotation,
.annotationLayer .freeTextAnnotation,
.annotationLayer .lineAnnotation svg line,
.annotationLayer .squareAnnotation svg rect,
.annotationLayer .circleAnnotation svg ellipse,
.annotationLayer .polylineAnnotation svg polyline,
.annotationLayer .polygonAnnotation svg polygon,
.annotationLayer .caretAnnotation,
.annotationLayer .inkAnnotation svg polyline,
.annotationLayer .stampAnnotation,
.annotationLayer .fileAttachmentAnnotation {
  cursor: pointer;
}

.annotationLayer section svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.annotationLayer .annotationTextContent {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  color: transparent;
  user-select: none;
  pointer-events: none;
}

.annotationLayer .annotationTextContent span {
  width: 100%;
  display: inline-block;
}

/* Copyright 2014 Mozilla Foundation
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

:root {
  --react-pdf-text-layer: 1;
  --highlight-bg-color: rgba(180, 0, 170, 1);
  --highlight-selected-bg-color: rgba(0, 100, 0, 1);
}

@media screen and (forced-colors: active) {
  :root {
    --highlight-bg-color: Highlight;
    --highlight-selected-bg-color: ButtonText;
  }
}

[data-main-rotation='90'] {
  transform: rotate(90deg) translateY(-100%);
}
[data-main-rotation='180'] {
  transform: rotate(180deg) translate(-100%, -100%);
}
[data-main-rotation='270'] {
  transform: rotate(270deg) translateX(-100%);
}

.textLayer {
  position: absolute;
  text-align: initial;
  inset: 0;
  overflow: hidden;
  line-height: 1;
  text-size-adjust: none;
  forced-color-adjust: none;
  transform-origin: 0 0;
  z-index: 2;
}

.textLayer :is(span, br) {
  color: transparent;
  position: absolute;
  white-space: pre;
  cursor: text;
  margin: 0;
  transform-origin: 0 0;
}

/* Only necessary in Google Chrome, see issue 14205, and most unfortunately
 * the problem doesn't show up in "text" reference tests. */
.textLayer span.markedContent {
  top: 0;
  height: 0;
}

.textLayer .highlight {
  margin: -1px;
  padding: 1px;
  background-color: var(--highlight-bg-color);
  border-radius: 4px;
}

.textLayer .highlight.appended {
  position: initial;
}

.textLayer .highlight.begin {
  border-radius: 4px 0 0 4px;
}

.textLayer .highlight.end {
  border-radius: 0 4px 4px 0;
}

.textLayer .highlight.middle {
  border-radius: 0;
}

.textLayer .highlight.selected {
  background-color: var(--highlight-selected-bg-color);
}

/* Avoids https://github.com/mozilla/pdf.js/issues/13840 in Chrome */
.textLayer br::selection {
  background: transparent;
}

.textLayer .endOfContent {
  display: block;
  position: absolute;
  inset: 100% 0 0;
  z-index: -1;
  cursor: default;
  user-select: none;
}

.textLayer.selecting .endOfContent {
  top: 0;
}

.hiddenCanvasElement {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  display: none;
}

.react-grid-layout {
  position: relative;
  transition: height 200ms ease;
}
.react-grid-item {
  transition: all 200ms ease;
  transition-property: left, top, width, height;
}
.react-grid-item img {
  pointer-events: none;
  user-select: none;
}
.react-grid-item.cssTransforms {
  transition-property: transform, width, height;
}
.react-grid-item.resizing {
  transition: none;
  z-index: 1;
  will-change: width, height;
}

.react-grid-item.react-draggable-dragging {
  transition: none;
  z-index: 3;
  will-change: transform;
}

.react-grid-item.dropping {
  visibility: hidden;
}

.react-grid-item.react-grid-placeholder {
  background: red;
  opacity: 0.2;
  transition-duration: 100ms;
  z-index: 2;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.react-grid-item.react-grid-placeholder.placeholder-resizing {
  transition: none;
}

.react-grid-item > .react-resizable-handle {
  position: absolute;
  width: 20px;
  height: 20px;
}

.react-grid-item > .react-resizable-handle::after {
  content: "";
  position: absolute;
  right: 3px;
  bottom: 3px;
  width: 5px;
  height: 5px;
  border-right: 2px solid rgba(0, 0, 0, 0.4);
  border-bottom: 2px solid rgba(0, 0, 0, 0.4);
}

.react-resizable-hide > .react-resizable-handle {
  display: none;
}

.react-grid-item > .react-resizable-handle.react-resizable-handle-sw {
  bottom: 0;
  left: 0;
  cursor: sw-resize;
  transform: rotate(90deg);
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-se {
  bottom: 0;
  right: 0;
  cursor: se-resize;
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-nw {
  top: 0;
  left: 0;
  cursor: nw-resize;
  transform: rotate(180deg);
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-ne {
  top: 0;
  right: 0;
  cursor: ne-resize;
  transform: rotate(270deg);
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-w,
.react-grid-item > .react-resizable-handle.react-resizable-handle-e {
  top: 50%;
  margin-top: -10px;
  cursor: ew-resize;
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-w {
  left: 0;
  transform: rotate(135deg);
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-e {
  right: 0;
  transform: rotate(315deg);
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-n,
.react-grid-item > .react-resizable-handle.react-resizable-handle-s {
  left: 50%;
  margin-left: -10px;
  cursor: ns-resize;
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-n {
  top: 0;
  transform: rotate(225deg);
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-s {
  bottom: 0;
  transform: rotate(45deg);
}

.react-resizable {
  position: relative;
}
.react-resizable-handle {
  position: absolute;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-origin: content-box;
  box-sizing: border-box;
  background-image: url(/static/assets/78bb7fb75f7f939aceb9.78bb7fb7.svg);
  background-position: bottom right;
  padding: 0 3px 3px 0;
}
.react-resizable-handle-sw {
  bottom: 0;
  left: 0;
  cursor: sw-resize;
  transform: rotate(90deg);
}
.react-resizable-handle-se {
  bottom: 0;
  right: 0;
  cursor: se-resize;
}
.react-resizable-handle-nw {
  top: 0;
  left: 0;
  cursor: nw-resize;
  transform: rotate(180deg);
}
.react-resizable-handle-ne {
  top: 0;
  right: 0;
  cursor: ne-resize;
  transform: rotate(270deg);
}
.react-resizable-handle-w,
.react-resizable-handle-e {
  top: 50%;
  margin-top: -10px;
  cursor: ew-resize;
}
.react-resizable-handle-w {
  left: 0;
  transform: rotate(135deg);
}
.react-resizable-handle-e {
  right: 0;
  transform: rotate(315deg);
}
.react-resizable-handle-n,
.react-resizable-handle-s {
  left: 50%;
  margin-left: -10px;
  cursor: ns-resize;
}
.react-resizable-handle-n {
  top: 0;
  transform: rotate(225deg);
}
.react-resizable-handle-s {
  bottom: 0;
  transform: rotate(45deg);
}
:root{--color-primary: #41aaaf;--color-primary-hover: #64bbbd;--color-primary-soft: #e6f7f7;--color-sso-button-bg: #d2edef;--color-text-disabled: #bfbfbf;--color-text-dark: #042a2a;--color-text-base: #2e2e2e;--color-text-muted: #5a6a6a;--color-segmented-item: #5a6a6a;--color-tag-disabled: #5a6a6a;--color-placeholder: #5a6a6a;--color-border: #dbeae3;--color-surface: #f3f7f8;--color-layout-bg: #eaf6f7;--color-drawer-bg: var(--color-layout-bg);--color-surface-base: #ffffff;--color-surface-raised: #ffffff;--color-row-hover: #e6eff2;--color-calendar-today-bg: #e6eff2;--color-calendar-empty-text: #d0d0d0;--color-logo-tile-bg: #ffffff;--color-logo-tile-border: var(--color-border);--color-on-logo-tile: #042a2a;--color-on-logo-tile-muted: #5a6a6a;--ai-scanning-logo-color: #042a2a;--color-bg-mask: rgba(0, 0, 0, 0.45);--file-panel-resize-strip-bg-hover: #ebf4f6;--file-panel-resize-strip-bg-active: rgba(65, 170, 175, 0.12);--color-link: #5e87b0;--color-link-hover: #406182;--color-error: #b94a48;--color-status-success: #058181;--color-status-success-bg: #e9f6f7;--color-status-warning: #c38a20;--color-status-warning-bg: #fff5e2;--color-status-danger: #d13131;--color-status-danger-bg: #fce7e7;--color-status-info: #054581;--color-status-info-bg: #e1edf6;--color-license-trial: #af41aa;--account-type-owner-bg: #fbe3ff;--account-type-owner-text: #042a2a;--account-type-client-bg: #ccf5fe;--account-type-client-text: #042a2a;--account-type-staff-bg: #f9eec7;--account-type-staff-text: #042a2a;--color-avatar-bg: #5a6a6a;--color-avatar-text: #ffffff;--color-avatar-border: #ffffff;--color-toggle-chip-bg: #e9f6f7;--color-toggle-chip-text: #042a2a;--color-toggle-chip-border: #dbeae3;--color-toggle-chip-hover-bg: #41aaaf;--color-toggle-chip-hover-text: #ffffff;--color-view-only-bg: #eaeaea;--color-view-only-text: #5a6a6a;--color-view-only-border: #d7d7d7;--font-family: Inter, sans-serif;--font-size-base: 14px;--font-size-small: 12px;--border-radius-base: 4px;--border-radius-card: 12px;--color-on-primary: #052325;--color-step-current-bg: var(--color-surface-raised);--color-step-current-border: var(--color-primary);--color-step-current-icon: var(--color-primary);--btn-primary-color: var(--color-primary);--btn-primary-hover-bg: var(--color-primary-hover);--btn-accent-bg: #ffbc3e;--btn-accent-hover: #edac32;--btn-warning-bg: #fce7e7;--btn-warning-text: #d13131;--btn-dark-text: var(--color-text-dark);--btn-icon-bg: #48b9bf;--btn-icon-hover-bg: #fff5e2;--btn-disabled-border: #cccccc;--btn-disabled-text: rgba(46, 46, 46, 0.45);--btn-disabled-bg: rgba(46, 46, 46, 0.04);--ant-color-primary: #41aaaf;--ant-color-primary-hover: #64bbbd;--ant-color-link: #5e87b0;--ant-color-link-hover: #406182;--ant-color-text: #2e2e2e;--ant-color-text-base: #2e2e2e;--ant-color-border: #cccccc;--ant-color-error: #b94a48;--ant-color-bg-layout: #eaf6f7;--ant-border-radius: 4px;--ant-border-radius-lg: var(--border-radius-card, 12px);--ant-font-family: Inter, sans-serif;--ant-font-size: 14px}html[data-theme=light]{--color-primary: #41aaaf;--color-primary-hover: #64bbbd;--color-primary-soft: #e6f7f7;--color-text-disabled: #bfbfbf;--color-text-dark: #042a2a;--color-text-base: #2e2e2e;--color-text-muted: #5a6a6a;--color-segmented-item: #5a6a6a;--color-tag-disabled: #5a6a6a;--color-placeholder: #5a6a6a;--color-border: #dbeae3;--color-surface: #f3f7f8;--color-layout-bg: #eaf6f7;--color-drawer-bg: var(--color-layout-bg);--color-surface-base: #ffffff;--color-surface-raised: #ffffff;--color-row-hover: #e6eff2;--color-calendar-today-bg: #e6eff2;--color-calendar-empty-text: #d0d0d0;--color-logo-tile-bg: #ffffff;--color-logo-tile-border: var(--color-border);--color-on-logo-tile: #042a2a;--color-on-logo-tile-muted: #5a6a6a;--ai-scanning-logo-color: #042a2a;--color-bg-mask: rgba(0, 0, 0, 0.45);--file-panel-resize-strip-bg-hover: #ebf4f6;--file-panel-resize-strip-bg-active: rgba(65, 170, 175, 0.12);--color-link: #5e87b0;--color-link-hover: #406182;--color-error: #b94a48;--color-status-success: #058181;--color-status-success-bg: #e9f6f7;--color-status-warning: #c38a20;--color-status-warning-bg: #fff5e2;--color-status-danger: #d13131;--color-status-danger-bg: #fce7e7;--color-status-info: #054581;--color-status-info-bg: #e1edf6;--color-license-trial: #af41aa;--color-on-primary: #ffffff;--color-step-current-bg: var(--color-surface-raised);--color-step-current-border: var(--color-primary);--color-step-current-icon: var(--color-primary);--account-type-owner-bg: #fbe3ff;--account-type-owner-text: #042a2a;--account-type-client-bg: #ccf5fe;--account-type-client-text: #042a2a;--account-type-staff-bg: #f9eec7;--account-type-staff-text: #042a2a;--color-avatar-bg: #5a6a6a;--color-avatar-text: #ffffff;--color-avatar-border: #ffffff;--color-toggle-chip-bg: #e9f6f7;--color-toggle-chip-text: #042a2a;--color-toggle-chip-border: #dbeae3;--color-toggle-chip-hover-bg: #41aaaf;--color-toggle-chip-hover-text: #ffffff;--color-view-only-bg: #eaeaea;--color-view-only-text: #5a6a6a;--color-view-only-border: #d7d7d7;--btn-primary-color: var(--color-primary);--btn-primary-hover-bg: var(--color-primary-hover);--btn-accent-bg: #ffbc3e;--btn-accent-hover: #edac32;--btn-warning-bg: #fce7e7;--btn-warning-text: #d13131;--btn-dark-text: var(--color-text-dark);--btn-icon-bg: #48b9bf;--btn-icon-hover-bg: #fff5e2;--btn-disabled-border: #cccccc;--btn-disabled-text: rgba(46, 46, 46, 0.45);--btn-disabled-bg: rgba(46, 46, 46, 0.04);--ant-color-primary: #41aaaf;--ant-color-primary-hover: #64bbbd;--ant-color-link: #5e87b0;--ant-color-link-hover: #406182;--ant-color-text: #2e2e2e;--ant-color-text-base: #2e2e2e;--ant-color-border: #cccccc;--ant-color-error: #b94a48;--ant-color-bg-layout: #eaf6f7;--ant-border-radius-lg: var(--border-radius-card, 12px)}html[data-theme=dark]{--color-primary: #62c8cd;--color-primary-hover: #7dd4d8;--color-primary-soft: #274547;--color-sso-button-bg: #274547;--color-text-disabled: #6f7f80;--color-text-dark: #f3f7f8;--color-text-base: #e3eaeb;--color-text-muted: #a9b8b9;--color-segmented-item: #b8c8c9;--color-tag-disabled: #9ba9aa;--color-placeholder: #8ea1a2;--color-border: #355356;--color-surface: #132122;--color-layout-bg: #0c1718;--color-drawer-bg: var(--color-layout-bg);--color-surface-base: #091213;--color-surface-raised: #1a2b2c;--color-row-hover: #1a2b2c;--color-calendar-today-bg: #274547;--color-calendar-empty-text: #6f7f80;--color-logo-tile-bg: #132122;--color-logo-tile-border: var(--color-border);--color-on-logo-tile: #e3eaeb;--color-on-logo-tile-muted: #a9b8b9;--ai-scanning-logo-color: #ffffff;--color-bg-mask: rgba(0, 0, 0, 0.65);--file-panel-resize-strip-bg-hover: #274547;--file-panel-resize-strip-bg-active: rgba(98, 200, 205, 0.22);--color-link: #95b9df;--color-link-hover: #bed6ef;--color-error: #ff8f8f;--color-status-success: #68d7cb;--color-status-success-bg: #132a27;--color-status-warning: #f1c56a;--color-status-warning-bg: #332812;--color-status-danger: #ff8f8f;--color-status-danger-bg: #371b1b;--color-status-info: #8fbff5;--color-status-info-bg: #16263a;--color-license-trial: #cf7dcb;--color-on-primary: #052325;--color-step-current-bg: var(--color-surface-raised);--color-step-current-border: var(--color-primary);--color-step-current-icon: var(--color-primary);--account-type-owner-bg: #3a2840;--account-type-owner-text: #f0c8ff;--account-type-client-bg: #1a3438;--account-type-client-text: #9ee8f5;--account-type-staff-bg: #3a3420;--account-type-staff-text: #f5e6a8;--color-avatar-bg: #4d6264;--color-avatar-text: #e3eaeb;--color-avatar-border: #132122;--color-toggle-chip-bg: #e9f6f7;--color-toggle-chip-text: #042a2a;--color-toggle-chip-border: #dbeae3;--color-toggle-chip-hover-bg: #62c8cd;--color-toggle-chip-hover-text: #ffffff;--color-view-only-bg: #2a3536;--color-view-only-text: #c5d0d1;--color-view-only-border: #455556;--btn-primary-color: var(--color-primary);--btn-primary-hover-bg: var(--color-primary-hover);--btn-accent-bg: #f1c56a;--btn-accent-hover: #f5d38e;--btn-warning-bg: #371b1b;--btn-warning-text: #ff8f8f;--btn-dark-text: #052325;--btn-icon-bg: #4fb9be;--btn-icon-hover-bg: #332812;--btn-disabled-border: #355356;--btn-disabled-text: #a9b8b9;--btn-disabled-bg: #1a2b2c;--ant-color-primary: var(--color-primary);--ant-color-primary-hover: var(--color-primary-hover);--ant-color-link: var(--color-link);--ant-color-link-hover: var(--color-link-hover);--ant-color-text: var(--color-text-base);--ant-color-text-base: var(--color-text-base);--ant-color-text-heading: var(--color-text-base);--ant-color-text-secondary: var(--color-text-muted);--ant-color-text-description: var(--color-text-muted);--ant-color-icon: var(--color-text-muted);--ant-color-icon-hover: var(--color-text-base);--ant-color-border: var(--color-border);--ant-color-error: var(--color-error);--ant-color-bg-layout: var(--color-layout-bg);--ant-border-radius-lg: var(--border-radius-card, 12px)}html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0}:focus:not(:focus-visible){outline:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote::before,blockquote::after,q::before,q::after{content:"";content:none}table{border-collapse:collapse;border-spacing:0}input[type=search]{-webkit-appearance:none;-moz-appearance:none;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration,input[type=search]::-webkit-search-results-button,input[type=search]::-webkit-search-results-decoration{-webkit-appearance:none;-moz-appearance:none}textarea{overflow:auto;vertical-align:top;resize:vertical}audio,canvas,video{display:inline-block;*display:inline;*zoom:1;max-width:100%}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}a:focus{outline:thin dotted}a:active,a:hover{outline:0}img{border:0;-ms-interpolation-mode:bicubic}figure{margin:0}form{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0;white-space:normal;*margin-left:-7px}button,input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}button,input{line-height:normal}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer;*overflow:visible}button[disabled],html input[disabled]{cursor:default}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0;*height:13px;*width:13px}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}html,button,input,select,textarea{color:#222}::-moz-selection{background:#b3d4fc;text-shadow:none}::selection{background:#b3d4fc;text-shadow:none}img{vertical-align:middle}fieldset{border:0;margin:0;padding:0}textarea{resize:vertical}.chromeframe{margin:.2em 0;background:#ccc;color:#000;padding:.2em 0}.scope-pwa-install-modal__intro{margin:0;font-size:14px;line-height:1.5;color:var(--color-text-muted, #5a6a6a);text-align:center}.scope-pwa-install-modal__guide{text-align:left}.scope-pwa-install-modal__steps{margin:12px 0 0;padding-left:1.25rem;font-size:14px;line-height:1.5;color:var(--color-text-base, #2e2e2e)}.scope-pwa-install-modal__steps li+li{margin-top:10px}.scope-pwa-install-modal__share-icon{margin-right:6px;color:var(--color-primary, #41aaaf);vertical-align:-0.15em}.scope-pwa-install-modal .ant-modal-close{display:none !important}@media(min-width: 768px){.scope-pwa-install-modal{display:none}}.scope-pwa-install-banner{position:fixed;z-index:1100;left:12px;right:12px;bottom:12px;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:12px;padding:14px 16px;border-radius:10px;border:1px solid var(--color-border, #dbeae3);background:var(--color-surface-raised, #ffffff);color:var(--color-text-base, #2e2e2e);box-shadow:0 8px 24px rgba(0,0,0,.12)}.scope-pwa-install-banner__content{flex:1 1 180px;min-width:0}.scope-pwa-install-banner__title{margin:0 0 4px;font-size:15px;font-weight:600;color:var(--color-text-base, #2e2e2e)}.scope-pwa-install-banner__body{margin:0;font-size:13px;line-height:1.4;color:var(--color-text-muted, #5a6a6a)}.scope-pwa-install-banner__actions{display:flex;flex-wrap:wrap;gap:8px;align-items:center}.scope-pwa-install-banner__cta,.scope-pwa-install-banner__dismiss{appearance:none;border-radius:var(--border-radius-base, 4px);font-size:13px;font-weight:600;line-height:1.2;padding:8px 14px;cursor:pointer}.scope-pwa-install-banner__cta{border:1px solid var(--color-primary, #41aaaf);background:var(--color-primary, #41aaaf);color:var(--color-on-primary, #052325)}.scope-pwa-install-banner__dismiss{border:1px solid var(--color-border, #dbeae3);background:rgba(0,0,0,0);color:var(--color-text-base, #2e2e2e)}@media(min-width: 768px){.scope-pwa-install-banner{display:none}}html.pwa-standalone{--pwa-safe-top: env(safe-area-inset-top, 0px);--pwa-safe-bottom: env(safe-area-inset-bottom, 0px);--pwa-safe-left: env(safe-area-inset-left, 0px);--pwa-safe-right: env(safe-area-inset-right, 0px)}html.pwa-standalone .app-shell{height:calc(100dvh - var(--trial-banner-height, 0px))}html.pwa-standalone:has(.app-root--pwa-mobile) .app-shell{height:calc(100dvh - var(--trial-banner-height, 0px) - var(--pwa-bottom-nav-height))}html.pwa-standalone .side-panel{min-height:100dvh;padding-top:calc(20px + var(--pwa-safe-top));padding-bottom:var(--pwa-safe-bottom)}html.pwa-standalone .header-container{top:var(--pwa-safe-top);padding-inline:calc(var(--pwa-content-gutter, 16px) + env(safe-area-inset-left, 0px)) calc(var(--pwa-content-gutter, 16px) + env(safe-area-inset-right, 0px))}html.pwa-standalone .top-pad{padding-top:calc(70px + var(--pwa-safe-top))}html.pwa-standalone .scope-pwa-install-banner{bottom:calc(var(--pwa-bottom-nav-height, 64px) + 8px);left:calc(12px + var(--pwa-safe-left));right:calc(12px + var(--pwa-safe-right))}.app-root--pwa-mobile{--pwa-safe-top: env(safe-area-inset-top, 0px);--pwa-safe-bottom: env(safe-area-inset-bottom, 0px);--pwa-safe-left: env(safe-area-inset-left, 0px);--pwa-safe-right: env(safe-area-inset-right, 0px);--pwa-content-gutter: 16px;--pwa-card-inset: 16px;--pwa-header-height: 84px;--pwa-bottom-nav-height: calc(64px + env(safe-area-inset-bottom, 0px));background:var(--color-surface-raised, #ffffff)}html.pwa-standalone:has(.app-root--pwa-mobile) body{background:var(--color-surface-raised, #ffffff)}html[data-theme=dark].pwa-standalone:has(.app-root--pwa-mobile) body,html[data-theme=dark] .app-root--pwa-mobile{background:var(--color-surface-base, #091213)}.app-root--pwa-mobile .app-shell{height:calc(100dvh - var(--trial-banner-height, 0px) - var(--pwa-bottom-nav-height))}.app-root--pwa-mobile .app-shell-main>.layout,.app-root--pwa-mobile .app-shell-main>.layout-wide,.app-root--pwa-mobile .app-shell-main>.layout-narrow{overscroll-behavior-y:contain}.app-root--pwa-mobile .scope-pwa-install-banner{bottom:calc(var(--pwa-bottom-nav-height) + 8px);left:calc(var(--pwa-content-gutter) + var(--pwa-safe-left));right:calc(var(--pwa-content-gutter) + var(--pwa-safe-right))}.app-root--pwa-mobile.header-container--pwa-compact,.app-root--pwa-mobile .header-container--pwa-compact{--pwa-header-height: 56px}.app-root--pwa-mobile:has(.header-container--pwa-compact){--pwa-header-height: 56px}.app-root--pwa-mobile:has(.header-container--pwa-submission){--pwa-header-height: 120px}.app-root--pwa-mobile .header-container--pwa-submission .scope-pwa-header__title-row{align-items:flex-start;min-height:44px;padding-inline-end:8px}.app-root--pwa-mobile .header-container--pwa-submission .scope-pwa-header__back{top:2px;transform:none}.app-root--pwa-mobile .header-container--pwa-submission .scope-pwa-header__title.ant-typography,.app-root--pwa-mobile .header-container--pwa-submission .scope-pwa-header__title.ant-typography h4{display:flex;flex-direction:column;align-items:center;gap:2px}.app-root--pwa-mobile .header-container--pwa-submission .scope-pwa-header__pre{font-size:13px !important;font-weight:400 !important;line-height:1.3 !important}.app-root--pwa-mobile .header-container--pwa-submission .scope-pwa-header__pre a{pointer-events:auto}.app-root--pwa-mobile .header-container--pwa-submission .scope-pwa-header__main{display:block;width:100%;max-width:100%;font-size:15px !important;line-height:1.25 !important;white-space:normal;overflow:visible;text-overflow:unset}.app-root--pwa-mobile .app-shell-side-spacer{display:none}.app-root--pwa-mobile .header-container--pwa{border-bottom:1px solid var(--color-border, #dbeae3)}.app-root--pwa-mobile .header-container--pwa-compact{padding-bottom:8px}.app-root--pwa-mobile .scope-pwa-header__actions{width:100%;max-width:100%;min-width:0;box-sizing:border-box}.app-root--pwa-mobile .header-container--pwa-compact .scope-pwa-header__actions{min-height:36px}.app-root--pwa-mobile .scope-pwa-page-title{width:100%;margin:0;font-size:17px;font-weight:600;line-height:1.3;text-align:center;color:var(--color-text-base, #2e2e2e)}.app-root--pwa-mobile .scope-pwa-entity-heading{position:relative;display:flex;align-items:center;justify-content:center;width:100%;box-sizing:border-box;margin:4px 0 16px;padding:12px 40px;min-height:48px}.app-root--pwa-mobile .scope-pwa-entity-heading__back{position:absolute;inset-inline-start:4px;top:50%;transform:translateY(-50%);display:inline-flex;align-items:center;justify-content:center;width:36px;height:36px;padding:0;border:none;border-radius:999px;background:rgba(0,0,0,0);color:var(--color-text-base, #2e2e2e);cursor:pointer}.app-root--pwa-mobile .scope-pwa-entity-heading__back:hover,.app-root--pwa-mobile .scope-pwa-entity-heading__back:focus-visible{background:var(--color-primary-soft, #e6f7f7);outline:none}.app-root--pwa-mobile .scope-pwa-entity-heading .scope-pwa-page-title{margin:0;padding:0}.app-root--pwa-mobile .scope-pwa-header{width:100%}.app-root--pwa-mobile .scope-pwa-header__title-row{position:relative;display:flex;justify-content:center;align-items:flex-start;margin-bottom:8px;padding-inline:36px;min-height:44px;height:auto;overflow:visible}.app-root--pwa-mobile .scope-pwa-header__title.ant-typography,.app-root--pwa-mobile .scope-pwa-header__title.ant-typography h4{display:flex;flex-direction:column;align-items:center;gap:2px;font-size:17px !important;font-weight:600 !important;line-height:1.3 !important;margin:0 !important;text-align:center;width:100%;white-space:normal;overflow:visible;pointer-events:none}.app-root--pwa-mobile .scope-pwa-header__pre a,.app-root--pwa-mobile .scope-pwa-header__main{pointer-events:auto}.app-root--pwa-mobile .scope-pwa-header__back{position:absolute;inset-inline-start:0;top:0;transform:none;display:inline-flex;align-items:center;justify-content:center;width:36px;height:36px;padding:0;border:none;border-radius:999px;background:rgba(0,0,0,0);color:var(--color-text-base, #2e2e2e);cursor:pointer;z-index:2;pointer-events:auto}.app-root--pwa-mobile .scope-pwa-header__back svg,.app-root--pwa-mobile .scope-pwa-header__back svg path{fill:currentColor}.app-root--pwa-mobile .scope-pwa-header__back:hover,.app-root--pwa-mobile .scope-pwa-header__back:focus-visible{background:var(--color-primary-soft, #e6f7f7);outline:none}.app-root--pwa-mobile .scope-pwa-header__main{display:block;width:100%;max-width:100%;line-height:1.25;white-space:normal;overflow:visible;text-overflow:unset;word-break:break-word}.app-root--pwa-mobile .scope-pwa-header__pre{margin-inline-end:0}.app-root--pwa-mobile .scope-pwa-header__actions{display:flex;flex-direction:row;flex-wrap:nowrap;align-items:center;gap:8px;width:100%}.app-root--pwa-mobile .scope-pwa-header__search{flex:1 1 auto;min-width:0;margin-top:0 !important;align-items:center}.app-root--pwa-mobile .scope-pwa-header__search .ant-select,.app-root--pwa-mobile .scope-pwa-header__search .ant-select-selector{width:100% !important;max-width:none !important}.app-root--pwa-mobile .scope-pwa-header__search .ant-select-single .ant-select-selector{height:36px !important;min-height:36px !important;align-items:center}.app-root--pwa-mobile .scope-pwa-header__search>.anticon{top:50% !important;transform:translateY(-50%)}.app-root--pwa-mobile .top-pad{padding-top:calc(var(--pwa-header-height) + var(--pwa-safe-top) + 4px)}.app-root--pwa-mobile .scope-pwa-main-content{padding-bottom:16px;padding-inline:calc(var(--pwa-content-gutter) + var(--pwa-safe-left)) calc(var(--pwa-content-gutter) + var(--pwa-safe-right));box-sizing:border-box}.app-root--pwa-mobile .header-container{inset-inline-start:0;width:100vw;padding-inline:calc(var(--pwa-content-gutter) + var(--pwa-safe-left)) calc(var(--pwa-content-gutter) + var(--pwa-safe-right));min-height:auto;height:auto;padding-top:calc(8px + var(--pwa-safe-top));padding-bottom:10px;overflow:visible}.app-root--pwa-mobile .scope-pwa-header,.app-root--pwa-mobile .scope-pwa-header__actions{overflow:visible}.scope-pwa-settings-btn{display:inline-flex;align-items:center;justify-content:center;flex:0 0 auto;width:36px;height:36px;padding:0;border:none;border-radius:50%;background:rgba(0,0,0,0);cursor:pointer;color:var(--color-text-base, #2e2e2e);transition:background .15s}.scope-pwa-settings-btn:hover,.scope-pwa-settings-btn:focus-visible{background:var(--color-primary-soft, #e6f7f7);outline:none}.scope-pwa-settings-btn__icon.anticon{font-size:20px;color:inherit}html[data-theme=dark] .scope-pwa-settings-btn{color:var(--color-text-base, #e3eaeb)}.app-root--pwa-mobile .scope-pwa-header-user{position:relative;display:flex;flex:0 0 auto;align-items:center;width:auto !important;max-width:none;overflow:visible}.app-root--pwa-mobile .scope-pwa-header-user .ant-spin-nested-loading,.app-root--pwa-mobile .scope-pwa-header-user .ant-spin-container{width:auto !important;overflow:visible !important}.app-root--pwa-mobile .scope-pwa-header-user .ant-spin-container>div{margin-top:0 !important;margin-bottom:0 !important;width:auto !important;max-width:none !important;overflow:visible !important}.app-root--pwa-mobile .scope-pwa-header-user>div{width:auto !important;max-width:none !important;overflow:visible !important}.app-root--pwa-mobile .scope-pwa-header-user .user-menu-button-small{min-width:36px;width:36px !important;max-width:36px !important;height:36px !important;min-height:36px !important;display:inline-flex !important;align-items:center;justify-content:center;padding:0;background:rgba(0,0,0,0);border:none;cursor:pointer;border-radius:50%;overflow:hidden}.app-root--pwa-mobile .scope-pwa-header-user .user-menu-button-small .ant-avatar{display:block;flex-shrink:0;line-height:32px !important}.app-root--pwa-mobile .scope-pwa-header-user .user-menu-button-small--brand{width:36px !important;max-width:36px !important;min-width:36px;height:36px !important;min-height:36px !important;border-radius:8px;overflow:visible;padding:0;cursor:default;pointer-events:none}.app-root--pwa-mobile .scope-pwa-header-user .user-menu-button-small__logo{display:block;height:36px;width:36px;object-fit:contain}.app-root--pwa-mobile .scope-pwa-header-user .user-picture{width:32px !important;height:32px !important}.app-root--pwa-mobile .scope-pwa-header-user .short-name-container>div,.app-root--pwa-mobile .scope-pwa-header-user .long-name-container>div{margin-top:0 !important}.user-menu-pwa-backdrop{position:fixed;inset:0;z-index:1295;margin:0;padding:0;border:none;background:rgba(0,0,0,.45);cursor:default;appearance:none}.user-menu-items.user-menu-items--pwa-header{position:fixed;z-index:1300;inset-inline-end:auto;bottom:auto;width:min(240px,100vw - 24px);max-width:calc(100vw - 24px);margin:0;padding:8px 0 12px;box-sizing:border-box;display:flex;flex-direction:column;border-radius:10px;background-color:var(--color-surface-raised, #ffffff);color:var(--color-text-base, #2e2e2e);box-shadow:0 8px 24px rgba(0,0,0,.12);border:1px solid var(--color-border, #dbeae3);font-family:Inter,sans-serif;font-size:14px;line-height:1.4;isolation:isolate}.user-menu-items.user-menu-items--pwa-header .action-box{margin:8px 16px 0;display:flex;align-items:center;justify-content:flex-start;cursor:pointer;color:var(--color-text-base, #2e2e2e);min-height:36px;gap:12px;text-align:start}.user-menu-items.user-menu-items--pwa-header .action-box-icon{display:inline-flex;align-items:center;justify-content:center;width:20px;height:20px;flex-shrink:0;color:var(--color-text-base, #2e2e2e)}.user-menu-items.user-menu-items--pwa-header .action-box-icon>svg,.user-menu-items.user-menu-items--pwa-header .action-box-icon>.anticon{width:20px !important;height:20px !important;font-size:18px !important;margin:0 !important;display:block;line-height:1}.user-menu-items.user-menu-items--pwa-header .action-box-icon>svg path[fill]:not([fill=none]),.user-menu-items.user-menu-items--pwa-header .action-box-icon>.anticon svg path[fill]:not([fill=none]){fill:currentColor !important}.user-menu-items.user-menu-items--pwa-header .action-box-icon>svg path[stroke]:not([stroke=none]),.user-menu-items.user-menu-items--pwa-header .action-box-icon>.anticon svg path[stroke]:not([stroke=none]){stroke:currentColor !important}.user-menu-items.user-menu-items--pwa-header .action-box-label{flex:1;min-width:0;text-align:start;white-space:nowrap;line-height:20px}html[data-theme=dark] .user-menu-items.user-menu-items--pwa-header{background-color:var(--color-surface-raised, #122022);color:var(--color-text-base, #e3eaeb);box-shadow:0 8px 24px rgba(0,0,0,.4);border-color:var(--color-border, #355356)}html[data-theme=dark] .user-menu-items.user-menu-items--pwa-header .action-box,html[data-theme=dark] .user-menu-items.user-menu-items--pwa-header .action-box-icon{color:var(--color-text-base, #e3eaeb)}.scope-pwa-bottom-nav{position:fixed;z-index:1200;left:0;right:0;bottom:0;box-sizing:border-box;display:flex;align-items:stretch;justify-content:space-around;gap:4px;padding:6px calc(var(--pwa-content-gutter, 16px) + env(safe-area-inset-right, 0px)) calc(6px + env(safe-area-inset-bottom, 0px)) calc(var(--pwa-content-gutter, 16px) + env(safe-area-inset-left, 0px));background-color:var(--color-surface-raised, #ffffff);border-top:1px solid var(--color-border, #dbeae3);box-shadow:0 -4px 16px rgba(0,0,0,.08);transform:translateZ(0);-webkit-transform:translateZ(0)}.scope-pwa-bottom-nav::after{content:"";position:absolute;left:0;right:0;bottom:-3px;height:4px;background-color:inherit;pointer-events:none}body.scope-pwa-vat-menu-open .scope-pwa-bottom-nav{border-top:0 !important;border-top-color:rgba(0,0,0,0) !important;box-shadow:none !important}body.scope-pwa-vat-menu-open .scope-pwa-vat-report-menu-backdrop{z-index:240}body.scope-pwa-vat-menu-open .scope-pwa-vat-report-menu.scope-pwa-vat-report-menu--dock{z-index:241}body.scope-pwa-vat-menu-open .scope-pwa-vat-transactions-header{visibility:hidden;pointer-events:none}.scope-pwa-bottom-nav__item{flex:1 1 0;min-width:0;max-width:none;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:4px;padding:6px 4px;border:none;border-radius:var(--border-radius-base, 4px);background:rgba(0,0,0,0);color:var(--color-text-muted, #5a6a6a);cursor:pointer;font:inherit}.scope-pwa-bottom-nav__item--active{color:var(--color-primary, #41aaaf)}.scope-pwa-bottom-nav__icon{display:flex;align-items:center;justify-content:center;width:24px;height:24px;color:inherit}.scope-pwa-bottom-nav__icon svg{width:22px;height:22px;display:block}.scope-pwa-bottom-nav__icon .anticon{font-size:22px;line-height:1;color:inherit}.scope-pwa-bottom-nav__item--active .scope-pwa-bottom-nav__icon svg path{fill:var(--color-primary, #41aaaf);stroke:var(--color-primary, #41aaaf)}.scope-pwa-bottom-nav__item--active .scope-pwa-bottom-nav__icon .anticon{color:var(--color-primary, #41aaaf)}.scope-pwa-settings-sheet{position:fixed;inset:0;z-index:1290;pointer-events:none}.scope-pwa-settings-sheet__backdrop{position:absolute;inset:0;border:none;padding:0;margin:0;background:rgba(4,42,42,.45);cursor:pointer;pointer-events:auto;appearance:none}.scope-pwa-settings-sheet__menu{position:absolute;right:calc(var(--pwa-content-gutter, 16px) + env(safe-area-inset-right, 0px));bottom:calc(var(--pwa-bottom-nav-height, 64px) + 8px);left:auto;width:min(240px,100vw - 24px);max-width:calc(100vw - 24px);margin:0;padding:8px 0 12px;box-sizing:border-box;display:flex;flex-direction:column;border-radius:10px;background-color:var(--color-surface-raised, #ffffff);color:var(--color-text-base, #2e2e2e);box-shadow:0 8px 24px rgba(0,0,0,.12);border:1px solid var(--color-border, #dbeae3);font-family:Inter,sans-serif;font-size:14px;line-height:1.4;pointer-events:auto;isolation:isolate}.scope-pwa-settings-sheet__menu .action-box{margin:8px 16px 0;display:flex;align-items:center;justify-content:flex-start;cursor:pointer;color:var(--color-text-base, #2e2e2e);min-height:36px;gap:12px;text-align:start}.scope-pwa-settings-sheet__menu .action-box-icon{display:inline-flex;align-items:center;justify-content:center;width:20px;height:20px;flex-shrink:0;color:var(--color-text-base, #2e2e2e)}.scope-pwa-settings-sheet__menu .action-box-icon>svg,.scope-pwa-settings-sheet__menu .action-box-icon>.anticon{width:20px !important;height:20px !important;font-size:18px !important;margin:0 !important;display:block;line-height:1}.scope-pwa-settings-sheet__menu .action-box-icon>svg path[fill]:not([fill=none]),.scope-pwa-settings-sheet__menu .action-box-icon>.anticon svg path[fill]:not([fill=none]){fill:currentColor !important}.scope-pwa-settings-sheet__menu .action-box-icon>svg path[stroke]:not([stroke=none]),.scope-pwa-settings-sheet__menu .action-box-icon>.anticon svg path[stroke]:not([stroke=none]){stroke:currentColor !important}.scope-pwa-settings-sheet__menu .action-box-label{flex:1;min-width:0}html[data-theme=dark] .scope-pwa-settings-sheet__menu{background-color:var(--color-surface-raised, #1a2b2c);border-color:var(--color-border, #355356);color:var(--color-text-base, #e3eaeb)}html[data-theme=dark] .scope-pwa-settings-sheet__menu .action-box,html[data-theme=dark] .scope-pwa-settings-sheet__menu .action-box-icon{color:var(--color-text-base, #e3eaeb)}.scope-pwa-capture-picker{position:fixed;inset:0;z-index:1300;display:flex;align-items:flex-end;justify-content:center;pointer-events:none}.scope-pwa-capture-picker__backdrop{position:absolute;inset:0;border:none;padding:0;margin:0;background:rgba(4,42,42,.45);cursor:pointer;pointer-events:auto}.scope-pwa-capture-picker__sheet{position:relative;z-index:1;width:100%;max-width:100%;max-height:min(85vh,680px);box-sizing:border-box;padding:20px var(--pwa-content-gutter, 16px) calc(20px + env(safe-area-inset-bottom, 0px));background:var(--color-surface-raised, #ffffff);border-top:1px solid var(--color-border, #dbeae3);border-radius:16px 16px 0 0;box-shadow:0 -8px 24px rgba(0,0,0,.12);overflow:hidden;pointer-events:auto}.scope-pwa-capture-picker__header{margin-bottom:14px}.scope-pwa-capture-picker__title{margin:0 0 4px;font-size:19px;font-weight:600;line-height:1.35;color:var(--color-text-base, #042a2a)}.scope-pwa-capture-picker__subtitle{margin:0;font-size:14px;line-height:1.4;color:var(--color-text-muted, #5a6a6a)}.scope-pwa-capture-picker__helper{margin:8px 0 0;font-size:13px;line-height:1.45;color:var(--color-text-muted, #5a6a6a)}.scope-pwa-capture-picker__list{list-style:none;margin:0;padding:0;overflow-y:auto;max-height:calc(min(85vh,680px) - 132px)}.scope-pwa-capture-picker__option{display:flex;flex-direction:column;align-items:flex-start;gap:2px;width:100%;box-sizing:border-box;margin:0 0 8px;padding:14px 16px;border:1px solid var(--color-border, #dbeae3);border-radius:10px;background:var(--color-surface, #f3f7f8);color:var(--color-text-base, #042a2a);font:inherit;text-align:start;cursor:pointer}.scope-pwa-capture-picker__option:hover,.scope-pwa-capture-picker__option:focus-visible{background:var(--color-primary-soft, #e6f7f7);border-color:var(--color-primary, #41aaaf);outline:none}.scope-pwa-capture-picker__option:last-child{margin-bottom:0}.scope-pwa-capture-picker__option--pinned{border-color:var(--color-primary, #41aaaf)}.scope-pwa-capture-picker__option-main{display:inline-flex;align-items:center;gap:8px;min-width:0;width:100%}.scope-pwa-capture-picker__option-pin{flex:0 0 auto;color:var(--color-primary, #41aaaf);font-size:14px}.scope-pwa-capture-picker__option-name{font-size:14px;font-weight:600;line-height:1.35;min-width:0}.scope-pwa-capture-picker__option-provider{display:inline-flex;align-items:center;gap:6px;min-width:0;font-size:12px;line-height:1.35;color:var(--color-text-muted, #5a6a6a);text-transform:capitalize}.scope-pwa-capture-picker__option-provider-icon{flex:0 0 auto;width:18px;height:18px;object-fit:contain;color:var(--color-text-muted, #5a6a6a)}.scope-pwa-home-entities{width:100%;max-width:100%;box-sizing:border-box;padding:4px 0 24px}.scope-pwa-home-entities__header{margin-bottom:16px}.scope-pwa-home-entities__title{margin:0 0 6px;font-size:20px;font-weight:600;line-height:1.3;color:var(--color-text-base, #2e2e2e)}.scope-pwa-home-entities__subtitle{margin:0;font-size:14px;line-height:1.4;color:var(--color-text-muted, #5a6a6a)}.scope-pwa-home-entities__note{margin:8px 0 0;font-size:13px;line-height:1.45;color:var(--color-text-muted, #5a6a6a)}.scope-pwa-home-entities__loading,.scope-pwa-home-entities__empty{padding:32px 8px;text-align:center;color:var(--color-text-muted, #5a6a6a);font-size:14px}.scope-pwa-home-entities__list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:10px}.scope-pwa-home-entities__option{display:flex;flex-direction:column;align-items:flex-start;gap:6px;width:100%;box-sizing:border-box;padding:14px 16px;border:1px solid var(--color-border, #dbeae3);border-radius:12px;background:var(--color-surface-raised, #ffffff);color:var(--color-text-base, #042a2a);font:inherit;text-align:start;cursor:pointer}.scope-pwa-home-entities__option:hover,.scope-pwa-home-entities__option:focus-visible{background:var(--color-primary-soft, #e6f7f7);border-color:var(--color-primary, #41aaaf);outline:none}.scope-pwa-home-entities__option--pinned{border-color:var(--color-primary, #41aaaf)}.scope-pwa-home-entities__option-main{display:inline-flex;align-items:center;gap:8px;min-width:0;width:100%}.scope-pwa-home-entities__option-pin{flex:0 0 auto;color:var(--color-primary, #41aaaf);font-size:14px}.scope-pwa-home-entities__option-name{font-size:15px;font-weight:600;line-height:1.3;color:var(--color-text-base, #2e2e2e)}.scope-pwa-home-entities__option-provider{display:inline-flex;align-items:center;gap:6px;font-size:12px;color:var(--color-text-muted, #5a6a6a);text-transform:capitalize}.scope-pwa-home-entities__option-provider-icon{flex:0 0 auto;width:18px;height:18px;object-fit:contain;color:var(--color-text-muted, #5a6a6a)}html[data-theme=dark] .scope-pwa-home-entities__option{background:var(--color-surface-raised, #1a2b2c);border-color:var(--color-border, #355356)}html[data-theme=dark] .scope-pwa-home-entities__option:hover,html[data-theme=dark] .scope-pwa-home-entities__option:focus-visible{background:var(--color-primary-soft, #123334)}.scope-webcam-capture{position:fixed;inset:0;z-index:1320;display:flex;align-items:center;justify-content:center;pointer-events:none}.scope-webcam-capture__backdrop{position:absolute;inset:0;border:none;padding:0;margin:0;background:rgba(4,42,42,.55);cursor:pointer;pointer-events:auto}.scope-webcam-capture__sheet{position:relative;z-index:1;width:min(560px,100vw - 32px);max-height:min(90vh,720px);box-sizing:border-box;padding:20px;background:var(--color-surface-raised, #ffffff);border:1px solid var(--color-border, #dbeae3);border-radius:12px;box-shadow:0 8px 24px rgba(0,0,0,.16);pointer-events:auto;display:flex;flex-direction:column;gap:14px}.scope-webcam-capture__title{margin:0;font-size:18px;font-weight:600;line-height:1.35;color:var(--color-text-base, #042a2a)}.scope-webcam-capture__video{width:100%;max-height:min(56vh,420px);border-radius:10px;background:var(--color-surface, #132122);object-fit:cover}.scope-webcam-capture__error{margin:0;padding:16px;border-radius:10px;background:var(--color-surface, #f3f7f8);color:var(--color-text-muted, #5a6a6a);font-size:14px;line-height:1.45}.scope-webcam-capture__actions{display:flex;justify-content:center;flex-wrap:wrap;gap:10px}.scope-webcam-capture__dropzone-btn{position:relative;z-index:1}.scope-pwa-bottom-nav__label{font-size:10px;font-weight:600;line-height:1.2;text-align:center;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:100%}html[data-theme=dark] .scope-pwa-bottom-nav{background:var(--color-surface-base, #091213);border-top-color:var(--color-border, #355356);box-shadow:0 -4px 16px rgba(0,0,0,.35)}.app-root--pwa-mobile .scope-pwa-submissions-list{padding-top:8px;padding-bottom:16px;box-sizing:border-box}.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submissions-summary{display:grid !important;grid-template-columns:repeat(2, minmax(0, 1fr));gap:10px;margin-bottom:16px !important;justify-content:stretch !important}.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submissions-summary>*{width:100% !important;min-width:0 !important;height:auto !important;min-height:108px;padding:16px !important}.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submissions-summary .container-number{font-size:28px !important;line-height:1.2 !important}.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submissions-summary .container-title{font-size:14px !important;line-height:1.35 !important}.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submissions-summary .container-icon{width:20px !important;height:20px !important}.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submissions-toolbar{flex-direction:column;align-items:stretch !important;gap:12px;margin-bottom:16px !important}.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submissions-filters{margin-bottom:12px}.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submissions-filters .ant-row{margin-inline:0 !important}.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submissions-filters .ant-col{padding-inline:0 !important}.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submissions-filters .ant-col>div:first-child{flex-direction:column !important;align-items:stretch !important;gap:10px}.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submissions-filters .ant-space{display:grid !important;grid-template-columns:minmax(0, 1fr) minmax(0, 1fr) !important;align-items:stretch !important;width:100%;gap:10px !important;column-gap:10px !important;row-gap:10px !important}.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submissions-filters .ant-space-item{width:auto !important;max-width:none !important;min-width:0 !important;margin:0 !important}.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submissions-filters .ant-space-item:first-child{grid-column:1/-1}.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submissions-filters .ant-space-item:has(>.scope-table-filters-appended){grid-column:1/-1}.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submissions-filters .ant-badge{display:block;width:100%}.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submissions-filters .ant-select{width:100% !important;min-width:0 !important}.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submissions-filters .scope-filter-select.ant-select .ant-select-selector{overflow:hidden}.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submissions-filters .scope-filter-select.ant-select.selected-filter .ant-select-selector{position:relative}.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submissions-filters .scope-filter-select.ant-select.selected-filter .ant-select-selector::after{color:var(--color-text-base, #042a2a) !important;font-weight:700 !important;max-width:none !important;overflow:visible !important;text-overflow:unset !important;white-space:nowrap !important}.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submissions-export{margin-bottom:12px}.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submissions-export .ant-btn,.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submissions-export button{width:100%;justify-content:center}.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submissions-cards{display:flex;flex-direction:column;gap:10px;width:100%;box-sizing:border-box;scroll-margin-top:calc(var(--pwa-header-height, 56px) + var(--pwa-safe-top, 0px) + 8px)}.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submission-card--global{flex-direction:column;align-items:stretch;gap:12px;padding:14px;background:var(--color-surface-raised, #ffffff);border:1px solid var(--color-border, #dbeae3);border-radius:12px}.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submission-card__body{min-width:0;width:100%}.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submission-card__header{display:flex;align-items:flex-start;gap:12px;min-width:0}.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submission-card__provider{flex:0 0 auto;display:inline-flex;align-items:flex-start;justify-content:center;width:28px;min-width:28px;background:rgba(0,0,0,0);border:none;border-radius:0;color:var(--color-text-base, #2e2e2e)}.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submission-card__provider img,.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submission-card__provider svg{width:25px;height:25px;object-fit:contain;display:block}.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submission-card__header-text{min-width:0;flex:1 1 auto}.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submission-card__title{font-size:15px;font-weight:600;color:var(--color-text-base, #042a2a);line-height:1.35;overflow-wrap:anywhere}.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submission-card__entity{margin-top:4px;font-size:13px;color:var(--color-text-base, #042a2a);line-height:1.35;overflow-wrap:anywhere}.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submission-card__period{margin-top:6px;font-size:13px;font-weight:600;color:var(--color-text-base, #042a2a);line-height:1.35;overflow-wrap:anywhere}.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submission-card__meta{margin-top:4px;font-size:12px;color:var(--color-text-muted, #5a6a6a);line-height:1.35}.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submission-card__status{margin-top:8px}.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submission-card__actions{display:flex;justify-content:stretch;width:100%}.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submission-card__actions .ant-btn,.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submission-card__actions button{width:100%;max-width:100%}.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submissions-cards__empty{padding:20px 16px;text-align:center;font-size:14px;color:var(--color-text-muted, #5a6a6a);background:var(--color-surface-raised, #ffffff);border:1px dashed var(--color-border, #dbeae3);border-radius:12px;overflow:hidden}.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submissions-cards__footer{display:flex;flex-direction:column;align-items:stretch;gap:8px;margin-top:4px}.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submissions-cards__summary{font-size:12px;color:var(--color-text-base, #042a2a);line-height:1.35}.app-root--pwa-mobile .scope-pwa-submissions-list .scope-pwa-submissions-cards__pager{display:flex;justify-content:space-between;gap:8px;flex-wrap:wrap}.app-root--pwa-mobile .scope-pwa-submissions-list .ant-table-wrapper{overflow-x:auto}.scope-pwa-dashboard{overflow-x:hidden;padding-top:8px;padding-bottom:16px;box-sizing:border-box}.app-root--pwa-mobile .scope-pwa-entity-details .top-wrapper{display:none !important}.app-root--pwa-mobile .scope-pwa-entity-details .entity-details-tab-nav-wrap.scope-pwa-entity-tabs--split{width:100%;padding:0;margin:0 0 10px;gap:0;overflow:hidden;border-bottom-color:var(--color-border, #dbeae3);min-height:0}.app-root--pwa-mobile .scope-pwa-entity-details .entity-details-tab-nav-wrap.scope-pwa-entity-tabs--split>span,.app-root--pwa-mobile .scope-pwa-entity-details .entity-details-tab-nav-wrap.scope-pwa-entity-tabs--split>button.entity-details-tab-nav-btn{flex:1 1 0;max-width:none;min-width:0;display:flex;justify-content:center;align-items:stretch}.app-root--pwa-mobile .scope-pwa-entity-details .entity-details-tab-nav-wrap.scope-pwa-entity-tabs--split .entity-details-tab-nav-btn{flex:1 1 0;max-width:100%;width:100%;text-align:center;padding:10px 8px;margin:0;font-size:13px;font-weight:500;line-height:1.3;box-sizing:border-box}.app-root--pwa-mobile .scope-pwa-entity-details .entity-details-tab-nav-wrap.scope-pwa-entity-tabs--split .entity-details-tab-nav-btn::after{inset-inline-start:10px;inset-inline-end:10px;height:2px}.app-root--pwa-mobile .scope-pwa-entity-details .entity-details-tab-nav-wrap.scope-pwa-entity-tabs--split .entity-details-tab-nav-btn:disabled,.app-root--pwa-mobile .scope-pwa-entity-details .entity-details-tab-nav-wrap.scope-pwa-entity-tabs--split .entity-details-tab-nav-btn.entity-details-tab-nav-btn-disabled{color:var(--color-text-disabled, #bfbfbf) !important;opacity:.65;cursor:not-allowed;pointer-events:none}.app-root--pwa-mobile .scope-pwa-entity-details .entity-details-tab-nav-wrap.scope-pwa-entity-tabs--split .entity-details-tab-nav-btn:disabled:hover,.app-root--pwa-mobile .scope-pwa-entity-details .entity-details-tab-nav-wrap.scope-pwa-entity-tabs--split .entity-details-tab-nav-btn.entity-details-tab-nav-btn-disabled:hover{color:var(--color-text-disabled, #bfbfbf) !important}.app-root--pwa-mobile .scope-pwa-entity-details .entity-capture-tab,.app-root--pwa-mobile .scope-pwa-entity-details .entity-transactions-tab,.app-root--pwa-mobile .scope-pwa-entity-details .entity-vat-returns-tab.scope-pwa-vat-returns-tab{min-height:0;padding-bottom:16px;background-color:var(--color-surface, #f3f7f8);box-sizing:border-box}.app-root--pwa-mobile .scope-pwa-entity-details .entity-vat-returns-tab.scope-pwa-vat-returns-tab:has(.scope-pwa-entity-submissions-empty){overflow:hidden;min-height:0;height:auto}.app-root--pwa-mobile .scope-pwa-entity-details .entity-details-tab-panel{overflow-y:auto}.app-root--pwa-mobile .scope-pwa-entity-details .entity-details-tab-panel:has(.scope-pwa-entity-submissions-empty){overflow-y:hidden;scrollbar-width:none}.app-root--pwa-mobile .scope-pwa-entity-details .entity-details-tab-panel:has(.scope-pwa-entity-submissions-empty)::-webkit-scrollbar{display:none;width:0}.app-root--pwa-mobile .scope-pwa-entity-details .entity-transactions-tab.scope-pwa-transactions-tab{padding:8px 16px 16px !important;min-height:0 !important;width:100%;max-width:100%;overflow-x:hidden;box-sizing:border-box}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-layout{width:100% !important;max-width:100% !important;min-width:0 !important;overflow-x:hidden;box-sizing:border-box}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-card.ant-card{width:100% !important;max-width:100% !important;min-width:0 !important;box-sizing:border-box;background:rgba(0,0,0,0) !important;border:none !important;box-shadow:none !important}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-card.ant-card .ant-card-body{padding:0 !important}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-card-inner{padding:0 !important;width:100%;max-width:100%;overflow-x:hidden;box-sizing:border-box}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-header{flex-direction:column !important;align-items:stretch !important;gap:8px !important;margin-bottom:8px !important;padding-bottom:8px !important;border-bottom:1px solid var(--color-border, #dbeae3);width:100%;max-width:100%;min-width:0;box-sizing:border-box}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-header>div:first-child{width:100%;max-width:100%;min-width:0;box-sizing:border-box}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-stepper-row{width:100%;max-width:100%;min-width:0;flex-direction:column;align-items:stretch;gap:6px;overflow:visible;box-sizing:border-box}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-stepper-row .transactions-file-state-stepper{flex:0 0 auto;width:100%;min-width:0}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-header-actions{display:grid !important;grid-template-columns:minmax(0, 1fr) minmax(0, 1fr) auto;grid-template-areas:"upload panel tip";align-items:center;width:100%;max-width:100%;box-sizing:border-box;gap:8px;min-width:0}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-header-actions>span,.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-header-actions>div,.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-header-actions>button{display:flex;min-width:0;max-width:100%;box-sizing:border-box}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-header-actions .ant-btn,.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-header-actions button{width:100% !important;max-width:100% !important;min-width:0 !important;justify-content:center;box-sizing:border-box}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-action--upload,.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-action--panel{width:100%;max-width:100%;min-width:0;box-sizing:border-box}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-action--tip{grid-area:tip;display:flex !important;align-items:center;justify-content:center;flex:0 0 auto;width:auto;max-width:none;min-width:0}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-table-wrap{width:100%;max-width:100%;min-width:0;overflow-x:hidden;box-sizing:border-box}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-page-summary{display:flex;flex-direction:column;gap:4px;width:100%;max-width:100%;margin:0 0 10px;padding:0;box-sizing:border-box;font-size:12px;line-height:1.45;color:var(--color-text-muted, #5a6a6a);overflow-wrap:anywhere}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-page-summary>div{display:flex;flex-direction:column;align-items:flex-start;gap:4px;width:100%;max-width:100%;text-align:start}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-page-summary span[aria-hidden=true]{display:none}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-action--upload{grid-area:upload}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-action--panel{grid-area:panel}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-open-panel-btn{appearance:none;width:100%;min-height:34px;display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:6px 10px;border-radius:999px;border:1px solid var(--color-border, #dbeae3);background:var(--color-surface-raised, #ffffff);color:var(--color-text-base, #042a2a);font-family:Inter,sans-serif;font-size:12px;font-weight:600;line-height:1.2;cursor:pointer;box-sizing:border-box}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-open-panel-btn .anticon{font-size:14px;color:var(--color-text-muted, #5a6a6a)}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-open-panel-btn:hover{border-color:var(--color-primary, #41aaaf);background:var(--color-primary-soft, #e6f7f7)}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-open-panel-btn:focus-visible{outline:2px solid var(--color-primary, #41aaaf);outline-offset:2px}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-tab .transactions-file-state-stepper{display:flex;flex-direction:column;flex-wrap:nowrap;align-items:stretch;width:100%;max-width:100%;min-width:0;gap:6px;overflow:visible;padding-bottom:0;box-sizing:border-box}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-tab .transactions-file-state-stepper[data-step-count="3"]{grid-template-columns:none}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-tab .transactions-file-state-stepper[data-step-count="2"]{grid-template-columns:none}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-tab button.transactions-file-state-tab{min-height:36px;height:auto;width:100%;min-width:0;max-width:none;flex:0 0 auto;padding:8px 12px;font-size:13px;white-space:normal;border-radius:10px}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-tab .transactions-file-state-stepper__label,.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-tab .transactions-file-state-stepper__count{font-size:13px;line-height:1.25}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-tab .transactions-file-state-stepper__label{flex:1 1 auto;order:1;text-align:start;overflow:visible;text-overflow:unset;white-space:normal}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-tab .transactions-file-state-stepper__count{order:2;font-weight:600;flex:0 0 auto}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-tab .transactions-file-state-stepper__step{width:100%;min-width:0;max-width:none;flex:0 0 auto}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-tab .transactions-file-state-stepper__step-content{display:flex;flex-wrap:nowrap;justify-content:flex-start;align-items:center;gap:8px;width:100%;min-width:0}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-tab .transactions-file-state-stepper__step .capture-workflow-metric__icon{order:0;font-size:14px;flex:0 0 auto}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-tab .transactions-file-state-stepper__connector{display:none;justify-content:center;align-items:center;align-self:center;flex:0 0 auto;width:10px;min-width:10px;padding:0;transform:none;opacity:.7}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-tab .transactions-file-state-stepper__connector .anticon{font-size:10px}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-filters{margin-bottom:8px}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-filters .ant-row{margin-inline:0 !important}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-filters .ant-col{padding-inline:0 !important}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-filters .ant-col>div:first-child{flex-direction:column !important;align-items:stretch !important;gap:10px}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-filters .ant-space{display:grid !important;grid-template-columns:minmax(0, 1fr) minmax(0, 1fr) !important;align-items:stretch !important;width:100%;gap:10px !important;column-gap:10px !important;row-gap:10px !important}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-filters .ant-space-item{width:auto !important;max-width:none !important;min-width:0 !important;margin:0 !important}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-filters .ant-space-item:first-child{grid-column:1/-1}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-filters .ant-space-item:has(>.scope-table-filters-appended){grid-column:1/-1}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-filters .ant-badge{display:block;width:100%}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-filters .ant-select{width:100% !important;min-width:0 !important}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-filters .scope-filter-select.ant-select .ant-select-selector{overflow:hidden}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-tab .entity-transactions-meta-bar,.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-tab .entity-transactions-filter-totals{flex-direction:column;align-items:flex-start !important;text-align:start !important;gap:6px}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-tab .transactions-tab-wrapper{flex-direction:column !important;padding-right:0 !important;min-height:0 !important}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-tab .validation-errors-table.transaction-table{width:100%;max-width:100%}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-tab .validation-errors-table.transaction-table .ant-table-thead>tr>th,.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-tab .validation-errors-table.transaction-table .ant-table-tbody>tr>td{padding:8px 6px !important;font-size:12px}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-tab .validation-errors-table.transaction-table .ant-table-cell .ant-btn{min-height:36px;padding-inline:10px}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-tab .ant-table-wrapper{width:100%;max-width:100%;overflow-x:auto}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-tab .transactions-file-panel,.app-root--pwa-mobile .scope-pwa-entity-details .transactions-file-panel--pwa{position:fixed !important;inset-inline:0 !important;bottom:calc(56px + env(safe-area-inset-bottom, 0px)) !important;top:auto !important;left:0 !important;right:0 !important;width:100% !important;max-width:100% !important;height:min(60vh,520px) !important;max-height:min(60vh,520px) !important;z-index:25 !important;border-radius:16px 16px 0 0;border-top:1px solid var(--color-border, #dbeae3);box-shadow:0 -8px 32px rgba(0,0,0,.25);flex-direction:column !important;overflow:hidden !important;overflow-y:auto !important}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-tab .transactions-file-panel>[role=separator],.app-root--pwa-mobile .scope-pwa-entity-details .transactions-file-panel--pwa>[role=separator]{display:none !important}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-tab .transactions-file-panel>div:last-child,.app-root--pwa-mobile .scope-pwa-entity-details .transactions-file-panel--pwa>div:last-child{width:100% !important;height:100% !important;overflow-y:auto !important;-webkit-overflow-scrolling:touch}.app-root--pwa-mobile .scope-pwa-entity-details .transactions-file-panel--pwa .transactions-file-card-hover-actions{display:inline-flex !important}.app-root--pwa-mobile .scope-pwa-entity-details .transactions-file-panel--pwa .transactions-file-card-body{padding-right:72px !important}.app-root--pwa-mobile .scope-pwa-entity-details .transactions-file-panel--pwa .transactions-file-card-wrap--has-rescan .transactions-file-card-body{padding-right:148px !important}.app-root--pwa-mobile .scope-pwa-entity-details .transactions-file-panel--pwa .transactions-file-card-hover-action{min-height:32px;padding:4px 10px;font-size:12px}.app-root--pwa-mobile .scope-pwa-entity-details .transactions-file-panel--pwa .transactions-file-card-body>span[style*="white-space: nowrap"]{white-space:normal !important;text-overflow:clip !important;overflow:visible !important;word-break:break-word !important}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-cards{display:flex;flex-direction:column;gap:10px;width:100%;box-sizing:border-box}@media(max-width: 900px){.app-root--pwa-mobile .scope-pwa-entity-details .transactions-file-panel{position:fixed !important;inset-inline:0 !important;left:0 !important;right:0 !important;top:auto !important;bottom:calc(56px + env(safe-area-inset-bottom, 0px)) !important;width:100% !important;max-width:100% !important;height:min(60vh,520px) !important;max-height:min(60vh,520px) !important;z-index:25 !important;border-radius:16px 16px 0 0;border-top:1px solid var(--color-border, #dbeae3);box-shadow:0 -8px 32px rgba(0,0,0,.25);flex-direction:column !important;overflow:hidden !important;overflow-y:auto !important}.app-root--pwa-mobile .scope-pwa-entity-details .transactions-file-panel>[role=separator]{display:none !important}.app-root--pwa-mobile .scope-pwa-entity-details .transactions-file-panel>div:last-child{width:100% !important;height:100% !important;overflow-y:auto !important;-webkit-overflow-scrolling:touch}.app-root--pwa-mobile .scope-pwa-entity-details .transactions-file-panel .transactions-file-card-hover-actions{display:inline-flex !important}.app-root--pwa-mobile .scope-pwa-entity-details .transactions-file-panel .transactions-file-card-body{padding-right:72px !important}.app-root--pwa-mobile .scope-pwa-entity-details .transactions-file-panel .transactions-file-card-wrap--has-rescan .transactions-file-card-body{padding-right:148px !important}.app-root--pwa-mobile .scope-pwa-entity-details .transactions-file-panel .transactions-file-card-hover-action{min-height:32px;padding:4px 10px;font-size:12px}}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transaction-card{display:flex;flex-direction:column;gap:12px;padding:14px;background:var(--color-surface-raised, #ffffff);border:1px solid var(--color-border, #dbeae3);border-radius:12px;box-sizing:border-box}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transaction-card--pending{border-color:var(--color-status-warning, #c38a20);background:color-mix(in srgb, var(--color-status-warning-bg, #fff5e2) 35%, var(--color-surface-raised, #ffffff))}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transaction-card--deleted{opacity:.72}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transaction-card__body{min-width:0;width:100%}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transaction-card__header{display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:6px}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transaction-card__date{font-size:12px;color:var(--color-text-muted, #5a6a6a);line-height:1.35}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transaction-card__badge{font-size:10px;font-weight:600;letter-spacing:.02em;text-transform:uppercase;color:var(--color-link, #5e87b0);background:var(--color-primary-soft, #e6f7f7);border:1px solid var(--color-border, #dbeae3);border-radius:4px;padding:2px 6px;line-height:1.3;flex-shrink:0}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transaction-card__title{font-size:15px;font-weight:600;color:var(--color-text-base, #042a2a);line-height:1.35;overflow-wrap:anywhere}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transaction-card__subtitle{margin-top:4px;font-size:13px;color:var(--color-text-muted, #5a6a6a);line-height:1.35;overflow-wrap:anywhere}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transaction-card__amounts{display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:10px;margin-top:12px}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transaction-card__amount{display:flex;flex-direction:column;gap:2px;min-width:0}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transaction-card__amount-label{font-size:11px;font-weight:600;letter-spacing:.02em;text-transform:uppercase;color:var(--color-text-muted, #5a6a6a)}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transaction-card__amount-value{font-size:14px;font-weight:600;color:var(--color-text-base, #042a2a);line-height:1.3}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transaction-card__actions{width:100%}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transaction-card__actions .ant-btn,.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transaction-card__actions button{width:100%;max-width:100%}.app-root--pwa-mobile .scope-pwa-entity-details .scope-pwa-transactions-cards__empty{padding:20px 16px;text-align:center;font-size:14px;color:var(--color-text-muted, #5a6a6a);background:var(--color-surface-raised, #ffffff);border:1px solid var(--color-border, #dbeae3);border-radius:12px}.scope-pwa-excel-edit-backdrop{position:fixed;inset:0;z-index:50;background:rgba(0,0,0,.45)}.scope-pwa-excel-edit-sheet{position:fixed;inset-inline:0;bottom:var(--pwa-bottom-nav-height, 64px);z-index:51;background:var(--color-surface-raised, #ffffff);border-radius:20px 20px 0 0;box-shadow:0 -4px 24px rgba(0,0,0,.18);display:flex;flex-direction:column;max-height:80vh;overflow:hidden}.scope-pwa-excel-edit-sheet__header{display:flex;align-items:center;justify-content:space-between;padding:14px 20px 12px;border-bottom:1px solid var(--color-border, #dbeae3);flex-shrink:0}.scope-pwa-excel-edit-sheet__title{font-size:16px;font-weight:700;color:var(--color-text-base, #2e2e2e)}.scope-pwa-excel-edit-sheet__close{appearance:none;border:1px solid var(--color-border, #dbeae3);border-radius:999px;padding:4px 10px;background:rgba(0,0,0,0);color:var(--color-text-muted, #5a6a6a);font-size:13px;cursor:pointer}.scope-pwa-excel-edit-sheet__body{display:flex;flex-direction:column;gap:14px;overflow-y:auto;-webkit-overflow-scrolling:touch;padding:12px 20px 8px;flex:1 1 auto;min-height:0}.scope-pwa-excel-edit-sheet__row{display:flex;flex-direction:column;gap:6px}.scope-pwa-excel-edit-sheet__row .ant-input,.scope-pwa-excel-edit-sheet__row .ant-input-number,.scope-pwa-excel-edit-sheet__row .ant-input-number-input,.scope-pwa-excel-edit-sheet__row .ant-picker,.scope-pwa-excel-edit-sheet__row .ant-picker-input input{background:var(--color-surface, #f3f7f8) !important;border-color:var(--color-border, #dbeae3) !important;color:var(--color-text-base, #2e2e2e) !important;border-radius:8px !important;font-size:14px !important}.scope-pwa-excel-edit-sheet__row .ant-input-number{border-radius:8px !important}.scope-pwa-excel-edit-sheet__row .ant-picker{border-radius:8px !important;width:100% !important}.scope-pwa-excel-edit-sheet__label{font-size:11px;font-weight:600;color:var(--color-text-muted, #5a6a6a);text-transform:uppercase;letter-spacing:.5px}.scope-pwa-excel-edit-sheet__footer{display:flex;flex-shrink:0;gap:10px;justify-content:space-between;padding:20px 20px calc(20px + env(safe-area-inset-bottom, 0px));border-top:1px solid var(--color-border, #dbeae3);margin-top:8px}html[data-theme=dark] .scope-pwa-excel-edit-sheet{background:var(--color-surface-raised, #1a2b2c);box-shadow:0 -4px 24px rgba(0,0,0,.45)}html[data-theme=dark] .scope-pwa-excel-edit-sheet .scope-pwa-excel-edit-sheet__title{color:var(--color-text-base, #e3eaeb)}html[data-theme=dark] .scope-pwa-excel-edit-sheet .scope-pwa-excel-edit-sheet__close{border-color:var(--color-border, #355356);color:var(--color-text-muted, #a9b8b9)}html[data-theme=dark] .scope-pwa-excel-edit-sheet .scope-pwa-excel-edit-sheet__header,html[data-theme=dark] .scope-pwa-excel-edit-sheet .scope-pwa-excel-edit-sheet__footer{border-color:var(--color-border, #355356)}html[data-theme=dark] .scope-pwa-excel-edit-sheet .scope-pwa-excel-edit-sheet__row .ant-input,html[data-theme=dark] .scope-pwa-excel-edit-sheet .scope-pwa-excel-edit-sheet__row .ant-input-number,html[data-theme=dark] .scope-pwa-excel-edit-sheet .scope-pwa-excel-edit-sheet__row .ant-input-number-input,html[data-theme=dark] .scope-pwa-excel-edit-sheet .scope-pwa-excel-edit-sheet__row .ant-picker,html[data-theme=dark] .scope-pwa-excel-edit-sheet .scope-pwa-excel-edit-sheet__row .ant-picker-input input{background:var(--color-surface, #132122) !important;border-color:var(--color-border, #355356) !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .scope-pwa-excel-edit-sheet .scope-pwa-excel-edit-sheet__row .ant-input-number-handler-wrap{background:var(--color-surface, #132122) !important}html[data-theme=dark] .scope-pwa-excel-edit-sheet .scope-pwa-excel-edit-sheet__row .ant-picker-suffix,html[data-theme=dark] .scope-pwa-excel-edit-sheet .scope-pwa-excel-edit-sheet__row .ant-picker-clear{color:var(--color-text-muted, #a9b8b9) !important}.app-root--pwa-mobile .scope-pwa-transactions-cards__footer{display:flex;flex-direction:column;align-items:stretch;gap:10px;margin-top:4px}.app-root--pwa-mobile .scope-pwa-transactions-cards__summary{font-size:12px;color:var(--color-text-muted, #5a6a6a);text-align:center}.app-root--pwa-mobile .scope-pwa-transactions-cards__pager{display:flex;align-items:center;justify-content:center;gap:10px;flex-wrap:wrap}.app-root--pwa-mobile .scope-pwa-transactions-cards__page-indicator{font-size:12px;font-weight:600;color:var(--color-text-base, #042a2a);min-width:48px;text-align:center}.app-root--pwa-mobile .scope-pwa-vat-returns-content{width:100%;box-sizing:border-box}.app-root--pwa-mobile .scope-pwa-vat-checker-panel{width:100%;box-sizing:border-box}.app-root--pwa-mobile .ant-card:has(.mapping-returns-collapse){width:100%;box-sizing:border-box}.app-root--pwa-mobile .ant-card:has(.mapping-returns-collapse) .ant-card-body{padding:0 !important}.app-root--pwa-mobile .mapping-returns-collapse{width:100%;overflow:visible !important}.app-root--pwa-mobile .mapping-returns-collapse .ant-collapse-header{flex-wrap:wrap;align-items:flex-start !important;padding:12px 16px !important}.app-root--pwa-mobile .mapping-returns-collapse .ant-collapse-header-text{flex:1 1 100%;min-width:0}.app-root--pwa-mobile .mapping-returns-collapse .ant-collapse-header-text>div>div:first-child{flex-direction:column !important;align-items:stretch !important;gap:12px;margin-bottom:0 !important}.app-root--pwa-mobile .mapping-returns-collapse .ant-collapse-header-text>div>div:first-child>div:first-child{width:100%;min-width:0}.app-root--pwa-mobile .mapping-returns-collapse .ant-collapse-header-text>div>div:first-child>div:last-child{float:none !important;width:100%}.app-root--pwa-mobile .mapping-returns-collapse .ant-collapse-header-text>div>div:first-child>div:last-child .ant-space{width:100%;gap:8px !important}.app-root--pwa-mobile .mapping-returns-collapse .ant-collapse-header-text>div>div:first-child>div:last-child .ant-space-item{width:100%}.app-root--pwa-mobile .mapping-returns-collapse .ant-collapse-header-text>div>div:first-child>div:last-child .ant-btn,.app-root--pwa-mobile .mapping-returns-collapse .ant-collapse-header-text>div>div:first-child>div:last-child button{width:100% !important;max-width:none !important}.app-root--pwa-mobile .mapping-returns-collapse .ant-collapse-header-text>div>div:nth-child(2){flex-direction:column !important;align-self:stretch !important;gap:12px !important;column-gap:unset !important;width:100%}.app-root--pwa-mobile .mapping-returns-collapse .ant-collapse-header-text>div>div:nth-child(2)>*{min-width:0 !important;max-width:none !important;width:100%;box-sizing:border-box}.app-root--pwa-mobile .mapping-returns-collapse .ant-collapse-content-box{padding:0 16px 16px !important}.app-root--pwa-mobile .mapping-returns-collapse .ant-table-wrapper{overflow-x:auto}.app-root--pwa-mobile .entity-overview-tab{flex-direction:column;min-width:0}.app-root--pwa-mobile .entity-overview-tab>div{min-width:0 !important;width:100% !important;max-width:none !important;margin-right:0 !important}.app-root--pwa-mobile .entity-narrow-side-panel,.app-root--pwa-mobile .entity-narrow-side-panel-tab{display:none !important}.app-root--pwa-mobile .scope-pwa-upload-documents-wrap{width:100%;max-width:none}.app-root--pwa-mobile .scope-pwa-upload-documents-card{width:100%;box-sizing:border-box}.app-root--pwa-mobile .scope-pwa-upload-documents-card__body{padding-inline:var(--pwa-card-inset, 16px);padding-bottom:var(--pwa-card-inset, 16px);box-sizing:border-box}.app-root--pwa-mobile .scope-pwa-upload-documents-body{display:flex;flex-direction:column;width:100%}.app-root--pwa-mobile .scope-pwa-upload-documents-title{order:1}.app-root--pwa-mobile .scope-pwa-upload-documents-intro{order:2;display:block}.app-root--pwa-mobile .scope-pwa-upload-documents-upload{order:3;width:100%}.app-root--pwa-mobile .scope-pwa-upload-documents-divider{order:4}.app-root--pwa-mobile .scope-pwa-upload-documents-actions-block{order:5;width:100%;margin-top:0;margin-bottom:16px}.app-root--pwa-mobile .scope-pwa-upload-documents-meta{order:6}.app-root--pwa-mobile .scope-pwa-upload-documents-excel-import{order:7}.app-root--pwa-mobile .scope-pwa-upload-documents-header{flex-direction:column;align-items:stretch;gap:16px}.app-root--pwa-mobile .scope-pwa-upload-documents-actions{display:grid !important;grid-template-columns:repeat(2, minmax(0, 1fr));gap:8px;width:100%}.app-root--pwa-mobile .scope-pwa-upload-documents-actions>*{min-width:0;display:flex}.app-root--pwa-mobile .scope-pwa-upload-documents-actions .ant-btn,.app-root--pwa-mobile .scope-pwa-upload-documents-actions button.ant-btn,.app-root--pwa-mobile .scope-pwa-upload-documents-actions button:not([aria-hidden]){flex:1 1 auto;width:100%;min-width:0;justify-content:center}.app-root--pwa-mobile .scope-pwa-upload-documents-meta{flex-direction:column !important;align-items:stretch !important;gap:16px !important;column-gap:unset !important;margin-top:0 !important;margin-bottom:12px !important;padding:0 !important}.app-root--pwa-mobile .scope-pwa-upload-documents-meta>*{min-width:0 !important;max-width:none !important;width:100%;box-sizing:border-box;padding-left:12px !important;border-left:3px solid var(--color-primary, #41aaaf) !important}.app-root--pwa-mobile .scope-pwa-upload-documents-meta>*>div{gap:6px}.app-root--pwa-mobile .scope-pwa-upload-documents-meta>* span,.app-root--pwa-mobile .scope-pwa-upload-documents-meta>* a,.app-root--pwa-mobile .scope-pwa-upload-documents-meta>* button{line-height:1.4;word-break:break-word;overflow-wrap:anywhere}.app-root--pwa-mobile .scope-pwa-entity-submissions-mapping{width:100%;box-sizing:border-box;padding:12px 12px 8px}.app-root--pwa-mobile .scope-pwa-entity-submissions-mapping__title{display:block;font-size:15px;margin:0 0 8px;line-height:1.35}.app-root--pwa-mobile .scope-pwa-entity-submissions-table{width:100%;box-sizing:border-box;overflow-x:hidden}.app-root--pwa-mobile .scope-pwa-submissions-table-wrap{width:100%;box-sizing:border-box}.app-root--pwa-mobile .scope-pwa-submissions-list{display:flex;flex-direction:column;width:100%;box-sizing:border-box}.app-root--pwa-mobile .scope-pwa-submissions-list__row{display:grid;grid-template-columns:minmax(0, 1fr) 80px;grid-template-areas:"details action";gap:8px;align-items:center;padding:10px 0;border-bottom:1px solid var(--color-border, #dbeae3);box-sizing:border-box}.app-root--pwa-mobile .scope-pwa-submissions-list__row:last-child{border-bottom:none;padding-bottom:0}.app-root--pwa-mobile .scope-pwa-submissions-list__details{grid-area:details;display:flex;flex-direction:column;gap:8px;min-width:0}.app-root--pwa-mobile .scope-pwa-submissions-list__secondary{display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:8px 12px;min-width:0}.app-root--pwa-mobile .scope-pwa-submissions-list__field{display:flex;flex-direction:column;gap:2px;min-width:0}.app-root--pwa-mobile .scope-pwa-submissions-list__field-label{font-size:11px;font-weight:600;line-height:1.25;color:var(--color-text-muted, #5a6a6a)}.app-root--pwa-mobile .scope-pwa-submissions-list__field-value{font-size:12px;font-weight:500;line-height:1.3;color:var(--color-text-base, #042a2a);overflow-wrap:anywhere}.app-root--pwa-mobile .scope-pwa-submissions-list__field--period .scope-pwa-submissions-list__field-value{font-size:13px;font-weight:600;white-space:nowrap;overflow-x:auto;overflow-y:hidden;-webkit-overflow-scrolling:touch;scrollbar-width:none}.app-root--pwa-mobile .scope-pwa-submissions-list__field--period .scope-pwa-submissions-list__field-value::-webkit-scrollbar{display:none}.app-root--pwa-mobile .scope-pwa-submissions-list__action{grid-area:action;align-self:center;justify-self:stretch;width:80px}.app-root--pwa-mobile .scope-pwa-submissions-list__action .scope-button{width:100% !important;min-width:0;max-width:100%}.app-root--pwa-mobile .scope-pwa-submissions-table__footer{display:flex;flex-direction:column;align-items:stretch;gap:8px;margin-top:8px;padding-top:4px}.app-root--pwa-mobile .scope-pwa-submissions-table__summary{font-size:12px;color:var(--color-text-muted, #5a6a6a);line-height:1.35}.app-root--pwa-mobile .scope-pwa-submissions-table__pager{display:flex;justify-content:flex-end;gap:8px;flex-wrap:wrap}.app-root--pwa-mobile .scope-pwa-entity-submissions-empty{padding:28px 16px;text-align:center;font-size:14px;color:var(--color-text-muted, #5a6a6a);background:var(--color-surface-raised, #ffffff);border:1px dashed var(--color-border, #dbeae3);border-radius:10px;box-sizing:border-box;overflow:hidden;min-height:0;height:auto}.app-root--pwa-mobile .scope-pwa-entity-not-connected-panel__layout{flex-direction:column !important;align-items:stretch !important}.app-root--pwa-mobile .scope-pwa-entity-not-connected-panel__content{width:100%;min-width:0}.app-root--pwa-mobile .scope-pwa-entity-not-connected-panel__art{display:none}.scope-entity-not-connected-panel__title{display:flex;align-items:flex-start;gap:8px;margin-bottom:10px}.scope-entity-not-connected-panel__title .anticon{flex-shrink:0;margin-top:3px;color:var(--color-status-danger, #D13131);font-size:18px}.scope-entity-not-connected-panel__title-text{flex:1;min-width:0;margin-bottom:0 !important;line-height:1.35}.app-root--pwa-mobile .scope-pwa-vat-report{width:100%;max-width:100%;overflow-x:hidden;box-sizing:border-box;margin-top:0}.app-root--pwa-mobile .scope-pwa-vat-report .tabs-wrapper,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-tabs{position:static !important;top:auto !important;z-index:auto !important;width:100%;max-width:100%;box-sizing:border-box;background:rgba(0,0,0,0);border-bottom:none}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-tab-chrome{position:relative;top:auto;z-index:1;width:100%;box-sizing:border-box;background:var(--color-surface-base, #ffffff);border-bottom:1px solid var(--color-border, #dbeae3);padding:0 10px 4px;display:flex;flex-direction:column;gap:2px}.app-root--pwa-mobile .scope-pwa-vat-report .menu-top-wrapper.scope-pwa-vat-report-toolbar{position:static !important;top:auto !important;right:auto !important;float:none !important;z-index:auto !important;padding:8px 0 0 !important;justify-content:stretch !important}.app-root--pwa-mobile .scope-pwa-vat-report .ant-tabs-nav-wrap{display:flex !important;flex:1 1 auto !important;min-width:0 !important;padding:0 !important;overflow:hidden !important;visibility:visible !important;min-height:36px}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-tabs__bar.ant-tabs{width:100%;max-width:100%}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-tabs__bar .ant-tabs-nav{display:flex !important;align-items:center !important;margin:0 !important;width:100%;min-height:36px !important;gap:6px;visibility:visible !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-tabs__bar .ant-tabs-nav-wrap{overflow-x:auto !important;overflow-y:hidden !important;scrollbar-width:none;-webkit-overflow-scrolling:touch;flex:1 1 auto !important;min-width:0 !important;min-height:36px !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-tabs__bar .ant-tabs-nav-wrap::-webkit-scrollbar{display:none}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-tabs__bar .ant-tabs-nav::before{display:none}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-tabs__bar .ant-tabs-nav-list{display:flex !important;flex-wrap:nowrap;width:max-content !important;min-width:0;min-height:36px;align-items:stretch !important;gap:4px;transform:none !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-tabs__bar .ant-tabs-nav-operations{display:none !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-tabs__bar .ant-tabs-tab{flex:0 0 auto !important;min-width:max-content !important;max-width:none;height:36px !important;min-height:36px !important;max-height:36px !important;padding:0 10px !important;margin:0 !important;justify-content:center !important;align-items:center !important;box-sizing:border-box !important;border-radius:8px;background:rgba(0,0,0,0)}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-tabs__bar .ant-tabs-tab+.ant-tabs-tab{margin-inline-start:0 !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-tabs__bar .ant-tabs-tab-btn{display:inline-flex !important;justify-content:center !important;align-items:center !important;width:auto;height:100%;font-size:12px !important;font-weight:500 !important;line-height:1.2 !important;white-space:nowrap;overflow:visible;text-overflow:clip}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-tabs__bar .ant-tabs-tab-active .ant-tabs-tab-btn{color:var(--color-text-base, #2e2e2e) !important;font-weight:600 !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-tabs__bar .ant-tabs-ink-bar{display:none !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-tabs__bar .ant-tabs-tab-active{background:var(--color-primary-soft, #e6f7f7) !important;border-radius:8px}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-tabs__bar .ant-tabs-extra-content{flex:0 0 auto;display:flex;align-items:center;padding-inline-start:0;height:36px}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-tabs__bar .ant-tabs-extra-content .scope-pwa-vat-report-toolbar__menu-btn--compact{width:36px;min-width:36px;height:36px;min-height:36px}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report .ant-tabs-content-holder{padding-top:4px;overflow:visible}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report .ant-tabs-content,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report .ant-tabs-tabpane{overflow:visible}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-toolbar{display:flex;flex-direction:column;align-items:stretch;gap:8px;padding:0;margin:0;border-bottom:none;width:100%;max-width:100%;box-sizing:border-box}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-toolbar__menu-btn{display:flex;align-items:center;justify-content:center;gap:8px;width:100%;min-height:40px;padding:10px 14px;border:1px solid var(--color-border, #dbeae3);border-radius:10px;background:var(--color-surface-raised, #ffffff);color:var(--color-text-base, #042a2a);font-family:inherit;font-size:13px;font-weight:600;line-height:1.2;cursor:pointer;box-sizing:border-box}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-toolbar__menu-btn--open{border-color:var(--color-primary, #41aaaf);background:var(--color-primary-soft, #e6f7f7);color:var(--color-primary, #41aaaf)}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-toolbar__menu-btn--compact{width:36px;min-width:36px;min-height:36px;padding:0;border-radius:8px}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-toolbar__progress{width:100%}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-toolbar__actions{display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:8px;width:100%}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-toolbar__actions .ant-btn,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-toolbar__actions button.ant-btn,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-toolbar__actions>div,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-toolbar__actions>span{min-width:0;width:100%}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-toolbar__actions .ant-btn,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-toolbar__actions button.ant-btn{justify-content:center;white-space:normal;height:auto;min-height:36px;padding:8px 10px;line-height:1.25}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-toolbar .ant-space,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-toolbar .ant-space-item{width:100% !important;display:flex !important;flex-direction:column !important;align-items:stretch !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-form-toolbar .ant-radio-group.ant-radio-group-solid{display:flex !important;flex-direction:row !important;width:100% !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-form-toolbar .ant-radio-group.ant-radio-group-solid .ant-radio-button-wrapper{flex:1 1 0 !important;text-align:center !important;white-space:nowrap !important;overflow:hidden !important;text-overflow:ellipsis !important;font-size:13px !important;font-weight:600 !important;height:38px !important;line-height:1.2 !important;display:inline-flex !important;align-items:center !important;justify-content:center !important;padding:0 8px !important;border-radius:0 !important;border:none !important;border-bottom:2px solid rgba(0,0,0,0) !important;background:rgba(0,0,0,0) !important;color:var(--color-text-muted, #5a6a6a) !important;box-shadow:none !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-form-toolbar .ant-radio-group.ant-radio-group-solid .ant-radio-button-wrapper-checked{color:var(--color-primary, #41aaaf) !important;border-bottom-color:var(--color-primary, #41aaaf) !important;background:rgba(0,0,0,0) !important;box-shadow:none !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-form-toolbar .ant-radio-group.ant-radio-group-solid .ant-radio-button-wrapper::before{display:none !important}.app-root--pwa-mobile .scope-pwa-vat-report .top-wrapper{display:none !important;min-width:0 !important}.app-root--pwa-mobile .scope-pwa-vat-report .header-wide,.app-root--pwa-mobile .scope-pwa-vat-report .header-narrow{width:100% !important;min-width:0 !important}.app-root--pwa-mobile .scope-pwa-vat-report .content-wrapper.vat-content,.app-root--pwa-mobile .scope-pwa-vat-report .vat-content{padding:6px 8px 10px !important;min-height:0 !important;gap:8px;flex-direction:column !important;align-items:stretch;overflow-x:hidden;max-width:100%;box-sizing:border-box;background:rgba(0,0,0,0) !important}.app-root--pwa-mobile .scope-pwa-vat-report .content-wrapper.vat-content>div:first-child,.app-root--pwa-mobile .scope-pwa-vat-report .vat-content>div:first-child{width:100%;min-width:0}.app-root--pwa-mobile .scope-pwa-vat-report .content-wrapper.vat-content .ant-divider,.app-root--pwa-mobile .scope-pwa-vat-report .vat-content .ant-divider{margin:8px 0 !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-form.ant-card,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-form{min-width:0 !important;max-width:100% !important;width:100% !important;box-sizing:border-box;margin-top:4px;border-radius:12px !important;overflow:hidden !important;border:1px solid var(--color-border, #dbeae3) !important;background:var(--color-surface-raised, #ffffff) !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-form.ant-card .ant-card-body,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-form .ant-card-body{padding:0 0 12px !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-menu.menu-wrapper,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-menu.scope-pwa-vat-report-menu--dock{display:block !important;position:fixed;inset-inline:0;bottom:var(--pwa-bottom-nav-height, 64px);width:100% !important;max-width:100%;z-index:241;padding:12px 12px calc(12px + env(safe-area-inset-bottom, 0px));margin:0;box-sizing:border-box;background:var(--color-surface-raised, #ffffff);border:1px solid var(--color-border, #dbeae3);border-bottom:none;border-radius:14px 14px 0 0;box-shadow:0 -8px 32px rgba(0,0,0,.25);max-height:min(68vh,620px);overflow-y:auto;overflow-x:hidden;-webkit-overflow-scrolling:touch;color:var(--color-text-base, #2e2e2e)}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-menu .menu-entity-name{color:var(--color-text-base, #2e2e2e)}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-menu .menu-entity-details,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-menu .menu-entity-details #country,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-menu .menu-entity-details #return,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-menu .menu-entity-details #period{color:var(--color-text-muted, #5a6a6a)}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-menu .cell-label{color:var(--color-text-muted, #5a6a6a)}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-menu .scope-form-select.ant-select .ant-select-selector{background:var(--color-surface, #f3f7f8) !important;border-color:var(--color-border, #dbeae3) !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-menu .scope-form-select.ant-select .ant-select-selection-item{color:var(--color-text-base, #2e2e2e) !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-menu .scope-form-select.ant-select .ant-select-selection-placeholder{color:var(--color-text-muted, #5a6a6a) !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-menu .ant-btn:not(.ant-btn-primary){color:var(--color-text-base, #2e2e2e)}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-report-menu-backdrop{position:fixed;inset:0;z-index:240;border:none;margin:0;padding:0;background:rgba(0,0,0,.38);appearance:none}.app-root--pwa-mobile .scope-pwa-vat-report html[data-theme=dark] body.scope-pwa-vat-menu-open .scope-pwa-bottom-nav{border-top:0 !important;border-top-color:rgba(0,0,0,0) !important;box-shadow:none !important}.app-root--pwa-mobile .scope-pwa-vat-report .scroller-submissions{max-height:none;overflow-x:hidden;padding:0;width:100%}.app-root--pwa-mobile .scope-pwa-vat-report .menu-top-wrapper:not(.scope-pwa-vat-report-toolbar){position:static;top:auto;right:auto;float:none;padding:8px 0 0;justify-content:flex-start;flex-wrap:wrap;gap:8px;width:100%;box-sizing:border-box}.app-root--pwa-mobile .scope-pwa-vat-report .ant-table-wrapper{overflow-x:auto;max-width:100%}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-form-toolbar{width:100%;box-sizing:border-box;padding-bottom:12px;margin-bottom:4px;border-bottom:1px solid var(--color-border, #dbeae3)}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-form-toolbar .ant-space{max-width:100%}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-form-toolbar .ant-radio-group{display:flex;width:100%}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-form-toolbar .ant-radio-button-wrapper{flex:1 1 50%;min-width:0;height:auto;min-height:38px;padding:8px 6px;line-height:1.25;white-space:normal;text-align:center;display:inline-flex;align-items:center;justify-content:center;font-size:12px}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-form-toolbar .ant-radio-button-wrapper:first-child{border-start-start-radius:10px;border-end-start-radius:10px}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-form-toolbar .ant-radio-button-wrapper:last-child{border-start-end-radius:10px;border-end-end-radius:10px}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-form-toolbar button.ant-btn,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-form-toolbar .ant-btn{max-width:100%;justify-content:center}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll{width:100%;max-width:100%;overflow-x:hidden;overflow-y:visible;box-sizing:border-box;padding:0 12px}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix){display:block;width:100% !important;min-width:0 !important;margin-bottom:16px}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix) thead{display:block;width:calc(100% + 24px);margin-inline:-12px;margin-bottom:10px}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix) tbody{display:block;width:100%}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix) thead tr{display:grid;grid-template-columns:repeat(4, minmax(0, 1fr));grid-template-rows:auto auto;width:100%;font-size:12px !important;height:auto !important;min-height:0 !important;border-radius:10px;padding:10px 12px 8px;box-sizing:border-box;overflow:hidden;isolation:isolate}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix) thead th{border:none !important;padding:10px 8px;width:auto !important;min-width:0 !important;max-width:none !important;white-space:normal !important;overflow-wrap:anywhere;word-break:break-word;line-height:1.3;background:rgba(0,0,0,0) !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix) thead th:first-child{grid-column:1/-1;grid-row:1;width:100%;font-size:16px;line-height:1.3;font-weight:600;padding-bottom:12px}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix) thead th:nth-child(3),.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix) thead th:nth-child(5){font-size:12px;font-weight:600;opacity:.95;white-space:normal !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix) thead th:nth-child(3){grid-column:1/3;grid-row:2;text-align:center !important;padding:4px 6px}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix) thead th:nth-child(5){grid-column:3/5;grid-row:2;text-align:center !important;padding:4px 6px}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix) thead th:nth-child(2),.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix) thead th:nth-child(4){display:none}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll:has(.vatreporttable--matrix){overflow-x:auto;overflow-y:visible;-webkit-overflow-scrolling:touch;padding-bottom:8px;margin:0 4px 16px}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable--matrix{display:table !important;width:max-content !important;min-width:560px !important;margin-bottom:0 !important;border-collapse:separate !important;border-spacing:0 !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable--matrix thead{display:table-header-group !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable--matrix tbody{display:table-row-group !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable--matrix thead tr,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable--matrix tbody tr{display:table-row !important;margin:0 !important;padding:0 !important;background:rgba(0,0,0,0) !important;border:none !important;border-radius:0 !important;height:auto !important;min-height:0 !important;position:static !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable--matrix thead tr{background-color:var(--color-primary, #41aaaf) !important;color:#fff !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable--matrix thead tr::before,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable--matrix thead tr::after,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable--matrix tbody tr::before,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable--matrix tbody tr::after{content:none !important;display:none !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable--matrix thead th,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable--matrix tbody td{display:table-cell !important;position:relative !important;float:none !important;width:auto !important;min-width:96px !important;max-width:148px !important;height:auto !important;padding:8px 8px !important;margin:0 !important;vertical-align:middle !important;white-space:normal !important;overflow-wrap:anywhere;word-break:break-word;line-height:1.3 !important;font-size:12px !important;border:1px solid var(--color-border, #dbeae3) !important;background:var(--color-surface-raised, #ffffff) !important;color:var(--color-text-base, #2e2e2e) !important;visibility:visible !important;text-align:center !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable--matrix thead th{background-color:var(--color-primary, #41aaaf) !important;color:#fff !important;font-weight:600 !important;font-size:11px !important;border-color:hsla(0,0%,100%,.25) !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable--matrix thead th:first-child,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable--matrix tbody td:first-child{position:sticky !important;left:0 !important;z-index:2 !important;min-width:88px !important;max-width:110px !important;text-align:left !important;font-weight:500 !important;box-shadow:4px 0 8px -4px rgba(0,0,0,.28)}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable--matrix thead th:first-child{z-index:3 !important;background-color:var(--color-primary, #41aaaf) !important;color:#fff !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable--matrix tbody td:first-child{background:var(--color-surface-raised, #ffffff) !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable--matrix tbody td.box{display:table-cell !important;width:52px !important;min-width:52px !important;max-width:60px !important;margin:0 !important;padding:6px 4px !important;background:var(--color-layout-bg, #e9f6f7) !important;color:var(--color-primary, #41aaaf) !important;font-weight:700 !important;text-align:center !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable--matrix tbody td.nbr,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable--matrix tbody td.nbb,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable--matrix tbody td.nbl,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable--matrix tbody td.nbt{display:table-cell !important;visibility:hidden !important;min-width:52px !important;max-width:60px !important;background:var(--color-surface-raised, #ffffff) !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable--matrix tbody td:first-child.nbb,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable--matrix tbody td:first-child.nbr,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable--matrix tbody td:first-child.nbl,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable--matrix tbody td:first-child.nbt{visibility:visible !important;color:rgba(0,0,0,0) !important;background:var(--color-surface-raised, #ffffff) !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix) tbody tr{display:grid;grid-template-columns:2rem minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);grid-template-rows:auto auto;align-items:stretch;margin-bottom:10px;padding:12px 0 0;background:var(--color-surface-raised, #ffffff);border:1px solid var(--color-border, #dbeae3);border-radius:10px;box-sizing:border-box;position:relative;overflow:hidden;isolation:isolate}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix) tbody tr::before,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix) tbody tr::after{content:"";grid-column:1/-1;grid-row:2;align-self:stretch;pointer-events:none;z-index:0}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix) tbody tr::before{border-top:1px solid var(--color-border, #dbeae3)}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix) tbody tr::after{background:linear-gradient(to right, transparent calc(50% - 0.5px), var(--color-border, #dbeae3) calc(50% - 0.5px), var(--color-border, #dbeae3) calc(50% + 0.5px), transparent calc(50% + 0.5px))}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix) tbody td{font-size:13px;height:auto !important;min-height:0;padding:4px 6px;line-height:1.4;vertical-align:top;border:none !important;background:rgba(0,0,0,0) !important;box-sizing:border-box}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix) tbody td:first-child{grid-column:1/-1;grid-row:1;width:100%;max-width:100%;padding:2px 14px 12px;font-size:13px;font-weight:500;line-height:1.35;color:var(--color-text-base, #2e2e2e);border-bottom:none !important;margin-bottom:0;white-space:normal !important;overflow-wrap:anywhere;word-break:break-word}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix) tbody td.box{align-self:center;display:flex;align-items:center;justify-content:flex-start;width:100% !important;min-width:0;font-size:13px;line-height:1.2;font-weight:600;color:var(--color-primary, #41aaaf);margin:0;text-align:left}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix) tbody td.value-field,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix) tbody td.rightalign[id*=-value]{display:flex;align-items:center;justify-content:flex-start;min-width:0;max-width:100%;text-align:left !important;font-size:12px;line-height:1.25;font-weight:600;color:var(--color-text-base, #2e2e2e);font-variant-numeric:tabular-nums;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix) tbody td:nth-child(2){grid-column:1;grid-row:2;position:relative;z-index:1}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix) tbody td:nth-child(3){grid-column:2;grid-row:2;position:relative;z-index:1}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix) tbody td:nth-child(4){grid-column:3;grid-row:2;position:relative;z-index:1}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix) tbody td:nth-child(5){grid-column:4;grid-row:2;position:relative;z-index:1}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix) tbody td:nth-child(2),.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix) tbody td:nth-child(3),.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix) tbody td:nth-child(4),.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix) tbody td:nth-child(5){padding-top:10px;padding-bottom:12px}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix) tbody td:nth-child(2){padding-left:12px;padding-right:4px}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix) tbody td:nth-child(3){padding-left:4px;padding-right:12px}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix) tbody td:nth-child(4){padding-left:12px;padding-right:6px}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix) tbody td:nth-child(5){padding-left:4px;padding-right:14px}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix) tbody tr:has(>td:first-child[colspan="3"])>td:nth-child(2){grid-column:3;grid-row:2;padding-left:12px;padding-right:6px}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix) tbody tr:has(>td:first-child[colspan="3"])>td:nth-child(3){grid-column:4;grid-row:2;padding-left:4px;padding-right:14px}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix) tbody td.nbl,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix) tbody td.nbt,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix) tbody td.space20{display:none !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix) tbody td.nbr,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix) tbody td.nbb,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable:not(.vatreporttable--matrix) tbody td:not([id]):empty{display:flex !important;align-items:center;justify-content:center;visibility:hidden;min-height:0}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable .subtotal,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .vatreporttable .subtotal-2{font-size:12px;font-style:italic}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .divide-10,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-return-table-scroll .divide-20{height:8px}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-transactions-download-card{max-width:100% !important;margin-bottom:12px !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-transactions-download-card .ant-card-body{padding:0 !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-transactions-download-card__layout{display:flex;flex-direction:column;gap:8px;padding:12px}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-transactions-download-card__content{display:flex;flex-direction:column;gap:6px;width:100%;min-width:0}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-transactions-download-card__content .ant-space{width:100%;align-items:center;justify-content:flex-start}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-transactions-download-card__content .scope-button{min-height:44px}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-transactions-download-card__image{width:min(170px,54%);max-width:100%;height:auto;align-self:flex-end;margin-top:2px}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-header{flex-direction:column !important;align-items:stretch !important;gap:6px !important;margin-bottom:6px !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-header__left{width:100%;display:grid;grid-template-columns:1fr;gap:6px !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-header__left .ant-radio-group,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-header__left .ant-btn{width:100%}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-header__left .ant-radio-group{display:flex}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-header__left .ant-radio-button-wrapper{flex:1 1 50%;min-width:0;text-align:center;white-space:normal;height:36px;min-height:36px;line-height:1.2;padding:0 8px;font-size:13px;display:inline-flex;align-items:center;justify-content:center;box-sizing:border-box}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-header__search{width:100% !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-columns-action{margin-left:0 !important;justify-content:flex-end}.app-root--pwa-mobile .recap-statement{width:100%;max-width:100%;overflow-x:auto}.app-root--pwa-mobile .recap-statement .ant-table-wrapper{width:100%;max-width:100%;overflow-x:auto !important}.app-root--pwa-mobile .recap-statement .ant-table{width:max-content !important;min-width:100%}.app-root--pwa-mobile .recap-statement .ant-table-thead>tr>th{font-size:11px;padding:8px 6px !important;white-space:nowrap;vertical-align:top}.app-root--pwa-mobile .recap-statement .ant-table-tbody>tr>td{font-size:12px;padding:8px 6px !important;white-space:nowrap;vertical-align:top}.app-root--pwa-mobile .recap-statement .ant-empty{width:100%}.app-root--pwa-mobile .recap-statement.recap-statement--empty .ant-table,.app-root--pwa-mobile .recap-statement.recap-statement--empty .ant-table-content,.app-root--pwa-mobile .recap-statement.recap-statement--empty .ant-table-container{width:100% !important;min-width:100% !important}.app-root--pwa-mobile .scope-pwa-recap-rotate-hint{margin:0 16px 10px;padding:10px 12px;border-radius:12px;border:1px solid var(--color-border, #dbeae3);background:var(--color-surface-raised, #ffffff);color:var(--color-text-muted, #5a6a6a);font-size:12px;line-height:1.3}.app-root--pwa-mobile .scope-pwa-recap-cards{display:flex;flex-direction:column;gap:10px;width:100%}.app-root--pwa-mobile .scope-pwa-recap-cards__summary{font-size:12px;color:var(--color-text-muted, #5a6a6a)}.app-root--pwa-mobile .scope-pwa-recap-summary{display:flex;flex-direction:column;gap:6px}.app-root--pwa-mobile .scope-pwa-recap-summary__row{display:flex;justify-content:space-between;gap:10px;font-size:12px;color:var(--color-text-muted, #5a6a6a)}.app-root--pwa-mobile .scope-pwa-recap-summary__row strong{color:var(--color-text-base, #2e2e2e);font-weight:600;text-align:right;max-width:48%;overflow-wrap:anywhere}.app-root--pwa-mobile .scope-pwa-recap-cards__empty{padding:22px 14px;border-radius:12px;border:1px solid var(--color-border, #dbeae3);background:var(--color-surface-raised, #ffffff);color:var(--color-text-muted, #5a6a6a);text-align:center;font-size:13px}.app-root--pwa-mobile .scope-pwa-recap-card{padding:12px;border-radius:12px;border:1px solid var(--color-border, #dbeae3);background:var(--color-surface-raised, #ffffff);display:flex;flex-direction:column;gap:8px}.app-root--pwa-mobile .scope-pwa-recap-card__row{display:flex;justify-content:space-between;align-items:flex-start;gap:10px;font-size:12px;line-height:1.35;color:var(--color-text-muted, #5a6a6a)}.app-root--pwa-mobile .scope-pwa-recap-card__row strong{color:var(--color-text-base, #2e2e2e);font-weight:600;text-align:right;max-width:56%;overflow-wrap:anywhere}.app-root--pwa-mobile .scope-pwa-recap-table-landscape{display:none}@media(orientation: landscape){.app-root--pwa-mobile .scope-pwa-recap-cards>.scope-pwa-recap-card,.app-root--pwa-mobile .scope-pwa-recap-cards>.scope-pwa-recap-cards__empty{display:none}.app-root--pwa-mobile .scope-pwa-recap-cards__summary{display:none}.app-root--pwa-mobile .scope-pwa-recap-table-landscape{display:block}}.ant-modal-wrap:has(.extraction-rule-modal--pwa){padding:0 !important;overflow:hidden}.ant-modal-wrap.ant-modal-wrap-hidden,.ant-modal-root.ant-modal-hidden{pointer-events:none !important}.ant-modal-wrap:has(.scope-pwa-modal){display:flex !important;align-items:flex-end !important;justify-content:center !important;padding:0 !important;padding-bottom:var(--pwa-bottom-nav-height, 64px) !important;overflow:hidden !important}.extraction-rule-modal--pwa{top:0 !important;max-width:100% !important;width:100% !important;margin:0 !important;padding:env(safe-area-inset-top, 0px) 0 0 !important;box-sizing:border-box !important}.extraction-rule-modal--pwa .scope-extraction-rule-scroll{gap:12px;padding:0}.extraction-rule-modal--pwa .scope-extraction-rule-builder-flow{gap:10px}.extraction-rule-modal--pwa .scope-extraction-authoring-row{grid-template-columns:1fr !important;gap:10px}.extraction-rule-modal--pwa .scope-extraction-authoring-card{width:100%;padding:12px 14px}.extraction-rule-modal--pwa .scope-extraction-rule-name-section,.extraction-rule-modal--pwa .scope-extraction-describe-input,.extraction-rule-modal--pwa .scope-extraction-rule-step-card,.extraction-rule-modal--pwa .scope-extraction-rule-step-header,.extraction-rule-modal--pwa .scope-extraction-rule-step-body{width:100%;box-sizing:border-box}.extraction-rule-modal--pwa .scope-extraction-rule-step-header{padding:10px 12px;flex-wrap:wrap}.extraction-rule-modal--pwa .scope-extraction-rule-step-body{padding:10px 12px 12px}.extraction-rule-modal--pwa .scope-extraction-describe-input{margin-top:0;padding:10px 12px}.extraction-rule-modal--pwa .scope-extraction-example-chip{flex:1 1 100%;width:100%;white-space:normal;text-align:center}.extraction-rule-modal--pwa .scope-extraction-example-list{flex-direction:column;align-items:stretch}.extraction-rule-modal--pwa .scope-extraction-footer-buttons{grid-template-columns:1fr;row-gap:8px}.extraction-rule-modal--pwa .scope-extraction-footer-left,.extraction-rule-modal--pwa .scope-extraction-footer-right{width:100%;justify-content:stretch}.extraction-rule-modal--pwa .scope-extraction-footer-right-buttons{width:100%;flex-direction:column;align-items:stretch}.extraction-rule-modal--pwa .scope-extraction-footer-primary,.extraction-rule-modal--pwa .scope-extraction-footer-buttons .ant-btn{width:100% !important;max-width:none !important}.extraction-rule-modal--pwa .scope-extraction-step-badge{flex-shrink:0}.txn-review-drawer-chrome{display:flex;width:100%;justify-content:flex-end;align-items:center;gap:12px;min-width:0}.txn-review-drawer-chrome__nav{flex-shrink:0}.txn-review-drawer-chrome__actions{display:flex;align-items:center;gap:12px;flex-shrink:0}.txn-review-drawer-chrome__btn-wrap{display:inline-flex}.scope-pwa-drawer-root{--pwa-sheet-drag-offset: 0px}.scope-pwa-drawer-root.ant-drawer-bottom .ant-drawer-content-wrapper{width:100% !important;max-width:100% !important;height:auto !important;max-height:calc(100dvh - var(--pwa-bottom-nav-height, 64px) - 8px) !important;bottom:var(--pwa-bottom-nav-height, 64px) !important;border-radius:20px 20px 0 0 !important;overflow:hidden !important;box-shadow:0 -4px 24px rgba(0,0,0,.2) !important}.scope-pwa-drawer-root.scope-pwa-drawer-root--tall.ant-drawer-bottom .ant-drawer-content-wrapper,.scope-pwa-drawer-root.ant-drawer-bottom:has(.txn-review-drawer-chrome--pwa) .ant-drawer-content-wrapper{height:min(92vh,100dvh - var(--pwa-bottom-nav-height, 64px) - 8px) !important;max-height:min(92vh,100dvh - var(--pwa-bottom-nav-height, 64px) - 8px) !important}.scope-pwa-drawer-root.ant-drawer-open .ant-drawer-content-wrapper{transform:translateY(var(--pwa-sheet-drag-offset, 0px)) !important}.scope-pwa-drawer-root.scope-pwa-drawer-root--dragging .ant-drawer-content-wrapper{transition:none !important}.scope-pwa-drawer-root .ant-drawer-content{border-radius:20px 20px 0 0 !important;overflow:hidden !important;display:flex !important;flex-direction:column !important;max-height:inherit}.scope-pwa-drawer-root .ant-drawer-header{display:none !important}.scope-pwa-drawer-root .drawer-header.drawer-header--integrated{display:none !important}.scope-pwa-drawer-root .ant-drawer-body{padding:0 !important;height:auto !important;max-height:inherit;display:flex !important;flex-direction:column !important;overflow:hidden !important}.scope-pwa-drawer-root.scope-pwa-drawer-root--tall .ant-drawer-body,.scope-pwa-drawer-root:has(.txn-review-drawer-chrome--pwa) .ant-drawer-body{height:100% !important}.scope-pwa-drawer-root .scope-pwa-drawer-content{padding:16px 16px 0 !important;display:flex !important;flex-direction:column !important;flex:0 1 auto !important;min-height:0 !important;overflow:hidden !important;height:auto !important}.scope-pwa-drawer-root.scope-pwa-drawer-root--tall .scope-pwa-drawer-content,.scope-pwa-drawer-root:has(.txn-review-drawer-chrome--pwa) .scope-pwa-drawer-content{padding:0 !important;flex:1 1 auto !important;height:auto !important}.scope-pwa-drawer-root .drawer-header{margin-bottom:12px !important;flex-shrink:0}.scope-pwa-drawer-root .drawer-title{flex:1 1 auto !important;min-width:0 !important}.scope-pwa-drawer-root .drawer-close-button{position:relative !important;z-index:6 !important;flex-shrink:0 !important}.scope-pwa-drawer-root:not(.scope-pwa-drawer-root--tall) .extraction-rules-wrapper{height:auto !important;flex:0 1 auto !important}.scope-pwa-drawer-root:has(.scope-entity-profile-drawer).ant-drawer-bottom .ant-drawer-content-wrapper{height:min(92dvh,100dvh - var(--pwa-bottom-nav-height, 64px) - 8px) !important;max-height:min(92dvh,100dvh - var(--pwa-bottom-nav-height, 64px) - 8px) !important}.scope-pwa-drawer-root:has(.scope-entity-profile-drawer) .drawer-content{flex:1 1 auto !important;overflow-y:auto !important;-webkit-overflow-scrolling:touch;padding-bottom:0 !important;height:auto !important;min-height:0 !important}.scope-pwa-drawer-root .scope-entity-profile-drawer__footer{position:sticky;bottom:0;z-index:2;margin-top:16px;padding:12px 0 calc(12px + env(safe-area-inset-bottom, 0px));background:var(--color-drawer-bg, var(--color-layout-bg, #eaf6f7));box-sizing:border-box}.scope-pwa-drawer-root .drawer-title-main{font-size:18px !important;line-height:22px !important}.scope-pwa-drawer-root .drawer-title-sub{font-size:13px !important;line-height:18px !important}.scope-pwa-drawer-root .drawer-content{flex:0 1 auto !important;overflow:visible !important;-webkit-overflow-scrolling:touch;padding-bottom:calc(12px + env(safe-area-inset-bottom, 0px));height:auto !important;min-height:0 !important}.scope-pwa-drawer-root.scope-pwa-drawer-root--tall .drawer-content,.scope-pwa-drawer-root:has(.txn-review-drawer-chrome--pwa) .drawer-content{flex:1 1 auto !important;padding-bottom:0;overflow:hidden !important}.scope-pwa-drawer-root .scope-pwa-bottom-sheet__drag-handle{flex-shrink:0;width:100%;height:24px;display:flex;align-items:center;justify-content:center;cursor:grab;touch-action:none}.scope-pwa-drawer-root .scope-pwa-bottom-sheet__drag-handle::before{content:"";display:block;width:48px;height:4px;background:var(--color-border, #ccc);border-radius:2px}.scope-pwa-drawer-root .scope-pwa-bottom-sheet__drag-zone:active .scope-pwa-bottom-sheet__drag-handle{cursor:grabbing}.scope-pwa-drawer-root .txn-review-drawer-chrome--pwa{display:flex;flex-direction:column;gap:0;width:100%;min-width:0;box-sizing:border-box}.scope-pwa-drawer-root .txn-review-drawer-chrome__heading{display:grid;grid-template-columns:36px minmax(0, 1fr) 36px;align-items:center;width:100%;min-width:0;padding:12px 8px 12px}.scope-pwa-drawer-root .txn-review-drawer-chrome__nav-prev{grid-column:1;justify-self:start;display:flex;align-items:center}.scope-pwa-drawer-root .txn-review-drawer-chrome__nav-next{grid-column:3;justify-self:end;display:flex;align-items:center}.scope-pwa-drawer-root .txn-review-drawer-chrome__heading--actions .txn-review-drawer-chrome__actions--inline{grid-column:2;display:flex;align-items:center;justify-content:center;gap:6px;min-width:0;width:100%;padding:0 4px;box-sizing:border-box}.scope-pwa-drawer-root .txn-review-drawer-chrome--pwa .txn-review-drawer-chrome__actions--inline>.ant-btn,.scope-pwa-drawer-root .txn-review-drawer-chrome--pwa .txn-review-drawer-chrome__actions--inline>button,.scope-pwa-drawer-root .txn-review-drawer-chrome--pwa .txn-review-drawer-chrome__actions--inline .txn-review-drawer-chrome__btn-wrap{flex:1 1 0;min-width:0;max-width:none}.scope-pwa-drawer-root .txn-review-drawer-chrome--pwa .txn-review-drawer-chrome__actions--inline .txn-review-drawer-chrome__btn-wrap{display:flex}.scope-pwa-drawer-root .txn-review-drawer-chrome--pwa .txn-review-drawer-chrome__actions--inline>.ant-btn,.scope-pwa-drawer-root .txn-review-drawer-chrome--pwa .txn-review-drawer-chrome__actions--inline>button,.scope-pwa-drawer-root .txn-review-drawer-chrome--pwa .txn-review-drawer-chrome__actions--inline .txn-review-drawer-chrome__btn-wrap .ant-btn,.scope-pwa-drawer-root .txn-review-drawer-chrome--pwa .txn-review-drawer-chrome__actions--inline .txn-review-drawer-chrome__btn-wrap button{flex:1 1 0 !important;width:100% !important;min-width:0 !important;max-width:none !important;padding-inline:4px !important}.scope-pwa-drawer-root .txn-review-drawer-chrome--pwa .txn-review-drawer-chrome__actions--inline .scope-button-label{white-space:nowrap !important;overflow:hidden !important;text-overflow:ellipsis !important;max-width:100%}.scope-pwa-drawer-root .txn-review-drawer-chrome--pwa .txn-review-drawer-chrome__actions:not(.txn-review-drawer-chrome__actions--inline){display:flex;flex-wrap:nowrap;align-items:stretch;gap:8px;width:100%;padding:0 12px 12px;box-sizing:border-box}.scope-pwa-drawer-root .txn-review-drawer-chrome--pwa .txn-review-drawer-chrome__actions:not(.txn-review-drawer-chrome__actions--inline) .txn-review-drawer-chrome__btn-wrap{display:flex;flex:1 1 0;min-width:0}.scope-pwa-drawer-root .txn-review-drawer-chrome--pwa .txn-review-drawer-chrome__actions:not(.txn-review-drawer-chrome__actions--inline)>.ant-btn,.scope-pwa-drawer-root .txn-review-drawer-chrome--pwa .txn-review-drawer-chrome__actions:not(.txn-review-drawer-chrome__actions--inline)>button,.scope-pwa-drawer-root .txn-review-drawer-chrome--pwa .txn-review-drawer-chrome__actions:not(.txn-review-drawer-chrome__actions--inline) .txn-review-drawer-chrome__btn-wrap .ant-btn,.scope-pwa-drawer-root .txn-review-drawer-chrome--pwa .txn-review-drawer-chrome__actions:not(.txn-review-drawer-chrome__actions--inline) .txn-review-drawer-chrome__btn-wrap button{flex:0 1 auto;width:auto !important;min-width:84px !important;max-width:none !important;padding-inline:10px !important;overflow:visible !important}.scope-pwa-drawer-root .txn-review-drawer-chrome--pwa .txn-review-drawer-chrome__actions:not(.txn-review-drawer-chrome__actions--inline) .scope-button-label{overflow:visible !important;text-overflow:clip !important;white-space:nowrap !important;max-width:none !important;font-size:12px}.scope-pwa-drawer-root .scope-pwa-review-drawer{display:flex;flex-direction:column;height:100%;min-height:0;overflow:hidden}.scope-pwa-drawer-root .scope-pwa-review-drawer__chrome{flex:0 0 auto;display:flex;flex-direction:column;min-width:0;background:var(--color-surface-raised, #fff);border-bottom:1px solid var(--color-border);padding:0;touch-action:none}.scope-pwa-drawer-root .scope-pwa-review-drawer__chrome-portal{flex:0 0 auto;min-width:0}.scope-pwa-drawer-root .scope-pwa-review-drawer__split{flex:1 1 auto;min-height:0;overflow-y:auto;-webkit-overflow-scrolling:touch;display:flex;flex-direction:column;gap:0}.scope-pwa-drawer-root .scope-pwa-review-drawer__viewer{flex:0 0 auto;width:100%;min-height:0}.scope-pwa-drawer-root .scope-pwa-review-drawer__form{flex:0 0 auto;min-height:0}.scope-pwa-drawer-root .scope-pwa-review-drawer-form-stack{padding:4px 12px 16px !important;gap:10px !important}.scope-pwa-drawer-root .scope-pwa-review-drawer-document-panel{padding:12px !important}.scope-pwa-drawer-root .scope-pwa-review-drawer-document-panel>div:first-child{flex-direction:column !important;align-items:flex-start !important;gap:4px !important}.scope-pwa-drawer-root .scope-pwa-review-drawer-fields-grid{grid-template-columns:minmax(0, 1fr) !important;column-gap:0 !important}.scope-pwa-drawer-root .scope-pwa-review-drawer-form-stack .ant-select,.scope-pwa-drawer-root .scope-pwa-review-drawer-form-stack .ant-picker,.scope-pwa-drawer-root .scope-pwa-review-drawer-form-stack .ant-input,.scope-pwa-drawer-root .scope-pwa-review-drawer-form-stack .ant-input-affix-wrapper,.scope-pwa-drawer-root .scope-pwa-review-drawer-form-stack .ant-input-number{width:100% !important;max-width:100% !important}.scope-pwa-drawer-root .scope-pwa-review-drawer-form-stack li{min-width:0;max-width:100%;overflow:visible}.scope-pwa-document-lightbox{position:fixed;inset:0;z-index:2100;display:flex;align-items:center;justify-content:center;padding:12px;padding-top:calc(12px + env(safe-area-inset-top, 0px));padding-bottom:calc(12px + env(safe-area-inset-bottom, 0px));background:rgba(5,16,16,.88);overflow:auto;box-sizing:border-box}.scope-pwa-document-lightbox__close{position:fixed;top:calc(10px + env(safe-area-inset-top, 0px));right:12px;z-index:2101;width:36px;height:36px;border:none;border-radius:50%;background:var(--color-surface-raised, #ffffff);color:var(--color-text-base, #042a2a);font-size:24px;line-height:1;cursor:pointer}.scope-pwa-document-lightbox__img{display:block;width:min(100%,900px);max-width:100%;height:auto;border-radius:8px;box-shadow:0 8px 32px rgba(0,0,0,.35)}.scope-pwa-document-lightbox--pdf-mode{align-items:flex-start}.scope-pwa-document-lightbox__pdf{width:min(100%,900px);max-width:100%;max-height:calc(100vh - 80px);overflow:auto;border-radius:8px;background:var(--color-surface-raised, #ffffff);box-shadow:0 8px 32px rgba(0,0,0,.35);padding:8px;box-sizing:border-box;-webkit-overflow-scrolling:touch}.scope-pwa-document-lightbox__pdf .react-pdf__Page{margin-bottom:8px}.scope-pwa-document-lightbox__pdf .react-pdf__Page:last-child{margin-bottom:0}.scope-pwa-document-preview-hit{cursor:zoom-in}.av-viewer--pwa-sheet-collapsed .scope-pwa-document-preview-hit::after{content:attr(data-tap-hint);position:absolute;bottom:6px;right:8px;padding:2px 8px;border-radius:10px;font-family:var(--font-family, Inter, sans-serif);font-size:11px;font-weight:600;line-height:16px;color:var(--color-on-primary, #052325);background:var(--color-primary, #41aaaf);pointer-events:none;z-index:2}.av-viewer--pwa-sheet-collapsed .scope-pwa-document-preview-hit{position:relative}.app-root--pwa-mobile .av-viewer--pwa-standalone{top:0 !important;right:0 !important;left:0 !important;width:100% !important;max-width:100vw !important;height:calc(100dvh - var(--pwa-bottom-nav-height, 64px) - var(--pwa-safe-bottom, 0px)) !important;max-height:calc(100dvh - var(--pwa-bottom-nav-height, 64px) - var(--pwa-safe-bottom, 0px)) !important;z-index:1100 !important;border-radius:0 !important;overflow:hidden !important}.app-root--pwa-mobile .av-viewer--pwa-standalone .av-top-bar{height:auto;min-height:48px;padding:8px 12px;border-radius:0}.app-root--pwa-mobile .av-viewer--pwa-standalone .av-previewing-text{white-space:normal;text-align:right;line-height:1.25;max-width:42vw}html[data-theme=dark] .scope-pwa-document-lightbox{background:rgba(0,0,0,.92)}html[data-theme=dark] .extraction-rule-modal .scope-extraction-rule-footer{background:var(--color-surface-raised, #1a2b2c);border-top-color:var(--color-border, #355356)}html[data-theme=dark] .extraction-rule-modal .scope-extraction-authoring-card:hover{box-shadow:0 2px 8px rgba(0,0,0,.25)}html[data-theme=dark] .extraction-rule-modal .scope-extraction-describe-input:focus-within{border-color:var(--color-primary, #62c8cd)}.scope-dashboard-view-tabs--split{width:100%;flex:1 1 100%}.scope-dashboard-view-tabs--split .ant-tabs{width:100%}.scope-dashboard-view-tabs--split .ant-tabs-nav{width:100%;margin-bottom:0 !important}.scope-dashboard-view-tabs--split .ant-tabs-nav-wrap,.scope-dashboard-view-tabs--split .ant-tabs-nav-list{width:100% !important}.scope-dashboard-view-tabs--split .ant-tabs-nav-list{display:flex !important}.scope-dashboard-view-tabs--split .ant-tabs-tab{flex:1 1 50% !important;max-width:50% !important;justify-content:center !important;margin:0 !important;padding:12px 8px !important}.scope-dashboard-view-tabs--split .ant-tabs-tab:only-child{flex:1 1 100% !important;max-width:100% !important}.scope-dashboard-view-tabs--split .ant-tabs-tab+.ant-tabs-tab{margin-inline-start:0 !important}.scope-dashboard-view-tabs--split .ant-tabs-tab-btn{width:100%;justify-content:center !important}.scope-pwa-dashboard-grid{display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:10px;width:100%}.scope-pwa-dashboard-grid__item{min-width:0}.scope-pwa-dashboard-grid__item--large{grid-column:1/-1}.scope-pwa-dashboard .scope-pwa-dashboard-grid__item:not(.scope-pwa-dashboard-grid__item--large) .base-card-title .ant-card-body{padding:12px !important}.scope-pwa-dashboard .scope-pwa-dashboard-grid__item:not(.scope-pwa-dashboard-grid__item--large) .base-card-title .ant-card-head{min-height:36px;padding:0 12px !important;border-top-left-radius:10px !important;border-top-right-radius:10px !important;overflow:hidden;border-bottom:none !important}.scope-pwa-dashboard .scope-pwa-dashboard-grid__item:not(.scope-pwa-dashboard-grid__item--large) .base-card-title .ant-card-head-title{font-size:11px !important;line-height:1.2 !important;white-space:normal}.scope-pwa-dashboard .base-card-title{height:auto !important}.scope-pwa-dashboard .base-card-title.ant-card{height:auto !important}.scope-pwa-dashboard .base-card-title .ant-card-head{border-top-left-radius:10px !important;border-top-right-radius:10px !important;border-bottom:none !important;overflow:hidden}.scope-pwa-dashboard .base-card-title .ant-card-head::before,.scope-pwa-dashboard .base-card-title .ant-card-head::after{border:0 !important}.scope-pwa-dashboard .base-card-title .ant-card-body{overflow:hidden !important;border-radius:10px !important;background-clip:padding-box;height:auto !important;flex:none !important;min-height:0 !important;padding:16px !important}.scope-pwa-dashboard .base-card-title .ant-card-body>[role=region]{overflow:auto !important;overflow-y:auto !important;flex:none !important;min-height:0 !important}.scope-pwa-dashboard .ant-table-body,.scope-pwa-dashboard .ant-table-content,.scope-pwa-dashboard .ant-table-wrapper{overflow:visible !important;max-height:none !important}.app-root--pwa-mobile .dashboard-calendar-wrapper{width:100%;max-width:100%;overflow-x:hidden !important;box-sizing:border-box}.app-root--pwa-mobile .dashboard-calendar-wrapper .ant-picker-calendar,.app-root--pwa-mobile .dashboard-calendar-wrapper .ant-picker-panel,.app-root--pwa-mobile .dashboard-calendar-wrapper .ant-picker-body,.app-root--pwa-mobile .dashboard-calendar-wrapper .ant-picker-content{width:100% !important;max-width:100% !important;table-layout:fixed !important}.app-root--pwa-mobile .dashboard-calendar-wrapper .ant-picker-content th,.app-root--pwa-mobile .dashboard-calendar-wrapper .ant-picker-content td{width:14.28% !important;padding:2px !important}.app-root--pwa-mobile .dashboard-calendar-wrapper .ant-picker-calendar-date{min-width:0 !important;height:auto !important;min-height:36px;padding:2px !important}.app-root--pwa-mobile .scope-pwa-dashboard .dashboard-calendar-wrapper{padding:0}.app-root--pwa-mobile .scope-pwa-dashboard .base-card-title:has(.dashboard-calendar-wrapper) .ant-card-body{padding:12px !important}.scope-pwa-returns-sheet-backdrop{position:fixed;inset:0;z-index:1100;border:0;padding:0;margin:0;background:rgba(0,0,0,.45);cursor:pointer}.scope-pwa-returns-sheet{--pwa-sheet-drag-offset: 0px;position:fixed;left:0;right:0;bottom:var(--pwa-bottom-nav-height, 64px);z-index:1101;display:flex;flex-direction:column;max-height:min(72dvh,100dvh - var(--pwa-bottom-nav-height, 64px) - 24px);width:100%;max-width:100vw;box-sizing:border-box;padding:0 16px calc(12px + env(safe-area-inset-bottom, 0px));border-radius:20px 20px 0 0;background:var(--color-surface-raised, #ffffff);border:1px solid var(--color-border, #d7d7d7);border-bottom:none;box-shadow:0 -8px 28px rgba(0,0,0,.18);color:var(--color-text-base, #2e2e2e);transform:translateY(var(--pwa-sheet-drag-offset, 0px));transition:transform .22s ease-out;will-change:transform}.scope-pwa-returns-sheet.scope-pwa-drawer-root--dragging{transition:none}.scope-pwa-returns-sheet .scope-pwa-bottom-sheet__drag-handle{flex-shrink:0;width:100%;height:24px;display:flex;align-items:center;justify-content:center;cursor:grab;touch-action:none}.scope-pwa-returns-sheet .scope-pwa-bottom-sheet__drag-handle::before{content:"";display:block;width:48px;height:4px;background:var(--color-border, #ccc);border-radius:2px}.scope-pwa-returns-sheet .scope-pwa-bottom-sheet__drag-zone:active .scope-pwa-bottom-sheet__drag-handle{cursor:grabbing}.scope-pwa-returns-sheet__chrome{flex-shrink:0;margin:0 -16px;padding:0 16px 4px}.scope-pwa-returns-sheet__header{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:8px;flex-shrink:0}.scope-pwa-returns-sheet__header strong{font-size:15px;font-weight:600;color:var(--color-text-base, #2e2e2e)}.scope-pwa-returns-sheet__close{border:0;background:rgba(0,0,0,0);color:var(--color-primary, #41aaaf);font-size:13px;font-weight:600;padding:4px 0;cursor:pointer}.scope-pwa-returns-sheet__list{overflow-y:auto;overflow-x:hidden;-webkit-overflow-scrolling:touch;display:flex;flex-direction:column;gap:10px;min-height:0;padding-bottom:4px}.scope-pwa-returns-sheet__card{display:flex;flex-direction:column;gap:8px;padding:12px;border-radius:12px;background:var(--color-surface, #f3f7f8);border:1px solid var(--color-border, #d7d7d7);box-sizing:border-box;width:100%;max-width:100%}.scope-pwa-returns-sheet__card-title{font-size:14px;font-weight:600;color:var(--color-text-base, #2e2e2e);word-break:break-word}.scope-pwa-returns-sheet__card-entity{font-size:12px;color:var(--color-text-muted, #5a6a6a);word-break:break-word}.scope-pwa-returns-sheet__card-row{display:flex;align-items:center;justify-content:space-between;gap:12px;font-size:12px;color:var(--color-text-muted, #5a6a6a)}.scope-pwa-returns-sheet__card-row strong{color:var(--color-text-base, #2e2e2e);font-weight:600}.scope-pwa-returns-sheet__card-action{margin-top:4px}.scope-pwa-returns-sheet__card-action .ant-btn{width:100% !important;max-width:100% !important}.app-root--pwa-mobile .scope-pwa-entities{padding-top:4px !important;padding-bottom:16px !important;box-sizing:border-box}.app-root--pwa-mobile .scope-pwa-entities .ant-col-xs-24{flex:0 0 100%;max-width:100%}.app-root--pwa-mobile .scope-pwa-entities-filters-row{flex-direction:column;align-items:stretch;position:relative}.app-root--pwa-mobile .scope-table-filters-mobile-footer{display:flex !important;flex-direction:row !important;flex-wrap:nowrap !important;align-items:center !important;justify-content:space-between !important;width:100%;gap:12px}.app-root--pwa-mobile .scope-pwa-entities-filters{position:relative}.app-root--pwa-mobile .scope-pwa-entities-filters .ant-row{margin-inline:0 !important}.app-root--pwa-mobile .scope-pwa-entities-filters .ant-col{padding-inline:0 !important}.app-root--pwa-mobile .scope-pwa-entities-filters .ant-col>div:first-child{width:100% !important;flex-direction:column !important;align-items:stretch !important;gap:10px}.app-root--pwa-mobile .scope-pwa-entities-filters .ant-space{display:grid !important;grid-template-columns:minmax(0, 1fr) minmax(0, 1fr) !important;align-items:stretch !important;justify-content:stretch !important;width:100%;gap:10px !important;column-gap:10px !important;row-gap:10px !important}.app-root--pwa-mobile .scope-pwa-entities-filters .ant-space-item{width:auto !important;max-width:none !important;min-width:0 !important;margin:0 !important}.app-root--pwa-mobile .scope-pwa-entities-filters .ant-space-item:first-child{grid-column:1/-1}.app-root--pwa-mobile .scope-pwa-entities-filters .ant-space-item:has(>.scope-table-filters-appended){grid-column:1/-1}.app-root--pwa-mobile .scope-pwa-entities-filters .ant-badge{display:block;width:100%}.app-root--pwa-mobile .scope-pwa-entities-filters .ant-select{width:100% !important;min-width:0 !important}.app-root--pwa-mobile .scope-pwa-entities-filters .scope-filter-select.ant-select .ant-select-selector{overflow:hidden}.app-root--pwa-mobile .scope-pwa-entities-filters .scope-filter-select.ant-select.ant-select-open .ant-select-selector{border:2px solid var(--color-primary, #41aaaf) !important}.app-root--pwa-mobile .scope-pwa-entities-filters .scope-filter-select.ant-select.selected-filter .ant-select-selector::after{color:var(--color-text-base, #042a2a) !important;font-weight:700 !important}.app-root--pwa-mobile .scope-pwa-entities-filters .scope-table-filters-mobile-footer{width:100%;display:flex !important;flex-direction:row !important;flex-wrap:nowrap !important;align-items:center !important;justify-content:space-between !important;gap:12px;box-sizing:border-box}.app-root--pwa-mobile .scope-pwa-entities-filters .scope-table-filters-mobile-footer__clear{width:auto !important;flex:0 1 auto;padding-inline:0 !important;white-space:nowrap}.app-root--pwa-mobile .scope-pwa-entities-filters .scope-table-filters-mobile-footer__right{display:inline-flex !important;align-items:center;justify-content:flex-end;gap:8px;width:auto !important;flex:0 0 auto;margin-left:auto}.app-root--pwa-mobile .scope-pwa-entities-filters .scope-table-filters-mobile-footer__right .ant-btn,.app-root--pwa-mobile .scope-pwa-entities-filters .scope-table-filters-mobile-footer__right .scope-toggle-button{min-width:32px !important;width:32px !important;max-width:32px !important;height:32px !important;margin:0 !important;padding:0 !important;justify-content:center !important;border-radius:50% !important;background:rgba(0,0,0,0) !important;border:1px solid var(--color-border, #dbeae3) !important;color:var(--color-text-base, #042a2a) !important;box-shadow:none !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-entities-filters{width:100%}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-entities-filters .ant-space{display:grid !important;grid-template-columns:minmax(0, 1fr) minmax(0, 1fr) !important;gap:6px !important;row-gap:6px !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-entities-filters .ant-space-item{width:auto !important;min-width:0 !important;display:block !important;margin:0 !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-entities-filters .ant-space-item:first-child,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-entities-filters .ant-space-item:has(>.scope-table-filters-appended){grid-column:1/-1}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-entities-filters .ant-space-item>*{width:100% !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-entities-filters .ant-badge{width:100% !important;display:block !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-entities-filters .scope-filter-select.ant-select{width:100% !important;min-width:0 !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-entities-filters .scope-filter-select.ant-select .ant-select-selector{min-height:34px !important;padding-block:2px !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-entities-filters .scope-table-filters-mobile-footer{width:100%;display:flex !important;flex-direction:row !important;flex-wrap:nowrap !important;align-items:center !important;justify-content:space-between !important;gap:8px;box-sizing:border-box;padding-inline:0;margin-top:2px}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-entities-filters .scope-table-filters-mobile-footer__clear{width:auto !important;min-width:0;flex:0 1 auto;height:auto !important;padding-inline:0 !important;white-space:nowrap}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-entities-filters .scope-table-filters-mobile-footer__right{display:inline-flex !important;align-items:center;justify-content:flex-end;gap:8px;width:auto !important;flex:0 0 auto;margin-left:auto}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-entities-filters .scope-table-filters-mobile-footer__right .ant-btn,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-entities-filters .scope-table-filters-mobile-footer__right .ant-btn-circle,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-entities-filters .scope-table-filters-mobile-footer__right .scope-toggle-button,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-entities-filters .scope-table-filters-mobile-footer__right .scope-icon-chip{min-width:32px !important;width:32px !important;max-width:32px !important;height:32px !important;margin:0 !important;padding:0 !important;display:inline-flex !important;align-items:center !important;justify-content:center !important;border-radius:50% !important;line-height:1 !important;overflow:hidden;flex:0 0 32px !important;background:rgba(0,0,0,0) !important;border:1px solid var(--color-border, #dbeae3) !important;color:var(--color-text-base, #042a2a) !important;box-shadow:none !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-entities-filters .scope-table-filters-mobile-footer__right .ant-btn-circle .anticon,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-entities-filters .scope-table-filters-mobile-footer__right .scope-toggle-button .anticon{font-size:14px;line-height:1 !important;display:inline-flex;align-items:center;justify-content:center;margin:0 !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-card-shell.ant-card{width:100% !important;max-width:100% !important;margin:0 !important;border-radius:var(--border-radius-card, 12px) !important;overflow:visible !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-card-shell.ant-card .ant-card-body{padding:8px 8px 12px !important;overflow:visible !important;max-width:100%;box-sizing:border-box;border-radius:inherit}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-body{width:100%;max-width:100%;min-width:0;margin:0;padding:0;box-sizing:border-box}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-landscape-tip{display:flex;align-items:center;justify-content:center;margin:0 0 8px;padding:8px 12px;border-radius:6px;border:1px solid var(--color-border, #dbeae3);background:var(--color-primary-soft, #e6f7f7);color:var(--color-text-base, #042a2a);font-size:11px;font-weight:500;line-height:1.35;text-align:center;box-sizing:border-box}@media(orientation: landscape){.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-landscape-tip{display:none}}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-table-scroll{display:block;width:100%;max-width:100%;min-width:0;margin:0;padding:0;overflow:visible;box-sizing:border-box;text-align:start}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-table-scroll>.ant-row,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-table-scroll>.ant-row>.ant-col{width:100% !important;max-width:100% !important;min-width:0 !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-table-scroll>.ant-row>.ant-col{display:flex !important;flex-direction:column !important;align-items:stretch !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-table-scroll .transaction-table.ant-table-wrapper{display:block !important;width:calc(100% + 16px) !important;max-width:none !important;min-width:0 !important;margin:0 -8px !important;overflow-x:auto !important;overflow-y:visible !important;-webkit-overflow-scrolling:touch;overscroll-behavior-x:contain;padding-bottom:6px;box-sizing:border-box}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-table-scroll .scope-pwa-table-pager{width:100% !important;max-width:100% !important;min-width:0 !important;margin-inline:0 !important;flex-shrink:0;overflow:visible !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-table-scroll .ant-table-wrapper,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-table-scroll .ant-spin-nested-loading,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-table-scroll .ant-spin-container{display:block !important;width:max-content !important;min-width:100% !important;max-width:none !important;margin:0 !important;margin-inline:0 !important;float:none !important;overflow:visible !important;text-align:start !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-table-scroll .ant-table,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-table-scroll .ant-table-container,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-table-scroll .ant-table-content{display:block !important;width:max-content !important;min-width:100% !important;max-width:none !important;margin:0 !important;overflow:visible !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-table-scroll .ant-table table{width:max-content !important;min-width:100% !important;margin:0 !important;table-layout:auto !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-table-scroll .ant-table-thead>tr>th,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-table-scroll .ant-table-tbody>tr>td{white-space:nowrap;font-size:12px;line-height:1.3;padding:10px 10px !important;text-align:start;vertical-align:middle !important;height:auto !important;min-height:40px;box-sizing:border-box}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-table-scroll .ant-table-tbody>tr>td>*{vertical-align:middle}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-table-scroll .ant-table-thead>tr>th.transactions-amount-column,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-table-scroll .ant-table-tbody>tr>td.transactions-amount-column{text-align:end !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-table-scroll .ant-table-thead>tr>th.transactions-amount-column .ant-table-column-sorters{margin-inline-start:auto;width:100%;justify-content:flex-end}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-table-scroll .ant-table-thead>tr>th.transactions-amount-column .ant-table-column-title{text-align:end}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-cards{display:none}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-card{border:1px solid var(--color-border, #dbeae3);border-radius:10px;background:var(--color-surface, #f3f7f8);padding:10px;display:flex;flex-direction:column;gap:8px;cursor:pointer}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-card__row{display:flex;justify-content:space-between;align-items:flex-start;gap:10px;font-size:12px;color:var(--color-text-muted, #5a6a6a)}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-card__row strong{color:var(--color-text-base, #2e2e2e);font-weight:600;text-align:right;max-width:58%;overflow-wrap:anywhere}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-card__amount--negative{color:var(--color-status-danger, #d13131) !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-cards__empty{border:1px solid var(--color-border, #dbeae3);border-radius:10px;background:var(--color-surface, #f3f7f8);padding:18px 12px;text-align:center;color:var(--color-text-muted, #5a6a6a);font-size:13px}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-detail-backdrop{position:fixed;inset:0;z-index:46;margin:0;padding:0;border:none;background:rgba(0,0,0,.4);appearance:none}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-detail-trigger{display:inline-flex;align-items:center;justify-content:center;width:32px;height:32px;margin:0;padding:0;border:1px solid var(--color-border, #dbeae3);border-radius:8px;background:var(--color-surface-raised, #fff);color:var(--color-primary, #41aaaf);cursor:pointer;line-height:0}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-detail-trigger .anticon{font-size:15px}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-detail-trigger:hover,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-detail-trigger:focus-visible{background:var(--color-primary-soft, #e6f7f7)}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-detail-trigger:focus-visible{outline:2px solid var(--color-primary, #41aaaf);outline-offset:2px}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-detail-sheet{--pwa-sheet-drag-offset: 0px;position:fixed;inset-inline:0;bottom:var(--pwa-bottom-nav-height, 64px);z-index:47;border-radius:14px 14px 0 0;border:1px solid var(--color-border, #dbeae3);border-bottom:none;background:var(--color-surface-raised, #ffffff);box-shadow:0 -8px 32px rgba(0,0,0,.25);padding:0 12px calc(12px + env(safe-area-inset-bottom, 0px));max-height:min(72vh,680px);overflow-y:auto;overflow-x:hidden;-webkit-overflow-scrolling:touch;transform:translateY(var(--pwa-sheet-drag-offset, 0px));transition:transform .22s ease-out;will-change:transform;display:flex;flex-direction:column}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-detail-sheet.scope-pwa-drawer-root--dragging{transition:none}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-detail-sheet .scope-pwa-bottom-sheet__drag-handle{flex-shrink:0;width:100%;height:24px;display:flex;align-items:center;justify-content:center;cursor:grab;touch-action:none}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-detail-sheet .scope-pwa-bottom-sheet__drag-handle::before{content:"";display:block;width:48px;height:4px;background:var(--color-border, #ccc);border-radius:2px}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-detail-sheet__chrome{flex-shrink:0;margin:0 -12px;padding:0 12px 4px;position:sticky;top:0;z-index:1;background:var(--color-surface-raised, #ffffff)}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-detail-sheet__header{display:flex;justify-content:space-between;align-items:center;gap:8px;margin-bottom:10px}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-detail-sheet__close{appearance:none;border:1px solid var(--color-border, #dbeae3);border-radius:999px;padding:6px 10px;background:var(--color-surface, #f3f7f8);color:var(--color-text-base, #2e2e2e);font-size:12px;font-weight:600}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-detail-sheet__list{display:flex;flex-direction:column;gap:8px}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-detail-sheet__row{display:flex;justify-content:space-between;align-items:flex-start;gap:10px;font-size:12px;color:var(--color-text-muted, #5a6a6a)}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-transactions-detail-sheet__row strong{color:var(--color-text-base, #2e2e2e);text-align:right;max-width:60%;overflow-wrap:anywhere}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-exceptions{width:100%;max-width:100%}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-exceptions-bulk{display:flex;justify-content:flex-start;margin:4px 0 10px}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-exceptions-bulk .ant-dropdown-trigger{width:auto !important;min-width:0;padding-inline:14px;margin-left:0 !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-pager,.app-root--pwa-mobile .scope-pwa-table-pager{margin-top:12px;padding-top:12px;border-top:1px solid var(--color-border, #dbeae3);width:100%;box-sizing:border-box;flex-direction:column !important;align-items:center !important;justify-content:flex-start !important;gap:10px !important;text-align:center !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-pager>.ant-row>.ant-col>div{flex-direction:column !important;align-items:stretch !important;justify-content:flex-start !important;gap:10px !important;text-align:center !important;margin-top:0 !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-pager>.ant-row>.ant-col>div>div:first-child{min-width:0 !important;width:100%}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-pager>.ant-row>.ant-col>div>div:first-child .ant-typography{width:100%;text-align:center !important;font-size:12px !important;line-height:1.4 !important;color:var(--color-text-muted, #5a6a6a) !important;white-space:normal !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-pager>.ant-row>.ant-col>div>div:last-child{width:100%;margin-inline-start:0 !important;display:flex !important;align-items:center !important;justify-content:center !important;gap:4px !important;flex-wrap:nowrap !important;overflow-x:visible;padding-bottom:0}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-pager>.ant-row>.ant-col>div>div:last-child>span{display:inline-flex;align-items:center;flex:0 0 auto}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-pager>.ant-row>.ant-col>div>div:last-child>span:nth-child(3){margin:0 !important;padding:4px 8px;border-radius:999px;font-size:11px;font-weight:600;line-height:1.2;color:var(--color-text-base, #042a2a);background:var(--color-surface, #f3f7f8);border:1px solid var(--color-border, #dbeae3);white-space:nowrap}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-pager>.ant-row>.ant-col>div>div:last-child>span>span[style]{display:none !important}.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-pager>.ant-row>.ant-col>div>div:last-child .ant-btn,.app-root--pwa-mobile .scope-pwa-vat-report .scope-pwa-vat-pager>.ant-row>.ant-col>div>div:last-child button{width:auto !important;max-width:none !important;min-width:0 !important;height:32px !important;padding-inline:8px !important;font-size:11px !important;line-height:1.2 !important;border-radius:999px !important;flex:0 0 auto !important}.app-root--pwa-mobile .scope-pwa-table-pager .ant-typography{width:100%;text-align:center !important;font-size:12px !important;color:var(--color-text-muted, #5a6a6a) !important;white-space:normal !important}.app-root--pwa-mobile .scope-pwa-table-pager .scope-pwa-table-pager__nav{width:100%;display:flex !important;align-items:center !important;justify-content:center !important;flex-wrap:nowrap !important;gap:4px !important;margin-inline-start:0 !important}.app-root--pwa-mobile .scope-pwa-table-pager .scope-pwa-table-pager__page{margin:0 !important;padding:4px 8px;border-radius:999px;font-size:11px !important;font-weight:600 !important;line-height:1.2;background:var(--color-surface, #f3f7f8);border:1px solid var(--color-border, #dbeae3);white-space:nowrap}.app-root--pwa-mobile .scope-pwa-table-pager .scope-pwa-table-pager__nav .ant-btn,.app-root--pwa-mobile .scope-pwa-table-pager .scope-pwa-table-pager__nav button{width:auto !important;min-width:0 !important;height:32px !important;padding-inline:8px !important;font-size:11px !important;border-radius:999px !important;flex:0 0 auto !important}.scope-pwa-dropdown-sentinel{position:fixed;top:0;left:calc(var(--pwa-content-gutter, 16px) + env(safe-area-inset-left, 0px));right:calc(var(--pwa-content-gutter, 16px) + env(safe-area-inset-right, 0px));width:calc(100vw - 2*var(--pwa-content-gutter, 16px) - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px));height:0;overflow:visible;pointer-events:none;z-index:1050}.scope-pwa-dropdown-sentinel .ant-select-dropdown{pointer-events:all;position:absolute !important;left:0 !important;right:0 !important;width:100% !important;max-width:100% !important;min-width:0 !important;box-sizing:border-box !important}.app-root--pwa-mobile .scope-table-filter-dropdown.ant-select-dropdown{min-width:0 !important;box-sizing:border-box !important}.app-root--pwa-mobile .scope-pwa-activity-tab{padding-bottom:12px;width:100%;box-sizing:border-box}.app-root--pwa-mobile .scope-pwa-activity-tab .selects-row{align-items:stretch}.app-root--pwa-mobile .scope-pwa-activity-tab .column-1:not(:empty)::before{background:var(--color-border, #dbeae3)}.scope-pwa-process-select-dropdown.ant-select-dropdown{max-height:calc(100dvh - var(--pwa-bottom-nav-height, 64px) - 96px) !important;overflow:hidden}.scope-pwa-process-select-dropdown.ant-select-dropdown .rc-virtual-list,.scope-pwa-process-select-dropdown.ant-select-dropdown .rc-virtual-list-holder{max-height:inherit !important}@media(max-width: 767px){html.pwa-standalone .header-container{padding-inline:calc(var(--pwa-content-gutter, 16px) + env(safe-area-inset-left, 0px)) calc(var(--pwa-content-gutter, 16px) + env(safe-area-inset-right, 0px))}html.pwa-standalone .header-container .ant-row{row-gap:4px}html.pwa-standalone .side-panel .action-box,html.pwa-standalone .side-panel .user-menu-button,html.pwa-standalone .side-panel .user-menu-button-small{min-height:44px;min-width:44px}html.pwa-standalone .app-shell-main>.layout,html.pwa-standalone .app-shell-main>.layout-wide,html.pwa-standalone .app-shell-main>.layout-narrow{-webkit-overflow-scrolling:touch}}.transaction-action-icon{display:block;flex-shrink:0;color:var(--color-text-muted, #5a6a6a) !important}.transaction-action-icon>circle:first-of-type{fill:var(--color-surface-raised, #ffffff) !important}.transaction-action-icon>path{fill:currentColor !important}.transaction-action-icon>circle:last-of-type:not(:first-of-type){fill:var(--btn-accent-bg, #ffbc3e) !important}.scope-avatar.ant-avatar{background-color:var(--color-avatar-bg, #5a6a6a) !important;color:var(--color-avatar-text, #ffffff) !important;font-family:var(--font-family, Inter, sans-serif) !important;font-weight:600 !important}.scope-avatar.scope-avatar--small{font-size:10px !important}.scope-avatar.scope-avatar--default{font-size:12px !important}.scope-avatar.scope-avatar--large{font-size:14px !important}.scope-avatar-group .ant-avatar{border-color:var(--color-avatar-border, #ffffff)}.scope-avatar-add-user.ant-btn-primary{background-color:var(--color-toggle-chip-hover-bg, #41aaaf) !important;border-color:var(--color-toggle-chip-hover-bg, #41aaaf) !important;color:var(--color-toggle-chip-hover-text, #ffffff) !important}.scope-avatar-add-user.ant-btn-primary .anticon{color:var(--color-toggle-chip-hover-text, #ffffff) !important}.scope-attachments-heading{display:flex;align-items:center;gap:12px;margin:16px 0 8px;color:var(--color-text-base, #2e2e2e);font-size:14px;font-weight:500;line-height:1.5;white-space:nowrap}.scope-attachments-heading::before,.scope-attachments-heading::after{content:"";flex:1;height:1px;background:var(--color-border, #dbeae3)}.header-container{min-height:70px;background-color:var(--color-surface-base, #ffffff);padding:0 40px;position:fixed;top:0;inset-inline-start:var(--app-sidebar-width, 213px);width:calc(100vw - var(--app-sidebar-width, 213px));z-index:999;box-sizing:border-box}.header-container-center{width:100%;max-width:none;margin:0;box-sizing:border-box}.header-container .ant-row{flex-wrap:wrap;row-gap:8px}.header-container .ant-col:last-child{max-width:100%}.header-container .ant-col:last-child .ant-space{flex-wrap:wrap;justify-content:flex-end;max-width:100%}.top-pad{padding-top:70px}.vat-header{height:70px}.vat-content{min-height:calc(100vh - 70px) !important}.app-shell-main>.layout,.app-shell-main>.layout-wide,.app-shell-main>.layout-narrow{box-sizing:border-box;height:100%;width:100%;overflow-y:scroll;overflow-x:hidden;scrollbar-width:thin;scrollbar-color:var(--color-text-disabled, #bfbfbf) rgba(0,0,0,0) !important}.app-shell-main>.layout::-webkit-scrollbar,.app-shell-main>.layout-wide::-webkit-scrollbar,.app-shell-main>.layout-narrow::-webkit-scrollbar{width:8px}.app-shell-main>.layout::-webkit-scrollbar-track,.app-shell-main>.layout-wide::-webkit-scrollbar-track,.app-shell-main>.layout-narrow::-webkit-scrollbar-track{background:rgba(0,0,0,0) !important}.app-shell-main>.layout.layout-login{scrollbar-color:var(--color-text-disabled, #bfbfbf) var(--color-layout-bg, #eaf6f7) !important}.app-shell-main>.layout.layout-login::-webkit-scrollbar-track{background:var(--color-layout-bg, #eaf6f7) !important}.app-shell-main>.layout.layout-login,.app-shell-main>.layout.layout-signup{background:var(--color-layout-bg, #eaf6f7);display:flex;flex-direction:column;min-height:unset}.app-shell-main>.layout.layout-login>main,.app-shell-main>.layout.layout-signup>main{flex:1;display:flex;flex-direction:column;min-height:0}.app-shell-main>.layout.layout-login .ant-spin-nested-loading,.app-shell-main>.layout.layout-login .ant-spin-container,.app-shell-main>.layout.layout-signup .ant-spin-nested-loading,.app-shell-main>.layout.layout-signup .ant-spin-container{flex:1;display:flex;flex-direction:column;min-height:0;width:100%}.layout-login .ant-btn-primary:not(:disabled):not(.ant-btn-disabled),.layout-signup .ant-btn-primary:not(:disabled):not(.ant-btn-disabled),.layout-login .scope-button.ant-btn-primary:not(:disabled):not(.ant-btn-disabled),.layout-signup .scope-button.ant-btn-primary:not(:disabled):not(.ant-btn-disabled){color:#fff !important}.layout-login .ant-btn-primary:not(:disabled):not(.ant-btn-disabled) span,.layout-login .ant-btn-primary:not(:disabled):not(.ant-btn-disabled) .anticon,.layout-signup .ant-btn-primary:not(:disabled):not(.ant-btn-disabled) span,.layout-signup .ant-btn-primary:not(:disabled):not(.ant-btn-disabled) .anticon,.layout-login .scope-button.ant-btn-primary:not(:disabled):not(.ant-btn-disabled) span,.layout-login .scope-button.ant-btn-primary:not(:disabled):not(.ant-btn-disabled) .anticon,.layout-signup .scope-button.ant-btn-primary:not(:disabled):not(.ant-btn-disabled) span,.layout-signup .scope-button.ant-btn-primary:not(:disabled):not(.ant-btn-disabled) .anticon{color:#fff !important}html[data-theme=dark] .layout-login .ant-btn-primary:not(:disabled):not(.ant-btn-disabled),html[data-theme=dark] .layout-signup .ant-btn-primary:not(:disabled):not(.ant-btn-disabled),html[data-theme=dark] .layout-login .scope-button.ant-btn-primary:not(:disabled):not(.ant-btn-disabled),html[data-theme=dark] .layout-signup .scope-button.ant-btn-primary:not(:disabled):not(.ant-btn-disabled),html[data-theme=dark] .layout-login .ant-btn-primary:not(:disabled):not(.ant-btn-disabled) span,html[data-theme=dark] .layout-signup .ant-btn-primary:not(:disabled):not(.ant-btn-disabled) span,html[data-theme=dark] .layout-login .scope-button.ant-btn-primary span,html[data-theme=dark] .layout-signup .scope-button.ant-btn-primary span{color:#fff !important}html[data-theme=dark] .layout-login .ant-btn:not(.ant-btn-primary):not(.ant-btn-dangerous):not(.ant-btn-text):not(.ant-btn-link),html[data-theme=dark] .layout-signup .ant-btn:not(.ant-btn-primary):not(.ant-btn-dangerous):not(.ant-btn-text):not(.ant-btn-link){background:var(--color-surface-raised, #1a2b2c) !important;border-color:var(--color-surface-raised, #1a2b2c) !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .layout-login .ant-btn:not(.ant-btn-primary):not(.ant-btn-dangerous):not(.ant-btn-text):not(.ant-btn-link):hover,html[data-theme=dark] .layout-signup .ant-btn:not(.ant-btn-primary):not(.ant-btn-dangerous):not(.ant-btn-text):not(.ant-btn-link):hover{background:var(--color-primary-soft, #274547) !important;border-color:var(--color-primary-soft, #274547) !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .layout-login .ant-typography,html[data-theme=dark] .layout-signup .ant-typography,html[data-theme=dark] .layout-login .login-a11y-toggle__label,html[data-theme=dark] .layout-signup .login-a11y-toggle__label{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .layout-login .sign-up-link,html[data-theme=dark] .layout-signup .sign-up-link{color:var(--color-text-base, #e3eaeb) !important}.app-shell-main>.layout.layout-signup{scrollbar-color:var(--color-text-disabled, #bfbfbf) var(--color-layout-bg, #eaf6f7) !important}.app-shell-main>.layout.layout-signup::-webkit-scrollbar-track{background:var(--color-layout-bg, #eaf6f7) !important}.app-shell-main>.layout.layout-organisations{overflow:hidden;display:flex;flex-direction:column}.app-shell-main>.layout.layout-organisations>main.top-pad{flex:1;min-height:0;overflow:hidden;display:flex;flex-direction:column;box-sizing:border-box}.layout-organisations .entity-details-page{flex:1;min-height:0;display:flex;flex-direction:column;overflow:hidden}.layout-organisations .entity-details-spin-wrap,.layout-organisations .entity-details-spin-wrap>.ant-spin-container{flex:1;min-height:0;height:100%;display:flex;flex-direction:column}.layout-organisations .entity-details-tab-panel{flex:1;min-height:0;overflow-x:hidden;overflow-y:scroll;scrollbar-width:thin;scrollbar-color:var(--color-text-disabled, #bfbfbf) var(--color-surface, #f3f7f8)}.layout-organisations .entity-details-tab-panel::-webkit-scrollbar{width:8px}.layout-organisations .entity-details-tab-panel::-webkit-scrollbar-track{background:var(--color-surface, #f3f7f8)}.layout-organisations .entity-details-tab-panel::-webkit-scrollbar-thumb{background-color:var(--color-text-disabled, #bfbfbf);border-radius:10px}.app-root--pwa-mobile .layout-organisations .entity-details-tab-panel{overflow-y:auto}.app-root--pwa-mobile .layout-organisations .entity-details-tab-panel:has(.scope-pwa-entity-submissions-empty){overflow-y:hidden;scrollbar-width:none}.app-root--pwa-mobile .layout-organisations .entity-details-tab-panel:has(.scope-pwa-entity-submissions-empty)::-webkit-scrollbar{display:none;width:0}.app-shell-main>.layout::-webkit-scrollbar-thumb,.app-shell-main>.layout-wide::-webkit-scrollbar-thumb,.app-shell-main>.layout-narrow::-webkit-scrollbar-thumb{background-color:var(--color-text-disabled, #bfbfbf);border-radius:10px;border:2px solid rgba(0,0,0,0);background-clip:content-box}.react-grid-layout,.dashboard-grid-layout{direction:ltr}.header-narrow{width:calc(100vw - var(--app-sidebar-width, 213px))}.header-wide{width:calc(100vw - var(--app-sidebar-width, 88px))}.menu-size-button{width:32px;height:32px;border-radius:10px;border:1px;background:var(--color-surface-raised, #ffffff);border:1px solid var(--color-border, #dbeae3);box-shadow:2px 2px 4px 0px rgba(0,0,0,.0509803922);z-index:1001;display:inline-flex !important;align-items:center;justify-content:center}.menu-size-button:hover{background:var(--color-surface, #f3f7f8);border:1px solid var(--color-primary, #41aaaf)}.side-panel-row{position:relative;width:100%;overflow:visible}.app-shell{display:flex;margin-top:var(--trial-banner-height, 0);height:calc(100vh - var(--trial-banner-height, 0px));min-height:0}.app-shell-side-spacer{width:var(--app-sidebar-spacer-width, 70px);flex-shrink:0;overflow:visible;position:relative;z-index:1100}.app-shell-main{flex:1;min-width:0;min-height:0;height:100%;overflow:hidden;display:flex;flex-direction:column;position:relative;z-index:0}html[dir=rtl] .app-shell-main>.layout,html[dir=rtl] .app-shell-main>.layout-wide,html[dir=rtl] .app-shell-main>.layout-narrow,html.locale-ar .app-shell-main>.layout,html.locale-ar .app-shell-main>.layout-wide,html.locale-ar .app-shell-main>.layout-narrow{direction:rtl}.app-shell-main>.layout,.app-shell-main>.layout-wide,.app-shell-main>.layout-narrow{flex:1;min-height:0}html:has(.app-shell){overflow:hidden;height:100%}html:has(.app-shell) body{overflow:hidden;height:100%}.side-panel{display:flex;flex-direction:column;align-items:stretch;justify-content:space-between;padding-top:20px;border-inline-end:1px solid var(--color-border, #dbeae3);background:linear-gradient(180deg, var(--color-primary-soft, #edfaf6) 0%, var(--color-layout-bg, #e1f4fe) 100%);position:fixed;top:0;left:0;right:auto;z-index:1100;min-height:100vh;box-sizing:border-box;overflow:visible}html[dir=rtl] .side-panel,html.locale-ar .side-panel{left:auto;right:0;border-inline-end:none;border-inline-start:1px solid var(--color-border, #dbeae3);direction:rtl}.side-panel-top{display:flex;flex-direction:column;align-items:center;width:100%}.side-panel-top>a{margin-bottom:16px}.side-panel .ant-spin-nested-loading,.side-panel .ant-spin-container{width:100%;overflow:visible}.side-panel--wide .ant-spin-nested-loading,.side-panel--wide .ant-spin-container{display:flex;flex-direction:column;align-items:center}.betterdocs-search-form-wrap{background-color:var(--color-primary-soft, #e6f7f7);background-image:url(https://generate.tax/wp-content/uploads/2023/04/hero-background-4.svg);padding-top:45px;padding-right:20px;padding-bottom:45px;padding-left:20px;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;background-repeat:no-repeat;background-size:cover}.scroller{z-index:1;padding:0 3px;max-height:calc(100vh - 380px);overflow-y:scroll;scrollbar-width:thin;width:100%;padding-right:30px;box-sizing:content-box}.tax-submission-stretch{height:calc(100vh - 130px)}.scope-pwa-drawer-root:not(.scope-pwa-drawer-root--tall) .tax-submission-stretch,.app-root--pwa-mobile .scope-pwa-drawer-root:not(.scope-pwa-drawer-root--tall) .tax-submission-stretch{height:auto !important;min-height:0 !important;justify-content:flex-start !important;gap:20px}.scroller-rc,.scroller-ca{z-index:1;padding:0 3px;max-height:calc(100vh - 380px);overflow-y:scroll;scrollbar-width:thin;width:100%;height:100%}.scroller-rc{max-height:calc(100vh - 523px)}.scroller-activity-note,.scroller-activity{z-index:1;padding:0 3px;max-height:calc(100vh - 180px);overflow-y:auto;scrollbar-width:thin;width:100%;height:100%}.scroller-activity-note{max-height:calc(100vh - 363px)}.scroller-entity{z-index:1;padding:0 3px;max-height:calc(100vh - 150px);overflow-y:auto;scrollbar-width:thin;width:100%;height:100%}.scroller-submissions{z-index:1;padding:0 3px;max-height:calc(100vh - 200px);overflow-y:auto;scrollbar-width:thin;height:100%}.scroller-rights{z-index:1;padding:0 16px 48px 4px;overflow-x:hidden;overflow-y:auto;scrollbar-width:thin;scrollbar-gutter:stable;width:100%;min-height:0;flex:1 1 auto;box-sizing:border-box}.billing-page,.entity-overview-tab{background-color:var(--color-surface, #f3f7f8);display:flex;flex-direction:row;margin:auto;min-height:calc(100vh - 70px - 50px)}.entity-capture-tab,.entity-transactions-tab,.entity-tax-rates-tab,.entity-contacts-tab,.entity-tracking-categories-tab,.entity-chart-of-accounts-tab,.entity-reconciliation-tab,.entity-income-statement-tab,.entity-reference-placeholder-tab,.entity-vat-returns-tab--with-inline-side,.entity-overview-tab{font-family:Inter,sans-serif}.entity-capture-tab button,.entity-capture-tab .ant-btn,.entity-transactions-tab button,.entity-transactions-tab .ant-btn,.entity-tax-rates-tab button,.entity-tax-rates-tab .ant-btn,.entity-contacts-tab button,.entity-contacts-tab .ant-btn,.entity-tracking-categories-tab button,.entity-tracking-categories-tab .ant-btn,.entity-chart-of-accounts-tab button,.entity-chart-of-accounts-tab .ant-btn,.entity-reconciliation-tab button,.entity-reconciliation-tab .ant-btn,.entity-income-statement-tab button,.entity-income-statement-tab .ant-btn,.entity-reference-placeholder-tab button,.entity-reference-placeholder-tab .ant-btn,.entity-vat-returns-tab--with-inline-side button,.entity-vat-returns-tab--with-inline-side .ant-btn,.entity-overview-tab button,.entity-overview-tab .ant-btn{font-family:Inter,sans-serif}.entity-capture-tab{background-color:var(--color-surface, #f3f7f8);min-height:calc(100vh - 70px - 50px);padding-bottom:32px}.entity-capture-tab.entity-capture-tab--with-inline-folder{padding:20px 40px 32px;box-sizing:border-box}.capture-tab-wrapper{width:100%;margin:0 auto;min-width:1200px;max-width:1600px;box-sizing:border-box}.entity-vat-returns-tab--with-inline-side{padding:20px 40px 32px;box-sizing:border-box;background-color:var(--color-surface, #f3f7f8);min-height:calc(100vh - 70px - 50px)}.entity-reference-placeholder-tab{background-color:var(--color-surface, #f3f7f8);min-height:calc(100vh - 70px - 50px);display:flex;flex-direction:column;padding:32px 40px;box-sizing:border-box}.entity-details-tab-nav-wrap{position:sticky;top:70px;z-index:19;display:flex;flex-wrap:nowrap;align-items:center;gap:4px 8px;padding:0 24px;margin:0 0 -1px;border-bottom:1px solid #f0f0f0;background:var(--color-surface-raised, #fff);overflow-x:auto;overflow-y:hidden;overscroll-behavior:contain}.layout-organisations .entity-details-tab-nav-wrap{position:relative;top:auto;flex-shrink:0}.entity-details-tab-nav-btn{position:relative;background:none;border:none;padding:12px 16px;font-family:Inter,sans-serif;font-size:14px;font-weight:400;line-height:1.5715;cursor:pointer;color:var(--color-text-muted, #5a6a6a);border-bottom:0;outline:none}.entity-details-tab-nav-btn::after{content:"";position:absolute;inset-inline-start:16px;inset-inline-end:16px;bottom:0;height:1px;background:rgba(0,0,0,0)}.entity-details-tab-nav-btn:hover{color:var(--color-text-dark, #042a2a)}.entity-details-tab-nav-btn.entity-details-tab-nav-btn-active{color:var(--color-text-dark, #042a2a)}.entity-details-tab-nav-btn.entity-details-tab-nav-btn-active::after{background:var(--color-primary, #41aaaf)}.entity-details-tab-nav-btn.entity-details-tab-nav-btn-reference{padding-right:8px}.entity-details-tab-nav-btn:disabled{cursor:not-allowed;color:var(--color-text-disabled, #bfbfbf);border-bottom-color:rgba(0,0,0,0) !important}.entity-details-tab-nav-btn:disabled:hover{color:var(--color-text-disabled, #bfbfbf)}.entity-details-drop-icon{font-size:10px;margin-inline-start:6px;opacity:.65}.billing-page{min-height:calc(100vh - 70px) !important;font-family:Inter,sans-serif}.billing-page button,.billing-page .ant-btn{font-family:Inter,sans-serif}html[data-theme=dark] .billing-page .ant-form-item-label>label,html[data-theme=dark] .billing-page .scope-form-label,html[data-theme=dark] .billing-page .scope-form-label .label-text,html[data-theme=dark] .billing-page .scope-form-label-optional{color:var(--color-text-muted, #a9b8b9) !important}html[data-theme=dark] .billing-page .ant-card .ant-card-body{color:var(--color-text-base, #e3eaeb)}.checkout-selected-plan-panel{font-family:Inter,sans-serif}.checkout-selected-plan-panel .ant-card-body{font-family:Inter,sans-serif}.checkout-selected-plan-panel .ant-btn{font-family:Inter,sans-serif !important;font-weight:600}.pricing-page{font-family:Inter,sans-serif}.pricing-page button,.pricing-page .ant-btn{font-family:Inter,sans-serif}html[data-theme=dark] .pricing-page .pricing-currency-button.ant-btn:not(.pricing-currency-button--selected){color:#fff !important;background:var(--color-surface-raised, #1a2b2c) !important;border-color:var(--color-border, #355356) !important}html[data-theme=dark] .pricing-page .pricing-currency-button.ant-btn:not(.pricing-currency-button--selected):hover{color:#fff !important;background:var(--color-surface, #132122) !important;border-color:var(--color-primary, #62c8cd) !important}html[data-theme=dark] .pricing-page .pricing-currency-button--selected.ant-btn{color:var(--color-on-primary, #052325) !important;background:var(--color-primary, #62c8cd) !important;border-color:var(--color-primary, #62c8cd) !important}.connect-entity-logo{display:inline-flex;align-items:center;justify-content:center;line-height:0}.connect-entity-logo__dark{display:none}.connect-entity-logo__light{display:block}.connect-entity{flex:0 0 auto;width:100%}.scope-pwa-drawer-root .connect-entity .ant-row{justify-content:center !important;column-gap:16px}.context-menu-items .ant-space{gap:0 !important;row-gap:0 !important}.context-menu-items .ant-space-item{width:100%}.context-menu-items .ant-divider,.context-menu-items .context-menu-items__divider{margin:4px 0 !important}html[data-theme=dark] .ai-scanning-logo{color:#fff !important}html[data-theme=dark] .ai-scanning-logo path[fill=currentColor],html[data-theme=dark] .ai-scanning-logo [fill=currentColor]{fill:currentColor !important}html[data-theme=dark] .connect-entity-logo__light{display:none !important}html[data-theme=dark] .connect-entity-logo__dark{display:block !important;mix-blend-mode:screen}html[data-theme=dark] .connect-entity-receipts-tile.ant-btn,html[data-theme=dark] button.connect-entity-receipts-tile{background:var(--color-logo-tile-bg, #132122) !important;border-color:var(--color-border, #355356) !important;color:var(--color-on-logo-tile, #e3eaeb) !important}html[data-theme=dark] .connect-entity-receipts-tile .ai-scanning-logo{color:#fff !important}html[data-theme=dark] .transactions-file-panel{border-inline-start:1px solid var(--color-border, #355356);box-shadow:-4px 0 16px rgba(0,0,0,.25)}html[data-theme=dark] .entity-transactions-tab .transactions-file-card-body{color:var(--color-text-base, #e3eaeb)}html[data-theme=dark] .entity-transactions-tab .transactions-file-card-hover-action{background-color:var(--color-surface-raised, #1a2b2c);color:var(--color-text-base, #e3eaeb);border-color:var(--color-border, #355356);box-shadow:0 0 10px rgba(0,0,0,.35)}html[data-theme=dark] .entity-transactions-tab .validation-errors-table.transaction-table .ant-table-row.transaction-row-not-reviewed>.ant-table-cell{background-color:color-mix(in srgb, var(--color-status-warning, #f1c56a) 12%, var(--color-surface, #132122)) !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .entity-transactions-tab .validation-errors-table.transaction-table .ant-table-row.transaction-row-not-reviewed:hover>.ant-table-cell,html[data-theme=dark] .entity-transactions-tab .validation-errors-table.transaction-table .ant-table-row.transaction-row-not-reviewed>.ant-table-cell-row-hover{background-color:color-mix(in srgb, var(--color-status-warning, #f1c56a) 22%, var(--color-surface, #132122)) !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .entity-transactions-tab .validation-errors-table.transaction-table .ant-table-cell,html[data-theme=dark] .entity-transactions-tab .validation-errors-table.transaction-table .ant-table-cell .cell-dblclick,html[data-theme=dark] .entity-transactions-tab .validation-errors-table.transaction-table .ant-table-cell .transaction-table-date-cell,html[data-theme=dark] .entity-transactions-tab .validation-errors-table.transaction-table .transactions-amount-column{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .entity-transactions-tab .validation-errors-table.transaction-table .ant-picker,html[data-theme=dark] .entity-transactions-tab .validation-errors-table.transaction-table .ant-picker.ant-picker-small,html[data-theme=dark] .entity-transactions-tab .validation-errors-table.transaction-table .ant-select:not(.scope-form-select):not(.scope-filter-select):not(.mass-update-field-select) .ant-select-selector,html[data-theme=dark] .entity-transactions-tab .validation-errors-table.transaction-table .ant-input:not(.scope-round-input):not(.scope-form-input),html[data-theme=dark] .entity-transactions-tab .validation-errors-table.transaction-table .ant-input-number,html[data-theme=dark] .entity-transactions-tab .validation-errors-table.transaction-table .ant-input-number-input{background:var(--color-surface-raised, #1a2b2c) !important;border-color:var(--color-border, #355356) !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .entity-transactions-tab .validation-errors-table.transaction-table .ant-picker-input>input,html[data-theme=dark] .entity-transactions-tab .validation-errors-table.transaction-table .ant-select-selection-item,html[data-theme=dark] .entity-transactions-tab .validation-errors-table.transaction-table .ant-select-selection-search-input,html[data-theme=dark] .entity-transactions-tab .validation-errors-table.transaction-table .ant-select-selection-placeholder{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .entity-transactions-tab .validation-errors-table.transaction-table .ant-picker-suffix,html[data-theme=dark] .entity-transactions-tab .validation-errors-table.transaction-table .ant-picker-clear,html[data-theme=dark] .entity-transactions-tab .validation-errors-table.transaction-table .ant-select-arrow,html[data-theme=dark] .entity-transactions-tab .validation-errors-table.transaction-table .ant-select-arrow .anticon{color:var(--color-primary, #62c8cd) !important}html[data-theme=dark] .entity-transactions-tab .validation-errors-table.transaction-table .transaction-attachment-cell button{background:var(--color-surface-raised, #1a2b2c) !important;border:1px solid var(--color-border, #355356) !important}.entity-tax-rates-tab{background-color:var(--color-surface, #f3f7f8);display:flex;flex-direction:column;padding:20px 40px}.entity-contacts-tab{background-color:var(--color-surface, #f3f7f8);padding:20px 40px;display:flex;flex-direction:column}.entity-tracking-categories-tab{background-color:var(--color-surface, #f3f7f8);display:flex;flex-direction:column;padding:20px 40px}.entity-tracking-categories-tab .tracking-category-tabs{width:100%;max-width:100%}.entity-tracking-categories-tab .tracking-category-tabs .ant-tabs-nav{width:100%;margin-bottom:0}.entity-tracking-categories-tab .tracking-category-tabs .ant-tabs-nav::before{border-color:var(--color-border, #dbeae3)}.tax-rates-tab-wrapper{width:100%;margin:0 auto;min-width:1200px;max-width:1600px}.tax-rates-tab-wrapper--narrow{min-width:0;max-width:none}.contacts-tab-wrapper{width:100%;margin:0 auto;min-width:1200px;max-width:1600px}.contacts-tab-wrapper--narrow{min-width:0;max-width:none}.tracking-categories-tab-wrapper{width:100%;margin:0 auto;min-width:1200px;max-width:1600px}.tracking-categories-tab-wrapper--narrow{min-width:0;max-width:none}.entity-reconciliation-tab,.entity-income-statement-tab{background-color:var(--color-surface, #f3f7f8);display:flex;flex-direction:column;padding:20px 40px 20px}.reconciliation-tab-wrapper,.income-statement-tab-wrapper{width:100%;margin:0 auto;min-width:1200px;max-width:1600px}.reconciliation-tab-wrapper--narrow,.income-statement-tab-wrapper--narrow{min-width:0;max-width:none}.entity-details-narrow-side-shell.entity-overview-tab{position:relative;flex-direction:row;align-items:flex-start;background-color:rgba(0,0,0,0);margin:0 !important;min-height:0;width:100%}.entity-narrow-side-panel,.entity-narrow-side-panel-tab{z-index:100;top:136px}.entity-narrow-side-panel-tab{font-family:Inter,sans-serif;font-weight:bold;font-size:12px;background:var(--color-primary, #41aaaf);color:var(--color-on-primary, #052325);padding:14px 0;border-start-start-radius:10px;border-end-start-radius:10px;margin:0;line-height:1;width:30px;min-width:30px;max-width:30px;box-sizing:border-box;display:flex;align-items:center;justify-content:center;height:fit-content;cursor:pointer;position:fixed;inset-inline-end:17px;border:none;-webkit-appearance:none;appearance:none;text-align:center}.entity-narrow-side-panel-tab:hover,.entity-narrow-side-panel-tab:focus{color:var(--color-on-primary, #052325);background:var(--color-primary, #41aaaf)}.entity-narrow-side-panel-tab:focus-visible{outline:2px solid var(--color-text-dark, #042a2a);outline-offset:2px}.entity-narrow-side-panel-tab__label{writing-mode:vertical-rl;white-space:nowrap;display:inline-block;line-height:1;padding:0;margin:0}.entity-contacts-tab .ant-table-cell-fix-right,.entity-contacts-tab .ant-table-cell-fix-right-first::after,.entity-contacts-tab .ant-table-cell-fix-right-last::after{z-index:2 !important}.entity-chart-of-accounts-tab .entity-details-narrow-side-shell.entity-overview-tab>div:first-child{flex:1 1 auto;min-width:0;max-width:100%}.entity-chart-of-accounts-tab{background-color:var(--color-surface, #f3f7f8);display:flex;flex-direction:column;padding:20px 40px}.chart-of-accounts-tab-wrapper--narrow{min-width:0;max-width:none}.chart-of-accounts-tab-wrapper{width:100%;margin:0 auto;min-width:1200px;max-width:1600px}.entity-chart-of-accounts-tab .ant-table-cell .ant-input,.entity-chart-of-accounts-tab .ant-table-cell .ant-select-selection-item,.entity-chart-of-accounts-tab .ant-table-cell .ant-select-selection-search-input{font-size:12px}.entity-chart-of-accounts-tab .ant-table-cell .ant-input,.entity-chart-of-accounts-tab .ant-table-cell .ant-select-selector{height:26px !important;min-height:26px !important}.entity-chart-of-accounts-tab .ant-table-row:hover .ant-select-selection-item,.entity-chart-of-accounts-tab .ant-table-row:hover .ant-select span,.entity-chart-of-accounts-tab .ant-table-row:hover .ant-select span[title],.entity-chart-of-accounts-tab .ant-table-row:hover .cell-dblclick{text-decoration:none !important}.entity-chart-of-accounts-tab .ant-table-row:hover .cell-dblclick{cursor:text}.divider-10{height:10px;width:100%}.divider-20{height:20px;width:100%}div{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.selected-container{border:1px solid #41aaaf !important;box-shadow:0px 0px 10px 0px rgba(0,0,0,.0509803922) !important}.selected-container .container-icon{color:var(--color-primary, #41aaaf) !important}.selected-plan-container{border:2px solid #41aaaf !important}.disabled-container{border:1px solid var(--color-border, #dbeae3) !important;box-shadow:0px 0px 10px 0px rgba(0,0,0,.0509803922) !important}.disabled-container .container-icon{color:var(--color-text-muted, #5a6a6a) !important}.disabled-container .container-number,.disabled-container .container-title{color:var(--color-text-muted, #5a6a6a) !important}.container-number-span{font-size:30px;font-weight:400;line-height:40px;text-align:left;color:var(--color-text-base, var(--color-text-dark, #042a2a))}.container-number-span.ant-typography,.active-container .container-number-span,.inactive-container .container-number-span{font-size:30px !important;line-height:40px !important;color:var(--color-text-base, var(--color-text-dark, #042a2a)) !important}.container-title.ant-typography,.active-container .container-title,.inactive-container .container-title{font-size:16px !important;line-height:24px !important;font-weight:400 !important;color:var(--color-text-base, var(--color-text-dark, #042a2a)) !important}.container-number-title-span{font-family:Inter;font-size:10px;font-weight:400;line-height:24px;text-align:left;color:var(--color-text-muted, #5a6a6a)}.disabled-container:hover{cursor:default !important}.disabled-container:hover .container-icon{color:var(--color-text-muted, #5a6a6a) !important}.selected-filter>div{border:2px solid #41aaaf !important;box-shadow:0px 0px 10px 0px rgba(0,0,0,.0509803922) !important}.selected-filter>div .container-icon{color:var(--color-primary, #41aaaf) !important}.crop-container{position:relative;width:300px;height:300px;background:linear-gradient(to right, #cbd4e1 8px, transparent 8px) 0 0,linear-gradient(to right, #cbd4e1 8px, transparent 8px) 0 100%,linear-gradient(to left, #cbd4e1 8px, transparent 8px) 100% 0,linear-gradient(to left, #cbd4e1 8px, transparent 8px) 100% 100%,linear-gradient(to bottom, #cbd4e1 8px, transparent 8px) 0 0,linear-gradient(to bottom, #cbd4e1 8px, transparent 8px) 100% 0,linear-gradient(to top, #cbd4e1 8px, transparent 8px) 0 100%,linear-gradient(to top, #cbd4e1 8px, transparent 8px) 100% 100%;background-repeat:no-repeat;background-size:70px 70px}.reactEasyCrop_CropArea{color:color-mix(in srgb, var(--color-text-dark, #f3f7f8) 80%, transparent) !important}#mfa-code>input{width:55px !important;height:65px !important;border-radius:5px;font-family:Inter;font-size:24px;font-weight:700;line-height:18px;text-align:center;color:var(--color-text-dark, #042a2a);border:none}#mfa-code>input:not(:empty){border:1px solid var(--color-primary, #41aaaf) !important}#mfa-code>input:hover,#mfa-code>input:focus,#mfa-code>input:active{border:1px solid var(--color-primary, #41aaaf) !important}#mfa-code>input:where(:not(input[value=""])){border:1px solid var(--color-primary, #41aaaf) !important}.profile-rounded-image{border-radius:50%;justify-self:center;margin:17px;margin-top:-40px;margin-left:35px}.mask{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;color:var(--ant-color-text-light-solid);background:var(--color-bg-mask, rgba(0, 0, 0, 0.45));cursor:pointer;opacity:0;transition:opacity var(--ant-motion-duration-slow);color:var(--ant-color-text-light-solid)}.mask>svg{filter:brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(4290%) hue-rotate(166deg) brightness(112%) contrast(101%);margin-right:4px}.mask:hover{opacity:1}.profile-rounded-image+div.ant-image-mask{border-radius:50%;justify-self:center;margin:17px;margin-top:-39px;margin-left:87px;width:150px;height:150px}.profile-rounded-image+div.mask{border-radius:50%;justify-self:center;margin:17px;margin-top:-16px;margin-left:17px;width:150px;height:150px}.profile-image-hover-container{position:relative;width:100%;height:100%}.profile-image-hover-container:hover .profile-rounded-image{opacity:.7;transition:opacity .2s ease}.profile-image-hover-container:hover .profile-image-hover-icons{display:flex !important}.profile-image-hover-icons{z-index:10;pointer-events:auto}.edit-profile-picture{background:#f0f8ff;padding:25px;border-radius:10px;width:30%}.edit-details-link{font-size:18px;font-weight:400;color:var(--color-link, #5e87b0);cursor:pointer}.edit-details-link-disabled{font-size:18px;font-weight:400;color:var(--color-text-muted, #5a6a6a);cursor:default}.active-container{padding:30px 25px !important;background:var(--color-surface, #f3f7f8);border:1px solid var(--color-border, #dbeae3) !important;box-shadow:none !important;cursor:pointer !important}.inactive-container{padding:30px 25px !important;border:1px solid var(--color-border, #dbeae3) !important;box-shadow:none !important;cursor:default !important}.active-container:hover,.inactive-container:hover{border:2px solid #41aaaf !important;padding:29px 24px !important}.underline-link:hover{text-decoration:underline;cursor:pointer}.ant-notification-notice-icon{margin-top:-10px !important}.ant-notification-notice-message{font-family:Inter !important;font-size:16px !important;font-weight:400 !important;line-height:12px !important;text-align:left !important;color:var(--color-text-base, #2e2e2e) !important;padding-left:8px !important;margin-bottom:16px !important;margin-top:10px !important}.ant-notification-notice-description{padding-left:8px !important;color:var(--color-text-base, #2e2e2e) !important}.ant-notification-notice-description,.ant-notification-notice-description span,.ant-notification-notice-description div,.ant-notification-notice-description p,.scope-message-toast__description{color:var(--color-text-base, #2e2e2e) !important}.ant-notification-notice-close{top:8px !important;inset-inline-end:8px !important;color:var(--color-text-muted, #5a6a6a) !important}.ant-notification-notice-close:hover{color:var(--color-text-base, #2e2e2e) !important}.ant-notification-notice-close .anticon,.ant-notification-notice-close svg{color:inherit !important;fill:currentColor !important}.ant-notification-notice-wrapper{border-radius:10px !important;border:none !important}.ant-notification-notice,.scope-message-toast.ant-notification-notice{position:relative;border-radius:10px !important;color:var(--color-text-base, #2e2e2e) !important}.scope-message-toast--success.ant-notification-notice{background:var(--color-status-success-bg, #e9f6f7) !important;border:1px solid var(--color-status-success, #058181) !important}.scope-message-toast--error.ant-notification-notice{background:var(--color-status-danger-bg, #fce7e7) !important;border:1px solid var(--color-status-danger, #d13131) !important}.scope-message-toast--info.ant-notification-notice{background:var(--color-status-info-bg, #e1edf6) !important;border:1px solid var(--color-status-info, #054581) !important}.scope-message-toast--warning.ant-notification-notice{background:var(--color-status-warning-bg, #fff5e2) !important;border:1px solid var(--color-status-warning, #c38a20) !important}.scope-message-toast--open.ant-notification-notice{background:var(--color-surface-raised, #ffffff) !important;border:1px solid var(--color-border, #dbeae3) !important}html[data-theme=dark] .ant-notification .ant-notification-notice-message,html[data-theme=dark] .ant-notification .ant-notification-notice-description,html[data-theme=dark] .ant-notification .ant-notification-notice-description *,html[data-theme=dark] .scope-message-toast .ant-notification-notice-message,html[data-theme=dark] .scope-message-toast .ant-notification-notice-description,html[data-theme=dark] .scope-message-toast .ant-notification-notice-description *,html[data-theme=dark] .scope-message-toast__description{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .ant-notification .ant-notification-notice-close,html[data-theme=dark] .ant-notification .ant-notification-notice-close .anticon,html[data-theme=dark] .ant-notification .ant-notification-notice-close svg,html[data-theme=dark] .scope-message-toast .ant-notification-notice-close,html[data-theme=dark] .scope-message-toast .ant-notification-notice-close .anticon,html[data-theme=dark] .scope-message-toast .ant-notification-notice-close svg{color:var(--color-text-muted, #a9b8b9) !important;fill:currentColor !important}html[data-theme=dark] .ant-notification .ant-notification-notice-close:hover,html[data-theme=dark] .scope-message-toast .ant-notification-notice-close:hover{color:var(--color-text-base, #e3eaeb) !important}.ant-alert{border-radius:8px !important}.ant-alert-error{background:var(--color-status-danger-bg, #fce7e7) !important;border:1px solid var(--color-status-danger, #d13131) !important}.ant-alert-success{background:var(--color-status-success-bg, #e9f6f7) !important;border:1px solid var(--color-status-success, #058181) !important}.ant-alert-info{background:var(--color-status-info-bg, #e1edf6) !important;border:1px solid var(--color-status-info, #054581) !important}.ant-alert-warning{background:var(--color-status-warning-bg, #fff5e2) !important;border:1px solid var(--color-status-warning, #c38a20) !important}.ant-alert .ant-alert-message,.ant-alert .ant-alert-description,.ant-alert .ant-alert-content{color:var(--color-text-base, #2e2e2e) !important}.ant-alert-error .ant-alert-icon{color:var(--color-status-danger, #d13131) !important}.ant-alert-success .ant-alert-icon{color:var(--color-status-success, #058181) !important}.ant-alert-info .ant-alert-icon{color:var(--color-status-info, #054581) !important}.ant-alert-warning .ant-alert-icon{color:var(--color-status-warning, #c38a20) !important}.ant-dropdown-menu .ant-dropdown-menu-item:hover{background-color:var(--color-primary-soft, #e6f7f7) !important}.link-without-underline:hover{text-decoration:none}.yellow-btn{background-color:var(--btn-accent-bg, #ffbc3e) !important;color:var(--color-text-dark, #042a2a) !important;border-color:var(--btn-accent-bg, #ffbc3e) !important}.loader{width:25px;padding:8px;aspect-ratio:1;border-radius:50%;background:var(--color-primary, #41aaaf);--_m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;-webkit-mask:var(--_m);mask:var(--_m);-webkit-mask-composite:source-out;mask-composite:subtract;animation:l3 1s infinite linear}.top-warning-link{color:var(--color-link, #5e87b0);text-decoration:none;background-color:rgba(0,0,0,0);outline:none;cursor:pointer;transition:color .3s;font-family:Inter;font-weight:500;-webkit-text-decoration-skip:objects}.top-warning-link:hover{text-decoration:underline;color:var(--color-link-hover, #406182)}.trial-banner{border:1px solid var(--color-status-warning, #ffbc3e);background-color:var(--color-status-warning-bg, #fff5e2);position:fixed;top:0;left:0;right:0;z-index:1000;height:36px}.trial-banner-content{display:flex;justify-content:center}.trial-banner-text{color:var(--color-text-dark, #042a2a);padding:10px;font-size:13px;text-align:center;font-family:var(--font-family, Inter, sans-serif)}.app-styles-loading{display:flex;justify-content:center;align-items:center;height:100vh;background-color:var(--color-surface-base, #ffffff);font-family:var(--font-family, Inter, sans-serif)}.contact-us-modal-title{display:block}.contact-us-modal-logo{padding-bottom:15px}.contact-us-modal-heading{font-size:16px;font-weight:600}.contact-us-modal-copy{font-size:14px;font-weight:400}.contact-us-modal-space{width:100%}.contact-us-modal-textarea{width:100%;margin-top:20px}html[data-theme=dark] .header-container{background-color:var(--color-surface-base, #091213);border-bottom:1px solid var(--color-border, #355356)}html[data-theme=dark] .header-container .ant-typography,html[data-theme=dark] .header-container .ant-typography h4{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .ant-tabs .ant-tabs-tab-btn{color:var(--color-text-muted, #a9b8b9) !important}html[data-theme=dark] .ant-tabs .ant-tabs-tab:hover .ant-tabs-tab-btn,html[data-theme=dark] .ant-tabs .ant-tabs-tab-active .ant-tabs-tab-btn{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .ant-tabs-top>.ant-tabs-nav::before,html[data-theme=dark] .ant-tabs .ant-tabs-nav::before{border-bottom-color:var(--color-border, #355356) !important}html[data-theme=dark] .ant-breadcrumb,html[data-theme=dark] .ant-breadcrumb-link,html[data-theme=dark] .ant-breadcrumb-separator{color:var(--color-text-muted, #a9b8b9) !important}html[data-theme=dark] .ant-breadcrumb a:hover{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .menu-size-button,html[data-theme=dark] .menu-size-button.ant-btn,html[data-theme=dark] .menu-size-button.ant-btn-icon-only{background:var(--color-surface-raised, #1a2b2c) !important;border:1px solid var(--color-border, #355356) !important;border-radius:10px !important;box-shadow:none !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .menu-size-button:hover,html[data-theme=dark] .menu-size-button.ant-btn:hover,html[data-theme=dark] .menu-size-button.ant-btn-icon-only:hover{background:var(--color-surface, #132122) !important;border-color:var(--color-primary, #62c8cd) !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .menu-size-button .anticon,html[data-theme=dark] .menu-size-button svg{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .side-panel{background:linear-gradient(180deg, #142526 0%, #0f1d1e 100%)}html[data-theme=dark] .container-icon,html[data-theme=dark] .container-icon path{color:var(--color-text-base, #e3eaeb) !important;fill:currentColor !important}html[data-theme=dark] .selected-container .container-icon,html[data-theme=dark] .selected-container .container-icon path,html[data-theme=dark] .selected-filter>div .container-icon,html[data-theme=dark] .selected-filter>div .container-icon path{color:var(--color-primary, #62c8cd) !important;fill:currentColor !important}html[data-theme=dark] .container-title,html[data-theme=dark] .container-title.ant-typography,html[data-theme=dark] .container-number,html[data-theme=dark] .container-number-span,html[data-theme=dark] .container-number-span.ant-typography{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .container-number-title-span{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .users-management-root .ant-table-thead>tr>th,html[data-theme=dark] .users-management-root .ant-table-thead>tr>th .ant-table-column-title,html[data-theme=dark] .users-management-root .ant-table-thead>tr>th .ant-table-column-sorters,html[data-theme=dark] .users-management-root .ant-table-thead>tr>th .ant-space,html[data-theme=dark] .users-management-root .ant-table-thead>tr>th .anticon,html[data-theme=dark] .users-management-root .ant-table-thead>tr>th .anticon svg,html[data-theme=dark] .users-management-root .ant-table-thead>tr>th .anticon svg path{color:var(--color-text-base, #e3eaeb) !important;fill:currentColor !important}html[data-theme=dark] .users-management-root .ant-table-tbody>tr>td,html[data-theme=dark] .users-management-root .ant-table-tbody>tr>td .ant-typography,html[data-theme=dark] .users-management-root .ant-table-tbody>tr>td span,html[data-theme=dark] .users-management-root .ant-table-tbody>tr>td a{color:var(--color-text-base, #e3eaeb)}html[data-theme=dark] .mapping-returns-collapse,html[data-theme=dark] .mapping-returns-collapse .ant-collapse-item,html[data-theme=dark] .mapping-returns-collapse .ant-collapse-header,html[data-theme=dark] .mapping-returns-collapse .ant-collapse-content,html[data-theme=dark] .mapping-returns-collapse .ant-collapse-content-box{background:var(--color-surface-raised, #1a2b2c) !important;color:var(--color-text-base, #e3eaeb) !important;border-color:var(--color-border, #355356) !important}html[data-theme=dark] .ant-drawer .ant-drawer-content,html[data-theme=dark] .ant-drawer .ant-drawer-body,html[data-theme=dark] .ant-drawer .ant-drawer-header{background:var(--color-drawer-bg, var(--color-layout-bg, #0c1718)) !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .drawer-title-main,html[data-theme=dark] .drawer-close-button,html[data-theme=dark] .drawer-close-button .anticon,html[data-theme=dark] .drawer-close-button svg,html[data-theme=dark] .drawer-close-button svg path{color:var(--color-text-base, #e3eaeb) !important;fill:currentColor !important}html[data-theme=dark] .drawer-title-sub{color:var(--color-text-muted, #a9b8b9) !important}html[data-theme=dark] .filter-selection-wrapper{background:var(--color-layout-bg, #0c1718) !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .filter-selection-wrapper .ant-checkbox-wrapper,html[data-theme=dark] .filter-selection-wrapper .ant-checkbox+span{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .board-status-wrapper{background:var(--color-layout-bg, #0c1718) !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .board-status-wrapper .ant-checkbox-wrapper,html[data-theme=dark] .board-status-wrapper .ant-checkbox+span{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .board-status-wrapper button{background:rgba(0,0,0,0) !important;border:none !important;box-shadow:none !important}html[data-theme=dark] .board-status-wrapper button .anticon,html[data-theme=dark] .board-status-wrapper button svg{color:inherit !important}html[data-theme=dark] .column-customization-wrapper{background:var(--color-layout-bg, #0c1718) !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .column-customization-wrapper .ant-checkbox-wrapper,html[data-theme=dark] .column-customization-wrapper .ant-checkbox+span{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .column-customization-wrapper button:not(.ant-btn-primary){background:rgba(0,0,0,0) !important;border:none !important;box-shadow:none !important}html[data-theme=dark] .ant-drawer-body>div,html[data-theme=dark] .ant-drawer-body .top-section,html[data-theme=dark] .ant-drawer-body .bottom-section{color:var(--color-text-base, #e3eaeb)}html[data-theme=dark] .ant-drawer .ant-input,html[data-theme=dark] .ant-drawer .ant-input-affix-wrapper,html[data-theme=dark] .ant-drawer .ant-select-selector,html[data-theme=dark] .ant-drawer .ant-picker{background:var(--color-surface, #132122) !important;border-color:var(--color-border, #355356) !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .ant-drawer .scope-round-input.ant-input-affix-wrapper .ant-input,html[data-theme=dark] .ant-drawer .scope-round-input.ant-input-affix-wrapper input{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .ant-drawer .scope-round-input.ant-input-affix-wrapper .ant-input::placeholder,html[data-theme=dark] .ant-drawer .scope-round-input.ant-input-affix-wrapper input::placeholder{color:var(--color-placeholder, #8ea1a2) !important;opacity:1 !important}html[data-theme=dark] .ant-drawer .scope-round-input.ant-input-affix-wrapper .scope-input-suffix-action{background-color:var(--color-primary, #62c8cd) !important;color:var(--color-on-primary, #052325) !important}html[data-theme=dark] .filter-views-wrapper{background:var(--color-layout-bg, #0c1718) !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .filter-views-wrapper .ant-input{background:var(--color-surface, #132122) !important;border-color:var(--color-border, #355356) !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .filter-views-wrapper .ant-btn,html[data-theme=dark] .filter-views-wrapper .ant-btn.ant-btn-text,html[data-theme=dark] .filter-views-wrapper .ant-btn.ant-btn-default{background:rgba(0,0,0,0) !important;border:none !important;border-radius:0 !important;box-shadow:none !important;min-width:auto !important;width:auto !important;height:auto !important;padding:2px !important}html[data-theme=dark] .filter-views-wrapper .ant-btn,html[data-theme=dark] .filter-views-wrapper .ant-btn .anticon,html[data-theme=dark] .filter-views-wrapper .ant-btn svg,html[data-theme=dark] .filter-views-wrapper .ant-btn svg path{color:var(--color-text-base, #e3eaeb) !important;fill:currentColor !important}html[data-theme=dark] .filter-views-wrapper .ant-btn:not(:disabled):not(.ant-btn-disabled):hover,html[data-theme=dark] .filter-views-wrapper .ant-btn:not(:disabled):not(.ant-btn-disabled):focus{background:rgba(0,0,0,0) !important;border:none !important;border-radius:0 !important;box-shadow:none !important;color:var(--color-primary, #62c8cd) !important}html[data-theme=dark] .filter-views-wrapper .ant-btn:not(:disabled):not(.ant-btn-disabled):hover .anticon,html[data-theme=dark] .filter-views-wrapper .ant-btn:not(:disabled):not(.ant-btn-disabled):hover svg,html[data-theme=dark] .filter-views-wrapper .ant-btn:not(:disabled):not(.ant-btn-disabled):hover svg path{color:var(--color-primary, #62c8cd) !important;fill:currentColor !important}html[data-theme=dark] .board-view-root .ant-card,html[data-theme=dark] .board-view-root .ant-card .ant-card-body{background:var(--color-surface-raised, #1a2b2c) !important;color:var(--color-text-base, #e3eaeb) !important;border-color:var(--color-border, #355356) !important}html[data-theme=dark] .board-view-root .ant-typography{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .side-panel .user-menu-button,html[data-theme=dark] .side-panel .user-menu-button-small,html[data-theme=dark] .side-panel .user-menu-items{background:var(--color-surface-raised, #1a2b2c) !important;border-color:var(--color-border, #355356) !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .side-panel .user-menu-button:hover{background:var(--color-surface-raised, #1a2b2c) !important}html[data-theme=dark] .side-panel .action-box,html[data-theme=dark] .side-panel .action-box-icon,html[data-theme=dark] .side-panel .action-box-label,html[data-theme=dark] .side-panel .name-label-box>span{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .side-panel .action-box-icon>svg,html[data-theme=dark] .side-panel .action-box-icon>svg path,html[data-theme=dark] .side-panel .action-box-icon>.anticon,html[data-theme=dark] .side-panel .action-box-icon>.anticon svg,html[data-theme=dark] .side-panel .action-box-icon>.anticon svg path{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .side-panel .action-box-icon>svg path[stroke],html[data-theme=dark] .side-panel .action-box-icon>.anticon svg path[stroke]{stroke:currentColor !important}html[data-theme=dark] .side-panel .action-box-icon>svg path[fill]:not([fill=none]),html[data-theme=dark] .side-panel .action-box-icon>.anticon svg path[fill]:not([fill=none]){fill:currentColor !important}html[data-theme=dark] .anticon-usergroup-add,html[data-theme=dark] .anticon-pushpin{color:#fff !important}html[data-theme=dark] .anticon-usergroup-add svg,html[data-theme=dark] .anticon-pushpin svg,html[data-theme=dark] .anticon-usergroup-add svg path,html[data-theme=dark] .anticon-pushpin svg path{fill:currentColor !important;color:#fff !important}html[data-theme=dark] .ant-btn .anticon-usergroup-add,html[data-theme=dark] .ant-btn .anticon-pushpin,html[data-theme=dark] .ant-btn .anticon-usergroup-add svg,html[data-theme=dark] .ant-btn .anticon-pushpin svg,html[data-theme=dark] .ant-btn .anticon-usergroup-add svg path,html[data-theme=dark] .ant-btn .anticon-pushpin svg path{color:inherit !important;fill:currentColor !important}html[data-theme=dark] .ant-btn-primary .anticon-usergroup-add,html[data-theme=dark] .ant-btn-primary .anticon-pushpin,html[data-theme=dark] .ant-btn-primary .anticon-usergroup-add svg,html[data-theme=dark] .ant-btn-primary .anticon-pushpin svg,html[data-theme=dark] .ant-btn-primary .anticon-usergroup-add svg path,html[data-theme=dark] .ant-btn-primary .anticon-pushpin svg path{color:var(--color-on-primary, #052325) !important;fill:currentColor !important}html[data-theme=dark] .side-panel .ant-menu-item,html[data-theme=dark] .side-panel .ant-menu-title-content,html[data-theme=dark] .side-panel .ant-menu-item-icon{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .ant-avatar-group .ant-avatar,html[data-theme=dark] .scope-avatar-group .ant-avatar{border-color:var(--color-avatar-border, #132122) !important}html[data-theme=dark] .dashboard-edit-view-button,html[data-theme=dark] .dashboard-edit-view-button .anticon,html[data-theme=dark] .dashboard-edit-view-button .anticon>svg{color:var(--color-text-base, #e3eaeb) !important;fill:currentColor !important;stroke:currentColor !important}html[data-theme=dark] .dashboard-edit-view-button .anticon>svg path{fill:currentColor !important;stroke:currentColor !important}html[data-theme=dark] .returns-popover-overlay .ant-popover-inner,html[data-theme=dark] .returns-popover-overlay .ant-popover-inner-content{background:var(--color-surface-raised, #1a2b2c) !important;border:1px solid var(--color-border, #355356) !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .returns-popover-overlay .ant-popover-arrow::before,html[data-theme=dark] .returns-popover-overlay .ant-popover-arrow::after{background:var(--color-surface-raised, #1a2b2c) !important}html[data-theme=dark] .returns-popover-overlay .ant-table-thead>tr>th,html[data-theme=dark] .returns-popover-overlay .ant-table-thead>tr>td,html[data-theme=dark] .returns-popover-overlay .ant-table-thead .ant-table-cell{background:var(--color-surface, #132122) !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .returns-popover-overlay .ant-table-thead>tr>th::before{background-color:rgba(0,0,0,0) !important}html[data-theme=dark] .returns-popover-overlay .ant-btn-default{background:var(--color-primary, #62c8cd) !important;border-color:var(--color-primary, #62c8cd) !important;color:var(--color-on-primary, #ffffff) !important;border-width:1.5px !important;border-radius:999px !important;min-height:30px !important;font-weight:600 !important}html[data-theme=dark] .returns-popover-overlay .ant-btn-default:hover,html[data-theme=dark] .returns-popover-overlay .ant-btn-default:focus{background:var(--color-primary-hover, #7dd4d8) !important;border-color:var(--color-primary-hover, #7dd4d8) !important;color:var(--color-on-primary, #ffffff) !important}html[data-theme=dark] .returns-popover-overlay .ant-btn-primary{background:var(--color-primary, #62c8cd) !important;border-color:var(--color-primary, #62c8cd) !important;color:var(--color-on-primary, #ffffff) !important;border-width:1.5px !important;border-radius:999px !important;min-height:30px !important;font-weight:600 !important}html[data-theme=dark] .returns-popover-overlay .ant-btn-primary:hover,html[data-theme=dark] .returns-popover-overlay .ant-btn-primary:focus{background:var(--color-primary-hover, #7dd4d8) !important;border-color:var(--color-primary-hover, #7dd4d8) !important;color:var(--color-on-primary, #ffffff) !important}html[data-theme=dark] .ant-popover:has(.context-menu-items) .ant-popover-inner,html[data-theme=dark] .ant-popover:has(.context-menu-items) .ant-popover-inner-content{background:var(--color-surface-raised, #1a2b2c) !important;border:1px solid var(--color-border, #355356) !important;color:var(--color-text-base, #e3eaeb) !important;box-shadow:none !important}html[data-theme=dark] .context-menu-items{background:var(--color-surface-raised, #1a2b2c) !important;border:1px solid var(--color-border, #355356) !important;box-shadow:none !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .context-menu-items .ant-space{gap:0 !important;row-gap:0 !important}html[data-theme=dark] .context-menu-items .ant-space-item{width:100%}html[data-theme=dark] .context-menu-items .ant-divider,html[data-theme=dark] .context-menu-items .context-menu-items__divider{margin:4px 0 !important;border-color:var(--color-border, #355356) !important}html[data-theme=dark] .context-menu-items .ant-btn,html[data-theme=dark] .context-menu-items .ant-btn.ant-btn-default,html[data-theme=dark] .context-menu-items .ant-btn.ant-btn-text{background:rgba(0,0,0,0) !important;border:none !important;border-radius:0 !important;box-shadow:none !important}html[data-theme=dark] .context-menu-items .ant-btn,html[data-theme=dark] .context-menu-items .ant-btn span,html[data-theme=dark] .context-menu-items a,html[data-theme=dark] .context-menu-items .anticon,html[data-theme=dark] .context-menu-items .anticon svg,html[data-theme=dark] .context-menu-items .ant-btn-icon svg,html[data-theme=dark] .context-menu-items svg{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .context-menu-items svg path[stroke]{stroke:currentColor !important;fill:none !important}html[data-theme=dark] .context-menu-items svg path[fill]:not([fill=none]){fill:currentColor !important}html[data-theme=dark] .context-menu-items .ant-btn:not(:disabled):not(.ant-btn-disabled):hover,html[data-theme=dark] .context-menu-items .ant-btn:not(:disabled):not(.ant-btn-disabled):focus,html[data-theme=dark] .context-menu-items .ant-btn:not(:disabled):not(.ant-btn-disabled):hover svg,html[data-theme=dark] .context-menu-items .ant-btn:not(:disabled):not(.ant-btn-disabled):hover .anticon,html[data-theme=dark] .context-menu-items .ant-btn:not(:disabled):not(.ant-btn-disabled):hover .anticon svg{background:var(--color-surface, #132122) !important;border:none !important;box-shadow:none !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .context-menu-items .ant-btn:not(:disabled):not(.ant-btn-disabled):hover svg path[stroke],html[data-theme=dark] .context-menu-items .ant-btn:not(:disabled):not(.ant-btn-disabled):focus svg path[stroke]{stroke:currentColor !important;fill:none !important}html[data-theme=dark] .context-menu-items .ant-btn:not(:disabled):not(.ant-btn-disabled):hover svg path[fill]:not([fill=none]),html[data-theme=dark] .context-menu-items .ant-btn:not(:disabled):not(.ant-btn-disabled):focus svg path[fill]:not([fill=none]){fill:currentColor !important}html[data-theme=dark] .context-menu-items .ant-btn-dangerous:not(:disabled):not(.ant-btn-disabled),html[data-theme=dark] .context-menu-items .ant-btn-color-dangerous:not(:disabled):not(.ant-btn-disabled),html[data-theme=dark] .context-menu-items .ant-btn-dangerous:not(:disabled):not(.ant-btn-disabled) svg,html[data-theme=dark] .context-menu-items .ant-btn-dangerous:not(:disabled):not(.ant-btn-disabled) .anticon{color:var(--color-status-danger, #ff7875) !important}html[data-theme=dark] .context-menu-items .ant-btn-dangerous:not(:disabled):not(.ant-btn-disabled) svg path[stroke],html[data-theme=dark] .context-menu-items .ant-btn-color-dangerous:not(:disabled):not(.ant-btn-disabled) svg path[stroke]{stroke:currentColor !important;fill:none !important}html[data-theme=dark] .context-menu-items .ant-btn-dangerous:not(:disabled):not(.ant-btn-disabled) svg path[fill]:not([fill=none]),html[data-theme=dark] .context-menu-items .ant-btn-color-dangerous:not(:disabled):not(.ant-btn-disabled) svg path[fill]:not([fill=none]){fill:currentColor !important}html[data-theme=dark] .context-menu-items .ant-btn-dangerous:not(:disabled):not(.ant-btn-disabled):hover,html[data-theme=dark] .context-menu-items .ant-btn-color-dangerous:not(:disabled):not(.ant-btn-disabled):hover,html[data-theme=dark] .context-menu-items .ant-btn-dangerous:not(:disabled):not(.ant-btn-disabled):hover svg,html[data-theme=dark] .context-menu-items .ant-btn-dangerous:not(:disabled):not(.ant-btn-disabled):hover .anticon{background:var(--color-surface, #132122) !important;color:var(--color-status-danger, #ff7875) !important}html[data-theme=dark] .context-menu-items .ant-btn-dangerous:not(:disabled):not(.ant-btn-disabled):hover svg path[stroke],html[data-theme=dark] .context-menu-items .ant-btn-color-dangerous:not(:disabled):not(.ant-btn-disabled):hover svg path[stroke]{stroke:currentColor !important;fill:none !important}html[data-theme=dark] .context-menu-items .ant-btn-dangerous:not(:disabled):not(.ant-btn-disabled):hover svg path[fill]:not([fill=none]),html[data-theme=dark] .context-menu-items .ant-btn-color-dangerous:not(:disabled):not(.ant-btn-disabled):hover svg path[fill]:not([fill=none]){fill:currentColor !important}html[data-theme=dark] .returns-by-due-date-table .ant-table-tbody>tr>td,html[data-theme=dark] .returns-by-due-date-table .ant-table-tbody>tr>.ant-table-cell{background:var(--color-surface-raised, #1a2b2c) !important;border:1px solid #33585a !important}html[data-theme=dark] .returns-by-due-date-table .ant-table-tbody>tr>td:first-child,html[data-theme=dark] .returns-by-due-date-table .ant-table-tbody>tr>.ant-table-cell:first-child{border-inline-end:none !important}html[data-theme=dark] .returns-by-due-date-table .ant-table-tbody>tr>td:last-child,html[data-theme=dark] .returns-by-due-date-table .ant-table-tbody>tr>.ant-table-cell:last-child{border-inline-start:none !important}@keyframes l3{to{transform:rotate(1turn)}}@media(max-width: 1400px){#star-icon{display:none}}@media(max-width: 1750px){#star-icon{margin-inline-start:-30px}}@media(min-width: 1900px){#star-icon{margin-inline-start:-12px}}.capture-stat-card__label{font-size:14px;color:var(--color-text-muted, #5a6a6a);display:block;margin-bottom:8px}.capture-stat-card__value{font-size:32px;font-weight:600;color:var(--color-text-dark, #042a2a)}.capture-stat-card__subtitle{font-size:13px;color:var(--color-text-muted, #5a6a6a);display:block;margin-top:8px}.capture-stat-card--pending-review .capture-stat-card__value{color:var(--color-text-dark, #042a2a)}.capture-stat-card--reviewed .capture-stat-card__value{color:var(--color-text-dark, #042a2a)}.capture-stat-card--posted .capture-stat-card__value{color:var(--color-text-dark, #042a2a)}.capture-stat-history{display:flex;flex-direction:column;gap:20px;flex:1;min-height:0;height:100%}.drawer-panel-root{display:flex;flex-direction:column;flex:1;min-height:0;height:100%}.capture-stat-history__body{flex:1;min-height:0;overflow-y:auto;overflow-x:hidden;display:flex;flex-direction:column;gap:20px;padding-right:4px;padding-bottom:24px;scrollbar-width:none;-ms-overflow-style:none}.capture-stat-history__body::-webkit-scrollbar{display:none}.capture-stat-history__filter-panel,.drawer-date-range-filter{flex-shrink:0;width:100%;max-width:560px;padding:16px;border:2px solid var(--color-border, #dbeae3);border-radius:16px;background:var(--color-surface, #f8fbfb);display:flex;flex-direction:column;gap:12px}.drawer-date-range-filter--compact{max-width:none;padding:12px;gap:10px}.capture-stat-history__filter-period-row,.drawer-date-range-filter__period-row{display:flex;align-items:center;gap:12px;width:100%;flex-wrap:wrap}.drawer-date-range-filter--compact .drawer-date-range-filter__period-row{flex-direction:column;align-items:stretch;gap:8px}.capture-stat-history__filter-period-label,.drawer-date-range-filter__period-label{flex-shrink:0;font-size:13px;font-weight:600;color:var(--color-text-dark, #042a2a);white-space:nowrap}.capture-stat-history__filter-period-control,.drawer-date-range-filter__period-control{flex:1;min-width:0;max-width:280px}.drawer-date-range-filter--compact .drawer-date-range-filter__period-control{max-width:none}.capture-stat-history__filter-custom-range,.drawer-date-range-filter__custom-range{flex-shrink:0;white-space:nowrap;font-size:13px}.capture-stat-history__filter-range-picker,.drawer-date-range-filter__range-picker{max-width:280px}.drawer-date-range-filter--compact .drawer-date-range-filter__range-picker{max-width:none}.drawer-date-range-filter-inline{display:flex;align-items:stretch;flex-shrink:0}.drawer-date-range-filter-inline>span{display:flex !important;align-items:stretch;height:100%}.drawer-date-range-filter-inline-trigger{display:flex;align-items:center;justify-content:space-between;gap:6px;min-width:112px;max-width:155px;width:100%;height:100%;flex-shrink:0;padding:0 10px;border-radius:10px;border:1px solid var(--color-border, #dbeae3);background:var(--color-surface-raised, #ffffff);box-shadow:0 0 10px 0 rgba(0,0,0,.05);color:var(--color-text-dark, #042a2a);font-family:Inter,sans-serif;font-size:12px;font-weight:600;line-height:1;cursor:pointer;box-sizing:border-box}.drawer-date-range-filter-inline-trigger:hover{border:2px solid #41aaaf;padding:0 9px}.drawer-date-range-filter-inline-trigger--active{border:2px solid #41aaaf;padding:0 9px}.drawer-date-range-filter-inline-trigger--placeholder .drawer-date-range-filter-inline-trigger__label{color:var(--color-text-muted, #5a6a6a)}.drawer-date-range-filter-inline-trigger__label{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;min-width:0;color:var(--color-text-dark, #042a2a)}.drawer-date-range-filter-inline-trigger__icon{flex-shrink:0;font-size:10px;color:var(--color-text-muted, #5a6a6a)}.drawer-date-range-filter-popover .ant-popover-inner{padding:0;border-radius:10px;overflow:hidden}.drawer-date-range-filter__inline-panel{width:240px;max-width:min(280px,100vw - 48px);box-sizing:border-box}.drawer-date-range-filter__preset-list{display:flex;flex-direction:column;max-height:220px;overflow-y:auto;padding:6px 0}.drawer-date-range-filter__preset-option{display:block;width:100%;border:none;background:rgba(0,0,0,0);text-align:start;padding:8px 14px;font-family:Inter,sans-serif;font-size:13px;font-weight:500;color:var(--color-text-dark, #042a2a);cursor:pointer}.drawer-date-range-filter__preset-option:hover{background:var(--color-surface, #f3f7f8)}.drawer-date-range-filter__preset-option--selected{background:var(--color-layout-bg, #e9f6f7);font-weight:600}.drawer-date-range-filter__inline-footer{display:flex;flex-direction:column;gap:10px;padding:12px 14px 14px;border-top:1px solid var(--color-border, #dbeae3);background:var(--color-surface, #f8fbfb)}.drawer-date-range-filter__inline-range-picker{width:100%;border-radius:10px;height:34px}html[data-theme=dark] .capture-stat-history__filter-panel,html[data-theme=dark] .drawer-date-range-filter,html[data-theme=dark] .drawer-date-range-filter__inline-footer,html[data-theme=dark] .drawer-date-range-filter__inline-panel,html[data-theme=dark] .drawer-date-range-filter-popover .ant-popover-inner,html[data-theme=dark] .drawer-date-range-filter-popover .ant-popover-inner-content{background:var(--color-surface-raised, #1a2b2c) !important;border-color:var(--color-border, #355356) !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .drawer-date-range-filter-inline-trigger{background:var(--color-surface-raised, #1a2b2c) !important;border-color:var(--color-border, #355356) !important;color:var(--color-text-base, #e3eaeb) !important;box-shadow:none !important}html[data-theme=dark] .drawer-date-range-filter-inline-trigger__label,html[data-theme=dark] .drawer-date-range-filter__period-label,html[data-theme=dark] .drawer-date-range-filter__custom-range,html[data-theme=dark] .drawer-date-range-filter__preset-option{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .drawer-date-range-filter__preset-option:hover{background:var(--color-surface, #132122) !important}html[data-theme=dark] .drawer-date-range-filter__preset-option--selected{background:var(--color-surface-raised, #1a2b2c) !important}html[data-theme=dark] .drawer-date-range-filter__inline-footer{border-top:1px solid var(--color-border, #355356) !important}html[data-theme=dark] .drawer-date-range-filter__inline-range-picker.ant-picker,html[data-theme=dark] .drawer-date-range-filter__inline-range-picker .ant-picker-input>input{background:var(--color-surface, #132122) !important;border-color:var(--color-border, #355356) !important;color:var(--color-text-base, #e3eaeb) !important}.capture-stat-history__empty{padding:24px 12px;text-align:center;font-size:13px;color:var(--color-text-muted, #5a6a6a)}.capture-stat-history__summary{display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:16px}@media(max-width: 720px){.capture-stat-history__summary{grid-template-columns:1fr}}.capture-stat-history__summary-card{display:flex;flex-direction:column;gap:8px;padding:18px 20px;border:2px solid var(--color-border, #dbeae3);border-radius:16px;background:var(--color-surface-raised, #ffffff);min-width:0}.capture-stat-history__summary-card--pending{border-color:var(--color-status-warning, #c38a20);background:var(--color-status-warning-bg, #fff5e2)}.capture-stat-history__summary-card--reviewed{border-color:var(--color-status-success, #058181);background:var(--color-status-success-bg, #e9f6f7)}.capture-stat-history__summary-card--posted{border-color:var(--color-status-info, #054581);background:var(--color-status-info-bg, #e1edf6)}.capture-stat-history__summary-heading{display:flex;align-items:center;gap:8px;min-width:0}.capture-stat-history__summary-heading .capture-workflow-metric__icon{font-size:16px;line-height:1;flex-shrink:0}.capture-stat-history__summary-label{font-size:13px;font-weight:600;color:var(--color-text-muted, #5a6a6a);line-height:1.35;min-width:0}.capture-stat-history__summary-value{font-size:32px;font-weight:600;color:var(--color-text-dark, #042a2a);line-height:1.1}.capture-stat-history__summary-meta{font-size:13px;color:var(--color-text-muted, #5a6a6a);line-height:1.35}.capture-stat-history__sections{display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:16px;align-items:start}@media(max-width: 720px){.capture-stat-history__sections{grid-template-columns:1fr}}.capture-stat-history__section-card{padding:18px 20px;border:2px solid var(--color-border, #dbeae3);border-radius:16px;background:var(--color-surface-raised, #ffffff);height:100%}.capture-stat-history__section-title{font-size:14px;font-weight:600;color:var(--color-text-dark, #042a2a);margin:0 0 14px;padding-bottom:10px;border-bottom:1px solid #e8f0f0}.capture-stat-history__metric-grid{display:flex;flex-direction:column;gap:8px}.capture-stat-history__metric{display:flex;flex-direction:row;align-items:center;justify-content:space-between;gap:16px;min-width:0;padding:10px 14px;border-radius:10px;border:1px solid var(--color-border, #dbeae3);background:var(--color-surface, #f8fbfb)}.capture-stat-history__metric-label{font-size:12px;font-weight:600;color:var(--color-text-muted, #5a6a6a);line-height:1.35;flex:1;min-width:0}.capture-stat-history__metric-value{font-size:20px;font-weight:600;color:var(--color-text-dark, #042a2a);line-height:1.2;flex-shrink:0;min-width:2.5rem;text-align:end}.entity-capture-backlog{display:inline-flex;align-items:center;font-size:13px;line-height:1;direction:ltr}.entity-capture-backlog--link{color:inherit;text-decoration:none;align-items:center}.entity-capture-backlog--link:hover,.ant-table-row:hover .entity-capture-backlog--link,.ant-table-row:hover .entity-capture-backlog--link *{text-decoration:none !important}.entity-capture-backlog--link:hover{color:var(--color-primary, #41aaaf)}.entity-capture-backlog--enable{display:inline-flex}.entity-capture-backlog__metrics{display:inline-flex;align-items:center;gap:8px;flex-wrap:wrap;direction:ltr}.entity-capture-backlog__metric{display:inline-flex;align-items:center;gap:4px;min-width:0;line-height:1;direction:ltr}.entity-capture-backlog__label,.entity-capture-backlog__value{display:inline-flex;align-items:center;font-size:12px;line-height:14px;flex-shrink:0}.entity-capture-backlog__label{font-weight:500;color:var(--color-text-dark, #042a2a)}.entity-capture-backlog__icon{display:inline-flex;align-items:center;justify-content:center;align-self:center;font-size:14px;line-height:1;flex-shrink:0;margin:0}.entity-capture-backlog__metric .entity-capture-backlog__icon{width:14px;height:14px;line-height:14px}.entity-capture-backlog__icon.anticon{vertical-align:middle}.entity-capture-backlog__icon svg{display:block}.entity-capture-backlog__icon--pending-review{color:var(--color-status-warning, #c38a20)}.entity-capture-backlog__icon--ready-to-post{color:var(--color-primary, #41aaaf)}.capture-workflow-metric__icon--posted{color:var(--color-status-info, #054581)}.entity-capture-backlog__value{font-weight:600;color:var(--color-text-dark, #042a2a)}.entity-capture-backlog--link:hover .entity-capture-backlog__value{color:var(--color-text-dark, #042a2a)}.entity-capture-backlog__tooltip{display:flex;flex-direction:column;gap:4px}.entity-capture-backlog__tooltip>div{white-space:nowrap}html.locale-ar .ant-btn,html.locale-ar .ant-btn-group{direction:ltr;unicode-bidi:isolate}html.locale-ar .transaction-table-date-cell{direction:ltr;unicode-bidi:isolate;display:inline-block;text-align:start}html.locale-ar .side-panel .user-menu-items .action-box-label,html.locale-ar .side-panel .user-menu-button .name-label-box,html.locale-ar .side-panel .user-menu-button .name-label-box>span,html[dir=rtl] .side-panel .user-menu-items .action-box-label,html[dir=rtl] .side-panel .user-menu-button .name-label-box,html[dir=rtl] .side-panel .user-menu-button .name-label-box>span{direction:rtl;unicode-bidi:isolate;text-align:start}html{--a11y-font-scale: 1}html,body{background:var(--color-surface-base, #ffffff);color:var(--color-text-base, #2e2e2e)}html.a11y-text-large{--a11y-font-scale: 1.125;--font-size-base: 15.75px;--font-size-small: 13.5px;--ant-font-size: 15.75px}html.a11y-text-larger{--a11y-font-scale: 1.25;--font-size-base: 17.5px;--font-size-small: 15px;--ant-font-size: 17.5px}html.a11y-text-large .header-container .ant-row,html.a11y-text-larger .header-container .ant-row{flex-wrap:wrap;row-gap:8px}html.a11y-text-large .header-container .ant-col:first-child,html.a11y-text-larger .header-container .ant-col:first-child{flex:1 1 auto;min-width:0;max-width:100%}html.a11y-text-large .header-container .ant-typography,html.a11y-text-larger .header-container .ant-typography{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:100%}html.a11y-text-large .header-container .ant-col:last-child,html.a11y-text-larger .header-container .ant-col:last-child{flex:0 1 auto;display:flex;justify-content:flex-end;min-width:0}html.a11y-text-large .header-container .ant-space,html.a11y-text-larger .header-container .ant-space{flex-wrap:wrap;justify-content:flex-end;max-width:100%}html.a11y-text-large .header-container .ant-select,html.a11y-text-larger .header-container .ant-select{width:min(250px,100%) !important;max-width:220px !important}html.a11y-text-larger .header-container .ant-select{max-width:200px !important}html.a11y-text-large .side-panel .ant-menu-item,html.a11y-text-large .side-panel .ant-menu-title-content,html.a11y-text-large .user-menu-button,html.a11y-text-large .user-menu-button-small,html.a11y-text-larger .side-panel .ant-menu-item,html.a11y-text-larger .side-panel .ant-menu-title-content,html.a11y-text-larger .user-menu-button,html.a11y-text-larger .user-menu-button-small{font-size:calc(14px*var(--a11y-font-scale)) !important}.entities-page-content{width:100%;max-width:none;min-width:0;margin:0;box-sizing:border-box}html.a11y-text-large .accessibility-settings-page .a11y-section-title,html.a11y-text-larger .accessibility-settings-page .a11y-section-title,html.a11y-text-large .profile-settings-page .a11y-section-title,html.a11y-text-larger .profile-settings-page .a11y-section-title{font-size:calc(16px*var(--a11y-font-scale))}html.a11y-text-large .accessibility-settings-page .a11y-section-help,html.a11y-text-large .accessibility-settings-page .a11y-footer-note,html.a11y-text-larger .accessibility-settings-page .a11y-section-help,html.a11y-text-larger .accessibility-settings-page .a11y-footer-note,html.a11y-text-large .profile-settings-page .a11y-section-help,html.a11y-text-large .profile-settings-page .a11y-footer-note,html.a11y-text-larger .profile-settings-page .a11y-section-help,html.a11y-text-larger .profile-settings-page .a11y-footer-note{font-size:calc(13px*var(--a11y-font-scale))}html.a11y-text-large .accessibility-settings-page .a11y-control-label,html.a11y-text-larger .accessibility-settings-page .a11y-control-label,html.a11y-text-large .profile-settings-page .a11y-control-label,html.a11y-text-larger .profile-settings-page .a11y-control-label{font-size:calc(14px*var(--a11y-font-scale))}html.a11y-text-large .accessibility-settings-page .a11y-control-help,html.a11y-text-larger .accessibility-settings-page .a11y-control-help,html.a11y-text-large .profile-settings-page .a11y-control-help,html.a11y-text-larger .profile-settings-page .a11y-control-help{font-size:calc(12px*var(--a11y-font-scale))}html.a11y-text-large .accessibility-settings-page .a11y-page-intro,html.a11y-text-larger .accessibility-settings-page .a11y-page-intro,html.a11y-text-large .profile-settings-page .a11y-page-intro,html.a11y-text-larger .profile-settings-page .a11y-page-intro{font-size:calc(14px*var(--a11y-font-scale))}html.a11y-text-large .accessibility-settings-page .ant-typography,html.a11y-text-large .accessibility-settings-page .ant-radio-button-wrapper,html.a11y-text-larger .accessibility-settings-page .ant-typography,html.a11y-text-larger .accessibility-settings-page .ant-radio-button-wrapper,html.a11y-text-large .profile-settings-page .ant-typography,html.a11y-text-large .profile-settings-page .ant-radio-button-wrapper,html.a11y-text-larger .profile-settings-page .ant-typography,html.a11y-text-larger .profile-settings-page .ant-radio-button-wrapper{font-size:calc(14px*var(--a11y-font-scale)) !important}@media(max-width: 767px){html.a11y-text-large .accessibility-settings-page .a11y-control-row--radio .ant-radio-button-wrapper,html.a11y-text-large .accessibility-settings-page .profile-settings-page .a11y-control-row--radio .ant-radio-button-wrapper,html.a11y-text-larger .accessibility-settings-page .a11y-control-row--radio .ant-radio-button-wrapper,html.a11y-text-larger .accessibility-settings-page .profile-settings-page .a11y-control-row--radio .ant-radio-button-wrapper,html.a11y-text-large .profile-settings-page .a11y-control-row--radio .ant-radio-button-wrapper,html.a11y-text-large .profile-settings-page .profile-settings-page .a11y-control-row--radio .ant-radio-button-wrapper,html.a11y-text-larger .profile-settings-page .a11y-control-row--radio .ant-radio-button-wrapper,html.a11y-text-larger .profile-settings-page .profile-settings-page .a11y-control-row--radio .ant-radio-button-wrapper{font-size:10px !important;line-height:1.25 !important}}html.a11y-text-spacing-relaxed body,html.a11y-text-spacing-relaxed .layout,html.a11y-text-spacing-relaxed .layout-wide,html.a11y-text-spacing-relaxed .layout-narrow{line-height:1.75;letter-spacing:.04em;word-spacing:.12em}html.a11y-high-contrast{--color-text-dark: #000000;--color-text-base: #000000;--color-text-muted: #222222;--color-segmented-item: #222222;--color-tag-disabled: #333333;--color-placeholder: #333333;--color-border: #000000;--color-surface: #ffffff;--color-layout-bg: #ffffff;--color-link: #003366;--color-link-hover: #001a33;--color-primary: #267a7e;--color-primary-hover: #2a7f84;--color-primary-soft: #e6f7f7;--color-sso-button-bg: #d2edef;--color-text-disabled: #767676;--color-status-success: #047070;--color-status-warning: #7a5c12;--color-status-danger: #c12828;--color-status-info: #043a6b;--btn-primary-color: #267a7e;--btn-primary-hover-bg: #2a7f84;--ant-color-primary: #267a7e;--ant-color-primary-hover: #2a7f84;--ant-color-text: #000000;--ant-color-text-base: #000000;--ant-color-border: #000000;--ant-color-link: #003366;--ant-color-link-hover: #001a33}html.a11y-high-contrast body,html.a11y-high-contrast .layout,html.a11y-high-contrast .layout-wide,html.a11y-high-contrast .layout-narrow{color:#000;background-color:var(--color-surface-raised, #ffffff)}html.a11y-high-contrast .ant-btn,html.a11y-high-contrast .ant-input,html.a11y-high-contrast .ant-select-selector,html.a11y-high-contrast .ant-card,html.a11y-high-contrast .ant-table,html.a11y-high-contrast .ant-modal-content{border-color:#000 !important}html.a11y-high-contrast .ant-btn-primary:not(:disabled):not(.ant-btn-disabled){background-color:#267a7e !important;border-color:#267a7e !important;color:#fff !important}html.a11y-high-contrast .ant-btn-primary:not(:disabled):not(.ant-btn-disabled):hover,html.a11y-high-contrast .ant-btn-primary:not(:disabled):not(.ant-btn-disabled):focus{background-color:#2a7f84 !important;border-color:#2a7f84 !important;color:#fff !important}html.a11y-high-contrast .ant-btn-link,html.a11y-high-contrast .ant-btn-link span{color:#036 !important}html.a11y-high-contrast .ant-select-selection-placeholder,html.a11y-high-contrast .ant-select-selection-item{color:#595959 !important}html.a11y-high-contrast .ant-pagination-options-size-changer.ant-select,html.a11y-high-contrast .scope-table-page-size-select.ant-select,html.a11y-high-contrast .ant-pagination-options-size-changer.ant-select .ant-select-selection-item,html.a11y-high-contrast .scope-table-page-size-select.ant-select .ant-select-selection-item,html.a11y-high-contrast .ant-pagination-options-size-changer.ant-select .ant-select-selector,html.a11y-high-contrast .scope-table-page-size-select.ant-select .ant-select-selector,html.a11y-high-contrast .ant-pagination-options-size-changer.ant-select .ant-select-arrow,html.a11y-high-contrast .scope-table-page-size-select.ant-select .ant-select-arrow{color:#595959 !important}html.a11y-high-contrast .ant-input::placeholder,html.a11y-high-contrast .ant-input-affix-wrapper input::placeholder,html.a11y-high-contrast .ant-select-selection-placeholder,html.a11y-high-contrast .ant-picker-input input::placeholder{color:#595959 !important}html.a11y-high-contrast a{color:#036 !important;text-decoration:underline}html.a11y-high-contrast .ant-segmented{background:var(--color-surface-raised, #ffffff) !important}html.a11y-high-contrast .ant-segmented-item-label{color:var(--color-segmented-item, #222222) !important}html.a11y-high-contrast .ant-segmented-item-selected .ant-segmented-item-label{color:#000 !important}html.a11y-high-contrast .ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled){background:#267a7e !important;border-color:#267a7e !important;color:#fff !important}html.a11y-high-contrast .ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover{background:#2a7f84 !important;border-color:#2a7f84 !important;color:#fff !important}html.a11y-high-contrast .ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled)::before{background-color:#267a7e !important}html.a11y-high-contrast .ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover::before{background-color:#2a7f84 !important}html.a11y-high-contrast .ant-radio-button-wrapper:not(.ant-radio-button-wrapper-disabled):hover{color:#267a7e !important}html.a11y-high-contrast .ant-switch.ant-switch-checked{background:#267a7e !important}html.a11y-high-contrast .ant-switch.ant-switch-checked:hover:not(.ant-switch-disabled){background:#2a7f84 !important}html.a11y-high-contrast .switch-checked .ant-switch-handle::before{background:#267a7e !important}html.a11y-underline-links a{text-decoration:underline !important;text-underline-offset:2px}html.a11y-reduce-motion *,html.a11y-reduce-motion *::before,html.a11y-reduce-motion *::after{animation-duration:.001ms !important;animation-iteration-count:1 !important;transition-duration:.001ms !important;scroll-behavior:auto !important}:focus-visible{outline:2px solid #41aaaf;outline-offset:2px}html.a11y-focus-strong :focus-visible{outline:3px solid #41aaaf !important;outline-offset:2px !important}html.a11y-high-contrast :focus-visible{outline:2px solid #000 !important;outline-offset:2px !important}html.a11y-high-contrast.a11y-focus-strong :focus-visible{outline:3px solid #000 !important;outline-offset:2px !important}html.a11y-high-contrast .capture-workflow-metric__icon--posted,html.a11y-high-contrast .transactions-file-state-stepper__step--posted .capture-workflow-metric__icon--posted{color:var(--color-status-info, #043a6b)}html.a11y-high-contrast .transactions-file-state-stepper__step--selected.transactions-file-state-stepper__step--posted{border-color:var(--color-status-info, #043a6b);background:var(--color-status-info-bg, #e1edf6)}.skip-to-main{position:absolute;left:-9999px;top:0;z-index:10000;padding:10px 16px;background:var(--color-text-dark, #042a2a);color:#fff;font-family:Inter,sans-serif;font-size:14px;font-weight:600;text-decoration:none;border-radius:4px}.skip-to-main:focus,.skip-to-main:focus-visible{left:16px;top:16px;outline:2px solid #41aaaf;outline-offset:2px}#main-content:focus{outline:none}.layout-login .auth-form .ant-input::placeholder,.layout-login .login-form .ant-input::placeholder,.layout-login .auth-form .ant-input-affix-wrapper input::placeholder,.layout-login .login-form .ant-input-affix-wrapper input::placeholder,.layout-signup .auth-form .ant-input::placeholder,.layout-signup .login-form .ant-input::placeholder,.layout-signup .auth-form .ant-input-affix-wrapper input::placeholder,.layout-signup .login-form .ant-input-affix-wrapper input::placeholder{color:var(--color-placeholder, #5a6a6a);opacity:1}.layout-login .auth-form .ant-form-item-label>label,.layout-login .login-form .ant-form-item-label>label,.layout-signup .auth-form .ant-form-item-label>label,.layout-signup .login-form .ant-form-item-label>label{color:var(--color-text-dark, #042a2a)}.layout-login .sign-up-link,.layout-signup .sign-up-link{color:var(--color-text-dark, #042a2a);font-weight:600}html.a11y-login-mode .layout-login .auth-form .ant-form-item-label>label,html.a11y-login-mode .layout-login .login-form .ant-form-item-label>label,html.a11y-login-mode .layout-signup .auth-form .ant-form-item-label>label{color:var(--color-text-dark, #042a2a)}@media(max-width: 600px){.layout-login,.layout-signup{--auth-mobile-title-font: 18px;--auth-mobile-form-font: 14px;--auth-mobile-sso-font: 13px;--auth-mobile-footer-font: 13px}.layout-login .ant-spin-container,.layout-signup .ant-spin-container{padding:0 16px;padding-top:max(8px,env(safe-area-inset-top, 0px));padding-bottom:max(8px,env(safe-area-inset-bottom, 0px));box-sizing:border-box}.layout-login .ant-spin-container>a img,.layout-signup .ant-spin-container>a img{width:min(168px,52vw) !important;max-width:100%;height:auto !important}.layout-login .ant-row,.layout-signup .ant-row{margin-inline:0 !important}.layout-login .ant-col,.layout-signup .ant-col{width:100% !important;max-width:100% !important;flex:0 0 100% !important;margin-inline-start:0 !important;padding-inline:0 !important;box-sizing:border-box}.layout-login .ant-form,.layout-signup .ant-form{width:100%;box-sizing:border-box}.layout-login .ant-form-item,.layout-signup .ant-form-item{width:100% !important;max-width:100% !important;margin-bottom:8px !important}.layout-login .ant-input,.layout-login .ant-input-affix-wrapper,.layout-login .ant-input-password,.layout-login .scope-form-input,.layout-signup .ant-input,.layout-signup .ant-input-affix-wrapper,.layout-signup .ant-input-password,.layout-signup .scope-form-input{width:100% !important;max-width:100% !important;min-width:0 !important;box-sizing:border-box;font-size:var(--auth-mobile-form-font) !important}.layout-login .ant-input-affix-wrapper-lg,.layout-login .ant-input-lg,.layout-signup .ant-input-affix-wrapper-lg,.layout-signup .ant-input-lg{padding-block:6px !important}.layout-login .ant-btn.ant-btn-primary,.layout-login .scope-button.ant-btn-primary,.layout-signup .ant-btn.ant-btn-primary,.layout-signup .scope-button.ant-btn-primary{width:100% !important;max-width:100% !important;min-width:0 !important;height:42px !important;font-size:var(--auth-mobile-form-font) !important;line-height:normal !important;display:inline-flex !important;align-items:center !important;justify-content:center !important;padding-block:0 !important}.layout-login .ant-btn.ant-btn-primary>span,.layout-login .scope-button.ant-btn-primary>span,.layout-login .ant-btn.ant-btn-primary .scope-button-label,.layout-login .scope-button.ant-btn-primary .scope-button-label,.layout-signup .ant-btn.ant-btn-primary>span,.layout-signup .scope-button.ant-btn-primary>span,.layout-signup .ant-btn.ant-btn-primary .scope-button-label,.layout-signup .scope-button.ant-btn-primary .scope-button-label{font-size:inherit !important;line-height:normal !important;width:auto !important;height:auto !important;max-width:100%}.layout-login .password-link,.layout-login .password-link.link-text,.layout-signup .password-link,.layout-signup .password-link.link-text{min-width:0 !important;max-width:100% !important;width:auto !important;text-align:right !important;display:block !important;margin-left:auto !important;font-size:var(--auth-mobile-form-font) !important;line-height:1.3 !important;padding:4px 0 !important}.layout-login .scope-sso-login-stack,.layout-signup .scope-sso-login-stack{width:100%;padding:0;gap:8px;box-sizing:border-box}.layout-login .scope-sso-login-button.ant-btn,.layout-login .scope-sso-login-button.ant-btn-default,.layout-signup .scope-sso-login-button.ant-btn,.layout-signup .scope-sso-login-button.ant-btn-default{min-width:0 !important;width:100% !important;max-width:100% !important;height:40px !important;font-size:var(--auth-mobile-sso-font) !important;font-weight:600 !important;line-height:1.3 !important;padding-left:6px !important}.layout-login .scope-sso-login-button.ant-btn img,.layout-login .scope-sso-login-button.ant-btn-default img,.layout-signup .scope-sso-login-button.ant-btn img,.layout-signup .scope-sso-login-button.ant-btn-default img{width:28px !important;max-width:28px !important;height:28px !important;left:6px !important;top:6px !important}.layout-login .scope-sso-login-button.ant-btn .scope-sso-login-label,.layout-login .scope-sso-login-button.ant-btn .scope-button-label,.layout-login .scope-sso-login-button.ant-btn>span:not(.ant-btn-icon):not(.anticon),.layout-login .scope-sso-login-button.ant-btn-default .scope-sso-login-label,.layout-login .scope-sso-login-button.ant-btn-default .scope-button-label,.layout-login .scope-sso-login-button.ant-btn-default>span:not(.ant-btn-icon):not(.anticon),.layout-signup .scope-sso-login-button.ant-btn .scope-sso-login-label,.layout-signup .scope-sso-login-button.ant-btn .scope-button-label,.layout-signup .scope-sso-login-button.ant-btn>span:not(.ant-btn-icon):not(.anticon),.layout-signup .scope-sso-login-button.ant-btn-default .scope-sso-login-label,.layout-signup .scope-sso-login-button.ant-btn-default .scope-button-label,.layout-signup .scope-sso-login-button.ant-btn-default>span:not(.ant-btn-icon):not(.anticon){font-size:inherit !important;font-weight:inherit !important;line-height:inherit !important;padding:0 !important}.layout-login .ant-row[style*="height: 50px"],.layout-signup .ant-row[style*="height: 50px"]{display:flex !important;flex-direction:row !important;align-items:center !important;height:auto !important;min-height:40px !important;margin:4px 0 !important;padding:0 !important;gap:0 !important;overflow:visible !important}.layout-login .ant-row[style*="height: 50px"]>.ant-col,.layout-signup .ant-row[style*="height: 50px"]>.ant-col{padding:0 !important}.layout-login .ant-row[style*="height: 50px"]>.ant-col:nth-child(1),.layout-login .ant-row[style*="height: 50px"]>.ant-col:nth-child(3),.layout-signup .ant-row[style*="height: 50px"]>.ant-col:nth-child(1),.layout-signup .ant-row[style*="height: 50px"]>.ant-col:nth-child(3){flex:1 1 0 !important;width:auto !important;max-width:none !important}.layout-login .ant-row[style*="height: 50px"]>.ant-col:nth-child(1)>div,.layout-login .ant-row[style*="height: 50px"]>.ant-col:nth-child(3)>div,.layout-signup .ant-row[style*="height: 50px"]>.ant-col:nth-child(1)>div,.layout-signup .ant-row[style*="height: 50px"]>.ant-col:nth-child(3)>div{height:1px;width:100%}.layout-login .ant-row[style*="height: 50px"]>.ant-col:nth-child(2),.layout-signup .ant-row[style*="height: 50px"]>.ant-col:nth-child(2){flex:0 0 auto !important;width:auto !important;padding:0 10px !important;overflow:visible !important;font-size:var(--auth-mobile-sso-font) !important;line-height:1.3 !important;font-weight:600 !important}.layout-login .ant-form>.ant-row:last-child,.layout-login .ant-form>.ant-row:last-child .ant-col,.layout-login .ant-form>.ant-row:last-child span,.layout-login .sign-up-link,.layout-signup .ant-form>.ant-row:last-child,.layout-signup .ant-form>.ant-row:last-child .ant-col,.layout-signup .ant-form>.ant-row:last-child span,.layout-signup .sign-up-link{font-size:var(--auth-mobile-footer-font) !important;line-height:1.35 !important;white-space:normal !important}.layout-login .ant-form>.ant-row:last-child .ant-col,.layout-signup .ant-form>.ant-row:last-child .ant-col{text-align:center}.layout-login #mfa-code,.layout-signup #mfa-code{width:100% !important;max-width:100% !important}.layout-login .ant-typography.ant-typography-h2,.layout-login h2.ant-typography,.layout-login h2.ant-typography span,.layout-signup .ant-typography.ant-typography-h2,.layout-signup h2.ant-typography,.layout-signup h2.ant-typography span{font-size:var(--auth-mobile-title-font) !important;line-height:1.25 !important;white-space:normal !important}.layout-login .login-a11y-toggle,.layout-signup .login-a11y-toggle{margin-top:10px;padding-inline-start:max(100px,env(safe-area-inset-left, 0px) + 92px);padding-inline-end:max(8px,env(safe-area-inset-right, 0px));padding-bottom:max(12px,env(safe-area-inset-bottom, 0px));flex-wrap:wrap;justify-content:flex-end;text-align:right;font-size:var(--auth-mobile-footer-font) !important;line-height:1.35 !important;gap:6px 8px}.layout-login .login-a11y-toggle__label,.layout-signup .login-a11y-toggle__label{font-size:inherit !important;line-height:inherit !important;max-width:none;white-space:normal;flex:0 1 auto}}body:has(.layout-login) .grecaptcha-badge,body:has(.layout-signup) .grecaptcha-badge{bottom:max(8px,env(safe-area-inset-bottom, 0px)) !important;left:max(8px,env(safe-area-inset-left, 0px)) !important;right:auto !important;transform:scale(0.75);transform-origin:left bottom;z-index:1}@media(max-width: 600px){body:has(.layout-login) .grecaptcha-badge,body:has(.layout-signup) .grecaptcha-badge{bottom:max(6px,env(safe-area-inset-bottom, 0px)) !important;left:max(6px,env(safe-area-inset-left, 0px)) !important;transform:scale(0.68);transform-origin:left bottom}}body:has(.layout-login) .login-a11y-toggle,body:has(.layout-signup) .login-a11y-toggle{padding-inline-start:max(100px,env(safe-area-inset-left, 0px) + 92px);padding-inline-end:max(8px,env(safe-area-inset-right, 0px));justify-content:flex-end;text-align:right}body:has(.layout-login) .login-a11y-toggle__label,body:has(.layout-signup) .login-a11y-toggle__label{max-width:none;white-space:normal}.accessibility-settings-page .a11y-page-title,.profile-settings-page .a11y-page-title{font-family:var(--font-family, Inter, sans-serif);color:var(--color-text-dark, #042a2a) !important;margin-bottom:8px !important}.accessibility-settings-page .a11y-section-title,.profile-settings-page .a11y-section-title{font-family:Inter,sans-serif;font-size:16px;font-weight:600;line-height:24px;color:var(--color-text-dark, #042a2a);margin-bottom:4px}.accessibility-settings-page .a11y-page-intro,.profile-settings-page .a11y-page-intro{display:block;font-family:var(--font-family, Inter, sans-serif);font-size:14px;margin-bottom:24px;max-width:720px;color:var(--color-text-muted, #5a6a6a)}.accessibility-settings-page .a11y-settings-stack,.profile-settings-page .a11y-settings-stack{width:100%}.accessibility-settings-page .a11y-card,.profile-settings-page .a11y-card{max-width:720px}.accessibility-settings-page .a11y-card--flat,.profile-settings-page .a11y-card--flat{width:100%;border:1px solid var(--color-border, #dbeae3);border-radius:10px;box-shadow:none;background:var(--color-surface-raised, #ffffff)}.accessibility-settings-page .a11y-card--flat .ant-card-body,.profile-settings-page .a11y-card--flat .ant-card-body{padding:24px !important}.accessibility-settings-page .a11y-section-help,.profile-settings-page .a11y-section-help{font-family:Inter,sans-serif;font-size:13px;font-weight:400;line-height:20px;color:var(--color-text-muted, #5a6a6a);margin-bottom:16px}.accessibility-settings-page .a11y-control-row,.profile-settings-page .a11y-control-row{display:flex;align-items:center;justify-content:space-between;gap:24px;padding:12px 0;border-bottom:1px solid var(--color-border, #dbeae3)}.accessibility-settings-page .a11y-control-row:last-child,.profile-settings-page .a11y-control-row:last-child{border-bottom:none;padding-bottom:0}.accessibility-settings-page .a11y-control-label,.profile-settings-page .a11y-control-label{font-family:Inter,sans-serif;font-size:14px;font-weight:500;color:var(--color-text-dark, #042a2a)}.accessibility-settings-page .a11y-control-help,.profile-settings-page .a11y-control-help{font-family:Inter,sans-serif;font-size:12px;font-weight:400;color:var(--color-text-muted, #5a6a6a);margin-top:2px}.accessibility-settings-page .a11y-footer-note,.profile-settings-page .a11y-footer-note{font-family:Inter,sans-serif;font-size:13px;font-weight:400;line-height:20px;color:var(--color-text-muted, #5a6a6a);margin-top:8px}.accessibility-settings-page .a11y-footer-subnote,.profile-settings-page .a11y-footer-subnote{margin-top:4px}.accessibility-settings-page .a11y-footer-link-wrap,.profile-settings-page .a11y-footer-link-wrap{margin-top:12px}.accessibility-settings-page .a11y-preference-switch,.profile-settings-page .a11y-preference-switch{margin-right:8px}.accessibility-settings-page .a11y-statement-link,.profile-settings-page .a11y-statement-link{color:var(--color-status-info, #054581);text-decoration:underline}.accessibility-settings-page .a11y-statement-link:hover,.profile-settings-page .a11y-statement-link:hover{color:#043a6b}@media(max-width: 767px){.accessibility-settings-page,.profile-settings-page{padding:12px !important}.accessibility-settings-page .a11y-card--flat .ant-card-body,.profile-settings-page .a11y-card--flat .ant-card-body{padding:16px !important}.accessibility-settings-page .a11y-control-row,.profile-settings-page .a11y-control-row{gap:10px}.accessibility-settings-page .a11y-control-row--radio,.profile-settings-page .a11y-control-row--radio{flex-direction:column;align-items:stretch;gap:8px}.accessibility-settings-page .a11y-control-row--radio>div:first-child,.profile-settings-page .a11y-control-row--radio>div:first-child{flex:none}.accessibility-settings-page .a11y-control-row--radio .a11y-control-label,.profile-settings-page .a11y-control-row--radio .a11y-control-label{white-space:nowrap}.accessibility-settings-page .a11y-control-row--radio .ant-radio-group,.profile-settings-page .a11y-control-row--radio .ant-radio-group{display:flex;width:100%;flex-wrap:nowrap;justify-content:stretch}.accessibility-settings-page .a11y-control-row--radio .ant-radio-button-wrapper,.profile-settings-page .a11y-control-row--radio .ant-radio-button-wrapper{flex:1 1 0;min-width:0;height:auto;min-height:36px;padding:6px 3px !important;font-size:10px !important;line-height:1.25 !important;white-space:normal;display:inline-flex;align-items:center;justify-content:center;text-align:center}.accessibility-settings-page .a11y-control-row--radio .ant-radio-button-wrapper span:not(.ant-radio-button),.profile-settings-page .a11y-control-row--radio .ant-radio-button-wrapper span:not(.ant-radio-button){white-space:normal;line-height:1.25}.accessibility-settings-page .a11y-control-row--action,.accessibility-settings-page .a11y-control-row:not(.a11y-control-row--radio),.profile-settings-page .a11y-control-row--action,.profile-settings-page .a11y-control-row:not(.a11y-control-row--radio){flex-direction:column;align-items:stretch;gap:10px}.accessibility-settings-page .a11y-control-row--action .a11y-preference-switch,.accessibility-settings-page .a11y-control-row:not(.a11y-control-row--radio) .a11y-preference-switch,.profile-settings-page .a11y-control-row--action .a11y-preference-switch,.profile-settings-page .a11y-control-row:not(.a11y-control-row--radio) .a11y-preference-switch{align-self:flex-end;margin-right:0}.accessibility-settings-page .a11y-control-row--action .profile-settings-action,.accessibility-settings-page .a11y-control-row:not(.a11y-control-row--radio) .profile-settings-action,.profile-settings-page .a11y-control-row--action .profile-settings-action,.profile-settings-page .a11y-control-row:not(.a11y-control-row--radio) .profile-settings-action{align-self:flex-start;width:auto;max-width:100%;margin-right:0}.accessibility-settings-page .a11y-control-row--action .profile-settings-action .scope-button,.accessibility-settings-page .a11y-control-row--action .profile-settings-action .ant-btn,.accessibility-settings-page .a11y-control-row--action .profile-settings-action a,.accessibility-settings-page .a11y-control-row:not(.a11y-control-row--radio) .profile-settings-action .scope-button,.accessibility-settings-page .a11y-control-row:not(.a11y-control-row--radio) .profile-settings-action .ant-btn,.accessibility-settings-page .a11y-control-row:not(.a11y-control-row--radio) .profile-settings-action a,.profile-settings-page .a11y-control-row--action .profile-settings-action .scope-button,.profile-settings-page .a11y-control-row--action .profile-settings-action .ant-btn,.profile-settings-page .a11y-control-row--action .profile-settings-action a,.profile-settings-page .a11y-control-row:not(.a11y-control-row--radio) .profile-settings-action .scope-button,.profile-settings-page .a11y-control-row:not(.a11y-control-row--radio) .profile-settings-action .ant-btn,.profile-settings-page .a11y-control-row:not(.a11y-control-row--radio) .profile-settings-action a{display:inline-block;width:auto !important;max-width:100%}}.profile-settings-page{max-width:100%;box-sizing:border-box}.profile-settings-page .profile-settings-main{overflow-x:visible;max-width:100%}.profile-settings-page .profile-settings-layout{display:flex;align-items:flex-start;gap:25px;width:100%;max-width:100%;min-width:0}.profile-settings-page .profile-settings-sidebar{flex:0 0 auto;min-width:0;max-width:100%}.profile-settings-page .profile-settings-profile-card.ant-card{width:100% !important;max-width:100%;overflow:visible}.profile-settings-page .profile-settings-profile-card.ant-card .ant-card-body{padding:20px 16px !important;overflow:visible}.profile-settings-page .profile-settings-avatar{position:relative;width:150px;height:auto;margin:0 auto 16px}.profile-settings-page .profile-settings-avatar .profile-image-hover-container{position:relative;width:150px;height:150px;margin:0 auto}.profile-settings-page .profile-settings-avatar-image,.profile-settings-page .profile-settings-profile-card .profile-rounded-image{margin:0 !important;width:150px !important;height:150px !important;display:block}.profile-settings-page .profile-settings-avatar-actions{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);z-index:10;gap:8px}.profile-settings-page .profile-settings-profile-summary{width:100%;min-width:0}.profile-settings-page .profile-settings-role{display:flex;justify-content:center;width:100%;margin-bottom:10px}.profile-settings-page .profile-settings-details{width:100%;text-align:center;align-items:center !important}@media(min-width: 768px){.profile-settings-page .profile-settings-profile-card.ant-card{max-width:270px}}.profile-settings-page .profile-settings-main{flex:1 1 auto;min-width:0;max-width:100%}.profile-settings-page .profile-settings-panel.ant-card{max-width:100%;width:100%;height:auto !important;min-width:0;border-radius:10px;overflow:hidden}.profile-settings-page .profile-settings-panel .ant-tabs,.profile-settings-page .profile-settings-panel .ant-tabs-content-holder,.profile-settings-page .profile-settings-panel .ant-tabs-content,.profile-settings-page .profile-settings-panel .ant-tabs-tabpane{max-width:100%;min-width:0}@media(min-width: 768px){.profile-settings-page .profile-settings-panel.ant-card{min-width:0;max-width:1000px}}.profile-settings-page .profile-settings-card.ant-card{width:100% !important;max-width:100% !important;min-width:0 !important;height:auto !important;border:1px solid var(--color-border, #dbeae3);border-radius:10px;overflow:hidden;box-shadow:none !important;background:var(--color-surface-raised, #ffffff);background-clip:padding-box}.profile-settings-page .profile-settings-history-card.ant-card{width:100% !important;max-width:100% !important;height:auto !important}.profile-settings-page .profile-settings-card .ant-card-body{padding:20px 24px !important;border-radius:inherit}.profile-settings-page .profile-settings-stack{width:100%;max-width:100%;min-width:0}.profile-settings-page .a11y-control-help{word-break:break-word;overflow-wrap:anywhere}.profile-settings-page .profile-settings-subrow{display:flex;align-items:center;justify-content:space-between;gap:16px;width:100%;padding:12px 0;border-top:1px solid var(--color-border, #dbeae3)}.profile-settings-page .profile-settings-subrow:first-child{border-top:none;padding-top:0}@media(max-width: 767px){.profile-settings-page .profile-settings-layout{flex-direction:column;gap:16px;width:100%}.profile-settings-page .profile-settings-sidebar{width:100%;flex:1 1 auto;align-self:stretch}.profile-settings-page .profile-settings-sidebar>div{position:static !important;height:auto !important;width:100% !important}.profile-settings-page .profile-settings-sidebar .ant-card{width:100% !important;max-width:none !important;margin:0}.profile-settings-page .profile-settings-profile-card.ant-card{width:100% !important;max-width:none !important}.profile-settings-page .profile-settings-main{width:100%;flex:1 1 auto;align-self:stretch}.profile-settings-page .profile-settings-avatar{width:100%;display:flex;flex-direction:column;align-items:center}.profile-settings-page .profile-settings-avatar .profile-image-hover-container{display:flex;flex-direction:column;align-items:center;width:100%;height:auto}.profile-settings-page .profile-settings-avatar-actions{position:static;transform:none;display:flex !important;justify-content:center;margin-top:8px}.profile-settings-page .profile-settings-panel.ant-card{margin-left:0 !important;min-width:0 !important;width:100% !important;height:auto !important}.profile-settings-page .profile-settings-panel .ant-card-body{padding:16px !important}.profile-settings-page .profile-settings-card .ant-card-body{padding:16px !important}.profile-settings-page .profile-settings-subrow{flex-direction:column;align-items:stretch;gap:10px}.profile-settings-page .profile-settings-subrow .profile-settings-action{align-self:flex-start;width:auto;max-width:100%}.profile-settings-page .profile-settings-subrow .profile-settings-action .scope-button,.profile-settings-page .profile-settings-subrow .profile-settings-action .ant-btn{width:auto !important;max-width:100%}}.app-root--pwa-mobile .profile-settings-page,.app-root--pwa-mobile .accessibility-settings-page{padding:0 2px 16px !important;min-height:auto;overflow:visible}.app-root--pwa-mobile .profile-settings-panel .scope-pwa-account-tabs .ant-tabs-nav{margin-bottom:12px}.app-root--pwa-mobile .profile-settings-panel .scope-pwa-account-tabs .ant-tabs-nav-wrap{overflow-x:auto !important;overflow-y:hidden !important;scrollbar-width:none;-webkit-overflow-scrolling:touch}.app-root--pwa-mobile .profile-settings-panel .scope-pwa-account-tabs .ant-tabs-nav-wrap::-webkit-scrollbar{display:none}.app-root--pwa-mobile .profile-settings-panel .scope-pwa-account-tabs .ant-tabs-nav-list{display:flex !important;flex-wrap:nowrap;width:max-content !important;transform:none !important}.app-root--pwa-mobile .profile-settings-panel .scope-pwa-account-tabs .ant-tabs-nav-operations{display:none !important}.app-root--pwa-mobile .profile-settings-panel .scope-pwa-account-tabs .ant-tabs-tab{flex:0 0 auto !important;padding:10px 0 !important}.app-root--pwa-mobile .profile-settings-panel .scope-pwa-account-tabs .ant-tabs-tab+.ant-tabs-tab{margin-inline-start:14px !important}.app-root--pwa-mobile .profile-settings-panel .scope-pwa-account-tabs .ant-tabs-tab-btn{font-size:13px !important;white-space:nowrap !important;overflow:visible !important;text-overflow:clip !important}.app-root--pwa-mobile .profile-settings-page .ant-row,.app-root--pwa-mobile .profile-settings-page .ant-col{width:100% !important;max-width:100% !important;flex:0 0 100% !important}.app-root--pwa-mobile .profile-settings-page .profile-settings-layout,.app-root--pwa-mobile .profile-settings-page .profile-settings-sidebar,.app-root--pwa-mobile .profile-settings-page .profile-settings-main,.app-root--pwa-mobile .profile-settings-page .profile-settings-profile-card.ant-card,.app-root--pwa-mobile .profile-settings-page .profile-settings-panel.ant-card{width:100% !important;max-width:none !important}.app-root--pwa-mobile .profile-settings-page .profile-settings-main,.app-root--pwa-mobile .profile-settings-page .profile-settings-panel .ant-tabs,.app-root--pwa-mobile .profile-settings-page .profile-settings-panel .ant-tabs-content-holder,.app-root--pwa-mobile .profile-settings-page .profile-settings-panel .ant-tabs-content,.app-root--pwa-mobile .profile-settings-page .profile-settings-panel .ant-tabs-tabpane{overflow:visible}.app-root--pwa-mobile .profile-settings-page .profile-settings-panel.ant-card,.app-root--pwa-mobile .profile-settings-page .profile-settings-card.ant-card{border-radius:10px !important;overflow:hidden}.app-root--pwa-mobile .profile-settings-page .profile-settings-panel.ant-card .ant-card-body,.app-root--pwa-mobile .profile-settings-page .profile-settings-card.ant-card .ant-card-body{border-radius:inherit}.app-root--pwa-mobile .profile-settings-page .profile-settings-logout{margin-top:20px;padding-bottom:calc(var(--pwa-bottom-nav-height, 64px) + 8px)}.profile-settings-logout{margin-top:24px;max-width:720px}.profile-settings-logout__label{display:inline-flex;align-items:center;justify-content:center;gap:8px}.profile-settings-logout__icon{flex-shrink:0}.ant-card{border-radius:var(--border-radius-card, 12px)}.ant-card .ant-card-head{border-radius:var(--border-radius-card, 12px) var(--border-radius-card, 12px) 0 0}.ant-card .ant-card-body{border-radius:inherit}.app-root--pwa-mobile .ant-card:not(.scope-card-flush){border-radius:var(--border-radius-card, 12px) !important}.app-root--pwa-mobile .ant-card:not(.scope-card-flush):not(.scope-card-overflow){overflow:hidden !important}.app-root--pwa-mobile .ant-card:not(.scope-card-flush):not(.scope-card-overflow)>.ant-card-body{overflow:hidden;border-radius:inherit}body,#app,.layout,.layout-wide,.layout-narrow{font-family:var(--font-family, Inter, sans-serif);color:var(--ant-color-text-base, #2e2e2e)}.ant-btn,.ant-input,.ant-input-affix-wrapper,.ant-input-number,.ant-input-number-affix-wrapper,.ant-select,.ant-select-dropdown,.ant-picker,.ant-picker-dropdown,.ant-picker-calendar,.ant-form,.ant-form-item-label>label,.ant-table,.ant-table-wrapper,.ant-table-wrapper .ant-table,.ant-modal,.ant-modal-content,.ant-modal-confirm-body,.ant-drawer,.ant-drawer-content,.ant-tabs,.ant-checkbox-wrapper,.ant-radio-wrapper,.ant-radio-button-wrapper,.ant-typography,.ant-spin,.ant-alert,.ant-card,.ant-menu,.ant-dropdown,.ant-dropdown-menu,.ant-breadcrumb,.ant-pagination,.ant-segmented,.ant-transfer,.ant-popover,.ant-popover-inner,.ant-tooltip,.ant-tooltip-inner,.ant-tag,.ant-badge,.ant-switch,.ant-collapse,.ant-list,.ant-empty,.ant-result,.ant-steps,.ant-upload,.ant-descriptions,.ant-tree,.ant-cascader,.ant-mentions,.ant-timeline,.ant-statistic,.ant-progress,.ant-skeleton,.ant-divider,.ant-space,.ant-avatar,.ant-notification,.ant-notification-notice,.ant-message,.ant-message-notice-content{font-family:var(--ant-font-family, Inter, sans-serif) !important}.mapping-form-root{font-family:var(--ant-font-family, Inter, sans-serif) !important;color:var(--ant-color-text-base, #2e2e2e)}.mapping-form-root .mapping-label,.mapping-form-root .mapping-section,.mapping-form-root .mapping-section span,.mapping-form-root .system-generated,.mapping-form-root .mapping-box,.mapping-form-root .mapping-box-oos,.mapping-form-root .mapping-box-other,.mapping-form-root .oos-link,.mapping-form-root .entity-title,.mapping-form-root .mapping-details,.mapping-form-root .mapping-details span,.mapping-form-root .system-generated i,.mapping-form-root .system-generated em,.mapping-form-root .control-line-box,.mapping-form-root .tag-cash,.mapping-form-root .tag-reverse,.mapping-form-root .tags-all,.mapping-form-root .tag-OOS,.mapping-form-root .tag-OTHER,.mapping-form-root .mapping-description-box,.mapping-form-root .mapping-period-box,.mapping-form-root .mapping-note-text,.mapping-form-root .entity-name,.mapping-form-root .entity-other-info,.mapping-form-root table,.mapping-form-root td,.mapping-form-root th{font-family:var(--ant-font-family, Inter, sans-serif) !important}.mapping-form-root strong,.mapping-form-root b{font-family:var(--ant-font-family, Inter, sans-serif) !important}.mapping-form-root .ant-popover-inner-content{font-family:var(--ant-font-family, Inter, sans-serif) !important}.mapping-form-root .ant-transfer-list-content-item,.mapping-form-root .ant-transfer-list-content-item-text,.mapping-form-root .ant-transfer-list-header-title{font-family:var(--ant-font-family, Inter, sans-serif) !important}.mapping-form-root--pwa .mapping-form-map-rates--pwa{background:var(--color-surface-raised, #ffffff);padding:16px 12px 24px;box-sizing:border-box}.mapping-form-root--pwa .map-tax-rates-wrapper .box-column{width:auto;min-width:0}.mapping-form-root--pwa .map-tax-rates-wrapper table{width:100%}.mapping-form-root--pwa .map-tax-rates-wrapper td{max-width:100%}.mapping-form-root--pwa .map-tax-rates-wrapper .mapping-tax-rate-select.ant-select{min-width:0 !important;width:100% !important}.mapping-form-root--pwa .map-tax-rates-wrapper .mapping-section-header{flex-wrap:wrap;gap:8px}.mapping-form-root--pwa .map-tax-rates-wrapper .mapping-section-title{font-size:16px;line-height:1.3}.mapping-form-root--pwa .map-tax-rates-wrapper .mapping-details-wrapper{flex-direction:column;gap:12px}.mapping-form-side-panel--pwa{position:static !important;width:100% !important;max-width:100% !important;height:auto !important;overflow:visible !important;margin-top:12px;padding:0 12px 24px;box-sizing:border-box;z-index:auto !important}.mapping-form-side-panel--pwa .control-box,.mapping-form-side-panel--pwa .control-box-small,.mapping-form-side-panel--pwa .mapping-list-box{width:100% !important;max-width:100% !important;box-sizing:border-box}.app-root--pwa-mobile .mapping-form-root--pwa{max-width:100%;overflow-x:hidden}.ant-drawer .ant-drawer-mask,.ant-modal .ant-modal-mask,.ant-drawer-mask,.ant-modal-mask{background:var(--color-bg-mask, rgba(0, 0, 0, 0.45)) !important;background-color:var(--color-bg-mask, rgba(0, 0, 0, 0.45)) !important;pointer-events:auto !important}.ant-segmented{background:var(--color-layout-bg, var(--ant-color-bg-layout, #eaf6f7)) !important;border-radius:4px !important}.ant-segmented .ant-segmented-item{border-radius:2px !important}.ant-segmented .ant-segmented-item-label{color:var(--color-segmented-item, #5a6a6a) !important}.ant-segmented .ant-segmented-item-selected:not(.ant-segmented-item-disabled){background-color:var(--color-surface-raised, #ffffff) !important;color:var(--ant-color-text-base, #2e2e2e) !important;box-shadow:0 1px 2px 0 rgba(0,0,0,.03),0 1px 6px -1px rgba(0,0,0,.02),0 2px 4px 0 rgba(0,0,0,.02) !important}.ant-segmented .ant-segmented-item-selected:not(.ant-segmented-item-disabled) .ant-segmented-item-label{color:var(--ant-color-text-base, #2e2e2e) !important}.ant-segmented .ant-segmented-thumb{background:var(--color-surface-raised, #ffffff) !important;border-radius:2px !important;box-shadow:0 1px 2px 0 rgba(0,0,0,.03),0 1px 6px -1px rgba(0,0,0,.02),0 2px 4px 0 rgba(0,0,0,.02) !important}.ant-segmented .ant-segmented-item:not(.ant-segmented-item-selected):not(.ant-segmented-item-disabled):hover .ant-segmented-item-label{color:var(--ant-color-text-base, #2e2e2e) !important}.ant-table-measure-row{pointer-events:none}.ant-btn-primary:not(:disabled):not(.ant-btn-disabled){background-color:var(--ant-color-primary, #41aaaf);border-color:var(--ant-color-primary, #41aaaf);color:var(--color-on-primary, #ffffff)}.ant-btn-primary:not(:disabled):not(.ant-btn-disabled):hover,.ant-btn-primary:not(:disabled):not(.ant-btn-disabled):focus{background-color:var(--ant-color-primary-hover, #64bbbd);border-color:var(--ant-color-primary-hover, #64bbbd);color:var(--color-on-primary, #ffffff)}html[data-theme=light] .scope-toggle-button.ant-btn:not(:hover),html[data-theme=light] .scope-toggle-button.ant-btn-primary:not(:hover),html[data-theme=light] .scope-round-add-button.ant-btn:not(:hover),html[data-theme=light] .scope-round-add-button.ant-btn-primary:not(:hover){background:#e9f6f7 !important;border-color:#dbeae3 !important;color:#042a2a !important}html[data-theme=light] .scope-toggle-button.ant-btn:not(:hover) .anticon,html[data-theme=light] .scope-toggle-button.ant-btn:not(:hover) .anticon svg,html[data-theme=light] .scope-toggle-button.ant-btn:not(:hover) span:not(.show-on-hover),html[data-theme=light] .scope-toggle-button.ant-btn-primary:not(:hover) .anticon,html[data-theme=light] .scope-toggle-button.ant-btn-primary:not(:hover) .anticon svg,html[data-theme=light] .scope-toggle-button.ant-btn-primary:not(:hover) span:not(.show-on-hover),html[data-theme=light] .scope-round-add-button.ant-btn:not(:hover) .anticon,html[data-theme=light] .scope-round-add-button.ant-btn:not(:hover) .anticon svg,html[data-theme=light] .scope-round-add-button.ant-btn:not(:hover) span:not(.show-on-hover),html[data-theme=light] .scope-round-add-button.ant-btn-primary:not(:hover) .anticon,html[data-theme=light] .scope-round-add-button.ant-btn-primary:not(:hover) .anticon svg,html[data-theme=light] .scope-round-add-button.ant-btn-primary:not(:hover) span:not(.show-on-hover){color:#042a2a !important;fill:currentColor !important}html[data-theme=light] .scope-toggle-button.ant-btn:not(:hover) .anticon svg path[fill]:not([fill=none]),html[data-theme=light] .scope-toggle-button.ant-btn-primary:not(:hover) .anticon svg path[fill]:not([fill=none]),html[data-theme=light] .scope-round-add-button.ant-btn:not(:hover) .anticon svg path[fill]:not([fill=none]),html[data-theme=light] .scope-round-add-button.ant-btn-primary:not(:hover) .anticon svg path[fill]:not([fill=none]){fill:currentColor !important}.scope-sso-login-stack{display:flex;flex-direction:column;align-items:center;gap:12px;width:100%}.scope-sso-login-button.ant-btn,.scope-sso-login-button.ant-btn-default{position:relative;overflow:visible;min-width:320px;height:48px;border-radius:50px !important;background:var(--color-sso-button-bg, #d2edef) !important;background-color:var(--color-sso-button-bg, #d2edef) !important;border-color:var(--color-sso-button-bg, #d2edef) !important;color:var(--color-text-dark, #042a2a) !important;box-shadow:none !important;font-family:Inter,sans-serif;font-size:13px;font-weight:600;line-height:1.3}.scope-sso-login-button.ant-btn .scope-sso-login-label,.scope-sso-login-button.ant-btn .scope-button-label,.scope-sso-login-button.ant-btn>span:not(.ant-btn-icon):not(.anticon),.scope-sso-login-button.ant-btn-default .scope-sso-login-label,.scope-sso-login-button.ant-btn-default .scope-button-label,.scope-sso-login-button.ant-btn-default>span:not(.ant-btn-icon):not(.anticon){font-size:inherit !important;font-weight:inherit !important;line-height:inherit !important;padding:0 !important}.scope-sso-login-button.ant-btn:hover,.scope-sso-login-button.ant-btn:focus,.scope-sso-login-button.ant-btn:active,.scope-sso-login-button.ant-btn-default:hover,.scope-sso-login-button.ant-btn-default:focus,.scope-sso-login-button.ant-btn-default:active{background:var(--color-primary-hover, #64bbbd) !important;background-color:var(--color-primary-hover, #64bbbd) !important;border-color:var(--color-primary-hover, #64bbbd) !important;color:var(--color-text-dark, #042a2a) !important;box-shadow:none !important}.scope-sso-login-button.ant-btn.scope-sso-login-button--qbo:hover,.scope-sso-login-button.ant-btn.scope-sso-login-button--qbo:focus,.scope-sso-login-button.ant-btn.scope-sso-login-button--qbo:active,.scope-sso-login-button.ant-btn-default.scope-sso-login-button--qbo:hover,.scope-sso-login-button.ant-btn-default.scope-sso-login-button--qbo:focus,.scope-sso-login-button.ant-btn-default.scope-sso-login-button--qbo:active{background:#d2edef !important;background-color:#d2edef !important;border-color:#d2edef !important}html[data-theme=dark] .ant-btn-primary:not(:disabled):not(.ant-btn-disabled):not(.scope-icon-chip),html[data-theme=dark] .ant-btn-color-primary:not(:disabled):not(.ant-btn-disabled):not(.scope-icon-chip),html[data-theme=dark] .scope-button,html[data-theme=dark] button.scope-button,html[data-theme=dark] .scope-button.ant-btn,html[data-theme=dark] .ant-btn[style*="--color-primary"]:not(.scope-icon-chip),html[data-theme=dark] .ant-btn[style*="#41aaaf"]:not(.scope-icon-chip),html[data-theme=dark] .ant-btn[style*="#62c8cd"]:not(.scope-icon-chip),html[data-theme=dark] .ant-btn[style*="#64bbbd"]:not(.scope-icon-chip),html[data-theme=dark] .ant-btn[style*="#7dd4d8"]:not(.scope-icon-chip){color:var(--color-on-primary, #052325) !important}html[data-theme=dark] .ant-btn-primary:not(:disabled):not(.ant-btn-disabled):not(.scope-icon-chip) span,html[data-theme=dark] .ant-btn-primary:not(:disabled):not(.ant-btn-disabled):not(.scope-icon-chip) .anticon,html[data-theme=dark] .ant-btn-primary:not(:disabled):not(.ant-btn-disabled):not(.scope-icon-chip) .anticon>svg,html[data-theme=dark] .ant-btn-color-primary:not(:disabled):not(.ant-btn-disabled):not(.scope-icon-chip) span,html[data-theme=dark] .ant-btn-color-primary:not(:disabled):not(.ant-btn-disabled):not(.scope-icon-chip) .anticon,html[data-theme=dark] .ant-btn-color-primary:not(:disabled):not(.ant-btn-disabled):not(.scope-icon-chip) .anticon>svg,html[data-theme=dark] .scope-button span,html[data-theme=dark] .scope-button .anticon,html[data-theme=dark] .scope-button .anticon>svg,html[data-theme=dark] button.scope-button span,html[data-theme=dark] button.scope-button .anticon,html[data-theme=dark] button.scope-button .anticon>svg,html[data-theme=dark] .scope-button.ant-btn span,html[data-theme=dark] .scope-button.ant-btn .anticon,html[data-theme=dark] .scope-button.ant-btn .anticon>svg,html[data-theme=dark] .ant-btn[style*="--color-primary"]:not(.scope-icon-chip) span,html[data-theme=dark] .ant-btn[style*="--color-primary"]:not(.scope-icon-chip) .anticon,html[data-theme=dark] .ant-btn[style*="--color-primary"]:not(.scope-icon-chip) .anticon>svg,html[data-theme=dark] .ant-btn[style*="#41aaaf"]:not(.scope-icon-chip) span,html[data-theme=dark] .ant-btn[style*="#41aaaf"]:not(.scope-icon-chip) .anticon,html[data-theme=dark] .ant-btn[style*="#41aaaf"]:not(.scope-icon-chip) .anticon>svg,html[data-theme=dark] .ant-btn[style*="#62c8cd"]:not(.scope-icon-chip) span,html[data-theme=dark] .ant-btn[style*="#62c8cd"]:not(.scope-icon-chip) .anticon,html[data-theme=dark] .ant-btn[style*="#62c8cd"]:not(.scope-icon-chip) .anticon>svg,html[data-theme=dark] .ant-btn[style*="#64bbbd"]:not(.scope-icon-chip) span,html[data-theme=dark] .ant-btn[style*="#64bbbd"]:not(.scope-icon-chip) .anticon,html[data-theme=dark] .ant-btn[style*="#64bbbd"]:not(.scope-icon-chip) .anticon>svg,html[data-theme=dark] .ant-btn[style*="#7dd4d8"]:not(.scope-icon-chip) span,html[data-theme=dark] .ant-btn[style*="#7dd4d8"]:not(.scope-icon-chip) .anticon,html[data-theme=dark] .ant-btn[style*="#7dd4d8"]:not(.scope-icon-chip) .anticon>svg{color:var(--color-on-primary, #052325) !important;fill:currentColor}html[data-theme=dark] .ant-btn-primary.ant-btn-disabled,html[data-theme=dark] .ant-btn-primary:disabled,html[data-theme=dark] .ant-btn-primary.ant-btn-disabled:hover,html[data-theme=dark] .ant-btn-primary:disabled:hover{background-color:color-mix(in srgb, var(--color-primary, #62c8cd) 16%, var(--color-surface, #132122)) !important;border-color:var(--btn-disabled-border, #355356) !important;color:var(--btn-disabled-text, #a9b8b9) !important}html[data-theme=dark] .ant-btn-primary.ant-btn-disabled span,html[data-theme=dark] .ant-btn-primary.ant-btn-disabled .anticon,html[data-theme=dark] .ant-btn-primary.ant-btn-disabled .anticon>svg,html[data-theme=dark] .ant-btn-primary:disabled span,html[data-theme=dark] .ant-btn-primary:disabled .anticon,html[data-theme=dark] .ant-btn-primary:disabled .anticon>svg,html[data-theme=dark] .ant-btn-primary.ant-btn-disabled:hover span,html[data-theme=dark] .ant-btn-primary.ant-btn-disabled:hover .anticon,html[data-theme=dark] .ant-btn-primary.ant-btn-disabled:hover .anticon>svg,html[data-theme=dark] .ant-btn-primary:disabled:hover span,html[data-theme=dark] .ant-btn-primary:disabled:hover .anticon,html[data-theme=dark] .ant-btn-primary:disabled:hover .anticon>svg{color:var(--btn-disabled-text, #a9b8b9) !important;fill:currentColor}html[data-theme=dark] .scope-icon-chip.ant-btn:not(:hover),html[data-theme=dark] .scope-icon-chip.ant-btn-primary:not(:hover),html[data-theme=dark] .scope-toggle-button.ant-btn:not(:hover),html[data-theme=dark] .scope-toggle-button.ant-btn-primary:not(:hover),html[data-theme=dark] .scope-round-add-button.ant-btn:not(:hover),html[data-theme=dark] .scope-round-add-button.ant-btn-primary:not(:hover){background:var(--color-surface-raised, #1a2b2c) !important;background-color:var(--color-surface-raised, #1a2b2c) !important;border-color:var(--color-border, #355356) !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .scope-icon-chip.ant-btn:not(:hover) span,html[data-theme=dark] .scope-icon-chip.ant-btn:not(:hover) .anticon,html[data-theme=dark] .scope-icon-chip.ant-btn:not(:hover) .anticon svg,html[data-theme=dark] .scope-icon-chip.ant-btn-primary:not(:hover) span,html[data-theme=dark] .scope-icon-chip.ant-btn-primary:not(:hover) .anticon,html[data-theme=dark] .scope-icon-chip.ant-btn-primary:not(:hover) .anticon svg,html[data-theme=dark] .scope-toggle-button.ant-btn:not(:hover) span,html[data-theme=dark] .scope-toggle-button.ant-btn:not(:hover) .anticon,html[data-theme=dark] .scope-toggle-button.ant-btn:not(:hover) .anticon svg,html[data-theme=dark] .scope-toggle-button.ant-btn-primary:not(:hover) span,html[data-theme=dark] .scope-toggle-button.ant-btn-primary:not(:hover) .anticon,html[data-theme=dark] .scope-toggle-button.ant-btn-primary:not(:hover) .anticon svg,html[data-theme=dark] .scope-round-add-button.ant-btn:not(:hover) span,html[data-theme=dark] .scope-round-add-button.ant-btn:not(:hover) .anticon,html[data-theme=dark] .scope-round-add-button.ant-btn:not(:hover) .anticon svg,html[data-theme=dark] .scope-round-add-button.ant-btn-primary:not(:hover) span,html[data-theme=dark] .scope-round-add-button.ant-btn-primary:not(:hover) .anticon,html[data-theme=dark] .scope-round-add-button.ant-btn-primary:not(:hover) .anticon svg{color:var(--color-text-base, #e3eaeb) !important;fill:currentColor !important}html[data-theme=dark] .scope-icon-chip.ant-btn:not(:hover) .anticon svg path[fill]:not([fill=none]),html[data-theme=dark] .scope-icon-chip.ant-btn-primary:not(:hover) .anticon svg path[fill]:not([fill=none]),html[data-theme=dark] .scope-toggle-button.ant-btn:not(:hover) .anticon svg path[fill]:not([fill=none]),html[data-theme=dark] .scope-toggle-button.ant-btn-primary:not(:hover) .anticon svg path[fill]:not([fill=none]),html[data-theme=dark] .scope-round-add-button.ant-btn:not(:hover) .anticon svg path[fill]:not([fill=none]),html[data-theme=dark] .scope-round-add-button.ant-btn-primary:not(:hover) .anticon svg path[fill]:not([fill=none]){fill:currentColor !important}html[data-theme=dark] .scope-toggle-button.ant-btn:hover,html[data-theme=dark] .scope-toggle-button.ant-btn-primary:hover{color:var(--color-on-primary, #052325) !important}html[data-theme=dark] .scope-toggle-button.ant-btn:hover span,html[data-theme=dark] .scope-toggle-button.ant-btn:hover .show-on-hover,html[data-theme=dark] .scope-toggle-button.ant-btn:hover .anticon,html[data-theme=dark] .scope-toggle-button.ant-btn:hover .anticon svg,html[data-theme=dark] .scope-toggle-button.ant-btn-primary:hover span,html[data-theme=dark] .scope-toggle-button.ant-btn-primary:hover .show-on-hover,html[data-theme=dark] .scope-toggle-button.ant-btn-primary:hover .anticon,html[data-theme=dark] .scope-toggle-button.ant-btn-primary:hover .anticon svg{color:var(--color-on-primary, #052325) !important;fill:currentColor !important}html[data-theme=dark] .scope-toggle-button.ant-btn:hover .anticon svg path[fill]:not([fill=none]),html[data-theme=dark] .scope-toggle-button.ant-btn-primary:hover .anticon svg path[fill]:not([fill=none]){fill:currentColor !important}html[data-theme=dark] .scope-round-add-button.ant-btn:hover,html[data-theme=dark] .scope-round-add-button.ant-btn-primary:hover{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .scope-round-add-button.ant-btn:hover span,html[data-theme=dark] .scope-round-add-button.ant-btn:hover .anticon,html[data-theme=dark] .scope-round-add-button.ant-btn:hover .anticon svg,html[data-theme=dark] .scope-round-add-button.ant-btn-primary:hover span,html[data-theme=dark] .scope-round-add-button.ant-btn-primary:hover .anticon,html[data-theme=dark] .scope-round-add-button.ant-btn-primary:hover .anticon svg{color:var(--color-text-base, #e3eaeb) !important;fill:currentColor !important}.ant-btn-link{color:var(--ant-color-link, #5e87b0)}.ant-btn-link:hover,.ant-btn-link:focus{color:var(--ant-color-link-hover, #406182);text-decoration:underline}.ant-spin,.ant-spin-dot-holder{color:var(--ant-color-primary, #41aaaf) !important}.ant-spin-dot .ant-spin-dot-item{background:var(--ant-color-primary, #41aaaf) !important}.ant-switch.ant-switch-checked{background:var(--ant-color-primary, #41aaaf)}.ant-switch.ant-switch-checked:hover:not(.ant-switch-disabled){background:var(--ant-color-primary-hover, #64bbbd)}.ant-radio-checked .ant-radio-inner{border-color:var(--ant-color-primary, #41aaaf);background-color:var(--ant-color-primary, #41aaaf)}.ant-radio-wrapper:hover .ant-radio-inner,.ant-radio:hover .ant-radio-inner{border-color:var(--ant-color-primary, #41aaaf)}.ant-radio-checked::after{border-color:var(--ant-color-primary, #41aaaf) !important}.ant-radio-button-wrapper{font-family:var(--ant-font-family, Inter, sans-serif) !important;font-size:var(--ant-font-size, 14px) !important;color:var(--ant-color-text-base, #2e2e2e);border-color:var(--ant-color-border, #cccccc) !important}.ant-radio-button-wrapper:first-child{border-start-start-radius:4px !important;border-end-start-radius:4px !important}.ant-radio-button-wrapper:last-child{border-start-end-radius:4px !important;border-end-end-radius:4px !important}.ant-radio-button-wrapper:not(:first-child)::before{background-color:var(--ant-color-border, #cccccc) !important}.ant-radio-button-wrapper:not(.ant-radio-button-wrapper-disabled):hover{color:var(--ant-color-primary, #41aaaf) !important}.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled){background:var(--ant-color-primary, #41aaaf) !important;border-color:var(--ant-color-primary, #41aaaf) !important;color:var(--color-on-primary, #052325) !important}.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover{background:var(--ant-color-primary-hover, #64bbbd) !important;border-color:var(--ant-color-primary-hover, #64bbbd) !important;color:var(--color-on-primary, #052325) !important}.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled)::before{background-color:var(--ant-color-primary, #41aaaf) !important}.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover::before{background-color:var(--ant-color-primary-hover, #64bbbd) !important}.ant-radio-group-outline .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled){background:var(--color-surface-raised, #ffffff) !important;border-color:var(--ant-color-primary, #41aaaf) !important;color:var(--ant-color-primary, #41aaaf) !important}.ant-radio-group-outline .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover{color:var(--ant-color-primary-hover, #64bbbd) !important;border-color:var(--ant-color-primary-hover, #64bbbd) !important}.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled){border-color:var(--ant-color-primary, #41aaaf) !important;color:var(--ant-color-primary, #41aaaf) !important}.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled)::before{background-color:var(--ant-color-primary, #41aaaf) !important}.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):focus-within{box-shadow:0 0 0 2px rgba(65,170,175,.1) !important}.ant-radio-button-wrapper-disabled{color:var(--color-text-disabled, #bfbfbf) !important;background-color:var(--color-surface, #f3f7f8) !important}.ant-checkbox-checked .ant-checkbox-inner,.ant-checkbox-indeterminate .ant-checkbox-inner{background-color:var(--ant-color-primary, #41aaaf);border-color:var(--ant-color-primary, #41aaaf)}.ant-checkbox-wrapper:hover .ant-checkbox-inner,.ant-checkbox:hover .ant-checkbox-inner{border-color:var(--ant-color-primary, #41aaaf)}.ant-checkbox-checked::after{border-color:var(--ant-color-primary, #41aaaf)}.ant-progress .ant-progress-bg{background-color:var(--ant-color-primary, #41aaaf)}.ant-progress-status-success .ant-progress-bg{background-color:var(--ant-color-primary, #41aaaf)}.ant-steps-item-finish>.ant-steps-item-container>.ant-steps-item-tail::after{background-color:var(--ant-color-primary, #41aaaf) !important}.ant-checkbox-wrapper{color:var(--color-text-muted, #5a6a6a);font-size:var(--font-size-small, 12px);font-weight:400}.ant-checkbox .ant-checkbox-inner{border-radius:4px !important}.ant-input-affix-wrapper:not(.scope-round-input):not(.scope-form-input),.ant-input-number,.ant-input-number-affix-wrapper,.ant-select:not(.ant-select-customize-input):not(.scope-round-autocomplete):not(.scope-form-select):not(.scope-filter-select) .ant-select-selector,.ant-picker{border:1px solid var(--ant-color-border, #cccccc) !important;border-radius:4px !important}.ant-input:not(.scope-round-input):not(.scope-form-input){border:1px solid var(--ant-color-border, #cccccc) !important;border-radius:4px !important}.ant-input-affix-wrapper .ant-input{border:none !important;border-radius:0 !important;box-shadow:none !important;background:rgba(0,0,0,0) !important}.ant-input::placeholder,.ant-input-affix-wrapper input::placeholder,.ant-select-selection-placeholder,.ant-picker-input input::placeholder,.ant-input-number-input::placeholder{color:var(--color-placeholder, #5a6a6a) !important}.ant-input:not(.scope-round-input):not(.scope-form-input):hover,.ant-input-affix-wrapper:not(.scope-round-input):not(.scope-form-input):hover,.ant-input-number:hover,.ant-select:not(.ant-select-disabled):not(.scope-round-autocomplete):not(.scope-form-select):not(.scope-filter-select):hover .ant-select-selector,.ant-picker:hover{border-color:var(--ant-color-primary, #41aaaf)}.ant-input-affix-wrapper .ant-input:hover,.ant-input-affix-wrapper .ant-input:focus{border:none !important;box-shadow:none !important}.ant-input:not(.scope-round-input):not(.scope-form-input):focus,.ant-input-focused:not(.scope-round-input):not(.scope-form-input),.ant-input-affix-wrapper-focused:not(.scope-round-input):not(.scope-form-input),.ant-input-number-focused,.ant-select-focused:not(.scope-round-autocomplete):not(.scope-form-select):not(.scope-filter-select) .ant-select-selector,.ant-picker-focused{border-color:var(--ant-color-primary, #41aaaf);box-shadow:0 0 0 2px rgba(65,170,175,.1)}.ant-picker-dropdown .ant-picker-now-btn{color:var(--ant-color-primary, #41aaaf) !important}.ant-picker-dropdown .ant-picker-now-btn:hover{color:var(--ant-color-primary-hover, #64bbbd) !important}.ant-picker-dropdown .ant-picker-cell-today .ant-picker-cell-inner::before{border-color:var(--ant-color-primary, #41aaaf) !important}.ant-picker-dropdown .ant-picker-cell-selected .ant-picker-cell-inner,.ant-picker-dropdown .ant-picker-cell-range-start .ant-picker-cell-inner,.ant-picker-dropdown .ant-picker-cell-range-end .ant-picker-cell-inner{background:var(--ant-color-primary, #41aaaf) !important}.ant-input-affix-wrapper-focused .ant-input,.ant-input-affix-wrapper:focus-within .ant-input{border:none !important;box-shadow:none !important}.scope-round-input.ant-input,.scope-round-input.ant-input-affix-wrapper,.scope-round-input.ant-input-outlined,.scope-round-input.ant-input-affix-wrapper-outlined{border:1px solid rgba(0,0,0,0) !important;border-radius:100px !important;box-shadow:none !important}.scope-round-input.ant-input>.ant-input,.scope-round-input.ant-input .ant-input,.scope-round-input.ant-input-affix-wrapper>.ant-input,.scope-round-input.ant-input-affix-wrapper .ant-input,.scope-round-input.ant-input-outlined>.ant-input,.scope-round-input.ant-input-outlined .ant-input,.scope-round-input.ant-input-affix-wrapper-outlined>.ant-input,.scope-round-input.ant-input-affix-wrapper-outlined .ant-input{border:none !important;border-radius:0 !important;box-shadow:none !important;outline:none !important;background:rgba(0,0,0,0) !important}.scope-round-input.ant-input:hover,.scope-round-input.ant-input:focus,.scope-round-input.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):hover,.scope-round-input.ant-input-affix-wrapper-focused,.scope-round-input.ant-input-affix-wrapper:focus-within{border:1px solid var(--ant-color-primary, #41aaaf) !important;box-shadow:none !important}.scope-round-input.ant-input-affix-wrapper{padding-inline-end:6px !important}.scope-round-input.ant-input-affix-wrapper .ant-input-suffix{margin-inline-start:4px}.scope-round-input.ant-input-affix-wrapper .scope-input-suffix-action.anticon{display:inline-flex !important;align-items:center;justify-content:center;width:33px;height:33px;padding:0 !important;border-radius:50%;background-color:var(--color-primary, #41aaaf) !important;color:var(--color-on-primary, #052325) !important;font-size:16px;cursor:pointer}.scope-form-input.ant-input,.scope-form-input.ant-input-affix-wrapper,.scope-form-input.ant-input-outlined,.scope-form-input.ant-input-affix-wrapper-outlined{border:1px solid var(--color-border, #dbeae3) !important;border-radius:0 !important;box-shadow:none !important;background:var(--color-surface-raised, #ffffff) !important}.scope-form-input.ant-input>.ant-input,.scope-form-input.ant-input .ant-input,.scope-form-input.ant-input-affix-wrapper>.ant-input,.scope-form-input.ant-input-affix-wrapper .ant-input,.scope-form-input.ant-input-outlined>.ant-input,.scope-form-input.ant-input-outlined .ant-input,.scope-form-input.ant-input-affix-wrapper-outlined>.ant-input,.scope-form-input.ant-input-affix-wrapper-outlined .ant-input{border:none !important;border-radius:0 !important;box-shadow:none !important;outline:none !important;background:rgba(0,0,0,0) !important}.scope-form-input.ant-input:hover,.scope-form-input.ant-input:focus,.scope-form-input.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):hover,.scope-form-input.ant-input-affix-wrapper-focused,.scope-form-input.ant-input-affix-wrapper:focus-within{border:1px solid var(--ant-color-primary, #41aaaf) !important;box-shadow:none !important}.scope-form-input.ant-input-affix-wrapper-focused .ant-input,.scope-form-input.ant-input-affix-wrapper:focus-within .ant-input{border:none !important;box-shadow:none !important}.scope-form-select.ant-select{border:1px solid var(--color-border, #dbeae3) !important;box-shadow:none !important}.scope-form-select.ant-select .ant-select-selector{border:1px solid rgba(0,0,0,0) !important;border-radius:0 !important;box-shadow:none !important}.scope-form-select.ant-select:not(.ant-select-disabled):hover,.scope-form-select.ant-select.ant-select-focused,.scope-form-select.ant-select.ant-select-open{border:1px solid var(--ant-color-primary, #41aaaf) !important;box-shadow:none !important}.scope-form-select.ant-select:not(.ant-select-disabled):hover .ant-select-selector,.scope-form-select.ant-select.ant-select-focused .ant-select-selector,.scope-form-select.ant-select.ant-select-open .ant-select-selector{border:1px solid rgba(0,0,0,0) !important;box-shadow:none !important}.scope-filter-select.ant-select{border:1px solid var(--color-border, #dbeae3) !important;border-radius:10px !important;box-shadow:0 0 10px 0 rgba(0,0,0,.05) !important}.scope-filter-select.ant-select .ant-select-selector{border:1px solid var(--ant-color-border, #cccccc) !important;border-radius:10px !important;box-shadow:none !important}.scope-filter-select.ant-select:not(.ant-select-disabled):hover .ant-select-selector,.scope-filter-select.ant-select.ant-select-focused .ant-select-selector,.scope-filter-select.ant-select.ant-select-open .ant-select-selector{border:2px solid var(--ant-color-primary, #41aaaf) !important;box-shadow:none !important}.scope-filter-select.ant-select.selected-filter .ant-select-selector{border:2px solid var(--ant-color-primary, #41aaaf) !important}.scope-filter-select.ant-select.ant-select-open{border-color:var(--ant-color-primary, #41aaaf) !important;border-width:2px !important}.scope-round-autocomplete.ant-select .ant-select-selector{border:1px solid rgba(0,0,0,0) !important;border-radius:100px !important;background-color:var(--color-surface, #f3f7f8) !important;box-shadow:none !important}.scope-round-autocomplete.ant-select:not(.ant-select-disabled):hover .ant-select-selector,.scope-round-autocomplete.ant-select.ant-select-focused .ant-select-selector,.scope-round-autocomplete.ant-select.ant-select-open .ant-select-selector{border:1px solid var(--ant-color-primary, #41aaaf) !important;box-shadow:none !important}html[data-theme=dark] .scope-round-autocomplete.ant-select .ant-select-selector{background-color:var(--color-surface-raised, #1a2b2c) !important;border-color:var(--color-border, #355356) !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .scope-round-autocomplete.ant-select .ant-select-selection-placeholder,html[data-theme=dark] .scope-round-autocomplete.ant-select .ant-select-selection-item,html[data-theme=dark] .scope-round-autocomplete.ant-select .ant-select-arrow{color:var(--color-text-muted, #a9b8b9) !important}html[data-theme=dark] .scope-round-autocomplete.ant-select:not(.ant-select-disabled):hover .ant-select-selector,html[data-theme=dark] .scope-round-autocomplete.ant-select.ant-select-focused .ant-select-selector,html[data-theme=dark] .scope-round-autocomplete.ant-select.ant-select-open .ant-select-selector{border:1px solid var(--ant-color-primary, #41aaaf) !important;box-shadow:none !important}.scope-language-select-option__flag--compact,.scope-language-select-option__flag-fallback--compact{width:20px;height:14px;object-fit:cover;border-radius:2px;display:block;flex-shrink:0}.scope-language-select-option__flag-fallback--compact{display:inline-flex;align-items:center;justify-content:center;font-size:8px;font-weight:700;background-color:var(--color-surface, #f3f7f8);color:var(--color-text-muted, #5a6a6a)}.scope-language-select-dropdown .ant-dropdown-menu{border-radius:10px !important;padding:4px !important;box-shadow:0 4px 12px rgba(0,0,0,.08) !important;min-width:200px;background:var(--color-surface-raised, #ffffff) !important}.scope-language-select-dropdown .ant-dropdown-menu-item{color:var(--color-text-base, #2e2e2e) !important;font-size:var(--ant-font-size, 14px) !important;font-weight:400 !important;padding:8px 12px !important}.scope-language-select-dropdown .ant-dropdown-menu-title-content{display:flex !important;align-items:center !important;width:100%}.scope-language-select-dropdown .ant-dropdown-menu-item:hover,.scope-language-select-dropdown .ant-dropdown-menu-item-active{background-color:var(--color-primary-soft, #e6f7f7) !important}.scope-language-select-dropdown .ant-dropdown-menu-item-selected{background-color:var(--color-primary-soft, #e6f7f7) !important;color:var(--color-text-base, #2e2e2e) !important;font-weight:600 !important}.scope-language-select-dropdown .scope-language-select-option{display:inline-flex !important;align-items:center;gap:10px;width:100%}.scope-language-select-dropdown .scope-language-select-option__flag{width:18px;height:13px;object-fit:cover;border-radius:2px;flex-shrink:0;box-shadow:0 0 0 1px rgba(0,0,0,.06)}.scope-language-select-dropdown .scope-language-select-option__flag-fallback{width:18px;height:13px;display:inline-flex;align-items:center;justify-content:center;font-size:8px;font-weight:700;background-color:var(--color-surface, #e8e8e8);color:var(--color-text-muted, #666);border-radius:2px;flex-shrink:0}.scope-language-select-dropdown .scope-language-select-option__code{min-width:22px;font-weight:600;color:var(--color-text-base, #2e2e2e) !important}.scope-language-select-dropdown .scope-language-select-option__name{color:var(--color-text-base, #2e2e2e) !important}.scope-language-select-dropdown .ant-dropdown-menu-item-selected .scope-language-select-option__code,.scope-language-select-dropdown .ant-dropdown-menu-item-selected .scope-language-select-option__name,.scope-language-select-dropdown .ant-dropdown-menu-item:hover .scope-language-select-option__code,.scope-language-select-dropdown .ant-dropdown-menu-item:hover .scope-language-select-option__name,.scope-language-select-dropdown .ant-dropdown-menu-item-active .scope-language-select-option__code,.scope-language-select-dropdown .ant-dropdown-menu-item-active .scope-language-select-option__name{color:var(--color-text-base, #2e2e2e) !important}.ant-pagination-options-size-changer.ant-select,.scope-table-page-size-select.ant-select{color:#9ca7b0 !important}.ant-pagination-options-size-changer.ant-select .ant-select-selector,.scope-table-page-size-select.ant-select .ant-select-selector{border-radius:10px !important;color:#9ca7b0 !important}.ant-pagination-options-size-changer.ant-select .ant-select-selection-item,.scope-table-page-size-select.ant-select .ant-select-selection-item{color:#9ca7b0 !important}.ant-pagination-options-size-changer.ant-select .ant-select-arrow,.scope-table-page-size-select.ant-select .ant-select-arrow{color:#9ca7b0 !important}.ant-pagination-options-size-changer.ant-select:not(.ant-select-disabled):hover .ant-select-selector,.ant-pagination-options-size-changer.ant-select.ant-select-focused .ant-select-selector,.ant-pagination-options-size-changer.ant-select.ant-select-open .ant-select-selector,.scope-table-page-size-select.ant-select:not(.ant-select-disabled):hover .ant-select-selector,.scope-table-page-size-select.ant-select.ant-select-focused .ant-select-selector,.scope-table-page-size-select.ant-select.ant-select-open .ant-select-selector{border-color:var(--ant-color-primary, #41aaaf) !important;box-shadow:0 0 0 2px rgba(65,170,175,.1) !important}.ant-pagination-options-size-changer.ant-select:not(.ant-select-disabled):hover .ant-select-selection-item,.ant-pagination-options-size-changer.ant-select.ant-select-focused .ant-select-selection-item,.ant-pagination-options-size-changer.ant-select.ant-select-open .ant-select-selection-item,.ant-pagination-options-size-changer.ant-select:not(.ant-select-disabled):hover .ant-select-arrow,.ant-pagination-options-size-changer.ant-select.ant-select-focused .ant-select-arrow,.ant-pagination-options-size-changer.ant-select.ant-select-open .ant-select-arrow,.scope-table-page-size-select.ant-select:not(.ant-select-disabled):hover .ant-select-selection-item,.scope-table-page-size-select.ant-select.ant-select-focused .ant-select-selection-item,.scope-table-page-size-select.ant-select.ant-select-open .ant-select-selection-item,.scope-table-page-size-select.ant-select:not(.ant-select-disabled):hover .ant-select-arrow,.scope-table-page-size-select.ant-select.ant-select-focused .ant-select-arrow,.scope-table-page-size-select.ant-select.ant-select-open .ant-select-arrow{color:#9ca7b0 !important}.scope-table-page-size-dropdown.ant-select-dropdown .ant-select-item,.scope-table-page-size-dropdown.ant-select-dropdown .ant-select-item-option-content{color:#9ca7b0 !important;font-size:var(--ant-font-size, 14px) !important}.scope-table-page-size-dropdown.ant-select-dropdown .ant-select-item-option-active:not(.ant-select-item-option-disabled){background-color:var(--ant-color-bg-layout, #eaf6f7) !important}.scope-table-page-size-dropdown.ant-select-dropdown .ant-select-item-option-active:not(.ant-select-item-option-disabled) .ant-select-item-option-content{color:#9ca7b0 !important}.scope-table-page-size-dropdown.ant-select-dropdown .ant-select-item-option-selected:not(.ant-select-item-option-disabled),.scope-table-page-size-dropdown.ant-select-dropdown .ant-select-item-option-selected.ant-select-item-option-active:not(.ant-select-item-option-disabled){background-color:var(--color-layout-bg, #e9f6f7) !important;color:var(--color-text-dark, #042a2a) !important;font-weight:600 !important}.scope-table-page-size-dropdown.ant-select-dropdown .ant-select-item-option-selected:not(.ant-select-item-option-disabled) .ant-select-item-option-content,.scope-table-page-size-dropdown.ant-select-dropdown .ant-select-item-option-selected.ant-select-item-option-active:not(.ant-select-item-option-disabled) .ant-select-item-option-content{color:var(--color-text-dark, #042a2a) !important;font-weight:600 !important}.scope-table-page-size-dropdown.ant-select-dropdown .ant-select-item-option-selected:not(.ant-select-item-option-disabled) .ant-select-item-option-state,.scope-table-page-size-dropdown.ant-select-dropdown .ant-select-item-option-selected.ant-select-item-option-active:not(.ant-select-item-option-disabled) .ant-select-item-option-state{color:var(--ant-color-primary, #41aaaf) !important}.ant-typography a,a.ant-typography,.ant-breadcrumb a,.ant-table a{color:var(--ant-color-link, #5e87b0)}.ant-typography a:hover,a.ant-typography:hover,.ant-breadcrumb a:hover,.ant-table a:hover{color:var(--ant-color-link-hover, #406182);text-decoration:underline}.ant-form-item-explain-error,.ant-form-item-has-error .ant-input,.ant-form-item-has-error .ant-input-affix-wrapper,.ant-form-item-has-error .ant-select-selector,.ant-form-item-has-error .ant-picker{color:var(--color-status-danger, var(--ant-color-error, #b94a48))}.ant-form-item-explain-error{font-size:13px;color:var(--color-status-danger, var(--ant-color-error, #b94a48)) !important}.ant-form-item-has-error .ant-input,.ant-form-item-has-error .ant-input-affix-wrapper,.ant-form-item-has-error .ant-select-selector,.ant-form-item-has-error .ant-picker{border-color:var(--color-status-danger, var(--ant-color-error, #b94a48))}.ant-form-item-has-error .scope-form-input.ant-input,.ant-form-item-has-error .scope-form-input.ant-input-affix-wrapper,.ant-form-item-has-error .scope-form-select.ant-select{border-color:var(--ant-color-error, #b94a48) !important}.ant-form-item-has-error .scope-form-select .ant-select-selector{border-color:rgba(0,0,0,0) !important}.ant-btn-dangerous:not(:disabled):not(.ant-btn-disabled),.ant-btn-color-dangerous:not(:disabled):not(.ant-btn-disabled){color:var(--ant-color-error, #b94a48) !important}.ant-btn-dangerous:not(:disabled):not(.ant-btn-disabled) .anticon,.ant-btn-color-dangerous:not(:disabled):not(.ant-btn-disabled) .anticon{color:var(--ant-color-error, #b94a48) !important}.ant-btn-default.ant-btn-dangerous:not(:disabled):not(.ant-btn-disabled),.ant-btn-default.ant-btn-color-dangerous:not(:disabled):not(.ant-btn-disabled){background-color:var(--btn-warning-bg, #fce7e7) !important;color:var(--btn-warning-text, #d13131) !important;border-color:var(--btn-warning-bg, #fce7e7) !important}.ant-btn-default.ant-btn-dangerous:not(:disabled):not(.ant-btn-disabled) .anticon,.ant-btn-default.ant-btn-color-dangerous:not(:disabled):not(.ant-btn-disabled) .anticon{color:var(--btn-warning-text, #d13131) !important}.ant-btn-default.ant-btn-dangerous:not(:disabled):not(.ant-btn-disabled):hover,.ant-btn-default.ant-btn-dangerous:not(:disabled):not(.ant-btn-disabled):focus,.ant-btn-default.ant-btn-color-dangerous:not(:disabled):not(.ant-btn-disabled):hover,.ant-btn-default.ant-btn-color-dangerous:not(:disabled):not(.ant-btn-disabled):focus{background-color:var(--btn-warning-text, #d13131) !important;color:var(--btn-warning-bg, #fce7e7) !important;border-color:var(--btn-warning-bg, #fce7e7) !important;box-shadow:none}.ant-btn-default.ant-btn-dangerous:not(:disabled):not(.ant-btn-disabled):hover .anticon,.ant-btn-default.ant-btn-dangerous:not(:disabled):not(.ant-btn-disabled):focus .anticon,.ant-btn-default.ant-btn-color-dangerous:not(:disabled):not(.ant-btn-disabled):hover .anticon,.ant-btn-default.ant-btn-color-dangerous:not(:disabled):not(.ant-btn-disabled):focus .anticon{color:var(--btn-warning-bg, #fce7e7) !important}.ant-dropdown-menu-item-danger,.ant-dropdown-menu-item-danger>.ant-dropdown-menu-title-content{color:var(--ant-color-error, #b94a48) !important}.ant-dropdown-menu-item-danger .anticon{color:var(--ant-color-error, #b94a48) !important}.ant-typography-danger{color:var(--ant-color-error, #b94a48) !important}.ant-row{display:flex;flex-flow:row wrap;min-width:0}.ant-col{position:relative;max-width:100%;min-height:1px}.ant-space{display:inline-flex}.ant-space-vertical{flex-direction:column}.ant-space-align-center{align-items:center}.ant-space-align-end{align-items:flex-end}.ant-badge{position:relative;display:inline-block;width:fit-content}.ant-badge .ant-badge-count{position:absolute;top:0;inset-inline-end:0;z-index:1;transform:translate(50%, -50%);transform-origin:100% 0}.ant-tabs .ant-tabs-tab{padding:12px 0 !important;margin:0 !important}.ant-tabs .ant-tabs-tab+.ant-tabs-tab{margin-inline-start:32px !important}.ant-tabs .ant-tabs-tab-btn{display:inline-flex !important;align-items:center !important;white-space:nowrap !important;font-family:var(--ant-font-family, Inter, sans-serif) !important;font-size:var(--ant-font-size, 14px) !important;font-weight:400 !important;line-height:1.5715 !important;color:var(--color-text-muted, #5a6a6a) !important;transition:color .2s}.ant-tabs .ant-tabs-tab:hover .ant-tabs-tab-btn{color:var(--color-text-dark, #042a2a) !important}.ant-tabs .ant-tabs-tab-active .ant-tabs-tab-btn{color:var(--color-text-dark, #042a2a) !important}.ant-tabs-top>.ant-tabs-nav .ant-tabs-ink-bar,.ant-tabs .ant-tabs-ink-bar,.ant-tabs .ant-tabs-ink-bar-animated,.ant-spin-container .ant-tabs .ant-tabs-ink-bar,.ant-spin-container .ant-tabs .ant-tabs-ink-bar-animated,.ant-spin-nested-loading .ant-tabs .ant-tabs-ink-bar,.ant-spin-nested-loading .ant-tabs .ant-tabs-ink-bar-animated,.ant-spin-blur .ant-tabs .ant-tabs-ink-bar,.ant-spin-blur .ant-tabs .ant-tabs-ink-bar-animated{background:var(--ant-color-primary, #41aaaf) !important;background-color:var(--ant-color-primary, #41aaaf) !important}.ant-tabs-top>.ant-tabs-nav::before,.ant-tabs .ant-tabs-nav::before,.ant-spin-container .ant-tabs-top>.ant-tabs-nav::before,.ant-spin-container .ant-tabs .ant-tabs-nav::before,.ant-spin-nested-loading .ant-tabs-top>.ant-tabs-nav::before,.ant-spin-nested-loading .ant-tabs .ant-tabs-nav::before,.ant-spin-blur .ant-tabs-top>.ant-tabs-nav::before,.ant-spin-blur .ant-tabs .ant-tabs-nav::before{border-bottom:1px solid #f0f0f0 !important}.ant-tabs-top>.ant-tabs-nav,.ant-tabs-bottom>.ant-tabs-nav{margin:0 !important}.ant-tabs-large>.ant-tabs-nav .ant-tabs-tab{padding:20px 0 !important}.ant-tabs-small>.ant-tabs-nav .ant-tabs-tab{padding:8px 0 !important}.ant-table-wrapper .ant-table-thead>tr>th,.ant-table-wrapper .ant-table-thead>tr>td,.ant-table-wrapper .ant-table-thead .ant-table-cell,.ant-table-header .ant-table-thead>tr>th,.ant-table-header .ant-table-thead .ant-table-cell{background:var(--color-surface-raised, #ffffff) !important;background-color:var(--color-surface-raised, #ffffff) !important}.ant-table-header{background:rgba(0,0,0,0) !important;background-color:rgba(0,0,0,0) !important}.ant-table-expanded-row>td,.ant-table-expanded-row:hover>td{background:var(--color-surface, #f3f7f8) !important}.ant-table-wrapper .ant-table-tbody>tr.ant-table-row-selected>td,.ant-table-wrapper .ant-table-tbody>tr.ant-table-row-selected>.ant-table-cell{background:#e1f0ee !important;background-color:#e1f0ee !important}.ant-table-wrapper .ant-table-tbody>tr.ant-table-row-selected:hover>td,.ant-table-wrapper .ant-table-tbody>tr.ant-table-row-selected>td.ant-table-cell-row-hover,.ant-table-wrapper .ant-table-tbody>tr.ant-table-row-selected>.ant-table-cell.ant-table-cell-row-hover{background:#d5e3e2 !important;background-color:#d5e3e2 !important}.ant-layout{background:var(--ant-color-bg-layout, #eaf6f7)}.side-panel .ant-menu,.side-panel .ant-menu.ant-menu-root{background:rgba(0,0,0,0) !important;border-inline-end:none !important;box-shadow:none !important}.side-panel .ant-menu .ant-menu-item::after,.side-panel .ant-menu .ant-menu-item-selected::after,.side-panel .ant-menu .ant-menu-submenu-title::after,.side-panel .ant-menu.ant-menu-root .ant-menu-item::after,.side-panel .ant-menu.ant-menu-root .ant-menu-item-selected::after,.side-panel .ant-menu.ant-menu-root .ant-menu-submenu-title::after{display:none !important;border:none !important;border-inline-end:none !important;opacity:0 !important;width:0 !important}.side-panel .ant-menu .ant-menu-item,.side-panel .ant-menu.ant-menu-root .ant-menu-item{color:var(--color-text-dark, #042a2a) !important;border-radius:8px !important}.side-panel .ant-menu .ant-menu-item-selected,.side-panel .ant-menu.ant-menu-root .ant-menu-item-selected{background-color:var(--color-surface-raised, #ffffff) !important;color:var(--color-text-dark, #042a2a) !important}.side-panel .ant-menu .ant-menu-item:hover,.side-panel .ant-menu .ant-menu-item-active,.side-panel .ant-menu.ant-menu-root .ant-menu-item:hover,.side-panel .ant-menu.ant-menu-root .ant-menu-item-active{background-color:var(--color-surface-raised, #ffffff) !important;color:var(--color-primary, #267a7e) !important}.side-panel .ant-menu .ant-menu-item-selected:hover,.side-panel .ant-menu .ant-menu-item-selected.ant-menu-item-active,.side-panel .ant-menu .ant-menu-item-selected .ant-menu-title-content,.side-panel .ant-menu.ant-menu-root .ant-menu-item-selected:hover,.side-panel .ant-menu.ant-menu-root .ant-menu-item-selected.ant-menu-item-active,.side-panel .ant-menu.ant-menu-root .ant-menu-item-selected .ant-menu-title-content{color:var(--color-text-dark, #042a2a) !important}.side-panel .ant-menu .ant-menu-item{margin:10px 0 !important;margin-block:10px 0 !important}.side-panel--wide .ant-menu .ant-menu-item{display:flex !important;flex-direction:row !important;align-items:center !important;height:34px !important;min-height:34px !important;line-height:34px !important;width:100% !important;margin-inline:0 !important}.side-panel--wide .ant-menu .ant-menu-item .ant-menu-item-icon+span,.side-panel--wide .ant-menu .ant-menu-item .ant-menu-title-content{margin-inline-start:20px !important}.side-panel--narrow .ant-menu,.side-panel--narrow .ant-menu.ant-menu-root{width:100% !important;padding-inline:0 !important}.side-panel--narrow .ant-menu .ant-menu-item-divider{width:32px !important;margin-block:16px !important;margin-inline:auto !important}.side-panel--narrow .ant-menu .ant-menu-item{display:flex !important;flex-direction:column !important;align-items:center !important;justify-content:center !important;height:auto !important;min-height:52px !important;max-height:none !important;line-height:1 !important;width:auto !important;min-width:56px !important;max-width:calc(100% - 12px) !important;margin-inline:auto !important;padding-inline:4px !important;overflow:visible !important;box-sizing:border-box !important}.side-panel--narrow .ant-menu .ant-menu-item .ant-menu-item-icon{margin-inline-end:0 !important}.side-panel--narrow .ant-menu .ant-menu-item .ant-menu-item-icon+span,.side-panel--narrow .ant-menu .ant-menu-item .ant-menu-title-content{margin-inline-start:0 !important}.side-panel--narrow .ant-menu .ant-menu-item .ant-menu-title-content{font-size:10px !important;line-height:12px !important;text-align:center !important;white-space:normal !important;max-width:100% !important;overflow:visible !important;word-break:break-word !important}html[data-theme=dark] .ant-card,html[data-theme=dark] .ant-card .ant-card-head,html[data-theme=dark] .ant-card .ant-card-body,html[data-theme=dark] .ant-list,html[data-theme=dark] .ant-list-item,html[data-theme=dark] .ant-table,html[data-theme=dark] .ant-table-container,html[data-theme=dark] .ant-table-content,html[data-theme=dark] .ant-table-cell,html[data-theme=dark] .ant-table-thead>tr>th,html[data-theme=dark] .ant-table-tbody>tr>td,html[data-theme=dark] .ant-picker-panel,html[data-theme=dark] .ant-picker-content th,html[data-theme=dark] .ant-picker-content td,html[data-theme=dark] .ant-picker-calendar,html[data-theme=dark] .ant-picker-calendar-date,html[data-theme=dark] .ant-picker-calendar-header,html[data-theme=dark] .ant-pagination-item,html[data-theme=dark] .ant-radio-button-wrapper,html[data-theme=dark] .ant-modal-content,html[data-theme=dark] .ant-modal-header,html[data-theme=dark] .ant-modal-body,html[data-theme=dark] .ant-modal-footer,html[data-theme=dark] .ant-modal-confirm-body,html[data-theme=dark] .ant-popover-inner,html[data-theme=dark] .ant-dropdown-menu,html[data-theme=dark] .ant-select-dropdown{background:var(--color-surface-raised, #1a2b2c) !important;color:var(--color-text-base, #e3eaeb) !important;border-color:var(--color-border, #355356) !important}html[data-theme=dark] .ant-dropdown-menu .ant-dropdown-menu-item,html[data-theme=dark] .ant-dropdown-menu .ant-dropdown-menu-submenu-title,html[data-theme=dark] .ant-dropdown-menu .ant-dropdown-menu-title-content,html[data-theme=dark] .ant-dropdown-menu .ant-dropdown-menu-item>a,html[data-theme=dark] .ant-dropdown-menu .ant-dropdown-menu-item>span{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .ant-dropdown-menu .ant-dropdown-menu-item .anticon,html[data-theme=dark] .ant-dropdown-menu .ant-dropdown-menu-submenu-arrow{color:var(--color-text-muted, #a9b8b9) !important}html[data-theme=dark] .ant-dropdown-menu .ant-dropdown-menu-item:hover,html[data-theme=dark] .ant-dropdown-menu .ant-dropdown-menu-item-active,html[data-theme=dark] .ant-dropdown-menu .ant-dropdown-menu-submenu-title:hover{background:#203739 !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .ant-dropdown-menu .ant-dropdown-menu-item-selected,html[data-theme=dark] .ant-dropdown-menu .ant-dropdown-menu-item-selected:hover{background:var(--color-primary-soft, #274547) !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .ant-dropdown-menu .ant-dropdown-menu-item-disabled,html[data-theme=dark] .ant-dropdown-menu .ant-dropdown-menu-item-disabled .ant-dropdown-menu-title-content,html[data-theme=dark] .ant-dropdown-menu .ant-dropdown-menu-item-disabled>span{color:var(--color-text-disabled, #6f7f80) !important}html[data-theme=dark] .scope-language-select-dropdown .ant-dropdown-menu{background:var(--color-surface-raised, #1a2b2c) !important;box-shadow:0 4px 16px rgba(0,0,0,.45) !important}html[data-theme=dark] .scope-language-select-dropdown .ant-dropdown-menu-item,html[data-theme=dark] .scope-language-select-dropdown .ant-dropdown-menu-title-content{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .scope-language-select-dropdown .ant-dropdown-menu-item:hover,html[data-theme=dark] .scope-language-select-dropdown .ant-dropdown-menu-item-active{background:#203739 !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .scope-language-select-dropdown .ant-dropdown-menu-item-selected,html[data-theme=dark] .scope-language-select-dropdown .ant-dropdown-menu-item-selected:hover,html[data-theme=dark] .scope-language-select-dropdown .ant-dropdown-menu-item-selected.ant-dropdown-menu-item-active{background:var(--color-primary-soft, #274547) !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .scope-language-select-dropdown .scope-language-select-option__code,html[data-theme=dark] .scope-language-select-dropdown .scope-language-select-option__name,html[data-theme=dark] .scope-language-select-dropdown .ant-dropdown-menu-item-selected .scope-language-select-option__code,html[data-theme=dark] .scope-language-select-dropdown .ant-dropdown-menu-item-selected .scope-language-select-option__name,html[data-theme=dark] .scope-language-select-dropdown .ant-dropdown-menu-item:hover .scope-language-select-option__code,html[data-theme=dark] .scope-language-select-dropdown .ant-dropdown-menu-item:hover .scope-language-select-option__name,html[data-theme=dark] .scope-language-select-dropdown .ant-dropdown-menu-item-active .scope-language-select-option__code,html[data-theme=dark] .scope-language-select-dropdown .ant-dropdown-menu-item-active .scope-language-select-option__name{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .ant-modal-title,html[data-theme=dark] .ant-modal-close,html[data-theme=dark] .ant-modal-close-x,html[data-theme=dark] .ant-modal-confirm-title,html[data-theme=dark] .ant-modal-confirm-content{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .ant-select-dropdown .ant-select-item,html[data-theme=dark] .ant-select-dropdown .ant-select-item-option-content{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .ant-select-dropdown .ant-select-item-option-active:not(.ant-select-item-option-disabled){background:var(--color-surface, #132122) !important}html[data-theme=dark] .ant-select-dropdown .ant-select-item-option-active:not(.ant-select-item-option-disabled) .ant-select-item-option-content{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .ant-select-dropdown .ant-select-item-option-selected:not(.ant-select-item-option-disabled){background:var(--color-surface-raised, #1a2b2c) !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .ant-select-dropdown .ant-select-item-option-selected:not(.ant-select-item-option-disabled) .ant-select-item-option-content{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .scope-form-select.ant-select .ant-select-selection-item,html[data-theme=dark] .scope-form-select.ant-select .ant-select-selection-search-input,html[data-theme=dark] .scope-form-select.ant-select .ant-select-selection-placeholder{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .scope-form-select.ant-select-multiple .ant-select-selection-item,html[data-theme=dark] .scope-form-select.ant-select-multiple .ant-select-selection-item-content{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .scope-form-select.ant-select-multiple .ant-select-selection-item{background:var(--color-surface-raised, #1a2b2c) !important;border:1px solid var(--color-border, #355356) !important}html[data-theme=dark] .scope-form-select.ant-select{border-color:var(--color-border, #355356) !important}html[data-theme=dark] .scope-form-select.ant-select .ant-select-arrow,html[data-theme=dark] .scope-form-select.ant-select .ant-select-clear{color:var(--color-primary, #62c8cd) !important}html[data-theme=dark] .label-text,html[data-theme=dark] .scope-form-label,html[data-theme=dark] .scope-form-label .label-text,html[data-theme=dark] .scope-form-label-optional{color:var(--color-text-muted, #a9b8b9) !important}html[data-theme=dark] .ant-form-item-label>label,html[data-theme=dark] .ant-form-item-label>label>div,html[data-theme=dark] .ant-form-item-label label .scope-form-label{color:var(--color-text-muted, #a9b8b9) !important}html[data-theme=dark] .ant-tooltip .ant-tooltip-inner{background-color:var(--color-surface-raised, #1a2b2c) !important;color:var(--color-text-base, #e3eaeb) !important;border:1px solid var(--color-border, #355356)}html[data-theme=dark] .ant-tooltip .ant-tooltip-arrow::before{background:var(--color-surface-raised, #1a2b2c) !important}html[data-theme=dark] .scope-billing-vat-tooltip .ant-tooltip-inner,html[data-theme=dark] .scope-billing-vat-tooltip .ant-tooltip-inner div{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .ant-input,html[data-theme=dark] .ant-input-affix-wrapper,html[data-theme=dark] .ant-input-number,html[data-theme=dark] .ant-input-number-input{background:var(--color-surface, #132122) !important;border-color:var(--color-border, #355356) !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .ant-input-affix-wrapper .ant-input{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .ant-input::placeholder,html[data-theme=dark] .ant-input-affix-wrapper input::placeholder{color:var(--color-placeholder, #8ea1a2) !important}html[data-theme=dark] .ant-input-number-input::placeholder{color:var(--color-placeholder, #8ea1a2) !important;opacity:1 !important}html[data-theme=dark] .ant-input-prefix,html[data-theme=dark] .ant-input-suffix,html[data-theme=dark] .ant-input-affix-wrapper .ant-input-prefix,html[data-theme=dark] .ant-input-affix-wrapper .ant-input-suffix,html[data-theme=dark] .ant-input-prefix .anticon:not(.scope-input-suffix-action),html[data-theme=dark] .ant-input-suffix .anticon:not(.scope-input-suffix-action){color:var(--color-text-muted, #a9b8b9) !important}html[data-theme=dark] .scope-gray-card,html[data-theme=dark] .scope-gray-card .ant-card-body{background:var(--color-surface-raised, #1a2b2c) !important;border-color:var(--color-border, #355356) !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .scope-gray-card::after{background-color:var(--color-surface-raised, #1a2b2c) !important;border-bottom-color:var(--color-border, #355356) !important;border-right-color:var(--color-border, #355356) !important}html[data-theme=dark] .scope-gray-card .ant-card-body span{color:var(--color-text-base, #e3eaeb)}html[data-theme=dark] .scope-input-suffix-action.anticon{color:var(--color-on-primary, #052325) !important}html[data-theme=dark] .scope-round-input.ant-input,html[data-theme=dark] .scope-round-input.ant-input-affix-wrapper,html[data-theme=dark] .scope-round-input.ant-input-outlined,html[data-theme=dark] .scope-round-input.ant-input-affix-wrapper-outlined{background:var(--color-surface, #132122) !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .scope-round-input.ant-input>.ant-input,html[data-theme=dark] .scope-round-input.ant-input .ant-input,html[data-theme=dark] .scope-round-input.ant-input-affix-wrapper>.ant-input,html[data-theme=dark] .scope-round-input.ant-input-affix-wrapper .ant-input,html[data-theme=dark] .scope-round-input.ant-input-outlined>.ant-input,html[data-theme=dark] .scope-round-input.ant-input-outlined .ant-input,html[data-theme=dark] .scope-round-input.ant-input-affix-wrapper-outlined>.ant-input,html[data-theme=dark] .scope-round-input.ant-input-affix-wrapper-outlined .ant-input{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .scope-round-input.ant-input .ant-input-prefix,html[data-theme=dark] .scope-round-input.ant-input .ant-input-prefix .anticon:not(.scope-input-suffix-action),html[data-theme=dark] .scope-round-input.ant-input-affix-wrapper .ant-input-prefix,html[data-theme=dark] .scope-round-input.ant-input-affix-wrapper .ant-input-prefix .anticon:not(.scope-input-suffix-action),html[data-theme=dark] .scope-round-input.ant-input-outlined .ant-input-prefix,html[data-theme=dark] .scope-round-input.ant-input-outlined .ant-input-prefix .anticon:not(.scope-input-suffix-action),html[data-theme=dark] .scope-round-input.ant-input-affix-wrapper-outlined .ant-input-prefix,html[data-theme=dark] .scope-round-input.ant-input-affix-wrapper-outlined .ant-input-prefix .anticon:not(.scope-input-suffix-action){color:var(--color-text-muted, #a9b8b9) !important}html[data-theme=dark] .scope-round-input.ant-input .ant-input-suffix .scope-input-suffix-action,html[data-theme=dark] .scope-round-input.ant-input-affix-wrapper .ant-input-suffix .scope-input-suffix-action,html[data-theme=dark] .scope-round-input.ant-input-outlined .ant-input-suffix .scope-input-suffix-action,html[data-theme=dark] .scope-round-input.ant-input-affix-wrapper-outlined .ant-input-suffix .scope-input-suffix-action{color:var(--color-on-primary, #052325) !important}html[data-theme=dark] .scope-form-input.ant-input,html[data-theme=dark] .scope-form-input.ant-input-affix-wrapper{background:var(--color-surface-raised, #1a2b2c) !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .scope-form-input.ant-input>.ant-input,html[data-theme=dark] .scope-form-input.ant-input .ant-input,html[data-theme=dark] .scope-form-input.ant-input-affix-wrapper>.ant-input,html[data-theme=dark] .scope-form-input.ant-input-affix-wrapper .ant-input{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .mapping-overview-wrapper,html[data-theme=dark] .mapping-form-root{color:var(--color-text-base, #e3eaeb) !important;background:var(--color-surface, #132122) !important}html[data-theme=dark] .mapping-overview-wrapper .ant-card,html[data-theme=dark] .mapping-overview-wrapper .ant-card-body,html[data-theme=dark] .mapping-overview-wrapper .ant-typography,html[data-theme=dark] .mapping-form-root .ant-card,html[data-theme=dark] .mapping-form-root .ant-card-body,html[data-theme=dark] .mapping-form-root .ant-typography{color:var(--color-text-base, #e3eaeb)}html[data-theme=dark] .mapping-overview-wrapper .mapping-details-box,html[data-theme=dark] .mapping-overview-wrapper .system-generated,html[data-theme=dark] .mapping-overview-wrapper .mapping-box,html[data-theme=dark] .mapping-overview-wrapper .mapping-box-oos,html[data-theme=dark] .mapping-overview-wrapper .mapping-box-other,html[data-theme=dark] .mapping-overview-wrapper .ant-transfer-list-content,html[data-theme=dark] .mapping-overview-wrapper .ant-transfer-list-body,html[data-theme=dark] .mapping-form-root .mapping-details-box,html[data-theme=dark] .mapping-form-root .system-generated,html[data-theme=dark] .mapping-form-root .mapping-box,html[data-theme=dark] .mapping-form-root .mapping-box-oos,html[data-theme=dark] .mapping-form-root .mapping-box-other,html[data-theme=dark] .mapping-form-root .ant-transfer-list-content,html[data-theme=dark] .mapping-form-root .ant-transfer-list-body{background:var(--color-surface-raised, #1a2b2c) !important;border-color:var(--color-border, #355356) !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .mapping-overview-wrapper .mapping-sections-collapse>.ant-collapse-item,html[data-theme=dark] .mapping-form-root .mapping-sections-collapse>.ant-collapse-item{background:var(--color-surface-raised, #1a2b2c) !important;border-color:var(--color-border, #355356) !important}html[data-theme=dark] .mapping-overview-wrapper .mapping-section-title,html[data-theme=dark] .mapping-overview-wrapper .mapping-label,html[data-theme=dark] .mapping-overview-wrapper .mapping-section-status,html[data-theme=dark] .mapping-form-root .mapping-section-title,html[data-theme=dark] .mapping-form-root .mapping-label,html[data-theme=dark] .mapping-form-root .mapping-section-status{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .mapping-overview-wrapper .ant-transfer-list-header,html[data-theme=dark] .mapping-form-root .ant-transfer-list-header{background:var(--color-surface, #132122) !important;border-color:var(--color-border, #355356) !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .ant-empty .ant-empty-description,html[data-theme=dark] .ant-empty-description{color:var(--color-text-muted, #a9b8b9) !important}html[data-theme=dark] .ant-empty .ant-empty-image svg,html[data-theme=dark] .ant-empty-image svg{color:var(--color-text-muted, #a9b8b9) !important;fill:currentColor !important}html[data-theme=dark] .ant-radio-group-solid .ant-radio-button-wrapper:not(.ant-radio-button-wrapper-checked):not(.ant-radio-button-wrapper-disabled){color:var(--color-text-base, #e3eaeb) !important;background:var(--color-surface, #132122) !important;border-color:var(--color-border, #355356) !important}html[data-theme=dark] .ant-card-head-title,html[data-theme=dark] .ant-typography,html[data-theme=dark] .ant-picker-calendar-header,html[data-theme=dark] .ant-picker-content th,html[data-theme=dark] .ant-picker-content td,html[data-theme=dark] .ant-picker-calendar-date-value{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .scope-filter-select.ant-select{border:1px solid var(--color-border, #355356) !important;border-radius:10px !important;background:var(--color-surface, #132122) !important;box-shadow:none !important}html[data-theme=dark] .scope-filter-select.ant-select .ant-select-selector{background:var(--color-surface, #132122) !important;border:1px solid var(--color-border, #355356) !important;border-radius:10px !important;color:var(--color-text-base, #e3eaeb) !important;box-shadow:none !important}html[data-theme=dark] .scope-filter-select.ant-select .ant-select-selection-placeholder,html[data-theme=dark] .scope-filter-select.ant-select .ant-select-selection-item,html[data-theme=dark] .scope-filter-select.ant-select .ant-select-arrow{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .scope-filter-select.ant-select .ant-select-selector::after{color:var(--color-text-base, #e3eaeb) !important;font-weight:700 !important}html[data-theme=dark] .scope-filter-select.ant-select .ant-select-selection-overflow-item .ant-select-selection-item,html[data-theme=dark] .scope-filter-select.ant-select .ant-select-selection-item{background:var(--color-surface, #132122) !important;background-color:var(--color-surface, #132122) !important;border-color:var(--color-border, #355356) !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .scope-filter-select.ant-select .ant-select-selection-overflow-item .ant-select-selection-item-content,html[data-theme=dark] .scope-filter-select.ant-select .ant-select-selection-overflow-item .ant-select-selection-item-remove,html[data-theme=dark] .scope-filter-select.ant-select .ant-select-selection-item-content,html[data-theme=dark] .scope-filter-select.ant-select .ant-select-selection-item-remove{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .scope-filter-select.ant-select .ant-select-clear,html[data-theme=dark] .scope-filter-select.ant-select .ant-select-clear .anticon{color:var(--color-text-muted, #a9b8b9) !important}html[data-theme=dark] .scope-filter-select.ant-select .ant-select-clear svg,html[data-theme=dark] .scope-filter-select.ant-select .ant-select-clear .anticon svg{color:var(--color-text-muted, #a9b8b9) !important;fill:var(--color-text-muted, #a9b8b9) !important}html[data-theme=dark] .scope-filter-select.ant-select .ant-select-clear svg path,html[data-theme=dark] .scope-filter-select.ant-select .ant-select-clear .anticon svg path{fill:var(--color-text-muted, #a9b8b9) !important}html[data-theme=dark] .scope-filter-select.ant-select.selected-filter .ant-select-selector,html[data-theme=dark] .scope-filter-select.ant-select:hover .ant-select-selector,html[data-theme=dark] .scope-filter-select.ant-select.ant-select-focused .ant-select-selector,html[data-theme=dark] .scope-filter-select.ant-select.ant-select-open .ant-select-selector{border-color:var(--ant-color-primary, #62c8cd) !important;box-shadow:none !important}html[data-theme=dark] .scope-filter-select.ant-select.ant-select-open{border-color:var(--ant-color-primary, #62c8cd) !important;border-width:2px !important}html[data-theme=dark] .ant-btn-default:not(.ant-btn-dangerous):not(.ant-btn-color-dangerous):not(.ant-btn-text):not(.ant-btn-link):not(.ant-btn-icon-only):not(.scope-sso-login-button),html[data-theme=dark] .ant-btn:not(.ant-btn-primary):not(.ant-btn-dangerous):not(.ant-btn-color-dangerous):not(.ant-btn-text):not(.ant-btn-link):not(.ant-btn-icon-only):not(.scope-sso-login-button),html[data-theme=dark] .ant-pagination-prev .ant-pagination-item-link,html[data-theme=dark] .ant-pagination-next .ant-pagination-item-link,html[data-theme=dark] .ant-pagination-jump-prev .ant-pagination-item-link,html[data-theme=dark] .ant-pagination-jump-next .ant-pagination-item-link{background:var(--color-surface, #132122) !important;border:1px solid var(--color-border, #355356) !important;border-radius:9999px !important;color:var(--color-text-base, #e3eaeb) !important;box-shadow:none !important;font-weight:600 !important}html[data-theme=dark] .ant-btn-default:not(.ant-btn-dangerous):not(.ant-btn-color-dangerous):not(.ant-btn-text):not(.ant-btn-link):not(.ant-btn-icon-only):hover,html[data-theme=dark] .ant-btn-default:not(.ant-btn-dangerous):not(.ant-btn-color-dangerous):not(.ant-btn-text):not(.ant-btn-link):not(.ant-btn-icon-only):focus,html[data-theme=dark] .ant-pagination-prev .ant-pagination-item-link:hover,html[data-theme=dark] .ant-pagination-next .ant-pagination-item-link:hover,html[data-theme=dark] .ant-pagination-jump-prev .ant-pagination-item-link:hover,html[data-theme=dark] .ant-pagination-jump-next .ant-pagination-item-link:hover{background:var(--color-surface-raised, #1a2b2c) !important;border-color:var(--ant-color-primary, #62c8cd) !important;color:var(--color-text-base, #e3eaeb) !important;box-shadow:none !important}html[data-theme=dark] .ant-btn-text:not(.scope-export-guide-btn),html[data-theme=dark] .ant-btn-link,html[data-theme=dark] .ant-btn-icon-only:not(.ant-btn-primary):not(.ant-btn-dangerous):not(.menu-size-button):not(.scope-icon-chip),html[data-theme=dark] .context-menu-items .ant-btn{background:rgba(0,0,0,0) !important;border:none !important;border-radius:0 !important;box-shadow:none !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .ant-btn-text:not(.scope-export-guide-btn):hover,html[data-theme=dark] .ant-btn-link:hover,html[data-theme=dark] .ant-btn-icon-only:not(.ant-btn-primary):not(.ant-btn-dangerous):not(.menu-size-button):not(.scope-icon-chip):hover,html[data-theme=dark] .context-menu-items .ant-btn:hover{background:rgba(0,0,0,0) !important;border:none !important;color:var(--color-primary, #62c8cd) !important}html[data-theme=dark] .ant-btn:not(.ant-btn-primary):not(.ant-btn-dangerous):not(.scope-export-guide-btn)>span,html[data-theme=dark] .ant-btn:not(.ant-btn-primary):not(.ant-btn-dangerous):not(.scope-export-guide-btn) .anticon,html[data-theme=dark] .ant-btn:not(.ant-btn-primary):not(.ant-btn-dangerous):not(.scope-export-guide-btn) svg{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .ant-btn:not(.ant-btn-primary):not(.ant-btn-dangerous):not(.scope-export-guide-btn) svg path[stroke]{stroke:currentColor !important}html[data-theme=dark] .ant-btn:not(.ant-btn-primary):not(.ant-btn-dangerous):not(.scope-export-guide-btn) svg path[fill]:not([fill=none]):not([fill=white]){fill:currentColor !important}html[data-theme=dark] .ant-btn.scope-export-guide-btn,html[data-theme=dark] .scope-export-guide-btn.ant-btn-text{background:var(--color-surface, #132122) !important;border:1px solid var(--color-border, #355356) !important;border-radius:10px !important;box-shadow:none !important;color:var(--color-text-muted, #a9b8b9) !important}html[data-theme=dark] .ant-btn.scope-export-guide-btn>span,html[data-theme=dark] .scope-export-guide-btn.ant-btn-text>span,html[data-theme=dark] .ant-btn.scope-export-guide-btn .anticon,html[data-theme=dark] .scope-export-guide-btn.ant-btn-text .anticon,html[data-theme=dark] .ant-btn.scope-export-guide-btn svg,html[data-theme=dark] .scope-export-guide-btn.ant-btn-text svg{color:var(--color-text-muted, #a9b8b9) !important}html[data-theme=dark] .ant-btn.scope-export-guide-btn:hover,html[data-theme=dark] .ant-btn.scope-export-guide-btn:focus,html[data-theme=dark] .scope-export-guide-btn.ant-btn-text:hover,html[data-theme=dark] .scope-export-guide-btn.ant-btn-text:focus{background:var(--color-surface, #132122) !important;border-color:var(--color-primary, #62c8cd) !important;color:var(--color-text-muted, #a9b8b9) !important}html[data-theme=dark] .ant-btn.scope-export-guide-btn:hover>span,html[data-theme=dark] .ant-btn.scope-export-guide-btn:focus>span,html[data-theme=dark] .scope-export-guide-btn.ant-btn-text:hover>span,html[data-theme=dark] .scope-export-guide-btn.ant-btn-text:focus>span,html[data-theme=dark] .ant-btn.scope-export-guide-btn:hover .anticon,html[data-theme=dark] .ant-btn.scope-export-guide-btn:focus .anticon,html[data-theme=dark] .scope-export-guide-btn.ant-btn-text:hover .anticon,html[data-theme=dark] .scope-export-guide-btn.ant-btn-text:focus .anticon,html[data-theme=dark] .ant-btn.scope-export-guide-btn:hover svg,html[data-theme=dark] .ant-btn.scope-export-guide-btn:focus svg,html[data-theme=dark] .scope-export-guide-btn.ant-btn-text:hover svg,html[data-theme=dark] .scope-export-guide-btn.ant-btn-text:focus svg{color:var(--color-text-muted, #a9b8b9) !important}html[data-theme=dark] .scope-table-page-size-select.ant-select,html[data-theme=dark] .ant-pagination-options-size-changer.ant-select{background:var(--color-surface, #132122) !important;border-radius:10px !important;box-shadow:none !important}html[data-theme=dark] .scope-table-page-size-select.ant-select .ant-select-selector,html[data-theme=dark] .ant-pagination-options-size-changer.ant-select .ant-select-selector{background:var(--color-surface, #132122) !important;border:1px solid var(--color-border, #355356) !important;border-radius:10px !important;color:var(--color-text-base, #e3eaeb) !important;box-shadow:none !important}html[data-theme=dark] .scope-table-page-size-select.ant-select .ant-select-selection-item,html[data-theme=dark] .scope-table-page-size-select.ant-select .ant-select-arrow,html[data-theme=dark] .ant-pagination-options-size-changer.ant-select .ant-select-selection-item,html[data-theme=dark] .ant-pagination-options-size-changer.ant-select .ant-select-arrow{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .scope-table-page-size-select.ant-select:hover .ant-select-selector,html[data-theme=dark] .scope-table-page-size-select.ant-select.ant-select-focused .ant-select-selector,html[data-theme=dark] .scope-table-page-size-select.ant-select.ant-select-open .ant-select-selector,html[data-theme=dark] .ant-pagination-options-size-changer.ant-select:hover .ant-select-selector,html[data-theme=dark] .ant-pagination-options-size-changer.ant-select.ant-select-focused .ant-select-selector,html[data-theme=dark] .ant-pagination-options-size-changer.ant-select.ant-select-open .ant-select-selector{border-color:var(--ant-color-primary, #62c8cd) !important;box-shadow:none !important}html[data-theme=dark] .ant-table-thead>tr>th,html[data-theme=dark] .ant-table-wrapper .ant-table-thead>tr>th,html[data-theme=dark] .ant-table-wrapper .ant-table-thead .ant-table-cell{background:var(--color-surface-raised, #1a2b2c) !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .ant-table-thead>tr>th *:not(.pricing-most-popular-label),html[data-theme=dark] .ant-table-wrapper .ant-table-thead>tr>th *:not(.pricing-most-popular-label),html[data-theme=dark] .ant-table-wrapper .ant-table-thead .ant-table-cell *:not(.pricing-most-popular-label),html[data-theme=dark] .ant-table-column-sorters,html[data-theme=dark] .ant-table-column-title,html[data-theme=dark] .ant-table-column-sorter,html[data-theme=dark] .ant-table-column-sorter .anticon,html[data-theme=dark] .ant-table-filter-column .ant-dropdown-trigger,html[data-theme=dark] .ant-table-filter-column .anticon{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .ant-table-thead>tr>th .pricing-most-popular-label,html[data-theme=dark] .ant-table-wrapper .ant-table-thead>tr>th .pricing-most-popular-label,html[data-theme=dark] .ant-table-wrapper .ant-table-thead .ant-table-cell .pricing-most-popular-label,html[data-theme=dark] .pricing-page .pricing-most-popular-label{color:#052325 !important}html[data-theme=dark] .pricing-page .pricing-feature-help-icon,html[data-theme=dark] .pricing-page .pricing-feature-help-icon.anticon,html[data-theme=dark] .ant-table-tbody .pricing-feature-help-icon,html[data-theme=dark] .ant-table-tbody .pricing-feature-help-icon.anticon{color:var(--color-text-muted, #a9b8b9) !important}html[data-theme=dark] .pricing-page .pricing-feature-help-icon svg,html[data-theme=dark] .ant-table-tbody .pricing-feature-help-icon svg{fill:currentColor !important}html[data-theme=dark] .ant-table-tbody>tr:hover>td,html[data-theme=dark] .ant-table-row:hover>td{background:var(--color-surface-raised, #1a2b2c) !important}html[data-theme=dark] .ant-picker-cell-in-view .ant-picker-cell-inner{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .ant-picker-cell-disabled .ant-picker-cell-inner{color:var(--color-text-disabled, #6f7f80) !important}html[data-theme=dark] .ant-picker-calendar-date-today .ant-picker-calendar-date-value{color:var(--ant-color-primary, #62c8cd) !important}html[data-theme=dark] .ant-popover.drawer-date-range-filter-popover .ant-popover-inner,html[data-theme=dark] .ant-popover.drawer-date-range-filter-popover .ant-popover-inner-content,html[data-theme=dark] .ant-popover.drawer-date-range-filter-popover .drawer-date-range-filter__inline-panel,html[data-theme=dark] .ant-popover.drawer-date-range-filter-popover .drawer-date-range-filter__inline-footer,html[data-theme=dark] .drawer-date-range-filter-popover .ant-popover-inner,html[data-theme=dark] .drawer-date-range-filter-popover .ant-popover-inner-content,html[data-theme=dark] .drawer-date-range-filter-popover .drawer-date-range-filter__inline-panel,html[data-theme=dark] .drawer-date-range-filter-popover .drawer-date-range-filter__inline-footer{background:var(--color-surface-raised, #1a2b2c) !important;border-color:var(--color-border, #355356) !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .ant-popover.drawer-date-range-filter-popover .drawer-date-range-filter__preset-option,html[data-theme=dark] .ant-popover.drawer-date-range-filter-popover .drawer-date-range-filter__period-label,html[data-theme=dark] .ant-popover.drawer-date-range-filter-popover .drawer-date-range-filter__custom-range,html[data-theme=dark] .ant-popover.drawer-date-range-filter-popover .ant-checkbox-wrapper,html[data-theme=dark] .ant-popover.drawer-date-range-filter-popover .ant-checkbox+span,html[data-theme=dark] .drawer-date-range-filter-popover .drawer-date-range-filter__preset-option,html[data-theme=dark] .drawer-date-range-filter-popover .drawer-date-range-filter__period-label,html[data-theme=dark] .drawer-date-range-filter-popover .drawer-date-range-filter__custom-range,html[data-theme=dark] .drawer-date-range-filter-popover .ant-checkbox-wrapper,html[data-theme=dark] .drawer-date-range-filter-popover .ant-checkbox+span{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .ant-popover.drawer-date-range-filter-popover .drawer-date-range-filter__preset-option,html[data-theme=dark] .drawer-date-range-filter-popover .drawer-date-range-filter__preset-option{background:var(--color-surface-raised, #1a2b2c) !important}html[data-theme=dark] .ant-popover.drawer-date-range-filter-popover .drawer-date-range-filter__preset-option:hover,html[data-theme=dark] .drawer-date-range-filter-popover .drawer-date-range-filter__preset-option:hover{background:var(--color-surface, #132122) !important}html[data-theme=dark] .ant-popover.drawer-date-range-filter-popover .drawer-date-range-filter__preset-option--selected,html[data-theme=dark] .drawer-date-range-filter-popover .drawer-date-range-filter__preset-option--selected{background:var(--color-surface-raised, #1a2b2c) !important}html[data-theme=dark] .ant-popover.drawer-date-range-filter-popover .drawer-date-range-filter__inline-range-picker.ant-picker,html[data-theme=dark] .ant-popover.drawer-date-range-filter-popover .drawer-date-range-filter__inline-range-picker .ant-picker-input>input,html[data-theme=dark] .drawer-date-range-filter-popover .drawer-date-range-filter__inline-range-picker.ant-picker,html[data-theme=dark] .drawer-date-range-filter-popover .drawer-date-range-filter__inline-range-picker .ant-picker-input>input{background:var(--color-surface, #132122) !important;border-color:var(--color-border, #355356) !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .ant-popover.drawer-date-range-filter-popover .drawer-date-range-filter__inline-range-picker .ant-picker-suffix,html[data-theme=dark] .ant-popover.drawer-date-range-filter-popover .drawer-date-range-filter__inline-range-picker .ant-picker-separator,html[data-theme=dark] .ant-popover.drawer-date-range-filter-popover .drawer-date-range-filter__inline-range-picker .ant-picker-clear,html[data-theme=dark] .drawer-date-range-filter-popover .drawer-date-range-filter__inline-range-picker .ant-picker-suffix,html[data-theme=dark] .drawer-date-range-filter-popover .drawer-date-range-filter__inline-range-picker .ant-picker-separator,html[data-theme=dark] .drawer-date-range-filter-popover .drawer-date-range-filter__inline-range-picker .ant-picker-clear{color:var(--color-text-muted, #a9b8b9) !important}html[data-theme=dark] .submitted-returns-date-filter-dropdown.ant-select-dropdown,html[data-theme=dark] .time-to-submit-date-filter-dropdown.ant-select-dropdown{background:var(--color-surface-raised, #1a2b2c) !important;border:1px solid var(--color-border, #355356) !important}html[data-theme=dark] .submitted-returns-date-filter-dropdown.ant-select-dropdown .ant-select-item,html[data-theme=dark] .submitted-returns-date-filter-dropdown.ant-select-dropdown .ant-select-item-option-content,html[data-theme=dark] .submitted-returns-date-filter-dropdown.ant-select-dropdown .dashboard-date-filter-panel,html[data-theme=dark] .submitted-returns-date-filter-dropdown.ant-select-dropdown .dashboard-date-filter-custom-range,html[data-theme=dark] .submitted-returns-date-filter-dropdown.ant-select-dropdown .dashboard-date-filter-custom-range .ant-checkbox+span,html[data-theme=dark] .time-to-submit-date-filter-dropdown.ant-select-dropdown .ant-select-item,html[data-theme=dark] .time-to-submit-date-filter-dropdown.ant-select-dropdown .ant-select-item-option-content,html[data-theme=dark] .time-to-submit-date-filter-dropdown.ant-select-dropdown .dashboard-date-filter-panel,html[data-theme=dark] .time-to-submit-date-filter-dropdown.ant-select-dropdown .dashboard-date-filter-custom-range,html[data-theme=dark] .time-to-submit-date-filter-dropdown.ant-select-dropdown .dashboard-date-filter-custom-range .ant-checkbox+span{color:var(--color-text-base, #e3eaeb) !important;background:rgba(0,0,0,0) !important}html[data-theme=dark] .submitted-returns-date-filter-dropdown.ant-select-dropdown .dashboard-date-filter-form-select.ant-select .ant-select-selector,html[data-theme=dark] .submitted-returns-date-filter-dropdown.ant-select-dropdown .dashboard-date-filter-range-picker.ant-picker,html[data-theme=dark] .time-to-submit-date-filter-dropdown.ant-select-dropdown .dashboard-date-filter-form-select.ant-select .ant-select-selector,html[data-theme=dark] .time-to-submit-date-filter-dropdown.ant-select-dropdown .dashboard-date-filter-range-picker.ant-picker{background:var(--color-surface, #132122) !important;border-color:var(--color-border, #355356) !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .submitted-returns-date-filter-dropdown.ant-select-dropdown .dashboard-date-filter-form-select.ant-select .ant-select-selection-item,html[data-theme=dark] .submitted-returns-date-filter-dropdown.ant-select-dropdown .dashboard-date-filter-form-select.ant-select .ant-select-selection-placeholder,html[data-theme=dark] .submitted-returns-date-filter-dropdown.ant-select-dropdown .dashboard-date-filter-form-select.ant-select .ant-select-arrow,html[data-theme=dark] .submitted-returns-date-filter-dropdown.ant-select-dropdown .dashboard-date-filter-range-picker .ant-picker-input>input,html[data-theme=dark] .submitted-returns-date-filter-dropdown.ant-select-dropdown .dashboard-date-filter-range-picker .ant-picker-suffix,html[data-theme=dark] .submitted-returns-date-filter-dropdown.ant-select-dropdown .dashboard-date-filter-range-picker .ant-picker-separator,html[data-theme=dark] .time-to-submit-date-filter-dropdown.ant-select-dropdown .dashboard-date-filter-form-select.ant-select .ant-select-selection-item,html[data-theme=dark] .time-to-submit-date-filter-dropdown.ant-select-dropdown .dashboard-date-filter-form-select.ant-select .ant-select-selection-placeholder,html[data-theme=dark] .time-to-submit-date-filter-dropdown.ant-select-dropdown .dashboard-date-filter-form-select.ant-select .ant-select-arrow,html[data-theme=dark] .time-to-submit-date-filter-dropdown.ant-select-dropdown .dashboard-date-filter-range-picker .ant-picker-input>input,html[data-theme=dark] .time-to-submit-date-filter-dropdown.ant-select-dropdown .dashboard-date-filter-range-picker .ant-picker-suffix,html[data-theme=dark] .time-to-submit-date-filter-dropdown.ant-select-dropdown .dashboard-date-filter-range-picker .ant-picker-separator{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .submitted-returns-date-filter-dropdown.ant-select-dropdown .ant-select-item-option-active:not(.ant-select-item-option-disabled),html[data-theme=dark] .time-to-submit-date-filter-dropdown.ant-select-dropdown .ant-select-item-option-active:not(.ant-select-item-option-disabled){background:var(--color-surface, #132122) !important}html[data-theme=dark] .submitted-returns-date-filter-dropdown.ant-select-dropdown .ant-select-item-option-selected:not(.ant-select-item-option-disabled),html[data-theme=dark] .time-to-submit-date-filter-dropdown.ant-select-dropdown .ant-select-item-option-selected:not(.ant-select-item-option-disabled){background:var(--color-surface-raised, #1a2b2c) !important}.scope-table-filter-dropdown.ant-select-dropdown{background:var(--color-surface-raised, #ffffff) !important;border:1px solid var(--color-primary, #41aaaf) !important;border-radius:12px !important;box-shadow:0 4px 16px rgba(0,0,0,.1) !important;overflow:hidden;box-sizing:border-box !important}.scope-table-filter-dropdown.ant-select-dropdown .ant-select-item-option-active:not(.ant-select-item-option-disabled){background:var(--color-primary-soft, #e6f7f7) !important}.scope-table-filter-dropdown.ant-select-dropdown .ant-input,.scope-table-filter-dropdown.ant-select-dropdown .ant-select-selection-search-input,.scope-table-filter-dropdown.ant-select-dropdown input[type=search],.scope-table-filter-dropdown.ant-select-dropdown input[type=text]{border:1px solid var(--color-border, #dbeae3) !important;border-radius:8px !important;background:var(--color-surface, #f3f7f8) !important;color:var(--color-text-base, #2e2e2e) !important}.scope-table-filter-dropdown.ant-select-dropdown .ant-input:focus,.scope-table-filter-dropdown.ant-select-dropdown .ant-input-focused,.scope-table-filter-dropdown.ant-select-dropdown .ant-select-selection-search-input:focus{border-color:var(--color-primary, #41aaaf) !important;box-shadow:none !important}.scope-table-filter-dropdown.ant-select-dropdown .scope-table-filter-number-input.ant-input-number{width:100%;height:34px;border-radius:10px;background:var(--color-surface, #f3f7f8) !important;border-color:var(--color-border, #dbeae3) !important}.scope-table-filter-dropdown.ant-select-dropdown .scope-table-filter-number-input .ant-input-number-input{height:32px;color:var(--color-text-base, #2e2e2e) !important}.scope-table-filter-dropdown.ant-select-dropdown .scope-table-filter-number-input .ant-input-number-input::placeholder{color:var(--color-placeholder, #5a6a6a) !important;opacity:1 !important}html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown{background:var(--color-surface-raised, #1a2b2c) !important;border:1px solid var(--color-primary, #62c8cd) !important;box-shadow:0 4px 20px rgba(0,0,0,.35) !important;box-sizing:border-box !important}html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-input,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-select-selection-search-input,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown input[type=search],html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown input[type=text]{border:1px solid var(--color-border, #355356) !important;background:var(--color-surface, #132122) !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-input:focus,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-input-focused,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-select-selection-search-input:focus{border-color:var(--color-primary, #62c8cd) !important}html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-select-item,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-select-item-option-content,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-space,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-space-item,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-checkbox+span{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-btn-default,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-btn-default span{color:var(--color-text-base, #e3eaeb) !important;background:var(--color-surface, #132122) !important;border-color:var(--color-border, #355356) !important}html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-btn-primary span{color:var(--color-on-primary, #052325) !important}html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-select-selection-item,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-tag{color:var(--color-text-base, #e3eaeb) !important;background:var(--color-surface, #132122) !important;border-color:var(--color-border, #355356) !important}html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-select-item-option-active:not(.ant-select-item-option-disabled){background:var(--color-surface, #132122) !important}html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-select-item-option-selected:not(.ant-select-item-option-disabled){background:var(--color-surface-raised, #1a2b2c) !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-divider{border-color:var(--color-border, #355356) !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-divider-inner-text{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .scope-attachments-section-title,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .scope-attachments-row,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .scope-attachments-heading,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .scope-attachments-divider.ant-divider,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .scope-attachments-divider .ant-divider-inner-text{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .scope-attachments-heading::before,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .scope-attachments-heading::after{background:var(--color-border, #355356) !important}html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .scope-attachments-divider.ant-divider::before,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .scope-attachments-divider.ant-divider::after{border-color:var(--color-border, #355356) !important}html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .edit-friendly-name-form .ant-tabs-tab-btn{color:var(--color-text-muted, #a9b8b9) !important}html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .edit-friendly-name-form .ant-tabs-tab:hover .ant-tabs-tab-btn,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .edit-friendly-name-form .ant-tabs-tab-active .ant-tabs-tab-btn{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-collapse,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-collapse-content,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-collapse-content-box{background:var(--color-surface-base, #091213) !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-collapse-header,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-collapse-header-text,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-collapse-expand-icon,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-collapse-expand-icon .anticon{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-collapse-item{border-color:var(--color-border, #355356) !important}html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-input-number,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-input-number-input,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-input-number-group-addon,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .scope-form-select.ant-select .ant-select-selector,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-picker{background:var(--color-surface, #132122) !important;border-color:var(--color-border, #355356) !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .scope-table-filter-number-input.ant-input-number,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .scope-table-filter-number-input .ant-input-number-input{background:var(--color-surface, #132122) !important;border-color:var(--color-border, #355356) !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .scope-table-filter-number-input .ant-input-number-input::placeholder{color:var(--color-placeholder, #8ea1a2) !important;opacity:1 !important}html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-input-number-group-addon{background:var(--color-surface-raised, #1a2b2c) !important}html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-input-number-group-addon .anticon{color:var(--color-primary, #62c8cd) !important}html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .scope-form-select.ant-select .ant-select-selection-item,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .scope-form-select.ant-select .ant-select-selection-placeholder,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .scope-form-select.ant-select .ant-select-arrow,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-picker-input>input,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-picker-suffix,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-picker-suffix .anticon,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-picker-clear,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-picker-clear .anticon,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-picker-range-separator,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-picker-range-separator .ant-picker-separator,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-picker-separator,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-picker-separator .anticon,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-picker-separator .anticon-swap-right{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .scope-form-select.ant-select-multiple .ant-select-selection-item,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .scope-form-select.ant-select-multiple .ant-select-selection-item-content{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .scope-form-select.ant-select-multiple .ant-select-selection-item{background:var(--color-surface-raised, #1a2b2c) !important;border:1px solid var(--color-border, #355356) !important}html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-picker-suffix svg,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-picker-clear svg,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-picker-separator svg,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-picker-separator .anticon svg{fill:currentColor !important}html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-picker-separator svg path[stroke],html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-picker-separator .anticon svg path[stroke]{stroke:currentColor !important}html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-picker-separator svg path[fill]:not([fill=none]),html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-picker-separator .anticon svg path,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-picker-separator .anticon svg path[fill]:not([fill=none]){fill:currentColor !important}html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-picker-dropdown,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-picker-panel-container,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-picker-panel,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-picker-date-panel,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-picker-content,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-picker-header{background:var(--color-surface-raised, #1a2b2c) !important;color:var(--color-text-base, #e3eaeb) !important;border-color:var(--color-border, #355356) !important}html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-picker-header button,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-picker-header-view,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-picker-cell,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-picker-cell-in-view{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-picker-cell-disabled::before{background:var(--color-surface, #132122) !important}html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-picker-cell-disabled .ant-picker-cell-inner{color:var(--color-text-disabled, #6f7f80) !important}html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-picker-cell-in-view.ant-picker-cell-in-range::before{background:color-mix(in srgb, var(--color-primary, #62c8cd) 22%, transparent) !important}html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-picker-cell-in-view.ant-picker-cell-range-start .ant-picker-cell-inner,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-picker-cell-in-view.ant-picker-cell-range-end .ant-picker-cell-inner,html[data-theme=dark] .scope-table-filter-dropdown.ant-select-dropdown .ant-picker-cell-in-view.ant-picker-cell-selected .ant-picker-cell-inner{background:var(--color-primary, #62c8cd) !important;color:var(--color-on-primary, #052325) !important}html[data-theme=dark] .scope-table-page-size-dropdown.ant-select-dropdown{background:var(--color-surface-raised, #1a2b2c) !important;border:1px solid var(--color-border, #355356) !important}html[data-theme=dark] .scope-table-page-size-dropdown.ant-select-dropdown .ant-select-item,html[data-theme=dark] .scope-table-page-size-dropdown.ant-select-dropdown .ant-select-item-option-content{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .scope-table-page-size-dropdown.ant-select-dropdown .ant-select-item-option-active:not(.ant-select-item-option-disabled){background:var(--color-surface, #132122) !important}html[data-theme=dark] .scope-table-page-size-dropdown.ant-select-dropdown .ant-select-item-option-selected:not(.ant-select-item-option-disabled){background:var(--color-surface-raised, #1a2b2c) !important;color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .ant-picker-dropdown .ant-picker-panel-container,html[data-theme=dark] .ant-picker-dropdown .ant-picker-panel-layout,html[data-theme=dark] .ant-picker-dropdown .ant-picker-panel,html[data-theme=dark] .ant-picker-dropdown .ant-picker-date-panel,html[data-theme=dark] .ant-picker-dropdown .ant-picker-content,html[data-theme=dark] .ant-picker-dropdown .ant-picker-header{background:var(--color-surface-raised, #1a2b2c) !important;color:var(--color-text-base, #e3eaeb) !important;border-color:var(--color-border, #355356) !important}html[data-theme=dark] .ant-picker-dropdown .ant-picker-header button,html[data-theme=dark] .ant-picker-dropdown .ant-picker-header-view,html[data-theme=dark] .ant-picker-dropdown .ant-picker-super-prev-icon,html[data-theme=dark] .ant-picker-dropdown .ant-picker-prev-icon,html[data-theme=dark] .ant-picker-dropdown .ant-picker-next-icon,html[data-theme=dark] .ant-picker-dropdown .ant-picker-super-next-icon,html[data-theme=dark] .ant-picker-dropdown .ant-picker-content th,html[data-theme=dark] .ant-picker-dropdown .ant-picker-cell,html[data-theme=dark] .ant-picker-dropdown .ant-picker-cell-in-view{color:var(--color-text-base, #e3eaeb) !important}html[data-theme=dark] .ant-picker-dropdown .ant-picker-cell-disabled::before{background:var(--color-surface, #132122) !important}html[data-theme=dark] .ant-picker-dropdown .ant-picker-cell-disabled .ant-picker-cell-inner{color:var(--color-text-disabled, #6f7f80) !important}html[data-theme=dark] .ant-picker-dropdown .ant-picker-cell-in-view.ant-picker-cell-in-range:not(.ant-picker-cell-disabled)::before,html[data-theme=dark] .ant-picker-dropdown .ant-picker-cell-in-view.ant-picker-cell-range-start:not(.ant-picker-cell-disabled)::before,html[data-theme=dark] .ant-picker-dropdown .ant-picker-cell-in-view.ant-picker-cell-range-end:not(.ant-picker-cell-disabled)::before,html[data-theme=dark] .ant-picker-dropdown .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:not(.ant-picker-cell-disabled)::after,html[data-theme=dark] .ant-picker-dropdown .ant-picker-cell-in-view.ant-picker-cell-range-hover-end:not(.ant-picker-cell-disabled)::after{background:color-mix(in srgb, var(--color-primary, #62c8cd) 22%, transparent) !important}html[data-theme=dark] .ant-picker-dropdown .ant-picker-cell::before,html[data-theme=dark] .ant-picker-dropdown .ant-picker-cell::after{border-color:rgba(0,0,0,0) !important}html[data-theme=dark] .ant-picker-dropdown .ant-picker-cell-in-view.ant-picker-cell-range-start:not(.ant-picker-cell-disabled) .ant-picker-cell-inner,html[data-theme=dark] .ant-picker-dropdown .ant-picker-cell-in-view.ant-picker-cell-range-end:not(.ant-picker-cell-disabled) .ant-picker-cell-inner,html[data-theme=dark] .ant-picker-dropdown .ant-picker-cell-in-view.ant-picker-cell-selected:not(.ant-picker-cell-disabled) .ant-picker-cell-inner{background:var(--color-primary, #62c8cd) !important;color:var(--color-on-primary, #052325) !important}html[data-theme=dark] .ant-picker-range-separator,html[data-theme=dark] .ant-picker-range-separator .ant-picker-separator,html[data-theme=dark] .ant-picker.ant-picker-range .ant-picker-range-separator,html[data-theme=dark] .ant-picker.ant-picker-range .ant-picker-separator{color:var(--color-text-muted, #a9b8b9) !important}html[data-theme=dark] .ant-picker-range-separator .anticon,html[data-theme=dark] .ant-picker-range-separator .anticon-swap-right,html[data-theme=dark] .ant-picker .ant-picker-separator .anticon,html[data-theme=dark] .ant-picker .ant-picker-separator .anticon-swap-right{color:var(--color-text-muted, #a9b8b9) !important}html[data-theme=dark] .ant-picker-range-separator .anticon svg,html[data-theme=dark] .ant-picker .ant-picker-separator .anticon svg{color:var(--color-text-muted, #a9b8b9) !important;fill:var(--color-text-muted, #a9b8b9) !important}html[data-theme=dark] .ant-picker-range-separator .anticon svg path,html[data-theme=dark] .ant-picker .ant-picker-separator .anticon svg path{fill:var(--color-text-muted, #a9b8b9) !important}html[data-theme=dark] .ant-select-clear,html[data-theme=dark] .ant-select-clear .anticon,html[data-theme=dark] .ant-picker-clear,html[data-theme=dark] .ant-picker-clear .anticon{color:var(--color-text-muted, #a9b8b9) !important}html[data-theme=dark] .ant-select-clear svg,html[data-theme=dark] .ant-select-clear .anticon svg,html[data-theme=dark] .ant-picker-clear svg,html[data-theme=dark] .ant-picker-clear .anticon svg{color:var(--color-text-muted, #a9b8b9) !important;fill:var(--color-text-muted, #a9b8b9) !important}html[data-theme=dark] .ant-select-clear svg path,html[data-theme=dark] .ant-select-clear .anticon svg path,html[data-theme=dark] .ant-picker-clear svg path,html[data-theme=dark] .ant-picker-clear .anticon svg path{fill:var(--color-text-muted, #a9b8b9) !important}@media(max-width: 900px){.transactions-file-panel{position:fixed !important;inset-inline:0 !important;left:0 !important;right:0 !important;top:auto !important;bottom:calc(56px + env(safe-area-inset-bottom, 0px)) !important;width:100% !important;max-width:100% !important;height:min(60vh,520px) !important;max-height:min(60vh,520px) !important;z-index:25 !important;border-radius:16px 16px 0 0;border-top:1px solid var(--color-border, #dbeae3);box-shadow:0 -8px 32px rgba(0,0,0,.25);flex-direction:column !important;overflow:hidden !important;overflow-y:auto !important}.transactions-file-panel>[role=separator]{display:none !important}.transactions-file-panel>div:last-child{width:100% !important;height:100% !important;overflow-y:auto !important;-webkit-overflow-scrolling:touch}.transactions-file-panel .transactions-file-card-hover-actions{display:inline-flex !important}.transactions-file-panel .transactions-file-card-body{padding-right:72px !important}.transactions-file-panel .transactions-file-card-wrap--has-rescan .transactions-file-card-body{padding-right:148px !important}.transactions-file-panel .transactions-file-card-hover-action{min-height:32px;padding:4px 10px;font-size:12px}.transactions-file-panel .transactions-file-card-body>span[style*="white-space: nowrap"]{white-space:normal !important;text-overflow:clip !important;overflow:visible !important;word-break:break-word !important}}

/*# sourceMappingURL=bundle.cf2f0b994722788ac712.css.map*/