@algolia/satellite 1.0.0-beta.130 → 1.0.0-beta.131
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/cjs/Input/Input.js +1 -1
- package/cjs/Input/Input.tailwind.js +0 -3
- package/cjs/KeyboardKey/KeyboardKey.d.ts +6 -0
- package/cjs/KeyboardKey/KeyboardKey.js +50 -0
- package/cjs/KeyboardKey/KeyboardKey.tailwind.d.ts +5 -0
- package/cjs/KeyboardKey/KeyboardKey.tailwind.js +33 -0
- package/cjs/KeyboardKey/index.d.ts +2 -0
- package/cjs/KeyboardKey/index.js +26 -0
- package/cjs/Modal/Modal.js +24 -4
- package/cjs/ProgressSpinner/ProgressSpinner.js +4 -1
- package/cjs/RadioGroup/RadioGroup.js +1 -1
- package/cjs/index.d.ts +1 -0
- package/cjs/index.js +14 -0
- package/cjs/styles/tailwind.config.js +1 -1
- package/cjs/utilities/utilities.tailwind.d.ts +2 -0
- package/cjs/utilities/utilities.tailwind.js +32 -0
- package/esm/Input/Input.js +1 -1
- package/esm/Input/Input.tailwind.js +0 -3
- package/esm/KeyboardKey/KeyboardKey.d.ts +6 -0
- package/esm/KeyboardKey/KeyboardKey.js +28 -0
- package/esm/KeyboardKey/KeyboardKey.tailwind.d.ts +5 -0
- package/esm/KeyboardKey/KeyboardKey.tailwind.js +31 -0
- package/esm/KeyboardKey/index.d.ts +2 -0
- package/esm/KeyboardKey/index.js +2 -0
- package/esm/Modal/Modal.js +23 -5
- package/esm/ProgressSpinner/ProgressSpinner.js +4 -1
- package/esm/RadioGroup/RadioGroup.js +1 -1
- package/esm/index.d.ts +1 -0
- package/esm/index.js +1 -0
- package/esm/styles/tailwind.config.js +1 -1
- package/esm/utilities/utilities.tailwind.d.ts +2 -0
- package/esm/utilities/utilities.tailwind.js +27 -0
- package/package.json +1 -1
- package/satellite.css +37 -4
- package/satellite.min.css +1 -1
package/cjs/Input/Input.js
CHANGED
@@ -129,7 +129,7 @@ var Input = /*#__PURE__*/(0, _react.forwardRef)(function (_ref, externalRef) {
|
|
129
129
|
var StatusIcon = status === "invalid" ? InvalidIcon : status === "validated" ? ValidatedIcon : _react["default"].Fragment;
|
130
130
|
var clearable = typeof clearableProp === "boolean" ? clearableProp : type === "search";
|
131
131
|
return /*#__PURE__*/_react["default"].createElement("div", {
|
132
|
-
className: (0, _classnames["default"])((0, _satellitePrefixer["default"])(_templateObject7 || (_templateObject7 = (0, _taggedTemplateLiteral2["default"])(["\n
|
132
|
+
className: (0, _classnames["default"])((0, _satellitePrefixer["default"])(_templateObject7 || (_templateObject7 = (0, _taggedTemplateLiteral2["default"])(["\n input no-search-input-decoration group\n ", "\n ", "\n "])), focused && "input-focused", disabled && "input-disabled"), VARIANT_CLASSNAMES[variant], STATUS_CLASSNAMES[status], className),
|
133
133
|
style: style,
|
134
134
|
onClick: function onClick() {
|
135
135
|
var _inputRef$current;
|
@@ -39,9 +39,6 @@ var inputPlugin = function inputPlugin(_ref) {
|
|
39
39
|
"-webkit-appearance": "none",
|
40
40
|
margin: 0
|
41
41
|
},
|
42
|
-
'&[type="search"]::-webkit-search-decoration, &[type="search"]::-webkit-search-cancel-button, &[type="search"]::-webkit-search-results-button, &[type="search"]::-webkit-search-results-decoration': {
|
43
|
-
"-webkit-appearance": "none"
|
44
|
-
},
|
45
42
|
"&:focus": {
|
46
43
|
outline: "none"
|
47
44
|
},
|
@@ -0,0 +1,50 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
4
|
+
|
5
|
+
var _typeof = require("@babel/runtime/helpers/typeof");
|
6
|
+
|
7
|
+
Object.defineProperty(exports, "__esModule", {
|
8
|
+
value: true
|
9
|
+
});
|
10
|
+
exports.KeyboardKey = void 0;
|
11
|
+
|
12
|
+
var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
|
13
|
+
|
14
|
+
var _react = _interopRequireWildcard(require("react"));
|
15
|
+
|
16
|
+
var _reactFeather = require("react-feather");
|
17
|
+
|
18
|
+
var _classnames = _interopRequireDefault(require("classnames"));
|
19
|
+
|
20
|
+
var _satellitePrefixer = _interopRequireDefault(require("../styles/helpers/satellitePrefixer"));
|
21
|
+
|
22
|
+
var _templateObject;
|
23
|
+
|
24
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
25
|
+
|
26
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
27
|
+
|
28
|
+
var KEY_MAPPINGS = {
|
29
|
+
up: _reactFeather.ArrowUp,
|
30
|
+
down: _reactFeather.ArrowDown,
|
31
|
+
left: _reactFeather.ArrowLeft,
|
32
|
+
right: _reactFeather.ArrowRight,
|
33
|
+
enter: _reactFeather.CornerDownLeft,
|
34
|
+
escape: "esc"
|
35
|
+
};
|
36
|
+
|
37
|
+
var KeyboardKey = function KeyboardKey(_ref) {
|
38
|
+
var className = _ref.className,
|
39
|
+
value = _ref.value;
|
40
|
+
var mappedValue = !KEY_MAPPINGS[value] ? value : typeof KEY_MAPPINGS[value] === "string" ? KEY_MAPPINGS[value] : /*#__PURE__*/(0, _react.createElement)(KEY_MAPPINGS[value], {
|
41
|
+
"aria-label": value,
|
42
|
+
width: "1em",
|
43
|
+
height: "1em"
|
44
|
+
});
|
45
|
+
return /*#__PURE__*/_react["default"].createElement("kbd", {
|
46
|
+
className: (0, _classnames["default"])((0, _satellitePrefixer["default"])(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2["default"])(["keyboard-key "]))), className)
|
47
|
+
}, mappedValue);
|
48
|
+
};
|
49
|
+
|
50
|
+
exports.KeyboardKey = KeyboardKey;
|
@@ -0,0 +1,33 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
// @ts-check
|
4
|
+
|
5
|
+
/**
|
6
|
+
* @type {import('../tailwind-types').TailwindPlugin}
|
7
|
+
*/
|
8
|
+
var keyboardKeyPlugin = function keyboardKeyPlugin(_ref) {
|
9
|
+
var addComponents = _ref.addComponents,
|
10
|
+
theme = _ref.theme;
|
11
|
+
addComponents({
|
12
|
+
".keyboard-key": {
|
13
|
+
borderRadius: theme("borderRadius.DEFAULT"),
|
14
|
+
height: 20,
|
15
|
+
minWidth: 20,
|
16
|
+
padding: "0 4px",
|
17
|
+
display: "inline-flex",
|
18
|
+
textAlign: "center",
|
19
|
+
alignItems: "center",
|
20
|
+
justifyContent: "center",
|
21
|
+
fontFamily: theme("fontFamily.mono"),
|
22
|
+
// Matches typo-subdued
|
23
|
+
color: theme("colors.grey.600"),
|
24
|
+
// Should match display-caption
|
25
|
+
fontSize: theme("fontSize.sm"),
|
26
|
+
lineHeight: theme("lineHeight.sm"),
|
27
|
+
background: "linear-gradient(134deg, #e6e7ec 0%, #ffffff 70%)",
|
28
|
+
boxShadow: "\n 2px 1px 4px -2px rgba(35, 38, 59, 0.24),\n inset -0.6px -0.6px 1px #dcdde7, inset 0.6px 0.6px 1px #ffffff\n "
|
29
|
+
}
|
30
|
+
});
|
31
|
+
};
|
32
|
+
|
33
|
+
module.exports = keyboardKeyPlugin;
|
@@ -0,0 +1,26 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
4
|
+
value: true
|
5
|
+
});
|
6
|
+
var _exportNames = {};
|
7
|
+
Object.defineProperty(exports, "default", {
|
8
|
+
enumerable: true,
|
9
|
+
get: function get() {
|
10
|
+
return _KeyboardKey.KeyboardKey;
|
11
|
+
}
|
12
|
+
});
|
13
|
+
|
14
|
+
var _KeyboardKey = require("./KeyboardKey");
|
15
|
+
|
16
|
+
Object.keys(_KeyboardKey).forEach(function (key) {
|
17
|
+
if (key === "default" || key === "__esModule") return;
|
18
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
19
|
+
if (key in exports && exports[key] === _KeyboardKey[key]) return;
|
20
|
+
Object.defineProperty(exports, key, {
|
21
|
+
enumerable: true,
|
22
|
+
get: function get() {
|
23
|
+
return _KeyboardKey[key];
|
24
|
+
}
|
25
|
+
});
|
26
|
+
});
|
package/cjs/Modal/Modal.js
CHANGED
@@ -9,6 +9,8 @@ Object.defineProperty(exports, "__esModule", {
|
|
9
9
|
});
|
10
10
|
exports["default"] = exports.Modal = void 0;
|
11
11
|
|
12
|
+
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
13
|
+
|
12
14
|
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
|
13
15
|
|
14
16
|
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
@@ -35,6 +37,8 @@ var _Card = _interopRequireDefault(require("../Card"));
|
|
35
37
|
|
36
38
|
var _Button = require("../Button");
|
37
39
|
|
40
|
+
var _uniqueId = _interopRequireDefault(require("../utils/uniqueId"));
|
41
|
+
|
38
42
|
var _ModalFooter = _interopRequireDefault(require("./components/ModalFooter"));
|
39
43
|
|
40
44
|
var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7, _templateObject8, _templateObject9, _templateObject10, _templateObject11;
|
@@ -43,6 +47,10 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "functio
|
|
43
47
|
|
44
48
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
45
49
|
|
50
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
51
|
+
|
52
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2["default"])(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
53
|
+
|
46
54
|
var ModalAnimation = function ModalAnimation(props) {
|
47
55
|
return (
|
48
56
|
/*#__PURE__*/
|
@@ -95,6 +103,9 @@ var Modal = function Modal(_ref) {
|
|
95
103
|
var dialogRef = (0, _react.useRef)(null);
|
96
104
|
var mouseDownTargetRef = (0, _react.useRef)(null);
|
97
105
|
var ModalContainer = animate ? ModalAnimation : ModalNoAnimation;
|
106
|
+
var modalTitleId = (0, _react.useMemo)(function () {
|
107
|
+
return (0, _uniqueId["default"])("modal-title");
|
108
|
+
}, []);
|
98
109
|
(0, _useLockBodyScroll["default"])(open);
|
99
110
|
(0, _useKeyPressEvent["default"])("Escape", function () {
|
100
111
|
if (open) onDismiss();
|
@@ -126,15 +137,23 @@ var Modal = function Modal(_ref) {
|
|
126
137
|
modalWrapperRef.removeEventListener("mousedown", onMouseDown);
|
127
138
|
};
|
128
139
|
}, [modalWrapperRef, onDismiss]);
|
140
|
+
|
141
|
+
var modalAccessibilityProps = _objectSpread({
|
142
|
+
role: "dialog"
|
143
|
+
}, title ? {
|
144
|
+
"aria-labelledby": modalTitleId
|
145
|
+
} : {
|
146
|
+
"aria-label": "Modal"
|
147
|
+
});
|
148
|
+
|
129
149
|
return /*#__PURE__*/(0, _reactDom.createPortal)( /*#__PURE__*/_react["default"].createElement(ModalContainer, {
|
130
150
|
"in": open
|
131
151
|
}, /*#__PURE__*/_react["default"].createElement("div", null, /*#__PURE__*/_react["default"].createElement("div", {
|
132
152
|
className: (0, _classnames["default"])((0, _satellitePrefixer["default"])(_templateObject4 || (_templateObject4 = (0, _taggedTemplateLiteral2["default"])(["bg-grey-900 bg-opacity-30 z-modalOverlay inset-x-0 inset-y-0 fixed w-full h-full"]))))
|
133
|
-
}), /*#__PURE__*/_react["default"].createElement("div", {
|
153
|
+
}), /*#__PURE__*/_react["default"].createElement("div", (0, _extends2["default"])({
|
134
154
|
className: (0, _classnames["default"])((0, _satellitePrefixer["default"])(_templateObject5 || (_templateObject5 = (0, _taggedTemplateLiteral2["default"])(["modal-container inset-x-0 inset-y-0 fixed w-full h-full p-4 overflow-x-hidden overflow-y-auto"]))), centerY && (0, _satellitePrefixer["default"])(_templateObject6 || (_templateObject6 = (0, _taggedTemplateLiteral2["default"])(["flex items-center"])))),
|
135
|
-
ref: setModalWrapperRef
|
136
|
-
|
137
|
-
}, /*#__PURE__*/_react["default"].createElement(_Card["default"], {
|
155
|
+
ref: setModalWrapperRef
|
156
|
+
}, modalAccessibilityProps), /*#__PURE__*/_react["default"].createElement(_Card["default"], {
|
138
157
|
ref: dialogRef,
|
139
158
|
elevation: "500",
|
140
159
|
className: (0, _classnames["default"])((0, _satellitePrefixer["default"])(_templateObject7 || (_templateObject7 = (0, _taggedTemplateLiteral2["default"])(["my-6 mx-auto"]))), SIZE_CLASSNAMES[size], className),
|
@@ -142,6 +161,7 @@ var Modal = function Modal(_ref) {
|
|
142
161
|
}, /*#__PURE__*/_react["default"].createElement("header", {
|
143
162
|
className: (0, _satellitePrefixer["default"])(_templateObject8 || (_templateObject8 = (0, _taggedTemplateLiteral2["default"])(["\n px-8 min-h-14\n flex items-center justify-between space-x-2\n ", "\n ", "\n "])), title ? "border-b border-grey-100" : "justify-end", !title && hideCloseIcon && "hidden")
|
144
163
|
}, title && /*#__PURE__*/_react["default"].createElement("h2", {
|
164
|
+
id: modalTitleId,
|
145
165
|
className: (0, _satellitePrefixer["default"])(_templateObject9 || (_templateObject9 = (0, _taggedTemplateLiteral2["default"])(["flex-1 display-heading truncate"])))
|
146
166
|
}, title), !hideCloseIcon && /*#__PURE__*/_react["default"].createElement(_Button.IconButton, {
|
147
167
|
icon: _reactFeather.X,
|
@@ -41,7 +41,10 @@ var ProgressSpinner = function ProgressSpinner(_ref) {
|
|
41
41
|
className: (0, _classnames["default"])((0, _satellitePrefixer["default"])(_templateObject4 || (_templateObject4 = (0, _taggedTemplateLiteral2["default"])(["progress-spinner"]))), align && ALIGN_CLASSNAMES[align], className),
|
42
42
|
viewBox: "".concat(size / 2, " ").concat(size / 2, " ").concat(size, " ").concat(size),
|
43
43
|
width: size,
|
44
|
-
height: size
|
44
|
+
height: size,
|
45
|
+
role: "status",
|
46
|
+
"aria-busy": true,
|
47
|
+
"aria-live": "polite"
|
45
48
|
}), /*#__PURE__*/_react["default"].createElement("title", null, "Loading spinner"), /*#__PURE__*/_react["default"].createElement("circle", {
|
46
49
|
cx: size,
|
47
50
|
cy: size,
|
@@ -47,7 +47,7 @@ var RadioGroupItem = function RadioGroupItem(_ref) {
|
|
47
47
|
var checked = value === contextValue;
|
48
48
|
disabled = contextDisabled || disabled;
|
49
49
|
return /*#__PURE__*/_react["default"].createElement("label", {
|
50
|
-
className: (0, _satellitePrefixer["default"])(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2["default"])(["\n flex items-center justify-between\n min-h-10 px-4 py-2\n
|
50
|
+
className: (0, _satellitePrefixer["default"])(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2["default"])(["\n flex items-center justify-between\n min-h-10 px-4 py-2\n ", "\n ", "\n ", ""])), disabled ? "text-grey-300" : "hover:bg-grey-100", disabled ? "cursor-not-allowed" : "cursor-pointer", textPosition === "right" && "flex-row-reverse")
|
51
51
|
}, /*#__PURE__*/_react["default"].createElement("span", {
|
52
52
|
className: (0, _satellitePrefixer["default"])(_templateObject2 || (_templateObject2 = (0, _taggedTemplateLiteral2["default"])(["flex-1 truncate ", ""])), textPosition === "right" ? "ml-2" : "mr-2")
|
53
53
|
}, children), /*#__PURE__*/_react["default"].createElement(_RadioButton["default"], {
|
package/cjs/index.d.ts
CHANGED
package/cjs/index.js
CHANGED
@@ -352,6 +352,20 @@ Object.keys(_Insert).forEach(function (key) {
|
|
352
352
|
});
|
353
353
|
});
|
354
354
|
|
355
|
+
var _KeyboardKey = require("./KeyboardKey");
|
356
|
+
|
357
|
+
Object.keys(_KeyboardKey).forEach(function (key) {
|
358
|
+
if (key === "default" || key === "__esModule") return;
|
359
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
360
|
+
if (key in exports && exports[key] === _KeyboardKey[key]) return;
|
361
|
+
Object.defineProperty(exports, key, {
|
362
|
+
enumerable: true,
|
363
|
+
get: function get() {
|
364
|
+
return _KeyboardKey[key];
|
365
|
+
}
|
366
|
+
});
|
367
|
+
});
|
368
|
+
|
355
369
|
var _Link = require("./Link");
|
356
370
|
|
357
371
|
Object.keys(_Link).forEach(function (key) {
|
@@ -151,5 +151,5 @@ module.exports = {
|
|
151
151
|
borderWidth: ["responsive", "first"],
|
152
152
|
visibility: ["responsive", "group-hover"]
|
153
153
|
},
|
154
|
-
plugins: [require("./base.tailwind"), typography.plugin, require("../FlexGrid/FlexGrid.tailwind"), require("../AutoComplete/AutoComplete.tailwind"), require("../Button/Button.tailwind"), require("../Card/Card.tailwind"), require("../Checkbox/Checkbox.tailwind"), require("../EmptyState/EmptyState.tailwind"), require("../Flag/Flag.tailwind"), require("../HelpUnderline/HelpUnderline.tailwind"), require("../Input/Input.tailwind"), require("../InstantSearch/InstantSearch.tailwind"), require("../Medallion/Medallion.tailwind"), require("../Modal/Modal.tailwind"), require("../ProgressBar/ProgressBar.tailwind"), require("../ProgressSpinner/ProgressSpinner.tailwind"), require("../RadioGroup/RadioButton.tailwind"), require("../RangeSlider/RangeSlider.tailwind"), require("../ScrollIndicator/ScrollIndicator.tailwind"), require("../Select/Select.tailwind"), require("../Sidebar/Sidebar.tailwind"), require("../Switch/Switch.tailwind"), require("../Tabs/Tabs.tailwind"), require("../Tables/DataTable/DataTable.tailwind"), require("../Tables/Table/Table.tailwind"), require("../Tag/Tag.tailwind"), require("../TextArea/TextArea.tailwind"), require("../Toggle/Toggle.tailwind"), require("../Tooltip/Tooltip.tailwind"), require("../UserContent/UserContent.tailwind"), require("../DatePicker/DatePicker.tailwind")]
|
154
|
+
plugins: [require("./base.tailwind"), require("../utilities/utilities.tailwind"), typography.plugin, require("../FlexGrid/FlexGrid.tailwind"), require("../AutoComplete/AutoComplete.tailwind"), require("../Button/Button.tailwind"), require("../Card/Card.tailwind"), require("../Checkbox/Checkbox.tailwind"), require("../EmptyState/EmptyState.tailwind"), require("../Flag/Flag.tailwind"), require("../HelpUnderline/HelpUnderline.tailwind"), require("../Input/Input.tailwind"), require("../InstantSearch/InstantSearch.tailwind"), require("../KeyboardKey/KeyboardKey.tailwind"), require("../Medallion/Medallion.tailwind"), require("../Modal/Modal.tailwind"), require("../ProgressBar/ProgressBar.tailwind"), require("../ProgressSpinner/ProgressSpinner.tailwind"), require("../RadioGroup/RadioButton.tailwind"), require("../RangeSlider/RangeSlider.tailwind"), require("../ScrollIndicator/ScrollIndicator.tailwind"), require("../Select/Select.tailwind"), require("../Sidebar/Sidebar.tailwind"), require("../Switch/Switch.tailwind"), require("../Tabs/Tabs.tailwind"), require("../Tables/DataTable/DataTable.tailwind"), require("../Tables/Table/Table.tailwind"), require("../Tag/Tag.tailwind"), require("../TextArea/TextArea.tailwind"), require("../Toggle/Toggle.tailwind"), require("../Tooltip/Tooltip.tailwind"), require("../UserContent/UserContent.tailwind"), require("../DatePicker/DatePicker.tailwind")]
|
155
155
|
};
|
@@ -0,0 +1,32 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
4
|
+
|
5
|
+
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
6
|
+
|
7
|
+
// @ts-check
|
8
|
+
|
9
|
+
/**
|
10
|
+
* @type {import('../tailwind-types').TailwindPlugin}
|
11
|
+
*/
|
12
|
+
module.exports = function (_ref) {
|
13
|
+
var addUtilities = _ref.addUtilities;
|
14
|
+
addUtilities({
|
15
|
+
".no-scrollbar": {
|
16
|
+
// for Firefox
|
17
|
+
"scrollbar-width": "none",
|
18
|
+
// for Internet Explorer, Edge
|
19
|
+
"-ms-overflow-style": "none",
|
20
|
+
// for Chrome, Safari, and Opera
|
21
|
+
"&::-webkit-scrollbar": {
|
22
|
+
display: "none",
|
23
|
+
width: 0
|
24
|
+
}
|
25
|
+
},
|
26
|
+
".no-search-input-decoration": {
|
27
|
+
"&[type='search']": (0, _defineProperty2["default"])({}, "&::-webkit-search-decoration,\n &::-webkit-search-cancel-button,\n &::-webkit-search-results-button,\n &::-webkit-search-results-decoration", {
|
28
|
+
display: "none"
|
29
|
+
})
|
30
|
+
}
|
31
|
+
});
|
32
|
+
};
|
package/esm/Input/Input.js
CHANGED
@@ -101,7 +101,7 @@ export var Input = /*#__PURE__*/forwardRef(function (_ref, externalRef) {
|
|
101
101
|
var StatusIcon = status === "invalid" ? InvalidIcon : status === "validated" ? ValidatedIcon : React.Fragment;
|
102
102
|
var clearable = typeof clearableProp === "boolean" ? clearableProp : type === "search";
|
103
103
|
return /*#__PURE__*/React.createElement("div", {
|
104
|
-
className: cx(stl(_templateObject7 || (_templateObject7 = _taggedTemplateLiteral(["\n
|
104
|
+
className: cx(stl(_templateObject7 || (_templateObject7 = _taggedTemplateLiteral(["\n input no-search-input-decoration group\n ", "\n ", "\n "])), focused && "input-focused", disabled && "input-disabled"), VARIANT_CLASSNAMES[variant], STATUS_CLASSNAMES[status], className),
|
105
105
|
style: style,
|
106
106
|
onClick: function onClick() {
|
107
107
|
var _inputRef$current;
|
@@ -37,9 +37,6 @@ var inputPlugin = function inputPlugin(_ref) {
|
|
37
37
|
"-webkit-appearance": "none",
|
38
38
|
margin: 0
|
39
39
|
},
|
40
|
-
'&[type="search"]::-webkit-search-decoration, &[type="search"]::-webkit-search-cancel-button, &[type="search"]::-webkit-search-results-button, &[type="search"]::-webkit-search-results-decoration': {
|
41
|
-
"-webkit-appearance": "none"
|
42
|
-
},
|
43
40
|
"&:focus": {
|
44
41
|
outline: "none"
|
45
42
|
},
|
@@ -0,0 +1,28 @@
|
|
1
|
+
import _taggedTemplateLiteral from "@babel/runtime/helpers/taggedTemplateLiteral";
|
2
|
+
|
3
|
+
var _templateObject;
|
4
|
+
|
5
|
+
import React, { createElement } from "react";
|
6
|
+
import { ArrowUp, ArrowDown, ArrowLeft, ArrowRight, CornerDownLeft } from "react-feather";
|
7
|
+
import cx from "classnames";
|
8
|
+
import stl from "../styles/helpers/satellitePrefixer";
|
9
|
+
var KEY_MAPPINGS = {
|
10
|
+
up: ArrowUp,
|
11
|
+
down: ArrowDown,
|
12
|
+
left: ArrowLeft,
|
13
|
+
right: ArrowRight,
|
14
|
+
enter: CornerDownLeft,
|
15
|
+
escape: "esc"
|
16
|
+
};
|
17
|
+
export var KeyboardKey = function KeyboardKey(_ref) {
|
18
|
+
var className = _ref.className,
|
19
|
+
value = _ref.value;
|
20
|
+
var mappedValue = !KEY_MAPPINGS[value] ? value : typeof KEY_MAPPINGS[value] === "string" ? KEY_MAPPINGS[value] : /*#__PURE__*/createElement(KEY_MAPPINGS[value], {
|
21
|
+
"aria-label": value,
|
22
|
+
width: "1em",
|
23
|
+
height: "1em"
|
24
|
+
});
|
25
|
+
return /*#__PURE__*/React.createElement("kbd", {
|
26
|
+
className: cx(stl(_templateObject || (_templateObject = _taggedTemplateLiteral(["keyboard-key "]))), className)
|
27
|
+
}, mappedValue);
|
28
|
+
};
|
@@ -0,0 +1,31 @@
|
|
1
|
+
// @ts-check
|
2
|
+
|
3
|
+
/**
|
4
|
+
* @type {import('../tailwind-types').TailwindPlugin}
|
5
|
+
*/
|
6
|
+
var keyboardKeyPlugin = function keyboardKeyPlugin(_ref) {
|
7
|
+
var addComponents = _ref.addComponents,
|
8
|
+
theme = _ref.theme;
|
9
|
+
addComponents({
|
10
|
+
".keyboard-key": {
|
11
|
+
borderRadius: theme("borderRadius.DEFAULT"),
|
12
|
+
height: 20,
|
13
|
+
minWidth: 20,
|
14
|
+
padding: "0 4px",
|
15
|
+
display: "inline-flex",
|
16
|
+
textAlign: "center",
|
17
|
+
alignItems: "center",
|
18
|
+
justifyContent: "center",
|
19
|
+
fontFamily: theme("fontFamily.mono"),
|
20
|
+
// Matches typo-subdued
|
21
|
+
color: theme("colors.grey.600"),
|
22
|
+
// Should match display-caption
|
23
|
+
fontSize: theme("fontSize.sm"),
|
24
|
+
lineHeight: theme("lineHeight.sm"),
|
25
|
+
background: "linear-gradient(134deg, #e6e7ec 0%, #ffffff 70%)",
|
26
|
+
boxShadow: "\n 2px 1px 4px -2px rgba(35, 38, 59, 0.24),\n inset -0.6px -0.6px 1px #dcdde7, inset 0.6px 0.6px 1px #ffffff\n "
|
27
|
+
}
|
28
|
+
});
|
29
|
+
};
|
30
|
+
|
31
|
+
export default keyboardKeyPlugin;
|
package/esm/Modal/Modal.js
CHANGED
@@ -1,10 +1,15 @@
|
|
1
|
+
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
1
2
|
import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
|
2
3
|
import _extends from "@babel/runtime/helpers/extends";
|
3
4
|
import _taggedTemplateLiteral from "@babel/runtime/helpers/taggedTemplateLiteral";
|
4
5
|
|
5
6
|
var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7, _templateObject8, _templateObject9, _templateObject10, _templateObject11;
|
6
7
|
|
7
|
-
|
8
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
9
|
+
|
10
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
11
|
+
|
12
|
+
import React, { useRef, useState, useEffect, useMemo } from "react";
|
8
13
|
import { createPortal } from "react-dom";
|
9
14
|
import { CSSTransition } from "react-transition-group";
|
10
15
|
import useKeyPressEvent from "react-use/lib/useKeyPressEvent";
|
@@ -14,6 +19,7 @@ import { X } from "react-feather";
|
|
14
19
|
import stl from "../styles/helpers/satellitePrefixer";
|
15
20
|
import Card from "../Card";
|
16
21
|
import { IconButton } from "../Button";
|
22
|
+
import uniqueId from "../utils/uniqueId";
|
17
23
|
import ModalFooter from "./components/ModalFooter";
|
18
24
|
|
19
25
|
var ModalAnimation = function ModalAnimation(props) {
|
@@ -67,6 +73,9 @@ export var Modal = function Modal(_ref) {
|
|
67
73
|
var dialogRef = useRef(null);
|
68
74
|
var mouseDownTargetRef = useRef(null);
|
69
75
|
var ModalContainer = animate ? ModalAnimation : ModalNoAnimation;
|
76
|
+
var modalTitleId = useMemo(function () {
|
77
|
+
return uniqueId("modal-title");
|
78
|
+
}, []);
|
70
79
|
useLockBodyScroll(open);
|
71
80
|
useKeyPressEvent("Escape", function () {
|
72
81
|
if (open) onDismiss();
|
@@ -98,15 +107,23 @@ export var Modal = function Modal(_ref) {
|
|
98
107
|
modalWrapperRef.removeEventListener("mousedown", onMouseDown);
|
99
108
|
};
|
100
109
|
}, [modalWrapperRef, onDismiss]);
|
110
|
+
|
111
|
+
var modalAccessibilityProps = _objectSpread({
|
112
|
+
role: "dialog"
|
113
|
+
}, title ? {
|
114
|
+
"aria-labelledby": modalTitleId
|
115
|
+
} : {
|
116
|
+
"aria-label": "Modal"
|
117
|
+
});
|
118
|
+
|
101
119
|
return /*#__PURE__*/createPortal( /*#__PURE__*/React.createElement(ModalContainer, {
|
102
120
|
"in": open
|
103
121
|
}, /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement("div", {
|
104
122
|
className: cx(stl(_templateObject4 || (_templateObject4 = _taggedTemplateLiteral(["bg-grey-900 bg-opacity-30 z-modalOverlay inset-x-0 inset-y-0 fixed w-full h-full"]))))
|
105
|
-
}), /*#__PURE__*/React.createElement("div", {
|
123
|
+
}), /*#__PURE__*/React.createElement("div", _extends({
|
106
124
|
className: cx(stl(_templateObject5 || (_templateObject5 = _taggedTemplateLiteral(["modal-container inset-x-0 inset-y-0 fixed w-full h-full p-4 overflow-x-hidden overflow-y-auto"]))), centerY && stl(_templateObject6 || (_templateObject6 = _taggedTemplateLiteral(["flex items-center"])))),
|
107
|
-
ref: setModalWrapperRef
|
108
|
-
|
109
|
-
}, /*#__PURE__*/React.createElement(Card, {
|
125
|
+
ref: setModalWrapperRef
|
126
|
+
}, modalAccessibilityProps), /*#__PURE__*/React.createElement(Card, {
|
110
127
|
ref: dialogRef,
|
111
128
|
elevation: "500",
|
112
129
|
className: cx(stl(_templateObject7 || (_templateObject7 = _taggedTemplateLiteral(["my-6 mx-auto"]))), SIZE_CLASSNAMES[size], className),
|
@@ -114,6 +131,7 @@ export var Modal = function Modal(_ref) {
|
|
114
131
|
}, /*#__PURE__*/React.createElement("header", {
|
115
132
|
className: stl(_templateObject8 || (_templateObject8 = _taggedTemplateLiteral(["\n px-8 min-h-14\n flex items-center justify-between space-x-2\n ", "\n ", "\n "])), title ? "border-b border-grey-100" : "justify-end", !title && hideCloseIcon && "hidden")
|
116
133
|
}, title && /*#__PURE__*/React.createElement("h2", {
|
134
|
+
id: modalTitleId,
|
117
135
|
className: stl(_templateObject9 || (_templateObject9 = _taggedTemplateLiteral(["flex-1 display-heading truncate"])))
|
118
136
|
}, title), !hideCloseIcon && /*#__PURE__*/React.createElement(IconButton, {
|
119
137
|
icon: X,
|
@@ -27,7 +27,10 @@ export var ProgressSpinner = function ProgressSpinner(_ref) {
|
|
27
27
|
className: cx(stl(_templateObject4 || (_templateObject4 = _taggedTemplateLiteral(["progress-spinner"]))), align && ALIGN_CLASSNAMES[align], className),
|
28
28
|
viewBox: "".concat(size / 2, " ").concat(size / 2, " ").concat(size, " ").concat(size),
|
29
29
|
width: size,
|
30
|
-
height: size
|
30
|
+
height: size,
|
31
|
+
role: "status",
|
32
|
+
"aria-busy": true,
|
33
|
+
"aria-live": "polite"
|
31
34
|
}), /*#__PURE__*/React.createElement("title", null, "Loading spinner"), /*#__PURE__*/React.createElement("circle", {
|
32
35
|
cx: size,
|
33
36
|
cy: size,
|
@@ -25,7 +25,7 @@ export var RadioGroupItem = function RadioGroupItem(_ref) {
|
|
25
25
|
var checked = value === contextValue;
|
26
26
|
disabled = contextDisabled || disabled;
|
27
27
|
return /*#__PURE__*/React.createElement("label", {
|
28
|
-
className: stl(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n flex items-center justify-between\n min-h-10 px-4 py-2\n
|
28
|
+
className: stl(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n flex items-center justify-between\n min-h-10 px-4 py-2\n ", "\n ", "\n ", ""])), disabled ? "text-grey-300" : "hover:bg-grey-100", disabled ? "cursor-not-allowed" : "cursor-pointer", textPosition === "right" && "flex-row-reverse")
|
29
29
|
}, /*#__PURE__*/React.createElement("span", {
|
30
30
|
className: stl(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["flex-1 truncate ", ""])), textPosition === "right" ? "ml-2" : "mr-2")
|
31
31
|
}, children), /*#__PURE__*/React.createElement(RadioButton, {
|
package/esm/index.d.ts
CHANGED
package/esm/index.js
CHANGED
@@ -146,5 +146,5 @@ export default {
|
|
146
146
|
borderWidth: ["responsive", "first"],
|
147
147
|
visibility: ["responsive", "group-hover"]
|
148
148
|
},
|
149
|
-
plugins: [require("./base.tailwind"), typography.plugin, require("../FlexGrid/FlexGrid.tailwind"), require("../AutoComplete/AutoComplete.tailwind"), require("../Button/Button.tailwind"), require("../Card/Card.tailwind"), require("../Checkbox/Checkbox.tailwind"), require("../EmptyState/EmptyState.tailwind"), require("../Flag/Flag.tailwind"), require("../HelpUnderline/HelpUnderline.tailwind"), require("../Input/Input.tailwind"), require("../InstantSearch/InstantSearch.tailwind"), require("../Medallion/Medallion.tailwind"), require("../Modal/Modal.tailwind"), require("../ProgressBar/ProgressBar.tailwind"), require("../ProgressSpinner/ProgressSpinner.tailwind"), require("../RadioGroup/RadioButton.tailwind"), require("../RangeSlider/RangeSlider.tailwind"), require("../ScrollIndicator/ScrollIndicator.tailwind"), require("../Select/Select.tailwind"), require("../Sidebar/Sidebar.tailwind"), require("../Switch/Switch.tailwind"), require("../Tabs/Tabs.tailwind"), require("../Tables/DataTable/DataTable.tailwind"), require("../Tables/Table/Table.tailwind"), require("../Tag/Tag.tailwind"), require("../TextArea/TextArea.tailwind"), require("../Toggle/Toggle.tailwind"), require("../Tooltip/Tooltip.tailwind"), require("../UserContent/UserContent.tailwind"), require("../DatePicker/DatePicker.tailwind")]
|
149
|
+
plugins: [require("./base.tailwind"), require("../utilities/utilities.tailwind"), typography.plugin, require("../FlexGrid/FlexGrid.tailwind"), require("../AutoComplete/AutoComplete.tailwind"), require("../Button/Button.tailwind"), require("../Card/Card.tailwind"), require("../Checkbox/Checkbox.tailwind"), require("../EmptyState/EmptyState.tailwind"), require("../Flag/Flag.tailwind"), require("../HelpUnderline/HelpUnderline.tailwind"), require("../Input/Input.tailwind"), require("../InstantSearch/InstantSearch.tailwind"), require("../KeyboardKey/KeyboardKey.tailwind"), require("../Medallion/Medallion.tailwind"), require("../Modal/Modal.tailwind"), require("../ProgressBar/ProgressBar.tailwind"), require("../ProgressSpinner/ProgressSpinner.tailwind"), require("../RadioGroup/RadioButton.tailwind"), require("../RangeSlider/RangeSlider.tailwind"), require("../ScrollIndicator/ScrollIndicator.tailwind"), require("../Select/Select.tailwind"), require("../Sidebar/Sidebar.tailwind"), require("../Switch/Switch.tailwind"), require("../Tabs/Tabs.tailwind"), require("../Tables/DataTable/DataTable.tailwind"), require("../Tables/Table/Table.tailwind"), require("../Tag/Tag.tailwind"), require("../TextArea/TextArea.tailwind"), require("../Toggle/Toggle.tailwind"), require("../Tooltip/Tooltip.tailwind"), require("../UserContent/UserContent.tailwind"), require("../DatePicker/DatePicker.tailwind")]
|
150
150
|
};
|
@@ -0,0 +1,27 @@
|
|
1
|
+
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
2
|
+
// @ts-check
|
3
|
+
|
4
|
+
/**
|
5
|
+
* @type {import('../tailwind-types').TailwindPlugin}
|
6
|
+
*/
|
7
|
+
export default (function (_ref) {
|
8
|
+
var addUtilities = _ref.addUtilities;
|
9
|
+
addUtilities({
|
10
|
+
".no-scrollbar": {
|
11
|
+
// for Firefox
|
12
|
+
"scrollbar-width": "none",
|
13
|
+
// for Internet Explorer, Edge
|
14
|
+
"-ms-overflow-style": "none",
|
15
|
+
// for Chrome, Safari, and Opera
|
16
|
+
"&::-webkit-scrollbar": {
|
17
|
+
display: "none",
|
18
|
+
width: 0
|
19
|
+
}
|
20
|
+
},
|
21
|
+
".no-search-input-decoration": {
|
22
|
+
"&[type='search']": _defineProperty({}, "&::-webkit-search-decoration,\n &::-webkit-search-cancel-button,\n &::-webkit-search-results-button,\n &::-webkit-search-results-decoration", {
|
23
|
+
display: "none"
|
24
|
+
})
|
25
|
+
}
|
26
|
+
});
|
27
|
+
});
|
package/package.json
CHANGED
package/satellite.css
CHANGED
@@ -1524,10 +1524,6 @@ html, body {
|
|
1524
1524
|
margin: 0;
|
1525
1525
|
}
|
1526
1526
|
|
1527
|
-
.stl-input input[type="search"]::-webkit-search-decoration, .stl-input input[type="search"]::-webkit-search-cancel-button, .stl-input input[type="search"]::-webkit-search-results-button, .stl-input input[type="search"]::-webkit-search-results-decoration {
|
1528
|
-
-webkit-appearance: none;
|
1529
|
-
}
|
1530
|
-
|
1531
1527
|
.stl-input input:focus {
|
1532
1528
|
outline: none;
|
1533
1529
|
}
|
@@ -2065,6 +2061,26 @@ html, body {
|
|
2065
2061
|
display: inline-block;
|
2066
2062
|
}
|
2067
2063
|
|
2064
|
+
.stl-keyboard-key {
|
2065
|
+
border-radius: 3px;
|
2066
|
+
height: 20px;
|
2067
|
+
min-width: 20px;
|
2068
|
+
padding: 0 4px;
|
2069
|
+
display: inline-flex;
|
2070
|
+
text-align: center;
|
2071
|
+
align-items: center;
|
2072
|
+
justify-content: center;
|
2073
|
+
font-family: Fira Code, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
|
2074
|
+
color: #5a5e9a;
|
2075
|
+
font-size: 0.75rem;
|
2076
|
+
line-height: 1rem;
|
2077
|
+
background: linear-gradient(134deg, #e6e7ec 0%, #ffffff 70%);
|
2078
|
+
box-shadow:
|
2079
|
+
2px 1px 4px -2px rgba(35, 38, 59, 0.24),
|
2080
|
+
inset -0.6px -0.6px 1px #dcdde7, inset 0.6px 0.6px 1px #ffffff
|
2081
|
+
;
|
2082
|
+
}
|
2083
|
+
|
2068
2084
|
.stl-medallion {
|
2069
2085
|
height: 40px;
|
2070
2086
|
width: 40px;
|
@@ -35391,6 +35407,23 @@ input:disabled ~ .stl-toggle {
|
|
35391
35407
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
35392
35408
|
}
|
35393
35409
|
|
35410
|
+
.stl-no-scrollbar {
|
35411
|
+
scrollbar-width: none;
|
35412
|
+
-ms-overflow-style: none;
|
35413
|
+
}
|
35414
|
+
|
35415
|
+
.stl-no-scrollbar::-webkit-scrollbar {
|
35416
|
+
display: none;
|
35417
|
+
width: 0;
|
35418
|
+
}
|
35419
|
+
|
35420
|
+
.stl-no-search-input-decoration[type='search']::-webkit-search-decoration,
|
35421
|
+
.stl-no-search-input-decoration[type='search']::-webkit-search-cancel-button,
|
35422
|
+
.stl-no-search-input-decoration[type='search']::-webkit-search-results-button,
|
35423
|
+
.stl-no-search-input-decoration[type='search']::-webkit-search-results-decoration {
|
35424
|
+
display: none;
|
35425
|
+
}
|
35426
|
+
|
35394
35427
|
.stl-typo-reversed {
|
35395
35428
|
color: #ffffff;
|
35396
35429
|
}
|
package/satellite.min.css
CHANGED
@@ -2,4 +2,4 @@
|
|
2
2
|
|
3
3
|
/*! tailwindcss v2.2.19 | MIT License | https://tailwindcss.com*/
|
4
4
|
|
5
|
-
/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */html{-webkit-text-size-adjust:100%;line-height:1.15;-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji;margin:0}hr{color:inherit;height:0}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}::-moz-focus-inner{border-style:none;padding:0}:-moz-focusring{outline:1px dotted ButtonText}:-moz-ui-invalid{box-shadow:none}legend{padding:0}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}button{background-color:transparent;background-image:none}fieldset,ol,ul{margin:0;padding:0}ol,ul{list-style:none}html{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5}body{font-family:inherit;line-height:inherit}*,:after,:before{border:0 solid;box-sizing:border-box}hr{border-top-width:1px}img{border-style:solid}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#a1a1aa;opacity:1}input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#a1a1aa;opacity:1}input::placeholder,textarea::placeholder{color:#a1a1aa;opacity:1}[role=button],button{cursor:pointer}:-moz-focusring{outline:auto}table{border-collapse:collapse}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}button,input,optgroup,select,textarea{color:inherit;line-height:inherit;padding:0}code,kbd,pre,samp{font-family:Fira Code,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]{display:none}*,:after,:before{border-color:currentColor}body,html{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;text-size-adjust:100%;text-rendering:optimizeLegibility}::-moz-selection{background:#3c4fe0;color:#fff}::selection{background:#3c4fe0;color:#fff}a{color:#3c4fe0}a:hover{text-decoration:underline}body,html{--tw-text-opacity:1;color:rgba(35,38,59,var(--tw-text-opacity))}.stl-container{width:100%}@media (min-width:640px){.stl-container{max-width:640px}}@media (min-width:768px){.stl-container{max-width:768px}}@media (min-width:1024px){.stl-container{max-width:1024px}}@media (min-width:1280px){.stl-container{max-width:1280px}}@media (min-width:1536px){.stl-container{max-width:1536px}}.stl-display-xlarge{font-size:1.75rem;font-weight:600;line-height:2rem}.stl-display-large{font-size:1.625rem;font-weight:600;line-height:2rem}.stl-display-medium{font-size:1.25rem;font-weight:400;line-height:2rem}.stl-display-small{font-size:1rem;font-weight:400;line-height:1.5rem}.stl-display-heading{font-size:1rem;font-weight:600;line-height:1.5rem}.stl-display-subheading{font-size:.8125rem;font-weight:600;line-height:1rem;text-transform:uppercase}.stl-display-body{font-size:1rem;font-weight:400;line-height:1.5rem}.stl-display-caption{font-size:.8125rem;font-weight:400;line-height:1.25rem}.stl-display-code{font-family:Fira Code,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1rem;font-weight:400;line-height:1.5rem}@media (min-width:768px){.stl-display-xlarge{font-size:2.625rem;font-weight:600;line-height:2.75rem}.stl-display-large{font-size:1.75rem;font-weight:600;line-height:2rem}.stl-display-medium{font-size:1.625rem;font-weight:600;line-height:2rem}.stl-display-small{font-size:1.25rem;font-weight:400;line-height:1.75rem}.stl-display-heading{font-size:1rem;font-weight:600;line-height:1.5rem}.stl-display-subheading{font-size:.75rem;font-weight:600;line-height:1rem;text-transform:uppercase}.stl-display-body{font-size:.875rem;font-weight:400;line-height:1.25rem}.stl-display-caption{font-size:.75rem;font-weight:400;line-height:1rem}.stl-display-code{font-family:Fira Code,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:.875rem;font-weight:400;line-height:1.25rem}}.stl-flex-grid-inline{display:inline-block}.stl-flex-grid-inner>*{flex:0 0 auto;max-width:100%;min-width:0}.stl-flex-grid-d-fill>*{flex:1 1 auto}.stl-flex-grid-d-fill-even>*{flex:1 1 0%}@supports ((min-width:-webkit-fit-content) or (min-width:-moz-fit-content) or (min-width:fit-content)){.stl-flex-grid-d-fill-even{min-width:-webkit-fit-content;min-width:-moz-fit-content;min-width:fit-content}}.stl-flex-grid-sm{margin-left:-.5rem;margin-top:-.5rem}.stl-flex-grid-sm>*{margin-left:.5rem;margin-top:.5rem}.stl-flex-grid-md{margin-left:-1rem;margin-top:-1rem}.stl-flex-grid-md>*{margin-left:1rem;margin-top:1rem}.stl-flex-grid-lg{margin-left:-1.5rem;margin-top:-1.5rem}.stl-flex-grid-lg>*{margin-left:1.5rem;margin-top:1.5rem}.stl-flex-grid-xl{margin-left:-2rem;margin-top:-2rem}.stl-flex-grid-xl>*{margin-left:2rem;margin-top:2rem}.stl-autocomplete-container{align-items:center;background-color:#fff;border:1px solid #d6d6e7;border-radius:3px;box-shadow:inset 0 1px 4px 0 rgba(119,122,175,.3);cursor:text;display:flex;font-size:.875rem;line-height:1.25rem;min-height:2.5rem;overflow:hidden;padding:0 1rem;transition:all .1s ease-in-out;width:100%}.stl-autocomplete-container:after{content:" ";display:block;font-size:0;min-height:30px}.stl-autocomplete-container.stl-autocomplete-large{min-height:3rem}.stl-autocomplete-container.stl-autocomplete-large:after{min-height:38px}.stl-autocomplete-container:focus-within,.stl-autocomplete-focused{border-color:#3c4fe0;box-shadow:0 1px 0 0 rgba(35,38,59,.05)}.stl-autocomplete-disabled{background-image:linear-gradient(-180deg,#fff,#f5f5fa);border-color:#efeff5;box-shadow:none;cursor:not-allowed}.stl-autocomplete-disabled .stl-autocomplete-input::-moz-placeholder{color:#b6b7d5;pointer-events:none}.stl-autocomplete-disabled .stl-autocomplete-input:-ms-input-placeholder{color:#b6b7d5;pointer-events:none}.stl-autocomplete-disabled .stl-autocomplete-input,.stl-autocomplete-disabled .stl-autocomplete-input::placeholder{color:#b6b7d5;pointer-events:none}.stl-autocomplete-invalid:not(.stl-autocomplete-disabled){background-color:#ffe6e9;border-color:#d4142a}.stl-autocomplete-nowrap{-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;overflow-x:scroll;scrollbar-width:none}.stl-autocomplete-nowrap::-webkit-scrollbar{height:0;width:0}.stl-autocomplete-input{background-color:transparent;caret-color:#5a5e9a;color:#23263b;flex:1;min-width:10ch}.stl-autocomplete-input:focus{outline:none}.stl-autocomplete-input::-moz-placeholder{color:#5a5e9a}.stl-autocomplete-input:-ms-input-placeholder{color:#5a5e9a}.stl-autocomplete-input::placeholder{color:#5a5e9a}.stl-autocomplete-result:not([disabled]) em{background:#a3acff;font-style:normal}.stl-btn{border-radius:3px;cursor:pointer;position:relative}.stl-btn,.stl-btn:hover{text-decoration:none}.stl-btn:focus{outline:none}.stl-btn-disabled{cursor:not-allowed}.stl-btn-subtle{color:#5a5e9a}.stl-btn-subtle:hover{background:rgba(182,183,213,.15)}.stl-btn-subtle:focus{box-shadow:0 0 0 1px #3c4fe0}.stl-btn-subtle.stl-btn-active,.stl-btn-subtle:active{background:#f2f3ff;box-shadow:none;color:#3c4fe0}.stl-btn-subtle.stl-btn-disabled,.stl-btn-subtle:disabled{background:none;box-shadow:none;color:#b6b7d5}.stl-btn-neutral{background-color:#fff;background-image:linear-gradient(-180deg,#fff,#fcfcfd);border:1px solid #d6d6e7;box-shadow:0 1px 0 0 rgba(35,38,59,.05);color:#23263b}.stl-btn-neutral:hover{border-color:#d6d6e7}.stl-btn-neutral:focus,.stl-btn-neutral:hover{background-image:linear-gradient(-180deg,#fff,#f5f5fa)}.stl-btn-neutral:focus{border-color:#3c4fe0;box-shadow:0 0 0 1px #3c4fe0,0 2px 0 1px rgba(35,38,59,.05)}.stl-btn-neutral.stl-btn-active,.stl-btn-neutral:active{border-color:#d6d6e7;box-shadow:inset 0 1px 4px 0 rgba(119,122,175,.4),inset 0 1px 1px 0 rgba(119,122,175,.4),0 1px 0 0 rgba(35,38,59,.05)}.stl-btn-neutral.stl-btn-disabled,.stl-btn-neutral:disabled{background-image:linear-gradient(-180deg,#fff,#f5f5fa);border-color:#efeff5;box-shadow:none;color:#b6b7d5}.stl-btn-primary{background-color:#3c4fe0;background-image:linear-gradient(-180deg,#3c4fe0,#2b3cbb);border:1px solid #2b3cbb;color:#fff}.stl-btn-primary,.stl-btn-primary:hover{box-shadow:inset 0 1px 0 0 hsla(0,0%,100%,.06),0 1px 0 0 rgba(35,38,59,.1)}.stl-btn-primary:hover{background-image:linear-gradient(0deg,#1e2b8f,#2b3cbb);border-color:#1e2b8f}.stl-btn-primary:focus{background-image:linear-gradient(0deg,#3c4fe0,#2b3cbb);border-color:#1e2b8f;box-shadow:inset 0 1px 0 0 hsla(0,0%,100%,.06),0 0 0 1px #1e2b8f,0 2px 0 1px rgba(35,38,59,.1)}.stl-btn-primary.stl-btn-active,.stl-btn-primary:active{background:#2b3cbb;border-color:#1e2b8f;box-shadow:inset 0 1px 4px 0 rgba(20,29,97,.4),inset 0 1px 1px 0 rgba(20,29,97,.6),0 1px 0 0 rgba(35,38,59,.05)}.stl-btn-primary.stl-btn-disabled,.stl-btn-primary:disabled{background-color:#b1b9f3;background-image: linear-gradient(0deg,#b1b9f3,#aab1e4) ;border-color:#aab1e4;box-shadow:none}.stl-btn-destructive{background-color:#ee243c;background-image:linear-gradient(-180deg,#ee243c,#d4142a);border:1px solid #d4142a;color:#fff}.stl-btn-destructive,.stl-btn-destructive:hover{box-shadow:inset 0 1px 0 0 hsla(0,0%,100%,.06),0 1px 0 0 rgba(35,38,59,.1)}.stl-btn-destructive:hover{background-image:linear-gradient(0deg,#d4142a,#ab1325);border-color:#ab1325}.stl-btn-destructive:focus{background-image:linear-gradient(0deg,#ee243c,#d4142a);border-color:#ab1325;box-shadow:inset 0 1px 0 0 hsla(0,0%,100%,.06),0 0 0 1px #ab1325,0 2px 0 1px rgba(35,38,59,.1)}.stl-btn-destructive.stl-btn-active,.stl-btn-destructive:active{background-image:#d4142a;border-color:#ab1325;box-shadow:inset 0 1px 4px 0 rgba(131,17,30,.4),inset 0 1px 1px 0 rgba(131,17,30,.6),0 1px 0 0 rgba(35,38,59,.05)}.stl-btn-destructive.stl-btn-disabled,.stl-btn-destructive:disabled{background-color:#f8a7b1;background-image: linear-gradient(0deg,#f8a7b1,#eea1aa) ;border-color:#eea1aa;box-shadow:none}.stl-btn-group{display:flex;flex-wrap:nowrap}.stl-btn-group>.stl-btn:not(:first-child):not(:last-child),.stl-btn-group>:not(:first-child):not(:last-child) .stl-btn{border-radius:0}.stl-btn-group>.stl-btn:first-child,.stl-btn-group>:first-child .stl-btn{border-bottom-right-radius:0;border-top-right-radius:0}.stl-btn-group>.stl-btn:not(:first-child),.stl-btn-group>:not(:first-child) .stl-btn{margin-left:-1px}.stl-btn-group>.stl-btn:last-child,.stl-btn-group>:last-child .stl-btn{border-bottom-left-radius:0;border-top-left-radius:0}.stl-btn-group .stl-btn-active,.stl-btn-group .stl-btn:active,.stl-btn-group .stl-btn:focus{z-index:1}.stl-card{background:#fff;border-radius:3px;overflow:hidden;padding:1.5rem}.stl-card-fullbleed{padding:0}.stl-card-z100{box-shadow:0 0 0 1px rgba(35,38,59,.05),0 1px 3px 0 rgba(35,38,59,.15)}.stl-card-z200{box-shadow:0 0 0 1px rgba(35,38,59,.05),0 4px 8px -2px rgba(35,38,59,.25)}.stl-card-z300{box-shadow:0 0 0 1px rgba(35,38,59,.05),0 8px 16px -4px rgba(35,38,59,.25)}.stl-card-z400{box-shadow:0 0 0 1px rgba(35,38,59,.05),0 12px 24px -6px rgba(35,38,59,.25)}.stl-card-z500{border-radius:8px;box-shadow:0 0 0 1px rgba(35,38,59,.05),0 20px 32px -8px rgba(35,38,59,.25)}.stl-checkbox{align-items:center;background:linear-gradient(180deg,#fff,#f5f5fa);border:1px solid #d6d6e7;border-radius:3px;box-shadow:0 1px 0 0 rgba(35,38,59,.05);color:#3c4fe0;display:flex;flex-shrink:0;height:16px;justify-content:center;overflow:hidden;position:relative;transition:all .25s cubic-bezier(.23,1,.32,1);width:16px}.stl-checkbox:focus-within{border-color:currentColor}.stl-checkbox>.stl-checkbox-icon{color:currentColor;opacity:0;transform:scale(1.8);transition:.15s cubic-bezier(.23,1,.32,1);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.stl-checkbox-invalid:not(.stl-checkbox-disabled){background:#ffe6e9;border-color:currentColor;color:#d4142a}.stl-checkbox-checked,.stl-checkbox-indeterminate{border-color:currentColor;box-shadow:inset 0 1px 0 0 rgba(35,38,59,.05)}.stl-checkbox-checked:focus-within,.stl-checkbox-indeterminate:focus-within{border-color:currentColor;box-shadow:inset 0 1px 0 0 rgba(35,38,59,.05),0 0 0 1px currentColor}.stl-checkbox-checked>.stl-checkbox-icon,.stl-checkbox-indeterminate>.stl-checkbox-icon{opacity:1;transform:scale(1)}.stl-checkbox-disabled{background:linear-gradient(-180deg,#fff,#f5f5fa);border-color:#efeff5;box-shadow:none;color:#efeff5;cursor:not-allowed}.stl-checkbox-icon{stroke-width:3}.stl-empty-state-illustration{min-height:500px;min-width:500px}.stl-flag{width:320px}.stl-flags_item-enter{opacity:.01;transform:translateY(80px)}.stl-flags_item-enter-active{transition:all .5s ease-in}.stl-flags_item-enter-active,.stl-flags_item-exit{opacity:1;transform:translate(0)}.stl-flags_item-exit-active{opacity:.01;transform:translateY(80px);transition:all .5s ease-in}.stl-help-underline{background-image:linear-gradient(90deg,#9698c3 66%,transparent 0);background-position:0 1.04em;background-repeat:repeat-x;background-size:5px 1px;cursor:help}.stl-help-underline:focus,.stl-help-underline:hover{background-image:linear-gradient(90deg,#777aaf 66%,transparent 0)}.stl-input{align-items:center;background-color:#fff;border:1px solid #d6d6e7;border-radius:3px;box-shadow:inset 0 1px 4px 0 rgba(119,122,175,.3);cursor:text;display:flex;font-size:.875rem;line-height:1.25rem;overflow:hidden;position:relative;transition:all .1s ease-in-out}.stl-input input{background:transparent;caret-color:#5a5e9a;color:#23263b;flex:1;min-width:0}.stl-input input[type=number]{-moz-appearance:textfield}.stl-input input[type=number]::-webkit-inner-spin-button,.stl-input input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.stl-input input[type=search]::-webkit-search-cancel-button,.stl-input input[type=search]::-webkit-search-decoration,.stl-input input[type=search]::-webkit-search-results-button,.stl-input input[type=search]::-webkit-search-results-decoration{-webkit-appearance:none}.stl-input input:focus{outline:none}.stl-input input::-moz-placeholder{color:#5a5e9a}.stl-input input:-ms-input-placeholder{color:#5a5e9a}.stl-input input::placeholder{color:#5a5e9a}.stl-input-focused,.stl-input:focus-within{border-color:#3c4fe0;box-shadow:0 1px 0 0 rgba(35,38,59,.05)}.stl-input-disabled{background:linear-gradient(-180deg,#fff,#f5f5fa);border-color:#efeff5;box-shadow:none;cursor:not-allowed}.stl-input-disabled input::-moz-placeholder{color:#b6b7d5;pointer-events:none}.stl-input-disabled input:-ms-input-placeholder{color:#b6b7d5;pointer-events:none}.stl-input-disabled input,.stl-input-disabled input::placeholder{color:#b6b7d5;pointer-events:none}.stl-input-small{height:2rem}.stl-input-medium{height:2.5rem}.stl-input-large{height:3rem}.stl-input-invalid:not(.stl-input-disabled){background-color:#ffe6e9;border-color:#d4142a}.stl-input-spinner{display:flex;flex-direction:column;height:100%;min-width:20px;width:24px}.stl-input-spinner-button{align-items:center;background:linear-gradient(-180deg,#fff,#fcfcfd);border-color:#d6d6e7;border-left:1px #d6d6e7;border-style:solid;display:inline-flex;flex:1;justify-content:center}.stl-input-spinner-button:focus{outline:none}.stl-input-spinner-button:not(:last-child){border-bottom-width:1px}.stl-instantsearch .ais-SearchBox-form{align-items:stretch;background-color:#fff;cursor:text;display:flex;font-size:.875rem;height:2.5rem;line-height:1.25rem;overflow:hidden;position:relative;width:100%}.stl-instantsearch .ais-SearchBox-form:before{background:url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%235a5e9a%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2211%22%20cy%3D%2211%22%20r%3D%228%22%3E%3C%2Fcircle%3E%3Cline%20x1%3D%2221%22%20y1%3D%2221%22%20x2%3D%2216.65%22%20y2%3D%2216.65%22%3E%3C%2Fline%3E%3C%2Fsvg%3E");content:"";height:1rem;left:1rem;margin-top:-.5rem;position:absolute;top:50%;width:1rem}.stl-instantsearch .ais-SearchBox-input{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border:1px solid #d6d6e7;border-radius:3px;box-shadow:inset 0 1px 4px 0 rgba(119,122,175,.3);caret-color:#5a5e9a;color:#23263b;flex:1;min-width:0;padding-left:2.5rem;transition:all .1s ease-in-out}.stl-instantsearch .ais-SearchBox-input::-moz-placeholder{color:#5a5e9a}.stl-instantsearch .ais-SearchBox-input:-ms-input-placeholder{color:#5a5e9a}.stl-instantsearch .ais-SearchBox-input::placeholder{color:#5a5e9a}.stl-instantsearch .ais-SearchBox-input:focus{border-color:#3c4fe0;box-shadow:0 1px 0 0 rgba(35,38,59,.05);outline:none}.stl-instantsearch .ais-SearchBox-input:disabled{background:linear-gradient(-180deg,#fff,#f5f5fa);border-color:#efeff5;box-shadow:none;cursor:not-allowed}.stl-instantsearch .ais-SearchBox-input:disabled::-moz-placeholder{color:#b6b7d5;pointer-events:none}.stl-instantsearch .ais-SearchBox-input:disabled:-ms-input-placeholder{color:#b6b7d5;pointer-events:none}.stl-instantsearch .ais-SearchBox-input:disabled::placeholder{color:#b6b7d5;pointer-events:none}.stl-instantsearch .ais-SearchBox-input::-webkit-search-cancel-button,.stl-instantsearch .ais-SearchBox-input::-webkit-search-decoration,.stl-instantsearch .ais-SearchBox-input::-webkit-search-results-button,.stl-instantsearch .ais-SearchBox-input::-webkit-search-results-decoration{-webkit-appearance:none;appearance:none}.stl-instantsearch .ais-SearchBox-loadingIndicator,.stl-instantsearch .ais-SearchBox-reset,.stl-instantsearch .ais-SearchBox-submit{display:none}.stl-instantsearch .ais-Menu-searchBox,.stl-instantsearch .ais-RefinementList-searchBox{margin-bottom:.5rem}.stl-instantsearch .ais-Menu-searchBox .ais-SearchBox-form,.stl-instantsearch .ais-RefinementList-searchBox .ais-SearchBox-form{height:2rem}.stl-instantsearch .ais-Menu-searchBox .ais-SearchBox-form:before,.stl-instantsearch .ais-RefinementList-searchBox .ais-SearchBox-form:before{left:.5rem}.stl-instantsearch .ais-Menu-searchBox .ais-SearchBox-input,.stl-instantsearch .ais-RefinementList-searchBox .ais-SearchBox-input{padding-left:2rem}.stl-instantsearch .ais-HierarchicalMenu-list--child{padding-left:1rem}.stl-instantsearch .ais-HierarchicalMenu-item,.stl-instantsearch .ais-Menu-item,.stl-instantsearch .ais-RefinementList-item{font-size:.875rem;line-height:1.75rem}.stl-instantsearch .ais-HierarchicalMenu-link,.stl-instantsearch .ais-Menu-link,.stl-instantsearch .ais-RefinementList-label{align-items:center;cursor:pointer;display:flex;flex-wrap:nowrap}.stl-instantsearch .ais-HierarchicalMenu-label,.stl-instantsearch .ais-Menu-label,.stl-instantsearch .ais-RefinementList-labelText{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.stl-instantsearch .ais-HierarchicalMenu-item--selected>.ais-HierarchicalMenu-link>.ais-HierarchicalMenu-label,.stl-instantsearch .ais-Menu-item--selected .ais-Menu-label{font-weight:600}.stl-instantsearch .ais-RefinementList-checkbox{opacity:0;position:absolute}.stl-instantsearch .ais-HierarchicalMenu-label,.stl-instantsearch .ais-RefinementList-labelText{left:-1px;margin-right:-1px;padding-left:1.5rem;position:relative}.stl-instantsearch .ais-HierarchicalMenu-label:before,.stl-instantsearch .ais-RefinementList-labelText:before{content:"";height:1rem;left:1px;margin-top:-.5rem;overflow:hidden;position:absolute;top:50%;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:1rem}.stl-instantsearch .ais-RefinementList-labelText:before{background-color:#fff;background-position:50%;background-size:180%;border:1px solid #d6d6e7;border-radius:3px;box-shadow:inset 0 1px 4px 0 rgba(119,122,175,.4);color:#3c4fe0;transition:all .25s cubic-bezier(.23,1,.32,1)}.stl-instantsearch .ais-RefinementList-item:focus-within .ais-RefinementList-labelText:before{border-color:currentColor}.stl-instantsearch .ais-RefinementList-item--selected .ais-RefinementList-labelText:before{background-image:url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%235468ff%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%2220%206%209%2017%204%2012%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E");background-size:100%;border-color:currentColor;box-shadow:inset 0 1px 0 0 rgba(35,38,59,.05);opacity:1}.stl-instantsearch .ais-RefinementList-item--selected:focus-within .ais-RefinementList-labelText:before{border-color:currentColor;box-shadow:inset 0 1px 0 0 rgba(35,38,59,.05),0 0 0 1px currentColor}.stl-instantsearch .ais-HierarchicalMenu-label:before{background-image:url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23b6b7d5%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%2218%2015%2012%209%206%2015%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E")}.stl-instantsearch .ais-HierarchicalMenu-item--selected>.ais-HierarchicalMenu-link>.ais-HierarchicalMenu-label:before{background-image:url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%235468ff%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E")}.stl-instantsearch .ais-HierarchicalMenu-link:hover>.ais-HierarchicalMenu-label:before,.stl-instantsearch .ais-RefinementList-label:hover .ais-RefinementList-labelText:before{color:#5468ff}.stl-instantsearch .ais-HierarchicalMenu-link:hover{text-decoration:none}.stl-instantsearch .ais-HierarchicalMenu-link:hover>.ais-HierarchicalMenu-label{text-decoration:underline}.stl-instantsearch .ais-HierarchicalMenu-count,.stl-instantsearch .ais-Menu-count,.stl-instantsearch .ais-RefinementList-count{align-items:center;background:#f5f5fa;border:1px solid #b6b7d5;border-radius:99999px;color:#23263b;display:inline-flex;flex-shrink:0;font-size:.75rem;font-weight:400;justify-items:center;line-height:1rem;margin-left:.5rem;overflow:hidden;padding:0 .25rem}.stl-instantsearch .ais-HierarchicalMenu-showMore,.stl-instantsearch .ais-Menu-showMore,.stl-instantsearch .ais-RefinementList-showMore{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;border-radius:3px;color:#5a5e9a;cursor:pointer;display:inline-flex;font-size:.875rem;font-weight:400;height:1.5rem;justify-items:center;line-height:1.25rem;margin-top:1rem;padding:0 1rem;position:relative;text-decoration:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.stl-instantsearch .ais-HierarchicalMenu-showMore:hover,.stl-instantsearch .ais-Menu-showMore:hover,.stl-instantsearch .ais-RefinementList-showMore:hover{background:#f5f5fa;text-decoration:none}.stl-instantsearch .ais-HierarchicalMenu-showMore:focus,.stl-instantsearch .ais-Menu-showMore:focus,.stl-instantsearch .ais-RefinementList-showMore:focus{box-shadow:0 0 0 1px #3c4fe0;outline:none}.stl-instantsearch .ais-HierarchicalMenu-showMore:active,.stl-instantsearch .ais-Menu-showMore:active,.stl-instantsearch .ais-RefinementList-showMore:active{background:#f2f3ff;box-shadow:none;color:#3c4fe0}.stl-instantsearch .ais-HierarchicalMenu-showMore:disabled,.stl-instantsearch .ais-Menu-showMore:disabled,.stl-instantsearch .ais-RefinementList-showMore:disabled{background:none;box-shadow:none;color:#b6b7d5;cursor:not-allowed}.stl-instantsearch .ais-Menu-noResults,.stl-instantsearch .ais-RefinementList-noResults{color:#5a5e9a;font-size:.875rem;line-height:1.25rem;margin-top:1rem}.stl-instantsearch .ais-HitsPerPage-select,.stl-instantsearch .ais-SortBy-select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;background-image: url('data:image/svg+xml;utf8,<svg width="14" height="24" xmlns="http://www.w3.org/2000/svg"><g stroke="%23777aaf" stroke-width="2" fill="none" fill-rule="evenodd"><path d="M13 7L7 1 1 7M1 17l6 6 6-6"/></g></svg>'),linear-gradient(-180deg,#fff,#fcfcfd) ;background-position:right 1rem center,0 0;background-repeat:no-repeat;background-size:10px,auto;border:1px solid #d6d6e7;border-radius:3px;box-shadow:0 1px 0 0 rgba(35,38,59,.05);color:#23263b;cursor:pointer;height:2.5rem;outline:none;padding:0 2.5rem 0 1rem;position:relative;width:100%}.stl-instantsearch .ais-HitsPerPage-select:-moz-focusring,.stl-instantsearch .ais-HitsPerPage-select::-moz-focus-inner,.stl-instantsearch .ais-SortBy-select:-moz-focusring,.stl-instantsearch .ais-SortBy-select::-moz-focus-inner{color:transparent;outline:none;text-shadow:0 0 0 #23263b}.stl-instantsearch .ais-HitsPerPage-select:focus::-ms-value,.stl-instantsearch .ais-SortBy-select:focus::-ms-value{color:#23263b}.stl-instantsearch .ais-HitsPerPage-select>option,.stl-instantsearch .ais-SortBy-select>option{text-shadow:none}.stl-instantsearch .ais-HitsPerPage-select>option:not(:checked),.stl-instantsearch .ais-SortBy-select>option:not(:checked){color:#23263b}.stl-instantsearch .ais-HitsPerPage-select>option:disabled,.stl-instantsearch .ais-SortBy-select>option:disabled{color:#b6b7d5}.stl-instantsearch .ais-HitsPerPage-select:hover,.stl-instantsearch .ais-SortBy-select:hover{background-image: url('data:image/svg+xml;utf8,<svg width="14" height="24" xmlns="http://www.w3.org/2000/svg"><g stroke="%23777aaf" stroke-width="2" fill="none" fill-rule="evenodd"><path d="M13 7L7 1 1 7M1 17l6 6 6-6"/></g></svg>'),linear-gradient(-180deg,#fcfcfd,#f5f5fa) ;border-color:#d6d6e7}.stl-instantsearch .ais-HitsPerPage-select:focus,.stl-instantsearch .ais-SortBy-select:focus{background-image: url('data:image/svg+xml;utf8,<svg width="14" height="24" xmlns="http://www.w3.org/2000/svg"><g stroke="%23777aaf" stroke-width="2" fill="none" fill-rule="evenodd"><path d="M13 7L7 1 1 7M1 17l6 6 6-6"/></g></svg>'),linear-gradient(-180deg,#fff,#f5f5fa) ;border-color:#3c4fe0;box-shadow:0 0 0 1px #3c4fe0,0 2px 0 0 rgba(35,38,59,.05)}.stl-instantsearch .ais-HitsPerPage-select:disabled,.stl-instantsearch .ais-SortBy-select:disabled{background-image: url('data:image/svg+xml;utf8,<svg width="14" height="24" xmlns="http://www.w3.org/2000/svg"><g stroke="%23b6b7d5" stroke-width="2" fill="none" fill-rule="evenodd"><path d="M13 7L7 1 1 7M1 17l6 6 6-6"/></g></svg>'),linear-gradient(-180deg,#fff,#f5f5fa) ;border-color:#efeff5;box-shadow:none;color:#b6b7d5;cursor:not-allowed}.stl-instantsearch .ais-ClearRefinements-button,.stl-instantsearch .ais-InfiniteHits-loadMore,.stl-instantsearch .ais-InfiniteHits-loadPrevious,.stl-instantsearch .ais-Pagination-link{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;background-image:linear-gradient(-180deg,#fff,#fcfcfd);border:1px solid #d6d6e7;border-radius:3px;box-shadow:0 1px 0 0 rgba(35,38,59,.05);color:#23263b;cursor:pointer;display:inline-flex;font-size:.875rem;font-weight:400;height:2rem;justify-items:center;line-height:1.25rem;padding:0 1rem;position:relative;text-decoration:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.stl-instantsearch .ais-ClearRefinements-button:hover,.stl-instantsearch .ais-InfiniteHits-loadMore:hover,.stl-instantsearch .ais-InfiniteHits-loadPrevious:hover,.stl-instantsearch .ais-Pagination-link:hover{background-image:linear-gradient(-180deg,#fff,#f5f5fa);border-color:#d6d6e7}.stl-instantsearch .ais-ClearRefinements-button:focus,.stl-instantsearch .ais-InfiniteHits-loadMore:focus,.stl-instantsearch .ais-InfiniteHits-loadPrevious:focus,.stl-instantsearch .ais-Pagination-link:focus{background-image:linear-gradient(-180deg,#fff,#f5f5fa);border-color:#3c4fe0;box-shadow:0 0 0 1px #3c4fe0,0 2px 0 1px rgba(35,38,59,.05);outline:none;z-index:2}.stl-instantsearch .ais-ClearRefinements-button.ais-Pagination-link--selected,.stl-instantsearch .ais-ClearRefinements-button:active,.stl-instantsearch .ais-InfiniteHits-loadMore.ais-Pagination-link--selected,.stl-instantsearch .ais-InfiniteHits-loadMore:active,.stl-instantsearch .ais-InfiniteHits-loadPrevious.ais-Pagination-link--selected,.stl-instantsearch .ais-InfiniteHits-loadPrevious:active,.stl-instantsearch .ais-Pagination-link.ais-Pagination-link--selected,.stl-instantsearch .ais-Pagination-link:active{border-color:#d6d6e7;box-shadow:inset 0 1px 4px 0 rgba(119,122,175,.4),inset 0 1px 1px 0 rgba(119,122,175,.4),0 1px 0 0 rgba(35,38,59,.05);z-index:1}.stl-instantsearch .ais-ClearRefinements-button:disabled,.stl-instantsearch .ais-InfiniteHits-loadMore:disabled,.stl-instantsearch .ais-InfiniteHits-loadPrevious:disabled,.stl-instantsearch .ais-Pagination-item--disabled .ais-Pagination-link{background-image:linear-gradient(-180deg,#fff,#f5f5fa);border-color:#efeff5;box-shadow:none;color:#b6b7d5;cursor:not-allowed}.stl-instantsearch .ais-Pagination-item:first-child>.ais-Pagination-link{border-radius:3px 0 0 3px}.stl-instantsearch .ais-Pagination-item+.ais-Pagination-item>.ais-Pagination-link{border-radius:0;margin-left:-1px}.stl-instantsearch .ais-Pagination-item:last-child>.ais-Pagination-link{border-radius:0 3px 3px 0}.stl-instantsearch .ais-InfiniteHits-loadMore,.stl-instantsearch .ais-InfiniteHits-loadPrevious{margin:1rem auto}.stl-instantsearch .ais-ClearRefinements-button{width:100%}.stl-instantsearch .ais-Highlight-highlighted{background-color:#f2f3ff;color:#141d61;font-style:normal}.stl-instantsearch .ais-Pagination-item{display:inline-block}.stl-medallion{height:40px;width:40px}.stl-medallion-large{height:72px;width:72px}.stl-medallion-grey{background-image:linear-gradient(180deg,#f5f5fa 0,#d6d6e7);box-shadow:0 4px 8px -2px rgba(33,36,61,.25),inset 0 -2px 2px rgba(182,183,213,.03)}.stl-medallion-pink{background-image:linear-gradient(180deg,#ffeaf6 0,#feb9e2);box-shadow:0 4px 8px -2px rgba(33,36,61,.25),inset 0 -2px 2px rgba(253,137,206,.03)}.stl-medallion-accent{background-image:linear-gradient(180deg,#f2f3ff 0,#cacfff);box-shadow:0 4px 8px -2px rgba(33,36,61,.25),inset 0 -2px 2px rgba(163,172,255,.03)}.stl-medallion-blue{background-image:linear-gradient(180deg,#e8faff 0,#b9efff);box-shadow:0 4px 8px -2px rgba(33,36,61,.25),inset 0 -2px 2px rgba(137,229,255,.03)}.stl-medallion-green{background-image:linear-gradient(180deg,#e6fcf3 0,#c9f8de);box-shadow:0 4px 8px -2px rgba(33,36,61,.25),inset 0 -2px 2px rgba(170,244,200,.03)}.stl-medallion-orange{background-image:linear-gradient(180deg,#fff9ec 0,#ffe9c3);box-shadow:0 4px 8px -2px rgba(33,36,61,.25),inset 0 -2px 2px hsla(35,98%,80%,.03)}.stl-medallion-red{background-image:linear-gradient(180deg,#ffe6e9 0,#febdc5);box-shadow:0 4px 8px -2px rgba(33,36,61,.25),inset 0 -2px 2px rgba(252,149,161,.03)}.stl-medallion-white{background-image:linear-gradient(180deg,#fff 0,#f5f5fa);box-shadow:0 4px 8px -2px rgba(33,36,61,.25),inset 0 -2px 2px rgba(35,38,59,.03)}.stl-modal-container{z-index:400}.stl-modal-dialog-medium{max-width:640px}.stl-modal-dialog-large{max-width:920px}.stl-satellite-modal-appear .stl-modal-container,.stl-satellite-modal-enter .stl-modal-container{opacity:.1;transform:translateY(8px) scale(.94)}.stl-satellite-modal-appear-active .stl-modal-container,.stl-satellite-modal-enter-active .stl-modal-container{opacity:1;transform:translate(0) scale(1);transition:all .2s cubic-bezier(.6,-.28,.735,.045)}.stl-satellite-modal-exit .stl-modal-container{opacity:1;transform:translate(0) scale(1)}.stl-satellite-modal-exit-active .stl-modal-container{opacity:.1;transform:translateY(8px) scale(.94);transition:all .2s cubic-bezier(.6,-.28,.735,.045)}.stl-progress-bar{background:#f5f5fa;border-radius:4px;box-shadow:inset 0 1px 3px 0 rgba(0,0,0,.1),0 .5px 0 0 hsla(0,0%,100%,.05);display:block;height:4px;overflow:hidden;width:100%}.stl-progress-bar-progress{background:#3c4fe0;height:100%}.stl-progress-spinner{stroke:currentColor;-webkit-animation:stl-spinner 1.4s linear infinite;animation:stl-spinner 1.4s linear infinite;color:#3c4fe0}@-webkit-keyframes stl-spinner{0%{stroke-dasharray:1px,200px;stroke-dashoffset:0px;transform:rotate(0deg)}50%{stroke-dasharray:100px,200px;stroke-dashoffset:-15px}to{stroke-dasharray:100px,200px;stroke-dashoffset:-125px;transform:rotate(1turn)}}@keyframes stl-spinner{0%{stroke-dasharray:1px,200px;stroke-dashoffset:0px;transform:rotate(0deg)}50%{stroke-dasharray:100px,200px;stroke-dashoffset:-15px}to{stroke-dasharray:100px,200px;stroke-dashoffset:-125px;transform:rotate(1turn)}}.stl-radio-button{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:#fff;border:1px solid #d6d6e7;border-radius:50%;box-shadow:inset 0 1px 4px 0 rgba(119,122,175,.3);height:16px;outline:0;position:relative;width:16px}.stl-radio-button:checked,.stl-radio-button:focus{border-color:#3c4fe0;box-shadow:0 1px 0 0 rgba(35,38,59,.05)}.stl-radio-button:checked:after{background:#3c4fe0;border-radius:50%;bottom:4px;content:" ";left:4px;position:absolute;right:4px;top:4px}.stl-radio-button:checked:focus{box-shadow:0 0 0 1px #3c4fe0,0 1px 0 0 rgba(35,38,59,.05)}.stl-radio-button:disabled{background-image:linear-gradient(-180deg,#fff,#f5f5fa);border-color:#efeff5;box-shadow:none;cursor:not-allowed}.stl-radio-button:disabled:checked:after{background:#efeff5;box-shadow:none}.stl-range-slider{align-items:center;display:flex;height:24px;min-width:200px;position:relative}.stl-range-slider-track-1,.stl-range-slider-track-2{background-color:#f5f5fa;border-radius:3px;box-shadow:inset 0 1px 3px 0 rgba(0,0,0,.1),0 .5px 0 0 hsla(0,0%,100%,.05);height:4px}.stl-range-slider-track-1{background-color:#3c4fe0}.stl-range-slider-track-2{background-color:transparent}.stl-range-slider-thumb{background-color:#fff;background-image:linear-gradient(-180deg,#fff,#fcfcfd);border:1px solid #d6d6e7;border-radius:2px;box-shadow:0 1px 0 0 rgba(35,38,59,.05);height:24px;margin-top:-12px;position:absolute;top:12px;transform:translateX(-6px);width:12px}.stl-range-slider-thumb:after,.stl-range-slider-thumb:before{background-color:#d6d6e7;content:" ";height:12px;position:absolute;top:6px;width:1px}.stl-range-slider-thumb:before{left:6px}.stl-range-slider-thumb:after{right:6px}.stl-range-slider-input{-webkit-appearance:none;-moz-appearance:none;appearance:none;cursor:pointer;height:24px;left:0;opacity:0;position:absolute;top:0;width:100%}.stl-range-slider-input:disabled{cursor:not-allowed}.stl-scroll-indicator{overflow:hidden;position:relative}.stl-scroll-indicator:after,.stl-scroll-indicator:before{height:48px;left:0;pointer-events:none;position:absolute;width:100%}.stl-scroll-indicator:before{background-image:linear-gradient(0,hsla(0,0%,100%,0),#fff);top:0}.stl-scroll-indicator:after{background-image:linear-gradient(180deg,hsla(0,0%,100%,0),#fff);bottom:0}.stl-scroll-indicator-dark:before{background-image:linear-gradient(0,rgba(35,38,59,0),#23263b)}.stl-scroll-indicator-dark:after{background-image:linear-gradient(180deg,rgba(35,38,59,0),#23263b)}.stl-scroll-indicator-bottom:after,.stl-scroll-indicator-top:before{content:" "}.stl-scroll-indicator-content{display:block;height:100%;overflow-y:auto}.stl-select-input{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;background-image: url('data:image/svg+xml;utf8,<svg width="14" height="24" xmlns="http://www.w3.org/2000/svg"><g stroke="%23777aaf" stroke-width="2" fill="none" fill-rule="evenodd"><path d="M13 7L7 1 1 7M1 17l6 6 6-6"/></g></svg>'),linear-gradient(-180deg,#fff,#fcfcfd) ;background-position:right 1rem center,0 0;background-repeat:no-repeat;border:1px solid #d6d6e7;border-radius:3px;box-shadow:0 1px 0 0 rgba(35,38,59,.05);color:#23263b;cursor:pointer;outline:none;padding:0 2.5rem 0 1rem;position:relative;width:100%}.stl-select-input:-moz-focusring,.stl-select-input::-moz-focus-inner{color:transparent;outline:none;text-shadow:0 0 0 #23263b}.stl-select-input:focus::-ms-value{color:#23263b}.stl-select-input>option{text-shadow:none}.stl-select-input>option:not(:checked){color:#23263b}.stl-select-input>option:disabled{color:#b6b7d5}.stl-select-input:hover{background-image: url('data:image/svg+xml;utf8,<svg width="14" height="24" xmlns="http://www.w3.org/2000/svg"><g stroke="%23777aaf" stroke-width="2" fill="none" fill-rule="evenodd"><path d="M13 7L7 1 1 7M1 17l6 6 6-6"/></g></svg>'),linear-gradient(-180deg,#fcfcfd,#f5f5fa) ;border-color:#d6d6e7}.stl-select-input:focus{background-image: url('data:image/svg+xml;utf8,<svg width="14" height="24" xmlns="http://www.w3.org/2000/svg"><g stroke="%23777aaf" stroke-width="2" fill="none" fill-rule="evenodd"><path d="M13 7L7 1 1 7M1 17l6 6 6-6"/></g></svg>'),linear-gradient(-180deg,#fff,#f5f5fa) ;border-color:#3c4fe0;box-shadow:0 0 0 1px #3c4fe0,0 2px 0 0 rgba(35,38,59,.05)}.stl-select-input:disabled{background-image: url('data:image/svg+xml;utf8,<svg width="14" height="24" xmlns="http://www.w3.org/2000/svg"><g stroke="%23b6b7d5" stroke-width="2" fill="none" fill-rule="evenodd"><path d="M13 7L7 1 1 7M1 17l6 6 6-6"/></g></svg>'),linear-gradient(-180deg,#fff,#f5f5fa) ;border-color:#efeff5;box-shadow:none;color:#b6b7d5;cursor:not-allowed}.stl-select-input-small{background-size:8px,auto;height:2rem}.stl-select-input-medium{background-size:10px,auto;height:2.5rem}.stl-select-input-large{background-size:12px,auto;height:3rem}.stl-sidebar{background-color:#23263b;color:#d6d6e7;width:256px}.stl-sidebar-light{background-color:#fff;box-shadow:0 0 0 1px rgba(35,38,59,.05),0 1px 3px 0 rgba(35,38,59,.15)}.stl-sidebar-collapsed{width:80px}.stl-sidebar-link{align-items:center;color:inherit;cursor:pointer;display:flex;height:2.5rem;padding:.5rem 1.5rem;transition:background-color .1s ease-in-out}.stl-sidebar-link,.stl-sidebar-link:hover{outline:none;text-decoration:none}.stl-sidebar-link.stl-sidebar-link-active,.stl-sidebar-link:focus,.stl-sidebar-link:hover{background-color:#111432;color:#fff}.stl-sidebar-link.stl-sidebar-link-active{box-shadow:inset 3px 0 0 #5468ff}.stl-sidebar-link-light{background-color:transparent;color:#5a5e9a}.stl-sidebar-link-light.stl-sidebar-link-active,.stl-sidebar-link-light:focus,.stl-sidebar-link-light:hover{background-color:#f5f5fa;color:#23263b}.stl-sidebar-link-light.stl-sidebar-link-active{box-shadow:inset 3px 0 0 #3c4fe0}.stl-switch{box-shadow:0 0 0 2px #f5f5fa;z-index:1}.stl-switch:focus-within:focus-visible{box-shadow:0 0 0 1px #f5f5fa,0 0 0 2px #3c4fe0}.stl-switch-large{box-shadow:0 0 0 4px #f5f5fa}.stl-switch-large:focus-within:focus-visible{box-shadow:0 0 0 3px #f5f5fa,0 0 0 4px #3c4fe0}.stl-tabs-tabbar{scroll-behavior:smooth}.stl-tab[data-selected]{color:#23263b}.stl-tab-grey:focus,.stl-tab-grey:hover,.stl-tab-grey[data-selected]{border-bottom-color:#b6b7d5}.stl-tab-accent:focus,.stl-tab-accent:hover,.stl-tab-accent[data-selected]{border-bottom-color:#3c4fe0}.stl-tab-blue:focus,.stl-tab-blue:hover,.stl-tab-blue[data-selected]{border-bottom-color:#0db7eb}.stl-tab-green:focus,.stl-tab-green:hover,.stl-tab-green[data-selected]{border-bottom-color:#0de589}.stl-tab-orange:focus,.stl-tab-orange:hover,.stl-tab-orange[data-selected]{border-bottom-color:#f78125}.stl-tab-red:focus,.stl-tab-red:hover,.stl-tab-red[data-selected]{border-bottom-color:#ee243c}.stl-tab{border-bottom-color:transparent;border-bottom-width:3px;color:#5a5e9a;cursor:pointer;display:inline-flex;flex-shrink:0;justify-content:center;min-width:3rem}.stl-tab[data-disabled=true],.stl-tab[disabled]{border-bottom-color:transparent;color:#9698c3;cursor:not-allowed}.stl-tab:focus{outline:none}.stl-datatable tr.stl-row-disabled td{cursor:not-allowed}.stl-datatable tr:not(.stl-row-disabled):hover td{background-color:#fcfcfd}.stl-table{border-collapse:collapse;text-align:left;width:100%}.stl-table td,.stl-table th{padding:14px 16px}.stl-table thead{background-color:#fcfcfd}.stl-table th{border-bottom:1px solid #d6d6e7;font-weight:400}.stl-table tr:not(:last-child) td{border-bottom:1px solid #f5f5fa}.stl-table-with-actions td:last-of-type,.stl-table-with-actions th:last-of-type{text-align:right}.stl-table-with-highlight tr:hover td{background-color:#fcfcfd}.stl-tag{align-items:center;border:1px solid transparent;border-radius:3px;display:inline-flex;font-size:.875rem;height:1.5rem;line-height:1rem;overflow:hidden;padding:0 .5rem}.stl-tag-close-button{border-left:1px solid transparent;height:100%;margin-left:.5rem;margin-right:-.5rem;padding-left:.25rem;padding-right:.25rem}.stl-tag-close-button,.stl-tag-close-button:focus{outline-width:0}.stl-tag-close-button:focus-visible{outline-color:#3c4fe0;outline-offset:-2px;outline-width:3px}.stl-text-area{background-color:#fff;border:1px solid #d6d6e7;border-radius:3px;box-shadow:inset 0 1px 4px 0 rgba(119,122,175,.3);font-size:.875rem;line-height:1.25rem;padding:1rem;transition:all .1s ease-in-out;width:100%}.stl-text-area::-moz-placeholder{color:#5a5e9a}.stl-text-area:-ms-input-placeholder{color:#5a5e9a}.stl-text-area::placeholder{color:#5a5e9a}.stl-text-area:focus{border-color:#3c4fe0;box-shadow:0 1px 0 0 rgba(35,38,59,.05);outline:none}.stl-text-area:disabled{background:linear-gradient(-180deg,#fff,#f5f5fa);border-color:#efeff5;box-shadow:none;color:#b6b7d5;cursor:not-allowed}.stl-toggle-container{display:block;height:18px;overflow:hidden;position:relative;width:32px}.stl-toggle-container input{cursor:pointer;height:100%;left:0;opacity:0;position:absolute;top:0;width:100%}.stl-toggle-container input:disabled{cursor:not-allowed}.stl-toggle{background:#f5f5fa;box-shadow:inset 0 1px 4px 0 rgba(119,122,175,.2);height:100%;left:0;pointer-events:none;top:0;width:100%}.stl-toggle,.stl-toggle:after{border-radius:9999px;position:absolute;transition:all 72ms ease-in-out}.stl-toggle:after{background:linear-gradient(-180deg,#fff,#fcfcfd);box-shadow:0 1px 1px 0 rgba(35,38,59,.1);content:" ";height:16px;left:1px;top:1px;width:16px}input:checked~.stl-toggle{background:#3c4fe0;box-shadow:inset 0 1px 4px 0 rgba(35,38,59,.1)}input:checked~.stl-toggle:after{transform:translateX(14px)}input:disabled~.stl-toggle{opacity:.6}.stl-tooltip{background-color:#23263b;border-radius:3px;box-shadow:0 0 0 1px rgba(35,38,59,.05),0 4px 8px -2px rgba(35,38,59,.25);color:#fff;padding:.25rem .5rem}.stl-tooltip code{background:initial;border:1px solid;color:currentColor;line-height:2;white-space:nowrap}.stl-tooltip-dark .stl-typo-link{color:#7c8aff}.stl-tooltip-light{background-color:#fff;color:#23263b}.stl-tooltip-wrapper{display:inline-block;line-height:0;outline:0}.stl-tooltip-wrapper-popper{max-width:16rem;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:550}.stl-tooltip-wrapper-arrow{border:4px solid transparent;color:#23263b;display:block;height:4px;position:absolute;width:4px}[data-popper-placement^=right]>.stl-tooltip-wrapper-arrow{border-left:none;border-right-color:currentColor;left:-4px}[data-popper-placement^=left]>.stl-tooltip-wrapper-arrow{border-left-color:currentColor;border-right:none;right:-4px}[data-popper-placement^=top]>.stl-tooltip-wrapper-arrow{border-bottom:none;border-top-color:currentColor;top:100%}[data-popper-placement^=bottom]>.stl-tooltip-wrapper-arrow{border-bottom-color:currentColor;border-top:none;top:-4px}.stl-tooltip-wrapper-arrow-light{color:rgba(35,38,59,.1)}.stl-tooltip-wrapper-arrow-light:after{border:3px solid transparent;content:" ";position:absolute}[data-popper-placement^=left]>.stl-tooltip-wrapper-arrow-light:after{border-left-color:#fff;border-right:none;right:1px;transform:translateY(-50%)}[data-popper-placement^=right]>.stl-tooltip-wrapper-arrow-light:after{border-left:none;border-right-color:#fff;left:1px;transform:translateY(-50%)}[data-popper-placement^=top]>.stl-tooltip-wrapper-arrow-light:after{border-bottom:none;border-top-color:#fff;bottom:1px;transform:translate(-50%)}[data-popper-placement^=bottom]>.stl-tooltip-wrapper-arrow-light:after{border-bottom-color:#fff;border-top:none;top:1px;transform:translate(-50%)}.stl-usercontent blockquote:not(:first-child),.stl-usercontent h1:not(:first-child),.stl-usercontent h2:not(:first-child),.stl-usercontent h3:not(:first-child),.stl-usercontent h4:not(:first-child),.stl-usercontent h5:not(:first-child),.stl-usercontent h6:not(:first-child),.stl-usercontent ol:not(:first-child),.stl-usercontent p:not(:first-child),.stl-usercontent table:not(:first-child),.stl-usercontent ul:not(:first-child){margin-top:1rem}.stl-usercontent blockquote:not(:last-child),.stl-usercontent h1:not(:last-child),.stl-usercontent h2:not(:last-child),.stl-usercontent h3:not(:last-child),.stl-usercontent h4:not(:last-child),.stl-usercontent h5:not(:last-child),.stl-usercontent h6:not(:last-child),.stl-usercontent ol:not(:last-child),.stl-usercontent p:not(:last-child),.stl-usercontent table:not(:last-child),.stl-usercontent ul:not(:last-child){margin-bottom:1rem}.stl-usercontent h1{font-size:1.75rem;font-weight:600;line-height:2rem}.stl-usercontent h2{color:#5a5e9a;font-size:1.625rem;font-weight:600;line-height:2rem}.stl-usercontent h3{font-size:1.25rem;font-weight:400;line-height:2rem}.stl-usercontent h4{font-size:1rem;font-weight:400;line-height:1.5rem}.stl-usercontent h5{font-size:1rem;font-weight:600;line-height:1.5rem}.stl-usercontent h6{font-size:.8125rem;font-weight:600;line-height:1rem;text-transform:uppercase}.stl-usercontent blockquote,.stl-usercontent ol,.stl-usercontent p,.stl-usercontent table,.stl-usercontent ul{font-size:1rem;font-weight:400;line-height:1.5rem}.stl-usercontent code{background-color:#f5f5fa;color:#484c7a;display:inline-block;font-family:Fira Code,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;padding:0 .25rem}.stl-usercontent ul{list-style-type:disc;padding-left:1.5rem}.stl-usercontent ol{list-style-type:decimal;padding-left:1.5rem}.stl-usercontent a{color:#3c4fe0}.stl-usercontent a:hover{text-decoration:underline}.stl-usercontent a[href^=http],.stl-usercontent a[target=_blank]{align-items:center;display:inline-flex;position:relative;white-space:nowrap}.stl-usercontent a[href^=http]:after,.stl-usercontent a[target=_blank]:after{background:url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%233c4fe0%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M18%2013v6a2%202%200%200%201-2%202H5a2%202%200%200%201-2-2V8a2%202%200%200%201%202-2h6%22%3E%3C%2Fpath%3E%3Cpolyline%20points%3D%2215%203%2021%203%2021%209%22%3E%3C%2Fpolyline%3E%3Cline%20x1%3D%2210%22%20y1%3D%2214%22%20x2%3D%2221%22%20y2%3D%223%22%3E%3C%2Fline%3E%3C%2Fsvg%3E");background-repeat:no-repeat;content:"";height:1em;margin-left:.25rem;width:1em}.stl-usercontent blockquote{border-left:2px solid #d6d6e7;color:#5a5e9a;padding-left:1rem}.stl-usercontent pre{background-color:#f5f5fa;border-radius:3px;color:#484c7a;font-family:Fira Code,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1rem;font-weight:400;line-height:1.5rem;margin:.5rem 0;max-height:16rem;max-width:100%;overflow:auto;padding:.5rem 1rem}.stl-usercontent pre code{background-color:transparent;color:inherit;display:inline}.stl-usercontent img{display:block;height:auto;margin:auto;max-width:100%}.stl-usercontent hr{border:solid #d6d6e7;border-width:0 0 2px}.stl-usercontent b,.stl-usercontent strong,.stl-usercontent th{font-weight:600}.stl-usercontent table{border-collapse:collapse;text-align:left;width:100%}.stl-usercontent table td,.stl-usercontent table th{padding:14px 16px}.stl-usercontent table th{border-bottom:1px solid #d6d6e7;font-weight:400}.stl-usercontent table tr:not(:last-child) td{border-bottom:1px solid #f5f5fa}.stl-usercontent table tr:hover td{background-color:rgba(245,245,250,.6)}@media (min-width:768px){.stl-usercontent h1{font-size:1.75rem;font-weight:600;line-height:2rem}.stl-usercontent h2{font-size:1.625rem;font-weight:600;line-height:2rem}.stl-usercontent h3{font-size:1.25rem;font-weight:400;line-height:2rem}.stl-usercontent h4{font-size:1rem;font-weight:400;line-height:1.5rem}.stl-usercontent h5{font-size:1rem;font-weight:600;line-height:1.5rem}.stl-usercontent h6{font-size:.8125rem;font-weight:600;line-height:1rem;text-transform:uppercase}.stl-usercontent blockquote,.stl-usercontent ol,.stl-usercontent p,.stl-usercontent pre,.stl-usercontent table,.stl-usercontent ul{font-size:1rem;font-weight:400;line-height:1.5rem}.stl-usercontent pre{font-family:Fira Code,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}}.DayPicker-Year{background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');background-position-x:100%;background-position-y:5px;background-repeat:no-repeat;padding-right:1rem}.DayPicker-Month{margin-top:0}.stl-date-picker .DayPicker-Months,.stl-date-range-picker .DayPicker-Months{align-items:start}.stl-date-picker .DayPicker-Day,.stl-date-range-picker .DayPicker-Day{border-radius:3px}.stl-date-picker .DayPicker-Day--today:not(.DayPicker-Day--outside),.stl-date-range-picker .DayPicker-Day--today:not(.DayPicker-Day--outside){color:#23263b;position:relative}.stl-date-picker .DayPicker-Day--today:not(.DayPicker-Day--outside):before,.stl-date-range-picker .DayPicker-Day--today:not(.DayPicker-Day--outside):before{background-color:#b9efff;border:1px solid #89e5ff;border-radius:9999px;content:"";display:block;height:32px;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:32px;z-index:-1}.stl-date-picker .DayPicker-Day--selected:not(.DayPicker-Day--outside),.stl-date-range-picker .DayPicker-Day--selected:not(.DayPicker-Day--outside){color:#fff}.stl-date-picker .DayPicker-Day{border-radius:3px}.stl-date-picker .DayPicker-Day--today{color:#3c4fe0}.stl-date-picker--selected:not(.DayPicker-Day--outside),.stl-date-picker--selected:not(.DayPicker-Day--outside):hover,.stl-date-picker .DayPicker-Day--selected:not(.DayPicker-Day--outside),.stl-date-picker .DayPicker-Day--selected:not(.DayPicker-Day--outside):hover{background-color:#3c4fe0}.stl-date-range-picker .DayPicker-Day--displayedRanges:not(.DayPicker-Day--outside){background-color:#d6d6e7;border-radius:0}.stl-date-range-picker .DayPicker-Day--displayedRangesStart:not(.DayPicker-Day--outside){background-color:#5a5e9a;border-bottom-left-radius:3px;border-top-left-radius:3px;color:#fff}.stl-date-range-picker .DayPicker-Day--displayedRangesEnd:not(.DayPicker-Day--outside){background-color:#5a5e9a;border-bottom-right-radius:3px;border-top-right-radius:3px;color:#fff}.stl-date-range-picker .DayPicker-Day--selected:not(.DayPicker-Day--outside){background-color:#cacfff;border-radius:0;color:#000}.stl-date-range-picker .DayPicker-Day--selected:not(.DayPicker-Day--outside):hover{background-color:#cacfff}.stl-date-range-picker .DayPicker-Day--start:not(.DayPicker-Day--outside){background-color:#3c4fe0;border-radius:0;border-bottom-left-radius:3px;border-top-left-radius:3px;color:#fff}.stl-date-range-picker .DayPicker-Day--start:not(.DayPicker-Day--outside):hover{background-color:#3c4fe0}.stl-date-range-picker .DayPicker-Day--end:not(.DayPicker-Day--outside){background-color:#3c4fe0;border-radius:0;border-bottom-right-radius:3px;border-top-right-radius:3px;color:#fff}.stl-date-range-picker .DayPicker-Day--end:not(.DayPicker-Day--outside):hover{background-color:#3c4fe0}.stl-pointer-events-none{pointer-events:none}.stl-visible{visibility:visible}.stl-invisible{visibility:hidden}.stl-group:hover .group-hover\:stl-visible{visibility:visible}.stl-static{position:static}.stl-fixed{position:fixed}.stl-absolute{position:absolute}.stl-relative{position:relative}.stl-inset-0{bottom:0;top:0}.stl-inset-0,.stl-inset-x-0{left:0;right:0}.stl-inset-y-0{bottom:0;top:0}.stl-top-0{top:0}.stl-top-2{top:.5rem}.stl-top-3{top:.75rem}.stl-top-px{top:1px}.stl-right-0{right:0}.stl-right-2{right:.5rem}.stl-bottom-0{bottom:0}.stl-left-0{left:0}.stl-z-0{z-index:0}.stl-z-10{z-index:10}.stl-z-modalOverlay{z-index:300}.stl-z-dropdown{z-index:450}.stl-z-notification{z-index:500}.stl-m-1{margin:.25rem}.stl-m-auto{margin:auto}.stl-mx-1{margin-left:.25rem;margin-right:.25rem}.stl-mx-4{margin-left:1rem;margin-right:1rem}.stl-mx-auto{margin-left:auto;margin-right:auto}.stl--mx-10{margin-left:-2.5rem;margin-right:-2.5rem}.stl-my-2{margin-bottom:.5rem;margin-top:.5rem}.stl-my-6{margin-bottom:1.5rem;margin-top:1.5rem}.stl-my-auto{margin-bottom:auto;margin-top:auto}.stl-mt-1{margin-top:.25rem}.stl-mt-2{margin-top:.5rem}.stl-mt-3{margin-top:.75rem}.stl-mt-4{margin-top:1rem}.stl-mt-6{margin-top:1.5rem}.stl-mt-8{margin-top:2rem}.stl-mt-2px{margin-top:2px}.stl--mt-12{margin-top:-3rem}.stl-mr-1{margin-right:.25rem}.stl-mr-2{margin-right:.5rem}.stl-mr-4{margin-right:1rem}.stl-mr-6{margin-right:1.5rem}.stl-mr-auto{margin-right:auto}.stl-mr-2px{margin-right:2px}.stl--mr-2{margin-right:-.5rem}.stl-mb-0{margin-bottom:0}.stl-mb-1{margin-bottom:.25rem}.stl-mb-2{margin-bottom:.5rem}.stl-mb-4{margin-bottom:1rem}.stl-mb-6{margin-bottom:1.5rem}.stl-mb-2\.5{margin-bottom:.625rem}.stl--mb-1{margin-bottom:-.25rem}.stl-ml-1{margin-left:.25rem}.stl-ml-2{margin-left:.5rem}.stl-ml-4{margin-left:1rem}.stl-ml-16{margin-left:4rem}.stl-ml-auto{margin-left:auto}.stl--ml-1{margin-left:-.25rem}.stl-block{display:block}.stl-inline-block{display:inline-block}.stl-inline{display:inline}.stl-flex{display:flex}.stl-inline-flex{display:inline-flex}.stl-table{display:table}.stl-grid{display:grid}.stl-hidden{display:none}.stl-h-0{height:0}.stl-h-2{height:.5rem}.stl-h-3{height:.75rem}.stl-h-4{height:1rem}.stl-h-6{height:1.5rem}.stl-h-8{height:2rem}.stl-h-10{height:2.5rem}.stl-h-48{height:12rem}.stl-h-full{height:100%}.stl-max-h-64{max-height:16rem}.stl-max-h-96{max-height:24rem}.stl-min-h-10{min-height:2.5rem}.stl-min-h-12{min-height:3rem}.stl-min-h-14{min-height:3.5rem}.stl-min-h-16{min-height:4rem}.stl-w-0{width:0}.stl-w-2{width:.5rem}.stl-w-3{width:.75rem}.stl-w-4{width:1rem}.stl-w-6{width:1.5rem}.stl-w-8{width:2rem}.stl-w-10{width:2.5rem}.stl-w-px{width:1px}.stl-w-full{width:100%}.stl-min-w-0{min-width:0}.stl-min-w-4{min-width:1rem}.stl-min-w-16{min-width:4rem}.stl-min-w-24{min-width:6rem}.stl-min-w-64{min-width:16rem}.stl-min-w-2\/5{min-width:40%}.stl-max-w-48{max-width:12rem}.stl-max-w-64{max-width:16rem}.stl-max-w-128{max-width:32rem}.stl-max-w-xs{max-width:20rem}.stl-max-w-sm{max-width:24rem}.stl-max-w-md{max-width:28rem}.stl-max-w-lg{max-width:32rem}.stl-max-w-xl{max-width:36rem}.stl-max-w-2xl{max-width:42rem}.stl-flex-1{flex:1 1 0%}.stl-flex-shrink-0{flex-shrink:0}.stl-flex-shrink{flex-shrink:1}.stl-flex-grow{flex-grow:1}.stl-transform{--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;transform:translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@-webkit-keyframes stl-spin{to{transform:rotate(1turn)}}@keyframes stl-spin{to{transform:rotate(1turn)}}@-webkit-keyframes stl-ping{75%,to{opacity:0;transform:scale(2)}}@keyframes stl-ping{75%,to{opacity:0;transform:scale(2)}}@-webkit-keyframes stl-pulse{50%{opacity:.5}}@keyframes stl-pulse{50%{opacity:.5}}@-webkit-keyframes stl-bounce{0%,to{-webkit-animation-timing-function:cubic-bezier(.8,0,1,1);animation-timing-function:cubic-bezier(.8,0,1,1);transform:translateY(-25%)}50%{-webkit-animation-timing-function:cubic-bezier(0,0,.2,1);animation-timing-function:cubic-bezier(0,0,.2,1);transform:none}}@keyframes stl-bounce{0%,to{-webkit-animation-timing-function:cubic-bezier(.8,0,1,1);animation-timing-function:cubic-bezier(.8,0,1,1);transform:translateY(-25%)}50%{-webkit-animation-timing-function:cubic-bezier(0,0,.2,1);animation-timing-function:cubic-bezier(0,0,.2,1);transform:none}}.stl-cursor-pointer{cursor:pointer}.stl-cursor-not-allowed{cursor:not-allowed}.stl-select-none{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.stl-appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}.stl-flex-row{flex-direction:row}.stl-flex-row-reverse{flex-direction:row-reverse}.stl-flex-col{flex-direction:column}.stl-flex-wrap{flex-wrap:wrap}.stl-items-start{align-items:flex-start}.stl-items-end{align-items:flex-end}.stl-items-center{align-items:center}.stl-items-baseline{align-items:baseline}.stl-items-stretch{align-items:stretch}.stl-justify-start{justify-content:flex-start}.stl-justify-end{justify-content:flex-end}.stl-justify-center{justify-content:center}.stl-justify-between{justify-content:space-between}.stl-justify-around{justify-content:space-around}.stl-space-x-1>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.25rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.25rem*var(--tw-space-x-reverse))}.stl-space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.5rem*var(--tw-space-x-reverse))}.stl-space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.stl-space-x-6>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1.5rem*var(--tw-space-x-reverse))}.stl-space-x-2px>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(2px*(1 - var(--tw-space-x-reverse)));margin-right:calc(2px*var(--tw-space-x-reverse))}.stl-self-start{align-self:flex-start}.stl-self-end{align-self:flex-end}.stl-overflow-hidden{overflow:hidden}.stl-overflow-x-auto{overflow-x:auto}.stl-overflow-y-auto{overflow-y:auto}.stl-overflow-x-hidden{overflow-x:hidden}.stl-truncate{overflow:hidden;text-overflow:ellipsis}.stl-truncate,.stl-whitespace-nowrap{white-space:nowrap}.stl-break-all{word-break:break-all}.stl-rounded{border-radius:3px}.stl-rounded-full{border-radius:99999px}.stl-border-2{border-width:2px}.stl-border{border-width:1px}.stl-border-t-3{border-top-width:3px}.stl-border-t{border-top-width:1px}.stl-border-b{border-bottom-width:1px}.stl-border-l-2{border-left-width:2px}.stl-border-l{border-left-width:1px}.first\:stl-border-t-0:first-child{border-top-width:0}.stl-border-grey-100{--tw-border-opacity:1;border-color:rgba(245,245,250,var(--tw-border-opacity))}.stl-border-grey-200{--tw-border-opacity:1;border-color:rgba(214,214,231,var(--tw-border-opacity))}.stl-border-grey-300{--tw-border-opacity:1;border-color:rgba(182,183,213,var(--tw-border-opacity))}.stl-border-grey-500{--tw-border-opacity:1;border-color:rgba(119,122,175,var(--tw-border-opacity))}.stl-border-pink-200{--tw-border-opacity:1;border-color:rgba(254,185,226,var(--tw-border-opacity))}.stl-border-nebula-500{--tw-border-opacity:1;border-color:rgba(84,104,255,var(--tw-border-opacity))}.stl-border-blue-200{--tw-border-opacity:1;border-color:rgba(185,239,255,var(--tw-border-opacity))}.stl-border-blue-500{--tw-border-opacity:1;border-color:rgba(44,200,247,var(--tw-border-opacity))}.stl-border-green-200{--tw-border-opacity:1;border-color:rgba(201,248,222,var(--tw-border-opacity))}.stl-border-green-300{--tw-border-opacity:1;border-color:rgba(170,244,200,var(--tw-border-opacity))}.stl-border-green-500{--tw-border-opacity:1;border-color:rgba(95,235,158,var(--tw-border-opacity))}.stl-border-orange-200{--tw-border-opacity:1;border-color:rgba(255,233,195,var(--tw-border-opacity))}.stl-border-orange-300{--tw-border-opacity:1;border-color:rgba(254,213,154,var(--tw-border-opacity))}.stl-border-orange-500{--tw-border-opacity:1;border-color:rgba(250,160,75,var(--tw-border-opacity))}.stl-border-red-200{--tw-border-opacity:1;border-color:rgba(254,189,197,var(--tw-border-opacity))}.stl-border-red-500{--tw-border-opacity:1;border-color:rgba(244,73,93,var(--tw-border-opacity))}.stl-border-accent-200{--tw-border-opacity:1;border-color:rgba(202,207,255,var(--tw-border-opacity))}.stl-border-accent-500{--tw-border-opacity:1;border-color:rgba(84,104,255,var(--tw-border-opacity))}.stl-border-transparent{border-color:transparent}.focus\:stl-border-nebula-600:focus{--tw-border-opacity:1;border-color:rgba(60,79,224,var(--tw-border-opacity))}.stl-bg-white{--tw-bg-opacity:1;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.stl-bg-grey-50{--tw-bg-opacity:1;background-color:rgba(252,252,253,var(--tw-bg-opacity))}.stl-bg-grey-100{--tw-bg-opacity:1;background-color:rgba(245,245,250,var(--tw-bg-opacity))}.stl-bg-grey-200{--tw-bg-opacity:1;background-color:rgba(214,214,231,var(--tw-bg-opacity))}.stl-bg-grey-300{--tw-bg-opacity:1;background-color:rgba(182,183,213,var(--tw-bg-opacity))}.stl-bg-grey-400{--tw-bg-opacity:1;background-color:rgba(150,152,195,var(--tw-bg-opacity))}.stl-bg-grey-500{--tw-bg-opacity:1;background-color:rgba(119,122,175,var(--tw-bg-opacity))}.stl-bg-grey-700{--tw-bg-opacity:1;background-color:rgba(72,76,122,var(--tw-bg-opacity))}.stl-bg-grey-800{--tw-bg-opacity:1;background-color:rgba(54,57,90,var(--tw-bg-opacity))}.stl-bg-grey-900{--tw-bg-opacity:1;background-color:rgba(35,38,59,var(--tw-bg-opacity))}.stl-bg-pink-100{--tw-bg-opacity:1;background-color:rgba(255,234,246,var(--tw-bg-opacity))}.stl-bg-pink-200{--tw-bg-opacity:1;background-color:rgba(254,185,226,var(--tw-bg-opacity))}.stl-bg-pink-300{--tw-bg-opacity:1;background-color:rgba(253,137,206,var(--tw-bg-opacity))}.stl-bg-pink-400{--tw-bg-opacity:1;background-color:rgba(251,90,188,var(--tw-bg-opacity))}.stl-bg-pink-700{--tw-bg-opacity:1;background-color:rgba(184,9,121,var(--tw-bg-opacity))}.stl-bg-nebula-200{--tw-bg-opacity:1;background-color:rgba(202,207,255,var(--tw-bg-opacity))}.stl-bg-nebula-300{--tw-bg-opacity:1;background-color:rgba(163,172,255,var(--tw-bg-opacity))}.stl-bg-nebula-400{--tw-bg-opacity:1;background-color:rgba(124,138,255,var(--tw-bg-opacity))}.stl-bg-nebula-700{--tw-bg-opacity:1;background-color:rgba(43,60,187,var(--tw-bg-opacity))}.stl-bg-blue-100{--tw-bg-opacity:1;background-color:rgba(232,250,255,var(--tw-bg-opacity))}.stl-bg-blue-200{--tw-bg-opacity:1;background-color:rgba(185,239,255,var(--tw-bg-opacity))}.stl-bg-blue-300{--tw-bg-opacity:1;background-color:rgba(137,229,255,var(--tw-bg-opacity))}.stl-bg-blue-400{--tw-bg-opacity:1;background-color:rgba(90,218,255,var(--tw-bg-opacity))}.stl-bg-blue-500{--tw-bg-opacity:1;background-color:rgba(44,200,247,var(--tw-bg-opacity))}.stl-bg-blue-700{--tw-bg-opacity:1;background-color:rgba(0,155,203,var(--tw-bg-opacity))}.stl-bg-green-100{--tw-bg-opacity:1;background-color:rgba(230,252,243,var(--tw-bg-opacity))}.stl-bg-green-200{--tw-bg-opacity:1;background-color:rgba(201,248,222,var(--tw-bg-opacity))}.stl-bg-green-300{--tw-bg-opacity:1;background-color:rgba(170,244,200,var(--tw-bg-opacity))}.stl-bg-green-400{--tw-bg-opacity:1;background-color:rgba(136,240,179,var(--tw-bg-opacity))}.stl-bg-green-500{--tw-bg-opacity:1;background-color:rgba(95,235,158,var(--tw-bg-opacity))}.stl-bg-green-700{--tw-bg-opacity:1;background-color:rgba(6,182,108,var(--tw-bg-opacity))}.stl-bg-orange-100{--tw-bg-opacity:1;background-color:rgba(255,249,236,var(--tw-bg-opacity))}.stl-bg-orange-200{--tw-bg-opacity:1;background-color:rgba(255,233,195,var(--tw-bg-opacity))}.stl-bg-orange-300{--tw-bg-opacity:1;background-color:rgba(254,213,154,var(--tw-bg-opacity))}.stl-bg-orange-400{--tw-bg-opacity:1;background-color:rgba(252,188,115,var(--tw-bg-opacity))}.stl-bg-orange-500{--tw-bg-opacity:1;background-color:rgba(250,160,75,var(--tw-bg-opacity))}.stl-bg-orange-700{--tw-bg-opacity:1;background-color:rgba(232,96,10,var(--tw-bg-opacity))}.stl-bg-red-100{--tw-bg-opacity:1;background-color:rgba(255,230,233,var(--tw-bg-opacity))}.stl-bg-red-200{--tw-bg-opacity:1;background-color:rgba(254,189,197,var(--tw-bg-opacity))}.stl-bg-red-300{--tw-bg-opacity:1;background-color:rgba(252,149,161,var(--tw-bg-opacity))}.stl-bg-red-400{--tw-bg-opacity:1;background-color:rgba(248,110,126,var(--tw-bg-opacity))}.stl-bg-red-500{--tw-bg-opacity:1;background-color:rgba(244,73,93,var(--tw-bg-opacity))}.stl-bg-red-600{--tw-bg-opacity:1;background-color:rgba(238,36,60,var(--tw-bg-opacity))}.stl-bg-red-700{--tw-bg-opacity:1;background-color:rgba(212,20,42,var(--tw-bg-opacity))}.stl-bg-red-800{--tw-bg-opacity:1;background-color:rgba(171,19,37,var(--tw-bg-opacity))}.stl-bg-accent-100{--tw-bg-opacity:1;background-color:rgba(242,243,255,var(--tw-bg-opacity))}.stl-bg-accent-200{--tw-bg-opacity:1;background-color:rgba(202,207,255,var(--tw-bg-opacity))}.stl-bg-accent-500{--tw-bg-opacity:1;background-color:rgba(84,104,255,var(--tw-bg-opacity))}.stl-bg-accent-600{--tw-bg-opacity:1;background-color:rgba(60,79,224,var(--tw-bg-opacity))}.stl-bg-accent-700{--tw-bg-opacity:1;background-color:rgba(43,60,187,var(--tw-bg-opacity))}.hover\:stl-bg-grey-100:hover{--tw-bg-opacity:1;background-color:rgba(245,245,250,var(--tw-bg-opacity))}.hover\:stl-bg-grey-200:hover{--tw-bg-opacity:1;background-color:rgba(214,214,231,var(--tw-bg-opacity))}.hover\:stl-bg-pink-200:hover{--tw-bg-opacity:1;background-color:rgba(254,185,226,var(--tw-bg-opacity))}.hover\:stl-bg-blue-200:hover{--tw-bg-opacity:1;background-color:rgba(185,239,255,var(--tw-bg-opacity))}.hover\:stl-bg-green-300:hover{--tw-bg-opacity:1;background-color:rgba(170,244,200,var(--tw-bg-opacity))}.hover\:stl-bg-orange-300:hover{--tw-bg-opacity:1;background-color:rgba(254,213,154,var(--tw-bg-opacity))}.hover\:stl-bg-red-200:hover{--tw-bg-opacity:1;background-color:rgba(254,189,197,var(--tw-bg-opacity))}.hover\:stl-bg-accent-200:hover{--tw-bg-opacity:1;background-color:rgba(202,207,255,var(--tw-bg-opacity))}.focus\:stl-bg-grey-100:focus{--tw-bg-opacity:1;background-color:rgba(245,245,250,var(--tw-bg-opacity))}.focus\:stl-bg-grey-200:focus{--tw-bg-opacity:1;background-color:rgba(214,214,231,var(--tw-bg-opacity))}.focus\:stl-bg-pink-200:focus{--tw-bg-opacity:1;background-color:rgba(254,185,226,var(--tw-bg-opacity))}.focus\:stl-bg-blue-200:focus{--tw-bg-opacity:1;background-color:rgba(185,239,255,var(--tw-bg-opacity))}.focus\:stl-bg-green-300:focus{--tw-bg-opacity:1;background-color:rgba(170,244,200,var(--tw-bg-opacity))}.focus\:stl-bg-orange-300:focus{--tw-bg-opacity:1;background-color:rgba(254,213,154,var(--tw-bg-opacity))}.focus\:stl-bg-red-200:focus{--tw-bg-opacity:1;background-color:rgba(254,189,197,var(--tw-bg-opacity))}.focus\:stl-bg-accent-200:focus{--tw-bg-opacity:1;background-color:rgba(202,207,255,var(--tw-bg-opacity))}.stl-bg-opacity-30{--tw-bg-opacity:.3}.stl-bg-opacity-50{--tw-bg-opacity:.5}.hover\:stl-bg-opacity-20:hover{--tw-bg-opacity:.2}.stl-p-1{padding:.25rem}.stl-p-2{padding:.5rem}.stl-p-4{padding:1rem}.stl-p-6{padding:1.5rem}.stl-p-10{padding:2.5rem}.stl-p-px{padding:1px}.stl-p-2px{padding:2px}.stl-px-1{padding-left:.25rem;padding-right:.25rem}.stl-px-2{padding-left:.5rem;padding-right:.5rem}.stl-px-3{padding-left:.75rem;padding-right:.75rem}.stl-px-4{padding-left:1rem;padding-right:1rem}.stl-px-5{padding-left:1.25rem;padding-right:1.25rem}.stl-px-8{padding-left:2rem;padding-right:2rem}.stl-py-1{padding-bottom:.25rem;padding-top:.25rem}.stl-py-2{padding-bottom:.5rem;padding-top:.5rem}.stl-py-3{padding-bottom:.75rem;padding-top:.75rem}.stl-py-6{padding-bottom:1.5rem;padding-top:1.5rem}.stl-py-1\.5{padding-bottom:.375rem;padding-top:.375rem}.stl-pt-0{padding-top:0}.stl-pt-4{padding-top:1rem}.stl-pt-5{padding-top:1.25rem}.stl-pr-2{padding-right:.5rem}.stl-pb-2{padding-bottom:.5rem}.stl-pb-3{padding-bottom:.75rem}.stl-pl-2{padding-left:.5rem}.stl-pl-4{padding-left:1rem}.stl-pl-8{padding-left:2rem}.stl-pl-0\.5{padding-left:.125rem}.stl-text-left{text-align:left}.stl-text-center{text-align:center}.stl-text-right{text-align:right}.stl-text-mobile{font-size:.8125rem}.stl-text-base{font-size:.875rem}.stl-text-md{font-size:1rem}.stl-text-lg{font-size:1.25rem}.stl-font-medium{font-weight:500}.stl-font-semibold{font-weight:600}.stl-font-bold{font-weight:700}.stl-uppercase{text-transform:uppercase}.stl-capitalize{text-transform:capitalize}.stl-tabular-nums{--tw-ordinal:var(--tw-empty,/*!*/ /*!*/);--tw-slashed-zero:var(--tw-empty,/*!*/ /*!*/);--tw-numeric-figure:var(--tw-empty,/*!*/ /*!*/);--tw-numeric-spacing:var(--tw-empty,/*!*/ /*!*/);--tw-numeric-fraction:var(--tw-empty,/*!*/ /*!*/);--tw-numeric-spacing:tabular-nums;font-variant-numeric:var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)}.stl-leading-inherit{line-height:inherit}.stl-leading-sm{line-height:1rem}.stl-leading-md{line-height:1.5rem}.stl-leading-none{line-height:0}.stl-text-white{--tw-text-opacity:1;color:rgba(255,255,255,var(--tw-text-opacity))}.stl-text-grey-200{--tw-text-opacity:1;color:rgba(214,214,231,var(--tw-text-opacity))}.stl-text-grey-300{--tw-text-opacity:1;color:rgba(182,183,213,var(--tw-text-opacity))}.stl-text-grey-500{--tw-text-opacity:1;color:rgba(119,122,175,var(--tw-text-opacity))}.stl-text-grey-600{--tw-text-opacity:1;color:rgba(90,94,154,var(--tw-text-opacity))}.stl-text-grey-700{--tw-text-opacity:1;color:rgba(72,76,122,var(--tw-text-opacity))}.stl-text-grey-800{--tw-text-opacity:1;color:rgba(54,57,90,var(--tw-text-opacity))}.stl-text-grey-900{--tw-text-opacity:1;color:rgba(35,38,59,var(--tw-text-opacity))}.stl-text-pink-600{--tw-text-opacity:1;color:rgba(233,10,150,var(--tw-text-opacity))}.stl-text-pink-700{--tw-text-opacity:1;color:rgba(184,9,121,var(--tw-text-opacity))}.stl-text-pink-800{--tw-text-opacity:1;color:rgba(136,8,92,var(--tw-text-opacity))}.stl-text-pink-900{--tw-text-opacity:1;color:rgba(89,6,61,var(--tw-text-opacity))}.stl-text-nebula-500{--tw-text-opacity:1;color:rgba(84,104,255,var(--tw-text-opacity))}.stl-text-nebula-800{--tw-text-opacity:1;color:rgba(30,43,143,var(--tw-text-opacity))}.stl-text-nebula-900{--tw-text-opacity:1;color:rgba(20,29,97,var(--tw-text-opacity))}.stl-text-blue-500{--tw-text-opacity:1;color:rgba(44,200,247,var(--tw-text-opacity))}.stl-text-blue-600{--tw-text-opacity:1;color:rgba(13,183,235,var(--tw-text-opacity))}.stl-text-blue-700{--tw-text-opacity:1;color:rgba(0,155,203,var(--tw-text-opacity))}.stl-text-blue-800{--tw-text-opacity:1;color:rgba(0,118,155,var(--tw-text-opacity))}.stl-text-blue-900{--tw-text-opacity:1;color:rgba(0,82,108,var(--tw-text-opacity))}.stl-text-green-600{--tw-text-opacity:1;color:rgba(13,229,137,var(--tw-text-opacity))}.stl-text-green-700{--tw-text-opacity:1;color:rgba(6,182,108,var(--tw-text-opacity))}.stl-text-green-800{--tw-text-opacity:1;color:rgba(2,137,80,var(--tw-text-opacity))}.stl-text-green-900{--tw-text-opacity:1;color:rgba(0,94,54,var(--tw-text-opacity))}.stl-text-orange-500{--tw-text-opacity:1;color:rgba(250,160,75,var(--tw-text-opacity))}.stl-text-orange-600{--tw-text-opacity:1;color:rgba(247,129,37,var(--tw-text-opacity))}.stl-text-orange-700{--tw-text-opacity:1;color:rgba(232,96,10,var(--tw-text-opacity))}.stl-text-orange-800{--tw-text-opacity:1;color:rgba(191,71,10,var(--tw-text-opacity))}.stl-text-orange-900{--tw-text-opacity:1;color:rgba(150,50,9,var(--tw-text-opacity))}.stl-text-red-500{--tw-text-opacity:1;color:rgba(244,73,93,var(--tw-text-opacity))}.stl-text-red-600{--tw-text-opacity:1;color:rgba(238,36,60,var(--tw-text-opacity))}.stl-text-red-700{--tw-text-opacity:1;color:rgba(212,20,42,var(--tw-text-opacity))}.stl-text-red-800{--tw-text-opacity:1;color:rgba(171,19,37,var(--tw-text-opacity))}.stl-text-red-900{--tw-text-opacity:1;color:rgba(131,17,30,var(--tw-text-opacity))}.stl-text-accent-500{--tw-text-opacity:1;color:rgba(84,104,255,var(--tw-text-opacity))}.stl-text-accent-600{--tw-text-opacity:1;color:rgba(60,79,224,var(--tw-text-opacity))}.stl-text-accent-700{--tw-text-opacity:1;color:rgba(43,60,187,var(--tw-text-opacity))}.stl-text-accent-900{--tw-text-opacity:1;color:rgba(20,29,97,var(--tw-text-opacity))}.stl-text-inherit{color:inherit}.stl-underline{text-decoration:underline}.focus\:stl-no-underline:focus,.hover\:stl-no-underline:hover{text-decoration:none}.stl-antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.stl-opacity-0{opacity:0}.stl-opacity-50{opacity:.5}.stl-opacity-60{opacity:.6}.stl-opacity-70{opacity:.7}.stl-group:hover .group-hover\:stl-opacity-100,.stl-opacity-100{opacity:1}*,:after,:before{--tw-shadow:0 0 #0000}.stl-shadow-z100{--tw-shadow:0px 0px 0px 1px rgba(35,38,59,.05),0px 1px 3px 0px rgba(35,38,59,.15)}.stl-shadow-z100,.stl-shadow-z300{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.stl-shadow-z300{--tw-shadow:0px 0px 0px 1px rgba(35,38,59,.05),0px 8px 16px -4px rgba(35,38,59,.25)}.stl-shadow-z400{--tw-shadow:0px 0px 0px 1px rgba(35,38,59,.05),0px 12px 24px -6px rgba(35,38,59,.25)}.stl-shadow-z400,.stl-shadow-z500{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.stl-shadow-z500{--tw-shadow:0px 0px 0px 1px rgba(35,38,59,.05),0px 20px 32px -8px rgba(35,38,59,.25)}.focus\:stl-shadow-z100:focus{--tw-shadow:0px 0px 0px 1px rgba(35,38,59,.05),0px 1px 3px 0px rgba(35,38,59,.15);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.focus\:stl-outline-none:focus,.stl-outline-none{outline:2px solid transparent;outline-offset:2px}*,:after,:before{--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(44,200,247,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000}.stl-blur{--tw-blur:blur(8px)}.stl-grayscale{--tw-grayscale:grayscale(100%)}.stl-transition{transition-duration:.15s;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1)}.stl-transition-colors{transition-duration:.15s;transition-property:background-color,border-color,color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.stl-transition-opacity{transition-duration:.15s;transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1)}.stl-duration-100{transition-duration:.1s}.stl-ease-linear{transition-timing-function:linear}.stl-ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)}.stl-ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.stl-typo-subdued{color:#5a5e9a}.stl-typo-link{color:#3c4fe0}.stl-typo-link:hover{text-decoration:underline}.stl-typo-display-heading{font-size:1rem;font-weight:600;line-height:1.5rem}.stl-typo-display-body{font-size:.875rem;font-weight:400;line-height:1.25rem}.stl-typo-m-display-small{font-size:1rem;font-weight:400;line-height:1.5rem}@media (min-width:640px){.sm\:stl-container{width:100%}@media (min-width:640px){.sm\:stl-container{max-width:640px}}@media (min-width:768px){.sm\:stl-container{max-width:768px}}@media (min-width:1024px){.sm\:stl-container{max-width:1024px}}@media (min-width:1280px){.sm\:stl-container{max-width:1280px}}@media (min-width:1536px){.sm\:stl-container{max-width:1536px}}}@media (min-width:768px){.md\:stl-container{width:100%}@media (min-width:640px){.md\:stl-container{max-width:640px}}@media (min-width:768px){.md\:stl-container{max-width:768px}}@media (min-width:1024px){.md\:stl-container{max-width:1024px}}@media (min-width:1280px){.md\:stl-container{max-width:1280px}}@media (min-width:1536px){.md\:stl-container{max-width:1536px}}.md\:stl-flex-row{flex-direction:row}.md\:stl-text-sm{font-size:.75rem}}@media (min-width:1024px){.lg\:stl-container{width:100%}@media (min-width:640px){.lg\:stl-container{max-width:640px}}@media (min-width:768px){.lg\:stl-container{max-width:768px}}@media (min-width:1024px){.lg\:stl-container{max-width:1024px}}@media (min-width:1280px){.lg\:stl-container{max-width:1280px}}@media (min-width:1536px){.lg\:stl-container{max-width:1536px}}.lg\:stl-flex{display:flex}.lg\:stl-flex-row{flex-direction:row}.lg\:stl-flex-col{flex-direction:column}.lg\:stl-typo-display-small{font-size:1.25rem;font-weight:400;line-height:1.75rem}}@media (min-width:1280px){.xl\:stl-container{width:100%}@media (min-width:640px){.xl\:stl-container{max-width:640px}}@media (min-width:768px){.xl\:stl-container{max-width:768px}}@media (min-width:1024px){.xl\:stl-container{max-width:1024px}}@media (min-width:1280px){.xl\:stl-container{max-width:1280px}}@media (min-width:1536px){.xl\:stl-container{max-width:1536px}}}@media (min-width:1536px){.\32xl\:stl-container{width:100%}@media (min-width:640px){.\32xl\:stl-container{max-width:640px}}@media (min-width:768px){.\32xl\:stl-container{max-width:768px}}@media (min-width:1024px){.\32xl\:stl-container{max-width:1024px}}@media (min-width:1280px){.\32xl\:stl-container{max-width:1280px}}@media (min-width:1536px){.\32xl\:stl-container{max-width:1536px}}}
|
5
|
+
/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */html{-webkit-text-size-adjust:100%;line-height:1.15;-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji;margin:0}hr{color:inherit;height:0}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}::-moz-focus-inner{border-style:none;padding:0}:-moz-focusring{outline:1px dotted ButtonText}:-moz-ui-invalid{box-shadow:none}legend{padding:0}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}button{background-color:transparent;background-image:none}fieldset,ol,ul{margin:0;padding:0}ol,ul{list-style:none}html{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5}body{font-family:inherit;line-height:inherit}*,:after,:before{border:0 solid;box-sizing:border-box}hr{border-top-width:1px}img{border-style:solid}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#a1a1aa;opacity:1}input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#a1a1aa;opacity:1}input::placeholder,textarea::placeholder{color:#a1a1aa;opacity:1}[role=button],button{cursor:pointer}:-moz-focusring{outline:auto}table{border-collapse:collapse}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}button,input,optgroup,select,textarea{color:inherit;line-height:inherit;padding:0}code,kbd,pre,samp{font-family:Fira Code,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]{display:none}*,:after,:before{border-color:currentColor}body,html{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;text-size-adjust:100%;text-rendering:optimizeLegibility}::-moz-selection{background:#3c4fe0;color:#fff}::selection{background:#3c4fe0;color:#fff}a{color:#3c4fe0}a:hover{text-decoration:underline}body,html{--tw-text-opacity:1;color:rgba(35,38,59,var(--tw-text-opacity))}.stl-container{width:100%}@media (min-width:640px){.stl-container{max-width:640px}}@media (min-width:768px){.stl-container{max-width:768px}}@media (min-width:1024px){.stl-container{max-width:1024px}}@media (min-width:1280px){.stl-container{max-width:1280px}}@media (min-width:1536px){.stl-container{max-width:1536px}}.stl-display-xlarge{font-size:1.75rem;font-weight:600;line-height:2rem}.stl-display-large{font-size:1.625rem;font-weight:600;line-height:2rem}.stl-display-medium{font-size:1.25rem;font-weight:400;line-height:2rem}.stl-display-small{font-size:1rem;font-weight:400;line-height:1.5rem}.stl-display-heading{font-size:1rem;font-weight:600;line-height:1.5rem}.stl-display-subheading{font-size:.8125rem;font-weight:600;line-height:1rem;text-transform:uppercase}.stl-display-body{font-size:1rem;font-weight:400;line-height:1.5rem}.stl-display-caption{font-size:.8125rem;font-weight:400;line-height:1.25rem}.stl-display-code{font-family:Fira Code,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1rem;font-weight:400;line-height:1.5rem}@media (min-width:768px){.stl-display-xlarge{font-size:2.625rem;font-weight:600;line-height:2.75rem}.stl-display-large{font-size:1.75rem;font-weight:600;line-height:2rem}.stl-display-medium{font-size:1.625rem;font-weight:600;line-height:2rem}.stl-display-small{font-size:1.25rem;font-weight:400;line-height:1.75rem}.stl-display-heading{font-size:1rem;font-weight:600;line-height:1.5rem}.stl-display-subheading{font-size:.75rem;font-weight:600;line-height:1rem;text-transform:uppercase}.stl-display-body{font-size:.875rem;font-weight:400;line-height:1.25rem}.stl-display-caption{font-size:.75rem;font-weight:400;line-height:1rem}.stl-display-code{font-family:Fira Code,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:.875rem;font-weight:400;line-height:1.25rem}}.stl-flex-grid-inline{display:inline-block}.stl-flex-grid-inner>*{flex:0 0 auto;max-width:100%;min-width:0}.stl-flex-grid-d-fill>*{flex:1 1 auto}.stl-flex-grid-d-fill-even>*{flex:1 1 0%}@supports ((min-width:-webkit-fit-content) or (min-width:-moz-fit-content) or (min-width:fit-content)){.stl-flex-grid-d-fill-even{min-width:-webkit-fit-content;min-width:-moz-fit-content;min-width:fit-content}}.stl-flex-grid-sm{margin-left:-.5rem;margin-top:-.5rem}.stl-flex-grid-sm>*{margin-left:.5rem;margin-top:.5rem}.stl-flex-grid-md{margin-left:-1rem;margin-top:-1rem}.stl-flex-grid-md>*{margin-left:1rem;margin-top:1rem}.stl-flex-grid-lg{margin-left:-1.5rem;margin-top:-1.5rem}.stl-flex-grid-lg>*{margin-left:1.5rem;margin-top:1.5rem}.stl-flex-grid-xl{margin-left:-2rem;margin-top:-2rem}.stl-flex-grid-xl>*{margin-left:2rem;margin-top:2rem}.stl-autocomplete-container{align-items:center;background-color:#fff;border:1px solid #d6d6e7;border-radius:3px;box-shadow:inset 0 1px 4px 0 rgba(119,122,175,.3);cursor:text;display:flex;font-size:.875rem;line-height:1.25rem;min-height:2.5rem;overflow:hidden;padding:0 1rem;transition:all .1s ease-in-out;width:100%}.stl-autocomplete-container:after{content:" ";display:block;font-size:0;min-height:30px}.stl-autocomplete-container.stl-autocomplete-large{min-height:3rem}.stl-autocomplete-container.stl-autocomplete-large:after{min-height:38px}.stl-autocomplete-container:focus-within,.stl-autocomplete-focused{border-color:#3c4fe0;box-shadow:0 1px 0 0 rgba(35,38,59,.05)}.stl-autocomplete-disabled{background-image:linear-gradient(-180deg,#fff,#f5f5fa);border-color:#efeff5;box-shadow:none;cursor:not-allowed}.stl-autocomplete-disabled .stl-autocomplete-input::-moz-placeholder{color:#b6b7d5;pointer-events:none}.stl-autocomplete-disabled .stl-autocomplete-input:-ms-input-placeholder{color:#b6b7d5;pointer-events:none}.stl-autocomplete-disabled .stl-autocomplete-input,.stl-autocomplete-disabled .stl-autocomplete-input::placeholder{color:#b6b7d5;pointer-events:none}.stl-autocomplete-invalid:not(.stl-autocomplete-disabled){background-color:#ffe6e9;border-color:#d4142a}.stl-autocomplete-nowrap{-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;overflow-x:scroll;scrollbar-width:none}.stl-autocomplete-nowrap::-webkit-scrollbar{height:0;width:0}.stl-autocomplete-input{background-color:transparent;caret-color:#5a5e9a;color:#23263b;flex:1;min-width:10ch}.stl-autocomplete-input:focus{outline:none}.stl-autocomplete-input::-moz-placeholder{color:#5a5e9a}.stl-autocomplete-input:-ms-input-placeholder{color:#5a5e9a}.stl-autocomplete-input::placeholder{color:#5a5e9a}.stl-autocomplete-result:not([disabled]) em{background:#a3acff;font-style:normal}.stl-btn{border-radius:3px;cursor:pointer;position:relative}.stl-btn,.stl-btn:hover{text-decoration:none}.stl-btn:focus{outline:none}.stl-btn-disabled{cursor:not-allowed}.stl-btn-subtle{color:#5a5e9a}.stl-btn-subtle:hover{background:rgba(182,183,213,.15)}.stl-btn-subtle:focus{box-shadow:0 0 0 1px #3c4fe0}.stl-btn-subtle.stl-btn-active,.stl-btn-subtle:active{background:#f2f3ff;box-shadow:none;color:#3c4fe0}.stl-btn-subtle.stl-btn-disabled,.stl-btn-subtle:disabled{background:none;box-shadow:none;color:#b6b7d5}.stl-btn-neutral{background-color:#fff;background-image:linear-gradient(-180deg,#fff,#fcfcfd);border:1px solid #d6d6e7;box-shadow:0 1px 0 0 rgba(35,38,59,.05);color:#23263b}.stl-btn-neutral:hover{border-color:#d6d6e7}.stl-btn-neutral:focus,.stl-btn-neutral:hover{background-image:linear-gradient(-180deg,#fff,#f5f5fa)}.stl-btn-neutral:focus{border-color:#3c4fe0;box-shadow:0 0 0 1px #3c4fe0,0 2px 0 1px rgba(35,38,59,.05)}.stl-btn-neutral.stl-btn-active,.stl-btn-neutral:active{border-color:#d6d6e7;box-shadow:inset 0 1px 4px 0 rgba(119,122,175,.4),inset 0 1px 1px 0 rgba(119,122,175,.4),0 1px 0 0 rgba(35,38,59,.05)}.stl-btn-neutral.stl-btn-disabled,.stl-btn-neutral:disabled{background-image:linear-gradient(-180deg,#fff,#f5f5fa);border-color:#efeff5;box-shadow:none;color:#b6b7d5}.stl-btn-primary{background-color:#3c4fe0;background-image:linear-gradient(-180deg,#3c4fe0,#2b3cbb);border:1px solid #2b3cbb;color:#fff}.stl-btn-primary,.stl-btn-primary:hover{box-shadow:inset 0 1px 0 0 hsla(0,0%,100%,.06),0 1px 0 0 rgba(35,38,59,.1)}.stl-btn-primary:hover{background-image:linear-gradient(0deg,#1e2b8f,#2b3cbb);border-color:#1e2b8f}.stl-btn-primary:focus{background-image:linear-gradient(0deg,#3c4fe0,#2b3cbb);border-color:#1e2b8f;box-shadow:inset 0 1px 0 0 hsla(0,0%,100%,.06),0 0 0 1px #1e2b8f,0 2px 0 1px rgba(35,38,59,.1)}.stl-btn-primary.stl-btn-active,.stl-btn-primary:active{background:#2b3cbb;border-color:#1e2b8f;box-shadow:inset 0 1px 4px 0 rgba(20,29,97,.4),inset 0 1px 1px 0 rgba(20,29,97,.6),0 1px 0 0 rgba(35,38,59,.05)}.stl-btn-primary.stl-btn-disabled,.stl-btn-primary:disabled{background-color:#b1b9f3;background-image: linear-gradient(0deg,#b1b9f3,#aab1e4) ;border-color:#aab1e4;box-shadow:none}.stl-btn-destructive{background-color:#ee243c;background-image:linear-gradient(-180deg,#ee243c,#d4142a);border:1px solid #d4142a;color:#fff}.stl-btn-destructive,.stl-btn-destructive:hover{box-shadow:inset 0 1px 0 0 hsla(0,0%,100%,.06),0 1px 0 0 rgba(35,38,59,.1)}.stl-btn-destructive:hover{background-image:linear-gradient(0deg,#d4142a,#ab1325);border-color:#ab1325}.stl-btn-destructive:focus{background-image:linear-gradient(0deg,#ee243c,#d4142a);border-color:#ab1325;box-shadow:inset 0 1px 0 0 hsla(0,0%,100%,.06),0 0 0 1px #ab1325,0 2px 0 1px rgba(35,38,59,.1)}.stl-btn-destructive.stl-btn-active,.stl-btn-destructive:active{background-image:#d4142a;border-color:#ab1325;box-shadow:inset 0 1px 4px 0 rgba(131,17,30,.4),inset 0 1px 1px 0 rgba(131,17,30,.6),0 1px 0 0 rgba(35,38,59,.05)}.stl-btn-destructive.stl-btn-disabled,.stl-btn-destructive:disabled{background-color:#f8a7b1;background-image: linear-gradient(0deg,#f8a7b1,#eea1aa) ;border-color:#eea1aa;box-shadow:none}.stl-btn-group{display:flex;flex-wrap:nowrap}.stl-btn-group>.stl-btn:not(:first-child):not(:last-child),.stl-btn-group>:not(:first-child):not(:last-child) .stl-btn{border-radius:0}.stl-btn-group>.stl-btn:first-child,.stl-btn-group>:first-child .stl-btn{border-bottom-right-radius:0;border-top-right-radius:0}.stl-btn-group>.stl-btn:not(:first-child),.stl-btn-group>:not(:first-child) .stl-btn{margin-left:-1px}.stl-btn-group>.stl-btn:last-child,.stl-btn-group>:last-child .stl-btn{border-bottom-left-radius:0;border-top-left-radius:0}.stl-btn-group .stl-btn-active,.stl-btn-group .stl-btn:active,.stl-btn-group .stl-btn:focus{z-index:1}.stl-card{background:#fff;border-radius:3px;overflow:hidden;padding:1.5rem}.stl-card-fullbleed{padding:0}.stl-card-z100{box-shadow:0 0 0 1px rgba(35,38,59,.05),0 1px 3px 0 rgba(35,38,59,.15)}.stl-card-z200{box-shadow:0 0 0 1px rgba(35,38,59,.05),0 4px 8px -2px rgba(35,38,59,.25)}.stl-card-z300{box-shadow:0 0 0 1px rgba(35,38,59,.05),0 8px 16px -4px rgba(35,38,59,.25)}.stl-card-z400{box-shadow:0 0 0 1px rgba(35,38,59,.05),0 12px 24px -6px rgba(35,38,59,.25)}.stl-card-z500{border-radius:8px;box-shadow:0 0 0 1px rgba(35,38,59,.05),0 20px 32px -8px rgba(35,38,59,.25)}.stl-checkbox{align-items:center;background:linear-gradient(180deg,#fff,#f5f5fa);border:1px solid #d6d6e7;border-radius:3px;box-shadow:0 1px 0 0 rgba(35,38,59,.05);color:#3c4fe0;display:flex;flex-shrink:0;height:16px;justify-content:center;overflow:hidden;position:relative;transition:all .25s cubic-bezier(.23,1,.32,1);width:16px}.stl-checkbox:focus-within{border-color:currentColor}.stl-checkbox>.stl-checkbox-icon{color:currentColor;opacity:0;transform:scale(1.8);transition:.15s cubic-bezier(.23,1,.32,1);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.stl-checkbox-invalid:not(.stl-checkbox-disabled){background:#ffe6e9;border-color:currentColor;color:#d4142a}.stl-checkbox-checked,.stl-checkbox-indeterminate{border-color:currentColor;box-shadow:inset 0 1px 0 0 rgba(35,38,59,.05)}.stl-checkbox-checked:focus-within,.stl-checkbox-indeterminate:focus-within{border-color:currentColor;box-shadow:inset 0 1px 0 0 rgba(35,38,59,.05),0 0 0 1px currentColor}.stl-checkbox-checked>.stl-checkbox-icon,.stl-checkbox-indeterminate>.stl-checkbox-icon{opacity:1;transform:scale(1)}.stl-checkbox-disabled{background:linear-gradient(-180deg,#fff,#f5f5fa);border-color:#efeff5;box-shadow:none;color:#efeff5;cursor:not-allowed}.stl-checkbox-icon{stroke-width:3}.stl-empty-state-illustration{min-height:500px;min-width:500px}.stl-flag{width:320px}.stl-flags_item-enter{opacity:.01;transform:translateY(80px)}.stl-flags_item-enter-active{transition:all .5s ease-in}.stl-flags_item-enter-active,.stl-flags_item-exit{opacity:1;transform:translate(0)}.stl-flags_item-exit-active{opacity:.01;transform:translateY(80px);transition:all .5s ease-in}.stl-help-underline{background-image:linear-gradient(90deg,#9698c3 66%,transparent 0);background-position:0 1.04em;background-repeat:repeat-x;background-size:5px 1px;cursor:help}.stl-help-underline:focus,.stl-help-underline:hover{background-image:linear-gradient(90deg,#777aaf 66%,transparent 0)}.stl-input{align-items:center;background-color:#fff;border:1px solid #d6d6e7;border-radius:3px;box-shadow:inset 0 1px 4px 0 rgba(119,122,175,.3);cursor:text;display:flex;font-size:.875rem;line-height:1.25rem;overflow:hidden;position:relative;transition:all .1s ease-in-out}.stl-input input{background:transparent;caret-color:#5a5e9a;color:#23263b;flex:1;min-width:0}.stl-input input[type=number]{-moz-appearance:textfield}.stl-input input[type=number]::-webkit-inner-spin-button,.stl-input input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.stl-input input:focus{outline:none}.stl-input input::-moz-placeholder{color:#5a5e9a}.stl-input input:-ms-input-placeholder{color:#5a5e9a}.stl-input input::placeholder{color:#5a5e9a}.stl-input-focused,.stl-input:focus-within{border-color:#3c4fe0;box-shadow:0 1px 0 0 rgba(35,38,59,.05)}.stl-input-disabled{background:linear-gradient(-180deg,#fff,#f5f5fa);border-color:#efeff5;box-shadow:none;cursor:not-allowed}.stl-input-disabled input::-moz-placeholder{color:#b6b7d5;pointer-events:none}.stl-input-disabled input:-ms-input-placeholder{color:#b6b7d5;pointer-events:none}.stl-input-disabled input,.stl-input-disabled input::placeholder{color:#b6b7d5;pointer-events:none}.stl-input-small{height:2rem}.stl-input-medium{height:2.5rem}.stl-input-large{height:3rem}.stl-input-invalid:not(.stl-input-disabled){background-color:#ffe6e9;border-color:#d4142a}.stl-input-spinner{display:flex;flex-direction:column;height:100%;min-width:20px;width:24px}.stl-input-spinner-button{align-items:center;background:linear-gradient(-180deg,#fff,#fcfcfd);border-color:#d6d6e7;border-left:1px #d6d6e7;border-style:solid;display:inline-flex;flex:1;justify-content:center}.stl-input-spinner-button:focus{outline:none}.stl-input-spinner-button:not(:last-child){border-bottom-width:1px}.stl-instantsearch .ais-SearchBox-form{align-items:stretch;background-color:#fff;cursor:text;display:flex;font-size:.875rem;height:2.5rem;line-height:1.25rem;overflow:hidden;position:relative;width:100%}.stl-instantsearch .ais-SearchBox-form:before{background:url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%235a5e9a%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2211%22%20cy%3D%2211%22%20r%3D%228%22%3E%3C%2Fcircle%3E%3Cline%20x1%3D%2221%22%20y1%3D%2221%22%20x2%3D%2216.65%22%20y2%3D%2216.65%22%3E%3C%2Fline%3E%3C%2Fsvg%3E");content:"";height:1rem;left:1rem;margin-top:-.5rem;position:absolute;top:50%;width:1rem}.stl-instantsearch .ais-SearchBox-input{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border:1px solid #d6d6e7;border-radius:3px;box-shadow:inset 0 1px 4px 0 rgba(119,122,175,.3);caret-color:#5a5e9a;color:#23263b;flex:1;min-width:0;padding-left:2.5rem;transition:all .1s ease-in-out}.stl-instantsearch .ais-SearchBox-input::-moz-placeholder{color:#5a5e9a}.stl-instantsearch .ais-SearchBox-input:-ms-input-placeholder{color:#5a5e9a}.stl-instantsearch .ais-SearchBox-input::placeholder{color:#5a5e9a}.stl-instantsearch .ais-SearchBox-input:focus{border-color:#3c4fe0;box-shadow:0 1px 0 0 rgba(35,38,59,.05);outline:none}.stl-instantsearch .ais-SearchBox-input:disabled{background:linear-gradient(-180deg,#fff,#f5f5fa);border-color:#efeff5;box-shadow:none;cursor:not-allowed}.stl-instantsearch .ais-SearchBox-input:disabled::-moz-placeholder{color:#b6b7d5;pointer-events:none}.stl-instantsearch .ais-SearchBox-input:disabled:-ms-input-placeholder{color:#b6b7d5;pointer-events:none}.stl-instantsearch .ais-SearchBox-input:disabled::placeholder{color:#b6b7d5;pointer-events:none}.stl-instantsearch .ais-SearchBox-input::-webkit-search-cancel-button,.stl-instantsearch .ais-SearchBox-input::-webkit-search-decoration,.stl-instantsearch .ais-SearchBox-input::-webkit-search-results-button,.stl-instantsearch .ais-SearchBox-input::-webkit-search-results-decoration{-webkit-appearance:none;appearance:none}.stl-instantsearch .ais-SearchBox-loadingIndicator,.stl-instantsearch .ais-SearchBox-reset,.stl-instantsearch .ais-SearchBox-submit{display:none}.stl-instantsearch .ais-Menu-searchBox,.stl-instantsearch .ais-RefinementList-searchBox{margin-bottom:.5rem}.stl-instantsearch .ais-Menu-searchBox .ais-SearchBox-form,.stl-instantsearch .ais-RefinementList-searchBox .ais-SearchBox-form{height:2rem}.stl-instantsearch .ais-Menu-searchBox .ais-SearchBox-form:before,.stl-instantsearch .ais-RefinementList-searchBox .ais-SearchBox-form:before{left:.5rem}.stl-instantsearch .ais-Menu-searchBox .ais-SearchBox-input,.stl-instantsearch .ais-RefinementList-searchBox .ais-SearchBox-input{padding-left:2rem}.stl-instantsearch .ais-HierarchicalMenu-list--child{padding-left:1rem}.stl-instantsearch .ais-HierarchicalMenu-item,.stl-instantsearch .ais-Menu-item,.stl-instantsearch .ais-RefinementList-item{font-size:.875rem;line-height:1.75rem}.stl-instantsearch .ais-HierarchicalMenu-link,.stl-instantsearch .ais-Menu-link,.stl-instantsearch .ais-RefinementList-label{align-items:center;cursor:pointer;display:flex;flex-wrap:nowrap}.stl-instantsearch .ais-HierarchicalMenu-label,.stl-instantsearch .ais-Menu-label,.stl-instantsearch .ais-RefinementList-labelText{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.stl-instantsearch .ais-HierarchicalMenu-item--selected>.ais-HierarchicalMenu-link>.ais-HierarchicalMenu-label,.stl-instantsearch .ais-Menu-item--selected .ais-Menu-label{font-weight:600}.stl-instantsearch .ais-RefinementList-checkbox{opacity:0;position:absolute}.stl-instantsearch .ais-HierarchicalMenu-label,.stl-instantsearch .ais-RefinementList-labelText{left:-1px;margin-right:-1px;padding-left:1.5rem;position:relative}.stl-instantsearch .ais-HierarchicalMenu-label:before,.stl-instantsearch .ais-RefinementList-labelText:before{content:"";height:1rem;left:1px;margin-top:-.5rem;overflow:hidden;position:absolute;top:50%;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:1rem}.stl-instantsearch .ais-RefinementList-labelText:before{background-color:#fff;background-position:50%;background-size:180%;border:1px solid #d6d6e7;border-radius:3px;box-shadow:inset 0 1px 4px 0 rgba(119,122,175,.4);color:#3c4fe0;transition:all .25s cubic-bezier(.23,1,.32,1)}.stl-instantsearch .ais-RefinementList-item:focus-within .ais-RefinementList-labelText:before{border-color:currentColor}.stl-instantsearch .ais-RefinementList-item--selected .ais-RefinementList-labelText:before{background-image:url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%235468ff%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%2220%206%209%2017%204%2012%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E");background-size:100%;border-color:currentColor;box-shadow:inset 0 1px 0 0 rgba(35,38,59,.05);opacity:1}.stl-instantsearch .ais-RefinementList-item--selected:focus-within .ais-RefinementList-labelText:before{border-color:currentColor;box-shadow:inset 0 1px 0 0 rgba(35,38,59,.05),0 0 0 1px currentColor}.stl-instantsearch .ais-HierarchicalMenu-label:before{background-image:url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23b6b7d5%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%2218%2015%2012%209%206%2015%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E")}.stl-instantsearch .ais-HierarchicalMenu-item--selected>.ais-HierarchicalMenu-link>.ais-HierarchicalMenu-label:before{background-image:url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%235468ff%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E")}.stl-instantsearch .ais-HierarchicalMenu-link:hover>.ais-HierarchicalMenu-label:before,.stl-instantsearch .ais-RefinementList-label:hover .ais-RefinementList-labelText:before{color:#5468ff}.stl-instantsearch .ais-HierarchicalMenu-link:hover{text-decoration:none}.stl-instantsearch .ais-HierarchicalMenu-link:hover>.ais-HierarchicalMenu-label{text-decoration:underline}.stl-instantsearch .ais-HierarchicalMenu-count,.stl-instantsearch .ais-Menu-count,.stl-instantsearch .ais-RefinementList-count{align-items:center;background:#f5f5fa;border:1px solid #b6b7d5;border-radius:99999px;color:#23263b;display:inline-flex;flex-shrink:0;font-size:.75rem;font-weight:400;justify-items:center;line-height:1rem;margin-left:.5rem;overflow:hidden;padding:0 .25rem}.stl-instantsearch .ais-HierarchicalMenu-showMore,.stl-instantsearch .ais-Menu-showMore,.stl-instantsearch .ais-RefinementList-showMore{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;border-radius:3px;color:#5a5e9a;cursor:pointer;display:inline-flex;font-size:.875rem;font-weight:400;height:1.5rem;justify-items:center;line-height:1.25rem;margin-top:1rem;padding:0 1rem;position:relative;text-decoration:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.stl-instantsearch .ais-HierarchicalMenu-showMore:hover,.stl-instantsearch .ais-Menu-showMore:hover,.stl-instantsearch .ais-RefinementList-showMore:hover{background:#f5f5fa;text-decoration:none}.stl-instantsearch .ais-HierarchicalMenu-showMore:focus,.stl-instantsearch .ais-Menu-showMore:focus,.stl-instantsearch .ais-RefinementList-showMore:focus{box-shadow:0 0 0 1px #3c4fe0;outline:none}.stl-instantsearch .ais-HierarchicalMenu-showMore:active,.stl-instantsearch .ais-Menu-showMore:active,.stl-instantsearch .ais-RefinementList-showMore:active{background:#f2f3ff;box-shadow:none;color:#3c4fe0}.stl-instantsearch .ais-HierarchicalMenu-showMore:disabled,.stl-instantsearch .ais-Menu-showMore:disabled,.stl-instantsearch .ais-RefinementList-showMore:disabled{background:none;box-shadow:none;color:#b6b7d5;cursor:not-allowed}.stl-instantsearch .ais-Menu-noResults,.stl-instantsearch .ais-RefinementList-noResults{color:#5a5e9a;font-size:.875rem;line-height:1.25rem;margin-top:1rem}.stl-instantsearch .ais-HitsPerPage-select,.stl-instantsearch .ais-SortBy-select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;background-image: url('data:image/svg+xml;utf8,<svg width="14" height="24" xmlns="http://www.w3.org/2000/svg"><g stroke="%23777aaf" stroke-width="2" fill="none" fill-rule="evenodd"><path d="M13 7L7 1 1 7M1 17l6 6 6-6"/></g></svg>'),linear-gradient(-180deg,#fff,#fcfcfd) ;background-position:right 1rem center,0 0;background-repeat:no-repeat;background-size:10px,auto;border:1px solid #d6d6e7;border-radius:3px;box-shadow:0 1px 0 0 rgba(35,38,59,.05);color:#23263b;cursor:pointer;height:2.5rem;outline:none;padding:0 2.5rem 0 1rem;position:relative;width:100%}.stl-instantsearch .ais-HitsPerPage-select:-moz-focusring,.stl-instantsearch .ais-HitsPerPage-select::-moz-focus-inner,.stl-instantsearch .ais-SortBy-select:-moz-focusring,.stl-instantsearch .ais-SortBy-select::-moz-focus-inner{color:transparent;outline:none;text-shadow:0 0 0 #23263b}.stl-instantsearch .ais-HitsPerPage-select:focus::-ms-value,.stl-instantsearch .ais-SortBy-select:focus::-ms-value{color:#23263b}.stl-instantsearch .ais-HitsPerPage-select>option,.stl-instantsearch .ais-SortBy-select>option{text-shadow:none}.stl-instantsearch .ais-HitsPerPage-select>option:not(:checked),.stl-instantsearch .ais-SortBy-select>option:not(:checked){color:#23263b}.stl-instantsearch .ais-HitsPerPage-select>option:disabled,.stl-instantsearch .ais-SortBy-select>option:disabled{color:#b6b7d5}.stl-instantsearch .ais-HitsPerPage-select:hover,.stl-instantsearch .ais-SortBy-select:hover{background-image: url('data:image/svg+xml;utf8,<svg width="14" height="24" xmlns="http://www.w3.org/2000/svg"><g stroke="%23777aaf" stroke-width="2" fill="none" fill-rule="evenodd"><path d="M13 7L7 1 1 7M1 17l6 6 6-6"/></g></svg>'),linear-gradient(-180deg,#fcfcfd,#f5f5fa) ;border-color:#d6d6e7}.stl-instantsearch .ais-HitsPerPage-select:focus,.stl-instantsearch .ais-SortBy-select:focus{background-image: url('data:image/svg+xml;utf8,<svg width="14" height="24" xmlns="http://www.w3.org/2000/svg"><g stroke="%23777aaf" stroke-width="2" fill="none" fill-rule="evenodd"><path d="M13 7L7 1 1 7M1 17l6 6 6-6"/></g></svg>'),linear-gradient(-180deg,#fff,#f5f5fa) ;border-color:#3c4fe0;box-shadow:0 0 0 1px #3c4fe0,0 2px 0 0 rgba(35,38,59,.05)}.stl-instantsearch .ais-HitsPerPage-select:disabled,.stl-instantsearch .ais-SortBy-select:disabled{background-image: url('data:image/svg+xml;utf8,<svg width="14" height="24" xmlns="http://www.w3.org/2000/svg"><g stroke="%23b6b7d5" stroke-width="2" fill="none" fill-rule="evenodd"><path d="M13 7L7 1 1 7M1 17l6 6 6-6"/></g></svg>'),linear-gradient(-180deg,#fff,#f5f5fa) ;border-color:#efeff5;box-shadow:none;color:#b6b7d5;cursor:not-allowed}.stl-instantsearch .ais-ClearRefinements-button,.stl-instantsearch .ais-InfiniteHits-loadMore,.stl-instantsearch .ais-InfiniteHits-loadPrevious,.stl-instantsearch .ais-Pagination-link{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;background-image:linear-gradient(-180deg,#fff,#fcfcfd);border:1px solid #d6d6e7;border-radius:3px;box-shadow:0 1px 0 0 rgba(35,38,59,.05);color:#23263b;cursor:pointer;display:inline-flex;font-size:.875rem;font-weight:400;height:2rem;justify-items:center;line-height:1.25rem;padding:0 1rem;position:relative;text-decoration:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.stl-instantsearch .ais-ClearRefinements-button:hover,.stl-instantsearch .ais-InfiniteHits-loadMore:hover,.stl-instantsearch .ais-InfiniteHits-loadPrevious:hover,.stl-instantsearch .ais-Pagination-link:hover{background-image:linear-gradient(-180deg,#fff,#f5f5fa);border-color:#d6d6e7}.stl-instantsearch .ais-ClearRefinements-button:focus,.stl-instantsearch .ais-InfiniteHits-loadMore:focus,.stl-instantsearch .ais-InfiniteHits-loadPrevious:focus,.stl-instantsearch .ais-Pagination-link:focus{background-image:linear-gradient(-180deg,#fff,#f5f5fa);border-color:#3c4fe0;box-shadow:0 0 0 1px #3c4fe0,0 2px 0 1px rgba(35,38,59,.05);outline:none;z-index:2}.stl-instantsearch .ais-ClearRefinements-button.ais-Pagination-link--selected,.stl-instantsearch .ais-ClearRefinements-button:active,.stl-instantsearch .ais-InfiniteHits-loadMore.ais-Pagination-link--selected,.stl-instantsearch .ais-InfiniteHits-loadMore:active,.stl-instantsearch .ais-InfiniteHits-loadPrevious.ais-Pagination-link--selected,.stl-instantsearch .ais-InfiniteHits-loadPrevious:active,.stl-instantsearch .ais-Pagination-link.ais-Pagination-link--selected,.stl-instantsearch .ais-Pagination-link:active{border-color:#d6d6e7;box-shadow:inset 0 1px 4px 0 rgba(119,122,175,.4),inset 0 1px 1px 0 rgba(119,122,175,.4),0 1px 0 0 rgba(35,38,59,.05);z-index:1}.stl-instantsearch .ais-ClearRefinements-button:disabled,.stl-instantsearch .ais-InfiniteHits-loadMore:disabled,.stl-instantsearch .ais-InfiniteHits-loadPrevious:disabled,.stl-instantsearch .ais-Pagination-item--disabled .ais-Pagination-link{background-image:linear-gradient(-180deg,#fff,#f5f5fa);border-color:#efeff5;box-shadow:none;color:#b6b7d5;cursor:not-allowed}.stl-instantsearch .ais-Pagination-item:first-child>.ais-Pagination-link{border-radius:3px 0 0 3px}.stl-instantsearch .ais-Pagination-item+.ais-Pagination-item>.ais-Pagination-link{border-radius:0;margin-left:-1px}.stl-instantsearch .ais-Pagination-item:last-child>.ais-Pagination-link{border-radius:0 3px 3px 0}.stl-instantsearch .ais-InfiniteHits-loadMore,.stl-instantsearch .ais-InfiniteHits-loadPrevious{margin:1rem auto}.stl-instantsearch .ais-ClearRefinements-button{width:100%}.stl-instantsearch .ais-Highlight-highlighted{background-color:#f2f3ff;color:#141d61;font-style:normal}.stl-instantsearch .ais-Pagination-item{display:inline-block}.stl-keyboard-key{align-items:center;background:linear-gradient(134deg,#e6e7ec,#fff 70%);border-radius:3px;box-shadow:2px 1px 4px -2px rgba(35,38,59,.24),inset -.6px -.6px 1px #dcdde7,inset .6px .6px 1px #fff;color:#5a5e9a;display:inline-flex;font-family:Fira Code,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:.75rem;height:20px;justify-content:center;line-height:1rem;min-width:20px;padding:0 4px;text-align:center}.stl-medallion{height:40px;width:40px}.stl-medallion-large{height:72px;width:72px}.stl-medallion-grey{background-image:linear-gradient(180deg,#f5f5fa 0,#d6d6e7);box-shadow:0 4px 8px -2px rgba(33,36,61,.25),inset 0 -2px 2px rgba(182,183,213,.03)}.stl-medallion-pink{background-image:linear-gradient(180deg,#ffeaf6 0,#feb9e2);box-shadow:0 4px 8px -2px rgba(33,36,61,.25),inset 0 -2px 2px rgba(253,137,206,.03)}.stl-medallion-accent{background-image:linear-gradient(180deg,#f2f3ff 0,#cacfff);box-shadow:0 4px 8px -2px rgba(33,36,61,.25),inset 0 -2px 2px rgba(163,172,255,.03)}.stl-medallion-blue{background-image:linear-gradient(180deg,#e8faff 0,#b9efff);box-shadow:0 4px 8px -2px rgba(33,36,61,.25),inset 0 -2px 2px rgba(137,229,255,.03)}.stl-medallion-green{background-image:linear-gradient(180deg,#e6fcf3 0,#c9f8de);box-shadow:0 4px 8px -2px rgba(33,36,61,.25),inset 0 -2px 2px rgba(170,244,200,.03)}.stl-medallion-orange{background-image:linear-gradient(180deg,#fff9ec 0,#ffe9c3);box-shadow:0 4px 8px -2px rgba(33,36,61,.25),inset 0 -2px 2px hsla(35,98%,80%,.03)}.stl-medallion-red{background-image:linear-gradient(180deg,#ffe6e9 0,#febdc5);box-shadow:0 4px 8px -2px rgba(33,36,61,.25),inset 0 -2px 2px rgba(252,149,161,.03)}.stl-medallion-white{background-image:linear-gradient(180deg,#fff 0,#f5f5fa);box-shadow:0 4px 8px -2px rgba(33,36,61,.25),inset 0 -2px 2px rgba(35,38,59,.03)}.stl-modal-container{z-index:400}.stl-modal-dialog-medium{max-width:640px}.stl-modal-dialog-large{max-width:920px}.stl-satellite-modal-appear .stl-modal-container,.stl-satellite-modal-enter .stl-modal-container{opacity:.1;transform:translateY(8px) scale(.94)}.stl-satellite-modal-appear-active .stl-modal-container,.stl-satellite-modal-enter-active .stl-modal-container{opacity:1;transform:translate(0) scale(1);transition:all .2s cubic-bezier(.6,-.28,.735,.045)}.stl-satellite-modal-exit .stl-modal-container{opacity:1;transform:translate(0) scale(1)}.stl-satellite-modal-exit-active .stl-modal-container{opacity:.1;transform:translateY(8px) scale(.94);transition:all .2s cubic-bezier(.6,-.28,.735,.045)}.stl-progress-bar{background:#f5f5fa;border-radius:4px;box-shadow:inset 0 1px 3px 0 rgba(0,0,0,.1),0 .5px 0 0 hsla(0,0%,100%,.05);display:block;height:4px;overflow:hidden;width:100%}.stl-progress-bar-progress{background:#3c4fe0;height:100%}.stl-progress-spinner{stroke:currentColor;-webkit-animation:stl-spinner 1.4s linear infinite;animation:stl-spinner 1.4s linear infinite;color:#3c4fe0}@-webkit-keyframes stl-spinner{0%{stroke-dasharray:1px,200px;stroke-dashoffset:0px;transform:rotate(0deg)}50%{stroke-dasharray:100px,200px;stroke-dashoffset:-15px}to{stroke-dasharray:100px,200px;stroke-dashoffset:-125px;transform:rotate(1turn)}}@keyframes stl-spinner{0%{stroke-dasharray:1px,200px;stroke-dashoffset:0px;transform:rotate(0deg)}50%{stroke-dasharray:100px,200px;stroke-dashoffset:-15px}to{stroke-dasharray:100px,200px;stroke-dashoffset:-125px;transform:rotate(1turn)}}.stl-radio-button{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:#fff;border:1px solid #d6d6e7;border-radius:50%;box-shadow:inset 0 1px 4px 0 rgba(119,122,175,.3);height:16px;outline:0;position:relative;width:16px}.stl-radio-button:checked,.stl-radio-button:focus{border-color:#3c4fe0;box-shadow:0 1px 0 0 rgba(35,38,59,.05)}.stl-radio-button:checked:after{background:#3c4fe0;border-radius:50%;bottom:4px;content:" ";left:4px;position:absolute;right:4px;top:4px}.stl-radio-button:checked:focus{box-shadow:0 0 0 1px #3c4fe0,0 1px 0 0 rgba(35,38,59,.05)}.stl-radio-button:disabled{background-image:linear-gradient(-180deg,#fff,#f5f5fa);border-color:#efeff5;box-shadow:none;cursor:not-allowed}.stl-radio-button:disabled:checked:after{background:#efeff5;box-shadow:none}.stl-range-slider{align-items:center;display:flex;height:24px;min-width:200px;position:relative}.stl-range-slider-track-1,.stl-range-slider-track-2{background-color:#f5f5fa;border-radius:3px;box-shadow:inset 0 1px 3px 0 rgba(0,0,0,.1),0 .5px 0 0 hsla(0,0%,100%,.05);height:4px}.stl-range-slider-track-1{background-color:#3c4fe0}.stl-range-slider-track-2{background-color:transparent}.stl-range-slider-thumb{background-color:#fff;background-image:linear-gradient(-180deg,#fff,#fcfcfd);border:1px solid #d6d6e7;border-radius:2px;box-shadow:0 1px 0 0 rgba(35,38,59,.05);height:24px;margin-top:-12px;position:absolute;top:12px;transform:translateX(-6px);width:12px}.stl-range-slider-thumb:after,.stl-range-slider-thumb:before{background-color:#d6d6e7;content:" ";height:12px;position:absolute;top:6px;width:1px}.stl-range-slider-thumb:before{left:6px}.stl-range-slider-thumb:after{right:6px}.stl-range-slider-input{-webkit-appearance:none;-moz-appearance:none;appearance:none;cursor:pointer;height:24px;left:0;opacity:0;position:absolute;top:0;width:100%}.stl-range-slider-input:disabled{cursor:not-allowed}.stl-scroll-indicator{overflow:hidden;position:relative}.stl-scroll-indicator:after,.stl-scroll-indicator:before{height:48px;left:0;pointer-events:none;position:absolute;width:100%}.stl-scroll-indicator:before{background-image:linear-gradient(0,hsla(0,0%,100%,0),#fff);top:0}.stl-scroll-indicator:after{background-image:linear-gradient(180deg,hsla(0,0%,100%,0),#fff);bottom:0}.stl-scroll-indicator-dark:before{background-image:linear-gradient(0,rgba(35,38,59,0),#23263b)}.stl-scroll-indicator-dark:after{background-image:linear-gradient(180deg,rgba(35,38,59,0),#23263b)}.stl-scroll-indicator-bottom:after,.stl-scroll-indicator-top:before{content:" "}.stl-scroll-indicator-content{display:block;height:100%;overflow-y:auto}.stl-select-input{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;background-image: url('data:image/svg+xml;utf8,<svg width="14" height="24" xmlns="http://www.w3.org/2000/svg"><g stroke="%23777aaf" stroke-width="2" fill="none" fill-rule="evenodd"><path d="M13 7L7 1 1 7M1 17l6 6 6-6"/></g></svg>'),linear-gradient(-180deg,#fff,#fcfcfd) ;background-position:right 1rem center,0 0;background-repeat:no-repeat;border:1px solid #d6d6e7;border-radius:3px;box-shadow:0 1px 0 0 rgba(35,38,59,.05);color:#23263b;cursor:pointer;outline:none;padding:0 2.5rem 0 1rem;position:relative;width:100%}.stl-select-input:-moz-focusring,.stl-select-input::-moz-focus-inner{color:transparent;outline:none;text-shadow:0 0 0 #23263b}.stl-select-input:focus::-ms-value{color:#23263b}.stl-select-input>option{text-shadow:none}.stl-select-input>option:not(:checked){color:#23263b}.stl-select-input>option:disabled{color:#b6b7d5}.stl-select-input:hover{background-image: url('data:image/svg+xml;utf8,<svg width="14" height="24" xmlns="http://www.w3.org/2000/svg"><g stroke="%23777aaf" stroke-width="2" fill="none" fill-rule="evenodd"><path d="M13 7L7 1 1 7M1 17l6 6 6-6"/></g></svg>'),linear-gradient(-180deg,#fcfcfd,#f5f5fa) ;border-color:#d6d6e7}.stl-select-input:focus{background-image: url('data:image/svg+xml;utf8,<svg width="14" height="24" xmlns="http://www.w3.org/2000/svg"><g stroke="%23777aaf" stroke-width="2" fill="none" fill-rule="evenodd"><path d="M13 7L7 1 1 7M1 17l6 6 6-6"/></g></svg>'),linear-gradient(-180deg,#fff,#f5f5fa) ;border-color:#3c4fe0;box-shadow:0 0 0 1px #3c4fe0,0 2px 0 0 rgba(35,38,59,.05)}.stl-select-input:disabled{background-image: url('data:image/svg+xml;utf8,<svg width="14" height="24" xmlns="http://www.w3.org/2000/svg"><g stroke="%23b6b7d5" stroke-width="2" fill="none" fill-rule="evenodd"><path d="M13 7L7 1 1 7M1 17l6 6 6-6"/></g></svg>'),linear-gradient(-180deg,#fff,#f5f5fa) ;border-color:#efeff5;box-shadow:none;color:#b6b7d5;cursor:not-allowed}.stl-select-input-small{background-size:8px,auto;height:2rem}.stl-select-input-medium{background-size:10px,auto;height:2.5rem}.stl-select-input-large{background-size:12px,auto;height:3rem}.stl-sidebar{background-color:#23263b;color:#d6d6e7;width:256px}.stl-sidebar-light{background-color:#fff;box-shadow:0 0 0 1px rgba(35,38,59,.05),0 1px 3px 0 rgba(35,38,59,.15)}.stl-sidebar-collapsed{width:80px}.stl-sidebar-link{align-items:center;color:inherit;cursor:pointer;display:flex;height:2.5rem;padding:.5rem 1.5rem;transition:background-color .1s ease-in-out}.stl-sidebar-link,.stl-sidebar-link:hover{outline:none;text-decoration:none}.stl-sidebar-link.stl-sidebar-link-active,.stl-sidebar-link:focus,.stl-sidebar-link:hover{background-color:#111432;color:#fff}.stl-sidebar-link.stl-sidebar-link-active{box-shadow:inset 3px 0 0 #5468ff}.stl-sidebar-link-light{background-color:transparent;color:#5a5e9a}.stl-sidebar-link-light.stl-sidebar-link-active,.stl-sidebar-link-light:focus,.stl-sidebar-link-light:hover{background-color:#f5f5fa;color:#23263b}.stl-sidebar-link-light.stl-sidebar-link-active{box-shadow:inset 3px 0 0 #3c4fe0}.stl-switch{box-shadow:0 0 0 2px #f5f5fa;z-index:1}.stl-switch:focus-within:focus-visible{box-shadow:0 0 0 1px #f5f5fa,0 0 0 2px #3c4fe0}.stl-switch-large{box-shadow:0 0 0 4px #f5f5fa}.stl-switch-large:focus-within:focus-visible{box-shadow:0 0 0 3px #f5f5fa,0 0 0 4px #3c4fe0}.stl-tabs-tabbar{scroll-behavior:smooth}.stl-tab[data-selected]{color:#23263b}.stl-tab-grey:focus,.stl-tab-grey:hover,.stl-tab-grey[data-selected]{border-bottom-color:#b6b7d5}.stl-tab-accent:focus,.stl-tab-accent:hover,.stl-tab-accent[data-selected]{border-bottom-color:#3c4fe0}.stl-tab-blue:focus,.stl-tab-blue:hover,.stl-tab-blue[data-selected]{border-bottom-color:#0db7eb}.stl-tab-green:focus,.stl-tab-green:hover,.stl-tab-green[data-selected]{border-bottom-color:#0de589}.stl-tab-orange:focus,.stl-tab-orange:hover,.stl-tab-orange[data-selected]{border-bottom-color:#f78125}.stl-tab-red:focus,.stl-tab-red:hover,.stl-tab-red[data-selected]{border-bottom-color:#ee243c}.stl-tab{border-bottom-color:transparent;border-bottom-width:3px;color:#5a5e9a;cursor:pointer;display:inline-flex;flex-shrink:0;justify-content:center;min-width:3rem}.stl-tab[data-disabled=true],.stl-tab[disabled]{border-bottom-color:transparent;color:#9698c3;cursor:not-allowed}.stl-tab:focus{outline:none}.stl-datatable tr.stl-row-disabled td{cursor:not-allowed}.stl-datatable tr:not(.stl-row-disabled):hover td{background-color:#fcfcfd}.stl-table{border-collapse:collapse;text-align:left;width:100%}.stl-table td,.stl-table th{padding:14px 16px}.stl-table thead{background-color:#fcfcfd}.stl-table th{border-bottom:1px solid #d6d6e7;font-weight:400}.stl-table tr:not(:last-child) td{border-bottom:1px solid #f5f5fa}.stl-table-with-actions td:last-of-type,.stl-table-with-actions th:last-of-type{text-align:right}.stl-table-with-highlight tr:hover td{background-color:#fcfcfd}.stl-tag{align-items:center;border:1px solid transparent;border-radius:3px;display:inline-flex;font-size:.875rem;height:1.5rem;line-height:1rem;overflow:hidden;padding:0 .5rem}.stl-tag-close-button{border-left:1px solid transparent;height:100%;margin-left:.5rem;margin-right:-.5rem;padding-left:.25rem;padding-right:.25rem}.stl-tag-close-button,.stl-tag-close-button:focus{outline-width:0}.stl-tag-close-button:focus-visible{outline-color:#3c4fe0;outline-offset:-2px;outline-width:3px}.stl-text-area{background-color:#fff;border:1px solid #d6d6e7;border-radius:3px;box-shadow:inset 0 1px 4px 0 rgba(119,122,175,.3);font-size:.875rem;line-height:1.25rem;padding:1rem;transition:all .1s ease-in-out;width:100%}.stl-text-area::-moz-placeholder{color:#5a5e9a}.stl-text-area:-ms-input-placeholder{color:#5a5e9a}.stl-text-area::placeholder{color:#5a5e9a}.stl-text-area:focus{border-color:#3c4fe0;box-shadow:0 1px 0 0 rgba(35,38,59,.05);outline:none}.stl-text-area:disabled{background:linear-gradient(-180deg,#fff,#f5f5fa);border-color:#efeff5;box-shadow:none;color:#b6b7d5;cursor:not-allowed}.stl-toggle-container{display:block;height:18px;overflow:hidden;position:relative;width:32px}.stl-toggle-container input{cursor:pointer;height:100%;left:0;opacity:0;position:absolute;top:0;width:100%}.stl-toggle-container input:disabled{cursor:not-allowed}.stl-toggle{background:#f5f5fa;box-shadow:inset 0 1px 4px 0 rgba(119,122,175,.2);height:100%;left:0;pointer-events:none;top:0;width:100%}.stl-toggle,.stl-toggle:after{border-radius:9999px;position:absolute;transition:all 72ms ease-in-out}.stl-toggle:after{background:linear-gradient(-180deg,#fff,#fcfcfd);box-shadow:0 1px 1px 0 rgba(35,38,59,.1);content:" ";height:16px;left:1px;top:1px;width:16px}input:checked~.stl-toggle{background:#3c4fe0;box-shadow:inset 0 1px 4px 0 rgba(35,38,59,.1)}input:checked~.stl-toggle:after{transform:translateX(14px)}input:disabled~.stl-toggle{opacity:.6}.stl-tooltip{background-color:#23263b;border-radius:3px;box-shadow:0 0 0 1px rgba(35,38,59,.05),0 4px 8px -2px rgba(35,38,59,.25);color:#fff;padding:.25rem .5rem}.stl-tooltip code{background:initial;border:1px solid;color:currentColor;line-height:2;white-space:nowrap}.stl-tooltip-dark .stl-typo-link{color:#7c8aff}.stl-tooltip-light{background-color:#fff;color:#23263b}.stl-tooltip-wrapper{display:inline-block;line-height:0;outline:0}.stl-tooltip-wrapper-popper{max-width:16rem;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:550}.stl-tooltip-wrapper-arrow{border:4px solid transparent;color:#23263b;display:block;height:4px;position:absolute;width:4px}[data-popper-placement^=right]>.stl-tooltip-wrapper-arrow{border-left:none;border-right-color:currentColor;left:-4px}[data-popper-placement^=left]>.stl-tooltip-wrapper-arrow{border-left-color:currentColor;border-right:none;right:-4px}[data-popper-placement^=top]>.stl-tooltip-wrapper-arrow{border-bottom:none;border-top-color:currentColor;top:100%}[data-popper-placement^=bottom]>.stl-tooltip-wrapper-arrow{border-bottom-color:currentColor;border-top:none;top:-4px}.stl-tooltip-wrapper-arrow-light{color:rgba(35,38,59,.1)}.stl-tooltip-wrapper-arrow-light:after{border:3px solid transparent;content:" ";position:absolute}[data-popper-placement^=left]>.stl-tooltip-wrapper-arrow-light:after{border-left-color:#fff;border-right:none;right:1px;transform:translateY(-50%)}[data-popper-placement^=right]>.stl-tooltip-wrapper-arrow-light:after{border-left:none;border-right-color:#fff;left:1px;transform:translateY(-50%)}[data-popper-placement^=top]>.stl-tooltip-wrapper-arrow-light:after{border-bottom:none;border-top-color:#fff;bottom:1px;transform:translate(-50%)}[data-popper-placement^=bottom]>.stl-tooltip-wrapper-arrow-light:after{border-bottom-color:#fff;border-top:none;top:1px;transform:translate(-50%)}.stl-usercontent blockquote:not(:first-child),.stl-usercontent h1:not(:first-child),.stl-usercontent h2:not(:first-child),.stl-usercontent h3:not(:first-child),.stl-usercontent h4:not(:first-child),.stl-usercontent h5:not(:first-child),.stl-usercontent h6:not(:first-child),.stl-usercontent ol:not(:first-child),.stl-usercontent p:not(:first-child),.stl-usercontent table:not(:first-child),.stl-usercontent ul:not(:first-child){margin-top:1rem}.stl-usercontent blockquote:not(:last-child),.stl-usercontent h1:not(:last-child),.stl-usercontent h2:not(:last-child),.stl-usercontent h3:not(:last-child),.stl-usercontent h4:not(:last-child),.stl-usercontent h5:not(:last-child),.stl-usercontent h6:not(:last-child),.stl-usercontent ol:not(:last-child),.stl-usercontent p:not(:last-child),.stl-usercontent table:not(:last-child),.stl-usercontent ul:not(:last-child){margin-bottom:1rem}.stl-usercontent h1{font-size:1.75rem;font-weight:600;line-height:2rem}.stl-usercontent h2{color:#5a5e9a;font-size:1.625rem;font-weight:600;line-height:2rem}.stl-usercontent h3{font-size:1.25rem;font-weight:400;line-height:2rem}.stl-usercontent h4{font-size:1rem;font-weight:400;line-height:1.5rem}.stl-usercontent h5{font-size:1rem;font-weight:600;line-height:1.5rem}.stl-usercontent h6{font-size:.8125rem;font-weight:600;line-height:1rem;text-transform:uppercase}.stl-usercontent blockquote,.stl-usercontent ol,.stl-usercontent p,.stl-usercontent table,.stl-usercontent ul{font-size:1rem;font-weight:400;line-height:1.5rem}.stl-usercontent code{background-color:#f5f5fa;color:#484c7a;display:inline-block;font-family:Fira Code,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;padding:0 .25rem}.stl-usercontent ul{list-style-type:disc;padding-left:1.5rem}.stl-usercontent ol{list-style-type:decimal;padding-left:1.5rem}.stl-usercontent a{color:#3c4fe0}.stl-usercontent a:hover{text-decoration:underline}.stl-usercontent a[href^=http],.stl-usercontent a[target=_blank]{align-items:center;display:inline-flex;position:relative;white-space:nowrap}.stl-usercontent a[href^=http]:after,.stl-usercontent a[target=_blank]:after{background:url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%233c4fe0%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M18%2013v6a2%202%200%200%201-2%202H5a2%202%200%200%201-2-2V8a2%202%200%200%201%202-2h6%22%3E%3C%2Fpath%3E%3Cpolyline%20points%3D%2215%203%2021%203%2021%209%22%3E%3C%2Fpolyline%3E%3Cline%20x1%3D%2210%22%20y1%3D%2214%22%20x2%3D%2221%22%20y2%3D%223%22%3E%3C%2Fline%3E%3C%2Fsvg%3E");background-repeat:no-repeat;content:"";height:1em;margin-left:.25rem;width:1em}.stl-usercontent blockquote{border-left:2px solid #d6d6e7;color:#5a5e9a;padding-left:1rem}.stl-usercontent pre{background-color:#f5f5fa;border-radius:3px;color:#484c7a;font-family:Fira Code,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1rem;font-weight:400;line-height:1.5rem;margin:.5rem 0;max-height:16rem;max-width:100%;overflow:auto;padding:.5rem 1rem}.stl-usercontent pre code{background-color:transparent;color:inherit;display:inline}.stl-usercontent img{display:block;height:auto;margin:auto;max-width:100%}.stl-usercontent hr{border:solid #d6d6e7;border-width:0 0 2px}.stl-usercontent b,.stl-usercontent strong,.stl-usercontent th{font-weight:600}.stl-usercontent table{border-collapse:collapse;text-align:left;width:100%}.stl-usercontent table td,.stl-usercontent table th{padding:14px 16px}.stl-usercontent table th{border-bottom:1px solid #d6d6e7;font-weight:400}.stl-usercontent table tr:not(:last-child) td{border-bottom:1px solid #f5f5fa}.stl-usercontent table tr:hover td{background-color:rgba(245,245,250,.6)}@media (min-width:768px){.stl-usercontent h1{font-size:1.75rem;font-weight:600;line-height:2rem}.stl-usercontent h2{font-size:1.625rem;font-weight:600;line-height:2rem}.stl-usercontent h3{font-size:1.25rem;font-weight:400;line-height:2rem}.stl-usercontent h4{font-size:1rem;font-weight:400;line-height:1.5rem}.stl-usercontent h5{font-size:1rem;font-weight:600;line-height:1.5rem}.stl-usercontent h6{font-size:.8125rem;font-weight:600;line-height:1rem;text-transform:uppercase}.stl-usercontent blockquote,.stl-usercontent ol,.stl-usercontent p,.stl-usercontent pre,.stl-usercontent table,.stl-usercontent ul{font-size:1rem;font-weight:400;line-height:1.5rem}.stl-usercontent pre{font-family:Fira Code,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}}.DayPicker-Year{background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');background-position-x:100%;background-position-y:5px;background-repeat:no-repeat;padding-right:1rem}.DayPicker-Month{margin-top:0}.stl-date-picker .DayPicker-Months,.stl-date-range-picker .DayPicker-Months{align-items:start}.stl-date-picker .DayPicker-Day,.stl-date-range-picker .DayPicker-Day{border-radius:3px}.stl-date-picker .DayPicker-Day--today:not(.DayPicker-Day--outside),.stl-date-range-picker .DayPicker-Day--today:not(.DayPicker-Day--outside){color:#23263b;position:relative}.stl-date-picker .DayPicker-Day--today:not(.DayPicker-Day--outside):before,.stl-date-range-picker .DayPicker-Day--today:not(.DayPicker-Day--outside):before{background-color:#b9efff;border:1px solid #89e5ff;border-radius:9999px;content:"";display:block;height:32px;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:32px;z-index:-1}.stl-date-picker .DayPicker-Day--selected:not(.DayPicker-Day--outside),.stl-date-range-picker .DayPicker-Day--selected:not(.DayPicker-Day--outside){color:#fff}.stl-date-picker .DayPicker-Day{border-radius:3px}.stl-date-picker .DayPicker-Day--today{color:#3c4fe0}.stl-date-picker--selected:not(.DayPicker-Day--outside),.stl-date-picker--selected:not(.DayPicker-Day--outside):hover,.stl-date-picker .DayPicker-Day--selected:not(.DayPicker-Day--outside),.stl-date-picker .DayPicker-Day--selected:not(.DayPicker-Day--outside):hover{background-color:#3c4fe0}.stl-date-range-picker .DayPicker-Day--displayedRanges:not(.DayPicker-Day--outside){background-color:#d6d6e7;border-radius:0}.stl-date-range-picker .DayPicker-Day--displayedRangesStart:not(.DayPicker-Day--outside){background-color:#5a5e9a;border-bottom-left-radius:3px;border-top-left-radius:3px;color:#fff}.stl-date-range-picker .DayPicker-Day--displayedRangesEnd:not(.DayPicker-Day--outside){background-color:#5a5e9a;border-bottom-right-radius:3px;border-top-right-radius:3px;color:#fff}.stl-date-range-picker .DayPicker-Day--selected:not(.DayPicker-Day--outside){background-color:#cacfff;border-radius:0;color:#000}.stl-date-range-picker .DayPicker-Day--selected:not(.DayPicker-Day--outside):hover{background-color:#cacfff}.stl-date-range-picker .DayPicker-Day--start:not(.DayPicker-Day--outside){background-color:#3c4fe0;border-radius:0;border-bottom-left-radius:3px;border-top-left-radius:3px;color:#fff}.stl-date-range-picker .DayPicker-Day--start:not(.DayPicker-Day--outside):hover{background-color:#3c4fe0}.stl-date-range-picker .DayPicker-Day--end:not(.DayPicker-Day--outside){background-color:#3c4fe0;border-radius:0;border-bottom-right-radius:3px;border-top-right-radius:3px;color:#fff}.stl-date-range-picker .DayPicker-Day--end:not(.DayPicker-Day--outside):hover{background-color:#3c4fe0}.stl-pointer-events-none{pointer-events:none}.stl-visible{visibility:visible}.stl-invisible{visibility:hidden}.stl-group:hover .group-hover\:stl-visible{visibility:visible}.stl-static{position:static}.stl-fixed{position:fixed}.stl-absolute{position:absolute}.stl-relative{position:relative}.stl-inset-0{bottom:0;top:0}.stl-inset-0,.stl-inset-x-0{left:0;right:0}.stl-inset-y-0{bottom:0;top:0}.stl-top-0{top:0}.stl-top-2{top:.5rem}.stl-top-3{top:.75rem}.stl-top-px{top:1px}.stl-right-0{right:0}.stl-right-2{right:.5rem}.stl-bottom-0{bottom:0}.stl-left-0{left:0}.stl-z-0{z-index:0}.stl-z-10{z-index:10}.stl-z-modalOverlay{z-index:300}.stl-z-dropdown{z-index:450}.stl-z-notification{z-index:500}.stl-m-1{margin:.25rem}.stl-m-auto{margin:auto}.stl-mx-1{margin-left:.25rem;margin-right:.25rem}.stl-mx-4{margin-left:1rem;margin-right:1rem}.stl-mx-auto{margin-left:auto;margin-right:auto}.stl--mx-10{margin-left:-2.5rem;margin-right:-2.5rem}.stl-my-2{margin-bottom:.5rem;margin-top:.5rem}.stl-my-6{margin-bottom:1.5rem;margin-top:1.5rem}.stl-my-auto{margin-bottom:auto;margin-top:auto}.stl-mt-1{margin-top:.25rem}.stl-mt-2{margin-top:.5rem}.stl-mt-3{margin-top:.75rem}.stl-mt-4{margin-top:1rem}.stl-mt-6{margin-top:1.5rem}.stl-mt-8{margin-top:2rem}.stl-mt-2px{margin-top:2px}.stl--mt-12{margin-top:-3rem}.stl-mr-1{margin-right:.25rem}.stl-mr-2{margin-right:.5rem}.stl-mr-4{margin-right:1rem}.stl-mr-6{margin-right:1.5rem}.stl-mr-auto{margin-right:auto}.stl-mr-2px{margin-right:2px}.stl--mr-2{margin-right:-.5rem}.stl-mb-0{margin-bottom:0}.stl-mb-1{margin-bottom:.25rem}.stl-mb-2{margin-bottom:.5rem}.stl-mb-4{margin-bottom:1rem}.stl-mb-6{margin-bottom:1.5rem}.stl-mb-2\.5{margin-bottom:.625rem}.stl--mb-1{margin-bottom:-.25rem}.stl-ml-1{margin-left:.25rem}.stl-ml-2{margin-left:.5rem}.stl-ml-4{margin-left:1rem}.stl-ml-16{margin-left:4rem}.stl-ml-auto{margin-left:auto}.stl--ml-1{margin-left:-.25rem}.stl-block{display:block}.stl-inline-block{display:inline-block}.stl-inline{display:inline}.stl-flex{display:flex}.stl-inline-flex{display:inline-flex}.stl-table{display:table}.stl-grid{display:grid}.stl-hidden{display:none}.stl-h-0{height:0}.stl-h-2{height:.5rem}.stl-h-3{height:.75rem}.stl-h-4{height:1rem}.stl-h-6{height:1.5rem}.stl-h-8{height:2rem}.stl-h-10{height:2.5rem}.stl-h-48{height:12rem}.stl-h-full{height:100%}.stl-max-h-64{max-height:16rem}.stl-max-h-96{max-height:24rem}.stl-min-h-10{min-height:2.5rem}.stl-min-h-12{min-height:3rem}.stl-min-h-14{min-height:3.5rem}.stl-min-h-16{min-height:4rem}.stl-w-0{width:0}.stl-w-2{width:.5rem}.stl-w-3{width:.75rem}.stl-w-4{width:1rem}.stl-w-6{width:1.5rem}.stl-w-8{width:2rem}.stl-w-10{width:2.5rem}.stl-w-px{width:1px}.stl-w-full{width:100%}.stl-min-w-0{min-width:0}.stl-min-w-4{min-width:1rem}.stl-min-w-16{min-width:4rem}.stl-min-w-24{min-width:6rem}.stl-min-w-64{min-width:16rem}.stl-min-w-2\/5{min-width:40%}.stl-max-w-48{max-width:12rem}.stl-max-w-64{max-width:16rem}.stl-max-w-128{max-width:32rem}.stl-max-w-xs{max-width:20rem}.stl-max-w-sm{max-width:24rem}.stl-max-w-md{max-width:28rem}.stl-max-w-lg{max-width:32rem}.stl-max-w-xl{max-width:36rem}.stl-max-w-2xl{max-width:42rem}.stl-flex-1{flex:1 1 0%}.stl-flex-shrink-0{flex-shrink:0}.stl-flex-shrink{flex-shrink:1}.stl-flex-grow{flex-grow:1}.stl-transform{--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;transform:translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@-webkit-keyframes stl-spin{to{transform:rotate(1turn)}}@keyframes stl-spin{to{transform:rotate(1turn)}}@-webkit-keyframes stl-ping{75%,to{opacity:0;transform:scale(2)}}@keyframes stl-ping{75%,to{opacity:0;transform:scale(2)}}@-webkit-keyframes stl-pulse{50%{opacity:.5}}@keyframes stl-pulse{50%{opacity:.5}}@-webkit-keyframes stl-bounce{0%,to{-webkit-animation-timing-function:cubic-bezier(.8,0,1,1);animation-timing-function:cubic-bezier(.8,0,1,1);transform:translateY(-25%)}50%{-webkit-animation-timing-function:cubic-bezier(0,0,.2,1);animation-timing-function:cubic-bezier(0,0,.2,1);transform:none}}@keyframes stl-bounce{0%,to{-webkit-animation-timing-function:cubic-bezier(.8,0,1,1);animation-timing-function:cubic-bezier(.8,0,1,1);transform:translateY(-25%)}50%{-webkit-animation-timing-function:cubic-bezier(0,0,.2,1);animation-timing-function:cubic-bezier(0,0,.2,1);transform:none}}.stl-cursor-pointer{cursor:pointer}.stl-cursor-not-allowed{cursor:not-allowed}.stl-select-none{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.stl-appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}.stl-flex-row{flex-direction:row}.stl-flex-row-reverse{flex-direction:row-reverse}.stl-flex-col{flex-direction:column}.stl-flex-wrap{flex-wrap:wrap}.stl-items-start{align-items:flex-start}.stl-items-end{align-items:flex-end}.stl-items-center{align-items:center}.stl-items-baseline{align-items:baseline}.stl-items-stretch{align-items:stretch}.stl-justify-start{justify-content:flex-start}.stl-justify-end{justify-content:flex-end}.stl-justify-center{justify-content:center}.stl-justify-between{justify-content:space-between}.stl-justify-around{justify-content:space-around}.stl-space-x-1>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.25rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.25rem*var(--tw-space-x-reverse))}.stl-space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.5rem*var(--tw-space-x-reverse))}.stl-space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.stl-space-x-6>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1.5rem*var(--tw-space-x-reverse))}.stl-space-x-2px>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(2px*(1 - var(--tw-space-x-reverse)));margin-right:calc(2px*var(--tw-space-x-reverse))}.stl-self-start{align-self:flex-start}.stl-self-end{align-self:flex-end}.stl-overflow-hidden{overflow:hidden}.stl-overflow-x-auto{overflow-x:auto}.stl-overflow-y-auto{overflow-y:auto}.stl-overflow-x-hidden{overflow-x:hidden}.stl-truncate{overflow:hidden;text-overflow:ellipsis}.stl-truncate,.stl-whitespace-nowrap{white-space:nowrap}.stl-break-all{word-break:break-all}.stl-rounded{border-radius:3px}.stl-rounded-full{border-radius:99999px}.stl-border-2{border-width:2px}.stl-border{border-width:1px}.stl-border-t-3{border-top-width:3px}.stl-border-t{border-top-width:1px}.stl-border-b{border-bottom-width:1px}.stl-border-l-2{border-left-width:2px}.stl-border-l{border-left-width:1px}.first\:stl-border-t-0:first-child{border-top-width:0}.stl-border-grey-100{--tw-border-opacity:1;border-color:rgba(245,245,250,var(--tw-border-opacity))}.stl-border-grey-200{--tw-border-opacity:1;border-color:rgba(214,214,231,var(--tw-border-opacity))}.stl-border-grey-300{--tw-border-opacity:1;border-color:rgba(182,183,213,var(--tw-border-opacity))}.stl-border-grey-500{--tw-border-opacity:1;border-color:rgba(119,122,175,var(--tw-border-opacity))}.stl-border-pink-200{--tw-border-opacity:1;border-color:rgba(254,185,226,var(--tw-border-opacity))}.stl-border-nebula-500{--tw-border-opacity:1;border-color:rgba(84,104,255,var(--tw-border-opacity))}.stl-border-blue-200{--tw-border-opacity:1;border-color:rgba(185,239,255,var(--tw-border-opacity))}.stl-border-blue-500{--tw-border-opacity:1;border-color:rgba(44,200,247,var(--tw-border-opacity))}.stl-border-green-200{--tw-border-opacity:1;border-color:rgba(201,248,222,var(--tw-border-opacity))}.stl-border-green-300{--tw-border-opacity:1;border-color:rgba(170,244,200,var(--tw-border-opacity))}.stl-border-green-500{--tw-border-opacity:1;border-color:rgba(95,235,158,var(--tw-border-opacity))}.stl-border-orange-200{--tw-border-opacity:1;border-color:rgba(255,233,195,var(--tw-border-opacity))}.stl-border-orange-300{--tw-border-opacity:1;border-color:rgba(254,213,154,var(--tw-border-opacity))}.stl-border-orange-500{--tw-border-opacity:1;border-color:rgba(250,160,75,var(--tw-border-opacity))}.stl-border-red-200{--tw-border-opacity:1;border-color:rgba(254,189,197,var(--tw-border-opacity))}.stl-border-red-500{--tw-border-opacity:1;border-color:rgba(244,73,93,var(--tw-border-opacity))}.stl-border-accent-200{--tw-border-opacity:1;border-color:rgba(202,207,255,var(--tw-border-opacity))}.stl-border-accent-500{--tw-border-opacity:1;border-color:rgba(84,104,255,var(--tw-border-opacity))}.stl-border-transparent{border-color:transparent}.focus\:stl-border-nebula-600:focus{--tw-border-opacity:1;border-color:rgba(60,79,224,var(--tw-border-opacity))}.stl-bg-white{--tw-bg-opacity:1;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.stl-bg-grey-50{--tw-bg-opacity:1;background-color:rgba(252,252,253,var(--tw-bg-opacity))}.stl-bg-grey-100{--tw-bg-opacity:1;background-color:rgba(245,245,250,var(--tw-bg-opacity))}.stl-bg-grey-200{--tw-bg-opacity:1;background-color:rgba(214,214,231,var(--tw-bg-opacity))}.stl-bg-grey-300{--tw-bg-opacity:1;background-color:rgba(182,183,213,var(--tw-bg-opacity))}.stl-bg-grey-400{--tw-bg-opacity:1;background-color:rgba(150,152,195,var(--tw-bg-opacity))}.stl-bg-grey-500{--tw-bg-opacity:1;background-color:rgba(119,122,175,var(--tw-bg-opacity))}.stl-bg-grey-700{--tw-bg-opacity:1;background-color:rgba(72,76,122,var(--tw-bg-opacity))}.stl-bg-grey-800{--tw-bg-opacity:1;background-color:rgba(54,57,90,var(--tw-bg-opacity))}.stl-bg-grey-900{--tw-bg-opacity:1;background-color:rgba(35,38,59,var(--tw-bg-opacity))}.stl-bg-pink-100{--tw-bg-opacity:1;background-color:rgba(255,234,246,var(--tw-bg-opacity))}.stl-bg-pink-200{--tw-bg-opacity:1;background-color:rgba(254,185,226,var(--tw-bg-opacity))}.stl-bg-pink-300{--tw-bg-opacity:1;background-color:rgba(253,137,206,var(--tw-bg-opacity))}.stl-bg-pink-400{--tw-bg-opacity:1;background-color:rgba(251,90,188,var(--tw-bg-opacity))}.stl-bg-pink-700{--tw-bg-opacity:1;background-color:rgba(184,9,121,var(--tw-bg-opacity))}.stl-bg-nebula-200{--tw-bg-opacity:1;background-color:rgba(202,207,255,var(--tw-bg-opacity))}.stl-bg-nebula-300{--tw-bg-opacity:1;background-color:rgba(163,172,255,var(--tw-bg-opacity))}.stl-bg-nebula-400{--tw-bg-opacity:1;background-color:rgba(124,138,255,var(--tw-bg-opacity))}.stl-bg-nebula-700{--tw-bg-opacity:1;background-color:rgba(43,60,187,var(--tw-bg-opacity))}.stl-bg-blue-100{--tw-bg-opacity:1;background-color:rgba(232,250,255,var(--tw-bg-opacity))}.stl-bg-blue-200{--tw-bg-opacity:1;background-color:rgba(185,239,255,var(--tw-bg-opacity))}.stl-bg-blue-300{--tw-bg-opacity:1;background-color:rgba(137,229,255,var(--tw-bg-opacity))}.stl-bg-blue-400{--tw-bg-opacity:1;background-color:rgba(90,218,255,var(--tw-bg-opacity))}.stl-bg-blue-500{--tw-bg-opacity:1;background-color:rgba(44,200,247,var(--tw-bg-opacity))}.stl-bg-blue-700{--tw-bg-opacity:1;background-color:rgba(0,155,203,var(--tw-bg-opacity))}.stl-bg-green-100{--tw-bg-opacity:1;background-color:rgba(230,252,243,var(--tw-bg-opacity))}.stl-bg-green-200{--tw-bg-opacity:1;background-color:rgba(201,248,222,var(--tw-bg-opacity))}.stl-bg-green-300{--tw-bg-opacity:1;background-color:rgba(170,244,200,var(--tw-bg-opacity))}.stl-bg-green-400{--tw-bg-opacity:1;background-color:rgba(136,240,179,var(--tw-bg-opacity))}.stl-bg-green-500{--tw-bg-opacity:1;background-color:rgba(95,235,158,var(--tw-bg-opacity))}.stl-bg-green-700{--tw-bg-opacity:1;background-color:rgba(6,182,108,var(--tw-bg-opacity))}.stl-bg-orange-100{--tw-bg-opacity:1;background-color:rgba(255,249,236,var(--tw-bg-opacity))}.stl-bg-orange-200{--tw-bg-opacity:1;background-color:rgba(255,233,195,var(--tw-bg-opacity))}.stl-bg-orange-300{--tw-bg-opacity:1;background-color:rgba(254,213,154,var(--tw-bg-opacity))}.stl-bg-orange-400{--tw-bg-opacity:1;background-color:rgba(252,188,115,var(--tw-bg-opacity))}.stl-bg-orange-500{--tw-bg-opacity:1;background-color:rgba(250,160,75,var(--tw-bg-opacity))}.stl-bg-orange-700{--tw-bg-opacity:1;background-color:rgba(232,96,10,var(--tw-bg-opacity))}.stl-bg-red-100{--tw-bg-opacity:1;background-color:rgba(255,230,233,var(--tw-bg-opacity))}.stl-bg-red-200{--tw-bg-opacity:1;background-color:rgba(254,189,197,var(--tw-bg-opacity))}.stl-bg-red-300{--tw-bg-opacity:1;background-color:rgba(252,149,161,var(--tw-bg-opacity))}.stl-bg-red-400{--tw-bg-opacity:1;background-color:rgba(248,110,126,var(--tw-bg-opacity))}.stl-bg-red-500{--tw-bg-opacity:1;background-color:rgba(244,73,93,var(--tw-bg-opacity))}.stl-bg-red-600{--tw-bg-opacity:1;background-color:rgba(238,36,60,var(--tw-bg-opacity))}.stl-bg-red-700{--tw-bg-opacity:1;background-color:rgba(212,20,42,var(--tw-bg-opacity))}.stl-bg-red-800{--tw-bg-opacity:1;background-color:rgba(171,19,37,var(--tw-bg-opacity))}.stl-bg-accent-100{--tw-bg-opacity:1;background-color:rgba(242,243,255,var(--tw-bg-opacity))}.stl-bg-accent-200{--tw-bg-opacity:1;background-color:rgba(202,207,255,var(--tw-bg-opacity))}.stl-bg-accent-500{--tw-bg-opacity:1;background-color:rgba(84,104,255,var(--tw-bg-opacity))}.stl-bg-accent-600{--tw-bg-opacity:1;background-color:rgba(60,79,224,var(--tw-bg-opacity))}.stl-bg-accent-700{--tw-bg-opacity:1;background-color:rgba(43,60,187,var(--tw-bg-opacity))}.hover\:stl-bg-grey-100:hover{--tw-bg-opacity:1;background-color:rgba(245,245,250,var(--tw-bg-opacity))}.hover\:stl-bg-grey-200:hover{--tw-bg-opacity:1;background-color:rgba(214,214,231,var(--tw-bg-opacity))}.hover\:stl-bg-pink-200:hover{--tw-bg-opacity:1;background-color:rgba(254,185,226,var(--tw-bg-opacity))}.hover\:stl-bg-blue-200:hover{--tw-bg-opacity:1;background-color:rgba(185,239,255,var(--tw-bg-opacity))}.hover\:stl-bg-green-300:hover{--tw-bg-opacity:1;background-color:rgba(170,244,200,var(--tw-bg-opacity))}.hover\:stl-bg-orange-300:hover{--tw-bg-opacity:1;background-color:rgba(254,213,154,var(--tw-bg-opacity))}.hover\:stl-bg-red-200:hover{--tw-bg-opacity:1;background-color:rgba(254,189,197,var(--tw-bg-opacity))}.hover\:stl-bg-accent-200:hover{--tw-bg-opacity:1;background-color:rgba(202,207,255,var(--tw-bg-opacity))}.focus\:stl-bg-grey-100:focus{--tw-bg-opacity:1;background-color:rgba(245,245,250,var(--tw-bg-opacity))}.focus\:stl-bg-grey-200:focus{--tw-bg-opacity:1;background-color:rgba(214,214,231,var(--tw-bg-opacity))}.focus\:stl-bg-pink-200:focus{--tw-bg-opacity:1;background-color:rgba(254,185,226,var(--tw-bg-opacity))}.focus\:stl-bg-blue-200:focus{--tw-bg-opacity:1;background-color:rgba(185,239,255,var(--tw-bg-opacity))}.focus\:stl-bg-green-300:focus{--tw-bg-opacity:1;background-color:rgba(170,244,200,var(--tw-bg-opacity))}.focus\:stl-bg-orange-300:focus{--tw-bg-opacity:1;background-color:rgba(254,213,154,var(--tw-bg-opacity))}.focus\:stl-bg-red-200:focus{--tw-bg-opacity:1;background-color:rgba(254,189,197,var(--tw-bg-opacity))}.focus\:stl-bg-accent-200:focus{--tw-bg-opacity:1;background-color:rgba(202,207,255,var(--tw-bg-opacity))}.stl-bg-opacity-30{--tw-bg-opacity:.3}.stl-bg-opacity-50{--tw-bg-opacity:.5}.hover\:stl-bg-opacity-20:hover{--tw-bg-opacity:.2}.stl-p-1{padding:.25rem}.stl-p-2{padding:.5rem}.stl-p-4{padding:1rem}.stl-p-6{padding:1.5rem}.stl-p-10{padding:2.5rem}.stl-p-px{padding:1px}.stl-p-2px{padding:2px}.stl-px-1{padding-left:.25rem;padding-right:.25rem}.stl-px-2{padding-left:.5rem;padding-right:.5rem}.stl-px-3{padding-left:.75rem;padding-right:.75rem}.stl-px-4{padding-left:1rem;padding-right:1rem}.stl-px-5{padding-left:1.25rem;padding-right:1.25rem}.stl-px-8{padding-left:2rem;padding-right:2rem}.stl-py-1{padding-bottom:.25rem;padding-top:.25rem}.stl-py-2{padding-bottom:.5rem;padding-top:.5rem}.stl-py-3{padding-bottom:.75rem;padding-top:.75rem}.stl-py-6{padding-bottom:1.5rem;padding-top:1.5rem}.stl-py-1\.5{padding-bottom:.375rem;padding-top:.375rem}.stl-pt-0{padding-top:0}.stl-pt-4{padding-top:1rem}.stl-pt-5{padding-top:1.25rem}.stl-pr-2{padding-right:.5rem}.stl-pb-2{padding-bottom:.5rem}.stl-pb-3{padding-bottom:.75rem}.stl-pl-2{padding-left:.5rem}.stl-pl-4{padding-left:1rem}.stl-pl-8{padding-left:2rem}.stl-pl-0\.5{padding-left:.125rem}.stl-text-left{text-align:left}.stl-text-center{text-align:center}.stl-text-right{text-align:right}.stl-text-mobile{font-size:.8125rem}.stl-text-base{font-size:.875rem}.stl-text-md{font-size:1rem}.stl-text-lg{font-size:1.25rem}.stl-font-medium{font-weight:500}.stl-font-semibold{font-weight:600}.stl-font-bold{font-weight:700}.stl-uppercase{text-transform:uppercase}.stl-capitalize{text-transform:capitalize}.stl-tabular-nums{--tw-ordinal:var(--tw-empty,/*!*/ /*!*/);--tw-slashed-zero:var(--tw-empty,/*!*/ /*!*/);--tw-numeric-figure:var(--tw-empty,/*!*/ /*!*/);--tw-numeric-spacing:var(--tw-empty,/*!*/ /*!*/);--tw-numeric-fraction:var(--tw-empty,/*!*/ /*!*/);--tw-numeric-spacing:tabular-nums;font-variant-numeric:var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)}.stl-leading-inherit{line-height:inherit}.stl-leading-sm{line-height:1rem}.stl-leading-md{line-height:1.5rem}.stl-leading-none{line-height:0}.stl-text-white{--tw-text-opacity:1;color:rgba(255,255,255,var(--tw-text-opacity))}.stl-text-grey-200{--tw-text-opacity:1;color:rgba(214,214,231,var(--tw-text-opacity))}.stl-text-grey-300{--tw-text-opacity:1;color:rgba(182,183,213,var(--tw-text-opacity))}.stl-text-grey-500{--tw-text-opacity:1;color:rgba(119,122,175,var(--tw-text-opacity))}.stl-text-grey-600{--tw-text-opacity:1;color:rgba(90,94,154,var(--tw-text-opacity))}.stl-text-grey-700{--tw-text-opacity:1;color:rgba(72,76,122,var(--tw-text-opacity))}.stl-text-grey-800{--tw-text-opacity:1;color:rgba(54,57,90,var(--tw-text-opacity))}.stl-text-grey-900{--tw-text-opacity:1;color:rgba(35,38,59,var(--tw-text-opacity))}.stl-text-pink-600{--tw-text-opacity:1;color:rgba(233,10,150,var(--tw-text-opacity))}.stl-text-pink-700{--tw-text-opacity:1;color:rgba(184,9,121,var(--tw-text-opacity))}.stl-text-pink-800{--tw-text-opacity:1;color:rgba(136,8,92,var(--tw-text-opacity))}.stl-text-pink-900{--tw-text-opacity:1;color:rgba(89,6,61,var(--tw-text-opacity))}.stl-text-nebula-500{--tw-text-opacity:1;color:rgba(84,104,255,var(--tw-text-opacity))}.stl-text-nebula-800{--tw-text-opacity:1;color:rgba(30,43,143,var(--tw-text-opacity))}.stl-text-nebula-900{--tw-text-opacity:1;color:rgba(20,29,97,var(--tw-text-opacity))}.stl-text-blue-500{--tw-text-opacity:1;color:rgba(44,200,247,var(--tw-text-opacity))}.stl-text-blue-600{--tw-text-opacity:1;color:rgba(13,183,235,var(--tw-text-opacity))}.stl-text-blue-700{--tw-text-opacity:1;color:rgba(0,155,203,var(--tw-text-opacity))}.stl-text-blue-800{--tw-text-opacity:1;color:rgba(0,118,155,var(--tw-text-opacity))}.stl-text-blue-900{--tw-text-opacity:1;color:rgba(0,82,108,var(--tw-text-opacity))}.stl-text-green-600{--tw-text-opacity:1;color:rgba(13,229,137,var(--tw-text-opacity))}.stl-text-green-700{--tw-text-opacity:1;color:rgba(6,182,108,var(--tw-text-opacity))}.stl-text-green-800{--tw-text-opacity:1;color:rgba(2,137,80,var(--tw-text-opacity))}.stl-text-green-900{--tw-text-opacity:1;color:rgba(0,94,54,var(--tw-text-opacity))}.stl-text-orange-500{--tw-text-opacity:1;color:rgba(250,160,75,var(--tw-text-opacity))}.stl-text-orange-600{--tw-text-opacity:1;color:rgba(247,129,37,var(--tw-text-opacity))}.stl-text-orange-700{--tw-text-opacity:1;color:rgba(232,96,10,var(--tw-text-opacity))}.stl-text-orange-800{--tw-text-opacity:1;color:rgba(191,71,10,var(--tw-text-opacity))}.stl-text-orange-900{--tw-text-opacity:1;color:rgba(150,50,9,var(--tw-text-opacity))}.stl-text-red-500{--tw-text-opacity:1;color:rgba(244,73,93,var(--tw-text-opacity))}.stl-text-red-600{--tw-text-opacity:1;color:rgba(238,36,60,var(--tw-text-opacity))}.stl-text-red-700{--tw-text-opacity:1;color:rgba(212,20,42,var(--tw-text-opacity))}.stl-text-red-800{--tw-text-opacity:1;color:rgba(171,19,37,var(--tw-text-opacity))}.stl-text-red-900{--tw-text-opacity:1;color:rgba(131,17,30,var(--tw-text-opacity))}.stl-text-accent-500{--tw-text-opacity:1;color:rgba(84,104,255,var(--tw-text-opacity))}.stl-text-accent-600{--tw-text-opacity:1;color:rgba(60,79,224,var(--tw-text-opacity))}.stl-text-accent-700{--tw-text-opacity:1;color:rgba(43,60,187,var(--tw-text-opacity))}.stl-text-accent-900{--tw-text-opacity:1;color:rgba(20,29,97,var(--tw-text-opacity))}.stl-text-inherit{color:inherit}.stl-underline{text-decoration:underline}.focus\:stl-no-underline:focus,.hover\:stl-no-underline:hover{text-decoration:none}.stl-antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.stl-opacity-0{opacity:0}.stl-opacity-50{opacity:.5}.stl-opacity-60{opacity:.6}.stl-opacity-70{opacity:.7}.stl-group:hover .group-hover\:stl-opacity-100,.stl-opacity-100{opacity:1}*,:after,:before{--tw-shadow:0 0 #0000}.stl-shadow-z100{--tw-shadow:0px 0px 0px 1px rgba(35,38,59,.05),0px 1px 3px 0px rgba(35,38,59,.15)}.stl-shadow-z100,.stl-shadow-z300{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.stl-shadow-z300{--tw-shadow:0px 0px 0px 1px rgba(35,38,59,.05),0px 8px 16px -4px rgba(35,38,59,.25)}.stl-shadow-z400{--tw-shadow:0px 0px 0px 1px rgba(35,38,59,.05),0px 12px 24px -6px rgba(35,38,59,.25)}.stl-shadow-z400,.stl-shadow-z500{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.stl-shadow-z500{--tw-shadow:0px 0px 0px 1px rgba(35,38,59,.05),0px 20px 32px -8px rgba(35,38,59,.25)}.focus\:stl-shadow-z100:focus{--tw-shadow:0px 0px 0px 1px rgba(35,38,59,.05),0px 1px 3px 0px rgba(35,38,59,.15);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.focus\:stl-outline-none:focus,.stl-outline-none{outline:2px solid transparent;outline-offset:2px}*,:after,:before{--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(44,200,247,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000}.stl-blur{--tw-blur:blur(8px)}.stl-grayscale{--tw-grayscale:grayscale(100%)}.stl-transition{transition-duration:.15s;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1)}.stl-transition-colors{transition-duration:.15s;transition-property:background-color,border-color,color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.stl-transition-opacity{transition-duration:.15s;transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1)}.stl-duration-100{transition-duration:.1s}.stl-ease-linear{transition-timing-function:linear}.stl-ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)}.stl-ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.stl-no-search-input-decoration[type=search]::-webkit-search-cancel-button,.stl-no-search-input-decoration[type=search]::-webkit-search-decoration,.stl-no-search-input-decoration[type=search]::-webkit-search-results-button,.stl-no-search-input-decoration[type=search]::-webkit-search-results-decoration{display:none}.stl-typo-subdued{color:#5a5e9a}.stl-typo-link{color:#3c4fe0}.stl-typo-link:hover{text-decoration:underline}.stl-typo-display-heading{font-size:1rem;font-weight:600;line-height:1.5rem}.stl-typo-display-body{font-size:.875rem;font-weight:400;line-height:1.25rem}.stl-typo-m-display-small{font-size:1rem;font-weight:400;line-height:1.5rem}@media (min-width:640px){.sm\:stl-container{width:100%}@media (min-width:640px){.sm\:stl-container{max-width:640px}}@media (min-width:768px){.sm\:stl-container{max-width:768px}}@media (min-width:1024px){.sm\:stl-container{max-width:1024px}}@media (min-width:1280px){.sm\:stl-container{max-width:1280px}}@media (min-width:1536px){.sm\:stl-container{max-width:1536px}}}@media (min-width:768px){.md\:stl-container{width:100%}@media (min-width:640px){.md\:stl-container{max-width:640px}}@media (min-width:768px){.md\:stl-container{max-width:768px}}@media (min-width:1024px){.md\:stl-container{max-width:1024px}}@media (min-width:1280px){.md\:stl-container{max-width:1280px}}@media (min-width:1536px){.md\:stl-container{max-width:1536px}}.md\:stl-flex-row{flex-direction:row}.md\:stl-text-sm{font-size:.75rem}}@media (min-width:1024px){.lg\:stl-container{width:100%}@media (min-width:640px){.lg\:stl-container{max-width:640px}}@media (min-width:768px){.lg\:stl-container{max-width:768px}}@media (min-width:1024px){.lg\:stl-container{max-width:1024px}}@media (min-width:1280px){.lg\:stl-container{max-width:1280px}}@media (min-width:1536px){.lg\:stl-container{max-width:1536px}}.lg\:stl-flex{display:flex}.lg\:stl-flex-row{flex-direction:row}.lg\:stl-flex-col{flex-direction:column}.lg\:stl-typo-display-small{font-size:1.25rem;font-weight:400;line-height:1.75rem}}@media (min-width:1280px){.xl\:stl-container{width:100%}@media (min-width:640px){.xl\:stl-container{max-width:640px}}@media (min-width:768px){.xl\:stl-container{max-width:768px}}@media (min-width:1024px){.xl\:stl-container{max-width:1024px}}@media (min-width:1280px){.xl\:stl-container{max-width:1280px}}@media (min-width:1536px){.xl\:stl-container{max-width:1536px}}}@media (min-width:1536px){.\32xl\:stl-container{width:100%}@media (min-width:640px){.\32xl\:stl-container{max-width:640px}}@media (min-width:768px){.\32xl\:stl-container{max-width:768px}}@media (min-width:1024px){.\32xl\:stl-container{max-width:1024px}}@media (min-width:1280px){.\32xl\:stl-container{max-width:1280px}}@media (min-width:1536px){.\32xl\:stl-container{max-width:1536px}}}
|