asma-ui-table 1.0.134 → 1.0.135
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/asma-ui-table.es.js +19 -16
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/asma-ui-table.es.js
CHANGED
|
@@ -8033,21 +8033,20 @@ const useStyledTable = (props) => {
|
|
|
8033
8033
|
usePersistColumnOrder(table, persistColumnOrderKey);
|
|
8034
8034
|
return { table };
|
|
8035
8035
|
};
|
|
8036
|
-
const CheckboxWrapper = "
|
|
8037
|
-
const Checkbox = "
|
|
8038
|
-
const Indeterminate = "
|
|
8039
|
-
const ReadOnly = "
|
|
8040
|
-
const Indicator = "
|
|
8041
|
-
const HideWrapper = "
|
|
8042
|
-
const CheckboxHover = "
|
|
8043
|
-
const CheckboxRippleContainer = "
|
|
8044
|
-
const CheckboxRipple = "
|
|
8045
|
-
const ripple = "
|
|
8046
|
-
const IndeterminateMark = "_IndeterminateMark_1vrmq_168";
|
|
8036
|
+
const CheckboxWrapper = "_CheckboxWrapper_1b4zf_1";
|
|
8037
|
+
const Checkbox = "_Checkbox_1b4zf_1";
|
|
8038
|
+
const Indeterminate = "_Indeterminate_1b4zf_28";
|
|
8039
|
+
const ReadOnly = "_ReadOnly_1b4zf_55";
|
|
8040
|
+
const Indicator = "_Indicator_1b4zf_64";
|
|
8041
|
+
const HideWrapper = "_HideWrapper_1b4zf_68";
|
|
8042
|
+
const CheckboxHover = "_CheckboxHover_1b4zf_75";
|
|
8043
|
+
const CheckboxRippleContainer = "_CheckboxRippleContainer_1b4zf_75";
|
|
8044
|
+
const CheckboxRipple = "_CheckboxRipple_1b4zf_75";
|
|
8045
|
+
const ripple = "_ripple_1b4zf_1";
|
|
8047
8046
|
const styles$3 = {
|
|
8048
8047
|
CheckboxWrapper,
|
|
8049
|
-
"size-small": "_size-
|
|
8050
|
-
"size-medium": "_size-
|
|
8048
|
+
"size-small": "_size-small_1b4zf_11",
|
|
8049
|
+
"size-medium": "_size-medium_1b4zf_15",
|
|
8051
8050
|
Checkbox,
|
|
8052
8051
|
Indeterminate,
|
|
8053
8052
|
ReadOnly,
|
|
@@ -8056,8 +8055,7 @@ const styles$3 = {
|
|
|
8056
8055
|
CheckboxHover,
|
|
8057
8056
|
CheckboxRippleContainer,
|
|
8058
8057
|
CheckboxRipple,
|
|
8059
|
-
ripple
|
|
8060
|
-
IndeterminateMark
|
|
8058
|
+
ripple
|
|
8061
8059
|
};
|
|
8062
8060
|
function NOOP() {
|
|
8063
8061
|
}
|
|
@@ -9572,6 +9570,10 @@ const CheckboxIndicator = /* @__PURE__ */ React.forwardRef(function CheckboxIndi
|
|
|
9572
9570
|
});
|
|
9573
9571
|
if (process.env.NODE_ENV !== "production")
|
|
9574
9572
|
CheckboxIndicator.displayName = "CheckboxIndicator";
|
|
9573
|
+
const IndeterminateIcon = (props) => /* @__PURE__ */ jsxRuntimeExports.jsxs("svg", { viewBox: "0 0 24 24", width: "100%", height: "100%", fill: "none", ...props, children: [
|
|
9574
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx("title", { children: "Indeterminate icon" }),
|
|
9575
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M6 12H18", stroke: "currentColor", strokeWidth: props.strokeWidth ?? 3, strokeLinecap: "round" })
|
|
9576
|
+
] });
|
|
9575
9577
|
const CheckIcon$1 = (props) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
9576
9578
|
"svg",
|
|
9577
9579
|
{
|
|
@@ -9620,6 +9622,7 @@ const StyledCheckbox = ({
|
|
|
9620
9622
|
styles$3[`size-${size}`],
|
|
9621
9623
|
indeterminate && styles$3["Indeterminate"]
|
|
9622
9624
|
);
|
|
9625
|
+
const CheckboxIcon = indeterminate ? IndeterminateIcon : CheckIcon$1;
|
|
9623
9626
|
const rippleRef = React__default.useRef(null);
|
|
9624
9627
|
const handlePointerDown = React__default.useCallback(
|
|
9625
9628
|
(e) => {
|
|
@@ -9665,7 +9668,7 @@ const StyledCheckbox = ({
|
|
|
9665
9668
|
...props,
|
|
9666
9669
|
children: [
|
|
9667
9670
|
!isHideWrapper && isRippleEnabled && /* @__PURE__ */ jsxRuntimeExports.jsx("span", { ref: rippleRef, className: styles$3["CheckboxRippleContainer"] }),
|
|
9668
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx("span", { className: checkboxClasses, children: /* @__PURE__ */ jsxRuntimeExports.jsx(CheckboxIndicator, { className: styles$3["Indicator"], children:
|
|
9671
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx("span", { className: checkboxClasses, children: /* @__PURE__ */ jsxRuntimeExports.jsx(CheckboxIndicator, { className: styles$3["Indicator"], children: /* @__PURE__ */ jsxRuntimeExports.jsx(CheckboxIcon, { strokeWidth: size === "small" ? 3 : 2 }) }) })
|
|
9669
9672
|
]
|
|
9670
9673
|
}
|
|
9671
9674
|
);
|
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
._CheckboxWrapper_1vrmq_1{display:flex;align-items:center;justify-content:center;position:relative;box-sizing:border-box;cursor:pointer;background:transparent;border:none}._CheckboxWrapper_1vrmq_1._size-small_1vrmq_11{width:38px;height:38px}._CheckboxWrapper_1vrmq_1._size-medium_1vrmq_15{width:42px;height:42px}._CheckboxWrapper_1vrmq_1[data-disabled]{cursor:default;pointer-events:none}._CheckboxWrapper_1vrmq_1:is([data-checked],[data-indeterminate]) ._Checkbox_1vrmq_1{background-color:var(--colors-gama-500);border:none;--cb-border-w: 0px}._CheckboxWrapper_1vrmq_1._Indeterminate_1vrmq_28 ._Checkbox_1vrmq_1{background-color:var(--colors-gama-500);border:none;--cb-border-w: 0px}._CheckboxWrapper_1vrmq_1[data-unchecked] ._Checkbox_1vrmq_1{background-color:transparent;border:var(--cb-border-w) solid var(--colors-delta-500)}._CheckboxWrapper_1vrmq_1[data-disabled][data-unchecked] ._Checkbox_1vrmq_1{background-color:transparent;border:var(--cb-border-w) solid var(--colors-delta-200)}._CheckboxWrapper_1vrmq_1[data-disabled]:is([data-checked],[data-indeterminate]) ._Checkbox_1vrmq_1{background-color:var(--colors-delta-200);border:none;--cb-border-w: 0px}._CheckboxWrapper_1vrmq_1[data-disabled]._Indeterminate_1vrmq_28 ._Checkbox_1vrmq_1{background-color:var(--colors-delta-200);border:none;--cb-border-w: 0px}._CheckboxWrapper_1vrmq_1:focus-visible{outline:none}._CheckboxWrapper_1vrmq_1._ReadOnly_1vrmq_55{pointer-events:none;cursor:default}._CheckboxWrapper_1vrmq_1._ReadOnly_1vrmq_55 ._Checkbox_1vrmq_1{background-color:#fff;border:var(--cb-border-w) solid var(--colors-delta-500);--cb-border-w: 2px}._CheckboxWrapper_1vrmq_1._ReadOnly_1vrmq_55 ._Checkbox_1vrmq_1 ._Indicator_1vrmq_64{color:var(--colors-delta-500)}._HideWrapper_1vrmq_68{width:auto;height:auto;padding:0;overflow:visible}._CheckboxHover_1vrmq_75:after,._CheckboxRippleContainer_1vrmq_75{position:absolute;left:0;top:0;width:100%;height:100%;z-index:0}._CheckboxRippleContainer_1vrmq_75{overflow:hidden;border-radius:50%}._CheckboxRipple_1vrmq_75{position:absolute;width:100%;height:100%;background-color:var(--colors-gama-500);border-radius:50%;left:50%;top:50%;transform:translate(-50%,-50%) scale(0);opacity:.25;animation:_ripple_1vrmq_1 .4s ease-out forwards;z-index:0}@keyframes _ripple_1vrmq_1{to{transform:translate(-50%,-50%) scale(1);opacity:.025}}._CheckboxHover_1vrmq_75:after{content:"";width:42px;height:42px;background:var(--colors-gama-300);border-radius:50%;top:50%;left:50%;opacity:0;transition:opacity .2s,transform .2s;transform:translate(-50%,-50%) scale(.7)}._CheckboxHover_1vrmq_75:hover:after{opacity:.07;transform:translate(-50%,-50%) scale(1)}._CheckboxHover_1vrmq_75._size-small_1vrmq_11:after{width:38px;height:38px}._Checkbox_1vrmq_1{position:relative;overflow:visible;padding:0;box-sizing:border-box;--cb-border-w: 2px;--cb-indicator-color: #fff;border-radius:2px;width:18px;height:18px}._Checkbox_1vrmq_1._size-small_1vrmq_11{border-radius:2px;width:15px;height:15px}._CheckboxWrapper_1vrmq_1:focus-visible ._Checkbox_1vrmq_1:before{content:"";position:absolute;inset:calc(-2px - var(--cb-border-w));border-radius:4px;outline:2px solid var(--colors-gama-400);outline-offset:0;pointer-events:none}._Indicator_1vrmq_64{display:flex;align-items:center;justify-content:center;width:100%;height:100%;color:#fff;z-index:1;position:relative;pointer-events:none}._IndeterminateMark_1vrmq_168{display:block;width:62%;height:2.5px;border-radius:999px;background-color:currentColor}._CheckboxWrapper_1vrmq_1._ReadOnly_1vrmq_55 ._Checkbox_1vrmq_1{--cb-indicator-color: var(--colors-delta-500)}._asma-core-ui-button_gteum_1{border-color:transparent;border-width:1px;border-style:solid}._asma-core-ui-button_gteum_1._contained_gteum_27._common_gteum_27{cursor:pointer;border-radius:4px;border-width:1px;border-style:solid;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:600;transition:all .3s ease-in-out;color:var(--colors-button-contained-common-text-color)!important;background-color:var(--colors-button-contained-common-bg-color)!important;border-color:var(--colors-button-contained-common-border-color)!important}._asma-core-ui-button_gteum_1._contained_gteum_27._common_gteum_27:active{color:var(--colors-button-contained-common-active-text-color)!important;background-color:var(--colors-button-contained-common-active-bg-color)!important;border-color:var(--colors-button-contained-common-active-border-color)!important;outline:none!important}._asma-core-ui-button_gteum_1._contained_gteum_27._common_gteum_27:hover{color:var(--colors-button-contained-common-hover-text-color)!important;background-color:var(--colors-button-contained-common-hover-bg-color)!important;border-color:var(--colors-button-contained-common-hover-border-color)!important}._asma-core-ui-button_gteum_1._contained_gteum_27._common_gteum_27:focus{outline-offset:-2px!important;color:var(--colors-button-contained-common-focused-text-color)!important;background-color:var(--colors-button-contained-common-focused-bg-color)!important;outline:2px solid var(--colors-button-contained-common-focused-border-color)!important;transition:none!important}._asma-core-ui-button_gteum_1._contained_gteum_27._common_gteum_27:focus._asma-core-ui-button_gteum_1._contained_gteum_27{box-shadow:inset 0 0 0 2px #fff}._asma-core-ui-button_gteum_1._contained_gteum_27._common_gteum_27:disabled{cursor:not-allowed;color:var(--colors-button-contained-common-disabled-text-color)!important;background-color:var(--colors-button-contained-common-disabled-bg-color)!important;border-color:var(--colors-button-contained-common-disabled-border-color)!important}._asma-core-ui-button_gteum_1._contained_gteum_27._error_gteum_84{cursor:pointer;border-radius:4px;border-width:1px;border-style:solid;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:600;transition:all .3s ease-in-out;color:var(--colors-button-contained-error-text-color)!important;background-color:var(--colors-button-contained-error-bg-color)!important;border-color:var(--colors-button-contained-error-border-color)!important}._asma-core-ui-button_gteum_1._contained_gteum_27._error_gteum_84:active{color:var(--colors-button-contained-error-active-text-color)!important;background-color:var(--colors-button-contained-error-active-bg-color)!important;border-color:var(--colors-button-contained-error-active-border-color)!important;outline:none!important}._asma-core-ui-button_gteum_1._contained_gteum_27._error_gteum_84:hover{color:var(--colors-button-contained-error-hover-text-color)!important;background-color:var(--colors-button-contained-error-hover-bg-color)!important;border-color:var(--colors-button-contained-error-hover-border-color)!important}._asma-core-ui-button_gteum_1._contained_gteum_27._error_gteum_84:focus{outline-offset:-2px!important;color:var(--colors-button-contained-error-focused-text-color)!important;background-color:var(--colors-button-contained-error-focused-bg-color)!important;outline:2px solid var(--colors-button-contained-error-focused-border-color)!important;transition:none!important}._asma-core-ui-button_gteum_1._contained_gteum_27._error_gteum_84:focus._asma-core-ui-button_gteum_1._contained_gteum_27{box-shadow:inset 0 0 0 2px #fff}._asma-core-ui-button_gteum_1._contained_gteum_27._error_gteum_84:disabled{cursor:not-allowed;color:var(--colors-button-contained-error-disabled-text-color)!important;background-color:var(--colors-button-contained-error-disabled-bg-color)!important;border-color:var(--colors-button-contained-error-disabled-border-color)!important}._asma-core-ui-button_gteum_1._outlined_gteum_141._common_gteum_27{cursor:pointer;border-radius:4px;border-width:1px;border-style:solid;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:600;transition:all .3s ease-in-out;color:var(--colors-button-outlined-common-text-color)!important;background-color:var(--colors-button-outlined-common-bg-color)!important;border-color:var(--colors-button-outlined-common-border-color)!important}._asma-core-ui-button_gteum_1._outlined_gteum_141._common_gteum_27:active{color:var(--colors-button-outlined-common-active-text-color)!important;background-color:var(--colors-button-outlined-common-active-bg-color)!important;border-color:var(--colors-button-outlined-common-active-border-color)!important;outline:none!important}._asma-core-ui-button_gteum_1._outlined_gteum_141._common_gteum_27:hover{color:var(--colors-button-outlined-common-hover-text-color)!important;background-color:var(--colors-button-outlined-common-hover-bg-color)!important;border-color:var(--colors-button-outlined-common-hover-border-color)!important}._asma-core-ui-button_gteum_1._outlined_gteum_141._common_gteum_27:focus{outline-offset:-2px!important;color:var(--colors-button-outlined-common-focused-text-color)!important;background-color:var(--colors-button-outlined-common-focused-bg-color)!important;outline:2px solid var(--colors-button-outlined-common-focused-border-color)!important;transition:none!important}._asma-core-ui-button_gteum_1._outlined_gteum_141._common_gteum_27:focus._asma-core-ui-button_gteum_1._contained_gteum_27{box-shadow:inset 0 0 0 2px #fff}._asma-core-ui-button_gteum_1._outlined_gteum_141._common_gteum_27:disabled{cursor:not-allowed;color:var(--colors-button-outlined-common-disabled-text-color)!important;background-color:var(--colors-button-outlined-common-disabled-bg-color)!important;border-color:var(--colors-button-outlined-common-disabled-border-color)!important}._asma-core-ui-button_gteum_1._outlined_gteum_141._error_gteum_84{cursor:pointer;border-radius:4px;border-width:1px;border-style:solid;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:600;transition:all .3s ease-in-out;color:var(--colors-button-outlined-error-text-color)!important;background-color:var(--colors-button-outlined-error-bg-color)!important;border-color:var(--colors-button-outlined-error-border-color)!important}._asma-core-ui-button_gteum_1._outlined_gteum_141._error_gteum_84:active{color:var(--colors-button-outlined-error-active-text-color)!important;background-color:var(--colors-button-outlined-error-active-bg-color)!important;border-color:var(--colors-button-outlined-error-active-border-color)!important;outline:none!important}._asma-core-ui-button_gteum_1._outlined_gteum_141._error_gteum_84:hover{color:var(--colors-button-outlined-error-hover-text-color)!important;background-color:var(--colors-button-outlined-error-hover-bg-color)!important;border-color:var(--colors-button-outlined-error-hover-border-color)!important}._asma-core-ui-button_gteum_1._outlined_gteum_141._error_gteum_84:focus{outline-offset:-2px!important;color:var(--colors-button-outlined-error-focused-text-color)!important;background-color:var(--colors-button-outlined-error-focused-bg-color)!important;outline:2px solid var(--colors-button-outlined-error-focused-border-color)!important;transition:none!important}._asma-core-ui-button_gteum_1._outlined_gteum_141._error_gteum_84:focus._asma-core-ui-button_gteum_1._contained_gteum_27{box-shadow:inset 0 0 0 2px #fff}._asma-core-ui-button_gteum_1._outlined_gteum_141._error_gteum_84:disabled{cursor:not-allowed;color:var(--colors-button-outlined-error-disabled-text-color)!important;background-color:var(--colors-button-outlined-error-disabled-bg-color)!important;border-color:var(--colors-button-outlined-error-disabled-border-color)!important}._asma-core-ui-button_gteum_1._text_gteum_255._common_gteum_27{cursor:pointer;border-radius:4px;border-width:1px;border-style:solid;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:600;transition:all .3s ease-in-out;color:var(--colors-button-text-common-text-color)!important;background-color:var(--colors-button-text-common-bg-color)!important;border-color:var(--colors-button-text-common-border-color)!important}._asma-core-ui-button_gteum_1._text_gteum_255._common_gteum_27:active{color:var(--colors-button-text-common-active-text-color)!important;background-color:var(--colors-button-text-common-active-bg-color)!important;border-color:var(--colors-button-text-common-active-border-color)!important;outline:none!important}._asma-core-ui-button_gteum_1._text_gteum_255._common_gteum_27:hover{color:var(--colors-button-text-common-hover-text-color)!important;background-color:var(--colors-button-text-common-hover-bg-color)!important;border-color:var(--colors-button-text-common-hover-border-color)!important}._asma-core-ui-button_gteum_1._text_gteum_255._common_gteum_27:focus{outline-offset:-2px!important;color:var(--colors-button-text-common-focused-text-color)!important;background-color:var(--colors-button-text-common-focused-bg-color)!important;outline:2px solid var(--colors-button-text-common-focused-border-color)!important;transition:none!important}._asma-core-ui-button_gteum_1._text_gteum_255._common_gteum_27:focus._asma-core-ui-button_gteum_1._contained_gteum_27{box-shadow:inset 0 0 0 2px #fff}._asma-core-ui-button_gteum_1._text_gteum_255._common_gteum_27:disabled{cursor:not-allowed;color:var(--colors-button-text-common-disabled-text-color)!important;background-color:var(--colors-button-text-common-disabled-bg-color)!important;border-color:var(--colors-button-text-common-disabled-border-color)!important}._asma-core-ui-button_gteum_1._text_gteum_255._error_gteum_84{cursor:pointer;border-radius:4px;border-width:1px;border-style:solid;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:600;transition:all .3s ease-in-out;color:var(--colors-button-text-error-text-color)!important;background-color:var(--colors-button-text-error-bg-color)!important;border-color:var(--colors-button-text-error-border-color)!important}._asma-core-ui-button_gteum_1._text_gteum_255._error_gteum_84:active{color:var(--colors-button-text-error-active-text-color)!important;background-color:var(--colors-button-text-error-active-bg-color)!important;border-color:var(--colors-button-text-error-active-border-color)!important;outline:none!important}._asma-core-ui-button_gteum_1._text_gteum_255._error_gteum_84:hover{color:var(--colors-button-text-error-hover-text-color)!important;background-color:var(--colors-button-text-error-hover-bg-color)!important;border-color:var(--colors-button-text-error-hover-border-color)!important}._asma-core-ui-button_gteum_1._text_gteum_255._error_gteum_84:focus{outline-offset:-2px!important;color:var(--colors-button-text-error-focused-text-color)!important;background-color:var(--colors-button-text-error-focused-bg-color)!important;outline:2px solid var(--colors-button-text-error-focused-border-color)!important;transition:none!important}._asma-core-ui-button_gteum_1._text_gteum_255._error_gteum_84:focus._asma-core-ui-button_gteum_1._contained_gteum_27{box-shadow:inset 0 0 0 2px #fff}._asma-core-ui-button_gteum_1._text_gteum_255._error_gteum_84:disabled{cursor:not-allowed;color:var(--colors-button-text-error-disabled-text-color)!important;background-color:var(--colors-button-text-error-disabled-bg-color)!important;border-color:var(--colors-button-text-error-disabled-border-color)!important}._asma-core-ui-button_gteum_1._textGray_gteum_369._common_gteum_27{cursor:pointer;border-radius:4px;border-width:1px;border-style:solid;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:600;transition:all .3s ease-in-out;color:var(--colors-button-textGray-common-text-color)!important;background-color:var(--colors-button-textGray-common-bg-color)!important;border-color:var(--colors-button-textGray-common-border-color)!important}._asma-core-ui-button_gteum_1._textGray_gteum_369._common_gteum_27:active{color:var(--colors-button-textGray-common-active-text-color)!important;background-color:var(--colors-button-textGray-common-active-bg-color)!important;border-color:var(--colors-button-textGray-common-active-border-color)!important;outline:none!important}._asma-core-ui-button_gteum_1._textGray_gteum_369._common_gteum_27:hover{color:var(--colors-button-textGray-common-hover-text-color)!important;background-color:var(--colors-button-textGray-common-hover-bg-color)!important;border-color:var(--colors-button-textGray-common-hover-border-color)!important}._asma-core-ui-button_gteum_1._textGray_gteum_369._common_gteum_27:focus{outline-offset:-2px!important;color:var(--colors-button-textGray-common-focused-text-color)!important;background-color:var(--colors-button-textGray-common-focused-bg-color)!important;outline:2px solid var(--colors-button-textGray-common-focused-border-color)!important;transition:none!important}._asma-core-ui-button_gteum_1._textGray_gteum_369._common_gteum_27:focus._asma-core-ui-button_gteum_1._contained_gteum_27{box-shadow:inset 0 0 0 2px #fff}._asma-core-ui-button_gteum_1._textGray_gteum_369._common_gteum_27:disabled{cursor:not-allowed;color:var(--colors-button-textGray-common-disabled-text-color)!important;background-color:var(--colors-button-textGray-common-disabled-bg-color)!important;border-color:var(--colors-button-textGray-common-disabled-border-color)!important}._asma-core-ui-button_gteum_1._textWhite_gteum_426._common_gteum_27{cursor:pointer;border-radius:4px;border-width:1px;border-style:solid;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:600;transition:all .3s ease-in-out;color:var(--colors-button-textWhite-common-text-color)!important;background-color:var(--colors-button-textWhite-common-bg-color)!important;border-color:var(--colors-button-textWhite-common-border-color)!important}._asma-core-ui-button_gteum_1._textWhite_gteum_426._common_gteum_27:active{color:var(--colors-button-textWhite-common-active-text-color)!important;background-color:var(--colors-button-textWhite-common-active-bg-color)!important;border-color:var(--colors-button-textWhite-common-active-border-color)!important;outline:none!important}._asma-core-ui-button_gteum_1._textWhite_gteum_426._common_gteum_27:hover{color:var(--colors-button-textWhite-common-hover-text-color)!important;background-color:var(--colors-button-textWhite-common-hover-bg-color)!important;border-color:var(--colors-button-textWhite-common-hover-border-color)!important}._asma-core-ui-button_gteum_1._textWhite_gteum_426._common_gteum_27:focus{outline-offset:-2px!important;color:var(--colors-button-textWhite-common-focused-text-color)!important;background-color:var(--colors-button-textWhite-common-focused-bg-color)!important;outline:2px solid var(--colors-button-textWhite-common-focused-border-color)!important;transition:none!important}._asma-core-ui-button_gteum_1._textWhite_gteum_426._common_gteum_27:focus._asma-core-ui-button_gteum_1._contained_gteum_27{box-shadow:inset 0 0 0 2px #fff}._asma-core-ui-button_gteum_1._textWhite_gteum_426._common_gteum_27:disabled{cursor:not-allowed;color:var(--colors-button-textWhite-common-disabled-text-color)!important;background-color:var(--colors-button-textWhite-common-disabled-bg-color)!important;border-color:var(--colors-button-textWhite-common-disabled-border-color)!important}._asma-core-ui-button_gteum_1._medium_gteum_69{height:38px;padding-left:4px;padding-right:4px}._asma-core-ui-button_gteum_1._small_gteum_74{height:32px;padding-left:4px;padding-right:4px}._asma-core-ui-button_gteum_1._large_gteum_79{height:40px;padding-left:8px;padding-right:8px}._actions-header_1bxzk_1{width:40px;height:30px;display:flex;align-items:center;justify-content:center;cursor:pointer;position:relative}._pin-indicator_1bxzk_11{position:absolute;height:8px;width:8px;background-color:var(--colors-gama-400);border-radius:50%;top:2px;right:6px}._pin-icon_1bxzk_21{color:var(--colors-delta-500);min-width:20px;min-height:20px}._pin-icon_1bxzk_21:hover{color:var(--colors-delta-500)}._table-action-item_ejh2p_1{height:36px;padding:1px 8px;display:flex;align-items:center;width:100%}._table-action-item_ejh2p_1:hover,._table-action-item_ejh2p_1:active{background-color:var(--colors-gray-50)}._drag-icon_ejh2p_18{width:20px;height:20px}._drag-icon--disabled_ejh2p_23{color:var(--colors-delta-300);cursor:not-allowed}._drag-icon--enabled_ejh2p_28{color:var(--colors-delta-700);cursor:grab}._drag-icon--enabled_ejh2p_28:focus{outline-color:var(--colors-gama-500)}._drag-icon--enabled_ejh2p_28:active{cursor:grabbing}._asma-ui-table-styled-table_1fc5x_1{--action-cell-shadow: none;--fixed-cell-shadow: none;isolation:isolate;width:100%;display:flex;flex-direction:column}._asma-ui-table-styled-table_1fc5x_1[data-x-overflow=true]{--action-cell-shadow: -15px 0px 15px rgba(0, 0, 0, .1);--fixed-cell-shadow: 15px 0px 15px rgba(0, 0, 0, .1)}._asma-ui-table-styled-table_1fc5x_1 *,._asma-ui-table-styled-table_1fc5x_1 *:after,._asma-ui-table-styled-table_1fc5x_1 *:before{box-sizing:border-box;-webkit-box-sizing:border-box}._asma-ui-table-styled-table_1fc5x_1 :root{--table-hscroll-h: 12px}._asma-ui-table-styled-table_1fc5x_1 ._table-wrapper_1fc5x_22{height:100%;overflow:auto;width:100%;flex-grow:1;min-height:0}._asma-ui-table-styled-table_1fc5x_1 ._table-shell_1fc5x_29{position:relative;flex:1 1 auto;min-height:0;overflow:hidden}._asma-ui-table-styled-table_1fc5x_1 ._table-wrapper--no-rows_1fc5x_35{min-height:130px}._asma-ui-table-styled-table_1fc5x_1 ._table-wrapper--proxy_1fc5x_38,._asma-ui-table-styled-table_1fc5x_1 ._table-wrapper--proxy-bottom_1fc5x_39{position:relative;width:100%;flex-grow:1;overflow:hidden;display:flex;flex-direction:column;min-height:0}._asma-ui-table-styled-table_1fc5x_1 ._table-wrapper-fetching_1fc5x_49{overflow:hidden}._asma-ui-table-styled-table_1fc5x_1 ._table-scroll_1fc5x_52{overflow-x:auto;overflow-y:auto;flex:1 1 auto;min-height:0;position:relative;display:flex;flex-direction:column}._asma-ui-table-styled-table_1fc5x_1 ._table-x--fill-height_1fc5x_61{min-height:calc(100% - 12px)}._asma-ui-table-styled-table_1fc5x_1 ._table-x_1fc5x_61{width:inherit;min-width:100%;overflow-x:visible;overflow-y:visible;flex-shrink:0;scrollbar-width:none;-ms-overflow-style:none}._asma-ui-table-styled-table_1fc5x_1 ._table-x_1fc5x_61::-webkit-scrollbar{display:none}._asma-ui-table-styled-table_1fc5x_1 ._table-header--sticky_1fc5x_76{position:sticky;top:0;background-color:var(--colors-gray-10)}._asma-ui-table-styled-table_1fc5x_1 ._table-hscroll_1fc5x_81{position:sticky;bottom:0;height:var(--table-hscroll-h);overflow-x:hidden;overflow-y:hidden;background:white;z-index:2;flex-shrink:0}._asma-ui-table-styled-table_1fc5x_1 ._table-hscroll__content_1fc5x_91{height:1px}._asma-ui-table-styled-table_1fc5x_1 ._no-rows-overlay-container_1fc5x_94{position:absolute;inset:0;display:grid;place-items:center;pointer-events:none;z-index:5;top:32px}._asma-ui-table-styled-table_1fc5x_1 ._styled-table_1fc5x_103{display:table;margin:0;border-collapse:separate;border-spacing:0 .5px;max-width:inherit;width:100%;table-layout:fixed}._asma-ui-table-styled-table_1fc5x_1 ._styled-table_1fc5x_103 ._tbody_1fc5x_112{display:table-row-group;vertical-align:middle;max-width:inherit}._asma-ui-table-styled-table_1fc5x_1 ._loading-icon_1fc5x_117{position:absolute;top:50%;left:50%;z-index:10;color:var(--colors-gama-500)}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124+._t-row_1fc5x_124 ._t-cell_1fc5x_124{border-top:.5px solid var(--colors-delta-200)}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124{margin-top:1px;display:table-row}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124:hover,._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124:hover ._action-cell_1fc5x_134{background-color:var(--colors-gray-50)}@media (min-width: 743px){._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124:hover ._fixed-cell_1fc5x_138{background-color:var(--colors-gray-50)}}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124:focus{background-color:var(--colors-gama-25)}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124:focus ._action-cell_1fc5x_134{background-color:var(--colors-gama-25)}@media (min-width: 743px){._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124:focus ._fixed-cell_1fc5x_138{background-color:var(--colors-gama-25)}}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124:focus-visible{outline:none}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._t-cell_1fc5x_124{overflow:hidden;vertical-align:top;font-size:14px;line-height:20px;color:var(--colors-gray-700);display:table-cell;white-space:pre-wrap;padding:0 5px}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._t-cell_1fc5x_124:not(._expanded_row_1fc5x_169){vertical-align:middle;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._t-cell_1fc5x_124:not(._expanded_row_1fc5x_169) div{vertical-align:middle;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._t-cell_1fc5x_124:first-child{border-left:.5px solid transparent}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._t-cell_1fc5x_124:last-child{border-right:.5px solid transparent}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._t-cell_1fc5x_124._selected_1fc5x_187{background-color:var(--colors-gama-25)}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._t-cell_1fc5x_124._single-selection_1fc5x_190{background-color:var(--colors-gama-25);box-shadow:inset 0 2px 0 0 var(--colors-gama-400),inset 0 -2px 0 0 var(--colors-gama-400)}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._t-cell_1fc5x_124._single-selection_1fc5x_190:last-child{box-shadow:inset 0 2px 0 0 var(--colors-gama-400),inset 0 -2px 0 0 var(--colors-gama-400),inset -2px 0 0 0 var(--colors-gama-400)}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._t-cell_1fc5x_124._single-selection_1fc5x_190:first-child{box-shadow:inset 0 2px 0 0 var(--colors-gama-400),inset 0 -2px 0 0 var(--colors-gama-400),inset 2px 0 0 0 var(--colors-gama-400)}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._action-cell_1fc5x_134{height:100%;position:sticky;right:-1px;z-index:1}@media (min-width: 743px){._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._action-cell_1fc5x_134{box-shadow:var(--action-cell-shadow)}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._action-cell_1fc5x_134._shadowed_1fc5x_210._single-selection_1fc5x_190{box-shadow:inset 0 2px 0 0 var(--colors-gama-400),inset 0 -2px 0 0 var(--colors-gama-400)}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._action-cell_1fc5x_134._shadowed_1fc5x_210._single-selection_1fc5x_190:last-child{box-shadow:inset 0 2px 0 0 var(--colors-gama-400),inset 0 -2px 0 0 var(--colors-gama-400),inset -2px 0 0 0 var(--colors-gama-400)}}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._fixed-cell_1fc5x_138{height:100%}@media (min-width: 743px){._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._fixed-cell_1fc5x_138{position:sticky;left:0;z-index:1;box-shadow:var(--fixed-cell-shadow)}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._fixed-cell_1fc5x_138._shadowed_1fc5x_210._single-selection_1fc5x_190{box-shadow:inset 0 2px 0 0 var(--colors-gama-400),inset 0 -2px 0 0 var(--colors-gama-400)}}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124._is-loading_1fc5x_231 ._t-cell_1fc5x_124{opacity:.5}._asma-ui-table-styled-table_1fc5x_1 ._action-cell-default-background_1fc5x_234,._asma-ui-table-styled-table_1fc5x_1 ._fixed-cell-default-background_1fc5x_237{background-color:#fff}._asma-ui-table-styled-table_1fc5x_1 ._sortable-column_1fc5x_240{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none}._asma-ui-table-styled-table_1fc5x_1 ._resizer_1fc5x_244{position:absolute;top:0;height:100%;right:0;width:4px;background:var(--colors-delta-300);cursor:col-resize;-webkit-user-select:none;-moz-user-select:none;user-select:none;touch-action:none;border-radius:5px}._asma-ui-table-styled-table_1fc5x_1 ._resizer_1fc5x_244._isResizing_1fc5x_256{background:var(--colors-gama-500);opacity:1}@media (hover: hover){._asma-ui-table-styled-table_1fc5x_1 ._resizer_1fc5x_244{opacity:0}._asma-ui-table-styled-table_1fc5x_1 *:hover>._resizer_1fc5x_244{opacity:1}}._asma-ui-table-styled-table_1fc5x_1 ._hide-table-header_1fc5x_268{height:0px;opacity:0}._asma-ui-table-styled-table_1fc5x_1 ._show-table-header_1fc5x_272{position:relative;height:32px;opacity:1}._asma-ui-table-styled-table_1fc5x_1 ._table-header_1fc5x_76{display:table-header-group;z-index:60;background-color:var(--colors-gray-10);cursor:default}._asma-ui-table-styled-table_1fc5x_1 ._table-header_1fc5x_76 ._t-cell_1fc5x_124{text-transform:uppercase;font-size:10px;font-weight:600;text-align:start;color:var(--colors-delta-500);display:table-cell;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding:0 5px;border-top:.5px solid var(--colors-delta-200);border-bottom:.5px solid var(--colors-delta-200)}._asma-ui-table-styled-table_1fc5x_1 ._table-header_1fc5x_76 ._t-cell_1fc5x_124._hide-header_1fc5x_297{border:none}._asma-ui-table-styled-table_1fc5x_1 ._table-header_1fc5x_76 ._t-cell_1fc5x_124._t-cell__actions_1fc5x_300{height:100%;position:sticky;right:-1px;z-index:1;background-color:var(--colors-gray-10)}@media (min-width: 743px){._asma-ui-table-styled-table_1fc5x_1 ._table-header_1fc5x_76 ._t-cell_1fc5x_124._t-cell__actions_1fc5x_300{box-shadow:var(--action-cell-shadow)}._asma-ui-table-styled-table_1fc5x_1 ._table-header_1fc5x_76 ._t-cell_1fc5x_124._t-cell__fixed_1fc5x_313{position:sticky;left:0;background-color:var(--colors-gray-10);z-index:160;box-shadow:var(--fixed-cell-shadow)}}._asma-ui-table-styled-table_1fc5x_1 ._table-header_1fc5x_76 ._sort-icon_1fc5x_321{color:var(--colors-delta-800)}._asma-ui-table-styled-table_1fc5x_1 ._table-footer--sticky_1fc5x_324{display:flex;width:100%;gap:8px;background-color:transparent;flex-direction:row;padding-top:16px;align-items:center;justify-content:flex-end;flex-shrink:0}._asma-ui-table-styled-table_1fc5x_1 ._table-footer--inline_1fc5x_335{position:sticky;left:0;width:100%;display:flex;align-items:center;justify-content:flex-end;gap:8px;padding:12px 0;background:white}._asma-ui-table-styled-table_1fc5x_1 ._table-bottom_1fc5x_346{margin-top:auto;background:white;width:100%;position:sticky;left:0;bottom:var(--table-hscroll-h);z-index:1}._asma-ui-table-styled-table_1fc5x_1 ._table-wrapper--proxy_1fc5x_38._table-wrapper--no-rows_1fc5x_35,._asma-ui-table-styled-table_1fc5x_1 ._table-wrapper--proxy-bottom_1fc5x_39._table-wrapper--no-rows_1fc5x_35,._asma-ui-table-styled-table_1fc5x_1 ._table-wrapper_1fc5x_22._table-wrapper--no-rows_1fc5x_35{min-height:130px}._asma-ui-table-styled-table_1fc5x_1 ._table-bottom--sticky_1fc5x_360{bottom:0}._skeleton-row_5gbhw_1{padding-bottom:.5rem;padding-top:0}._skeleton-row_5gbhw_1:first-child{padding-top:.5rem}._skeleton-row_5gbhw_1:last-child{padding-bottom:0}._table-pagination_pu6mb_1{display:flex;width:-moz-fit-content;width:fit-content;gap:8px;background-color:transparent;flex-direction:row;align-items:center;justify-content:flex-end}._table-pagination__pages-list_pu6mb_11{overflow:auto;width:160px;max-height:200px}._table-pagination__pages-list_pu6mb_11 ._table-pagination__pages-list__page_pu6mb_16{height:36px;position:relative;display:flex;align-items:center;padding-left:40px;cursor:pointer}._table-pagination__pages-list_pu6mb_11 ._table-pagination__pages-list__page_pu6mb_16:hover{background-color:var(--colors-delta-30)}._table-pagination__pages-list_pu6mb_11 ._table-pagination__pages-list__page_pu6mb_16._page-selected_pu6mb_27{background-color:var(--colors-gama-50)}._table-pagination__pages-list_pu6mb_11 ._table-pagination__pages-list__page_pu6mb_16 ._check-icon_pu6mb_30{position:absolute;left:8px;top:4px;color:var(--colors-gama-500)}
|
|
1
|
+
._CheckboxWrapper_1b4zf_1{display:flex;align-items:center;justify-content:center;position:relative;box-sizing:border-box;cursor:pointer;background:transparent;border:none}._CheckboxWrapper_1b4zf_1._size-small_1b4zf_11{width:38px;height:38px}._CheckboxWrapper_1b4zf_1._size-medium_1b4zf_15{width:42px;height:42px}._CheckboxWrapper_1b4zf_1[data-disabled]{cursor:default;pointer-events:none}._CheckboxWrapper_1b4zf_1:is([data-checked],[data-indeterminate]) ._Checkbox_1b4zf_1{background-color:var(--colors-gama-500);border:none;--cb-border-w: 0px}._CheckboxWrapper_1b4zf_1._Indeterminate_1b4zf_28 ._Checkbox_1b4zf_1{background-color:var(--colors-gama-500);border:none;--cb-border-w: 0px}._CheckboxWrapper_1b4zf_1[data-unchecked] ._Checkbox_1b4zf_1{background-color:transparent;border:var(--cb-border-w) solid var(--colors-delta-500)}._CheckboxWrapper_1b4zf_1[data-disabled][data-unchecked] ._Checkbox_1b4zf_1{background-color:transparent;border:var(--cb-border-w) solid var(--colors-delta-200)}._CheckboxWrapper_1b4zf_1[data-disabled]:is([data-checked],[data-indeterminate]) ._Checkbox_1b4zf_1{background-color:var(--colors-delta-200);border:none;--cb-border-w: 0px}._CheckboxWrapper_1b4zf_1[data-disabled]._Indeterminate_1b4zf_28 ._Checkbox_1b4zf_1{background-color:var(--colors-delta-200);border:none;--cb-border-w: 0px}._CheckboxWrapper_1b4zf_1:focus-visible{outline:none}._CheckboxWrapper_1b4zf_1._ReadOnly_1b4zf_55{pointer-events:none;cursor:default}._CheckboxWrapper_1b4zf_1._ReadOnly_1b4zf_55 ._Checkbox_1b4zf_1{background-color:#fff;border:var(--cb-border-w) solid var(--colors-delta-500);--cb-border-w: 2px}._CheckboxWrapper_1b4zf_1._ReadOnly_1b4zf_55 ._Checkbox_1b4zf_1 ._Indicator_1b4zf_64{color:var(--colors-delta-500)}._HideWrapper_1b4zf_68{width:auto;height:auto;padding:0;overflow:visible}._CheckboxHover_1b4zf_75:after,._CheckboxRippleContainer_1b4zf_75{position:absolute;left:0;top:0;width:100%;height:100%;z-index:0}._CheckboxRippleContainer_1b4zf_75{overflow:hidden;border-radius:50%}._CheckboxRipple_1b4zf_75{position:absolute;width:100%;height:100%;background-color:var(--colors-gama-500);border-radius:50%;left:50%;top:50%;transform:translate(-50%,-50%) scale(0);opacity:.25;animation:_ripple_1b4zf_1 .4s ease-out forwards;z-index:0}@keyframes _ripple_1b4zf_1{to{transform:translate(-50%,-50%) scale(1);opacity:.025}}._CheckboxHover_1b4zf_75:after{content:"";width:42px;height:42px;background:var(--colors-gama-300);border-radius:50%;top:50%;left:50%;opacity:0;transition:opacity .2s,transform .2s;transform:translate(-50%,-50%) scale(.7)}._CheckboxHover_1b4zf_75:hover:after{opacity:.07;transform:translate(-50%,-50%) scale(1)}._CheckboxHover_1b4zf_75._size-small_1b4zf_11:after{width:38px;height:38px}._Checkbox_1b4zf_1{position:relative;overflow:visible;padding:0;box-sizing:border-box;--cb-border-w: 2px;--cb-indicator-color: #fff;border-radius:2px;width:18px;height:18px}._Checkbox_1b4zf_1._size-small_1b4zf_11{border-radius:2px;width:15px;height:15px}._CheckboxWrapper_1b4zf_1:focus-visible ._Checkbox_1b4zf_1:before{content:"";position:absolute;inset:calc(-2px - var(--cb-border-w));border-radius:4px;outline:2px solid var(--colors-gama-400);outline-offset:0;pointer-events:none}._CheckboxWrapper_1b4zf_1[data-indeterminate] ._Checkbox_1b4zf_1:after,._Checkbox_1b4zf_1._Indeterminate_1b4zf_28:after{content:"";position:absolute;top:50%;left:50%;width:62%;height:2.5px;transform:translate(-50%,-50%);border-radius:999px;background-color:var(--cb-indicator-color);z-index:2;pointer-events:none}._Indicator_1b4zf_64{display:flex;align-items:center;justify-content:center;width:100%;height:100%;color:#fff;z-index:1;position:relative;pointer-events:none}._CheckboxWrapper_1b4zf_1[data-indeterminate] ._Indicator_1b4zf_64 svg,._CheckboxWrapper_1b4zf_1._Indeterminate_1b4zf_28 ._Indicator_1b4zf_64 svg{display:none}._CheckboxWrapper_1b4zf_1._ReadOnly_1b4zf_55 ._Checkbox_1b4zf_1{--cb-indicator-color: var(--colors-delta-500)}._asma-core-ui-button_gteum_1{border-color:transparent;border-width:1px;border-style:solid}._asma-core-ui-button_gteum_1._contained_gteum_27._common_gteum_27{cursor:pointer;border-radius:4px;border-width:1px;border-style:solid;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:600;transition:all .3s ease-in-out;color:var(--colors-button-contained-common-text-color)!important;background-color:var(--colors-button-contained-common-bg-color)!important;border-color:var(--colors-button-contained-common-border-color)!important}._asma-core-ui-button_gteum_1._contained_gteum_27._common_gteum_27:active{color:var(--colors-button-contained-common-active-text-color)!important;background-color:var(--colors-button-contained-common-active-bg-color)!important;border-color:var(--colors-button-contained-common-active-border-color)!important;outline:none!important}._asma-core-ui-button_gteum_1._contained_gteum_27._common_gteum_27:hover{color:var(--colors-button-contained-common-hover-text-color)!important;background-color:var(--colors-button-contained-common-hover-bg-color)!important;border-color:var(--colors-button-contained-common-hover-border-color)!important}._asma-core-ui-button_gteum_1._contained_gteum_27._common_gteum_27:focus{outline-offset:-2px!important;color:var(--colors-button-contained-common-focused-text-color)!important;background-color:var(--colors-button-contained-common-focused-bg-color)!important;outline:2px solid var(--colors-button-contained-common-focused-border-color)!important;transition:none!important}._asma-core-ui-button_gteum_1._contained_gteum_27._common_gteum_27:focus._asma-core-ui-button_gteum_1._contained_gteum_27{box-shadow:inset 0 0 0 2px #fff}._asma-core-ui-button_gteum_1._contained_gteum_27._common_gteum_27:disabled{cursor:not-allowed;color:var(--colors-button-contained-common-disabled-text-color)!important;background-color:var(--colors-button-contained-common-disabled-bg-color)!important;border-color:var(--colors-button-contained-common-disabled-border-color)!important}._asma-core-ui-button_gteum_1._contained_gteum_27._error_gteum_84{cursor:pointer;border-radius:4px;border-width:1px;border-style:solid;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:600;transition:all .3s ease-in-out;color:var(--colors-button-contained-error-text-color)!important;background-color:var(--colors-button-contained-error-bg-color)!important;border-color:var(--colors-button-contained-error-border-color)!important}._asma-core-ui-button_gteum_1._contained_gteum_27._error_gteum_84:active{color:var(--colors-button-contained-error-active-text-color)!important;background-color:var(--colors-button-contained-error-active-bg-color)!important;border-color:var(--colors-button-contained-error-active-border-color)!important;outline:none!important}._asma-core-ui-button_gteum_1._contained_gteum_27._error_gteum_84:hover{color:var(--colors-button-contained-error-hover-text-color)!important;background-color:var(--colors-button-contained-error-hover-bg-color)!important;border-color:var(--colors-button-contained-error-hover-border-color)!important}._asma-core-ui-button_gteum_1._contained_gteum_27._error_gteum_84:focus{outline-offset:-2px!important;color:var(--colors-button-contained-error-focused-text-color)!important;background-color:var(--colors-button-contained-error-focused-bg-color)!important;outline:2px solid var(--colors-button-contained-error-focused-border-color)!important;transition:none!important}._asma-core-ui-button_gteum_1._contained_gteum_27._error_gteum_84:focus._asma-core-ui-button_gteum_1._contained_gteum_27{box-shadow:inset 0 0 0 2px #fff}._asma-core-ui-button_gteum_1._contained_gteum_27._error_gteum_84:disabled{cursor:not-allowed;color:var(--colors-button-contained-error-disabled-text-color)!important;background-color:var(--colors-button-contained-error-disabled-bg-color)!important;border-color:var(--colors-button-contained-error-disabled-border-color)!important}._asma-core-ui-button_gteum_1._outlined_gteum_141._common_gteum_27{cursor:pointer;border-radius:4px;border-width:1px;border-style:solid;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:600;transition:all .3s ease-in-out;color:var(--colors-button-outlined-common-text-color)!important;background-color:var(--colors-button-outlined-common-bg-color)!important;border-color:var(--colors-button-outlined-common-border-color)!important}._asma-core-ui-button_gteum_1._outlined_gteum_141._common_gteum_27:active{color:var(--colors-button-outlined-common-active-text-color)!important;background-color:var(--colors-button-outlined-common-active-bg-color)!important;border-color:var(--colors-button-outlined-common-active-border-color)!important;outline:none!important}._asma-core-ui-button_gteum_1._outlined_gteum_141._common_gteum_27:hover{color:var(--colors-button-outlined-common-hover-text-color)!important;background-color:var(--colors-button-outlined-common-hover-bg-color)!important;border-color:var(--colors-button-outlined-common-hover-border-color)!important}._asma-core-ui-button_gteum_1._outlined_gteum_141._common_gteum_27:focus{outline-offset:-2px!important;color:var(--colors-button-outlined-common-focused-text-color)!important;background-color:var(--colors-button-outlined-common-focused-bg-color)!important;outline:2px solid var(--colors-button-outlined-common-focused-border-color)!important;transition:none!important}._asma-core-ui-button_gteum_1._outlined_gteum_141._common_gteum_27:focus._asma-core-ui-button_gteum_1._contained_gteum_27{box-shadow:inset 0 0 0 2px #fff}._asma-core-ui-button_gteum_1._outlined_gteum_141._common_gteum_27:disabled{cursor:not-allowed;color:var(--colors-button-outlined-common-disabled-text-color)!important;background-color:var(--colors-button-outlined-common-disabled-bg-color)!important;border-color:var(--colors-button-outlined-common-disabled-border-color)!important}._asma-core-ui-button_gteum_1._outlined_gteum_141._error_gteum_84{cursor:pointer;border-radius:4px;border-width:1px;border-style:solid;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:600;transition:all .3s ease-in-out;color:var(--colors-button-outlined-error-text-color)!important;background-color:var(--colors-button-outlined-error-bg-color)!important;border-color:var(--colors-button-outlined-error-border-color)!important}._asma-core-ui-button_gteum_1._outlined_gteum_141._error_gteum_84:active{color:var(--colors-button-outlined-error-active-text-color)!important;background-color:var(--colors-button-outlined-error-active-bg-color)!important;border-color:var(--colors-button-outlined-error-active-border-color)!important;outline:none!important}._asma-core-ui-button_gteum_1._outlined_gteum_141._error_gteum_84:hover{color:var(--colors-button-outlined-error-hover-text-color)!important;background-color:var(--colors-button-outlined-error-hover-bg-color)!important;border-color:var(--colors-button-outlined-error-hover-border-color)!important}._asma-core-ui-button_gteum_1._outlined_gteum_141._error_gteum_84:focus{outline-offset:-2px!important;color:var(--colors-button-outlined-error-focused-text-color)!important;background-color:var(--colors-button-outlined-error-focused-bg-color)!important;outline:2px solid var(--colors-button-outlined-error-focused-border-color)!important;transition:none!important}._asma-core-ui-button_gteum_1._outlined_gteum_141._error_gteum_84:focus._asma-core-ui-button_gteum_1._contained_gteum_27{box-shadow:inset 0 0 0 2px #fff}._asma-core-ui-button_gteum_1._outlined_gteum_141._error_gteum_84:disabled{cursor:not-allowed;color:var(--colors-button-outlined-error-disabled-text-color)!important;background-color:var(--colors-button-outlined-error-disabled-bg-color)!important;border-color:var(--colors-button-outlined-error-disabled-border-color)!important}._asma-core-ui-button_gteum_1._text_gteum_255._common_gteum_27{cursor:pointer;border-radius:4px;border-width:1px;border-style:solid;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:600;transition:all .3s ease-in-out;color:var(--colors-button-text-common-text-color)!important;background-color:var(--colors-button-text-common-bg-color)!important;border-color:var(--colors-button-text-common-border-color)!important}._asma-core-ui-button_gteum_1._text_gteum_255._common_gteum_27:active{color:var(--colors-button-text-common-active-text-color)!important;background-color:var(--colors-button-text-common-active-bg-color)!important;border-color:var(--colors-button-text-common-active-border-color)!important;outline:none!important}._asma-core-ui-button_gteum_1._text_gteum_255._common_gteum_27:hover{color:var(--colors-button-text-common-hover-text-color)!important;background-color:var(--colors-button-text-common-hover-bg-color)!important;border-color:var(--colors-button-text-common-hover-border-color)!important}._asma-core-ui-button_gteum_1._text_gteum_255._common_gteum_27:focus{outline-offset:-2px!important;color:var(--colors-button-text-common-focused-text-color)!important;background-color:var(--colors-button-text-common-focused-bg-color)!important;outline:2px solid var(--colors-button-text-common-focused-border-color)!important;transition:none!important}._asma-core-ui-button_gteum_1._text_gteum_255._common_gteum_27:focus._asma-core-ui-button_gteum_1._contained_gteum_27{box-shadow:inset 0 0 0 2px #fff}._asma-core-ui-button_gteum_1._text_gteum_255._common_gteum_27:disabled{cursor:not-allowed;color:var(--colors-button-text-common-disabled-text-color)!important;background-color:var(--colors-button-text-common-disabled-bg-color)!important;border-color:var(--colors-button-text-common-disabled-border-color)!important}._asma-core-ui-button_gteum_1._text_gteum_255._error_gteum_84{cursor:pointer;border-radius:4px;border-width:1px;border-style:solid;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:600;transition:all .3s ease-in-out;color:var(--colors-button-text-error-text-color)!important;background-color:var(--colors-button-text-error-bg-color)!important;border-color:var(--colors-button-text-error-border-color)!important}._asma-core-ui-button_gteum_1._text_gteum_255._error_gteum_84:active{color:var(--colors-button-text-error-active-text-color)!important;background-color:var(--colors-button-text-error-active-bg-color)!important;border-color:var(--colors-button-text-error-active-border-color)!important;outline:none!important}._asma-core-ui-button_gteum_1._text_gteum_255._error_gteum_84:hover{color:var(--colors-button-text-error-hover-text-color)!important;background-color:var(--colors-button-text-error-hover-bg-color)!important;border-color:var(--colors-button-text-error-hover-border-color)!important}._asma-core-ui-button_gteum_1._text_gteum_255._error_gteum_84:focus{outline-offset:-2px!important;color:var(--colors-button-text-error-focused-text-color)!important;background-color:var(--colors-button-text-error-focused-bg-color)!important;outline:2px solid var(--colors-button-text-error-focused-border-color)!important;transition:none!important}._asma-core-ui-button_gteum_1._text_gteum_255._error_gteum_84:focus._asma-core-ui-button_gteum_1._contained_gteum_27{box-shadow:inset 0 0 0 2px #fff}._asma-core-ui-button_gteum_1._text_gteum_255._error_gteum_84:disabled{cursor:not-allowed;color:var(--colors-button-text-error-disabled-text-color)!important;background-color:var(--colors-button-text-error-disabled-bg-color)!important;border-color:var(--colors-button-text-error-disabled-border-color)!important}._asma-core-ui-button_gteum_1._textGray_gteum_369._common_gteum_27{cursor:pointer;border-radius:4px;border-width:1px;border-style:solid;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:600;transition:all .3s ease-in-out;color:var(--colors-button-textGray-common-text-color)!important;background-color:var(--colors-button-textGray-common-bg-color)!important;border-color:var(--colors-button-textGray-common-border-color)!important}._asma-core-ui-button_gteum_1._textGray_gteum_369._common_gteum_27:active{color:var(--colors-button-textGray-common-active-text-color)!important;background-color:var(--colors-button-textGray-common-active-bg-color)!important;border-color:var(--colors-button-textGray-common-active-border-color)!important;outline:none!important}._asma-core-ui-button_gteum_1._textGray_gteum_369._common_gteum_27:hover{color:var(--colors-button-textGray-common-hover-text-color)!important;background-color:var(--colors-button-textGray-common-hover-bg-color)!important;border-color:var(--colors-button-textGray-common-hover-border-color)!important}._asma-core-ui-button_gteum_1._textGray_gteum_369._common_gteum_27:focus{outline-offset:-2px!important;color:var(--colors-button-textGray-common-focused-text-color)!important;background-color:var(--colors-button-textGray-common-focused-bg-color)!important;outline:2px solid var(--colors-button-textGray-common-focused-border-color)!important;transition:none!important}._asma-core-ui-button_gteum_1._textGray_gteum_369._common_gteum_27:focus._asma-core-ui-button_gteum_1._contained_gteum_27{box-shadow:inset 0 0 0 2px #fff}._asma-core-ui-button_gteum_1._textGray_gteum_369._common_gteum_27:disabled{cursor:not-allowed;color:var(--colors-button-textGray-common-disabled-text-color)!important;background-color:var(--colors-button-textGray-common-disabled-bg-color)!important;border-color:var(--colors-button-textGray-common-disabled-border-color)!important}._asma-core-ui-button_gteum_1._textWhite_gteum_426._common_gteum_27{cursor:pointer;border-radius:4px;border-width:1px;border-style:solid;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:600;transition:all .3s ease-in-out;color:var(--colors-button-textWhite-common-text-color)!important;background-color:var(--colors-button-textWhite-common-bg-color)!important;border-color:var(--colors-button-textWhite-common-border-color)!important}._asma-core-ui-button_gteum_1._textWhite_gteum_426._common_gteum_27:active{color:var(--colors-button-textWhite-common-active-text-color)!important;background-color:var(--colors-button-textWhite-common-active-bg-color)!important;border-color:var(--colors-button-textWhite-common-active-border-color)!important;outline:none!important}._asma-core-ui-button_gteum_1._textWhite_gteum_426._common_gteum_27:hover{color:var(--colors-button-textWhite-common-hover-text-color)!important;background-color:var(--colors-button-textWhite-common-hover-bg-color)!important;border-color:var(--colors-button-textWhite-common-hover-border-color)!important}._asma-core-ui-button_gteum_1._textWhite_gteum_426._common_gteum_27:focus{outline-offset:-2px!important;color:var(--colors-button-textWhite-common-focused-text-color)!important;background-color:var(--colors-button-textWhite-common-focused-bg-color)!important;outline:2px solid var(--colors-button-textWhite-common-focused-border-color)!important;transition:none!important}._asma-core-ui-button_gteum_1._textWhite_gteum_426._common_gteum_27:focus._asma-core-ui-button_gteum_1._contained_gteum_27{box-shadow:inset 0 0 0 2px #fff}._asma-core-ui-button_gteum_1._textWhite_gteum_426._common_gteum_27:disabled{cursor:not-allowed;color:var(--colors-button-textWhite-common-disabled-text-color)!important;background-color:var(--colors-button-textWhite-common-disabled-bg-color)!important;border-color:var(--colors-button-textWhite-common-disabled-border-color)!important}._asma-core-ui-button_gteum_1._medium_gteum_69{height:38px;padding-left:4px;padding-right:4px}._asma-core-ui-button_gteum_1._small_gteum_74{height:32px;padding-left:4px;padding-right:4px}._asma-core-ui-button_gteum_1._large_gteum_79{height:40px;padding-left:8px;padding-right:8px}._actions-header_1bxzk_1{width:40px;height:30px;display:flex;align-items:center;justify-content:center;cursor:pointer;position:relative}._pin-indicator_1bxzk_11{position:absolute;height:8px;width:8px;background-color:var(--colors-gama-400);border-radius:50%;top:2px;right:6px}._pin-icon_1bxzk_21{color:var(--colors-delta-500);min-width:20px;min-height:20px}._pin-icon_1bxzk_21:hover{color:var(--colors-delta-500)}._table-action-item_ejh2p_1{height:36px;padding:1px 8px;display:flex;align-items:center;width:100%}._table-action-item_ejh2p_1:hover,._table-action-item_ejh2p_1:active{background-color:var(--colors-gray-50)}._drag-icon_ejh2p_18{width:20px;height:20px}._drag-icon--disabled_ejh2p_23{color:var(--colors-delta-300);cursor:not-allowed}._drag-icon--enabled_ejh2p_28{color:var(--colors-delta-700);cursor:grab}._drag-icon--enabled_ejh2p_28:focus{outline-color:var(--colors-gama-500)}._drag-icon--enabled_ejh2p_28:active{cursor:grabbing}._asma-ui-table-styled-table_1fc5x_1{--action-cell-shadow: none;--fixed-cell-shadow: none;isolation:isolate;width:100%;display:flex;flex-direction:column}._asma-ui-table-styled-table_1fc5x_1[data-x-overflow=true]{--action-cell-shadow: -15px 0px 15px rgba(0, 0, 0, .1);--fixed-cell-shadow: 15px 0px 15px rgba(0, 0, 0, .1)}._asma-ui-table-styled-table_1fc5x_1 *,._asma-ui-table-styled-table_1fc5x_1 *:after,._asma-ui-table-styled-table_1fc5x_1 *:before{box-sizing:border-box;-webkit-box-sizing:border-box}._asma-ui-table-styled-table_1fc5x_1 :root{--table-hscroll-h: 12px}._asma-ui-table-styled-table_1fc5x_1 ._table-wrapper_1fc5x_22{height:100%;overflow:auto;width:100%;flex-grow:1;min-height:0}._asma-ui-table-styled-table_1fc5x_1 ._table-shell_1fc5x_29{position:relative;flex:1 1 auto;min-height:0;overflow:hidden}._asma-ui-table-styled-table_1fc5x_1 ._table-wrapper--no-rows_1fc5x_35{min-height:130px}._asma-ui-table-styled-table_1fc5x_1 ._table-wrapper--proxy_1fc5x_38,._asma-ui-table-styled-table_1fc5x_1 ._table-wrapper--proxy-bottom_1fc5x_39{position:relative;width:100%;flex-grow:1;overflow:hidden;display:flex;flex-direction:column;min-height:0}._asma-ui-table-styled-table_1fc5x_1 ._table-wrapper-fetching_1fc5x_49{overflow:hidden}._asma-ui-table-styled-table_1fc5x_1 ._table-scroll_1fc5x_52{overflow-x:auto;overflow-y:auto;flex:1 1 auto;min-height:0;position:relative;display:flex;flex-direction:column}._asma-ui-table-styled-table_1fc5x_1 ._table-x--fill-height_1fc5x_61{min-height:calc(100% - 12px)}._asma-ui-table-styled-table_1fc5x_1 ._table-x_1fc5x_61{width:inherit;min-width:100%;overflow-x:visible;overflow-y:visible;flex-shrink:0;scrollbar-width:none;-ms-overflow-style:none}._asma-ui-table-styled-table_1fc5x_1 ._table-x_1fc5x_61::-webkit-scrollbar{display:none}._asma-ui-table-styled-table_1fc5x_1 ._table-header--sticky_1fc5x_76{position:sticky;top:0;background-color:var(--colors-gray-10)}._asma-ui-table-styled-table_1fc5x_1 ._table-hscroll_1fc5x_81{position:sticky;bottom:0;height:var(--table-hscroll-h);overflow-x:hidden;overflow-y:hidden;background:white;z-index:2;flex-shrink:0}._asma-ui-table-styled-table_1fc5x_1 ._table-hscroll__content_1fc5x_91{height:1px}._asma-ui-table-styled-table_1fc5x_1 ._no-rows-overlay-container_1fc5x_94{position:absolute;inset:0;display:grid;place-items:center;pointer-events:none;z-index:5;top:32px}._asma-ui-table-styled-table_1fc5x_1 ._styled-table_1fc5x_103{display:table;margin:0;border-collapse:separate;border-spacing:0 .5px;max-width:inherit;width:100%;table-layout:fixed}._asma-ui-table-styled-table_1fc5x_1 ._styled-table_1fc5x_103 ._tbody_1fc5x_112{display:table-row-group;vertical-align:middle;max-width:inherit}._asma-ui-table-styled-table_1fc5x_1 ._loading-icon_1fc5x_117{position:absolute;top:50%;left:50%;z-index:10;color:var(--colors-gama-500)}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124+._t-row_1fc5x_124 ._t-cell_1fc5x_124{border-top:.5px solid var(--colors-delta-200)}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124{margin-top:1px;display:table-row}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124:hover,._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124:hover ._action-cell_1fc5x_134{background-color:var(--colors-gray-50)}@media (min-width: 743px){._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124:hover ._fixed-cell_1fc5x_138{background-color:var(--colors-gray-50)}}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124:focus{background-color:var(--colors-gama-25)}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124:focus ._action-cell_1fc5x_134{background-color:var(--colors-gama-25)}@media (min-width: 743px){._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124:focus ._fixed-cell_1fc5x_138{background-color:var(--colors-gama-25)}}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124:focus-visible{outline:none}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._t-cell_1fc5x_124{overflow:hidden;vertical-align:top;font-size:14px;line-height:20px;color:var(--colors-gray-700);display:table-cell;white-space:pre-wrap;padding:0 5px}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._t-cell_1fc5x_124:not(._expanded_row_1fc5x_169){vertical-align:middle;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._t-cell_1fc5x_124:not(._expanded_row_1fc5x_169) div{vertical-align:middle;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._t-cell_1fc5x_124:first-child{border-left:.5px solid transparent}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._t-cell_1fc5x_124:last-child{border-right:.5px solid transparent}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._t-cell_1fc5x_124._selected_1fc5x_187{background-color:var(--colors-gama-25)}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._t-cell_1fc5x_124._single-selection_1fc5x_190{background-color:var(--colors-gama-25);box-shadow:inset 0 2px 0 0 var(--colors-gama-400),inset 0 -2px 0 0 var(--colors-gama-400)}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._t-cell_1fc5x_124._single-selection_1fc5x_190:last-child{box-shadow:inset 0 2px 0 0 var(--colors-gama-400),inset 0 -2px 0 0 var(--colors-gama-400),inset -2px 0 0 0 var(--colors-gama-400)}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._t-cell_1fc5x_124._single-selection_1fc5x_190:first-child{box-shadow:inset 0 2px 0 0 var(--colors-gama-400),inset 0 -2px 0 0 var(--colors-gama-400),inset 2px 0 0 0 var(--colors-gama-400)}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._action-cell_1fc5x_134{height:100%;position:sticky;right:-1px;z-index:1}@media (min-width: 743px){._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._action-cell_1fc5x_134{box-shadow:var(--action-cell-shadow)}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._action-cell_1fc5x_134._shadowed_1fc5x_210._single-selection_1fc5x_190{box-shadow:inset 0 2px 0 0 var(--colors-gama-400),inset 0 -2px 0 0 var(--colors-gama-400)}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._action-cell_1fc5x_134._shadowed_1fc5x_210._single-selection_1fc5x_190:last-child{box-shadow:inset 0 2px 0 0 var(--colors-gama-400),inset 0 -2px 0 0 var(--colors-gama-400),inset -2px 0 0 0 var(--colors-gama-400)}}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._fixed-cell_1fc5x_138{height:100%}@media (min-width: 743px){._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._fixed-cell_1fc5x_138{position:sticky;left:0;z-index:1;box-shadow:var(--fixed-cell-shadow)}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124 ._fixed-cell_1fc5x_138._shadowed_1fc5x_210._single-selection_1fc5x_190{box-shadow:inset 0 2px 0 0 var(--colors-gama-400),inset 0 -2px 0 0 var(--colors-gama-400)}}._asma-ui-table-styled-table_1fc5x_1 ._t-row_1fc5x_124._is-loading_1fc5x_231 ._t-cell_1fc5x_124{opacity:.5}._asma-ui-table-styled-table_1fc5x_1 ._action-cell-default-background_1fc5x_234,._asma-ui-table-styled-table_1fc5x_1 ._fixed-cell-default-background_1fc5x_237{background-color:#fff}._asma-ui-table-styled-table_1fc5x_1 ._sortable-column_1fc5x_240{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none}._asma-ui-table-styled-table_1fc5x_1 ._resizer_1fc5x_244{position:absolute;top:0;height:100%;right:0;width:4px;background:var(--colors-delta-300);cursor:col-resize;-webkit-user-select:none;-moz-user-select:none;user-select:none;touch-action:none;border-radius:5px}._asma-ui-table-styled-table_1fc5x_1 ._resizer_1fc5x_244._isResizing_1fc5x_256{background:var(--colors-gama-500);opacity:1}@media (hover: hover){._asma-ui-table-styled-table_1fc5x_1 ._resizer_1fc5x_244{opacity:0}._asma-ui-table-styled-table_1fc5x_1 *:hover>._resizer_1fc5x_244{opacity:1}}._asma-ui-table-styled-table_1fc5x_1 ._hide-table-header_1fc5x_268{height:0px;opacity:0}._asma-ui-table-styled-table_1fc5x_1 ._show-table-header_1fc5x_272{position:relative;height:32px;opacity:1}._asma-ui-table-styled-table_1fc5x_1 ._table-header_1fc5x_76{display:table-header-group;z-index:60;background-color:var(--colors-gray-10);cursor:default}._asma-ui-table-styled-table_1fc5x_1 ._table-header_1fc5x_76 ._t-cell_1fc5x_124{text-transform:uppercase;font-size:10px;font-weight:600;text-align:start;color:var(--colors-delta-500);display:table-cell;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding:0 5px;border-top:.5px solid var(--colors-delta-200);border-bottom:.5px solid var(--colors-delta-200)}._asma-ui-table-styled-table_1fc5x_1 ._table-header_1fc5x_76 ._t-cell_1fc5x_124._hide-header_1fc5x_297{border:none}._asma-ui-table-styled-table_1fc5x_1 ._table-header_1fc5x_76 ._t-cell_1fc5x_124._t-cell__actions_1fc5x_300{height:100%;position:sticky;right:-1px;z-index:1;background-color:var(--colors-gray-10)}@media (min-width: 743px){._asma-ui-table-styled-table_1fc5x_1 ._table-header_1fc5x_76 ._t-cell_1fc5x_124._t-cell__actions_1fc5x_300{box-shadow:var(--action-cell-shadow)}._asma-ui-table-styled-table_1fc5x_1 ._table-header_1fc5x_76 ._t-cell_1fc5x_124._t-cell__fixed_1fc5x_313{position:sticky;left:0;background-color:var(--colors-gray-10);z-index:160;box-shadow:var(--fixed-cell-shadow)}}._asma-ui-table-styled-table_1fc5x_1 ._table-header_1fc5x_76 ._sort-icon_1fc5x_321{color:var(--colors-delta-800)}._asma-ui-table-styled-table_1fc5x_1 ._table-footer--sticky_1fc5x_324{display:flex;width:100%;gap:8px;background-color:transparent;flex-direction:row;padding-top:16px;align-items:center;justify-content:flex-end;flex-shrink:0}._asma-ui-table-styled-table_1fc5x_1 ._table-footer--inline_1fc5x_335{position:sticky;left:0;width:100%;display:flex;align-items:center;justify-content:flex-end;gap:8px;padding:12px 0;background:white}._asma-ui-table-styled-table_1fc5x_1 ._table-bottom_1fc5x_346{margin-top:auto;background:white;width:100%;position:sticky;left:0;bottom:var(--table-hscroll-h);z-index:1}._asma-ui-table-styled-table_1fc5x_1 ._table-wrapper--proxy_1fc5x_38._table-wrapper--no-rows_1fc5x_35,._asma-ui-table-styled-table_1fc5x_1 ._table-wrapper--proxy-bottom_1fc5x_39._table-wrapper--no-rows_1fc5x_35,._asma-ui-table-styled-table_1fc5x_1 ._table-wrapper_1fc5x_22._table-wrapper--no-rows_1fc5x_35{min-height:130px}._asma-ui-table-styled-table_1fc5x_1 ._table-bottom--sticky_1fc5x_360{bottom:0}._skeleton-row_5gbhw_1{padding-bottom:.5rem;padding-top:0}._skeleton-row_5gbhw_1:first-child{padding-top:.5rem}._skeleton-row_5gbhw_1:last-child{padding-bottom:0}._table-pagination_pu6mb_1{display:flex;width:-moz-fit-content;width:fit-content;gap:8px;background-color:transparent;flex-direction:row;align-items:center;justify-content:flex-end}._table-pagination__pages-list_pu6mb_11{overflow:auto;width:160px;max-height:200px}._table-pagination__pages-list_pu6mb_11 ._table-pagination__pages-list__page_pu6mb_16{height:36px;position:relative;display:flex;align-items:center;padding-left:40px;cursor:pointer}._table-pagination__pages-list_pu6mb_11 ._table-pagination__pages-list__page_pu6mb_16:hover{background-color:var(--colors-delta-30)}._table-pagination__pages-list_pu6mb_11 ._table-pagination__pages-list__page_pu6mb_16._page-selected_pu6mb_27{background-color:var(--colors-gama-50)}._table-pagination__pages-list_pu6mb_11 ._table-pagination__pages-list__page_pu6mb_16 ._check-icon_pu6mb_30{position:absolute;left:8px;top:4px;color:var(--colors-gama-500)}
|