@coveo/atomic-react 3.11.32 → 3.11.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/atomic-react.cjs +3767 -2944
- package/dist/cjs/atomic-react.cjs.map +1 -1
- package/dist/cjs/commerce/atomic-react.cjs +997 -291
- package/dist/cjs/commerce/atomic-react.cjs.map +1 -1
- package/dist/cjs/recommendation/atomic-react.cjs +3767 -2944
- package/dist/cjs/recommendation/atomic-react.cjs.map +1 -1
- package/package.json +4 -4
|
@@ -465,7 +465,7 @@ const renderBreadcrumbContainer = ({ props })=>(children)=>{
|
|
|
465
465
|
</div>`;
|
|
466
466
|
};
|
|
467
467
|
|
|
468
|
-
/*! @license DOMPurify 3.4.
|
|
468
|
+
/*! @license DOMPurify 3.4.11 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.4.11/LICENSE */
|
|
469
469
|
|
|
470
470
|
function _arrayLikeToArray$1(r, a) {
|
|
471
471
|
(null == a || a > r.length) && (a = r.length);
|
|
@@ -794,16 +794,31 @@ const ATTR_WHITESPACE = seal(/[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205
|
|
|
794
794
|
);
|
|
795
795
|
const DOCTYPE_NAME = seal(/^html$/i);
|
|
796
796
|
const CUSTOM_ELEMENT = seal(/^[a-z][.\w]*(-[.\w]+)+$/i);
|
|
797
|
+
// Markup-significant character probes used by _sanitizeElements.
|
|
798
|
+
// Shared module-level instances are safe despite the sticky /g flags:
|
|
799
|
+
// unapply() resets lastIndex for RegExp receivers before every call.
|
|
800
|
+
const ELEMENT_MARKUP_PROBE = seal(/<[/\w!]/g);
|
|
801
|
+
const COMMENT_MARKUP_PROBE = seal(/<[/\w]/g);
|
|
802
|
+
const FALLBACK_TAG_CLOSE = seal(/<\/no(script|embed|frames)/i);
|
|
803
|
+
const SELF_CLOSING_TAG = seal(/\/>/i);
|
|
797
804
|
|
|
798
|
-
/* eslint-disable @typescript-eslint/indent */
|
|
799
805
|
// https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeType
|
|
800
806
|
const NODE_TYPE = {
|
|
801
807
|
element: 1,
|
|
808
|
+
attribute: 2,
|
|
802
809
|
text: 3,
|
|
810
|
+
cdataSection: 4,
|
|
811
|
+
entityReference: 5,
|
|
803
812
|
// Deprecated
|
|
804
|
-
|
|
813
|
+
entityNode: 6,
|
|
814
|
+
// Deprecated
|
|
815
|
+
processingInstruction: 7,
|
|
805
816
|
comment: 8,
|
|
806
|
-
document: 9
|
|
817
|
+
document: 9,
|
|
818
|
+
documentType: 10,
|
|
819
|
+
documentFragment: 11,
|
|
820
|
+
notation: 12 // Deprecated
|
|
821
|
+
};
|
|
807
822
|
const getGlobal = function getGlobal() {
|
|
808
823
|
return typeof window === 'undefined' ? null : window;
|
|
809
824
|
};
|
|
@@ -858,10 +873,25 @@ const _createHooksMap = function _createHooksMap() {
|
|
|
858
873
|
uponSanitizeShadowNode: []
|
|
859
874
|
};
|
|
860
875
|
};
|
|
876
|
+
/**
|
|
877
|
+
* Resolve a set-valued configuration option: a fresh set built from
|
|
878
|
+
* cfg[key] when it is an own array property (seeded with a clone of
|
|
879
|
+
* options.base when given, case-normalized via options.transform),
|
|
880
|
+
* the fallback set otherwise.
|
|
881
|
+
*
|
|
882
|
+
* @param cfg the cloned, prototype-free configuration object
|
|
883
|
+
* @param key the configuration property to read
|
|
884
|
+
* @param fallback the set to use when the option is absent or not an array
|
|
885
|
+
* @param options transform and optional base set to merge into
|
|
886
|
+
* @returns the resolved set
|
|
887
|
+
*/
|
|
888
|
+
const _resolveSetOption = function _resolveSetOption(cfg, key, fallback, options) {
|
|
889
|
+
return objectHasOwnProperty(cfg, key) && arrayIsArray(cfg[key]) ? addToSet(options.base ? clone$1(options.base) : {}, cfg[key], options.transform) : fallback;
|
|
890
|
+
};
|
|
861
891
|
function createDOMPurify() {
|
|
862
892
|
let window = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : getGlobal();
|
|
863
893
|
const DOMPurify = root => createDOMPurify(root);
|
|
864
|
-
DOMPurify.version = '3.4.
|
|
894
|
+
DOMPurify.version = '3.4.11';
|
|
865
895
|
DOMPurify.removed = [];
|
|
866
896
|
if (!window || !window.document || window.document.nodeType !== NODE_TYPE.document || !window.Element) {
|
|
867
897
|
// Not running in a browser, provide a factory function
|
|
@@ -872,15 +902,15 @@ function createDOMPurify() {
|
|
|
872
902
|
let document = window.document;
|
|
873
903
|
const originalDocument = document;
|
|
874
904
|
const currentScript = originalDocument.currentScript;
|
|
875
|
-
|
|
876
|
-
HTMLTemplateElement = window.HTMLTemplateElement,
|
|
905
|
+
window.DocumentFragment;
|
|
906
|
+
const HTMLTemplateElement = window.HTMLTemplateElement,
|
|
877
907
|
Node = window.Node,
|
|
878
908
|
Element = window.Element,
|
|
879
909
|
NodeFilter = window.NodeFilter,
|
|
880
|
-
_window$NamedNodeMap = window.NamedNodeMap
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
DOMParser = window.DOMParser,
|
|
910
|
+
_window$NamedNodeMap = window.NamedNodeMap;
|
|
911
|
+
_window$NamedNodeMap === void 0 ? window.NamedNodeMap || window.MozNamedAttrMap : _window$NamedNodeMap;
|
|
912
|
+
window.HTMLFormElement;
|
|
913
|
+
const DOMParser = window.DOMParser,
|
|
884
914
|
trustedTypes = window.trustedTypes;
|
|
885
915
|
const ElementPrototype = Element.prototype;
|
|
886
916
|
const cloneNode = lookupGetter(ElementPrototype, 'cloneNode');
|
|
@@ -888,7 +918,10 @@ function createDOMPurify() {
|
|
|
888
918
|
const getNextSibling = lookupGetter(ElementPrototype, 'nextSibling');
|
|
889
919
|
const getChildNodes = lookupGetter(ElementPrototype, 'childNodes');
|
|
890
920
|
const getParentNode = lookupGetter(ElementPrototype, 'parentNode');
|
|
921
|
+
const getShadowRoot = lookupGetter(ElementPrototype, 'shadowRoot');
|
|
922
|
+
const getAttributes = lookupGetter(ElementPrototype, 'attributes');
|
|
891
923
|
const getNodeType = Node && Node.prototype ? lookupGetter(Node.prototype, 'nodeType') : null;
|
|
924
|
+
const getNodeName = Node && Node.prototype ? lookupGetter(Node.prototype, 'nodeName') : null;
|
|
892
925
|
// As per issue #47, the web-components registry is inherited by a
|
|
893
926
|
// new document created via createHTMLDocument. As per the spec
|
|
894
927
|
// (http://w3c.github.io/webcomponents/spec/custom/#creating-and-passing-registries)
|
|
@@ -903,6 +936,54 @@ function createDOMPurify() {
|
|
|
903
936
|
}
|
|
904
937
|
let trustedTypesPolicy;
|
|
905
938
|
let emptyHTML = '';
|
|
939
|
+
// The instance's own internal Trusted Types policy. Unlike a caller-supplied
|
|
940
|
+
// `TRUSTED_TYPES_POLICY`, this is created at most once — Trusted Types throws
|
|
941
|
+
// on duplicate policy names — and is the only policy allowed to persist
|
|
942
|
+
// across configurations and survive `clearConfig()`.
|
|
943
|
+
let defaultTrustedTypesPolicy;
|
|
944
|
+
let defaultTrustedTypesPolicyResolved = false;
|
|
945
|
+
// Tracks whether we are already inside a call to the configured Trusted Types
|
|
946
|
+
// policy (`createHTML` or `createScriptURL`). If a supplied policy callback
|
|
947
|
+
// itself calls `DOMPurify.sanitize` (the cause of #1422), `sanitize` would
|
|
948
|
+
// re-enter the policy and recurse until the stack overflows. We detect that
|
|
949
|
+
// re-entry and throw a clear, actionable error instead. The guard is shared
|
|
950
|
+
// across both callbacks, because either one re-entering `sanitize` triggers
|
|
951
|
+
// the same unbounded recursion.
|
|
952
|
+
let IN_TRUSTED_TYPES_POLICY = 0;
|
|
953
|
+
const _assertNotInTrustedTypesPolicy = function _assertNotInTrustedTypesPolicy() {
|
|
954
|
+
if (IN_TRUSTED_TYPES_POLICY > 0) {
|
|
955
|
+
throw typeErrorCreate('A configured TRUSTED_TYPES_POLICY callback (createHTML or ' + 'createScriptURL) must not call DOMPurify.sanitize, as that causes ' + 'infinite recursion. Do not pass a policy whose callbacks wrap ' + 'DOMPurify as TRUSTED_TYPES_POLICY; see the "DOMPurify and Trusted ' + 'Types" section of the README.');
|
|
956
|
+
}
|
|
957
|
+
};
|
|
958
|
+
const _createTrustedHTML = function _createTrustedHTML(html) {
|
|
959
|
+
_assertNotInTrustedTypesPolicy();
|
|
960
|
+
IN_TRUSTED_TYPES_POLICY++;
|
|
961
|
+
try {
|
|
962
|
+
return trustedTypesPolicy.createHTML(html);
|
|
963
|
+
} finally {
|
|
964
|
+
IN_TRUSTED_TYPES_POLICY--;
|
|
965
|
+
}
|
|
966
|
+
};
|
|
967
|
+
const _createTrustedScriptURL = function _createTrustedScriptURL(scriptUrl) {
|
|
968
|
+
_assertNotInTrustedTypesPolicy();
|
|
969
|
+
IN_TRUSTED_TYPES_POLICY++;
|
|
970
|
+
try {
|
|
971
|
+
return trustedTypesPolicy.createScriptURL(scriptUrl);
|
|
972
|
+
} finally {
|
|
973
|
+
IN_TRUSTED_TYPES_POLICY--;
|
|
974
|
+
}
|
|
975
|
+
};
|
|
976
|
+
// Lazily resolve (and cache) the instance's internal default policy.
|
|
977
|
+
// Resolution is attempted at most once: a successful `createPolicy` cannot be
|
|
978
|
+
// repeated (Trusted Types throws on duplicate names), and a failed or
|
|
979
|
+
// unsupported attempt must not be retried on every parse.
|
|
980
|
+
const _getDefaultTrustedTypesPolicy = function _getDefaultTrustedTypesPolicy() {
|
|
981
|
+
if (!defaultTrustedTypesPolicyResolved) {
|
|
982
|
+
defaultTrustedTypesPolicy = _createTrustedTypesPolicy(trustedTypes, currentScript);
|
|
983
|
+
defaultTrustedTypesPolicyResolved = true;
|
|
984
|
+
}
|
|
985
|
+
return defaultTrustedTypesPolicy;
|
|
986
|
+
};
|
|
906
987
|
const _document = document,
|
|
907
988
|
implementation = _document.implementation,
|
|
908
989
|
createNodeIterator = _document.createNodeIterator,
|
|
@@ -999,6 +1080,13 @@ function createDOMPurify() {
|
|
|
999
1080
|
let WHOLE_DOCUMENT = false;
|
|
1000
1081
|
/* Track whether config is already set on this instance of DOMPurify. */
|
|
1001
1082
|
let SET_CONFIG = false;
|
|
1083
|
+
/* Pristine allowlist bindings captured at setConfig() time. On the
|
|
1084
|
+
* persistent-config path sanitize() restores the sets from these before
|
|
1085
|
+
* the per-walk hook clone-guard, so a hook's in-call widening cannot
|
|
1086
|
+
* carry across calls. Null until setConfig() is called; reset by
|
|
1087
|
+
* clearConfig(). */
|
|
1088
|
+
let SET_CONFIG_ALLOWED_TAGS = null;
|
|
1089
|
+
let SET_CONFIG_ALLOWED_ATTR = null;
|
|
1002
1090
|
/* Decide if all elements (e.g. style, script) must be children of
|
|
1003
1091
|
* document.body. By default, browsers might move them to document.head */
|
|
1004
1092
|
let FORCE_BODY = false;
|
|
@@ -1041,7 +1129,17 @@ function createDOMPurify() {
|
|
|
1041
1129
|
let USE_PROFILES = {};
|
|
1042
1130
|
/* Tags to ignore content of when KEEP_CONTENT is true */
|
|
1043
1131
|
let FORBID_CONTENTS = null;
|
|
1044
|
-
const DEFAULT_FORBID_CONTENTS = addToSet({}, ['annotation-xml', 'audio', 'colgroup', 'desc', 'foreignobject', 'head', 'iframe', 'math', 'mi', 'mn', 'mo', 'ms', 'mtext', 'noembed', 'noframes', 'noscript', 'plaintext', 'script',
|
|
1132
|
+
const DEFAULT_FORBID_CONTENTS = addToSet({}, ['annotation-xml', 'audio', 'colgroup', 'desc', 'foreignobject', 'head', 'iframe', 'math', 'mi', 'mn', 'mo', 'ms', 'mtext', 'noembed', 'noframes', 'noscript', 'plaintext', 'script',
|
|
1133
|
+
// <selectedcontent> mirrors the selected <option>'s subtree, cloned by
|
|
1134
|
+
// the UA (customizable <select>) — including any on* handlers — and the
|
|
1135
|
+
// engine re-mirrors synchronously whenever a removal changes which
|
|
1136
|
+
// option/selectedcontent is current, even inside DOMPurify's inert
|
|
1137
|
+
// DOMParser document. Hoisting its children on removal re-inserts a fresh
|
|
1138
|
+
// mirror target ahead of the walk, which the engine refills, looping
|
|
1139
|
+
// forever (DoS) and amplifying output. Dropping its content on removal
|
|
1140
|
+
// (rather than hoisting) breaks that cascade; the content is a duplicate
|
|
1141
|
+
// of the option, which is sanitized on its own. See campaign-3 F1/F6.
|
|
1142
|
+
'selectedcontent', 'style', 'svg', 'template', 'thead', 'title', 'video', 'xmp']);
|
|
1045
1143
|
/* Tags that are safe for data: URIs */
|
|
1046
1144
|
let DATA_URI_TAGS = null;
|
|
1047
1145
|
const DEFAULT_DATA_URI_TAGS = addToSet({}, ['audio', 'video', 'img', 'source', 'image', 'track']);
|
|
@@ -1057,8 +1155,10 @@ function createDOMPurify() {
|
|
|
1057
1155
|
/* Allowed XHTML+XML namespaces */
|
|
1058
1156
|
let ALLOWED_NAMESPACES = null;
|
|
1059
1157
|
const DEFAULT_ALLOWED_NAMESPACES = addToSet({}, [MATHML_NAMESPACE, SVG_NAMESPACE, HTML_NAMESPACE], stringToString);
|
|
1060
|
-
|
|
1061
|
-
let
|
|
1158
|
+
const DEFAULT_MATHML_TEXT_INTEGRATION_POINTS = freeze(['mi', 'mo', 'mn', 'ms', 'mtext']);
|
|
1159
|
+
let MATHML_TEXT_INTEGRATION_POINTS = addToSet({}, DEFAULT_MATHML_TEXT_INTEGRATION_POINTS);
|
|
1160
|
+
const DEFAULT_HTML_INTEGRATION_POINTS = freeze(['annotation-xml']);
|
|
1161
|
+
let HTML_INTEGRATION_POINTS = addToSet({}, DEFAULT_HTML_INTEGRATION_POINTS);
|
|
1062
1162
|
// Certain elements are allowed in both SVG and HTML
|
|
1063
1163
|
// namespace. We need to specify them explicitly
|
|
1064
1164
|
// so that they don't get erroneously deleted from
|
|
@@ -1100,14 +1200,32 @@ function createDOMPurify() {
|
|
|
1100
1200
|
// HTML tags and attributes are not case-sensitive, converting to lowercase. Keeping XHTML as is.
|
|
1101
1201
|
transformCaseFunc = PARSER_MEDIA_TYPE === 'application/xhtml+xml' ? stringToString : stringToLowerCase;
|
|
1102
1202
|
/* Set configuration parameters */
|
|
1103
|
-
ALLOWED_TAGS =
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1203
|
+
ALLOWED_TAGS = _resolveSetOption(cfg, 'ALLOWED_TAGS', DEFAULT_ALLOWED_TAGS, {
|
|
1204
|
+
transform: transformCaseFunc
|
|
1205
|
+
});
|
|
1206
|
+
ALLOWED_ATTR = _resolveSetOption(cfg, 'ALLOWED_ATTR', DEFAULT_ALLOWED_ATTR, {
|
|
1207
|
+
transform: transformCaseFunc
|
|
1208
|
+
});
|
|
1209
|
+
ALLOWED_NAMESPACES = _resolveSetOption(cfg, 'ALLOWED_NAMESPACES', DEFAULT_ALLOWED_NAMESPACES, {
|
|
1210
|
+
transform: stringToString
|
|
1211
|
+
});
|
|
1212
|
+
URI_SAFE_ATTRIBUTES = _resolveSetOption(cfg, 'ADD_URI_SAFE_ATTR', DEFAULT_URI_SAFE_ATTRIBUTES, {
|
|
1213
|
+
transform: transformCaseFunc,
|
|
1214
|
+
base: DEFAULT_URI_SAFE_ATTRIBUTES
|
|
1215
|
+
});
|
|
1216
|
+
DATA_URI_TAGS = _resolveSetOption(cfg, 'ADD_DATA_URI_TAGS', DEFAULT_DATA_URI_TAGS, {
|
|
1217
|
+
transform: transformCaseFunc,
|
|
1218
|
+
base: DEFAULT_DATA_URI_TAGS
|
|
1219
|
+
});
|
|
1220
|
+
FORBID_CONTENTS = _resolveSetOption(cfg, 'FORBID_CONTENTS', DEFAULT_FORBID_CONTENTS, {
|
|
1221
|
+
transform: transformCaseFunc
|
|
1222
|
+
});
|
|
1223
|
+
FORBID_TAGS = _resolveSetOption(cfg, 'FORBID_TAGS', clone$1({}), {
|
|
1224
|
+
transform: transformCaseFunc
|
|
1225
|
+
});
|
|
1226
|
+
FORBID_ATTR = _resolveSetOption(cfg, 'FORBID_ATTR', clone$1({}), {
|
|
1227
|
+
transform: transformCaseFunc
|
|
1228
|
+
});
|
|
1111
1229
|
USE_PROFILES = objectHasOwnProperty(cfg, 'USE_PROFILES') ? cfg.USE_PROFILES && typeof cfg.USE_PROFILES === 'object' ? clone$1(cfg.USE_PROFILES) : cfg.USE_PROFILES : false;
|
|
1112
1230
|
ALLOW_ARIA_ATTR = cfg.ALLOW_ARIA_ATTR !== false; // Default true
|
|
1113
1231
|
ALLOW_DATA_ATTR = cfg.ALLOW_DATA_ATTR !== false; // Default true
|
|
@@ -1126,8 +1244,8 @@ function createDOMPurify() {
|
|
|
1126
1244
|
IN_PLACE = cfg.IN_PLACE || false; // Default false
|
|
1127
1245
|
IS_ALLOWED_URI$1 = isRegex(cfg.ALLOWED_URI_REGEXP) ? cfg.ALLOWED_URI_REGEXP : IS_ALLOWED_URI; // Default regexp
|
|
1128
1246
|
NAMESPACE = typeof cfg.NAMESPACE === 'string' ? cfg.NAMESPACE : HTML_NAMESPACE; // Default HTML namespace
|
|
1129
|
-
MATHML_TEXT_INTEGRATION_POINTS = objectHasOwnProperty(cfg, 'MATHML_TEXT_INTEGRATION_POINTS') && cfg.MATHML_TEXT_INTEGRATION_POINTS && typeof cfg.MATHML_TEXT_INTEGRATION_POINTS === 'object' ? clone$1(cfg.MATHML_TEXT_INTEGRATION_POINTS) : addToSet({},
|
|
1130
|
-
HTML_INTEGRATION_POINTS = objectHasOwnProperty(cfg, 'HTML_INTEGRATION_POINTS') && cfg.HTML_INTEGRATION_POINTS && typeof cfg.HTML_INTEGRATION_POINTS === 'object' ? clone$1(cfg.HTML_INTEGRATION_POINTS) : addToSet({},
|
|
1247
|
+
MATHML_TEXT_INTEGRATION_POINTS = objectHasOwnProperty(cfg, 'MATHML_TEXT_INTEGRATION_POINTS') && cfg.MATHML_TEXT_INTEGRATION_POINTS && typeof cfg.MATHML_TEXT_INTEGRATION_POINTS === 'object' ? clone$1(cfg.MATHML_TEXT_INTEGRATION_POINTS) : addToSet({}, DEFAULT_MATHML_TEXT_INTEGRATION_POINTS); // Default built-in map
|
|
1248
|
+
HTML_INTEGRATION_POINTS = objectHasOwnProperty(cfg, 'HTML_INTEGRATION_POINTS') && cfg.HTML_INTEGRATION_POINTS && typeof cfg.HTML_INTEGRATION_POINTS === 'object' ? clone$1(cfg.HTML_INTEGRATION_POINTS) : addToSet({}, DEFAULT_HTML_INTEGRATION_POINTS); // Default built-in map
|
|
1131
1249
|
const customElementHandling = objectHasOwnProperty(cfg, 'CUSTOM_ELEMENT_HANDLING') && cfg.CUSTOM_ELEMENT_HANDLING && typeof cfg.CUSTOM_ELEMENT_HANDLING === 'object' ? clone$1(cfg.CUSTOM_ELEMENT_HANDLING) : create(null);
|
|
1132
1250
|
CUSTOM_ELEMENT_HANDLING = create(null);
|
|
1133
1251
|
if (objectHasOwnProperty(customElementHandling, 'tagNameCheck') && isRegexOrFunction(customElementHandling.tagNameCheck)) {
|
|
@@ -1139,6 +1257,7 @@ function createDOMPurify() {
|
|
|
1139
1257
|
if (objectHasOwnProperty(customElementHandling, 'allowCustomizedBuiltInElements') && typeof customElementHandling.allowCustomizedBuiltInElements === 'boolean') {
|
|
1140
1258
|
CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements = customElementHandling.allowCustomizedBuiltInElements; // Default undefined
|
|
1141
1259
|
}
|
|
1260
|
+
seal(CUSTOM_ELEMENT_HANDLING);
|
|
1142
1261
|
if (SAFE_FOR_TEMPLATES) {
|
|
1143
1262
|
ALLOW_DATA_ATTR = false;
|
|
1144
1263
|
}
|
|
@@ -1222,6 +1341,13 @@ function createDOMPurify() {
|
|
|
1222
1341
|
addToSet(ALLOWED_TAGS, ['tbody']);
|
|
1223
1342
|
delete FORBID_TAGS.tbody;
|
|
1224
1343
|
}
|
|
1344
|
+
// Re-derive the active Trusted Types policy from this configuration on
|
|
1345
|
+
// every parse. The active policy must never be sticky closure state that
|
|
1346
|
+
// outlives the config that set it: a caller-supplied policy left in place
|
|
1347
|
+
// after `clearConfig()` — or after a later call that supplied none, or
|
|
1348
|
+
// `TRUSTED_TYPES_POLICY: null` — could sign a subsequent "default"
|
|
1349
|
+
// `RETURN_TRUSTED_TYPE` result with a foreign, possibly unsafe policy.
|
|
1350
|
+
// See GHSA-vxr8-fq34-vvx9.
|
|
1225
1351
|
if (cfg.TRUSTED_TYPES_POLICY) {
|
|
1226
1352
|
if (typeof cfg.TRUSTED_TYPES_POLICY.createHTML !== 'function') {
|
|
1227
1353
|
throw typeErrorCreate('TRUSTED_TYPES_POLICY configuration option must provide a "createHTML" hook.');
|
|
@@ -1229,18 +1355,45 @@ function createDOMPurify() {
|
|
|
1229
1355
|
if (typeof cfg.TRUSTED_TYPES_POLICY.createScriptURL !== 'function') {
|
|
1230
1356
|
throw typeErrorCreate('TRUSTED_TYPES_POLICY configuration option must provide a "createScriptURL" hook.');
|
|
1231
1357
|
}
|
|
1232
|
-
//
|
|
1358
|
+
// A caller-supplied policy applies to this configuration only.
|
|
1359
|
+
const previousTrustedTypesPolicy = trustedTypesPolicy;
|
|
1233
1360
|
trustedTypesPolicy = cfg.TRUSTED_TYPES_POLICY;
|
|
1234
|
-
// Sign local variables required by `sanitize`.
|
|
1235
|
-
|
|
1361
|
+
// Sign local variables required by `sanitize`. If the supplied policy's
|
|
1362
|
+
// `createHTML` is circular (i.e. it calls `DOMPurify.sanitize`), this
|
|
1363
|
+
// throws via the re-entrancy guard. Restore the previous policy first so
|
|
1364
|
+
// the instance is not left in a poisoned state. See #1422.
|
|
1365
|
+
try {
|
|
1366
|
+
emptyHTML = _createTrustedHTML('');
|
|
1367
|
+
} catch (error) {
|
|
1368
|
+
trustedTypesPolicy = previousTrustedTypesPolicy;
|
|
1369
|
+
throw error;
|
|
1370
|
+
}
|
|
1371
|
+
} else if (cfg.TRUSTED_TYPES_POLICY === null) {
|
|
1372
|
+
// Explicit opt-out for this call: perform no Trusted Types signing and
|
|
1373
|
+
// create nothing (so a strict `trusted-types` CSP that disallows a
|
|
1374
|
+
// `dompurify` policy can still call `sanitize` from inside its own
|
|
1375
|
+
// policy — see #1422). Resetting to `undefined` rather than a sticky
|
|
1376
|
+
// `null` also drops any previously retained caller policy, so it cannot
|
|
1377
|
+
// resurface on a later call, while still allowing the next config-less
|
|
1378
|
+
// call to restore the internal default policy. See GHSA-vxr8-fq34-vvx9.
|
|
1379
|
+
trustedTypesPolicy = undefined;
|
|
1380
|
+
emptyHTML = '';
|
|
1236
1381
|
} else {
|
|
1237
|
-
//
|
|
1382
|
+
// No policy supplied: keep the currently active policy if one is set — a
|
|
1383
|
+
// previously supplied policy is intentionally sticky across config-less
|
|
1384
|
+
// calls — otherwise fall back to the instance's own internal policy,
|
|
1385
|
+
// created at most once. (A policy supplied for a *single* call still
|
|
1386
|
+
// lingers by design; what must not linger is a policy whose configuration
|
|
1387
|
+
// has been torn down via `clearConfig()`, which restores the default.)
|
|
1238
1388
|
if (trustedTypesPolicy === undefined) {
|
|
1239
|
-
trustedTypesPolicy =
|
|
1389
|
+
trustedTypesPolicy = _getDefaultTrustedTypesPolicy();
|
|
1240
1390
|
}
|
|
1241
|
-
//
|
|
1242
|
-
|
|
1243
|
-
|
|
1391
|
+
// Sign internal variables only when a policy is active. A falsy policy
|
|
1392
|
+
// (Trusted Types unsupported, creation failed, or an explicit opt-out)
|
|
1393
|
+
// leaves `emptyHTML` as a plain string, so we never call `.createHTML` on
|
|
1394
|
+
// a non-policy and throw. See #1422.
|
|
1395
|
+
if (trustedTypesPolicy && typeof emptyHTML === 'string') {
|
|
1396
|
+
emptyHTML = _createTrustedHTML('');
|
|
1244
1397
|
}
|
|
1245
1398
|
}
|
|
1246
1399
|
// Prevent further manipulation of configuration.
|
|
@@ -1255,6 +1408,77 @@ function createDOMPurify() {
|
|
|
1255
1408
|
* correctly. */
|
|
1256
1409
|
const ALL_SVG_TAGS = addToSet({}, [...svg$1, ...svgFilters, ...svgDisallowed]);
|
|
1257
1410
|
const ALL_MATHML_TAGS = addToSet({}, [...mathMl$1, ...mathMlDisallowed]);
|
|
1411
|
+
/**
|
|
1412
|
+
* Namespace rules for an element in the SVG namespace.
|
|
1413
|
+
*
|
|
1414
|
+
* @param tagName the element's lowercase tag name
|
|
1415
|
+
* @param parent the (possibly simulated) parent node
|
|
1416
|
+
* @param parentTagName the parent's lowercase tag name
|
|
1417
|
+
* @returns true if a spec-compliant parser could produce this element
|
|
1418
|
+
*/
|
|
1419
|
+
const _checkSvgNamespace = function _checkSvgNamespace(tagName, parent, parentTagName) {
|
|
1420
|
+
// The only way to switch from HTML namespace to SVG
|
|
1421
|
+
// is via <svg>. If it happens via any other tag, then
|
|
1422
|
+
// it should be killed.
|
|
1423
|
+
if (parent.namespaceURI === HTML_NAMESPACE) {
|
|
1424
|
+
return tagName === 'svg';
|
|
1425
|
+
}
|
|
1426
|
+
// The only way to switch from MathML to SVG is via <svg>
|
|
1427
|
+
// if the parent is either <annotation-xml> or a MathML
|
|
1428
|
+
// text integration point.
|
|
1429
|
+
if (parent.namespaceURI === MATHML_NAMESPACE) {
|
|
1430
|
+
return tagName === 'svg' && (parentTagName === 'annotation-xml' || MATHML_TEXT_INTEGRATION_POINTS[parentTagName]);
|
|
1431
|
+
}
|
|
1432
|
+
// We only allow elements that are defined in SVG
|
|
1433
|
+
// spec. All others are disallowed in SVG namespace.
|
|
1434
|
+
return Boolean(ALL_SVG_TAGS[tagName]);
|
|
1435
|
+
};
|
|
1436
|
+
/**
|
|
1437
|
+
* Namespace rules for an element in the MathML namespace.
|
|
1438
|
+
*
|
|
1439
|
+
* @param tagName the element's lowercase tag name
|
|
1440
|
+
* @param parent the (possibly simulated) parent node
|
|
1441
|
+
* @param parentTagName the parent's lowercase tag name
|
|
1442
|
+
* @returns true if a spec-compliant parser could produce this element
|
|
1443
|
+
*/
|
|
1444
|
+
const _checkMathMlNamespace = function _checkMathMlNamespace(tagName, parent, parentTagName) {
|
|
1445
|
+
// The only way to switch from HTML namespace to MathML
|
|
1446
|
+
// is via <math>. If it happens via any other tag, then
|
|
1447
|
+
// it should be killed.
|
|
1448
|
+
if (parent.namespaceURI === HTML_NAMESPACE) {
|
|
1449
|
+
return tagName === 'math';
|
|
1450
|
+
}
|
|
1451
|
+
// The only way to switch from SVG to MathML is via
|
|
1452
|
+
// <math> and HTML integration points
|
|
1453
|
+
if (parent.namespaceURI === SVG_NAMESPACE) {
|
|
1454
|
+
return tagName === 'math' && HTML_INTEGRATION_POINTS[parentTagName];
|
|
1455
|
+
}
|
|
1456
|
+
// We only allow elements that are defined in MathML
|
|
1457
|
+
// spec. All others are disallowed in MathML namespace.
|
|
1458
|
+
return Boolean(ALL_MATHML_TAGS[tagName]);
|
|
1459
|
+
};
|
|
1460
|
+
/**
|
|
1461
|
+
* Namespace rules for an element in the HTML namespace.
|
|
1462
|
+
*
|
|
1463
|
+
* @param tagName the element's lowercase tag name
|
|
1464
|
+
* @param parent the (possibly simulated) parent node
|
|
1465
|
+
* @param parentTagName the parent's lowercase tag name
|
|
1466
|
+
* @returns true if a spec-compliant parser could produce this element
|
|
1467
|
+
*/
|
|
1468
|
+
const _checkHtmlNamespace = function _checkHtmlNamespace(tagName, parent, parentTagName) {
|
|
1469
|
+
// The only way to switch from SVG to HTML is via
|
|
1470
|
+
// HTML integration points, and from MathML to HTML
|
|
1471
|
+
// is via MathML text integration points
|
|
1472
|
+
if (parent.namespaceURI === SVG_NAMESPACE && !HTML_INTEGRATION_POINTS[parentTagName]) {
|
|
1473
|
+
return false;
|
|
1474
|
+
}
|
|
1475
|
+
if (parent.namespaceURI === MATHML_NAMESPACE && !MATHML_TEXT_INTEGRATION_POINTS[parentTagName]) {
|
|
1476
|
+
return false;
|
|
1477
|
+
}
|
|
1478
|
+
// We disallow tags that are specific for MathML
|
|
1479
|
+
// or SVG and should never appear in HTML namespace
|
|
1480
|
+
return !ALL_MATHML_TAGS[tagName] && (COMMON_SVG_AND_HTML_ELEMENTS[tagName] || !ALL_SVG_TAGS[tagName]);
|
|
1481
|
+
};
|
|
1258
1482
|
/**
|
|
1259
1483
|
* @param element a DOM element whose namespace is being checked
|
|
1260
1484
|
* @returns Return false if the element has a
|
|
@@ -1277,51 +1501,13 @@ function createDOMPurify() {
|
|
|
1277
1501
|
return false;
|
|
1278
1502
|
}
|
|
1279
1503
|
if (element.namespaceURI === SVG_NAMESPACE) {
|
|
1280
|
-
|
|
1281
|
-
// is via <svg>. If it happens via any other tag, then
|
|
1282
|
-
// it should be killed.
|
|
1283
|
-
if (parent.namespaceURI === HTML_NAMESPACE) {
|
|
1284
|
-
return tagName === 'svg';
|
|
1285
|
-
}
|
|
1286
|
-
// The only way to switch from MathML to SVG is via`
|
|
1287
|
-
// svg if parent is either <annotation-xml> or MathML
|
|
1288
|
-
// text integration points.
|
|
1289
|
-
if (parent.namespaceURI === MATHML_NAMESPACE) {
|
|
1290
|
-
return tagName === 'svg' && (parentTagName === 'annotation-xml' || MATHML_TEXT_INTEGRATION_POINTS[parentTagName]);
|
|
1291
|
-
}
|
|
1292
|
-
// We only allow elements that are defined in SVG
|
|
1293
|
-
// spec. All others are disallowed in SVG namespace.
|
|
1294
|
-
return Boolean(ALL_SVG_TAGS[tagName]);
|
|
1504
|
+
return _checkSvgNamespace(tagName, parent, parentTagName);
|
|
1295
1505
|
}
|
|
1296
1506
|
if (element.namespaceURI === MATHML_NAMESPACE) {
|
|
1297
|
-
|
|
1298
|
-
// is via <math>. If it happens via any other tag, then
|
|
1299
|
-
// it should be killed.
|
|
1300
|
-
if (parent.namespaceURI === HTML_NAMESPACE) {
|
|
1301
|
-
return tagName === 'math';
|
|
1302
|
-
}
|
|
1303
|
-
// The only way to switch from SVG to MathML is via
|
|
1304
|
-
// <math> and HTML integration points
|
|
1305
|
-
if (parent.namespaceURI === SVG_NAMESPACE) {
|
|
1306
|
-
return tagName === 'math' && HTML_INTEGRATION_POINTS[parentTagName];
|
|
1307
|
-
}
|
|
1308
|
-
// We only allow elements that are defined in MathML
|
|
1309
|
-
// spec. All others are disallowed in MathML namespace.
|
|
1310
|
-
return Boolean(ALL_MATHML_TAGS[tagName]);
|
|
1507
|
+
return _checkMathMlNamespace(tagName, parent, parentTagName);
|
|
1311
1508
|
}
|
|
1312
1509
|
if (element.namespaceURI === HTML_NAMESPACE) {
|
|
1313
|
-
|
|
1314
|
-
// HTML integration points, and from MathML to HTML
|
|
1315
|
-
// is via MathML text integration points
|
|
1316
|
-
if (parent.namespaceURI === SVG_NAMESPACE && !HTML_INTEGRATION_POINTS[parentTagName]) {
|
|
1317
|
-
return false;
|
|
1318
|
-
}
|
|
1319
|
-
if (parent.namespaceURI === MATHML_NAMESPACE && !MATHML_TEXT_INTEGRATION_POINTS[parentTagName]) {
|
|
1320
|
-
return false;
|
|
1321
|
-
}
|
|
1322
|
-
// We disallow tags that are specific for MathML
|
|
1323
|
-
// or SVG and should never appear in HTML namespace
|
|
1324
|
-
return !ALL_MATHML_TAGS[tagName] && (COMMON_SVG_AND_HTML_ELEMENTS[tagName] || !ALL_SVG_TAGS[tagName]);
|
|
1510
|
+
return _checkHtmlNamespace(tagName, parent, parentTagName);
|
|
1325
1511
|
}
|
|
1326
1512
|
// For XHTML and XML documents that support custom namespaces
|
|
1327
1513
|
if (PARSER_MEDIA_TYPE === 'application/xhtml+xml' && ALLOWED_NAMESPACES[element.namespaceURI]) {
|
|
@@ -1346,7 +1532,74 @@ function createDOMPurify() {
|
|
|
1346
1532
|
// eslint-disable-next-line unicorn/prefer-dom-node-remove
|
|
1347
1533
|
getParentNode(node).removeChild(node);
|
|
1348
1534
|
} catch (_) {
|
|
1535
|
+
/* The normal detach failed — this is reached for a parentless node
|
|
1536
|
+
(getParentNode() is null, so .removeChild throws). Element.prototype
|
|
1537
|
+
.remove() is itself a spec no-op on a parentless node, so a recorded
|
|
1538
|
+
"removal" would otherwise hand the caller back an intact,
|
|
1539
|
+
payload-bearing node (e.g. a detached IN_PLACE root the mXSS canary or
|
|
1540
|
+
the style-with-element-child rule decided to kill). Fail closed by
|
|
1541
|
+
throwing — exactly as a clobbered root does at the IN_PLACE entry —
|
|
1542
|
+
rather than trying to "neutralize" the node via its own methods.
|
|
1543
|
+
Neutralizing would mean calling getAttributeNames()/removeAttribute()
|
|
1544
|
+
on the node, both of which a <form> root can clobber via a named child
|
|
1545
|
+
(and _isClobbered does not even probe getAttributeNames), so the
|
|
1546
|
+
neutralize step could itself be silently defeated, leaving the payload
|
|
1547
|
+
intact. A throw touches only the cached, clobber-safe remove() and
|
|
1548
|
+
getParentNode(). Generalizes GHSA-r47g-fvhr-h676 (clobbered-form root)
|
|
1549
|
+
to every root-kill reason. REPORT-3.
|
|
1550
|
+
This lives inside the catch, so it never fires for a normally-removed
|
|
1551
|
+
in-tree node: those have a parent, removeChild() succeeds, and the
|
|
1552
|
+
catch is not entered. Only a kept (parentless) root reaches here. */
|
|
1349
1553
|
remove(node);
|
|
1554
|
+
if (!getParentNode(node)) {
|
|
1555
|
+
throw typeErrorCreate('a node selected for removal could not be detached from its tree ' + 'and cannot be safely returned; refusing to sanitize in place');
|
|
1556
|
+
}
|
|
1557
|
+
}
|
|
1558
|
+
};
|
|
1559
|
+
/**
|
|
1560
|
+
* _neutralizeRoot
|
|
1561
|
+
*
|
|
1562
|
+
* Fail-closed teardown of an in-place root after the sanitize walk aborts
|
|
1563
|
+
* (campaign-3 F2). An internal throw mid-walk — e.g. a page-registered
|
|
1564
|
+
* custom element's reaction detaches a node so `_forceRemove`'s deliberate
|
|
1565
|
+
* parentless guard throws, or any other re-entrant engine mutation — would
|
|
1566
|
+
* otherwise leave the caller's *live* tree half-sanitized, with everything
|
|
1567
|
+
* after the abort point still carrying its handlers. There is no safe way
|
|
1568
|
+
* to resume the walk (the tree mutated under us), so we strip the root bare:
|
|
1569
|
+
* remove every child and every attribute, then let the caller's catch see
|
|
1570
|
+
* the original error. Clobber-safe (cached `remove`/`childNodes`/`attributes`
|
|
1571
|
+
* getters; the root was already clobber-pre-flighted at the IN_PLACE entry).
|
|
1572
|
+
*
|
|
1573
|
+
* @param root the in-place root to empty
|
|
1574
|
+
*/
|
|
1575
|
+
const _neutralizeRoot = function _neutralizeRoot(root) {
|
|
1576
|
+
const childNodes = getChildNodes(root);
|
|
1577
|
+
if (childNodes) {
|
|
1578
|
+
const snapshot = [];
|
|
1579
|
+
arrayForEach(childNodes, child => {
|
|
1580
|
+
arrayPush(snapshot, child);
|
|
1581
|
+
});
|
|
1582
|
+
arrayForEach(snapshot, child => {
|
|
1583
|
+
try {
|
|
1584
|
+
remove(child);
|
|
1585
|
+
} catch (_) {
|
|
1586
|
+
/* Best-effort teardown; a still-attached child is handled below */
|
|
1587
|
+
}
|
|
1588
|
+
});
|
|
1589
|
+
}
|
|
1590
|
+
const attributes = getAttributes(root);
|
|
1591
|
+
if (attributes) {
|
|
1592
|
+
for (let i = attributes.length - 1; i >= 0; --i) {
|
|
1593
|
+
const attribute = attributes[i];
|
|
1594
|
+
const name = attribute && attribute.name;
|
|
1595
|
+
if (typeof name === 'string') {
|
|
1596
|
+
try {
|
|
1597
|
+
root.removeAttribute(name);
|
|
1598
|
+
} catch (_) {
|
|
1599
|
+
/* Clobbered removeAttribute — ignore (fail-closed best effort) */
|
|
1600
|
+
}
|
|
1601
|
+
}
|
|
1602
|
+
}
|
|
1350
1603
|
}
|
|
1351
1604
|
};
|
|
1352
1605
|
/**
|
|
@@ -1381,6 +1634,72 @@ function createDOMPurify() {
|
|
|
1381
1634
|
}
|
|
1382
1635
|
}
|
|
1383
1636
|
};
|
|
1637
|
+
/**
|
|
1638
|
+
* _stripDisallowedAttributes
|
|
1639
|
+
*
|
|
1640
|
+
* Removes every attribute the active configuration does not allow from a
|
|
1641
|
+
* single element, using the same allowlist as the main attribute pass (so
|
|
1642
|
+
* `on*` handlers go, but no `/^on/` blocklist is introduced). Used only to
|
|
1643
|
+
* neutralise nodes that are being discarded from an in-place tree.
|
|
1644
|
+
*
|
|
1645
|
+
* @param element the element to strip
|
|
1646
|
+
*/
|
|
1647
|
+
const _stripDisallowedAttributes = function _stripDisallowedAttributes(element) {
|
|
1648
|
+
const attributes = getAttributes(element);
|
|
1649
|
+
if (!attributes) {
|
|
1650
|
+
return;
|
|
1651
|
+
}
|
|
1652
|
+
for (let i = attributes.length - 1; i >= 0; --i) {
|
|
1653
|
+
const attribute = attributes[i];
|
|
1654
|
+
const name = attribute && attribute.name;
|
|
1655
|
+
if (typeof name !== 'string' || ALLOWED_ATTR[transformCaseFunc(name)]) {
|
|
1656
|
+
continue;
|
|
1657
|
+
}
|
|
1658
|
+
try {
|
|
1659
|
+
element.removeAttribute(name);
|
|
1660
|
+
} catch (_) {
|
|
1661
|
+
/* Clobbered removeAttribute on a doomed node — ignore */
|
|
1662
|
+
}
|
|
1663
|
+
}
|
|
1664
|
+
};
|
|
1665
|
+
/**
|
|
1666
|
+
* _neutralizeSubtree
|
|
1667
|
+
*
|
|
1668
|
+
* Completes the audit-5 F1 fix across every removal path. The KEEP_CONTENT
|
|
1669
|
+
* move-hoist neutralises only disallowed-tag removals; clobber, mXSS-canary,
|
|
1670
|
+
* namespace, comment, processing-instruction and KEEP_CONTENT:false removals
|
|
1671
|
+
* all drop their subtree wholesale via `_forceRemove`. On the IN_PLACE path
|
|
1672
|
+
* those dropped nodes are detached from the caller's LIVE tree but a
|
|
1673
|
+
* handler-bearing original among them (an `<img onerror>`/`<video>` that was
|
|
1674
|
+
* loading) keeps its queued resource event, which fires in page scope after
|
|
1675
|
+
* sanitize returns. This walks a removed subtree and strips every attribute
|
|
1676
|
+
* the active configuration does not allow — so `on*` handlers are cancelled
|
|
1677
|
+
* through the SAME allowlist that governs kept nodes, not a separate `/^on/`
|
|
1678
|
+
* blocklist. Run synchronously before sanitize returns, i.e. before any
|
|
1679
|
+
* queued event can fire. Hook-free by design: these nodes leave the output,
|
|
1680
|
+
* so firing attribute hooks for them would be surprising. Clobber-safe reads;
|
|
1681
|
+
* a doomed clobbered node may shadow `removeAttribute` (its own attributes are
|
|
1682
|
+
* irrelevant — it is discarded — while its non-clobbered descendants, e.g.
|
|
1683
|
+
* the `<img>`, are reached and scrubbed).
|
|
1684
|
+
*
|
|
1685
|
+
* @param root the root of a removed subtree to neutralise
|
|
1686
|
+
*/
|
|
1687
|
+
const _neutralizeSubtree = function _neutralizeSubtree(root) {
|
|
1688
|
+
const stack = [root];
|
|
1689
|
+
while (stack.length > 0) {
|
|
1690
|
+
const node = stack.pop();
|
|
1691
|
+
const nodeType = getNodeType ? getNodeType(node) : node.nodeType;
|
|
1692
|
+
if (nodeType === NODE_TYPE.element) {
|
|
1693
|
+
_stripDisallowedAttributes(node);
|
|
1694
|
+
}
|
|
1695
|
+
const childNodes = getChildNodes(node);
|
|
1696
|
+
if (childNodes) {
|
|
1697
|
+
for (let i = childNodes.length - 1; i >= 0; --i) {
|
|
1698
|
+
stack.push(childNodes[i]);
|
|
1699
|
+
}
|
|
1700
|
+
}
|
|
1701
|
+
}
|
|
1702
|
+
};
|
|
1384
1703
|
/**
|
|
1385
1704
|
* _initDocument
|
|
1386
1705
|
*
|
|
@@ -1402,7 +1721,7 @@ function createDOMPurify() {
|
|
|
1402
1721
|
// Root of XHTML doc must contain xmlns declaration (see https://www.w3.org/TR/xhtml1/normative.html#strict)
|
|
1403
1722
|
dirty = '<html xmlns="http://www.w3.org/1999/xhtml"><head></head><body>' + dirty + '</body></html>';
|
|
1404
1723
|
}
|
|
1405
|
-
const dirtyPayload = trustedTypesPolicy ?
|
|
1724
|
+
const dirtyPayload = trustedTypesPolicy ? _createTrustedHTML(dirty) : dirty;
|
|
1406
1725
|
/*
|
|
1407
1726
|
* Use the DOMParser API by default, fallback later if needs be
|
|
1408
1727
|
* DOMParser not work for svg when has multiple root element.
|
|
@@ -1442,6 +1761,20 @@ function createDOMPurify() {
|
|
|
1442
1761
|
// eslint-disable-next-line no-bitwise
|
|
1443
1762
|
NodeFilter.SHOW_ELEMENT | NodeFilter.SHOW_COMMENT | NodeFilter.SHOW_TEXT | NodeFilter.SHOW_PROCESSING_INSTRUCTION | NodeFilter.SHOW_CDATA_SECTION, null);
|
|
1444
1763
|
};
|
|
1764
|
+
/**
|
|
1765
|
+
* Replace template expression syntax (mustache, ERB, template
|
|
1766
|
+
* literal) with a space; shared by all SAFE_FOR_TEMPLATES scrub
|
|
1767
|
+
* sites. Order matters: mustache, then ERB, then template literal.
|
|
1768
|
+
*
|
|
1769
|
+
* @param value the string to scrub
|
|
1770
|
+
* @returns the scrubbed string
|
|
1771
|
+
*/
|
|
1772
|
+
const _stripTemplateExpressions = function _stripTemplateExpressions(value) {
|
|
1773
|
+
value = stringReplace(value, MUSTACHE_EXPR$1, ' ');
|
|
1774
|
+
value = stringReplace(value, ERB_EXPR$1, ' ');
|
|
1775
|
+
value = stringReplace(value, TMPLIT_EXPR$1, ' ');
|
|
1776
|
+
return value;
|
|
1777
|
+
};
|
|
1445
1778
|
/**
|
|
1446
1779
|
* Strip template-engine expressions ({{...}}, ${...}, <%...%>) from the
|
|
1447
1780
|
* character data of an element subtree. Used as the final safety net for
|
|
@@ -1461,29 +1794,100 @@ function createDOMPurify() {
|
|
|
1461
1794
|
*
|
|
1462
1795
|
* @param node The root element whose character data should be scrubbed.
|
|
1463
1796
|
*/
|
|
1464
|
-
const
|
|
1797
|
+
const _scrubTemplateExpressions2 = function _scrubTemplateExpressions(node) {
|
|
1798
|
+
var _node$querySelectorAl;
|
|
1465
1799
|
node.normalize();
|
|
1466
1800
|
const walker = createNodeIterator.call(node.ownerDocument || node, node,
|
|
1467
1801
|
// eslint-disable-next-line no-bitwise
|
|
1468
1802
|
NodeFilter.SHOW_TEXT | NodeFilter.SHOW_COMMENT | NodeFilter.SHOW_CDATA_SECTION | NodeFilter.SHOW_PROCESSING_INSTRUCTION, null);
|
|
1469
1803
|
let currentNode = walker.nextNode();
|
|
1470
1804
|
while (currentNode) {
|
|
1471
|
-
|
|
1472
|
-
arrayForEach([MUSTACHE_EXPR$1, ERB_EXPR$1, TMPLIT_EXPR$1], expr => {
|
|
1473
|
-
data = stringReplace(data, expr, ' ');
|
|
1474
|
-
});
|
|
1475
|
-
currentNode.data = data;
|
|
1805
|
+
currentNode.data = _stripTemplateExpressions(currentNode.data);
|
|
1476
1806
|
currentNode = walker.nextNode();
|
|
1477
1807
|
}
|
|
1808
|
+
// NodeIterator does not descend into <template>.content per the DOM spec,
|
|
1809
|
+
// so we must explicitly recurse into each template's content fragment,
|
|
1810
|
+
// mirroring the approach used by _sanitizeShadowDOM.
|
|
1811
|
+
const templates = (_node$querySelectorAl = node.querySelectorAll) === null || _node$querySelectorAl === void 0 ? void 0 : _node$querySelectorAl.call(node, 'template');
|
|
1812
|
+
if (templates) {
|
|
1813
|
+
arrayForEach(templates, tmpl => {
|
|
1814
|
+
if (_isDocumentFragment(tmpl.content)) {
|
|
1815
|
+
_scrubTemplateExpressions2(tmpl.content);
|
|
1816
|
+
}
|
|
1817
|
+
});
|
|
1818
|
+
}
|
|
1478
1819
|
};
|
|
1479
1820
|
/**
|
|
1480
1821
|
* _isClobbered
|
|
1481
1822
|
*
|
|
1823
|
+
* Detect DOM-clobbering on HTMLFormElement nodes. Form is the only HTML
|
|
1824
|
+
* interface with [LegacyOverrideBuiltIns]; a descendant element with a
|
|
1825
|
+
* `name` attribute matching a prototype property shadows that property
|
|
1826
|
+
* on direct reads. We use this check at the IN_PLACE entry-point and
|
|
1827
|
+
* during attribute sanitization to refuse clobbered forms.
|
|
1828
|
+
*
|
|
1482
1829
|
* @param element element to check for clobbering attacks
|
|
1483
1830
|
* @return true if clobbered, false if safe
|
|
1484
1831
|
*/
|
|
1485
1832
|
const _isClobbered = function _isClobbered(element) {
|
|
1486
|
-
|
|
1833
|
+
// Realm-independent tag-name probe. If we can't determine the tag
|
|
1834
|
+
// name at all, we can't reason about clobbering — return false
|
|
1835
|
+
// (the caller's other defences still apply).
|
|
1836
|
+
const realTagName = getNodeName ? getNodeName(element) : null;
|
|
1837
|
+
if (typeof realTagName !== 'string') {
|
|
1838
|
+
return false;
|
|
1839
|
+
}
|
|
1840
|
+
if (transformCaseFunc(realTagName) !== 'form') {
|
|
1841
|
+
return false;
|
|
1842
|
+
}
|
|
1843
|
+
return typeof element.nodeName !== 'string' || typeof element.textContent !== 'string' || typeof element.removeChild !== 'function' ||
|
|
1844
|
+
// Realm-safe NamedNodeMap detection: equality against the cached
|
|
1845
|
+
// prototype getter. Clobbered .attributes (e.g. <input name="attributes">)
|
|
1846
|
+
// makes the direct read diverge from the cached read; a clean form
|
|
1847
|
+
// (same-realm OR foreign-realm) has both reads pointing at the same
|
|
1848
|
+
// canonical NamedNodeMap.
|
|
1849
|
+
element.attributes !== getAttributes(element) || typeof element.removeAttribute !== 'function' || typeof element.setAttribute !== 'function' || typeof element.namespaceURI !== 'string' || typeof element.insertBefore !== 'function' || typeof element.hasChildNodes !== 'function' ||
|
|
1850
|
+
// NodeType clobbering probe. Cached Node.prototype.nodeType getter
|
|
1851
|
+
// returns the integer 1 for any Element regardless of realm; direct
|
|
1852
|
+
// read on a clobbered form (e.g. <input name="nodeType">) returns
|
|
1853
|
+
// the named child element. Cheap addition — nodeType is read from
|
|
1854
|
+
// an internal slot, no serialization cost — and removes a residual
|
|
1855
|
+
// clobbering surface used by several mXSS / PI / comment branches
|
|
1856
|
+
// in _sanitizeElements that compare currentNode.nodeType directly.
|
|
1857
|
+
element.nodeType !== getNodeType(element) ||
|
|
1858
|
+
// HTMLFormElement has [LegacyOverrideBuiltIns]: a descendant named
|
|
1859
|
+
// "childNodes" shadows the prototype getter. Direct reads of
|
|
1860
|
+
// form.childNodes from a clobbered form return the named child
|
|
1861
|
+
// instead of the real NodeList, so any walk that reads it directly
|
|
1862
|
+
// skips the form's real children. Compare the direct read to the
|
|
1863
|
+
// cached Node.prototype getter — when the form's named-property
|
|
1864
|
+
// getter intercepts the read, the two values differ and we flag
|
|
1865
|
+
// the form. This catches every clobbering child type (input,
|
|
1866
|
+
// select, etc.) regardless of whether the named child happens to
|
|
1867
|
+
// carry a numeric .length, which a typeof-based probe would miss
|
|
1868
|
+
// (e.g. HTMLSelectElement.length is a defined unsigned-long).
|
|
1869
|
+
element.childNodes !== getChildNodes(element);
|
|
1870
|
+
};
|
|
1871
|
+
/**
|
|
1872
|
+
* Checks whether the given value is a DocumentFragment from any realm.
|
|
1873
|
+
*
|
|
1874
|
+
* The realm-independent replacement reads `nodeType` through the cached
|
|
1875
|
+
* Node.prototype getter and compares to the DOCUMENT_FRAGMENT_NODE
|
|
1876
|
+
* constant (11). nodeType is a numeric value resolved from the node's
|
|
1877
|
+
* internal slot, identical across realms for the same kind of node.
|
|
1878
|
+
*
|
|
1879
|
+
* @param value object to check
|
|
1880
|
+
* @return true if value is a DocumentFragment-shaped node from any realm
|
|
1881
|
+
*/
|
|
1882
|
+
const _isDocumentFragment = function _isDocumentFragment(value) {
|
|
1883
|
+
if (!getNodeType || typeof value !== 'object' || value === null) {
|
|
1884
|
+
return false;
|
|
1885
|
+
}
|
|
1886
|
+
try {
|
|
1887
|
+
return getNodeType(value) === NODE_TYPE.documentFragment;
|
|
1888
|
+
} catch (_) {
|
|
1889
|
+
return false;
|
|
1890
|
+
}
|
|
1487
1891
|
};
|
|
1488
1892
|
/**
|
|
1489
1893
|
* Checks whether the given object is a DOM node, including nodes that
|
|
@@ -1493,12 +1897,6 @@ function createDOMPurify() {
|
|
|
1493
1897
|
* sanitize() to silently stringify them and reset IN_PLACE to false,
|
|
1494
1898
|
* returning the original node unsanitized. See GHSA-4w3q-35jp-p934.
|
|
1495
1899
|
*
|
|
1496
|
-
* Implementation: call the cached `nodeType` getter from Node.prototype
|
|
1497
|
-
* directly on the value. This bypasses any clobbered instance property
|
|
1498
|
-
* (e.g. a child element named "nodeType") and works across realms
|
|
1499
|
-
* because the WebIDL `nodeType` getter reads an internal slot that
|
|
1500
|
-
* every real Node has, regardless of which window minted it.
|
|
1501
|
-
*
|
|
1502
1900
|
* @param value object to check whether it's a DOM node
|
|
1503
1901
|
* @return true if value is a DOM node from any realm
|
|
1504
1902
|
*/
|
|
@@ -1513,10 +1911,104 @@ function createDOMPurify() {
|
|
|
1513
1911
|
}
|
|
1514
1912
|
};
|
|
1515
1913
|
function _executeHooks(hooks, currentNode, data) {
|
|
1914
|
+
if (hooks.length === 0) {
|
|
1915
|
+
return;
|
|
1916
|
+
}
|
|
1516
1917
|
arrayForEach(hooks, hook => {
|
|
1517
1918
|
hook.call(DOMPurify, currentNode, data, CONFIG);
|
|
1518
1919
|
});
|
|
1519
1920
|
}
|
|
1921
|
+
/**
|
|
1922
|
+
* Structural-threat checks that condemn a node regardless of the
|
|
1923
|
+
* allowlists: mXSS via namespace confusion, risky CSS construction,
|
|
1924
|
+
* processing instructions, markup-bearing comments. Pure predicate;
|
|
1925
|
+
* the caller removes. Check order is load-bearing.
|
|
1926
|
+
*
|
|
1927
|
+
* @param currentNode the node to inspect
|
|
1928
|
+
* @param tagName the node's transformCaseFunc'd tag name
|
|
1929
|
+
* @return true if the node must be removed
|
|
1930
|
+
*/
|
|
1931
|
+
const _isUnsafeNode = function _isUnsafeNode(currentNode, tagName) {
|
|
1932
|
+
/* Detect mXSS attempts abusing namespace confusion */
|
|
1933
|
+
if (SAFE_FOR_XML && currentNode.hasChildNodes() && !_isNode(currentNode.firstElementChild) && regExpTest(ELEMENT_MARKUP_PROBE, currentNode.textContent) && regExpTest(ELEMENT_MARKUP_PROBE, currentNode.innerHTML)) {
|
|
1934
|
+
return true;
|
|
1935
|
+
}
|
|
1936
|
+
/* Remove risky CSS construction leading to mXSS */
|
|
1937
|
+
if (SAFE_FOR_XML && currentNode.namespaceURI === HTML_NAMESPACE && tagName === 'style' && _isNode(currentNode.firstElementChild)) {
|
|
1938
|
+
return true;
|
|
1939
|
+
}
|
|
1940
|
+
/* Remove any occurrence of processing instructions */
|
|
1941
|
+
if (currentNode.nodeType === NODE_TYPE.processingInstruction) {
|
|
1942
|
+
return true;
|
|
1943
|
+
}
|
|
1944
|
+
/* Remove any kind of possibly harmful comments */
|
|
1945
|
+
if (SAFE_FOR_XML && currentNode.nodeType === NODE_TYPE.comment && regExpTest(COMMENT_MARKUP_PROBE, currentNode.data)) {
|
|
1946
|
+
return true;
|
|
1947
|
+
}
|
|
1948
|
+
return false;
|
|
1949
|
+
};
|
|
1950
|
+
/**
|
|
1951
|
+
* Handle a node whose tag is forbidden or not allowlisted: keep
|
|
1952
|
+
* allowed custom elements (false return exits _sanitizeElements
|
|
1953
|
+
* early - namespace/fallback checks and the afterSanitizeElements
|
|
1954
|
+
* hook are intentionally skipped for kept custom elements), else
|
|
1955
|
+
* hoist content per KEEP_CONTENT and remove.
|
|
1956
|
+
*
|
|
1957
|
+
* @param currentNode the disallowed node
|
|
1958
|
+
* @param tagName the node's transformCaseFunc'd tag name
|
|
1959
|
+
* @return true if the node was removed, false if kept
|
|
1960
|
+
*/
|
|
1961
|
+
const _sanitizeDisallowedNode = function _sanitizeDisallowedNode(currentNode, tagName) {
|
|
1962
|
+
/* Check if we have a custom element to handle */
|
|
1963
|
+
if (!FORBID_TAGS[tagName] && _isBasicCustomElement(tagName)) {
|
|
1964
|
+
if (CUSTOM_ELEMENT_HANDLING.tagNameCheck instanceof RegExp && regExpTest(CUSTOM_ELEMENT_HANDLING.tagNameCheck, tagName)) {
|
|
1965
|
+
return false;
|
|
1966
|
+
}
|
|
1967
|
+
if (CUSTOM_ELEMENT_HANDLING.tagNameCheck instanceof Function && CUSTOM_ELEMENT_HANDLING.tagNameCheck(tagName)) {
|
|
1968
|
+
return false;
|
|
1969
|
+
}
|
|
1970
|
+
}
|
|
1971
|
+
/* Keep content except for bad-listed elements.
|
|
1972
|
+
Use the cached prototype getters exclusively — the previous code
|
|
1973
|
+
had `|| currentNode.parentNode` / `|| currentNode.childNodes`
|
|
1974
|
+
fallbacks, but the cached getters always return the canonical
|
|
1975
|
+
value (or null for a real parent-less node), so the fallback
|
|
1976
|
+
path was dead in safe cases and a clobbering surface in unsafe
|
|
1977
|
+
ones. Falsy cached results stay falsy; the `if (childNodes &&
|
|
1978
|
+
parentNode)` check already gates correctly. */
|
|
1979
|
+
if (KEEP_CONTENT && !FORBID_CONTENTS[tagName]) {
|
|
1980
|
+
const parentNode = getParentNode(currentNode);
|
|
1981
|
+
const childNodes = getChildNodes(currentNode);
|
|
1982
|
+
if (childNodes && parentNode) {
|
|
1983
|
+
const childCount = childNodes.length;
|
|
1984
|
+
/* In-place: hoist the *original* children so the iterator visits
|
|
1985
|
+
and sanitises them through the same allowlist pass as every other
|
|
1986
|
+
node. The caller built the tree in the live document, so the
|
|
1987
|
+
originals carry already-queued resource events (`<img onerror>`,
|
|
1988
|
+
`<video>`/`<audio>` error, lazy/`onload`, …); cloning would leave
|
|
1989
|
+
those originals detached but still armed, firing in page scope
|
|
1990
|
+
while the returned tree looked clean. Moving is safe in-place: the
|
|
1991
|
+
root is pre-validated as an allowed tag and so is never the node
|
|
1992
|
+
being removed, which keeps `parentNode` inside the iterator root
|
|
1993
|
+
and the relocated child inside the serialised tree.
|
|
1994
|
+
Otherwise (string / DOM-copy paths): clone. The iterator is rooted
|
|
1995
|
+
at — and the result serialised from — `body`, so a restrictive
|
|
1996
|
+
ALLOWED_TAGS that removes `body` itself must leave its content in
|
|
1997
|
+
place, which only cloning does; and those paths parse into an
|
|
1998
|
+
inert document, so their discarded originals never had a queued
|
|
1999
|
+
event to neutralise.
|
|
2000
|
+
`childNodes` is live; a tail-to-head walk keeps `childNodes[i]`
|
|
2001
|
+
valid whether we move (drops the trailing entry) or clone (leaves
|
|
2002
|
+
the list intact). */
|
|
2003
|
+
for (let i = childCount - 1; i >= 0; --i) {
|
|
2004
|
+
const hoisted = IN_PLACE ? childNodes[i] : cloneNode(childNodes[i], true);
|
|
2005
|
+
parentNode.insertBefore(hoisted, getNextSibling(currentNode));
|
|
2006
|
+
}
|
|
2007
|
+
}
|
|
2008
|
+
}
|
|
2009
|
+
_forceRemove(currentNode);
|
|
2010
|
+
return true;
|
|
2011
|
+
};
|
|
1520
2012
|
/**
|
|
1521
2013
|
* _sanitizeElements
|
|
1522
2014
|
*
|
|
@@ -1527,7 +2019,6 @@ function createDOMPurify() {
|
|
|
1527
2019
|
* @return true if node was killed, false if left alive
|
|
1528
2020
|
*/
|
|
1529
2021
|
const _sanitizeElements = function _sanitizeElements(currentNode) {
|
|
1530
|
-
let content = null;
|
|
1531
2022
|
/* Execute a hook if present */
|
|
1532
2023
|
_executeHooks(hooks.beforeSanitizeElements, currentNode, null);
|
|
1533
2024
|
/* Check if element is clobbered or can clobber */
|
|
@@ -1536,75 +2027,41 @@ function createDOMPurify() {
|
|
|
1536
2027
|
return true;
|
|
1537
2028
|
}
|
|
1538
2029
|
/* Now let's check the element's type and name */
|
|
1539
|
-
const tagName = transformCaseFunc(currentNode.nodeName);
|
|
2030
|
+
const tagName = transformCaseFunc(getNodeName ? getNodeName(currentNode) : currentNode.nodeName);
|
|
1540
2031
|
/* Execute a hook if present */
|
|
1541
2032
|
_executeHooks(hooks.uponSanitizeElement, currentNode, {
|
|
1542
2033
|
tagName,
|
|
1543
2034
|
allowedTags: ALLOWED_TAGS
|
|
1544
2035
|
});
|
|
1545
|
-
/*
|
|
1546
|
-
if (
|
|
1547
|
-
_forceRemove(currentNode);
|
|
1548
|
-
return true;
|
|
1549
|
-
}
|
|
1550
|
-
/* Remove risky CSS construction leading to mXSS */
|
|
1551
|
-
if (SAFE_FOR_XML && currentNode.namespaceURI === HTML_NAMESPACE && tagName === 'style' && _isNode(currentNode.firstElementChild)) {
|
|
1552
|
-
_forceRemove(currentNode);
|
|
1553
|
-
return true;
|
|
1554
|
-
}
|
|
1555
|
-
/* Remove any occurrence of processing instructions */
|
|
1556
|
-
if (currentNode.nodeType === NODE_TYPE.progressingInstruction) {
|
|
1557
|
-
_forceRemove(currentNode);
|
|
1558
|
-
return true;
|
|
1559
|
-
}
|
|
1560
|
-
/* Remove any kind of possibly harmful comments */
|
|
1561
|
-
if (SAFE_FOR_XML && currentNode.nodeType === NODE_TYPE.comment && regExpTest(/<[/\w]/g, currentNode.data)) {
|
|
2036
|
+
/* Remove mXSS vectors, processing instructions and risky comments */
|
|
2037
|
+
if (_isUnsafeNode(currentNode, tagName)) {
|
|
1562
2038
|
_forceRemove(currentNode);
|
|
1563
2039
|
return true;
|
|
1564
2040
|
}
|
|
1565
2041
|
/* Remove element if anything forbids its presence */
|
|
1566
2042
|
if (FORBID_TAGS[tagName] || !(EXTRA_ELEMENT_HANDLING.tagCheck instanceof Function && EXTRA_ELEMENT_HANDLING.tagCheck(tagName)) && !ALLOWED_TAGS[tagName]) {
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
if (KEEP_CONTENT && !FORBID_CONTENTS[tagName]) {
|
|
1578
|
-
const parentNode = getParentNode(currentNode) || currentNode.parentNode;
|
|
1579
|
-
const childNodes = getChildNodes(currentNode) || currentNode.childNodes;
|
|
1580
|
-
if (childNodes && parentNode) {
|
|
1581
|
-
const childCount = childNodes.length;
|
|
1582
|
-
for (let i = childCount - 1; i >= 0; --i) {
|
|
1583
|
-
const childClone = cloneNode(childNodes[i], true);
|
|
1584
|
-
parentNode.insertBefore(childClone, getNextSibling(currentNode));
|
|
1585
|
-
}
|
|
1586
|
-
}
|
|
1587
|
-
}
|
|
1588
|
-
_forceRemove(currentNode);
|
|
1589
|
-
return true;
|
|
1590
|
-
}
|
|
1591
|
-
/* Check whether element has a valid namespace */
|
|
1592
|
-
if (currentNode instanceof Element && !_checkValidNamespace(currentNode)) {
|
|
2043
|
+
return _sanitizeDisallowedNode(currentNode, tagName);
|
|
2044
|
+
}
|
|
2045
|
+
/* Check whether element has a valid namespace.
|
|
2046
|
+
Realm-safe check (GHSA-hpcv-96wg-7vj8): use the cached Node.prototype
|
|
2047
|
+
nodeType getter rather than `instanceof Element`, which is realm-
|
|
2048
|
+
bound and short-circuits to false for any node minted in a different
|
|
2049
|
+
realm — letting a foreign-realm element with a forbidden namespace
|
|
2050
|
+
slip past the namespace check entirely. */
|
|
2051
|
+
const nt = getNodeType ? getNodeType(currentNode) : currentNode.nodeType;
|
|
2052
|
+
if (nt === NODE_TYPE.element && !_checkValidNamespace(currentNode)) {
|
|
1593
2053
|
_forceRemove(currentNode);
|
|
1594
2054
|
return true;
|
|
1595
2055
|
}
|
|
1596
2056
|
/* Make sure that older browsers don't get fallback-tag mXSS */
|
|
1597
|
-
if ((tagName === 'noscript' || tagName === 'noembed' || tagName === 'noframes') && regExpTest(
|
|
2057
|
+
if ((tagName === 'noscript' || tagName === 'noembed' || tagName === 'noframes') && regExpTest(FALLBACK_TAG_CLOSE, currentNode.innerHTML)) {
|
|
1598
2058
|
_forceRemove(currentNode);
|
|
1599
2059
|
return true;
|
|
1600
2060
|
}
|
|
1601
2061
|
/* Sanitize element content to be template-safe */
|
|
1602
2062
|
if (SAFE_FOR_TEMPLATES && currentNode.nodeType === NODE_TYPE.text) {
|
|
1603
2063
|
/* Get the element's text content */
|
|
1604
|
-
content = currentNode.textContent;
|
|
1605
|
-
arrayForEach([MUSTACHE_EXPR$1, ERB_EXPR$1, TMPLIT_EXPR$1], expr => {
|
|
1606
|
-
content = stringReplace(content, expr, ' ');
|
|
1607
|
-
});
|
|
2064
|
+
const content = _stripTemplateExpressions(currentNode.textContent);
|
|
1608
2065
|
if (currentNode.textContent !== content) {
|
|
1609
2066
|
arrayPush(DOMPurify.removed, {
|
|
1610
2067
|
element: currentNode.cloneNode()
|
|
@@ -1639,7 +2096,7 @@ function createDOMPurify() {
|
|
|
1639
2096
|
(https://html.spec.whatwg.org/multipage/dom.html#embedding-custom-non-visible-data-with-the-data-*-attributes)
|
|
1640
2097
|
XML-compatible (https://html.spec.whatwg.org/multipage/infrastructure.html#xml-compatible and http://www.w3.org/TR/xml/#d0e804)
|
|
1641
2098
|
We don't need to check the value; it's always URI safe. */
|
|
1642
|
-
if (ALLOW_DATA_ATTR &&
|
|
2099
|
+
if (ALLOW_DATA_ATTR && regExpTest(DATA_ATTR$1, lcName)) ; else if (ALLOW_ARIA_ATTR && regExpTest(ARIA_ATTR$1, lcName)) ; else if (!nameIsPermitted) {
|
|
1643
2100
|
if (
|
|
1644
2101
|
// First condition does a very basic check if a) it's basically a valid custom element tagname AND
|
|
1645
2102
|
// b) if the tagName passes whatever the user has configured for CUSTOM_ELEMENT_HANDLING.tagNameCheck
|
|
@@ -1671,6 +2128,63 @@ function createDOMPurify() {
|
|
|
1671
2128
|
const _isBasicCustomElement = function _isBasicCustomElement(tagName) {
|
|
1672
2129
|
return !RESERVED_CUSTOM_ELEMENT_NAMES[stringToLowerCase(tagName)] && regExpTest(CUSTOM_ELEMENT$1, tagName);
|
|
1673
2130
|
};
|
|
2131
|
+
/**
|
|
2132
|
+
* Wrap an attribute value in the matching Trusted Types object when
|
|
2133
|
+
* the active policy requires it. Namespaced attributes pass through
|
|
2134
|
+
* unchanged (no TT support yet, see
|
|
2135
|
+
* https://bugs.chromium.org/p/chromium/issues/detail?id=1305293).
|
|
2136
|
+
*
|
|
2137
|
+
* @param lcTag lowercase tag name of the containing element
|
|
2138
|
+
* @param lcName lowercase attribute name
|
|
2139
|
+
* @param namespaceURI the attribute's namespace, if any
|
|
2140
|
+
* @param value the attribute value to wrap
|
|
2141
|
+
* @return the value, wrapped when Trusted Types demand it
|
|
2142
|
+
*/
|
|
2143
|
+
const _applyTrustedTypesToAttribute = function _applyTrustedTypesToAttribute(lcTag, lcName, namespaceURI, value) {
|
|
2144
|
+
if (trustedTypesPolicy && typeof trustedTypes === 'object' && typeof trustedTypes.getAttributeType === 'function' && !namespaceURI) {
|
|
2145
|
+
switch (trustedTypes.getAttributeType(lcTag, lcName)) {
|
|
2146
|
+
case 'TrustedHTML':
|
|
2147
|
+
{
|
|
2148
|
+
return _createTrustedHTML(value);
|
|
2149
|
+
}
|
|
2150
|
+
case 'TrustedScriptURL':
|
|
2151
|
+
{
|
|
2152
|
+
return _createTrustedScriptURL(value);
|
|
2153
|
+
}
|
|
2154
|
+
}
|
|
2155
|
+
}
|
|
2156
|
+
return value;
|
|
2157
|
+
};
|
|
2158
|
+
/**
|
|
2159
|
+
* Write a modified attribute value back onto the element. On
|
|
2160
|
+
* success, re-probe for clobbering introduced by the new value and
|
|
2161
|
+
* remove the element when found; otherwise pop the removal entry
|
|
2162
|
+
* recorded by the earlier _removeAttribute (long-standing pairing
|
|
2163
|
+
* with the SANITIZE_NAMED_PROPS path - do not "fix" casually). On
|
|
2164
|
+
* failure, remove the attribute instead.
|
|
2165
|
+
*
|
|
2166
|
+
* @param currentNode the element carrying the attribute
|
|
2167
|
+
* @param name the attribute name as present on the element
|
|
2168
|
+
* @param namespaceURI the attribute's namespace, if any
|
|
2169
|
+
* @param value the new attribute value
|
|
2170
|
+
*/
|
|
2171
|
+
const _setAttributeValue = function _setAttributeValue(currentNode, name, namespaceURI, value) {
|
|
2172
|
+
try {
|
|
2173
|
+
if (namespaceURI) {
|
|
2174
|
+
currentNode.setAttributeNS(namespaceURI, name, value);
|
|
2175
|
+
} else {
|
|
2176
|
+
/* Fallback to setAttribute() for browser-unrecognized namespaces e.g. "x-schema". */
|
|
2177
|
+
currentNode.setAttribute(name, value);
|
|
2178
|
+
}
|
|
2179
|
+
if (_isClobbered(currentNode)) {
|
|
2180
|
+
_forceRemove(currentNode);
|
|
2181
|
+
} else {
|
|
2182
|
+
arrayPop(DOMPurify.removed);
|
|
2183
|
+
}
|
|
2184
|
+
} catch (_) {
|
|
2185
|
+
_removeAttribute(name, currentNode);
|
|
2186
|
+
}
|
|
2187
|
+
};
|
|
1674
2188
|
/**
|
|
1675
2189
|
* _sanitizeAttributes
|
|
1676
2190
|
*
|
|
@@ -1697,6 +2211,7 @@ function createDOMPurify() {
|
|
|
1697
2211
|
forceKeepAttr: undefined
|
|
1698
2212
|
};
|
|
1699
2213
|
let l = attributes.length;
|
|
2214
|
+
const lcTag = transformCaseFunc(currentNode.nodeName);
|
|
1700
2215
|
/* Go backwards over all attributes; safely remove bad ones */
|
|
1701
2216
|
while (l--) {
|
|
1702
2217
|
const attr = attributes[l];
|
|
@@ -1734,7 +2249,7 @@ function createDOMPurify() {
|
|
|
1734
2249
|
_removeAttribute(name, currentNode);
|
|
1735
2250
|
continue;
|
|
1736
2251
|
}
|
|
1737
|
-
/* Did the hooks
|
|
2252
|
+
/* Did the hooks force-keep the attribute? */
|
|
1738
2253
|
if (hookEvent.forceKeepAttr) {
|
|
1739
2254
|
continue;
|
|
1740
2255
|
}
|
|
@@ -1744,56 +2259,24 @@ function createDOMPurify() {
|
|
|
1744
2259
|
continue;
|
|
1745
2260
|
}
|
|
1746
2261
|
/* Work around a security issue in jQuery 3.0 */
|
|
1747
|
-
if (!ALLOW_SELF_CLOSE_IN_ATTR && regExpTest(
|
|
2262
|
+
if (!ALLOW_SELF_CLOSE_IN_ATTR && regExpTest(SELF_CLOSING_TAG, value)) {
|
|
1748
2263
|
_removeAttribute(name, currentNode);
|
|
1749
2264
|
continue;
|
|
1750
2265
|
}
|
|
1751
2266
|
/* Sanitize attribute content to be template-safe */
|
|
1752
2267
|
if (SAFE_FOR_TEMPLATES) {
|
|
1753
|
-
|
|
1754
|
-
value = stringReplace(value, expr, ' ');
|
|
1755
|
-
});
|
|
2268
|
+
value = _stripTemplateExpressions(value);
|
|
1756
2269
|
}
|
|
1757
2270
|
/* Is `value` valid for this attribute? */
|
|
1758
|
-
const lcTag = transformCaseFunc(currentNode.nodeName);
|
|
1759
2271
|
if (!_isValidAttribute(lcTag, lcName, value)) {
|
|
1760
2272
|
_removeAttribute(name, currentNode);
|
|
1761
2273
|
continue;
|
|
1762
2274
|
}
|
|
1763
2275
|
/* Handle attributes that require Trusted Types */
|
|
1764
|
-
|
|
1765
|
-
if (namespaceURI) ; else {
|
|
1766
|
-
switch (trustedTypes.getAttributeType(lcTag, lcName)) {
|
|
1767
|
-
case 'TrustedHTML':
|
|
1768
|
-
{
|
|
1769
|
-
value = trustedTypesPolicy.createHTML(value);
|
|
1770
|
-
break;
|
|
1771
|
-
}
|
|
1772
|
-
case 'TrustedScriptURL':
|
|
1773
|
-
{
|
|
1774
|
-
value = trustedTypesPolicy.createScriptURL(value);
|
|
1775
|
-
break;
|
|
1776
|
-
}
|
|
1777
|
-
}
|
|
1778
|
-
}
|
|
1779
|
-
}
|
|
2276
|
+
value = _applyTrustedTypesToAttribute(lcTag, lcName, namespaceURI, value);
|
|
1780
2277
|
/* Handle invalid data-* attribute set by try-catching it */
|
|
1781
2278
|
if (value !== initValue) {
|
|
1782
|
-
|
|
1783
|
-
if (namespaceURI) {
|
|
1784
|
-
currentNode.setAttributeNS(namespaceURI, name, value);
|
|
1785
|
-
} else {
|
|
1786
|
-
/* Fallback to setAttribute() for browser-unrecognized namespaces e.g. "x-schema". */
|
|
1787
|
-
currentNode.setAttribute(name, value);
|
|
1788
|
-
}
|
|
1789
|
-
if (_isClobbered(currentNode)) {
|
|
1790
|
-
_forceRemove(currentNode);
|
|
1791
|
-
} else {
|
|
1792
|
-
arrayPop(DOMPurify.removed);
|
|
1793
|
-
}
|
|
1794
|
-
} catch (_) {
|
|
1795
|
-
_removeAttribute(name, currentNode);
|
|
1796
|
-
}
|
|
2279
|
+
_setAttributeValue(currentNode, name, namespaceURI, value);
|
|
1797
2280
|
}
|
|
1798
2281
|
}
|
|
1799
2282
|
/* Execute a hook if present */
|
|
@@ -1816,10 +2299,31 @@ function createDOMPurify() {
|
|
|
1816
2299
|
_sanitizeElements(shadowNode);
|
|
1817
2300
|
/* Check attributes next */
|
|
1818
2301
|
_sanitizeAttributes(shadowNode);
|
|
1819
|
-
/* Deep shadow DOM detected
|
|
1820
|
-
|
|
2302
|
+
/* Deep shadow DOM detected.
|
|
2303
|
+
Realm-safe check (GHSA-hpcv-96wg-7vj8): use nodeType against the
|
|
2304
|
+
DOCUMENT_FRAGMENT_NODE constant rather than instanceof, so we
|
|
2305
|
+
recurse into <template>.content from foreign realms too. */
|
|
2306
|
+
if (_isDocumentFragment(shadowNode.content)) {
|
|
1821
2307
|
_sanitizeShadowDOM2(shadowNode.content);
|
|
1822
2308
|
}
|
|
2309
|
+
/* An element iterated here may itself host an attached
|
|
2310
|
+
shadow root. The default NodeIterator does not enter shadow
|
|
2311
|
+
trees, so a shadow root nested inside template.content was
|
|
2312
|
+
previously reached by no walk at all (the pre-pass at
|
|
2313
|
+
_sanitizeAttachedShadowRoots descends via childNodes, which
|
|
2314
|
+
doesn't enter template.content; the template-content recursion
|
|
2315
|
+
above iterates the content but never inspected shadowRoot).
|
|
2316
|
+
Walk it explicitly. The nodeType guard avoids reading
|
|
2317
|
+
shadowRoot off text / comment / CDATA / PI nodes that the
|
|
2318
|
+
iterator also surfaces. */
|
|
2319
|
+
const shadowNodeType = getNodeType ? getNodeType(shadowNode) : shadowNode.nodeType;
|
|
2320
|
+
if (shadowNodeType === NODE_TYPE.element) {
|
|
2321
|
+
const innerSr = getShadowRoot(shadowNode);
|
|
2322
|
+
if (_isDocumentFragment(innerSr)) {
|
|
2323
|
+
_sanitizeAttachedShadowRoots(innerSr);
|
|
2324
|
+
_sanitizeShadowDOM2(innerSr);
|
|
2325
|
+
}
|
|
2326
|
+
}
|
|
1823
2327
|
}
|
|
1824
2328
|
/* Execute a hook if present */
|
|
1825
2329
|
_executeHooks(hooks.afterSanitizeShadowDOM, fragment, null);
|
|
@@ -1843,28 +2347,83 @@ function createDOMPurify() {
|
|
|
1843
2347
|
*
|
|
1844
2348
|
* @param root the subtree root to walk for attached shadow roots
|
|
1845
2349
|
*/
|
|
1846
|
-
const
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
const
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
}
|
|
1866
|
-
|
|
1867
|
-
|
|
2350
|
+
const _sanitizeAttachedShadowRoots = function _sanitizeAttachedShadowRoots(root) {
|
|
2351
|
+
/* Iterative (explicit stack) rather than per-child recursion. DOM APIs
|
|
2352
|
+
impose no depth cap, so an attacker-shaped tree (JSON/CRDT/editor data
|
|
2353
|
+
built straight into the DOM — the IN_PLACE surface) deeper than the JS
|
|
2354
|
+
call-stack budget would otherwise overflow native recursion here and
|
|
2355
|
+
throw at the IN_PLACE entry pre-pass, before a single node is
|
|
2356
|
+
sanitized, leaving the caller's live tree untouched (fail-open). See
|
|
2357
|
+
campaign-3 F4. A heap stack keeps depth off the call stack.
|
|
2358
|
+
Each work item is either a node to descend into, or a deferred
|
|
2359
|
+
`_sanitizeShadowDOM` for an already-walked shadow root. The deferred
|
|
2360
|
+
form preserves the original post-order discipline: a shadow root's
|
|
2361
|
+
nested shadow roots are discovered before the outer shadow is
|
|
2362
|
+
sanitized (which may remove hosts). Pushes are in reverse of the
|
|
2363
|
+
desired processing order (LIFO): template content, then children, then
|
|
2364
|
+
the shadow-sanitize, then the shadow walk — so the order matches the
|
|
2365
|
+
previous recursion exactly. */
|
|
2366
|
+
const stack = [{
|
|
2367
|
+
node: root,
|
|
2368
|
+
shadow: null
|
|
2369
|
+
}];
|
|
2370
|
+
while (stack.length > 0) {
|
|
2371
|
+
const item = stack.pop();
|
|
2372
|
+
/* Deferred shadow-DOM sanitisation: runs after its subtree was walked. */
|
|
2373
|
+
if (item.shadow) {
|
|
2374
|
+
_sanitizeShadowDOM2(item.shadow);
|
|
2375
|
+
continue;
|
|
2376
|
+
}
|
|
2377
|
+
const node = item.node;
|
|
2378
|
+
const nodeType = getNodeType ? getNodeType(node) : node.nodeType;
|
|
2379
|
+
const isElement = nodeType === NODE_TYPE.element;
|
|
2380
|
+
/* (pushed last → processed first) Children, snapshotted in reverse so
|
|
2381
|
+
the first child is processed first. Snapshotting matters because a
|
|
2382
|
+
hook may detach siblings mid-walk. */
|
|
2383
|
+
const childNodes = getChildNodes(node);
|
|
2384
|
+
if (childNodes) {
|
|
2385
|
+
for (let i = childNodes.length - 1; i >= 0; --i) {
|
|
2386
|
+
stack.push({
|
|
2387
|
+
node: childNodes[i],
|
|
2388
|
+
shadow: null
|
|
2389
|
+
});
|
|
2390
|
+
}
|
|
2391
|
+
}
|
|
2392
|
+
/* (pushed before children → processed after them, matching the old
|
|
2393
|
+
"template content last" order) When the node is a <template>,
|
|
2394
|
+
descend into its content. */
|
|
2395
|
+
if (isElement) {
|
|
2396
|
+
const rootName = getNodeName ? getNodeName(node) : null;
|
|
2397
|
+
if (typeof rootName === 'string' && transformCaseFunc(rootName) === 'template') {
|
|
2398
|
+
const content = node.content;
|
|
2399
|
+
if (_isDocumentFragment(content)) {
|
|
2400
|
+
stack.push({
|
|
2401
|
+
node: content,
|
|
2402
|
+
shadow: null
|
|
2403
|
+
});
|
|
2404
|
+
}
|
|
2405
|
+
}
|
|
2406
|
+
}
|
|
2407
|
+
/* Shadow root (processed first): walk its subtree, then sanitise it.
|
|
2408
|
+
Realm-safe check (GHSA-hpcv-96wg-7vj8): nodeType-based detection
|
|
2409
|
+
rather than `instanceof DocumentFragment`, which is realm-bound and
|
|
2410
|
+
silently skipped foreign-realm shadow roots (e.g.
|
|
2411
|
+
iframe.contentDocument attachShadow). */
|
|
2412
|
+
if (isElement) {
|
|
2413
|
+
const sr = getShadowRoot(node);
|
|
2414
|
+
if (_isDocumentFragment(sr)) {
|
|
2415
|
+
/* Push the deferred sanitise first so it pops after the shadow
|
|
2416
|
+
walk we push next, i.e. nested shadow roots are discovered
|
|
2417
|
+
before this one is sanitised. */
|
|
2418
|
+
stack.push({
|
|
2419
|
+
node: null,
|
|
2420
|
+
shadow: sr
|
|
2421
|
+
}, {
|
|
2422
|
+
node: sr,
|
|
2423
|
+
shadow: null
|
|
2424
|
+
});
|
|
2425
|
+
}
|
|
2426
|
+
}
|
|
1868
2427
|
}
|
|
1869
2428
|
};
|
|
1870
2429
|
// eslint-disable-next-line complexity
|
|
@@ -1893,27 +2452,77 @@ function createDOMPurify() {
|
|
|
1893
2452
|
return dirty;
|
|
1894
2453
|
}
|
|
1895
2454
|
/* Assign config vars */
|
|
1896
|
-
if (
|
|
2455
|
+
if (SET_CONFIG) {
|
|
2456
|
+
/* Persistent setConfig() path: _parseConfig is skipped, so the sets are
|
|
2457
|
+
* not re-derived per call. Restore them from the pristine bindings
|
|
2458
|
+
* captured at setConfig() time so a previous call's hook clone (mutated
|
|
2459
|
+
* below) does not carry over. */
|
|
2460
|
+
ALLOWED_TAGS = SET_CONFIG_ALLOWED_TAGS;
|
|
2461
|
+
ALLOWED_ATTR = SET_CONFIG_ALLOWED_ATTR;
|
|
2462
|
+
} else {
|
|
1897
2463
|
_parseConfig(cfg);
|
|
1898
2464
|
}
|
|
2465
|
+
/* Clone the hook-mutable allowlists before the walk whenever an
|
|
2466
|
+
* uponSanitize* hook is registered. The hook event exposes ALLOWED_TAGS
|
|
2467
|
+
* and ALLOWED_ATTR by reference (as allowedTags / allowedAttributes), so
|
|
2468
|
+
* a hook that widens them would otherwise mutate the shared set
|
|
2469
|
+
* permanently: across later calls and across every element. Cloning per
|
|
2470
|
+
* walk keeps documented in-call widening working while scoping it to the
|
|
2471
|
+
* call. A single guard for both config paths - the per-call path rebinds
|
|
2472
|
+
* the sets in _parseConfig each call, the persistent path restores them
|
|
2473
|
+
* from the captured bindings just above - so the two cannot diverge. */
|
|
2474
|
+
if (hooks.uponSanitizeElement.length > 0 || hooks.uponSanitizeAttribute.length > 0) {
|
|
2475
|
+
ALLOWED_TAGS = clone$1(ALLOWED_TAGS);
|
|
2476
|
+
}
|
|
2477
|
+
if (hooks.uponSanitizeAttribute.length > 0) {
|
|
2478
|
+
ALLOWED_ATTR = clone$1(ALLOWED_ATTR);
|
|
2479
|
+
}
|
|
1899
2480
|
/* Clean up removed elements */
|
|
1900
2481
|
DOMPurify.removed = [];
|
|
1901
|
-
/*
|
|
1902
|
-
|
|
1903
|
-
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
|
|
1907
|
-
|
|
2482
|
+
/* Resolve IN_PLACE for this call without mutating persistent config.
|
|
2483
|
+
Writing the IN_PLACE closure variable here leaks under setConfig(),
|
|
2484
|
+
where _parseConfig is skipped on later calls: a single string call would
|
|
2485
|
+
disable in-place mode for every subsequent node call, returning a
|
|
2486
|
+
sanitized copy while leaving the caller's node — which in-place callers
|
|
2487
|
+
keep using and whose return value they ignore — unsanitized. REPORT-2. */
|
|
2488
|
+
const inPlace = IN_PLACE && typeof dirty !== 'string' && _isNode(dirty);
|
|
2489
|
+
if (inPlace) {
|
|
2490
|
+
/* Do some early pre-sanitization to avoid unsafe root nodes.
|
|
2491
|
+
Read nodeName through the cached prototype getter — a clobbering
|
|
2492
|
+
child named "nodeName" on the form root would otherwise shadow
|
|
2493
|
+
the property and let this check skip the root-allowlist
|
|
2494
|
+
validation entirely. */
|
|
2495
|
+
const nn = getNodeName ? getNodeName(dirty) : dirty.nodeName;
|
|
1908
2496
|
if (typeof nn === 'string') {
|
|
1909
2497
|
const tagName = transformCaseFunc(nn);
|
|
1910
2498
|
if (!ALLOWED_TAGS[tagName] || FORBID_TAGS[tagName]) {
|
|
1911
2499
|
throw typeErrorCreate('root node is forbidden and cannot be sanitized in-place');
|
|
1912
2500
|
}
|
|
1913
2501
|
}
|
|
2502
|
+
/* Pre-flight the root through _isClobbered. The iterator-driven
|
|
2503
|
+
removal path can not detach a parent-less root: _forceRemove
|
|
2504
|
+
falls through to Element.prototype.remove(), which per spec
|
|
2505
|
+
is a no-op on a node with no parent. A clobbered root would
|
|
2506
|
+
then survive the main loop with its attributes uninspected,
|
|
2507
|
+
because _sanitizeAttributes early-returns on _isClobbered. The
|
|
2508
|
+
result would be an attacker-controlled form, complete with any
|
|
2509
|
+
event-handler attributes the caller passed in, handed back to
|
|
2510
|
+
the application unsanitized. Refuse to sanitize such a root
|
|
2511
|
+
the same way we refuse a forbidden tag. GHSA-r47g-fvhr-h676. */
|
|
2512
|
+
if (_isClobbered(dirty)) {
|
|
2513
|
+
throw typeErrorCreate('root node is clobbered and cannot be sanitized in-place');
|
|
2514
|
+
}
|
|
1914
2515
|
/* Sanitize attached shadow roots before the main iterator runs.
|
|
1915
|
-
The iterator does not descend into shadow trees.
|
|
1916
|
-
|
|
2516
|
+
The iterator does not descend into shadow trees. Same fail-closed
|
|
2517
|
+
barrier as the main walk (campaign-3 F2): a custom-element reaction
|
|
2518
|
+
inside a shadow root could abort this pre-pass before the walk runs,
|
|
2519
|
+
which would otherwise leave the entire live tree unsanitized. */
|
|
2520
|
+
try {
|
|
2521
|
+
_sanitizeAttachedShadowRoots(dirty);
|
|
2522
|
+
} catch (error) {
|
|
2523
|
+
_neutralizeRoot(dirty);
|
|
2524
|
+
throw error;
|
|
2525
|
+
}
|
|
1917
2526
|
} else if (_isNode(dirty)) {
|
|
1918
2527
|
/* If dirty is a DOM element, append to an empty document to avoid
|
|
1919
2528
|
elements being stripped by the parser */
|
|
@@ -1930,14 +2539,16 @@ function createDOMPurify() {
|
|
|
1930
2539
|
}
|
|
1931
2540
|
/* Clonable shadow roots are deep-cloned by importNode(); sanitize
|
|
1932
2541
|
them before the main iterator runs, since the iterator does not
|
|
1933
|
-
descend into shadow trees.
|
|
1934
|
-
|
|
2542
|
+
descend into shadow trees. The walk routes every read through a
|
|
2543
|
+
cached prototype getter so clobbering descendants on a form root
|
|
2544
|
+
cannot hide a shadow host from this pass. */
|
|
2545
|
+
_sanitizeAttachedShadowRoots(importedNode);
|
|
1935
2546
|
} else {
|
|
1936
2547
|
/* Exit directly if we have nothing to do */
|
|
1937
2548
|
if (!RETURN_DOM && !SAFE_FOR_TEMPLATES && !WHOLE_DOCUMENT &&
|
|
1938
2549
|
// eslint-disable-next-line unicorn/prefer-includes
|
|
1939
2550
|
dirty.indexOf('<') === -1) {
|
|
1940
|
-
return trustedTypesPolicy && RETURN_TRUSTED_TYPE ?
|
|
2551
|
+
return trustedTypesPolicy && RETURN_TRUSTED_TYPE ? _createTrustedHTML(dirty) : dirty;
|
|
1941
2552
|
}
|
|
1942
2553
|
/* Initialize the document to work on */
|
|
1943
2554
|
body = _initDocument(dirty);
|
|
@@ -1951,29 +2562,59 @@ function createDOMPurify() {
|
|
|
1951
2562
|
_forceRemove(body.firstChild);
|
|
1952
2563
|
}
|
|
1953
2564
|
/* Get node iterator */
|
|
1954
|
-
const nodeIterator = _createNodeIterator(
|
|
1955
|
-
/* Now start iterating over the created document
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
|
|
2565
|
+
const nodeIterator = _createNodeIterator(inPlace ? dirty : body);
|
|
2566
|
+
/* Now start iterating over the created document.
|
|
2567
|
+
The walk runs inside an exception barrier (campaign-3 F2): a re-entrant
|
|
2568
|
+
engine/custom-element mutation can detach a node mid-walk so
|
|
2569
|
+
`_forceRemove`'s parentless guard throws, aborting the loop. Without the
|
|
2570
|
+
barrier the caller's in-place tree would be left half-sanitized with the
|
|
2571
|
+
unvisited tail still armed. On any throw we fail closed — strip the
|
|
2572
|
+
in-place root bare — then rethrow so the existing throw contract is
|
|
2573
|
+
preserved. (String/DOM-copy paths never return the partial body, so the
|
|
2574
|
+
propagating throw is already fail-closed there.) */
|
|
2575
|
+
try {
|
|
2576
|
+
while (currentNode = nodeIterator.nextNode()) {
|
|
2577
|
+
/* Sanitize tags and elements */
|
|
2578
|
+
_sanitizeElements(currentNode);
|
|
2579
|
+
/* Check attributes next */
|
|
2580
|
+
_sanitizeAttributes(currentNode);
|
|
2581
|
+
/* Shadow DOM detected, sanitize it.
|
|
2582
|
+
Realm-safe check (GHSA-hpcv-96wg-7vj8): nodeType-based detection
|
|
2583
|
+
instead of instanceof, so foreign-realm <template>.content is
|
|
2584
|
+
walked correctly. */
|
|
2585
|
+
if (_isDocumentFragment(currentNode.content)) {
|
|
2586
|
+
_sanitizeShadowDOM2(currentNode.content);
|
|
2587
|
+
}
|
|
2588
|
+
}
|
|
2589
|
+
} catch (error) {
|
|
2590
|
+
if (inPlace) {
|
|
2591
|
+
_neutralizeRoot(dirty);
|
|
1964
2592
|
}
|
|
2593
|
+
throw error;
|
|
1965
2594
|
}
|
|
1966
2595
|
/* If we sanitized `dirty` in-place, return it. */
|
|
1967
|
-
if (
|
|
2596
|
+
if (inPlace) {
|
|
2597
|
+
/* Fail-closed completion of the audit-5 F1 fix: every node removed from
|
|
2598
|
+
the caller's live tree is detached but may still hold a queued
|
|
2599
|
+
resource-event handler that fires in page scope after we return. The
|
|
2600
|
+
move-hoist covers only disallowed-tag KEEP_CONTENT removals; strip the
|
|
2601
|
+
non-allow-listed attributes off every other removed subtree (clobber,
|
|
2602
|
+
mXSS, namespace, comments, KEEP_CONTENT:false, …) so those handlers are
|
|
2603
|
+
cancelled before any event can fire. Runs synchronously, pre-return. */
|
|
2604
|
+
arrayForEach(DOMPurify.removed, entry => {
|
|
2605
|
+
if (entry.element) {
|
|
2606
|
+
_neutralizeSubtree(entry.element);
|
|
2607
|
+
}
|
|
2608
|
+
});
|
|
1968
2609
|
if (SAFE_FOR_TEMPLATES) {
|
|
1969
|
-
|
|
2610
|
+
_scrubTemplateExpressions2(dirty);
|
|
1970
2611
|
}
|
|
1971
2612
|
return dirty;
|
|
1972
2613
|
}
|
|
1973
2614
|
/* Return sanitized string or DOM */
|
|
1974
2615
|
if (RETURN_DOM) {
|
|
1975
2616
|
if (SAFE_FOR_TEMPLATES) {
|
|
1976
|
-
|
|
2617
|
+
_scrubTemplateExpressions2(body);
|
|
1977
2618
|
}
|
|
1978
2619
|
if (RETURN_DOM_FRAGMENT) {
|
|
1979
2620
|
returnNode = createDocumentFragment.call(body.ownerDocument);
|
|
@@ -2003,20 +2644,28 @@ function createDOMPurify() {
|
|
|
2003
2644
|
}
|
|
2004
2645
|
/* Sanitize final string template-safe */
|
|
2005
2646
|
if (SAFE_FOR_TEMPLATES) {
|
|
2006
|
-
|
|
2007
|
-
serializedHTML = stringReplace(serializedHTML, expr, ' ');
|
|
2008
|
-
});
|
|
2647
|
+
serializedHTML = _stripTemplateExpressions(serializedHTML);
|
|
2009
2648
|
}
|
|
2010
|
-
return trustedTypesPolicy && RETURN_TRUSTED_TYPE ?
|
|
2649
|
+
return trustedTypesPolicy && RETURN_TRUSTED_TYPE ? _createTrustedHTML(serializedHTML) : serializedHTML;
|
|
2011
2650
|
};
|
|
2012
2651
|
DOMPurify.setConfig = function () {
|
|
2013
2652
|
let cfg = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
2014
2653
|
_parseConfig(cfg);
|
|
2015
2654
|
SET_CONFIG = true;
|
|
2655
|
+
SET_CONFIG_ALLOWED_TAGS = ALLOWED_TAGS;
|
|
2656
|
+
SET_CONFIG_ALLOWED_ATTR = ALLOWED_ATTR;
|
|
2016
2657
|
};
|
|
2017
2658
|
DOMPurify.clearConfig = function () {
|
|
2018
2659
|
CONFIG = null;
|
|
2019
2660
|
SET_CONFIG = false;
|
|
2661
|
+
SET_CONFIG_ALLOWED_TAGS = null;
|
|
2662
|
+
SET_CONFIG_ALLOWED_ATTR = null;
|
|
2663
|
+
// Drop any caller-supplied Trusted Types policy so it cannot poison later
|
|
2664
|
+
// `RETURN_TRUSTED_TYPE` output. The internal default policy (cached, and
|
|
2665
|
+
// never recreated — Trusted Types throws on duplicate names) is restored by
|
|
2666
|
+
// the next `_parseConfig`. See GHSA-vxr8-fq34-vvx9.
|
|
2667
|
+
trustedTypesPolicy = defaultTrustedTypesPolicy;
|
|
2668
|
+
emptyHTML = '';
|
|
2020
2669
|
};
|
|
2021
2670
|
DOMPurify.isValidAttribute = function (tag, attr, value) {
|
|
2022
2671
|
/* Initialize shared config vars if necessary. */
|
|
@@ -2031,9 +2680,19 @@ function createDOMPurify() {
|
|
|
2031
2680
|
if (typeof hookFunction !== 'function') {
|
|
2032
2681
|
return;
|
|
2033
2682
|
}
|
|
2683
|
+
/* Reject unknown entry points. Without this, a non-hook key (e.g.
|
|
2684
|
+
* '__proto__') indexes off the prototype chain rather than a real
|
|
2685
|
+
* hook array, and arrayPush then writes to Object.prototype. Guard
|
|
2686
|
+
* with an own-property check against the known hook names. */
|
|
2687
|
+
if (!objectHasOwnProperty(hooks, entryPoint)) {
|
|
2688
|
+
return;
|
|
2689
|
+
}
|
|
2034
2690
|
arrayPush(hooks[entryPoint], hookFunction);
|
|
2035
2691
|
};
|
|
2036
2692
|
DOMPurify.removeHook = function (entryPoint, hookFunction) {
|
|
2693
|
+
if (!objectHasOwnProperty(hooks, entryPoint)) {
|
|
2694
|
+
return undefined;
|
|
2695
|
+
}
|
|
2037
2696
|
if (hookFunction !== undefined) {
|
|
2038
2697
|
const index = arrayLastIndexOf(hooks[entryPoint], hookFunction);
|
|
2039
2698
|
return index === -1 ? undefined : arraySplice(hooks[entryPoint], index, 1)[0];
|
|
@@ -2041,6 +2700,9 @@ function createDOMPurify() {
|
|
|
2041
2700
|
return arrayPop(hooks[entryPoint]);
|
|
2042
2701
|
};
|
|
2043
2702
|
DOMPurify.removeHooks = function (entryPoint) {
|
|
2703
|
+
if (!objectHasOwnProperty(hooks, entryPoint)) {
|
|
2704
|
+
return;
|
|
2705
|
+
}
|
|
2044
2706
|
hooks[entryPoint] = [];
|
|
2045
2707
|
};
|
|
2046
2708
|
DOMPurify.removeAllHooks = function () {
|
|
@@ -2061,7 +2723,7 @@ function bindingGuard() {
|
|
|
2061
2723
|
};
|
|
2062
2724
|
}
|
|
2063
2725
|
|
|
2064
|
-
const css = `/*! tailwindcss v4.3.1 | MIT License | https://tailwindcss.com */@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,::backdrop,:after,:before{--tw-translate-x:0;--tw-translate-y:0;--tw-translate-z:0;--tw-scale-x:1;--tw-scale-y:1;--tw-scale-z:1;--tw-rotate-x:initial;--tw-rotate-y:initial;--tw-rotate-z:initial;--tw-skew-x:initial;--tw-skew-y:initial;--tw-space-y-reverse:0;--tw-space-x-reverse:0;--tw-divide-y-reverse:0;--tw-border-style:solid;--tw-gradient-position:initial;--tw-gradient-from:#0000;--tw-gradient-via:#0000;--tw-gradient-to:#0000;--tw-gradient-stops:initial;--tw-gradient-via-stops:initial;--tw-gradient-from-position:0%;--tw-gradient-via-position:50%;--tw-gradient-to-position:100%;--tw-leading:initial;--tw-font-weight:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000;--tw-outline-style:solid;--tw-blur:initial;--tw-brightness:initial;--tw-contrast:initial;--tw-grayscale:initial;--tw-hue-rotate:initial;--tw-invert:initial;--tw-opacity:initial;--tw-saturate:initial;--tw-sepia:initial;--tw-drop-shadow:initial;--tw-drop-shadow-color:initial;--tw-drop-shadow-alpha:100%;--tw-drop-shadow-size:initial;--tw-duration:initial;--tw-ease:initial;--tw-content:""}}}@layer theme;@layer base{*,::backdrop,:after,:before{border:0 solid;box-sizing:border-box;margin:0;padding:0}::file-selector-button{border:0 solid;box-sizing:border-box;margin:0;padding:0}:host,html{-webkit-text-size-adjust:100%;font-family:var(--default-font-family,var(--atomic-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"));font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);line-height:1.5;tab-size:4;-webkit-tap-highlight-color:transparent}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:var(--default-mono-font-family,var(--font-mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace));font-feature-settings:var(--default-mono-font-feature-settings,normal);font-size:1em;font-variation-settings:var(--default-mono-font-variation-settings,normal)}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-collapse:collapse;border-color:inherit;text-indent:0}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}menu,ol,ul{list-style:none}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}button,input,optgroup,select,textarea{background-color:#0000;border-radius:0;color:inherit;font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;opacity:1}::file-selector-button{background-color:#0000;border-radius:0;color:inherit;font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;opacity:1}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:currentColor}@supports (color:color-mix(in lab,red,red)){::placeholder{color:color-mix(in oklab,currentcolor 50%,transparent)}}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit,::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}::-webkit-calendar-picker-indicator{line-height:1}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){appearance:button}::file-selector-button{appearance:button}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}:host{display:block}:host,button,input,select{font-family:var(--atomic-font-family);font-size:var(--atomic-text-base);line-height:var(--tw-leading,var(--text-base--line-height,1.5));--tw-font-weight:var(--atomic-font-normal);font-weight:var(--atomic-font-normal)}button{cursor:pointer}:host(.atomic-hidden){display:none}.ripple{animation:ripple var(--animation-duration) linear;border-radius:50%;pointer-events:none;position:absolute;transform:scale(0)}.ripple-relative{position:relative}.ripple-parent{overflow:hidden}@keyframes ripple{to{opacity:0;transform:scale(4)}}}@layer components{.input-primary{background-color:var(--atomic-background);border-color:var(--atomic-neutral);border-radius:var(--atomic-border-radius);border-style:var(--tw-border-style);border-width:1px}@media (hover:hover){.input-primary:hover{border-color:var(--atomic-primary-light)}}.input-primary:focus-visible{border-color:var(--atomic-primary);--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--atomic-ring-primary);--tw-outline-style:none;outline-style:none}.btn-radio{appearance:none}.btn-radio:before{--tw-content:attr(value);content:var(--tw-content)}.btn-primary{background-color:var(--atomic-primary);border-radius:var(--atomic-border-radius);color:var(--atomic-on-primary)}@media (hover:hover){.btn-primary:hover{background-color:var(--atomic-primary-light)}}.btn-primary:focus-visible{background-color:var(--atomic-primary-light);--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--atomic-ring-primary);--tw-outline-style:none;outline-style:none}.btn-primary:disabled{background-color:var(--atomic-disabled);cursor:not-allowed}.btn-outline-primary{background-color:var(--atomic-background);border-color:var(--atomic-neutral);border-radius:var(--atomic-border-radius);border-style:var(--tw-border-style);border-width:1px;color:var(--atomic-primary)}@media (hover:hover){.btn-outline-primary:hover{border-color:var(--atomic-primary-light);color:var(--atomic-primary-light)}}.btn-outline-primary:focus-visible{border-color:var(--atomic-primary);color:var(--atomic-primary);--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--atomic-ring-primary);--tw-outline-style:none;outline-style:none}.btn-outline-primary:disabled{border-color:var(--atomic-neutral);color:var(--atomic-neutral);cursor:not-allowed}.btn-text-primary{background-color:var(--atomic-background);border-radius:var(--atomic-border-radius);color:var(--atomic-primary)}@media (hover:hover){.btn-text-primary:hover{background-color:var(--atomic-neutral-light)}}.btn-text-primary:focus-visible{background-color:var(--atomic-neutral-light);--tw-outline-style:none;outline-style:none}.btn-outline-neutral{background-color:var(--atomic-background);border-color:var(--atomic-neutral);border-radius:var(--atomic-border-radius);border-style:var(--tw-border-style);border-width:1px;color:var(--atomic-on-background)}@media (hover:hover){.btn-outline-neutral:hover{border-color:var(--atomic-primary);color:var(--atomic-primary)}}.btn-outline-neutral:focus-visible{border-color:var(--atomic-primary);color:var(--atomic-primary);--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--atomic-ring-primary);--tw-outline-style:none;outline-style:none}.btn-outline-neutral:disabled{border-color:var(--atomic-neutral);color:var(--atomic-on-background);cursor:not-allowed;opacity:.5}.btn-outline-bg-neutral{background-color:var(--atomic-background);border-color:var(--atomic-neutral);border-radius:var(--atomic-border-radius);border-style:var(--tw-border-style);border-width:1px;color:var(--atomic-on-background)}@media (hover:hover){.btn-outline-bg-neutral:hover{background-color:var(--atomic-neutral-light);border-color:var(--atomic-primary);color:var(--atomic-primary)}}.btn-outline-bg-neutral:focus-visible{background-color:var(--atomic-neutral-light);border-color:var(--atomic-primary);color:var(--atomic-primary);--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--atomic-ring-primary);--tw-outline-style:none;outline-style:none}.btn-outline-bg-neutral:disabled{border-color:var(--atomic-neutral);color:var(--atomic-on-background);cursor:not-allowed;opacity:.5}.btn-outline-bg-error{background-color:var(--atomic-background);border-color:var(--atomic-neutral);border-radius:var(--atomic-border-radius);border-style:var(--tw-border-style);border-width:1px;color:var(--atomic-on-background)}@media (hover:hover){.btn-outline-bg-error:hover{background-color:var(--atomic-neutral-light);border-color:var(--atomic-primary);color:var(--atomic-primary)}}.btn-outline-bg-error:focus-visible{background-color:var(--atomic-neutral-light);border-color:var(--atomic-primary);color:var(--atomic-primary);--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--atomic-ring-primary);--tw-outline-style:none;outline-style:none}.btn-outline-bg-error:disabled{border-color:var(--atomic-neutral);color:var(--atomic-on-background);cursor:not-allowed;opacity:.5}.btn-outline-error{background-color:var(--atomic-background);border-color:var(--atomic-neutral);border-radius:var(--atomic-border-radius);border-style:var(--tw-border-style);border-width:1px;color:var(--atomic-on-background)}@media (hover:hover){.btn-outline-error:hover{border-color:var(--atomic-error);color:var(--atomic-error)}}.btn-outline-error:focus-visible{border-color:var(--atomic-error);color:var(--atomic-error);--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--atomic-ring-primary);--tw-outline-style:none;outline-style:none}.btn-outline-error:disabled{border-color:var(--atomic-neutral);color:var(--atomic-on-background);cursor:not-allowed;opacity:.5}.btn-text-neutral{background-color:var(--atomic-background);border-radius:var(--atomic-border-radius);color:var(--atomic-on-background)}@media (hover:hover){.btn-text-neutral:hover{background-color:var(--atomic-neutral-light);color:var(--atomic-primary)}}.btn-text-neutral:focus-visible{background-color:var(--atomic-neutral-light);color:var(--atomic-primary);--tw-outline-style:none;outline-style:none}.btn-text-transparent{color:var(--atomic-on-background)}@media (hover:hover){.btn-text-transparent:hover{color:var(--atomic-primary-light)}}.btn-text-transparent:focus-visible{color:var(--atomic-primary-light)}.btn-square-neutral{background-color:var(--atomic-background);border-color:var(--atomic-neutral);border-style:var(--tw-border-style);border-width:1px;color:var(--atomic-on-background)}@media (hover:hover){.btn-square-neutral:hover{background-color:var(--atomic-neutral-light)}}.btn-square-neutral:focus-visible{background-color:var(--atomic-neutral-light);--tw-outline-style:none;outline-style:none}.btn-page{border-style:var(--tw-border-style);border-width:0;display:grid;font-size:var(--atomic-text-lg);height:calc(var(--spacing,.25rem)*10);line-height:var(--tw-leading,var(--text-lg--line-height,1.55556));place-items:center;width:calc(var(--spacing,.25rem)*10)}@media (hover:hover){.btn-page:hover{border-style:var(--tw-border-style);border-width:1px}}.btn-page:focus-visible{border-style:var(--tw-border-style);border-width:1px}.btn-page.selected{border-color:var(--atomic-primary);border-style:var(--tw-border-style);border-width:2px;--tw-font-weight:var(--atomic-font-bold);font-weight:var(--atomic-font-bold)}}@layer utilities{.\\@container{container-type:inline-size}.pointer-events-auto{pointer-events:auto}.pointer-events-none{pointer-events:none}.collapse{visibility:collapse}.invisible{visibility:hidden}.visible{visibility:visible}.sr-only{border-width:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;white-space:nowrap;width:1px}.absolute,.sr-only{position:absolute}.fixed{position:fixed}.relative{position:relative}.static{position:static}.sticky{position:sticky}.inset-0{inset:0}.-top-2{top:calc(var(--spacing,.25rem)*-2)}.-top-4{top:calc(var(--spacing,.25rem)*-4)}.top-0{top:0}.top-1\\/2{top:50%}.top-\\[4px\\]{top:4px}.top-full{top:100%}.top-px{top:1px}.-right-2{right:calc(var(--spacing,.25rem)*-2)}.right-0{right:0}.right-1{right:var(--spacing,.25rem)}.right-2{right:calc(var(--spacing,.25rem)*2)}.right-6{right:calc(var(--spacing,.25rem)*6)}.right-12{right:calc(var(--spacing,.25rem)*12)}.right-px{right:1px}.bottom-0{bottom:0}.bottom-1{bottom:var(--spacing,.25rem)}.bottom-2{bottom:calc(var(--spacing,.25rem)*2)}.bottom-px{bottom:1px}.left-0{left:0}.left-1{left:var(--spacing,.25rem)}.left-2{left:calc(var(--spacing,.25rem)*2)}.left-\\[15px\\]{left:15px}.isolate{isolation:isolate}.z-0{z-index:0}.z-1{z-index:1}.z-10{z-index:10}.z-9998{z-index:9998}.z-9999{z-index:9999}.order-last{order:9999}.col-span-2{grid-column:span 2/span 2}.container{width:100%}@media (min-width:1024px){.container{max-width:1024px}}@media (min-width:40rem){.container{max-width:40rem}}@media (min-width:48rem){.container{max-width:48rem}}@media (min-width:64rem){.container{max-width:64rem}}@media (min-width:80rem){.container{max-width:80rem}}@media (min-width:96rem){.container{max-width:96rem}}.container\\!{width:100%!important}@media (min-width:1024px){.container\\!{max-width:1024px!important}}@media (min-width:40rem){.container\\!{max-width:40rem!important}}@media (min-width:48rem){.container\\!{max-width:48rem!important}}@media (min-width:64rem){.container\\!{max-width:64rem!important}}@media (min-width:80rem){.container\\!{max-width:80rem!important}}@media (min-width:96rem){.container\\!{max-width:96rem!important}}.m-0{margin:0}.m-2{margin:calc(var(--spacing,.25rem)*2)}.mx-0{margin-inline:0}.mx-0\\.5{margin-inline:calc(var(--spacing,.25rem)*.5)}.mx-1{margin-inline:var(--spacing,.25rem)}.mx-6{margin-inline:calc(var(--spacing,.25rem)*6)}.mx-16{margin-inline:calc(var(--spacing,.25rem)*16)}.mx-auto{margin-inline:auto}.-my-2{margin-block:calc(var(--spacing,.25rem)*-2)}.my-2{margin-block:calc(var(--spacing,.25rem)*2)}.my-3{margin-block:calc(var(--spacing,.25rem)*3)}.my-4{margin-block:calc(var(--spacing,.25rem)*4)}.my-6{margin-block:calc(var(--spacing,.25rem)*6)}.my-auto{margin-block:auto}.mt-0{margin-top:0}.mt-1{margin-top:var(--spacing,.25rem)}.mt-1\\.5{margin-top:calc(var(--spacing,.25rem)*1.5)}.mt-2{margin-top:calc(var(--spacing,.25rem)*2)}.mt-2\\.5{margin-top:calc(var(--spacing,.25rem)*2.5)}.mt-3{margin-top:calc(var(--spacing,.25rem)*3)}.mt-4{margin-top:calc(var(--spacing,.25rem)*4)}.mt-6{margin-top:calc(var(--spacing,.25rem)*6)}.mt-7{margin-top:calc(var(--spacing,.25rem)*7)}.mt-8{margin-top:calc(var(--spacing,.25rem)*8)}.mt-10{margin-top:calc(var(--spacing,.25rem)*10)}.mt-px{margin-top:1px}.mr-0{margin-right:0}.mr-0\\.5{margin-right:calc(var(--spacing,.25rem)*.5)}.mr-1{margin-right:var(--spacing,.25rem)}.mr-1\\.5{margin-right:calc(var(--spacing,.25rem)*1.5)}.mr-2{margin-right:calc(var(--spacing,.25rem)*2)}.mr-3{margin-right:calc(var(--spacing,.25rem)*3)}.mr-6{margin-right:calc(var(--spacing,.25rem)*6)}.mr-auto{margin-right:auto}.mb-0{margin-bottom:0}.mb-1{margin-bottom:var(--spacing,.25rem)}.mb-2{margin-bottom:calc(var(--spacing,.25rem)*2)}.mb-3{margin-bottom:calc(var(--spacing,.25rem)*3)}.mb-4{margin-bottom:calc(var(--spacing,.25rem)*4)}.mb-6{margin-bottom:calc(var(--spacing,.25rem)*6)}.ml-0\\.5{margin-left:calc(var(--spacing,.25rem)*.5)}.ml-1{margin-left:var(--spacing,.25rem)}.ml-2{margin-left:calc(var(--spacing,.25rem)*2)}.ml-4{margin-left:calc(var(--spacing,.25rem)*4)}.ml-6{margin-left:calc(var(--spacing,.25rem)*6)}.ml-auto{margin-left:auto}.box-border{box-sizing:border-box}.box-content{box-sizing:content-box}.line-clamp-1{-webkit-line-clamp:1}.line-clamp-1,.line-clamp-2{-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.line-clamp-2{-webkit-line-clamp:2}.line-clamp-3{-webkit-line-clamp:3}.line-clamp-3,.line-clamp-4{-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.line-clamp-4{-webkit-line-clamp:4}.line-clamp-none{-webkit-line-clamp:unset;-webkit-box-orient:horizontal;display:block;overflow:visible}.block{display:block}.contents{display:contents}.flex{display:flex}.grid{display:grid}.hidden{display:none}.inline{display:inline}.inline-block{display:inline-block}.inline-flex{display:inline-flex}.table{display:table}.table-column{display:table-column}.aspect-square-\\[auto\\]{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){.aspect-square-\\[auto\\]{height:auto}}.aspect-square{aspect-ratio:1}.size-\\[27px\\]{height:27px;width:27px}.h-1{height:var(--spacing,.25rem)}.h-2{height:calc(var(--spacing,.25rem)*2)}.h-2\\.5{height:calc(var(--spacing,.25rem)*2.5)}.h-3{height:calc(var(--spacing,.25rem)*3)}.h-4{height:calc(var(--spacing,.25rem)*4)}.h-5{height:calc(var(--spacing,.25rem)*5)}.h-5\\/6{height:83.3333%}.h-6{height:calc(var(--spacing,.25rem)*6)}.h-7{height:calc(var(--spacing,.25rem)*7)}.h-8{height:calc(var(--spacing,.25rem)*8)}.h-9{height:calc(var(--spacing,.25rem)*9)}.h-10{height:calc(var(--spacing,.25rem)*10)}.h-12{height:calc(var(--spacing,.25rem)*12)}.h-\\[2\\.6rem\\]{height:2.6rem}.h-\\[9px\\]{height:9px}.h-auto{height:auto}.h-full{height:100%}.max-h-96{max-height:calc(var(--spacing,.25rem)*96)}.min-h-3{min-height:calc(var(--spacing,.25rem)*3)}.min-h-5{min-height:calc(var(--spacing,.25rem)*5)}.min-h-10{min-height:calc(var(--spacing,.25rem)*10)}.min-lines-2{min-height:calc(var(--line-height)*2)}.min-lines-3{min-height:calc(var(--line-height)*3)}.w-0\\.5{width:calc(var(--spacing,.25rem)*.5)}.w-1{width:var(--spacing,.25rem)}.w-1\\/2{width:50%}.w-2{width:calc(var(--spacing,.25rem)*2)}.w-2\\.5{width:calc(var(--spacing,.25rem)*2.5)}.w-3{width:calc(var(--spacing,.25rem)*3)}.w-3\\.5{width:calc(var(--spacing,.25rem)*3.5)}.w-3\\/5{width:60%}.w-4{width:calc(var(--spacing,.25rem)*4)}.w-5{width:calc(var(--spacing,.25rem)*5)}.w-5\\/6{width:83.3333%}.w-6{width:calc(var(--spacing,.25rem)*6)}.w-7{width:calc(var(--spacing,.25rem)*7)}.w-8{width:calc(var(--spacing,.25rem)*8)}.w-9{width:calc(var(--spacing,.25rem)*9)}.w-10{width:calc(var(--spacing,.25rem)*10)}.w-12{width:calc(var(--spacing,.25rem)*12)}.w-20{width:calc(var(--spacing,.25rem)*20)}.w-26{width:calc(var(--spacing,.25rem)*26)}.w-32{width:calc(var(--spacing,.25rem)*32)}.w-36{width:calc(var(--spacing,.25rem)*36)}.w-48{width:calc(var(--spacing,.25rem)*48)}.w-60{width:calc(var(--spacing,.25rem)*60)}.w-64{width:calc(var(--spacing,.25rem)*64)}.w-72{width:calc(var(--spacing,.25rem)*72)}.w-100{width:calc(var(--spacing,.25rem)*100)}.w-\\[2\\.6rem\\]{width:2.6rem}.w-\\[10px\\]{width:10px}.w-auto{width:auto}.w-fit{width:fit-content}.w-full{width:100%}.w-max{width:max-content}.w-px{width:1px}.max-w-4\\/5{max-width:80%}.max-w-60{max-width:calc(var(--spacing,.25rem)*60)}.max-w-\\[30ch\\]{max-width:30ch}.max-w-full{max-width:100%}.max-w-lg{max-width:var(--container-lg,32rem)}.max-w-max{max-width:max-content}.min-w-0{min-width:0}.min-w-10{min-width:calc(var(--spacing,.25rem)*10)}.min-w-20{min-width:calc(var(--spacing,.25rem)*20)}.min-w-24{min-width:calc(var(--spacing,.25rem)*24)}.min-w-full{min-width:100%}.flex-1{flex:1}.flex-none{flex:none}.flex-shrink{flex-shrink:1}.flex-shrink-0,.shrink-0{flex-shrink:0}.flex-grow,.grow{flex-grow:1}.basis-1\\/2{flex-basis:50%}.basis-8{flex-basis:calc(var(--spacing,.25rem)*8)}.-translate-x-1\\/2{--tw-translate-x:-50%}.-translate-x-1\\/2,.translate-x-1\\/2{translate:var(--tw-translate-x) var(--tw-translate-y)}.translate-x-1\\/2{--tw-translate-x:50%}.-translate-y-1\\/2{--tw-translate-y:-50%;translate:var(--tw-translate-x) var(--tw-translate-y)}.scale-75{--tw-scale-x:75%;--tw-scale-y:75%;--tw-scale-z:75%}.scale-100,.scale-75{scale:var(--tw-scale-x) var(--tw-scale-y)}.scale-100{--tw-scale-x:100%;--tw-scale-y:100%;--tw-scale-z:100%}.rotate-180{rotate:180deg}.transform{transform:var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,)}.animate-pulse{animation:var(--animate-pulse,pulse 2s cubic-bezier(.4,0,.6,1) infinite)}.animate-spin{animation:var(--animate-spin,spin 1s linear infinite)}.cursor-\\[inherit\\]{cursor:inherit}.cursor-pointer{cursor:pointer}.resize{resize:both}.resize-none{resize:none}.\\[scrollbar-gutter\\:stable_both-edges\\]{scrollbar-gutter:stable both-edges}.list-outside{list-style-position:outside}.list-decimal{list-style-type:decimal}.list-disc{list-style-type:disc}.list-none{list-style-type:none}.appearance-none{appearance:none}.grid-cols-\\[min-content_1fr\\]{grid-template-columns:min-content 1fr}.grid-cols-\\[min-content_auto\\]{grid-template-columns:min-content auto}.flex-col{flex-direction:column}.flex-row{flex-direction:row}.flex-nowrap{flex-wrap:nowrap}.flex-wrap{flex-wrap:wrap}.place-items-center{place-items:center}.content-center{align-content:center}.items-baseline{align-items:baseline}.items-center{align-items:center}.items-start{align-items:flex-start}.items-stretch{align-items:stretch}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.justify-end{justify-content:flex-end}.gap-0\\.5{gap:calc(var(--spacing,.25rem)*.5)}.gap-1{gap:var(--spacing,.25rem)}.gap-1\\.5{gap:calc(var(--spacing,.25rem)*1.5)}.gap-2{gap:calc(var(--spacing,.25rem)*2)}.gap-3{gap:calc(var(--spacing,.25rem)*3)}.gap-4{gap:calc(var(--spacing,.25rem)*4)}.gap-8{gap:calc(var(--spacing,.25rem)*8)}:where(.space-y-1>:not(:last-child)){--tw-space-y-reverse:0;margin-block-end:calc(var(--spacing,.25rem)*(1 - var(--tw-space-y-reverse)));margin-block-start:calc(var(--spacing,.25rem)*var(--tw-space-y-reverse))}.gap-x-1\\.5{column-gap:calc(var(--spacing,.25rem)*1.5)}.gap-x-2{column-gap:calc(var(--spacing,.25rem)*2)}.gap-x-4{column-gap:calc(var(--spacing,.25rem)*4)}:where(.space-x-1\\.5>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-end:calc(var(--spacing,.25rem)*1.5*(1 - var(--tw-space-x-reverse)));margin-inline-start:calc(var(--spacing,.25rem)*1.5*var(--tw-space-x-reverse))}.gap-y-0\\.5{row-gap:calc(var(--spacing,.25rem)*.5)}:where(.divide-y>:not(:last-child)){--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-bottom-width:calc(1px*(1 - var(--tw-divide-y-reverse)));border-top-style:var(--tw-border-style);border-top-width:calc(1px*var(--tw-divide-y-reverse))}:where(.divide-neutral>:not(:last-child)){border-color:var(--atomic-neutral)}.self-center{align-self:center}.self-start{align-self:flex-start}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-visible{overflow:visible}.overflow-x-auto{overflow-x:auto}.overflow-x-scroll{overflow-x:scroll}.overflow-y-auto{overflow-y:auto}.scroll-smooth{scroll-behavior:smooth}.rounded{border-radius:var(--atomic-border-radius)}.rounded-3xl{border-radius:var(--radius-3xl,1.5rem)}.rounded-full{border-radius:3.40282e+38px}.rounded-lg{border-radius:var(--atomic-border-radius-lg)}.rounded-md{border-radius:var(--atomic-border-radius-md)}.rounded-none{border-radius:0}.rounded-sm{border-radius:var(--atomic-border-radius)}.rounded-xl{border-radius:var(--atomic-border-radius-xl)}.rounded-tl-none{border-top-left-radius:0}.rounded-r-none{border-bottom-right-radius:0;border-top-right-radius:0}.border{border-style:var(--tw-border-style);border-width:1px}.border-0{border-style:var(--tw-border-style);border-width:0}.border-t{border-top-style:var(--tw-border-style);border-top-width:1px}.border-r{border-right-style:var(--tw-border-style);border-right-width:1px}.border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-l{border-left-style:var(--tw-border-style);border-left-width:1px}.border-none{--tw-border-style:none;border-style:none}.border-solid{--tw-border-style:solid;border-style:solid}.border-error{border-color:var(--atomic-error)}.border-gray-200{border-color:var(--color-gray-200,oklch(92.8% .006 264.531))}.border-neutral{border-color:var(--atomic-neutral)}.border-neutral-dark{border-color:var(--atomic-neutral-dark)}.border-neutral-dim{border-color:var(--atomic-neutral-dim)}.border-primary{border-color:var(--atomic-primary)}.border-primary-light{border-color:var(--atomic-primary-light)}.border-b-neutral-dim{border-bottom-color:var(--atomic-neutral-dim)}.border-l-neutral-dim{border-left-color:var(--atomic-neutral-dim)}.bg-\\[\\#F1F2FF\\]{background-color:#f1f2ff}.bg-\\[rgba\\(40\\,40\\,40\\,0\\.8\\)\\]{background-color:#282828cc}.bg-background{background-color:var(--atomic-background)}.bg-error{background-color:var(--atomic-error)}.bg-gray-50{background-color:var(--color-gray-50,oklch(98.5% .002 247.839))}.bg-neutral{background-color:var(--atomic-neutral)}.bg-neutral-dark{background-color:var(--atomic-neutral-dark)}.bg-neutral-dim{background-color:var(--atomic-neutral-dim)}.bg-neutral-light{background-color:var(--atomic-neutral-light)}.bg-primary{background-color:var(--atomic-primary)}.bg-success{background-color:var(--atomic-success)}.bg-transparent{background-color:#0000}.bg-white{background-color:var(--color-white,#fff)}.bg-linear-to-l{--tw-gradient-position:to left}@supports (background-image:linear-gradient(in lab,red,red)){.bg-linear-to-l{--tw-gradient-position:to left in oklab}}.bg-linear-to-l{background-image:linear-gradient(var(--tw-gradient-stops))}.bg-linear-to-r{--tw-gradient-position:to right}@supports (background-image:linear-gradient(in lab,red,red)){.bg-linear-to-r{--tw-gradient-position:to right in oklab}}.bg-linear-to-r{background-image:linear-gradient(var(--tw-gradient-stops))}.from-background\\/60{--tw-gradient-from:#fff9}@supports (color:color-mix(in lab,red,red)){.from-background\\/60{--tw-gradient-from:color-mix(in oklab,var(--atomic-background) 60%,transparent)}}.from-background\\/60{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from) var(--tw-gradient-from-position),var(--tw-gradient-to) var(--tw-gradient-to-position))}.from-more-results-progress-bar-color-from{--tw-gradient-from:var(--atomic-more-results-progress-bar-color-from,var(--atomic-primary-dark));--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from) var(--tw-gradient-from-position),var(--tw-gradient-to) var(--tw-gradient-to-position))}.to-more-results-progress-bar-color-to{--tw-gradient-to:var(--atomic-more-results-progress-bar-color-to,var(--atomic-primary-light));--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from) var(--tw-gradient-from-position),var(--tw-gradient-to) var(--tw-gradient-to-position))}.fill-current{fill:currentColor}.stroke-\\[1\\.25\\]{stroke-width:1.25px}.object-contain{object-fit:contain}.p-0{padding:0}.p-1{padding:var(--spacing,.25rem)}.p-2{padding:calc(var(--spacing,.25rem)*2)}.p-2\\.5{padding:calc(var(--spacing,.25rem)*2.5)}.p-3{padding:calc(var(--spacing,.25rem)*3)}.p-3\\.5{padding:calc(var(--spacing,.25rem)*3.5)}.p-4{padding:calc(var(--spacing,.25rem)*4)}.p-6{padding:calc(var(--spacing,.25rem)*6)}.p-7{padding:calc(var(--spacing,.25rem)*7)}.p-8{padding:calc(var(--spacing,.25rem)*8)}.px-1{padding-inline:var(--spacing,.25rem)}.px-2{padding-inline:calc(var(--spacing,.25rem)*2)}.px-2\\.5{padding-inline:calc(var(--spacing,.25rem)*2.5)}.px-3{padding-inline:calc(var(--spacing,.25rem)*3)}.px-4{padding-inline:calc(var(--spacing,.25rem)*4)}.px-6{padding-inline:calc(var(--spacing,.25rem)*6)}.px-7{padding-inline:calc(var(--spacing,.25rem)*7)}.px-9{padding-inline:calc(var(--spacing,.25rem)*9)}.py-0\\.5{padding-block:calc(var(--spacing,.25rem)*.5)}.py-1{padding-block:var(--spacing,.25rem)}.py-1\\.5{padding-block:calc(var(--spacing,.25rem)*1.5)}.py-2{padding-block:calc(var(--spacing,.25rem)*2)}.py-2\\.5{padding-block:calc(var(--spacing,.25rem)*2.5)}.py-3{padding-block:calc(var(--spacing,.25rem)*3)}.py-3\\.5{padding-block:calc(var(--spacing,.25rem)*3.5)}.py-4{padding-block:calc(var(--spacing,.25rem)*4)}.py-4\\.5{padding-block:calc(var(--spacing,.25rem)*4.5)}.py-5{padding-block:calc(var(--spacing,.25rem)*5)}.py-6{padding-block:calc(var(--spacing,.25rem)*6)}.pt-0\\.5{padding-top:calc(var(--spacing,.25rem)*.5)}.pt-2{padding-top:calc(var(--spacing,.25rem)*2)}.pt-6{padding-top:calc(var(--spacing,.25rem)*6)}.pt-8{padding-top:calc(var(--spacing,.25rem)*8)}.pr-2{padding-right:calc(var(--spacing,.25rem)*2)}.pr-4{padding-right:calc(var(--spacing,.25rem)*4)}.pr-6{padding-right:calc(var(--spacing,.25rem)*6)}.pr-24{padding-right:calc(var(--spacing,.25rem)*24)}.pb-1{padding-bottom:var(--spacing,.25rem)}.pb-3{padding-bottom:calc(var(--spacing,.25rem)*3)}.pb-4{padding-bottom:calc(var(--spacing,.25rem)*4)}.pb-5{padding-bottom:calc(var(--spacing,.25rem)*5)}.pb-6{padding-bottom:calc(var(--spacing,.25rem)*6)}.pl-0{padding-left:0}.pl-1{padding-left:var(--spacing,.25rem)}.pl-2{padding-left:calc(var(--spacing,.25rem)*2)}.pl-3{padding-left:calc(var(--spacing,.25rem)*3)}.pl-7{padding-left:calc(var(--spacing,.25rem)*7)}.pl-9{padding-left:calc(var(--spacing,.25rem)*9)}.pl-10{padding-left:calc(var(--spacing,.25rem)*10)}.text-center{text-align:center}.text-left{text-align:left}.align-baseline{vertical-align:baseline}.align-bottom{vertical-align:bottom}.align-middle{vertical-align:middle}.font-sans{font-family:var(--atomic-font-family)}.set-font-size-sm{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}.text-2xl{font-size:var(--atomic-text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height,1.33333))}.text-base{font-size:var(--atomic-text-base);line-height:var(--tw-leading,var(--text-base--line-height,1.5))}.text-lg{font-size:var(--atomic-text-lg);line-height:var(--tw-leading,var(--text-lg--line-height,1.55556))}.text-sm{font-size:var(--atomic-text-sm);line-height:var(--tw-leading,var(--text-sm--line-height,1.42857))}.text-xl{font-size:var(--atomic-text-xl);line-height:var(--tw-leading,var(--text-xl--line-height,1.4))}.text-xs{line-height:var(--tw-leading,var(--text-xs--line-height,1.33333))}.text-xs,.text-xs\\/\\[1rem\\]{font-size:var(--text-xs,.75rem)}.text-xs\\/\\[1rem\\]{line-height:1rem}.leading-4{--tw-leading:calc(var(--spacing,.25rem)*4);line-height:calc(var(--spacing,.25rem)*4)}.leading-5{--tw-leading:calc(var(--spacing,.25rem)*5);line-height:calc(var(--spacing,.25rem)*5)}.leading-6{--tw-leading:calc(var(--spacing,.25rem)*6);line-height:calc(var(--spacing,.25rem)*6)}.leading-8{--tw-leading:calc(var(--spacing,.25rem)*8);line-height:calc(var(--spacing,.25rem)*8)}.leading-10{--tw-leading:calc(var(--spacing,.25rem)*10);line-height:calc(var(--spacing,.25rem)*10)}.leading-\\[1\\.5\\]{--tw-leading:1.5;line-height:1.5}.leading-\\[calc\\(1\\/\\.75\\)\\]{--tw-leading:1.33333;line-height:1.33333}.leading-\\[var\\(--line-height\\)\\]{--tw-leading:var(--line-height);line-height:var(--line-height)}.leading-none{--tw-leading:1;line-height:1}.font-bold{--tw-font-weight:var(--atomic-font-bold);font-weight:var(--atomic-font-bold)}.font-light{--tw-font-weight:var(--font-weight-light,300);font-weight:var(--font-weight-light,300)}.font-medium{--tw-font-weight:var(--font-weight-medium,500);font-weight:var(--font-weight-medium,500)}.font-normal{--tw-font-weight:var(--atomic-font-normal);font-weight:var(--atomic-font-normal)}.font-semibold{--tw-font-weight:var(--font-weight-semibold,600);font-weight:var(--font-weight-semibold,600)}.break-words{overflow-wrap:break-word}.break-all{word-break:break-all}.break-keep{word-break:keep-all}.text-ellipsis{text-overflow:ellipsis}.whitespace-normal{white-space:normal}.whitespace-nowrap{white-space:nowrap}.whitespace-pre-wrap{white-space:pre-wrap}.text-\\[\\#54698D\\]{color:#54698d}.text-\\[inherit\\]{color:inherit}.text-black{color:var(--color-black,#000)}.text-error{color:var(--atomic-error)}.text-gray-500{color:var(--color-gray-500,oklch(55.1% .027 264.364))}.text-gray-600{color:var(--color-gray-600,oklch(44.6% .03 256.802))}.text-gray-700{color:var(--color-gray-700,oklch(37.3% .034 259.733))}.text-gray-900{color:var(--color-gray-900,oklch(21% .034 264.665))}.text-green-600{color:var(--color-green-600,oklch(62.7% .194 149.214))}.text-inline-code{color:var(--atomic-inline-code)}.text-neutral{color:var(--atomic-neutral)}.text-neutral-dark{color:var(--atomic-neutral-dark)}.text-on-background{color:var(--atomic-on-background)}.text-on-primary{color:var(--atomic-on-primary)}.text-primary{color:var(--atomic-primary)}.text-primary-light{color:var(--atomic-primary-light)}.text-rating-icon-active{color:var(--atomic-rating-icon-active-color,#f6ce3c)}.text-rating-icon-inactive{color:var(--atomic-rating-icon-inactive-color,var(--atomic-neutral))}.text-red-600{color:var(--color-red-600,oklch(57.7% .245 27.325))}.text-success{color:var(--atomic-success)}.text-transparent{color:#0000}.capitalize{text-transform:capitalize}.lowercase{text-transform:lowercase}.italic{font-style:italic}.line-through{text-decoration-line:line-through}.placeholder-neutral-dark::placeholder{color:var(--atomic-neutral-dark)}.opacity-0{opacity:0}.opacity-50{opacity:.5}.opacity-60{opacity:.6}.opacity-80{opacity:.8}.shadow{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a)}.shadow,.shadow-inner-primary{box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-inner-primary{--tw-shadow:inset 0 0 0 1px var(--tw-shadow-color,var(--atomic-primary))}.shadow-lg{--tw-shadow:0px 2px 8px var(--tw-shadow-color,#e5e8e8bf)}.shadow-lg,.shadow-t-lg{box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-t-lg{--tw-shadow:0px -2px 8px var(--tw-shadow-color,#e5e8e8bf)}.ring,.ring-1{--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor)}.ring,.ring-1,.ring-3{box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring-3{--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor)}.ring-primary{--tw-ring-color:var(--atomic-primary)}.ring-ring-primary{--tw-ring-color:var(--atomic-ring-primary)}.outline{outline-width:1px}.outline,.outline-2{outline-style:var(--tw-outline-style)}.outline-2{outline-width:2px}.outline-error{outline-color:var(--atomic-error)}.outline-neutral{outline-color:var(--atomic-neutral)}.outline-primary{outline-color:var(--atomic-primary)}.blur{--tw-blur:blur(8px)}.blur,.grayscale{filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}.grayscale{--tw-grayscale:grayscale(100%)}.invert{--tw-invert:invert(100%)}.filter,.invert{filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}.transition{transition-duration:var(--tw-duration,var(--default-transition-duration,.15s));transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function,cubic-bezier(.4,0,.2,1)))}.transition-\\[visibility\\]{transition-duration:var(--tw-duration,var(--default-transition-duration,.15s));transition-property:visibility;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function,cubic-bezier(.4,0,.2,1)))}.transition-all{transition-duration:var(--tw-duration,var(--default-transition-duration,.15s));transition-property:all;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function,cubic-bezier(.4,0,.2,1)))}.transition-colors{transition-duration:var(--tw-duration,var(--default-transition-duration,.15s));transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function,cubic-bezier(.4,0,.2,1)))}.transition-opacity{transition-duration:var(--tw-duration,var(--default-transition-duration,.15s));transition-property:opacity;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function,cubic-bezier(.4,0,.2,1)))}.duration-150{--tw-duration:.15s;transition-duration:.15s}.duration-200{--tw-duration:.2s;transition-duration:.2s}.duration-300{--tw-duration:.3s;transition-duration:.3s}.duration-500{--tw-duration:.5s;transition-duration:.5s}.ease-in-out{--tw-ease:var(--ease-in-out,cubic-bezier(.4,0,.2,1));transition-timing-function:var(--ease-in-out,cubic-bezier(.4,0,.2,1))}.outline-none{--tw-outline-style:none;outline-style:none}.\\[grid-area\\:modal\\]{grid-area:modal}@media (hover:hover){.group-hover\\:visible:is(:where(.group):hover *){visibility:visible}.group-hover\\:bg-neutral-dark:is(:where(.group):hover *){background-color:var(--atomic-neutral-dark)}.group-hover\\:text-error:is(:where(.group):hover *){color:var(--atomic-error)}.group-hover\\:text-primary:is(:where(.group):hover *){color:var(--atomic-primary)}.group-hover\\:text-primary-light:is(:where(.group):hover *){color:var(--atomic-primary-light)}}.group-focus\\:text-primary:is(:where(.group):focus *){color:var(--atomic-primary)}.group-focus\\:text-primary-light:is(:where(.group):focus *){color:var(--atomic-primary-light)}.group-focus-visible\\:text-error:is(:where(.group):focus-visible *){color:var(--atomic-error)}.group-focus-visible\\:text-primary:is(:where(.group):focus-visible *){color:var(--atomic-primary)}.peer-focus-within\\:border-primary-light:is(:where(.peer):focus-within~*){border-color:var(--atomic-primary-light)}.peer-focus-within\\:text-primary-light:is(:where(.peer):focus-within~*){color:var(--atomic-primary-light)}@media (hover:hover){.peer-hover\\:border-primary-light:is(:where(.peer):hover~*){border-color:var(--atomic-primary-light)}.peer-hover\\:text-error:is(:where(.peer):hover~*){color:var(--atomic-error)}.peer-hover\\:text-primary-light:is(:where(.peer):hover~*){color:var(--atomic-primary-light)}}.before\\:absolute:before{content:var(--tw-content);position:absolute}.before\\:top-\\[-8px\\]:before{content:var(--tw-content);top:-8px}.before\\:left-0:before{content:var(--tw-content);left:0}.before\\:inline:before{content:var(--tw-content);display:inline}.before\\:h-\\[8px\\]:before{content:var(--tw-content);height:8px}.before\\:w-px:before{content:var(--tw-content);width:1px}.before\\:bg-neutral:before{background-color:var(--atomic-neutral);content:var(--tw-content)}.before\\:transition-colors:before{content:var(--tw-content);transition-duration:var(--tw-duration,var(--default-transition-duration,.15s));transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function,cubic-bezier(.4,0,.2,1)))}.before\\:duration-150:before{content:var(--tw-content);--tw-duration:.15s;transition-duration:.15s}.before\\:content-\\[\\'\\'\\]:before{--tw-content:"";content:var(--tw-content)}.before\\:content-\\[\\'\\,\\\\00a0\\'\\]:before{--tw-content:", ";content:var(--tw-content)}@media (hover:hover){.group-hover\\:before\\:bg-neutral-dark:is(:where(.group):hover *):before{background-color:var(--atomic-neutral-dark);content:var(--tw-content)}}.after\\:absolute:after{content:var(--tw-content);position:absolute}.after\\:-bottom-0\\.5:after{bottom:calc(var(--spacing,.25rem)*-.5);content:var(--tw-content)}.after\\:bottom-\\[-8px\\]:after{bottom:-8px;content:var(--tw-content)}.after\\:left-0:after{content:var(--tw-content);left:0}.after\\:block:after{content:var(--tw-content);display:block}.after\\:h-1:after{content:var(--tw-content);height:var(--spacing,.25rem)}.after\\:h-\\[8px\\]:after{content:var(--tw-content);height:8px}.after\\:w-full:after{content:var(--tw-content);width:100%}.after\\:w-px:after{content:var(--tw-content);width:1px}.after\\:rounded:after{border-radius:var(--atomic-border-radius);content:var(--tw-content)}.after\\:bg-neutral:after{background-color:var(--atomic-neutral);content:var(--tw-content)}.after\\:bg-primary:after{background-color:var(--atomic-primary);content:var(--tw-content)}.after\\:transition-colors:after{content:var(--tw-content);transition-duration:var(--tw-duration,var(--default-transition-duration,.15s));transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function,cubic-bezier(.4,0,.2,1)))}.after\\:duration-150:after{content:var(--tw-content);--tw-duration:.15s;transition-duration:.15s}.after\\:content-\\[\\'\\'\\]:after{--tw-content:"";content:var(--tw-content)}@media (hover:hover){.group-hover\\:after\\:bg-neutral-dark:is(:where(.group):hover *):after{background-color:var(--atomic-neutral-dark);content:var(--tw-content)}}.focus-within\\:border-disabled:focus-within{border-color:var(--atomic-disabled)}.focus-within\\:border-primary:focus-within{border-color:var(--atomic-primary)}.focus-within\\:ring-3:focus-within{--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-within\\:ring-neutral:focus-within{--tw-ring-color:var(--atomic-neutral)}.focus-within\\:ring-ring-primary:focus-within{--tw-ring-color:var(--atomic-ring-primary)}@media (hover:hover){.hover\\:border:hover{border-style:var(--tw-border-style);border-width:1px}.hover\\:border-error:hover{border-color:var(--atomic-error)}.hover\\:border-primary-light:hover{border-color:var(--atomic-primary-light)}.hover\\:bg-error:hover{background-color:var(--atomic-error)}.hover\\:bg-neutral-light:hover{background-color:var(--atomic-neutral-light)}.hover\\:bg-primary-light:hover{background-color:var(--atomic-primary-light)}.hover\\:bg-transparent:hover{background-color:#0000}.hover\\:fill-white:hover{fill:var(--color-white,#fff)}.hover\\:text-error:hover{color:var(--atomic-error)}.hover\\:text-primary:hover{color:var(--atomic-primary)}.hover\\:text-primary-light:hover{color:var(--atomic-primary-light)}.hover\\:text-success:hover{color:var(--atomic-success)}.hover\\:underline:hover{text-decoration-line:underline}.hover\\:opacity-100:hover{opacity:1}.hover\\:shadow-sm:hover{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}}.focus\\:opacity-100:focus{opacity:1}.focus\\:outline-hidden:focus{--tw-outline-style:none;outline-style:none}@media (forced-colors:active){.focus\\:outline-hidden:focus{outline:2px solid #0000;outline-offset:2px}}.focus-visible\\:border:focus-visible{border-style:var(--tw-border-style);border-width:1px}.focus-visible\\:border-error:focus-visible{border-color:var(--atomic-error)}.focus-visible\\:border-primary:focus-visible{border-color:var(--atomic-primary)}.focus-visible\\:border-primary-light:focus-visible{border-color:var(--atomic-primary-light)}.focus-visible\\:bg-error:focus-visible{background-color:var(--atomic-error)}.focus-visible\\:bg-neutral-light:focus-visible{background-color:var(--atomic-neutral-light)}.focus-visible\\:bg-primary-light:focus-visible{background-color:var(--atomic-primary-light)}.focus-visible\\:text-primary:focus-visible{color:var(--atomic-primary)}.focus-visible\\:text-primary-light:focus-visible{color:var(--atomic-primary-light)}.focus-visible\\:underline:focus-visible{text-decoration-line:underline}.focus-visible\\:ring-2:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-visible\\:ring-primary:focus-visible{--tw-ring-color:var(--atomic-primary)}.focus-visible\\:ring-offset-2:focus-visible{--tw-ring-offset-width:2px;--tw-ring-offset-shadow:var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)}.focus-visible\\:outline-none:focus-visible{--tw-outline-style:none;outline-style:none}.disabled\\:bg-primary\\/60:disabled{background-color:#126ce099}@supports (color:color-mix(in lab,red,red)){.disabled\\:bg-primary\\/60:disabled{background-color:color-mix(in oklab,var(--atomic-primary) 60%,transparent)}}.disabled\\:opacity-100:disabled{opacity:1}@media (min-width:1024px){.desktop\\:mt-2{margin-top:calc(var(--spacing,.25rem)*2)}}@media (min-width:40rem){.sm\\:px-6{padding-inline:calc(var(--spacing,.25rem)*6)}}.\\[part\\=\\"breadcrumb-button\\"\\]\\:visible:is(){visibility:visible}}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-scale-x{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-y{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-z{syntax:"*";inherits:false;initial-value:1}@property --tw-rotate-x{syntax:"*";inherits:false}@property --tw-rotate-y{syntax:"*";inherits:false}@property --tw-rotate-z{syntax:"*";inherits:false}@property --tw-skew-x{syntax:"*";inherits:false}@property --tw-skew-y{syntax:"*";inherits:false}@property --tw-space-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-space-x-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-divide-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-gradient-position{syntax:"*";inherits:false}@property --tw-gradient-from{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-via{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-to{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-stops{syntax:"*";inherits:false}@property --tw-gradient-via-stops{syntax:"*";inherits:false}@property --tw-gradient-from-position{syntax:"<length-percentage>";inherits:false;initial-value:0%}@property --tw-gradient-via-position{syntax:"<length-percentage>";inherits:false;initial-value:50%}@property --tw-gradient-to-position{syntax:"<length-percentage>";inherits:false;initial-value:100%}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-outline-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-drop-shadow-color{syntax:"*";inherits:false}@property --tw-drop-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-drop-shadow-size{syntax:"*";inherits:false}@property --tw-duration{syntax:"*";inherits:false}@property --tw-ease{syntax:"*";inherits:false}@property --tw-content{syntax:"*";inherits:false;initial-value:""}@keyframes spin{to{transform:rotate(1turn)}}@keyframes pulse{50%{opacity:.5}}`;
|
|
2726
|
+
const css = `/*! tailwindcss v4.3.2 | MIT License | https://tailwindcss.com */@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,::backdrop,:after,:before{--tw-translate-x:0;--tw-translate-y:0;--tw-translate-z:0;--tw-scale-x:1;--tw-scale-y:1;--tw-scale-z:1;--tw-rotate-x:initial;--tw-rotate-y:initial;--tw-rotate-z:initial;--tw-skew-x:initial;--tw-skew-y:initial;--tw-space-y-reverse:0;--tw-space-x-reverse:0;--tw-divide-y-reverse:0;--tw-border-style:solid;--tw-gradient-position:initial;--tw-gradient-from:#0000;--tw-gradient-via:#0000;--tw-gradient-to:#0000;--tw-gradient-stops:initial;--tw-gradient-via-stops:initial;--tw-gradient-from-position:0%;--tw-gradient-via-position:50%;--tw-gradient-to-position:100%;--tw-leading:initial;--tw-font-weight:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000;--tw-outline-style:solid;--tw-blur:initial;--tw-brightness:initial;--tw-contrast:initial;--tw-grayscale:initial;--tw-hue-rotate:initial;--tw-invert:initial;--tw-opacity:initial;--tw-saturate:initial;--tw-sepia:initial;--tw-drop-shadow:initial;--tw-drop-shadow-color:initial;--tw-drop-shadow-alpha:100%;--tw-drop-shadow-size:initial;--tw-duration:initial;--tw-ease:initial;--tw-content:""}}}@layer theme;@layer base{*,::backdrop,:after,:before{border:0 solid;box-sizing:border-box;margin:0;padding:0}::file-selector-button{border:0 solid;box-sizing:border-box;margin:0;padding:0}:host,html{-webkit-text-size-adjust:100%;font-family:var(--default-font-family,var(--atomic-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"));font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);line-height:1.5;tab-size:4;-webkit-tap-highlight-color:transparent}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:var(--default-mono-font-family,var(--font-mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace));font-feature-settings:var(--default-mono-font-feature-settings,normal);font-size:1em;font-variation-settings:var(--default-mono-font-variation-settings,normal)}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-collapse:collapse;border-color:inherit;text-indent:0}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}menu,ol,ul{list-style:none}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}button,input,optgroup,select,textarea{background-color:#0000;border-radius:0;color:inherit;font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;opacity:1}::file-selector-button{background-color:#0000;border-radius:0;color:inherit;font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;opacity:1}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:currentColor}@supports (color:color-mix(in lab,red,red)){::placeholder{color:color-mix(in oklab,currentcolor 50%,transparent)}}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit,::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}::-webkit-calendar-picker-indicator{line-height:1}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){appearance:button}::file-selector-button{appearance:button}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}:host{display:block}:host,button,input,select{font-family:var(--atomic-font-family);font-size:var(--atomic-text-base);line-height:var(--tw-leading,var(--text-base--line-height,1.5));--tw-font-weight:var(--atomic-font-normal);font-weight:var(--atomic-font-normal)}button{cursor:pointer}:host(.atomic-hidden){display:none}.ripple{animation:ripple var(--animation-duration) linear;border-radius:50%;pointer-events:none;position:absolute;transform:scale(0)}.ripple-relative{position:relative}.ripple-parent{overflow:hidden}@keyframes ripple{to{opacity:0;transform:scale(4)}}}@layer components{.input-primary{background-color:var(--atomic-background);border-color:var(--atomic-neutral);border-radius:var(--atomic-border-radius);border-style:var(--tw-border-style);border-width:1px}@media (hover:hover){.input-primary:hover{border-color:var(--atomic-primary-light)}}.input-primary:focus-visible{border-color:var(--atomic-primary);--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--atomic-ring-primary);--tw-outline-style:none;outline-style:none}.btn-radio{appearance:none}.btn-radio:before{--tw-content:attr(value);content:var(--tw-content)}.btn-primary{background-color:var(--atomic-primary);border-radius:var(--atomic-border-radius);color:var(--atomic-on-primary)}@media (hover:hover){.btn-primary:hover{background-color:var(--atomic-primary-light)}}.btn-primary:focus-visible{background-color:var(--atomic-primary-light);--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--atomic-ring-primary);--tw-outline-style:none;outline-style:none}.btn-primary:disabled{background-color:var(--atomic-disabled);cursor:not-allowed}.btn-outline-primary{background-color:var(--atomic-background);border-color:var(--atomic-neutral);border-radius:var(--atomic-border-radius);border-style:var(--tw-border-style);border-width:1px;color:var(--atomic-primary)}@media (hover:hover){.btn-outline-primary:hover{border-color:var(--atomic-primary-light);color:var(--atomic-primary-light)}}.btn-outline-primary:focus-visible{border-color:var(--atomic-primary);color:var(--atomic-primary);--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--atomic-ring-primary);--tw-outline-style:none;outline-style:none}.btn-outline-primary:disabled{border-color:var(--atomic-neutral);color:var(--atomic-neutral);cursor:not-allowed}.btn-text-primary{background-color:var(--atomic-background);border-radius:var(--atomic-border-radius);color:var(--atomic-primary)}@media (hover:hover){.btn-text-primary:hover{background-color:var(--atomic-neutral-light)}}.btn-text-primary:focus-visible{background-color:var(--atomic-neutral-light);--tw-outline-style:none;outline-style:none}.btn-outline-neutral{background-color:var(--atomic-background);border-color:var(--atomic-neutral);border-radius:var(--atomic-border-radius);border-style:var(--tw-border-style);border-width:1px;color:var(--atomic-on-background)}@media (hover:hover){.btn-outline-neutral:hover{border-color:var(--atomic-primary);color:var(--atomic-primary)}}.btn-outline-neutral:focus-visible{border-color:var(--atomic-primary);color:var(--atomic-primary);--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--atomic-ring-primary);--tw-outline-style:none;outline-style:none}.btn-outline-neutral:disabled{border-color:var(--atomic-neutral);color:var(--atomic-on-background);cursor:not-allowed;opacity:.5}.btn-outline-bg-neutral{background-color:var(--atomic-background);border-color:var(--atomic-neutral);border-radius:var(--atomic-border-radius);border-style:var(--tw-border-style);border-width:1px;color:var(--atomic-on-background)}@media (hover:hover){.btn-outline-bg-neutral:hover{background-color:var(--atomic-neutral-light);border-color:var(--atomic-primary);color:var(--atomic-primary)}}.btn-outline-bg-neutral:focus-visible{background-color:var(--atomic-neutral-light);border-color:var(--atomic-primary);color:var(--atomic-primary);--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--atomic-ring-primary);--tw-outline-style:none;outline-style:none}.btn-outline-bg-neutral:disabled{border-color:var(--atomic-neutral);color:var(--atomic-on-background);cursor:not-allowed;opacity:.5}.btn-outline-bg-error{background-color:var(--atomic-background);border-color:var(--atomic-neutral);border-radius:var(--atomic-border-radius);border-style:var(--tw-border-style);border-width:1px;color:var(--atomic-on-background)}@media (hover:hover){.btn-outline-bg-error:hover{background-color:var(--atomic-neutral-light);border-color:var(--atomic-primary);color:var(--atomic-primary)}}.btn-outline-bg-error:focus-visible{background-color:var(--atomic-neutral-light);border-color:var(--atomic-primary);color:var(--atomic-primary);--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--atomic-ring-primary);--tw-outline-style:none;outline-style:none}.btn-outline-bg-error:disabled{border-color:var(--atomic-neutral);color:var(--atomic-on-background);cursor:not-allowed;opacity:.5}.btn-outline-error{background-color:var(--atomic-background);border-color:var(--atomic-neutral);border-radius:var(--atomic-border-radius);border-style:var(--tw-border-style);border-width:1px;color:var(--atomic-on-background)}@media (hover:hover){.btn-outline-error:hover{border-color:var(--atomic-error);color:var(--atomic-error)}}.btn-outline-error:focus-visible{border-color:var(--atomic-error);color:var(--atomic-error);--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--atomic-ring-primary);--tw-outline-style:none;outline-style:none}.btn-outline-error:disabled{border-color:var(--atomic-neutral);color:var(--atomic-on-background);cursor:not-allowed;opacity:.5}.btn-text-neutral{background-color:var(--atomic-background);border-radius:var(--atomic-border-radius);color:var(--atomic-on-background)}@media (hover:hover){.btn-text-neutral:hover{background-color:var(--atomic-neutral-light);color:var(--atomic-primary)}}.btn-text-neutral:focus-visible{background-color:var(--atomic-neutral-light);color:var(--atomic-primary);--tw-outline-style:none;outline-style:none}.btn-text-transparent{color:var(--atomic-on-background)}@media (hover:hover){.btn-text-transparent:hover{color:var(--atomic-primary-light)}}.btn-text-transparent:focus-visible{color:var(--atomic-primary-light)}.btn-square-neutral{background-color:var(--atomic-background);border-color:var(--atomic-neutral);border-style:var(--tw-border-style);border-width:1px;color:var(--atomic-on-background)}@media (hover:hover){.btn-square-neutral:hover{background-color:var(--atomic-neutral-light)}}.btn-square-neutral:focus-visible{background-color:var(--atomic-neutral-light);--tw-outline-style:none;outline-style:none}.btn-page{border-style:var(--tw-border-style);border-width:0;display:grid;font-size:var(--atomic-text-lg);height:calc(var(--spacing,.25rem)*10);line-height:var(--tw-leading,var(--text-lg--line-height,1.55556));place-items:center;width:calc(var(--spacing,.25rem)*10)}@media (hover:hover){.btn-page:hover{border-style:var(--tw-border-style);border-width:1px}}.btn-page:focus-visible{border-style:var(--tw-border-style);border-width:1px}.btn-page.selected{border-color:var(--atomic-primary);border-style:var(--tw-border-style);border-width:2px;--tw-font-weight:var(--atomic-font-bold);font-weight:var(--atomic-font-bold)}}@layer utilities{.\\@container{container-type:inline-size}.pointer-events-auto{pointer-events:auto}.pointer-events-none{pointer-events:none}.collapse{visibility:collapse}.invisible{visibility:hidden}.visible{visibility:visible}.sr-only{border-width:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;white-space:nowrap;width:1px}.absolute,.sr-only{position:absolute}.fixed{position:fixed}.relative{position:relative}.static{position:static}.sticky{position:sticky}.inset-0{inset:0}.-top-2{top:calc(var(--spacing,.25rem)*-2)}.-top-4{top:calc(var(--spacing,.25rem)*-4)}.top-0{top:0}.top-1\\/2{top:50%}.top-\\[4px\\]{top:4px}.top-full{top:100%}.top-px{top:1px}.-right-2{right:calc(var(--spacing,.25rem)*-2)}.right-0{right:0}.right-1{right:var(--spacing,.25rem)}.right-2{right:calc(var(--spacing,.25rem)*2)}.right-6{right:calc(var(--spacing,.25rem)*6)}.right-12{right:calc(var(--spacing,.25rem)*12)}.right-px{right:1px}.bottom-0{bottom:0}.bottom-1{bottom:var(--spacing,.25rem)}.bottom-2{bottom:calc(var(--spacing,.25rem)*2)}.bottom-px{bottom:1px}.left-0{left:0}.left-1{left:var(--spacing,.25rem)}.left-2{left:calc(var(--spacing,.25rem)*2)}.left-\\[15px\\]{left:15px}.isolate{isolation:isolate}.z-0{z-index:0}.z-1{z-index:1}.z-10{z-index:10}.z-9998{z-index:9998}.z-9999{z-index:9999}.order-last{order:9999}.col-span-2{grid-column:span 2/span 2}.row-span-2{grid-row:span 2/span 2}.container{width:100%}@media (min-width:1024px){.container{max-width:1024px}}@media (min-width:40rem){.container{max-width:40rem}}@media (min-width:48rem){.container{max-width:48rem}}@media (min-width:64rem){.container{max-width:64rem}}@media (min-width:80rem){.container{max-width:80rem}}@media (min-width:96rem){.container{max-width:96rem}}.container\\!{width:100%!important}@media (min-width:1024px){.container\\!{max-width:1024px!important}}@media (min-width:40rem){.container\\!{max-width:40rem!important}}@media (min-width:48rem){.container\\!{max-width:48rem!important}}@media (min-width:64rem){.container\\!{max-width:64rem!important}}@media (min-width:80rem){.container\\!{max-width:80rem!important}}@media (min-width:96rem){.container\\!{max-width:96rem!important}}.m-0{margin:0}.m-2{margin:calc(var(--spacing,.25rem)*2)}.mx-0{margin-inline:0}.mx-0\\.5{margin-inline:calc(var(--spacing,.25rem)*.5)}.mx-1{margin-inline:var(--spacing,.25rem)}.mx-6{margin-inline:calc(var(--spacing,.25rem)*6)}.mx-16{margin-inline:calc(var(--spacing,.25rem)*16)}.mx-auto{margin-inline:auto}.-my-2{margin-block:calc(var(--spacing,.25rem)*-2)}.my-1\\.5{margin-block:calc(var(--spacing,.25rem)*1.5)}.my-2{margin-block:calc(var(--spacing,.25rem)*2)}.my-3{margin-block:calc(var(--spacing,.25rem)*3)}.my-4{margin-block:calc(var(--spacing,.25rem)*4)}.my-6{margin-block:calc(var(--spacing,.25rem)*6)}.my-auto{margin-block:auto}.mt-0{margin-top:0}.mt-1{margin-top:var(--spacing,.25rem)}.mt-1\\.5{margin-top:calc(var(--spacing,.25rem)*1.5)}.mt-2{margin-top:calc(var(--spacing,.25rem)*2)}.mt-2\\.5{margin-top:calc(var(--spacing,.25rem)*2.5)}.mt-3{margin-top:calc(var(--spacing,.25rem)*3)}.mt-4{margin-top:calc(var(--spacing,.25rem)*4)}.mt-6{margin-top:calc(var(--spacing,.25rem)*6)}.mt-7{margin-top:calc(var(--spacing,.25rem)*7)}.mt-8{margin-top:calc(var(--spacing,.25rem)*8)}.mt-10{margin-top:calc(var(--spacing,.25rem)*10)}.mt-px{margin-top:1px}.mr-0{margin-right:0}.mr-0\\.5{margin-right:calc(var(--spacing,.25rem)*.5)}.mr-1{margin-right:var(--spacing,.25rem)}.mr-1\\.5{margin-right:calc(var(--spacing,.25rem)*1.5)}.mr-2{margin-right:calc(var(--spacing,.25rem)*2)}.mr-3{margin-right:calc(var(--spacing,.25rem)*3)}.mr-6{margin-right:calc(var(--spacing,.25rem)*6)}.mr-auto{margin-right:auto}.mb-0{margin-bottom:0}.mb-1{margin-bottom:var(--spacing,.25rem)}.mb-2{margin-bottom:calc(var(--spacing,.25rem)*2)}.mb-3{margin-bottom:calc(var(--spacing,.25rem)*3)}.mb-4{margin-bottom:calc(var(--spacing,.25rem)*4)}.mb-6{margin-bottom:calc(var(--spacing,.25rem)*6)}.ml-0\\.5{margin-left:calc(var(--spacing,.25rem)*.5)}.ml-1{margin-left:var(--spacing,.25rem)}.ml-2{margin-left:calc(var(--spacing,.25rem)*2)}.ml-4{margin-left:calc(var(--spacing,.25rem)*4)}.ml-6{margin-left:calc(var(--spacing,.25rem)*6)}.ml-auto{margin-left:auto}.box-border{box-sizing:border-box}.box-content{box-sizing:content-box}.line-clamp-1{-webkit-line-clamp:1}.line-clamp-1,.line-clamp-2{-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.line-clamp-2{-webkit-line-clamp:2}.line-clamp-3{-webkit-line-clamp:3}.line-clamp-3,.line-clamp-4{-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.line-clamp-4{-webkit-line-clamp:4}.line-clamp-none{-webkit-line-clamp:unset;-webkit-box-orient:horizontal;display:block;overflow:visible}.block{display:block}.contents{display:contents}.flex{display:flex}.grid{display:grid}.hidden{display:none}.inline{display:inline}.inline-block{display:inline-block}.inline-flex{display:inline-flex}.table{display:table}.table-column{display:table-column}.aspect-square-\\[auto\\]{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){.aspect-square-\\[auto\\]{height:auto}}.aspect-square{aspect-ratio:1}.size-\\[27px\\]{height:27px;width:27px}.h-1{height:var(--spacing,.25rem)}.h-2{height:calc(var(--spacing,.25rem)*2)}.h-2\\.5{height:calc(var(--spacing,.25rem)*2.5)}.h-3{height:calc(var(--spacing,.25rem)*3)}.h-4{height:calc(var(--spacing,.25rem)*4)}.h-5{height:calc(var(--spacing,.25rem)*5)}.h-5\\/6{height:83.3333%}.h-6{height:calc(var(--spacing,.25rem)*6)}.h-7{height:calc(var(--spacing,.25rem)*7)}.h-8{height:calc(var(--spacing,.25rem)*8)}.h-9{height:calc(var(--spacing,.25rem)*9)}.h-10{height:calc(var(--spacing,.25rem)*10)}.h-12{height:calc(var(--spacing,.25rem)*12)}.h-\\[1lh\\]{height:1lh}.h-\\[2\\.6rem\\]{height:2.6rem}.h-\\[9px\\]{height:9px}.h-auto{height:auto}.h-full{height:100%}.max-h-96{max-height:calc(var(--spacing,.25rem)*96)}.min-h-3{min-height:calc(var(--spacing,.25rem)*3)}.min-h-5{min-height:calc(var(--spacing,.25rem)*5)}.min-h-10{min-height:calc(var(--spacing,.25rem)*10)}.min-lines-2{min-height:calc(var(--line-height)*2)}.min-lines-3{min-height:calc(var(--line-height)*3)}.w-0\\.5{width:calc(var(--spacing,.25rem)*.5)}.w-1{width:var(--spacing,.25rem)}.w-1\\/2{width:50%}.w-2{width:calc(var(--spacing,.25rem)*2)}.w-2\\.5{width:calc(var(--spacing,.25rem)*2.5)}.w-3{width:calc(var(--spacing,.25rem)*3)}.w-3\\.5{width:calc(var(--spacing,.25rem)*3.5)}.w-3\\/5{width:60%}.w-4{width:calc(var(--spacing,.25rem)*4)}.w-5{width:calc(var(--spacing,.25rem)*5)}.w-5\\/6{width:83.3333%}.w-6{width:calc(var(--spacing,.25rem)*6)}.w-7{width:calc(var(--spacing,.25rem)*7)}.w-8{width:calc(var(--spacing,.25rem)*8)}.w-9{width:calc(var(--spacing,.25rem)*9)}.w-10{width:calc(var(--spacing,.25rem)*10)}.w-12{width:calc(var(--spacing,.25rem)*12)}.w-20{width:calc(var(--spacing,.25rem)*20)}.w-26{width:calc(var(--spacing,.25rem)*26)}.w-32{width:calc(var(--spacing,.25rem)*32)}.w-36{width:calc(var(--spacing,.25rem)*36)}.w-48{width:calc(var(--spacing,.25rem)*48)}.w-60{width:calc(var(--spacing,.25rem)*60)}.w-64{width:calc(var(--spacing,.25rem)*64)}.w-72{width:calc(var(--spacing,.25rem)*72)}.w-100{width:calc(var(--spacing,.25rem)*100)}.w-\\[2\\.6rem\\]{width:2.6rem}.w-auto{width:auto}.w-fit{width:fit-content}.w-full{width:100%}.w-max{width:max-content}.w-px{width:1px}.max-w-4\\/5{max-width:80%}.max-w-60{max-width:calc(var(--spacing,.25rem)*60)}.max-w-\\[30ch\\]{max-width:30ch}.max-w-full{max-width:100%}.max-w-lg{max-width:var(--container-lg,32rem)}.max-w-max{max-width:max-content}.min-w-0{min-width:0}.min-w-10{min-width:calc(var(--spacing,.25rem)*10)}.min-w-20{min-width:calc(var(--spacing,.25rem)*20)}.min-w-24{min-width:calc(var(--spacing,.25rem)*24)}.min-w-full{min-width:100%}.flex-1{flex:1}.flex-none{flex:none}.flex-shrink{flex-shrink:1}.flex-shrink-0,.shrink-0{flex-shrink:0}.flex-grow,.grow{flex-grow:1}.basis-1\\/2{flex-basis:50%}.basis-8{flex-basis:calc(var(--spacing,.25rem)*8)}.-translate-x-1\\/2{--tw-translate-x:-50%}.-translate-x-1\\/2,.translate-x-1\\/2{translate:var(--tw-translate-x) var(--tw-translate-y)}.translate-x-1\\/2{--tw-translate-x:50%}.-translate-y-1\\/2{--tw-translate-y:-50%;translate:var(--tw-translate-x) var(--tw-translate-y)}.scale-75{--tw-scale-x:75%;--tw-scale-y:75%;--tw-scale-z:75%}.scale-100,.scale-75{scale:var(--tw-scale-x) var(--tw-scale-y)}.scale-100{--tw-scale-x:100%;--tw-scale-y:100%;--tw-scale-z:100%}.rotate-180{rotate:180deg}.transform{transform:var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,)}.animate-pulse{animation:var(--animate-pulse,pulse 2s cubic-bezier(.4,0,.6,1) infinite)}.animate-spin{animation:var(--animate-spin,spin 1s linear infinite)}.cursor-\\[inherit\\]{cursor:inherit}.cursor-pointer{cursor:pointer}.resize{resize:both}.resize-none{resize:none}.\\[scrollbar-gutter\\:stable_both-edges\\]{scrollbar-gutter:stable both-edges}.list-outside{list-style-position:outside}.list-decimal{list-style-type:decimal}.list-disc{list-style-type:disc}.list-none{list-style-type:none}.appearance-none{appearance:none}.grid-cols-\\[10px_1fr\\]{grid-template-columns:10px 1fr}.grid-cols-\\[min-content_1fr\\]{grid-template-columns:min-content 1fr}.grid-cols-\\[min-content_auto\\]{grid-template-columns:min-content auto}.flex-col{flex-direction:column}.flex-row{flex-direction:row}.flex-nowrap{flex-wrap:nowrap}.flex-wrap{flex-wrap:wrap}.place-items-center{place-items:center}.content-center{align-content:center}.items-baseline{align-items:baseline}.items-center{align-items:center}.items-start{align-items:flex-start}.items-stretch{align-items:stretch}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.justify-end{justify-content:flex-end}.gap-0\\.5{gap:calc(var(--spacing,.25rem)*.5)}.gap-1{gap:var(--spacing,.25rem)}.gap-1\\.5{gap:calc(var(--spacing,.25rem)*1.5)}.gap-2{gap:calc(var(--spacing,.25rem)*2)}.gap-3{gap:calc(var(--spacing,.25rem)*3)}.gap-4{gap:calc(var(--spacing,.25rem)*4)}.gap-8{gap:calc(var(--spacing,.25rem)*8)}:where(.space-y-1>:not(:last-child)){--tw-space-y-reverse:0;margin-block-end:calc(var(--spacing,.25rem)*(1 - var(--tw-space-y-reverse)));margin-block-start:calc(var(--spacing,.25rem)*var(--tw-space-y-reverse))}.gap-x-1\\.5{column-gap:calc(var(--spacing,.25rem)*1.5)}.gap-x-2{column-gap:calc(var(--spacing,.25rem)*2)}.gap-x-3{column-gap:calc(var(--spacing,.25rem)*3)}.gap-x-4{column-gap:calc(var(--spacing,.25rem)*4)}:where(.space-x-1\\.5>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-end:calc(var(--spacing,.25rem)*1.5*(1 - var(--tw-space-x-reverse)));margin-inline-start:calc(var(--spacing,.25rem)*1.5*var(--tw-space-x-reverse))}.gap-y-0\\.5{row-gap:calc(var(--spacing,.25rem)*.5)}:where(.divide-y>:not(:last-child)){--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-bottom-width:calc(1px*(1 - var(--tw-divide-y-reverse)));border-top-style:var(--tw-border-style);border-top-width:calc(1px*var(--tw-divide-y-reverse))}:where(.divide-neutral>:not(:last-child)){border-color:var(--atomic-neutral)}.self-center{align-self:center}.self-start{align-self:flex-start}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-visible{overflow:visible}.overflow-x-auto{overflow-x:auto}.overflow-x-scroll{overflow-x:scroll}.overflow-y-auto{overflow-y:auto}.scroll-smooth{scroll-behavior:smooth}.rounded{border-radius:var(--atomic-border-radius)}.rounded-3xl{border-radius:var(--radius-3xl,1.5rem)}.rounded-full{border-radius:3.40282e+38px}.rounded-lg{border-radius:var(--atomic-border-radius-lg)}.rounded-md{border-radius:var(--atomic-border-radius-md)}.rounded-none{border-radius:0}.rounded-sm{border-radius:var(--atomic-border-radius)}.rounded-xl{border-radius:var(--atomic-border-radius-xl)}.rounded-tl-none{border-top-left-radius:0}.rounded-r-none{border-bottom-right-radius:0;border-top-right-radius:0}.border{border-style:var(--tw-border-style);border-width:1px}.border-0{border-style:var(--tw-border-style);border-width:0}.border-t{border-top-style:var(--tw-border-style);border-top-width:1px}.border-r{border-right-style:var(--tw-border-style);border-right-width:1px}.border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-l{border-left-style:var(--tw-border-style);border-left-width:1px}.border-none{--tw-border-style:none;border-style:none}.border-solid{--tw-border-style:solid;border-style:solid}.border-error{border-color:var(--atomic-error)}.border-gray-200{border-color:var(--color-gray-200,oklch(92.8% .006 264.531))}.border-neutral{border-color:var(--atomic-neutral)}.border-neutral-dark{border-color:var(--atomic-neutral-dark)}.border-neutral-dim{border-color:var(--atomic-neutral-dim)}.border-primary{border-color:var(--atomic-primary)}.border-primary-light{border-color:var(--atomic-primary-light)}.border-b-neutral-dim{border-bottom-color:var(--atomic-neutral-dim)}.border-l-neutral-dim{border-left-color:var(--atomic-neutral-dim)}.bg-\\[\\#F1F2FF\\]{background-color:#f1f2ff}.bg-\\[rgba\\(40\\,40\\,40\\,0\\.8\\)\\]{background-color:#282828cc}.bg-background{background-color:var(--atomic-background)}.bg-error{background-color:var(--atomic-error)}.bg-gray-50{background-color:var(--color-gray-50,oklch(98.5% .002 247.839))}.bg-neutral{background-color:var(--atomic-neutral)}.bg-neutral-dark{background-color:var(--atomic-neutral-dark)}.bg-neutral-dim{background-color:var(--atomic-neutral-dim)}.bg-neutral-light{background-color:var(--atomic-neutral-light)}.bg-primary{background-color:var(--atomic-primary)}.bg-success{background-color:var(--atomic-success)}.bg-transparent{background-color:#0000}.bg-white{background-color:var(--color-white,#fff)}.bg-linear-to-l{--tw-gradient-position:to left}@supports (background-image:linear-gradient(in lab,red,red)){.bg-linear-to-l{--tw-gradient-position:to left in oklab}}.bg-linear-to-l{background-image:linear-gradient(var(--tw-gradient-stops))}.bg-linear-to-r{--tw-gradient-position:to right}@supports (background-image:linear-gradient(in lab,red,red)){.bg-linear-to-r{--tw-gradient-position:to right in oklab}}.bg-linear-to-r{background-image:linear-gradient(var(--tw-gradient-stops))}.from-background\\/60{--tw-gradient-from:#fff9}@supports (color:color-mix(in lab,red,red)){.from-background\\/60{--tw-gradient-from:color-mix(in oklab,var(--atomic-background) 60%,transparent)}}.from-background\\/60{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from) var(--tw-gradient-from-position),var(--tw-gradient-to) var(--tw-gradient-to-position))}.from-more-results-progress-bar-color-from{--tw-gradient-from:var(--atomic-more-results-progress-bar-color-from,var(--atomic-primary-dark));--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from) var(--tw-gradient-from-position),var(--tw-gradient-to) var(--tw-gradient-to-position))}.to-more-results-progress-bar-color-to{--tw-gradient-to:var(--atomic-more-results-progress-bar-color-to,var(--atomic-primary-light));--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from) var(--tw-gradient-from-position),var(--tw-gradient-to) var(--tw-gradient-to-position))}.fill-current{fill:currentColor}.stroke-\\[1\\.25\\]{stroke-width:1.25px}.object-contain{object-fit:contain}.p-0{padding:0}.p-1{padding:var(--spacing,.25rem)}.p-2{padding:calc(var(--spacing,.25rem)*2)}.p-2\\.5{padding:calc(var(--spacing,.25rem)*2.5)}.p-3{padding:calc(var(--spacing,.25rem)*3)}.p-3\\.5{padding:calc(var(--spacing,.25rem)*3.5)}.p-4{padding:calc(var(--spacing,.25rem)*4)}.p-6{padding:calc(var(--spacing,.25rem)*6)}.p-7{padding:calc(var(--spacing,.25rem)*7)}.p-8{padding:calc(var(--spacing,.25rem)*8)}.px-1{padding-inline:var(--spacing,.25rem)}.px-2{padding-inline:calc(var(--spacing,.25rem)*2)}.px-2\\.5{padding-inline:calc(var(--spacing,.25rem)*2.5)}.px-3{padding-inline:calc(var(--spacing,.25rem)*3)}.px-4{padding-inline:calc(var(--spacing,.25rem)*4)}.px-6{padding-inline:calc(var(--spacing,.25rem)*6)}.px-7{padding-inline:calc(var(--spacing,.25rem)*7)}.px-9{padding-inline:calc(var(--spacing,.25rem)*9)}.py-0\\.5{padding-block:calc(var(--spacing,.25rem)*.5)}.py-1{padding-block:var(--spacing,.25rem)}.py-1\\.5{padding-block:calc(var(--spacing,.25rem)*1.5)}.py-2{padding-block:calc(var(--spacing,.25rem)*2)}.py-2\\.5{padding-block:calc(var(--spacing,.25rem)*2.5)}.py-3{padding-block:calc(var(--spacing,.25rem)*3)}.py-3\\.5{padding-block:calc(var(--spacing,.25rem)*3.5)}.py-4{padding-block:calc(var(--spacing,.25rem)*4)}.py-4\\.5{padding-block:calc(var(--spacing,.25rem)*4.5)}.py-5{padding-block:calc(var(--spacing,.25rem)*5)}.py-6{padding-block:calc(var(--spacing,.25rem)*6)}.pt-0\\.5{padding-top:calc(var(--spacing,.25rem)*.5)}.pt-2{padding-top:calc(var(--spacing,.25rem)*2)}.pt-6{padding-top:calc(var(--spacing,.25rem)*6)}.pt-8{padding-top:calc(var(--spacing,.25rem)*8)}.pr-2{padding-right:calc(var(--spacing,.25rem)*2)}.pr-4{padding-right:calc(var(--spacing,.25rem)*4)}.pr-6{padding-right:calc(var(--spacing,.25rem)*6)}.pr-24{padding-right:calc(var(--spacing,.25rem)*24)}.pb-1{padding-bottom:var(--spacing,.25rem)}.pb-3{padding-bottom:calc(var(--spacing,.25rem)*3)}.pb-4{padding-bottom:calc(var(--spacing,.25rem)*4)}.pb-5{padding-bottom:calc(var(--spacing,.25rem)*5)}.pb-6{padding-bottom:calc(var(--spacing,.25rem)*6)}.pl-0{padding-left:0}.pl-1{padding-left:var(--spacing,.25rem)}.pl-2{padding-left:calc(var(--spacing,.25rem)*2)}.pl-3{padding-left:calc(var(--spacing,.25rem)*3)}.pl-7{padding-left:calc(var(--spacing,.25rem)*7)}.pl-9{padding-left:calc(var(--spacing,.25rem)*9)}.pl-10{padding-left:calc(var(--spacing,.25rem)*10)}.text-center{text-align:center}.text-left{text-align:left}.align-baseline{vertical-align:baseline}.align-bottom{vertical-align:bottom}.align-middle{vertical-align:middle}.font-sans{font-family:var(--atomic-font-family)}.set-font-size-sm{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}.text-2xl{font-size:var(--atomic-text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height,1.33333))}.text-base{font-size:var(--atomic-text-base);line-height:var(--tw-leading,var(--text-base--line-height,1.5))}.text-lg{font-size:var(--atomic-text-lg);line-height:var(--tw-leading,var(--text-lg--line-height,1.55556))}.text-sm{font-size:var(--atomic-text-sm);line-height:var(--tw-leading,var(--text-sm--line-height,1.42857))}.text-xl{font-size:var(--atomic-text-xl);line-height:var(--tw-leading,var(--text-xl--line-height,1.4))}.text-xs{line-height:var(--tw-leading,var(--text-xs--line-height,1.33333))}.text-xs,.text-xs\\/\\[1rem\\]{font-size:var(--text-xs,.75rem)}.text-xs\\/\\[1rem\\]{line-height:1rem}.leading-4{--tw-leading:calc(var(--spacing,.25rem)*4);line-height:calc(var(--spacing,.25rem)*4)}.leading-5{--tw-leading:calc(var(--spacing,.25rem)*5);line-height:calc(var(--spacing,.25rem)*5)}.leading-6{--tw-leading:calc(var(--spacing,.25rem)*6);line-height:calc(var(--spacing,.25rem)*6)}.leading-8{--tw-leading:calc(var(--spacing,.25rem)*8);line-height:calc(var(--spacing,.25rem)*8)}.leading-10{--tw-leading:calc(var(--spacing,.25rem)*10);line-height:calc(var(--spacing,.25rem)*10)}.leading-\\[1\\.5\\]{--tw-leading:1.5;line-height:1.5}.leading-\\[calc\\(1\\/\\.75\\)\\]{--tw-leading:1.33333;line-height:1.33333}.leading-\\[var\\(--line-height\\)\\]{--tw-leading:var(--line-height);line-height:var(--line-height)}.leading-none{--tw-leading:1;line-height:1}.font-bold{--tw-font-weight:var(--atomic-font-bold);font-weight:var(--atomic-font-bold)}.font-light{--tw-font-weight:var(--font-weight-light,300);font-weight:var(--font-weight-light,300)}.font-medium{--tw-font-weight:var(--font-weight-medium,500);font-weight:var(--font-weight-medium,500)}.font-normal{--tw-font-weight:var(--atomic-font-normal);font-weight:var(--atomic-font-normal)}.font-semibold{--tw-font-weight:var(--font-weight-semibold,600);font-weight:var(--font-weight-semibold,600)}.break-words{overflow-wrap:break-word}.break-all{word-break:break-all}.break-keep{word-break:keep-all}.text-ellipsis{text-overflow:ellipsis}.whitespace-normal{white-space:normal}.whitespace-nowrap{white-space:nowrap}.whitespace-pre-wrap{white-space:pre-wrap}.text-\\[\\#54698D\\]{color:#54698d}.text-\\[inherit\\]{color:inherit}.text-black{color:var(--color-black,#000)}.text-error{color:var(--atomic-error)}.text-gray-500{color:var(--color-gray-500,oklch(55.1% .027 264.364))}.text-gray-600{color:var(--color-gray-600,oklch(44.6% .03 256.802))}.text-gray-700{color:var(--color-gray-700,oklch(37.3% .034 259.733))}.text-gray-900{color:var(--color-gray-900,oklch(21% .034 264.665))}.text-green-600{color:var(--color-green-600,oklch(62.7% .194 149.214))}.text-inline-code{color:var(--atomic-inline-code)}.text-neutral{color:var(--atomic-neutral)}.text-neutral-dark{color:var(--atomic-neutral-dark)}.text-on-background{color:var(--atomic-on-background)}.text-on-primary{color:var(--atomic-on-primary)}.text-primary{color:var(--atomic-primary)}.text-primary-light{color:var(--atomic-primary-light)}.text-rating-icon-active{color:var(--atomic-rating-icon-active-color,#f6ce3c)}.text-rating-icon-inactive{color:var(--atomic-rating-icon-inactive-color,var(--atomic-neutral))}.text-red-600{color:var(--color-red-600,oklch(57.7% .245 27.325))}.text-success{color:var(--atomic-success)}.text-transparent{color:#0000}.capitalize{text-transform:capitalize}.lowercase{text-transform:lowercase}.italic{font-style:italic}.line-through{text-decoration-line:line-through}.placeholder-neutral-dark::placeholder{color:var(--atomic-neutral-dark)}.opacity-0{opacity:0}.opacity-50{opacity:.5}.opacity-60{opacity:.6}.opacity-80{opacity:.8}.shadow{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a)}.shadow,.shadow-inner-primary{box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-inner-primary{--tw-shadow:inset 0 0 0 1px var(--tw-shadow-color,var(--atomic-primary))}.shadow-lg{--tw-shadow:0px 2px 8px var(--tw-shadow-color,#e5e8e8bf)}.shadow-lg,.shadow-t-lg{box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-t-lg{--tw-shadow:0px -2px 8px var(--tw-shadow-color,#e5e8e8bf)}.ring,.ring-1{--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor)}.ring,.ring-1,.ring-3{box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring-3{--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor)}.ring-primary{--tw-ring-color:var(--atomic-primary)}.ring-ring-primary{--tw-ring-color:var(--atomic-ring-primary)}.outline{outline-width:1px}.outline,.outline-2{outline-style:var(--tw-outline-style)}.outline-2{outline-width:2px}.outline-error{outline-color:var(--atomic-error)}.outline-neutral{outline-color:var(--atomic-neutral)}.outline-primary{outline-color:var(--atomic-primary)}.blur{--tw-blur:blur(8px)}.blur,.grayscale{filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}.grayscale{--tw-grayscale:grayscale(100%)}.invert{--tw-invert:invert(100%)}.filter,.invert{filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}.transition{transition-duration:var(--tw-duration,var(--default-transition-duration,.15s));transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function,cubic-bezier(.4,0,.2,1)))}.transition-\\[visibility\\]{transition-duration:var(--tw-duration,var(--default-transition-duration,.15s));transition-property:visibility;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function,cubic-bezier(.4,0,.2,1)))}.transition-all{transition-duration:var(--tw-duration,var(--default-transition-duration,.15s));transition-property:all;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function,cubic-bezier(.4,0,.2,1)))}.transition-colors{transition-duration:var(--tw-duration,var(--default-transition-duration,.15s));transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function,cubic-bezier(.4,0,.2,1)))}.transition-opacity{transition-duration:var(--tw-duration,var(--default-transition-duration,.15s));transition-property:opacity;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function,cubic-bezier(.4,0,.2,1)))}.duration-150{--tw-duration:.15s;transition-duration:.15s}.duration-200{--tw-duration:.2s;transition-duration:.2s}.duration-300{--tw-duration:.3s;transition-duration:.3s}.duration-500{--tw-duration:.5s;transition-duration:.5s}.ease-in-out{--tw-ease:var(--ease-in-out,cubic-bezier(.4,0,.2,1));transition-timing-function:var(--ease-in-out,cubic-bezier(.4,0,.2,1))}.outline-none{--tw-outline-style:none;outline-style:none}.\\[grid-area\\:modal\\]{grid-area:modal}@media (hover:hover){.group-hover\\:visible:is(:where(.group):hover *){visibility:visible}.group-hover\\:bg-neutral-dark:is(:where(.group):hover *){background-color:var(--atomic-neutral-dark)}.group-hover\\:text-error:is(:where(.group):hover *){color:var(--atomic-error)}.group-hover\\:text-primary:is(:where(.group):hover *){color:var(--atomic-primary)}.group-hover\\:text-primary-light:is(:where(.group):hover *){color:var(--atomic-primary-light)}}.group-focus\\:text-primary:is(:where(.group):focus *){color:var(--atomic-primary)}.group-focus\\:text-primary-light:is(:where(.group):focus *){color:var(--atomic-primary-light)}.group-focus-visible\\:text-error:is(:where(.group):focus-visible *){color:var(--atomic-error)}.group-focus-visible\\:text-primary:is(:where(.group):focus-visible *){color:var(--atomic-primary)}.group-has-\\[button\\:hover\\]\\/title\\:bg-neutral-dark:is(:where(.group\\/title):has(:is(button:hover)) *){background-color:var(--atomic-neutral-dark)}.peer-focus-within\\:border-primary-light:is(:where(.peer):focus-within~*){border-color:var(--atomic-primary-light)}.peer-focus-within\\:text-primary-light:is(:where(.peer):focus-within~*){color:var(--atomic-primary-light)}@media (hover:hover){.peer-hover\\:border-primary-light:is(:where(.peer):hover~*){border-color:var(--atomic-primary-light)}.peer-hover\\:text-error:is(:where(.peer):hover~*){color:var(--atomic-error)}.peer-hover\\:text-primary-light:is(:where(.peer):hover~*){color:var(--atomic-primary-light)}}.before\\:absolute:before{content:var(--tw-content);position:absolute}.before\\:top-\\[-8px\\]:before{content:var(--tw-content);top:-8px}.before\\:left-0:before{content:var(--tw-content);left:0}.before\\:inline:before{content:var(--tw-content);display:inline}.before\\:h-\\[8px\\]:before{content:var(--tw-content);height:8px}.before\\:w-px:before{content:var(--tw-content);width:1px}.before\\:bg-neutral:before{background-color:var(--atomic-neutral);content:var(--tw-content)}.before\\:transition-colors:before{content:var(--tw-content);transition-duration:var(--tw-duration,var(--default-transition-duration,.15s));transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function,cubic-bezier(.4,0,.2,1)))}.before\\:duration-150:before{content:var(--tw-content);--tw-duration:.15s;transition-duration:.15s}.before\\:content-\\[\\'\\'\\]:before{--tw-content:"";content:var(--tw-content)}.before\\:content-\\[\\'\\,\\\\00a0\\'\\]:before{--tw-content:", ";content:var(--tw-content)}@media (hover:hover){.group-hover\\:before\\:bg-neutral-dark:is(:where(.group):hover *):before{background-color:var(--atomic-neutral-dark);content:var(--tw-content)}}.after\\:absolute:after{content:var(--tw-content);position:absolute}.after\\:-bottom-0\\.5:after{bottom:calc(var(--spacing,.25rem)*-.5);content:var(--tw-content)}.after\\:bottom-\\[-8px\\]:after{bottom:-8px;content:var(--tw-content)}.after\\:left-0:after{content:var(--tw-content);left:0}.after\\:block:after{content:var(--tw-content);display:block}.after\\:h-1:after{content:var(--tw-content);height:var(--spacing,.25rem)}.after\\:h-\\[8px\\]:after{content:var(--tw-content);height:8px}.after\\:w-full:after{content:var(--tw-content);width:100%}.after\\:w-px:after{content:var(--tw-content);width:1px}.after\\:rounded:after{border-radius:var(--atomic-border-radius);content:var(--tw-content)}.after\\:bg-neutral:after{background-color:var(--atomic-neutral);content:var(--tw-content)}.after\\:bg-primary:after{background-color:var(--atomic-primary);content:var(--tw-content)}.after\\:transition-colors:after{content:var(--tw-content);transition-duration:var(--tw-duration,var(--default-transition-duration,.15s));transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function,cubic-bezier(.4,0,.2,1)))}.after\\:duration-150:after{content:var(--tw-content);--tw-duration:.15s;transition-duration:.15s}.after\\:content-\\[\\'\\'\\]:after{--tw-content:"";content:var(--tw-content)}@media (hover:hover){.group-hover\\:after\\:bg-neutral-dark:is(:where(.group):hover *):after{background-color:var(--atomic-neutral-dark);content:var(--tw-content)}}.focus-within\\:border-disabled:focus-within{border-color:var(--atomic-disabled)}.focus-within\\:border-primary:focus-within{border-color:var(--atomic-primary)}.focus-within\\:ring-3:focus-within{--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-within\\:ring-neutral:focus-within{--tw-ring-color:var(--atomic-neutral)}.focus-within\\:ring-ring-primary:focus-within{--tw-ring-color:var(--atomic-ring-primary)}@media (hover:hover){.hover\\:border:hover{border-style:var(--tw-border-style);border-width:1px}.hover\\:border-error:hover{border-color:var(--atomic-error)}.hover\\:border-primary-light:hover{border-color:var(--atomic-primary-light)}.hover\\:bg-error:hover{background-color:var(--atomic-error)}.hover\\:bg-neutral:hover{background-color:var(--atomic-neutral)}.hover\\:bg-neutral-dark:hover{background-color:var(--atomic-neutral-dark)}.hover\\:bg-neutral-light:hover{background-color:var(--atomic-neutral-light)}.hover\\:bg-primary-light:hover{background-color:var(--atomic-primary-light)}.hover\\:bg-transparent:hover{background-color:#0000}.hover\\:fill-white:hover{fill:var(--color-white,#fff)}.hover\\:text-error:hover{color:var(--atomic-error)}.hover\\:text-primary:hover{color:var(--atomic-primary)}.hover\\:text-primary-light:hover{color:var(--atomic-primary-light)}.hover\\:text-success:hover{color:var(--atomic-success)}.hover\\:underline:hover{text-decoration-line:underline}.hover\\:opacity-100:hover{opacity:1}.hover\\:shadow-sm:hover{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}}.focus\\:opacity-100:focus{opacity:1}.focus\\:outline-hidden:focus{--tw-outline-style:none;outline-style:none}@media (forced-colors:active){.focus\\:outline-hidden:focus{outline:2px solid #0000;outline-offset:2px}}.focus-visible\\:border:focus-visible{border-style:var(--tw-border-style);border-width:1px}.focus-visible\\:border-error:focus-visible{border-color:var(--atomic-error)}.focus-visible\\:border-primary:focus-visible{border-color:var(--atomic-primary)}.focus-visible\\:border-primary-light:focus-visible{border-color:var(--atomic-primary-light)}.focus-visible\\:bg-error:focus-visible{background-color:var(--atomic-error)}.focus-visible\\:bg-neutral-light:focus-visible{background-color:var(--atomic-neutral-light)}.focus-visible\\:bg-primary-light:focus-visible{background-color:var(--atomic-primary-light)}.focus-visible\\:text-primary:focus-visible{color:var(--atomic-primary)}.focus-visible\\:text-primary-light:focus-visible{color:var(--atomic-primary-light)}.focus-visible\\:underline:focus-visible{text-decoration-line:underline}.focus-visible\\:ring-2:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-visible\\:ring-primary:focus-visible{--tw-ring-color:var(--atomic-primary)}.focus-visible\\:ring-offset-2:focus-visible{--tw-ring-offset-width:2px;--tw-ring-offset-shadow:var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)}.focus-visible\\:outline-none:focus-visible{--tw-outline-style:none;outline-style:none}.disabled\\:bg-primary\\/60:disabled{background-color:#126ce099}@supports (color:color-mix(in lab,red,red)){.disabled\\:bg-primary\\/60:disabled{background-color:color-mix(in oklab,var(--atomic-primary) 60%,transparent)}}.disabled\\:opacity-100:disabled{opacity:1}@media (min-width:1024px){.desktop\\:mt-2{margin-top:calc(var(--spacing,.25rem)*2)}}@media (min-width:40rem){.sm\\:px-6{padding-inline:calc(var(--spacing,.25rem)*6)}}.\\[part\\=\\"breadcrumb-button\\"\\]\\:visible:is(){visibility:visible}}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-scale-x{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-y{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-z{syntax:"*";inherits:false;initial-value:1}@property --tw-rotate-x{syntax:"*";inherits:false}@property --tw-rotate-y{syntax:"*";inherits:false}@property --tw-rotate-z{syntax:"*";inherits:false}@property --tw-skew-x{syntax:"*";inherits:false}@property --tw-skew-y{syntax:"*";inherits:false}@property --tw-space-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-space-x-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-divide-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-gradient-position{syntax:"*";inherits:false}@property --tw-gradient-from{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-via{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-to{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-stops{syntax:"*";inherits:false}@property --tw-gradient-via-stops{syntax:"*";inherits:false}@property --tw-gradient-from-position{syntax:"<length-percentage>";inherits:false;initial-value:0%}@property --tw-gradient-via-position{syntax:"<length-percentage>";inherits:false;initial-value:50%}@property --tw-gradient-to-position{syntax:"<length-percentage>";inherits:false;initial-value:100%}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-outline-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-drop-shadow-color{syntax:"*";inherits:false}@property --tw-drop-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-drop-shadow-size{syntax:"*";inherits:false}@property --tw-duration{syntax:"*";inherits:false}@property --tw-ease{syntax:"*";inherits:false}@property --tw-content{syntax:"*";inherits:false;initial-value:""}@keyframes spin{to{transform:rotate(1turn)}}@keyframes pulse{50%{opacity:.5}}`;
|
|
2065
2727
|
|
|
2066
2728
|
const tailwindPropertiesSheet = "u" > typeof window ? (()=>{
|
|
2067
2729
|
const propCss = css;
|
|
@@ -3047,7 +3709,9 @@ class AriaLiveRegionController {
|
|
|
3047
3709
|
return element;
|
|
3048
3710
|
}
|
|
3049
3711
|
dispatchMessage(message) {
|
|
3050
|
-
this.getAriaLiveElement()
|
|
3712
|
+
const ariaLiveElement = this.getAriaLiveElement();
|
|
3713
|
+
if (this.preserveQueuedMessages) return void ariaLiveElement?.updateMessage(this.regionName, message, this.assertive, true);
|
|
3714
|
+
ariaLiveElement?.updateMessage(this.regionName, message, this.assertive);
|
|
3051
3715
|
}
|
|
3052
3716
|
set message(msg) {
|
|
3053
3717
|
this.dispatchMessage(msg);
|
|
@@ -3055,10 +3719,11 @@ class AriaLiveRegionController {
|
|
|
3055
3719
|
hostUpdate() {
|
|
3056
3720
|
this.getAriaLiveElement()?.registerRegion(this.regionName, this.assertive);
|
|
3057
3721
|
}
|
|
3058
|
-
constructor(host, regionName, assertive = false){
|
|
3722
|
+
constructor(host, regionName, assertive = false, preserveQueuedMessages = false){
|
|
3059
3723
|
this.host = host;
|
|
3060
3724
|
this.regionName = regionName;
|
|
3061
3725
|
this.assertive = assertive;
|
|
3726
|
+
this.preserveQueuedMessages = preserveQueuedMessages;
|
|
3062
3727
|
this.host.addController(this);
|
|
3063
3728
|
}
|
|
3064
3729
|
}
|
|
@@ -3435,7 +4100,7 @@ let AtomicCommerceBreadbox$1 = class AtomicCommerceBreadbox extends lit.LitEleme
|
|
|
3435
4100
|
}
|
|
3436
4101
|
};
|
|
3437
4102
|
AtomicCommerceBreadbox$1.styles = [
|
|
3438
|
-
lit.css`/*! tailwindcss v4.3.
|
|
4103
|
+
lit.css`/*! tailwindcss v4.3.2 | MIT License | https://tailwindcss.com */[part=breadcrumb-label].excluded,[part=breadcrumb-value].excluded{color:var(--atomic-error);text-decoration:line-through}[part=breadcrumb-value]:before{content:" "}`
|
|
3439
4104
|
];
|
|
3440
4105
|
AtomicCommerceBreadbox$1.propsSchema = new Schema({
|
|
3441
4106
|
pathLimit: new NumberValue({
|
|
@@ -4134,11 +4799,11 @@ const renderCategoryFacetSearchValue = ({ props })=>{
|
|
|
4134
4799
|
|
|
4135
4800
|
const renderCategoryFacetTreeValueContainer = ()=>(children)=>lit.html`<li class="contents">${children}</li>`;
|
|
4136
4801
|
|
|
4137
|
-
const styles$e = lit.css`/*! tailwindcss v4.3.
|
|
4138
|
-
|
|
4802
|
+
const styles$e = lit.css`/*! tailwindcss v4.3.2 | MIT License | https://tailwindcss.com */@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,::backdrop,:after,:before{--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000}}}.value-count{color:var(--atomic-neutral-dark);margin-left:calc(var(--spacing,.25rem)*1.5)}[part=value-exclude-button]+.value-count{margin-right:calc(var(--spacing,.25rem)*2)}:host(.popover-nested){min-width:var(--container-2xs,18rem)}:host(.popover-nested)::part(label-button){display:none}:host(.popover-nested)::part(facet){--tw-shadow:0px 2px 8px var(--tw-shadow-color,#e5e8e8bf);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}:host(.popover-nested)::part(values){margin-top:0;max-height:calc(var(--spacing,.25rem)*96);overflow-y:auto}:host(.popover-nested)::part(search-wrapper){margin-bottom:calc(var(--spacing,.25rem)*2)}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}`;
|
|
4803
|
+
var facet_common_tw_css = styles$e;
|
|
4139
4804
|
|
|
4140
|
-
const styles$d = lit.css`/*! tailwindcss v4.3.
|
|
4141
|
-
|
|
4805
|
+
const styles$d = lit.css`/*! tailwindcss v4.3.2 | MIT License | https://tailwindcss.com */input[type=text]:focus-visible~.search-icon{color:var(--atomic-primary)}input[type=text]:hover~.search-icon{color:var(--atomic-primary-light)}.search-icon atomic-icon{height:var(--atomic-facet-search-icon-size,.75rem);width:var(--atomic-facet-search-icon-size,.75rem)}.search-clear-button atomic-icon{height:var(--atomic-facet-search-clear-icon-size,.625rem);width:var(--atomic-facet-search-clear-icon-size,.625rem)}`;
|
|
4806
|
+
var facet_search_tw_css = styles$d;
|
|
4142
4807
|
|
|
4143
4808
|
function _ts_decorate$11(decorators, target, key, desc) {
|
|
4144
4809
|
var c = arguments.length, r = c < 3 ? target : null === desc ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
@@ -4413,7 +5078,7 @@ let AtomicCommerceCategoryFacet$1 = class AtomicCommerceCategoryFacet extends li
|
|
|
4413
5078
|
AtomicCommerceCategoryFacet$1.styles = [
|
|
4414
5079
|
facet_common_tw_css,
|
|
4415
5080
|
facet_search_tw_css,
|
|
4416
|
-
lit.css`/*! tailwindcss v4.3.
|
|
5081
|
+
lit.css`/*! tailwindcss v4.3.2 | MIT License | https://tailwindcss.com */[part~=active-parent],[part~=parents] [part~=values]{padding-left:calc(var(--spacing,.25rem)*9)}[part~=all-categories-button],[part~=parent-button]{align-items:center;display:flex;padding-block:calc(var(--spacing,.25rem)*2.5);padding-left:calc(var(--spacing,.25rem)*7);padding-right:calc(var(--spacing,.25rem)*2);position:relative;text-align:left;width:100%}[part~=back-arrow]{height:calc(var(--spacing,.25rem)*5);left:var(--spacing,.25rem);position:absolute;width:calc(var(--spacing,.25rem)*5)}`
|
|
4417
5082
|
];
|
|
4418
5083
|
_ts_decorate$11([
|
|
4419
5084
|
decorators_js.state(),
|
|
@@ -4927,14 +5592,14 @@ const renderFacetValue = ({ props: { facetSearchQuery, displayValuesAs, enableEx
|
|
|
4927
5592
|
}
|
|
4928
5593
|
};
|
|
4929
5594
|
|
|
4930
|
-
const styles$c = lit.css`/*! tailwindcss v4.3.
|
|
4931
|
-
|
|
5595
|
+
const styles$c = lit.css`/*! tailwindcss v4.3.2 | MIT License | https://tailwindcss.com */.box-container{display:grid;gap:var(--atomic-facet-boxes-gap,.5rem);grid-template-columns:repeat(var(--atomic-facet-boxes-per-row,4),minmax(0,1fr));padding-inline:calc(var(--spacing,.25rem)*2)}.value-box{overflow:hidden;position:relative}.value-box .value-label,.value-box-count{display:block;width:100%}.value-box.selected{box-shadow:0 0 0 1px var(--atomic-primary)}`;
|
|
5596
|
+
var facet_value_box_tw_css = styles$c;
|
|
4932
5597
|
|
|
4933
|
-
const styles$b = lit.css`/*! tailwindcss v4.3.
|
|
4934
|
-
|
|
5598
|
+
const styles$b = lit.css`/*! tailwindcss v4.3.2 | MIT License | https://tailwindcss.com */.value-checkbox{height:var(--atomic-facet-checkbox-size,1rem);left:calc(var(--spacing,.25rem)*2);position:absolute;width:var(--atomic-facet-checkbox-size,1rem);z-index:1}.value-checkbox+label{color:var(--atomic-on-background);cursor:pointer;display:flex;flex-direction:row;overflow:hidden;padding-block:calc(var(--spacing,.25rem)*2.5);padding-left:calc(var(--spacing,.25rem)*8);padding-right:calc(var(--spacing,.25rem)*2);text-overflow:ellipsis;white-space:nowrap;width:100%}@media (hover:hover){.value-checkbox+label:hover{background-color:var(--atomic-neutral-light)}}.value-checkbox.selected:focus-visible+label .value-label,.value-checkbox.selected:hover+label .value-label{color:var(--atomic-primary)}.value-checkbox.excluded:focus-visible+label .value-label,.value-checkbox.excluded:hover+label .value-label{color:var(--atomic-error)}`;
|
|
5599
|
+
var facet_value_checkbox_tw_css = styles$b;
|
|
4935
5600
|
|
|
4936
5601
|
const styles$a = lit.css`.value-exclude-button:focus-visible atomic-icon{visibility:visible}`;
|
|
4937
|
-
|
|
5602
|
+
var facet_value_exclude_tw_css = styles$a;
|
|
4938
5603
|
|
|
4939
5604
|
function _ts_decorate$$(decorators, target, key, desc) {
|
|
4940
5605
|
var c = arguments.length, r = c < 3 ? target : null === desc ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
@@ -5546,7 +6211,7 @@ const styles$9 = [
|
|
|
5546
6211
|
facet_value_exclude_tw_css,
|
|
5547
6212
|
facet_common_tw_css
|
|
5548
6213
|
];
|
|
5549
|
-
|
|
6214
|
+
var numeric_facet_common_tw_css = styles$9;
|
|
5550
6215
|
|
|
5551
6216
|
function _ts_decorate$Y(decorators, target, key, desc) {
|
|
5552
6217
|
var c = arguments.length, r = c < 3 ? target : null === desc ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
@@ -8675,7 +9340,7 @@ function getWindow() {
|
|
|
8675
9340
|
}
|
|
8676
9341
|
function getAtomicEnvironment(headlessVersion) {
|
|
8677
9342
|
return {
|
|
8678
|
-
version: "3.60.
|
|
9343
|
+
version: "3.60.2",
|
|
8679
9344
|
headlessVersion
|
|
8680
9345
|
};
|
|
8681
9346
|
}
|
|
@@ -9361,10 +10026,13 @@ function isI18nLocaleAvailable(locale) {
|
|
|
9361
10026
|
function buildDebouncedQueue(options) {
|
|
9362
10027
|
let actions = [];
|
|
9363
10028
|
let intervalId = null;
|
|
10029
|
+
let lastExecutedAt = null;
|
|
9364
10030
|
function dequeueAction() {
|
|
9365
10031
|
const action = actions.shift();
|
|
9366
|
-
if (action)
|
|
9367
|
-
|
|
10032
|
+
if (action) {
|
|
10033
|
+
lastExecutedAt = Date.now();
|
|
10034
|
+
action.execute();
|
|
10035
|
+
} else {
|
|
9368
10036
|
clearInterval(intervalId);
|
|
9369
10037
|
intervalId = null;
|
|
9370
10038
|
}
|
|
@@ -9379,10 +10047,18 @@ function buildDebouncedQueue(options) {
|
|
|
9379
10047
|
id: uniqueId,
|
|
9380
10048
|
execute
|
|
9381
10049
|
});
|
|
9382
|
-
if (null
|
|
9383
|
-
|
|
10050
|
+
if (null !== intervalId) return;
|
|
10051
|
+
const elapsedSinceLastExecution = null === lastExecutedAt ? null : Date.now() - lastExecutedAt;
|
|
10052
|
+
if (null === elapsedSinceLastExecution || elapsedSinceLastExecution >= options.delay) {
|
|
9384
10053
|
intervalId = setInterval(dequeueAction, options.delay);
|
|
10054
|
+
dequeueAction();
|
|
10055
|
+
return;
|
|
9385
10056
|
}
|
|
10057
|
+
const remainingDelay = options.delay - elapsedSinceLastExecution;
|
|
10058
|
+
intervalId = setTimeout(()=>{
|
|
10059
|
+
intervalId = setInterval(dequeueAction, options.delay);
|
|
10060
|
+
dequeueAction();
|
|
10061
|
+
}, remainingDelay);
|
|
9386
10062
|
},
|
|
9387
10063
|
clear () {
|
|
9388
10064
|
actions = [];
|
|
@@ -9418,9 +10094,10 @@ let AtomicAriaLive$1 = class AtomicAriaLive extends LightDomMixin(lit.LitElement
|
|
|
9418
10094
|
disconnectedCallback() {
|
|
9419
10095
|
super.disconnectedCallback();
|
|
9420
10096
|
this.messagesQueue.clear();
|
|
10097
|
+
this.queuedMessageIds.clear();
|
|
9421
10098
|
document.removeEventListener('atomic/accessibility/findAriaLive', this.onFindAriaLive);
|
|
9422
10099
|
}
|
|
9423
|
-
updateMessage(region, message, assertive) {
|
|
10100
|
+
updateMessage(region, message, assertive, preserveQueuedMessages = false) {
|
|
9424
10101
|
const updateRegion = ()=>{
|
|
9425
10102
|
this.regions = {
|
|
9426
10103
|
...this.regions,
|
|
@@ -9430,11 +10107,18 @@ let AtomicAriaLive$1 = class AtomicAriaLive extends LightDomMixin(lit.LitElement
|
|
|
9430
10107
|
}
|
|
9431
10108
|
};
|
|
9432
10109
|
};
|
|
9433
|
-
if (message)
|
|
9434
|
-
|
|
9435
|
-
this.messagesQueue.cancelActionIfQueued(region);
|
|
10110
|
+
if (!message) {
|
|
10111
|
+
this.clearQueuedMessages(region);
|
|
9436
10112
|
updateRegion();
|
|
10113
|
+
return;
|
|
10114
|
+
}
|
|
10115
|
+
if (!preserveQueuedMessages) {
|
|
10116
|
+
this.clearQueuedMessages(region);
|
|
10117
|
+
this.messagesQueue.enqueue(updateRegion, region);
|
|
10118
|
+
return;
|
|
9437
10119
|
}
|
|
10120
|
+
if (this.regions[region]?.message === message && this.regions[region]?.assertive === assertive) return;
|
|
10121
|
+
this.queueMessage(region, message, updateRegion);
|
|
9438
10122
|
}
|
|
9439
10123
|
registerRegion(region, assertive) {
|
|
9440
10124
|
if (region in this.regions) return;
|
|
@@ -9446,6 +10130,28 @@ let AtomicAriaLive$1 = class AtomicAriaLive extends LightDomMixin(lit.LitElement
|
|
|
9446
10130
|
}
|
|
9447
10131
|
};
|
|
9448
10132
|
}
|
|
10133
|
+
clearQueuedMessages(region) {
|
|
10134
|
+
for (const messageId of this.queuedMessageIds.get(region) ?? [])this.messagesQueue.cancelActionIfQueued(messageId);
|
|
10135
|
+
this.queuedMessageIds.delete(region);
|
|
10136
|
+
}
|
|
10137
|
+
getMessageQueueId(region, message) {
|
|
10138
|
+
return JSON.stringify([
|
|
10139
|
+
region,
|
|
10140
|
+
message
|
|
10141
|
+
]);
|
|
10142
|
+
}
|
|
10143
|
+
queueMessage(region, message, updateRegion) {
|
|
10144
|
+
const messageId = this.getMessageQueueId(region, message);
|
|
10145
|
+
const queuedMessageIds = this.queuedMessageIds.get(region) ?? new Set();
|
|
10146
|
+
if (queuedMessageIds.has(messageId)) return;
|
|
10147
|
+
queuedMessageIds.add(messageId);
|
|
10148
|
+
this.queuedMessageIds.set(region, queuedMessageIds);
|
|
10149
|
+
this.messagesQueue.enqueue(()=>{
|
|
10150
|
+
queuedMessageIds.delete(messageId);
|
|
10151
|
+
if (0 === queuedMessageIds.size) this.queuedMessageIds.delete(region);
|
|
10152
|
+
updateRegion();
|
|
10153
|
+
}, messageId);
|
|
10154
|
+
}
|
|
9449
10155
|
render() {
|
|
9450
10156
|
const hostStyles = {
|
|
9451
10157
|
position: 'absolute',
|
|
@@ -9471,7 +10177,7 @@ let AtomicAriaLive$1 = class AtomicAriaLive extends LightDomMixin(lit.LitElement
|
|
|
9471
10177
|
constructor(...args){
|
|
9472
10178
|
super(...args), this.regions = {}, this.messagesQueue = buildDebouncedQueue({
|
|
9473
10179
|
delay: 500
|
|
9474
|
-
}), this.onFindAriaLive = (event)=>{
|
|
10180
|
+
}), this.queuedMessageIds = new Map(), this.onFindAriaLive = (event)=>{
|
|
9475
10181
|
const customEvent = event;
|
|
9476
10182
|
customEvent.detail.element = this;
|
|
9477
10183
|
};
|
|
@@ -10078,7 +10784,7 @@ const styles$8 = lit.css`.atomic-modal-opened{overflow-y:hidden}atomic-layout-se
|
|
|
10078
10784
|
);width:125%}&::part(suggestions-left){flex-basis:var(
|
|
10079
10785
|
--atomic-layout-search-box-left-suggestions-width,30%
|
|
10080
10786
|
)}&::part(suggestions-right){flex-basis:calc(100% - var(--atomic-layout-search-box-left-suggestions-width, 30%))}}}atomic-layout-section[section=facets]{display:none;atomic-commerce-facets *{margin-bottom:var(--atomic-layout-spacing-y)}}atomic-layout-section[section=main]{margin-bottom:var(--atomic-layout-spacing-y)}atomic-layout-section[section=horizontal-facets]{display:flex;flex-wrap:wrap;margin-bottom:var(--atomic-layout-spacing-y);row-gap:.5rem;&>atomic-popover{display:none;margin-right:.5rem}}atomic-layout-section[section=horizontal-facets]>*{max-width:100%}atomic-layout-section[section=status]{display:grid;grid-template-areas:"atomic-breadbox atomic-breadbox" "atomic-query-summary atomic-sort" "atomic-did-you-mean atomic-did-you-mean" "atomic-notifications atomic-notifications";justify-content:space-between;atomic-commerce-breadbox{grid-area:atomic-breadbox}atomic-commerce-query-summary{align-self:center;grid-area:atomic-query-summary;overflow:hidden}atomic-commerce-sort-dropdown{grid-area:atomic-sort;justify-self:end}atomic-commerce-refine-toggle{grid-area:atomic-sort}atomic-commerce-did-you-mean{grid-area:atomic-did-you-mean}atomic-commerce-notifications{grid-area:atomic-notifications}}atomic-layout-section[section=status]>*{margin-bottom:var(--atomic-layout-spacing-y)}atomic-layout-section[section=pagination]{align-items:center;display:flex;flex-direction:column;justify-content:space-between;atomic-commerce-load-more-products{width:100%}&:has(:only-child){justify-content:center}@media only screen and (min-width:50rem){flex-direction:row}}atomic-layout-section[section=pagination]>*{margin-top:var(--atomic-layout-spacing-y)}}`;
|
|
10081
|
-
|
|
10787
|
+
var atomic_commerce_layout_tw_css = styles$8;
|
|
10082
10788
|
|
|
10083
10789
|
function _ts_decorate$S(decorators, target, key, desc) {
|
|
10084
10790
|
var c = arguments.length, r = c < 3 ? target : null === desc ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
@@ -11141,8 +11847,8 @@ class ItemLayoutController {
|
|
|
11141
11847
|
}
|
|
11142
11848
|
}
|
|
11143
11849
|
|
|
11144
|
-
const styles$7 = lit.css`/*! tailwindcss v4.3.1 | MIT License | https://tailwindcss.com */@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,::backdrop,:after,:before{--tw-font-weight:initial}}}@layer components{:host :host{font-family:var(--atomic-font-family);--tw-font-weight:var(--atomic-font-normal);font-weight:var(--atomic-font-normal)}:host .result-root.with-sections{display:grid;justify-items:stretch}@media (min-width:1024px){:host .result-root.with-sections.display-list.image-large,:host .result-root.with-sections.display-list.image-small{grid-template-areas:"badges badges.actions""visual title title title""visual title-metadata title-metadata title-metadata""visual emphasized emphasized emphasized""visual excerpt excerpt excerpt""visual bottom-metadata bottom-metadata bottom-metadata""visual children children children";grid-template-columns:minmax(0,min-content) auto 1fr auto;grid-template-rows:repeat(6,auto) minmax(0,1fr)}:host .result-root.with-sections.display-list.image-icon{grid-template-areas:"badges badges.actions""visual title title title""visual title-metadata title-metadata title-metadata""visual emphasized emphasized emphasized""visual excerpt excerpt excerpt""visual bottom-metadata bottom-metadata bottom-metadata""visual children children children";grid-template-columns:minmax(0,min-content) auto 1fr auto;grid-template-rows:repeat(7,minmax(0,min-content))}:host .result-root.with-sections.display-list.image-none{grid-template-areas:"badges.actions""title title title""title-metadata title-metadata title-metadata""emphasized emphasized emphasized""excerpt excerpt excerpt""bottom-metadata bottom-metadata bottom-metadata""children children children";grid-template-columns:auto 1fr auto;grid-template-rows:repeat(6,auto)}}:host .result-root.with-sections.display-table.image-large,:host .result-root.with-sections.display-table.image-small{grid-template-areas:"badges badges.actions""visual title title title""visual title-metadata title-metadata title-metadata""visual emphasized emphasized emphasized""visual excerpt excerpt excerpt""visual bottom-metadata bottom-metadata bottom-metadata""visual children children children";grid-template-columns:minmax(0,min-content) auto 1fr auto;grid-template-rows:repeat(6,auto) minmax(0,1fr)}:host .result-root.with-sections.display-table.image-icon{grid-template-areas:"badges badges.actions""visual title title title""visual title-metadata title-metadata title-metadata""visual emphasized emphasized emphasized""visual excerpt excerpt excerpt""visual bottom-metadata bottom-metadata bottom-metadata""visual children children children";grid-template-columns:minmax(0,min-content) auto 1fr auto;grid-template-rows:repeat(7,minmax(0,min-content))}:host .result-root.with-sections.display-table.image-none{grid-template-areas:"badges.actions""title title title""title-metadata title-metadata title-metadata""emphasized emphasized emphasized""excerpt excerpt excerpt""bottom-metadata bottom-metadata bottom-metadata""children children children";grid-template-columns:auto 1fr auto;grid-template-rows:repeat(6,auto)}@media not all and (min-width:1024px){:host .result-root.with-sections.display-list.image-large{grid-template-areas:"visual""badges""title""title-metadata""emphasized""excerpt""bottom-metadata""actions""children";grid-template-columns:100%;grid-template-rows:repeat(8,auto)}:host .result-root.with-sections.display-list.image-small{grid-template-areas:"badges badges""visual title""visual title-metadata""visual emphasized""visual.""excerpt excerpt""bottom-metadata bottom-metadata""actions actions""children children";grid-template-columns:auto minmax(0,1fr);grid-template-rows:repeat(4,auto) minmax(0,1fr) repeat(3,auto)}:host .result-root.with-sections.display-list.image-icon{grid-template-areas:"badges badges""visual title""visual title-metadata""visual emphasized""visual excerpt""visual bottom-metadata""visual actions""visual children";grid-template-columns:auto minmax(0,1fr);grid-template-rows:repeat(7,auto) 1fr}:host .result-root.with-sections.display-list.image-none{grid-template-areas:"badges""title""title-metadata""emphasized""excerpt""bottom-metadata""actions""children";grid-template-columns:100%;grid-template-rows:repeat(7,auto)}}:host .result-root.with-sections.display-grid{grid-template-areas:"badges""visual""title""title-metadata""emphasized""excerpt""children""bottom-metadata""actions";grid-template-columns:100%;grid-template-rows:repeat(9,auto)}:host .result-root.with-sections.display-grid a,:host .result-root.with-sections.display-grid button{position:relative}@media not all and (min-width:1024px){:host .result-root.with-sections.display-grid.image-large.image-large{grid-template-areas:"visual""badges""title""title-metadata""emphasized""excerpt""bottom-metadata""actions""children";grid-template-columns:100%;grid-template-rows:repeat(8,auto)}:host .result-root.with-sections.display-grid.image-large.image-small{grid-template-areas:"badges badges""visual title""visual title-metadata""visual emphasized""visual.""excerpt excerpt""bottom-metadata bottom-metadata""actions actions""children children";grid-template-columns:auto minmax(0,1fr);grid-template-rows:repeat(4,auto) minmax(0,1fr) repeat(3,auto)}:host .result-root.with-sections.display-grid.image-large.image-icon{grid-template-areas:"badges badges""visual title""visual title-metadata""visual emphasized""visual excerpt""visual bottom-metadata""visual actions""visual children";grid-template-columns:auto minmax(0,1fr);grid-template-rows:repeat(7,auto) 1fr}:host .result-root.with-sections.display-grid.image-large.image-none{grid-template-areas:"badges""title""title-metadata""emphasized""excerpt""bottom-metadata""actions""children";grid-template-columns:100%;grid-template-rows:repeat(7,auto)}}:host .link-container,:host .result-root atomic-table-element{display:none}}:host{position:relative}:host .result-root.display-grid{grid-template-areas:"badges""visual""title""title-metadata""emphasized""excerpt""bottom-metadata""actions""children"}:is(:host .with-sections.display-grid.image-large,:host .with-sections.display-grid.image-small,:host .with-sections.display-grid.image-icon,:host .with-sections.display-grid.image-none) atomic-product-section-name{-webkit-line-clamp:2;min-height:calc(var(--line-height)*2);-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}@media (min-width:1024px){:host .with-sections.display-grid.image-large atomic-product-section-children .product-child{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){:host .with-sections.display-grid.image-large atomic-product-section-children .product-child{height:auto}}:host .with-sections.display-grid.image-large atomic-product-section-children .product-child{width:16.65%}:host .with-sections.display-grid.image-small atomic-product-section-children .product-child{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){:host .with-sections.display-grid.image-small atomic-product-section-children .product-child{height:auto}}:host .with-sections.display-grid.image-small atomic-product-section-children .product-child{width:16.65%}:host .with-sections.display-grid.image-icon atomic-product-section-children .product-child,:host .with-sections.display-grid.image-none atomic-product-section-children .product-child{height:2rem;width:2rem}}@media not all and (min-width:1024px){:host .with-sections.display-grid.image-large atomic-product-section-children .product-child{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){:host .with-sections.display-grid.image-large atomic-product-section-children .product-child{height:auto}}:host .with-sections.display-grid.image-large atomic-product-section-children .product-child{width:16.65%}:host .with-sections.display-grid.image-small atomic-product-section-children .product-child{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){:host .with-sections.display-grid.image-small atomic-product-section-children .product-child{height:auto}}:host .with-sections.display-grid.image-small atomic-product-section-children .product-child{max-width:4.75rem;width:16.65%}:host .with-sections.display-grid.image-icon atomic-product-section-children .product-child,:host .with-sections.display-grid.image-none atomic-product-section-children .product-child{height:2rem;width:2rem}}:is(:host .with-sections.display-grid.density-comfortable.image-icon,:host .with-sections.display-grid.density-comfortable.image-none,:host .with-sections.display-grid.density-comfortable.image-small,:host .with-sections.display-grid.density-comfortable.image-large) atomic-product-section-description{margin-top:1.25rem}:is(:host .with-sections.display-grid.density-normal.image-icon,:host .with-sections.display-grid.density-normal.image-none,:host .with-sections.display-grid.density-normal.image-small,:host .with-sections.display-grid.density-normal.image-large) atomic-product-section-description{margin-top:.75rem}:is(:host .with-sections.display-grid.density-compact.image-icon,:host .with-sections.display-grid.density-compact.image-none,:host .with-sections.display-grid.density-compact.image-small,:host .with-sections.display-grid.density-compact.image-large) atomic-product-section-description{margin-top:.25rem}@media (min-width:1024px){:host .with-sections.display-grid.density-compact.image-large atomic-product-section-children .product-child{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){:host .with-sections.display-grid.density-compact.image-large atomic-product-section-children .product-child{height:auto}}:host .with-sections.display-grid.density-compact.image-large atomic-product-section-children .product-child{width:16.65%}:host .with-sections.display-grid.density-compact.image-small atomic-product-section-children .product-child{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){:host .with-sections.display-grid.density-compact.image-small atomic-product-section-children .product-child{height:auto}}:host .with-sections.display-grid.density-compact.image-small atomic-product-section-children .product-child{width:16.65%}:host .with-sections.display-grid.density-compact.image-icon atomic-product-section-children .product-child,:host .with-sections.display-grid.density-compact.image-none atomic-product-section-children .product-child{height:2rem;width:2rem}}@media not all and (min-width:1024px){:host .with-sections.display-grid.density-compact.image-large atomic-product-section-children .product-child{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){:host .with-sections.display-grid.density-compact.image-large atomic-product-section-children .product-child{height:auto}}:host .with-sections.display-grid.density-compact.image-large atomic-product-section-children .product-child{width:16.65%}:host .with-sections.display-grid.density-compact.image-small atomic-product-section-children .product-child{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){:host .with-sections.display-grid.density-compact.image-small atomic-product-section-children .product-child{height:auto}}:host .with-sections.display-grid.density-compact.image-small atomic-product-section-children .product-child{max-width:4.75rem;width:16.65%}:host .with-sections.display-grid.density-compact.image-icon atomic-product-section-children .product-child,:host .with-sections.display-grid.density-compact.image-none atomic-product-section-children .product-child{height:2rem;width:2rem}}@property --tw-font-weight{syntax:"*";inherits:false}`;
|
|
11145
|
-
|
|
11850
|
+
const styles$7 = lit.css`/*! tailwindcss v4.3.2 | MIT License | https://tailwindcss.com */@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,::backdrop,:after,:before{--tw-font-weight:initial}}}@layer components{:host :host{font-family:var(--atomic-font-family);--tw-font-weight:var(--atomic-font-normal);font-weight:var(--atomic-font-normal)}:host .result-root.with-sections{display:grid;justify-items:stretch}@media (min-width:1024px){:host .result-root.with-sections.display-list.image-large,:host .result-root.with-sections.display-list.image-small{grid-template-areas:"badges badges.actions""visual title title title""visual title-metadata title-metadata title-metadata""visual emphasized emphasized emphasized""visual excerpt excerpt excerpt""visual bottom-metadata bottom-metadata bottom-metadata""visual children children children";grid-template-columns:minmax(0,min-content) auto 1fr auto;grid-template-rows:repeat(6,auto) minmax(0,1fr)}:host .result-root.with-sections.display-list.image-icon{grid-template-areas:"badges badges.actions""visual title title title""visual title-metadata title-metadata title-metadata""visual emphasized emphasized emphasized""visual excerpt excerpt excerpt""visual bottom-metadata bottom-metadata bottom-metadata""visual children children children";grid-template-columns:minmax(0,min-content) auto 1fr auto;grid-template-rows:repeat(7,minmax(0,min-content))}:host .result-root.with-sections.display-list.image-none{grid-template-areas:"badges.actions""title title title""title-metadata title-metadata title-metadata""emphasized emphasized emphasized""excerpt excerpt excerpt""bottom-metadata bottom-metadata bottom-metadata""children children children";grid-template-columns:auto 1fr auto;grid-template-rows:repeat(6,auto)}}:host .result-root.with-sections.display-table.image-large,:host .result-root.with-sections.display-table.image-small{grid-template-areas:"badges badges.actions""visual title title title""visual title-metadata title-metadata title-metadata""visual emphasized emphasized emphasized""visual excerpt excerpt excerpt""visual bottom-metadata bottom-metadata bottom-metadata""visual children children children";grid-template-columns:minmax(0,min-content) auto 1fr auto;grid-template-rows:repeat(6,auto) minmax(0,1fr)}:host .result-root.with-sections.display-table.image-icon{grid-template-areas:"badges badges.actions""visual title title title""visual title-metadata title-metadata title-metadata""visual emphasized emphasized emphasized""visual excerpt excerpt excerpt""visual bottom-metadata bottom-metadata bottom-metadata""visual children children children";grid-template-columns:minmax(0,min-content) auto 1fr auto;grid-template-rows:repeat(7,minmax(0,min-content))}:host .result-root.with-sections.display-table.image-none{grid-template-areas:"badges.actions""title title title""title-metadata title-metadata title-metadata""emphasized emphasized emphasized""excerpt excerpt excerpt""bottom-metadata bottom-metadata bottom-metadata""children children children";grid-template-columns:auto 1fr auto;grid-template-rows:repeat(6,auto)}@media not all and (min-width:1024px){:host .result-root.with-sections.display-list.image-large{grid-template-areas:"visual""badges""title""title-metadata""emphasized""excerpt""bottom-metadata""actions""children";grid-template-columns:100%;grid-template-rows:repeat(8,auto)}:host .result-root.with-sections.display-list.image-small{grid-template-areas:"badges badges""visual title""visual title-metadata""visual emphasized""visual.""excerpt excerpt""bottom-metadata bottom-metadata""actions actions""children children";grid-template-columns:auto minmax(0,1fr);grid-template-rows:repeat(4,auto) minmax(0,1fr) repeat(3,auto)}:host .result-root.with-sections.display-list.image-icon{grid-template-areas:"badges badges""visual title""visual title-metadata""visual emphasized""visual excerpt""visual bottom-metadata""visual actions""visual children";grid-template-columns:auto minmax(0,1fr);grid-template-rows:repeat(7,auto) 1fr}:host .result-root.with-sections.display-list.image-none{grid-template-areas:"badges""title""title-metadata""emphasized""excerpt""bottom-metadata""actions""children";grid-template-columns:100%;grid-template-rows:repeat(7,auto)}}:host .result-root.with-sections.display-grid{grid-template-areas:"badges""visual""title""title-metadata""emphasized""excerpt""children""bottom-metadata""actions";grid-template-columns:100%;grid-template-rows:repeat(9,auto)}:host .result-root.with-sections.display-grid a,:host .result-root.with-sections.display-grid button{position:relative}@media not all and (min-width:1024px){:host .result-root.with-sections.display-grid.image-large.image-large{grid-template-areas:"visual""badges""title""title-metadata""emphasized""excerpt""bottom-metadata""actions""children";grid-template-columns:100%;grid-template-rows:repeat(8,auto)}:host .result-root.with-sections.display-grid.image-large.image-small{grid-template-areas:"badges badges""visual title""visual title-metadata""visual emphasized""visual.""excerpt excerpt""bottom-metadata bottom-metadata""actions actions""children children";grid-template-columns:auto minmax(0,1fr);grid-template-rows:repeat(4,auto) minmax(0,1fr) repeat(3,auto)}:host .result-root.with-sections.display-grid.image-large.image-icon{grid-template-areas:"badges badges""visual title""visual title-metadata""visual emphasized""visual excerpt""visual bottom-metadata""visual actions""visual children";grid-template-columns:auto minmax(0,1fr);grid-template-rows:repeat(7,auto) 1fr}:host .result-root.with-sections.display-grid.image-large.image-none{grid-template-areas:"badges""title""title-metadata""emphasized""excerpt""bottom-metadata""actions""children";grid-template-columns:100%;grid-template-rows:repeat(7,auto)}}:host .link-container,:host .result-root atomic-table-element{display:none}}:host{position:relative}:host .result-root.display-grid{grid-template-areas:"badges""visual""title""title-metadata""emphasized""excerpt""bottom-metadata""actions""children"}:is(:host .with-sections.display-grid.image-large,:host .with-sections.display-grid.image-small,:host .with-sections.display-grid.image-icon,:host .with-sections.display-grid.image-none) atomic-product-section-name{-webkit-line-clamp:2;min-height:calc(var(--line-height)*2);-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}@media (min-width:1024px){:host .with-sections.display-grid.image-large atomic-product-section-children .product-child{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){:host .with-sections.display-grid.image-large atomic-product-section-children .product-child{height:auto}}:host .with-sections.display-grid.image-large atomic-product-section-children .product-child{width:16.65%}:host .with-sections.display-grid.image-small atomic-product-section-children .product-child{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){:host .with-sections.display-grid.image-small atomic-product-section-children .product-child{height:auto}}:host .with-sections.display-grid.image-small atomic-product-section-children .product-child{width:16.65%}:host .with-sections.display-grid.image-icon atomic-product-section-children .product-child,:host .with-sections.display-grid.image-none atomic-product-section-children .product-child{height:2rem;width:2rem}}@media not all and (min-width:1024px){:host .with-sections.display-grid.image-large atomic-product-section-children .product-child{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){:host .with-sections.display-grid.image-large atomic-product-section-children .product-child{height:auto}}:host .with-sections.display-grid.image-large atomic-product-section-children .product-child{width:16.65%}:host .with-sections.display-grid.image-small atomic-product-section-children .product-child{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){:host .with-sections.display-grid.image-small atomic-product-section-children .product-child{height:auto}}:host .with-sections.display-grid.image-small atomic-product-section-children .product-child{max-width:4.75rem;width:16.65%}:host .with-sections.display-grid.image-icon atomic-product-section-children .product-child,:host .with-sections.display-grid.image-none atomic-product-section-children .product-child{height:2rem;width:2rem}}:is(:host .with-sections.display-grid.density-comfortable.image-icon,:host .with-sections.display-grid.density-comfortable.image-none,:host .with-sections.display-grid.density-comfortable.image-small,:host .with-sections.display-grid.density-comfortable.image-large) atomic-product-section-description{margin-top:1.25rem}:is(:host .with-sections.display-grid.density-normal.image-icon,:host .with-sections.display-grid.density-normal.image-none,:host .with-sections.display-grid.density-normal.image-small,:host .with-sections.display-grid.density-normal.image-large) atomic-product-section-description{margin-top:.75rem}:is(:host .with-sections.display-grid.density-compact.image-icon,:host .with-sections.display-grid.density-compact.image-none,:host .with-sections.display-grid.density-compact.image-small,:host .with-sections.display-grid.density-compact.image-large) atomic-product-section-description{margin-top:.25rem}@media (min-width:1024px){:host .with-sections.display-grid.density-compact.image-large atomic-product-section-children .product-child{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){:host .with-sections.display-grid.density-compact.image-large atomic-product-section-children .product-child{height:auto}}:host .with-sections.display-grid.density-compact.image-large atomic-product-section-children .product-child{width:16.65%}:host .with-sections.display-grid.density-compact.image-small atomic-product-section-children .product-child{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){:host .with-sections.display-grid.density-compact.image-small atomic-product-section-children .product-child{height:auto}}:host .with-sections.display-grid.density-compact.image-small atomic-product-section-children .product-child{width:16.65%}:host .with-sections.display-grid.density-compact.image-icon atomic-product-section-children .product-child,:host .with-sections.display-grid.density-compact.image-none atomic-product-section-children .product-child{height:2rem;width:2rem}}@media not all and (min-width:1024px){:host .with-sections.display-grid.density-compact.image-large atomic-product-section-children .product-child{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){:host .with-sections.display-grid.density-compact.image-large atomic-product-section-children .product-child{height:auto}}:host .with-sections.display-grid.density-compact.image-large atomic-product-section-children .product-child{width:16.65%}:host .with-sections.display-grid.density-compact.image-small atomic-product-section-children .product-child{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){:host .with-sections.display-grid.density-compact.image-small atomic-product-section-children .product-child{height:auto}}:host .with-sections.display-grid.density-compact.image-small atomic-product-section-children .product-child{max-width:4.75rem;width:16.65%}:host .with-sections.display-grid.density-compact.image-icon atomic-product-section-children .product-child,:host .with-sections.display-grid.density-compact.image-none atomic-product-section-children .product-child{height:2rem;width:2rem}}@property --tw-font-weight{syntax:"*";inherits:false}`;
|
|
11851
|
+
var atomic_product_tw_css = styles$7;
|
|
11146
11852
|
|
|
11147
11853
|
const itemContextEventName = 'atomic/resolveResult';
|
|
11148
11854
|
class MissingParentError extends Error {
|
|
@@ -11655,8 +12361,8 @@ const SlotsForNoShadowDOMMixin = (superClass)=>{
|
|
|
11655
12361
|
return SlotsForNoShadowDOMClass;
|
|
11656
12362
|
};
|
|
11657
12363
|
|
|
11658
|
-
const styles$6 = lit.css`/*! tailwindcss v4.3.
|
|
11659
|
-
|
|
12364
|
+
const styles$6 = lit.css`/*! tailwindcss v4.3.2 | MIT License | https://tailwindcss.com */atomic-product-link a{color:var(--atomic-on-background)}atomic-product-link a:focus-visible,atomic-product-link a:hover{color:var(--atomic-primary);text-decoration:underline}atomic-product-link a:focus{outline:none}atomic-product-link a:visited{color:var(--atomic-visited)}atomic-product-link a{text-decoration:none}`;
|
|
12365
|
+
var atomic_product_link_tw_css = styles$6;
|
|
11660
12366
|
|
|
11661
12367
|
function _ts_decorate$M(decorators, target, key, desc) {
|
|
11662
12368
|
var c = arguments.length, r = c < 3 ? target : null === desc ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
@@ -12400,7 +13106,7 @@ function _ts_decorate$I(decorators, target, key, desc) {
|
|
|
12400
13106
|
else for(var i = decorators.length - 1; i >= 0; i--)if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
12401
13107
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
12402
13108
|
}
|
|
12403
|
-
class AtomicResultSectionActions extends ItemSectionMixin(lit.LitElement, lit.css`/*! tailwindcss v4.3.
|
|
13109
|
+
class AtomicResultSectionActions extends ItemSectionMixin(lit.LitElement, lit.css`/*! tailwindcss v4.3.2 | MIT License | https://tailwindcss.com */atomic-result-section-actions.with-sections{overflow:hidden;text-overflow:ellipsis}atomic-result-section-actions{text-align:left}atomic-result-section-actions.with-sections{grid-area:actions}atomic-result-section-actions.with-sections atomic-result-quickview{display:inline-block}atomic-result-section-actions.with-sections{max-height:calc(var(--row-height,2rem)*2 + .5rem);--row-height:2rem;display:flex;flex-wrap:wrap;gap:.5rem}@media (min-width:1024px){atomic-result-section-actions.with-sections.display-list.density-comfortable{margin-bottom:1.5rem}atomic-result-section-actions.with-sections.display-list.density-compact,atomic-result-section-actions.with-sections.display-list.density-normal{margin-bottom:1rem}atomic-result-section-actions.with-sections.display-grid.density-comfortable{--row-height:2.5rem;margin-top:2.25rem}atomic-result-section-actions.with-sections.display-grid.density-normal{margin-top:1.75rem}atomic-result-section-actions.with-sections.display-grid.density-compact,atomic-result-section-actions.with-sections.display-grid.density-normal{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}atomic-result-section-actions.with-sections.display-grid.density-compact{margin-top:1.25rem}}@media not all and (min-width:1024px){atomic-result-section-actions.with-sections.display-list.density-comfortable{margin-top:1rem}atomic-result-section-actions.with-sections.display-list.density-normal{margin-top:.75rem}atomic-result-section-actions.with-sections.display-list.density-compact{margin-top:.5em}atomic-result-section-actions.with-sections.display-list{--row-height:2.5rem}atomic-result-section-actions.with-sections.display-grid.image-large.density-comfortable{margin-top:1rem}atomic-result-section-actions.with-sections.display-grid.image-large.density-normal{margin-top:.75rem}atomic-result-section-actions.with-sections.display-grid.image-large.density-compact{margin-top:.5em}atomic-result-section-actions.with-sections.display-grid.image-large{--row-height:2.5rem}:is(atomic-result-section-actions.with-sections.display-grid.image-small,atomic-result-section-actions.with-sections.display-grid.image-icon,atomic-result-section-actions.with-sections.display-grid.image-none).density-comfortable{margin-top:1.25rem}:is(atomic-result-section-actions.with-sections.display-grid.image-small,atomic-result-section-actions.with-sections.display-grid.image-icon,atomic-result-section-actions.with-sections.display-grid.image-none).density-normal{margin-top:1rem}:is(atomic-result-section-actions.with-sections.display-grid.image-small,atomic-result-section-actions.with-sections.display-grid.image-icon,atomic-result-section-actions.with-sections.display-grid.image-none).density-compact{margin-top:.75rem}}atomic-result-section-actions.with-sections.display-table.density-comfortable{margin-bottom:1.5rem}atomic-result-section-actions.with-sections.display-table.density-compact,atomic-result-section-actions.with-sections.display-table.density-normal{margin-bottom:1rem}`) {
|
|
12404
13110
|
}
|
|
12405
13111
|
AtomicResultSectionActions = _ts_decorate$I([
|
|
12406
13112
|
decorators_js.customElement('atomic-result-section-actions')
|
|
@@ -12412,7 +13118,7 @@ function _ts_decorate$H(decorators, target, key, desc) {
|
|
|
12412
13118
|
else for(var i = decorators.length - 1; i >= 0; i--)if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
12413
13119
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
12414
13120
|
}
|
|
12415
|
-
class AtomicResultSectionBadges extends ItemSectionMixin(lit.LitElement, lit.css`/*! tailwindcss v4.3.
|
|
13121
|
+
class AtomicResultSectionBadges extends ItemSectionMixin(lit.LitElement, lit.css`/*! tailwindcss v4.3.2 | MIT License | https://tailwindcss.com */atomic-result-section-badges{text-align:left}atomic-result-section-badges.with-sections{max-height:calc(var(--row-height,2rem)*2 + .5rem);text-overflow:ellipsis;--row-height:2rem;display:flex;flex-wrap:wrap;gap:.5rem;grid-area:badges;margin-bottom:1rem;overflow:hidden}@media (min-width:1024px){atomic-result-section-badges.with-sections.display-list.density-comfortable{margin-bottom:1.5rem}atomic-result-section-badges.with-sections.display-grid.image-icon.density-comfortable{margin-bottom:2rem}atomic-result-section-badges.with-sections.display-grid.image-icon.density-normal{margin-bottom:1.5rem}atomic-result-section-badges.with-sections.display-grid{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}}@media not all and (min-width:1024px){atomic-result-section-badges.with-sections.display-grid.image-icon,atomic-result-section-badges.with-sections.display-grid.image-none,atomic-result-section-badges.with-sections.display-grid.image-small,atomic-result-section-badges.with-sections.display-list{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}}atomic-result-section-badges.with-sections.display-table.density-comfortable{margin-bottom:1.5rem}`) {
|
|
12416
13122
|
}
|
|
12417
13123
|
AtomicResultSectionBadges = _ts_decorate$H([
|
|
12418
13124
|
decorators_js.customElement('atomic-result-section-badges')
|
|
@@ -12424,7 +13130,7 @@ function _ts_decorate$G(decorators, target, key, desc) {
|
|
|
12424
13130
|
else for(var i = decorators.length - 1; i >= 0; i--)if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
12425
13131
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
12426
13132
|
}
|
|
12427
|
-
class AtomicResultSectionBottomMetadata extends ItemSectionMixin(lit.LitElement, lit.css`/*! tailwindcss v4.3.
|
|
13133
|
+
class AtomicResultSectionBottomMetadata extends ItemSectionMixin(lit.LitElement, lit.css`/*! tailwindcss v4.3.2 | MIT License | https://tailwindcss.com */atomic-result-section-bottom-metadata.with-sections{color:var(--atomic-neutral-dark);text-overflow:ellipsis;--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));grid-area:bottom-metadata;line-height:var(--line-height);overflow:hidden}@media (min-width:1024px){atomic-result-section-bottom-metadata.with-sections.display-list.density-comfortable{margin-top:1.25rem;max-height:4rem}atomic-result-section-bottom-metadata.with-sections.display-list.density-normal{margin-top:.875rem;max-height:3.5rem}atomic-result-section-bottom-metadata.with-sections.display-list.density-compact{margin-top:.6875rem;max-height:3.25rem}atomic-result-section-bottom-metadata.with-sections.display-grid.density-comfortable{margin-top:1.75rem;max-height:4rem}atomic-result-section-bottom-metadata.with-sections.display-grid.density-normal{margin-top:1.375rem;max-height:3.5rem}atomic-result-section-bottom-metadata.with-sections.display-grid.density-compact{margin-top:.9375rem;max-height:3.25rem}}@media not all and (min-width:1024px){atomic-result-section-bottom-metadata.with-sections.display-list.density-comfortable{margin-top:.75rem;max-height:4rem}atomic-result-section-bottom-metadata.with-sections.display-list.density-normal{margin-top:.625rem;max-height:3.5rem}atomic-result-section-bottom-metadata.with-sections.display-list.density-compact{margin-top:.4375rem;max-height:3.25rem}atomic-result-section-bottom-metadata.with-sections.display-grid.image-large.density-comfortable{margin-top:.75rem;max-height:4rem}atomic-result-section-bottom-metadata.with-sections.display-grid.image-large.density-normal{margin-top:.625rem;max-height:3.5rem}atomic-result-section-bottom-metadata.with-sections.display-grid.image-large.density-compact{margin-top:.4375rem;max-height:3.25rem}atomic-result-section-bottom-metadata.with-sections.display-grid.image-icon,atomic-result-section-bottom-metadata.with-sections.display-grid.image-none,atomic-result-section-bottom-metadata.with-sections.display-grid.image-small{max-height:3rem}:is(atomic-result-section-bottom-metadata.with-sections.display-grid.image-small,atomic-result-section-bottom-metadata.with-sections.display-grid.image-icon,atomic-result-section-bottom-metadata.with-sections.display-grid.image-none).density-comfortable{margin-top:1rem}:is(atomic-result-section-bottom-metadata.with-sections.display-grid.image-small,atomic-result-section-bottom-metadata.with-sections.display-grid.image-icon,atomic-result-section-bottom-metadata.with-sections.display-grid.image-none).density-normal{margin-top:.75rem}:is(atomic-result-section-bottom-metadata.with-sections.display-grid.image-small,atomic-result-section-bottom-metadata.with-sections.display-grid.image-icon,atomic-result-section-bottom-metadata.with-sections.display-grid.image-none).density-compact{margin-top:.5rem}}atomic-result-section-bottom-metadata.with-sections.display-table.density-comfortable{margin-top:1.25rem;max-height:4rem}atomic-result-section-bottom-metadata.with-sections.display-table.density-normal{margin-top:.875rem;max-height:3.5rem}atomic-result-section-bottom-metadata.with-sections.display-table.density-compact{margin-top:.6875rem;max-height:3.25rem}`) {
|
|
12428
13134
|
}
|
|
12429
13135
|
AtomicResultSectionBottomMetadata = _ts_decorate$G([
|
|
12430
13136
|
decorators_js.customElement('atomic-result-section-bottom-metadata')
|
|
@@ -12436,7 +13142,7 @@ function _ts_decorate$F(decorators, target, key, desc) {
|
|
|
12436
13142
|
else for(var i = decorators.length - 1; i >= 0; i--)if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
12437
13143
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
12438
13144
|
}
|
|
12439
|
-
class AtomicResultSectionExcerpt extends ItemSectionMixin(lit.LitElement, lit.css`/*! tailwindcss v4.3.
|
|
13145
|
+
class AtomicResultSectionExcerpt extends ItemSectionMixin(lit.LitElement, lit.css`/*! tailwindcss v4.3.2 | MIT License | https://tailwindcss.com */atomic-result-section-excerpt.with-sections{color:var(--atomic-neutral-dark);-webkit-line-clamp:2;text-overflow:ellipsis;-webkit-box-orient:vertical;display:-webkit-box;grid-area:excerpt;overflow:hidden}@media (min-width:1024px){atomic-result-section-excerpt.with-sections.density-comfortable{--font-size:var(--atomic-text-lg);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:3;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}atomic-result-section-excerpt.with-sections.density-compact{-webkit-line-clamp:1;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}atomic-result-section-excerpt.with-sections.display-list.density-comfortable{margin-top:1.75rem;max-height:4.5rem}atomic-result-section-excerpt.with-sections.display-list.density-normal{margin-top:1.25rem;max-height:2.5rem}atomic-result-section-excerpt.with-sections.display-list.density-compact{margin-top:1rem;max-height:1.25rem}atomic-result-section-excerpt.with-sections.display-grid.density-comfortable{margin-top:2.25rem}atomic-result-section-excerpt.with-sections.display-grid.density-normal{margin-top:1.75rem}atomic-result-section-excerpt.with-sections.display-grid.density-compact{margin-top:1.25rem}}@media not all and (min-width:1024px){atomic-result-section-excerpt.with-sections.display-list.density-comfortable,atomic-result-section-excerpt.with-sections.display-list.density-normal{max-height:2.5rem}atomic-result-section-excerpt.with-sections.display-list.density-comfortable{margin-top:1.25rem}atomic-result-section-excerpt.with-sections.display-list.density-normal{margin-top:1rem}atomic-result-section-excerpt.with-sections.display-grid.image-large.density-comfortable,atomic-result-section-excerpt.with-sections.display-grid.image-large.density-normal{max-height:2.5rem}atomic-result-section-excerpt.with-sections.display-grid.image-large.density-comfortable{margin-top:1.25rem}atomic-result-section-excerpt.with-sections.display-grid.image-large.density-normal{margin-top:1rem}:is(atomic-result-section-excerpt.with-sections.display-grid.image-small,atomic-result-section-excerpt.with-sections.display-grid.image-icon,atomic-result-section-excerpt.with-sections.display-grid.image-none).density-comfortable{margin-top:1.25rem}:is(atomic-result-section-excerpt.with-sections.display-grid.image-small,atomic-result-section-excerpt.with-sections.display-grid.image-icon,atomic-result-section-excerpt.with-sections.display-grid.image-none).density-normal{margin-top:1rem}:is(atomic-result-section-excerpt.with-sections.display-grid.image-small,atomic-result-section-excerpt.with-sections.display-grid.image-icon,atomic-result-section-excerpt.with-sections.display-grid.image-none).density-compact{-webkit-line-clamp:1;-webkit-box-orient:vertical;display:-webkit-box;margin-top:.75rem;overflow:hidden}}atomic-result-section-excerpt.with-sections.display-table.density-comfortable{margin-top:1.75rem;max-height:4.5rem}atomic-result-section-excerpt.with-sections.display-table.density-normal{margin-top:1.25rem;max-height:2.5rem}atomic-result-section-excerpt.with-sections.display-table.density-compact{margin-top:1rem;max-height:1.25rem}`) {
|
|
12440
13146
|
}
|
|
12441
13147
|
AtomicResultSectionExcerpt = _ts_decorate$F([
|
|
12442
13148
|
decorators_js.customElement('atomic-result-section-excerpt')
|
|
@@ -12448,7 +13154,7 @@ function _ts_decorate$E(decorators, target, key, desc) {
|
|
|
12448
13154
|
else for(var i = decorators.length - 1; i >= 0; i--)if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
12449
13155
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
12450
13156
|
}
|
|
12451
|
-
class AtomicResultSectionTitle extends ItemSectionMixin(lit.LitElement, lit.css`/*! tailwindcss v4.3.
|
|
13157
|
+
class AtomicResultSectionTitle extends ItemSectionMixin(lit.LitElement, lit.css`/*! tailwindcss v4.3.2 | MIT License | https://tailwindcss.com */atomic-result-section-title.with-sections{color:var(--atomic-on-background);text-overflow:ellipsis;--font-size:var(--atomic-text-xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));grid-area:title;line-height:var(--line-height);overflow:hidden}atomic-result-section-title.with-sections.density-comfortable{--font-size:var(--atomic-text-2xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}@media (min-width:1024px){atomic-result-section-title.with-sections.display-grid{-webkit-line-clamp:2;word-break:break-word;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}}@media not all and (min-width:1024px){atomic-result-section-title.with-sections.display-grid.image-large,atomic-result-section-title.with-sections.display-list{--font-size:var(--atomic-text-xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}atomic-result-section-title.with-sections.display-grid.image-icon,atomic-result-section-title.with-sections.display-grid.image-none,atomic-result-section-title.with-sections.display-grid.image-small{--font-size:var(--atomic-text-lg);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:2;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;max-height:3rem;overflow:hidden}}`) {
|
|
12452
13158
|
}
|
|
12453
13159
|
AtomicResultSectionTitle = _ts_decorate$E([
|
|
12454
13160
|
decorators_js.customElement('atomic-result-section-title')
|
|
@@ -12463,7 +13169,7 @@ function _ts_decorate$D(decorators, target, key, desc) {
|
|
|
12463
13169
|
function _ts_metadata$v(k, v) {
|
|
12464
13170
|
if ("object" == typeof Reflect && "function" == typeof Reflect.metadata) return Reflect.metadata(k, v);
|
|
12465
13171
|
}
|
|
12466
|
-
class AtomicResultSectionVisual extends ItemSectionMixin(lit.LitElement, lit.css`/*! tailwindcss v4.3.
|
|
13172
|
+
class AtomicResultSectionVisual extends ItemSectionMixin(lit.LitElement, lit.css`/*! tailwindcss v4.3.2 | MIT License | https://tailwindcss.com */atomic-result-section-visual.with-sections{grid-area:visual;overflow:hidden;text-overflow:ellipsis}atomic-result-section-visual.with-sections.image-icon{border-radius:var(--atomic-border-radius);height:2rem;width:2rem}atomic-result-section-visual.with-sections.image-none{display:none}@media (min-width:1024px){atomic-result-section-visual.with-sections.display-list{margin-right:1rem}atomic-result-section-visual.with-sections.display-list.density-comfortable{margin-right:1.5rem}atomic-result-section-visual.with-sections.display-list.image-large.density-compact{height:10rem;width:10rem}atomic-result-section-visual.with-sections.display-list.image-large.density-comfortable,atomic-result-section-visual.with-sections.display-list.image-large.density-normal{height:20.375rem;width:20.375rem}atomic-result-section-visual.with-sections.display-list.image-small{height:10rem;width:10rem}atomic-result-section-visual.with-sections.display-grid{margin-bottom:.5rem}:is(atomic-result-section-visual.with-sections.display-grid.image-large,atomic-result-section-visual.with-sections.display-grid.image-small).density-comfortable{margin:0 auto 2rem}:is(atomic-result-section-visual.with-sections.display-grid.image-large,atomic-result-section-visual.with-sections.display-grid.image-small).density-normal{margin:0 auto 1.5rem}:is(atomic-result-section-visual.with-sections.display-grid.image-large,atomic-result-section-visual.with-sections.display-grid.image-small).density-compact{margin:0 auto 1rem}atomic-result-section-visual.with-sections.display-grid.image-large,atomic-result-section-visual.with-sections.display-grid.image-small{width:100%}atomic-result-section-visual.with-sections.display-grid.image-large{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){atomic-result-section-visual.with-sections.display-grid.image-large{height:19.75rem}}atomic-result-section-visual.with-sections.display-grid.image-small{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){atomic-result-section-visual.with-sections.display-grid.image-small{height:14rem}}}@media not all and (min-width:1024px){atomic-result-section-visual.with-sections.display-list{margin-right:1rem}atomic-result-section-visual.with-sections.display-list.image-large{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){atomic-result-section-visual.with-sections.display-list.image-large{height:7.25rem}}atomic-result-section-visual.with-sections.display-list.image-large{margin-bottom:1rem;margin-right:0;width:100%}atomic-result-section-visual.with-sections.display-list.image-small{height:24vw;margin-bottom:1rem;width:24vw}atomic-result-section-visual.with-sections.display-list.image-icon{margin-bottom:0}atomic-result-section-visual.with-sections.display-grid.image-large{margin-right:1rem}atomic-result-section-visual.with-sections.display-grid.image-large.image-large{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){atomic-result-section-visual.with-sections.display-grid.image-large.image-large{height:7.25rem}}atomic-result-section-visual.with-sections.display-grid.image-large.image-large{margin-bottom:1rem;margin-right:0;width:100%}atomic-result-section-visual.with-sections.display-grid.image-large.image-small{height:24vw;margin-bottom:1rem;width:24vw}atomic-result-section-visual.with-sections.display-grid.image-large.image-icon{margin-bottom:0}:is(:is(atomic-result-section-visual.with-sections.display-grid.image-small,atomic-result-section-visual.with-sections.display-grid.image-icon,atomic-result-section-visual.with-sections.display-grid.image-none).image-large,:is(atomic-result-section-visual.with-sections.display-grid.image-small,atomic-result-section-visual.with-sections.display-grid.image-icon,atomic-result-section-visual.with-sections.display-grid.image-none).image-small).density-comfortable{margin-bottom:1rem}:is(:is(atomic-result-section-visual.with-sections.display-grid.image-small,atomic-result-section-visual.with-sections.display-grid.image-icon,atomic-result-section-visual.with-sections.display-grid.image-none).image-large,:is(atomic-result-section-visual.with-sections.display-grid.image-small,atomic-result-section-visual.with-sections.display-grid.image-icon,atomic-result-section-visual.with-sections.display-grid.image-none).image-small).density-normal{margin-bottom:.75rem}:is(:is(atomic-result-section-visual.with-sections.display-grid.image-small,atomic-result-section-visual.with-sections.display-grid.image-icon,atomic-result-section-visual.with-sections.display-grid.image-none).image-large,:is(atomic-result-section-visual.with-sections.display-grid.image-small,atomic-result-section-visual.with-sections.display-grid.image-icon,atomic-result-section-visual.with-sections.display-grid.image-none).image-small).density-compact{margin-bottom:.5rem}:is(atomic-result-section-visual.with-sections.display-grid.image-small,atomic-result-section-visual.with-sections.display-grid.image-icon,atomic-result-section-visual.with-sections.display-grid.image-none).image-large,:is(atomic-result-section-visual.with-sections.display-grid.image-small,atomic-result-section-visual.with-sections.display-grid.image-icon,atomic-result-section-visual.with-sections.display-grid.image-none).image-small{width:100%}:is(atomic-result-section-visual.with-sections.display-grid.image-small,atomic-result-section-visual.with-sections.display-grid.image-icon,atomic-result-section-visual.with-sections.display-grid.image-none).image-small{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){:is(atomic-result-section-visual.with-sections.display-grid.image-small,atomic-result-section-visual.with-sections.display-grid.image-icon,atomic-result-section-visual.with-sections.display-grid.image-none).image-small{height:9rem}}:is(atomic-result-section-visual.with-sections.display-grid.image-small,atomic-result-section-visual.with-sections.display-grid.image-icon,atomic-result-section-visual.with-sections.display-grid.image-none).image-small{height:10.25rem;width:10.25rem}}atomic-result-section-visual.with-sections.display-table{margin-right:1rem}atomic-result-section-visual.with-sections.display-table.density-comfortable{margin-right:1.5rem}atomic-result-section-visual.with-sections.display-table.image-large.density-compact{height:10rem;width:10rem}atomic-result-section-visual.with-sections.display-table.image-large.density-comfortable,atomic-result-section-visual.with-sections.display-table.image-large.density-normal{height:20.375rem;width:20.375rem}atomic-result-section-visual.with-sections.display-table.image-small{height:10rem;width:10rem}`) {
|
|
12467
13173
|
}
|
|
12468
13174
|
_ts_decorate$D([
|
|
12469
13175
|
decorators_js.property({
|
|
@@ -12539,7 +13245,7 @@ class AtomicResultPlaceholder extends lit.LitElement {
|
|
|
12539
13245
|
`;
|
|
12540
13246
|
}
|
|
12541
13247
|
}
|
|
12542
|
-
AtomicResultPlaceholder.styles = lit.css`/*! tailwindcss v4.3.1 | MIT License | https://tailwindcss.com */@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,::backdrop,:after,:before{--tw-font-weight:initial;--tw-border-style:solid}}}@layer components{:host :host{font-family:var(--atomic-font-family);--tw-font-weight:var(--atomic-font-normal);font-weight:var(--atomic-font-normal)}:host atomic-result-section-actions,:host atomic-result-section-badges{text-align:left}:host atomic-result-section-title-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:host atomic-result-section-emphasized{--font-size:var(--atomic-text-2xl);font-size:var(--font-size);font-weight:500;--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.5rem}:host .result-root.with-sections{display:grid;justify-items:stretch}:host .result-root.with-sections atomic-result-section-visual{grid-area:visual}:host .result-root.with-sections atomic-result-section-badges{grid-area:badges}:host .result-root.with-sections atomic-result-section-actions{grid-area:actions}:host .result-root.with-sections atomic-result-section-actions atomic-result-quickview{display:inline-block}:host .result-root.with-sections atomic-result-section-title{color:var(--atomic-on-background);grid-area:title}:host .result-root.with-sections atomic-result-section-title-metadata{grid-area:title-metadata}:host .result-root.with-sections atomic-result-section-emphasized{grid-area:emphasized}:host .result-root.with-sections atomic-result-section-excerpt{color:var(--atomic-neutral-dark);grid-area:excerpt}:host .result-root.with-sections atomic-result-section-bottom-metadata{color:var(--atomic-neutral-dark);grid-area:bottom-metadata}:host .result-root.with-sections atomic-result-section-children{grid-area:children}:host .result-root.with-sections atomic-result-section-actions,:host .result-root.with-sections atomic-result-section-badges{display:flex;flex-wrap:wrap;gap:.5rem;max-height:calc(var(--row-height,2rem)*2 + .5rem)}:host .result-root.with-sections atomic-result-section-actions,:host .result-root.with-sections atomic-result-section-badges,:host .result-root.with-sections atomic-result-section-bottom-metadata,:host .result-root.with-sections atomic-result-section-emphasized,:host .result-root.with-sections atomic-result-section-excerpt,:host .result-root.with-sections atomic-result-section-title,:host .result-root.with-sections atomic-result-section-title-metadata,:host .result-root.with-sections atomic-result-section-visual{overflow:hidden;text-overflow:ellipsis}:host .result-root.with-sections.image-icon atomic-result-section-visual{border-radius:var(--atomic-border-radius)}@media (min-width:1024px){:host .result-root.with-sections.display-list.image-large.density-compact atomic-result-section-visual{height:10.25rem;width:10.25rem}:host .result-root.with-sections.display-list atomic-result-section-children atomic-insight-result-children::part(children-root),:host .result-root.with-sections.display-list atomic-result-section-children atomic-result-children::part(children-root){border-color:var(--atomic-neutral);border-radius:16px;border-style:var(--tw-border-style);border-width:1px}:host .result-root.with-sections.display-list.density-comfortable atomic-result-section-visual{margin-right:1.5rem}:host .result-root.with-sections.display-list.density-comfortable atomic-result-section-actions,:host .result-root.with-sections.display-list.density-comfortable atomic-result-section-badges{--row-height:2rem;margin-bottom:1.5rem}:host .result-root.with-sections.display-list.density-comfortable atomic-result-section-title{--font-size:var(--atomic-text-2xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:host .result-root.with-sections.display-list.density-comfortable atomic-result-section-excerpt{--font-size:var(--atomic-text-lg);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:3;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:1.75rem;max-height:4.5rem;overflow:hidden}:host .result-root.with-sections.display-list.density-comfortable atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:1.25rem;max-height:4rem}:host .result-root.with-sections.display-list.density-comfortable atomic-result-section-title-metadata{margin-top:.475rem}:is(:host .result-root.with-sections.display-list.density-comfortable atomic-result-children,:host .result-root.with-sections.display-list.density-comfortable atomic-insight-result-children)::part(children-root){border-color:var(--atomic-neutral);border-radius:16px;border-style:var(--tw-border-style);border-width:1px;margin-top:1.25rem;padding:1.75rem}:is(:host .result-root.with-sections.display-list.density-comfortable atomic-result-children,:host .result-root.with-sections.display-list.density-comfortable atomic-insight-result-children)::part(show-hide-button){margin-bottom:1.25rem;margin-top:1.25rem}:host .result-root.with-sections.display-list.density-comfortable .placeholder,:host .result-root.with-sections.display-list.density-comfortable.child-result:not(.last-child){margin-bottom:1.75rem}:host .result-root.with-sections.display-list.density-normal atomic-result-section-visual{margin-right:1rem}:host .result-root.with-sections.display-list.density-normal atomic-result-section-actions,:host .result-root.with-sections.display-list.density-normal atomic-result-section-badges{--row-height:2rem;margin-bottom:1rem}:host .result-root.with-sections.display-list.density-normal atomic-result-section-title{--font-size:var(--atomic-text-xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:host .result-root.with-sections.display-list.density-normal atomic-result-section-excerpt{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:2;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:1.25rem;max-height:2.5rem;overflow:hidden}:host .result-root.with-sections.display-list.density-normal atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.875rem;max-height:3.5rem}:host .result-root.with-sections.display-list.density-normal atomic-result-section-title-metadata{margin-top:.475rem}:is(:host .result-root.with-sections.display-list.density-normal atomic-result-children,:host .result-root.with-sections.display-list.density-normal atomic-insight-result-children)::part(children-root){border-color:var(--atomic-neutral);border-radius:16px;border-style:var(--tw-border-style);border-width:1px;margin-top:.875rem;padding:1.5rem}:is(:host .result-root.with-sections.display-list.density-normal atomic-result-children,:host .result-root.with-sections.display-list.density-normal atomic-insight-result-children)::part(show-hide-button){margin-bottom:.875rem;margin-top:.875rem}:host .result-root.with-sections.display-list.density-normal .placeholder,:host .result-root.with-sections.display-list.density-normal.child-result:not(.last-child){margin-bottom:1.5rem}:host .result-root.with-sections.display-list.density-compact atomic-result-section-visual{margin-right:1rem}:host .result-root.with-sections.display-list.density-compact atomic-result-section-actions,:host .result-root.with-sections.display-list.density-compact atomic-result-section-badges{--row-height:2rem;margin-bottom:1rem}:host .result-root.with-sections.display-list.density-compact atomic-result-section-title{--font-size:var(--atomic-text-xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:host .result-root.with-sections.display-list.density-compact atomic-result-section-excerpt{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:1;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:1rem;max-height:1.25rem;overflow:hidden}:host .result-root.with-sections.display-list.density-compact atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.6875rem;max-height:3.25rem}:host .result-root.with-sections.display-list.density-compact atomic-result-section-title-metadata{margin-top:.475rem}:is(:host .result-root.with-sections.display-list.density-compact atomic-result-children,:host .result-root.with-sections.display-list.density-compact atomic-insight-result-children)::part(children-root){border-color:var(--atomic-neutral);border-radius:16px;border-style:var(--tw-border-style);border-width:1px;margin-top:.475rem;padding:1rem}:is(:host .result-root.with-sections.display-list.density-compact atomic-result-children,:host .result-root.with-sections.display-list.density-compact atomic-insight-result-children)::part(show-hide-button){margin-bottom:.475rem;margin-top:.475rem}:host .result-root.with-sections.display-list.density-compact .placeholder,:host .result-root.with-sections.display-list.density-compact.child-result:not(.last-child){margin-bottom:1rem}:host .result-root.with-sections.display-list.image-large,:host .result-root.with-sections.display-list.image-small{grid-template-areas:"badges badges.actions""visual title title title""visual title-metadata title-metadata title-metadata""visual emphasized emphasized emphasized""visual excerpt excerpt excerpt""visual bottom-metadata bottom-metadata bottom-metadata""visual children children children";grid-template-columns:minmax(0,min-content) auto 1fr auto;grid-template-rows:repeat(6,auto) minmax(0,1fr)}:is(:host .result-root.with-sections.display-list.image-large.density-comfortable,:host .result-root.with-sections.display-list.image-large.density-normal) atomic-result-section-visual{height:20.375rem;width:20.375rem}:is(:host .result-root.with-sections.display-list.image-small,:host .result-root.with-sections.display-list.image-large.density-compact) atomic-result-section-visual{height:10rem;width:10rem}:host .result-root.with-sections.display-list.image-icon{grid-template-areas:"badges badges.actions""visual title title title""visual title-metadata title-metadata title-metadata""visual emphasized emphasized emphasized""visual excerpt excerpt excerpt""visual bottom-metadata bottom-metadata bottom-metadata""visual children children children";grid-template-columns:minmax(0,min-content) auto 1fr auto;grid-template-rows:repeat(7,minmax(0,min-content))}:host .result-root.with-sections.display-list.image-icon atomic-result-section-visual{height:2rem;width:2rem}:host .result-root.with-sections.display-list.image-none{grid-template-areas:"badges.actions""title title title""title-metadata title-metadata title-metadata""emphasized emphasized emphasized""excerpt excerpt excerpt""bottom-metadata bottom-metadata bottom-metadata""children children children";grid-template-columns:auto 1fr auto;grid-template-rows:repeat(6,auto)}:host .result-root.with-sections.display-list.image-none atomic-result-section-visual{display:none}}@media not all and (min-width:1024px){:host .result-root.with-sections.display-list atomic-result-section-children atomic-insight-result-children::part(children-root),:host .result-root.with-sections.display-list atomic-result-section-children atomic-result-children::part(children-root){border-top:1px var(--tw-border-style) var(--atomic-neutral)}:host .result-root.with-sections.display-list.density-comfortable atomic-result-section-visual{margin-right:1rem}:host .result-root.with-sections.display-list.density-comfortable atomic-result-section-badges{--row-height:2rem;margin-bottom:1rem}:host .result-root.with-sections.display-list.density-comfortable atomic-result-section-actions{--row-height:2.5rem;margin-top:1rem}:host .result-root.with-sections.display-list.density-comfortable atomic-result-section-title{--font-size:var(--atomic-text-xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:host .result-root.with-sections.display-list.density-comfortable atomic-result-section-excerpt{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:2;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:1.25rem;max-height:2.5rem;overflow:hidden}:host .result-root.with-sections.display-list.density-comfortable atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.75rem;max-height:4rem}:host .result-root.with-sections.display-list.density-comfortable atomic-result-section-title-metadata{margin-top:.475rem}:is(:host .result-root.with-sections.display-list.density-comfortable atomic-result-children,:host .result-root.with-sections.display-list.density-comfortable atomic-insight-result-children)::part(children-root){margin-inline:-1rem;margin-top:1rem;padding-top:1.75rem;padding-inline:1rem}:is(:host .result-root.with-sections.display-list.density-comfortable atomic-result-children,:host .result-root.with-sections.display-list.density-comfortable atomic-insight-result-children)::part(show-hide-button){margin-bottom:1.25rem;margin-top:1.25rem}:host .result-root.with-sections.display-list.density-comfortable .placeholder,:host .result-root.with-sections.display-list.density-comfortable.child-result:not(.last-child){margin-bottom:1.75rem}:host .result-root.with-sections.display-list.density-normal atomic-result-section-visual{margin-right:1rem}:host .result-root.with-sections.display-list.density-normal atomic-result-section-badges{--row-height:2rem;margin-bottom:1rem}:host .result-root.with-sections.display-list.density-normal atomic-result-section-actions{--row-height:2.5rem;margin-top:.75rem}:host .result-root.with-sections.display-list.density-normal atomic-result-section-title{--font-size:var(--atomic-text-xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:host .result-root.with-sections.display-list.density-normal atomic-result-section-excerpt{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:2;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:1rem;max-height:2.5rem;overflow:hidden}:host .result-root.with-sections.display-list.density-normal atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.625rem;max-height:3.5rem}:host .result-root.with-sections.display-list.density-normal atomic-result-section-title-metadata{margin-top:.475rem}:is(:host .result-root.with-sections.display-list.density-normal atomic-result-children,:host .result-root.with-sections.display-list.density-normal atomic-insight-result-children)::part(children-root){margin-inline:-1rem;margin-top:1rem;padding-top:1.5rem;padding-inline:1rem}:is(:host .result-root.with-sections.display-list.density-normal atomic-result-children,:host .result-root.with-sections.display-list.density-normal atomic-insight-result-children)::part(show-hide-button){margin-bottom:.875rem;margin-top:.875rem}:host .result-root.with-sections.display-list.density-normal .placeholder,:host .result-root.with-sections.display-list.density-normal.child-result:not(.last-child){margin-bottom:1.5rem}:host .result-root.with-sections.display-list.density-compact atomic-result-section-visual{margin-right:1rem}:host .result-root.with-sections.display-list.density-compact atomic-result-section-badges{--row-height:2rem;margin-bottom:1rem}:host .result-root.with-sections.display-list.density-compact atomic-result-section-actions{--row-height:2.5rem;margin-top:.5em}:host .result-root.with-sections.display-list.density-compact atomic-result-section-title{--font-size:var(--atomic-text-xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:host .result-root.with-sections.display-list.density-compact atomic-result-section-excerpt{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:1;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:.75rem;max-height:1.25rem;overflow:hidden}:host .result-root.with-sections.display-list.density-compact atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.4375rem;max-height:3.25rem}:host .result-root.with-sections.display-list.density-compact atomic-result-section-title-metadata{margin-top:.475rem}:is(:host .result-root.with-sections.display-list.density-compact atomic-result-children,:host .result-root.with-sections.display-list.density-compact atomic-insight-result-children)::part(children-root){margin-inline:-1rem;margin-top:1rem;padding-top:1rem;padding-inline:1rem}:is(:host .result-root.with-sections.display-list.density-compact atomic-result-children,:host .result-root.with-sections.display-list.density-compact atomic-insight-result-children)::part(show-hide-button){margin-bottom:.475rem;margin-top:.475rem}:host .result-root.with-sections.display-list.density-compact .placeholder,:host .result-root.with-sections.display-list.density-compact.child-result:not(.last-child){margin-bottom:1rem}:host .result-root.with-sections.display-list.image-large{grid-template-areas:"visual""badges""title""title-metadata""emphasized""excerpt""bottom-metadata""actions""children";grid-template-columns:100%;grid-template-rows:repeat(8,auto)}:host .result-root.with-sections.display-list.image-large atomic-result-section-visual{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){:host .result-root.with-sections.display-list.image-large atomic-result-section-visual{height:7.25rem}}:host .result-root.with-sections.display-list.image-large atomic-result-section-visual{margin-bottom:1rem;margin-right:0;width:100%}:host .result-root.with-sections.display-list.image-small{grid-template-areas:"badges badges""visual title""visual title-metadata""visual emphasized""visual.""excerpt excerpt""bottom-metadata bottom-metadata""actions actions""children children";grid-template-columns:auto minmax(0,1fr);grid-template-rows:repeat(4,auto) minmax(0,1fr) repeat(3,auto)}:host .result-root.with-sections.display-list.image-small atomic-result-section-visual{height:24vw;margin-bottom:1rem;width:24vw}:host .result-root.with-sections.display-list.image-icon{grid-template-areas:"badges badges""visual title""visual title-metadata""visual emphasized""visual excerpt""visual bottom-metadata""visual actions""visual children";grid-template-columns:auto minmax(0,1fr);grid-template-rows:repeat(7,auto) 1fr}:host .result-root.with-sections.display-list.image-icon atomic-result-section-visual{height:2rem;margin-bottom:0;width:2rem}:host .result-root.with-sections.display-list.image-none{grid-template-areas:"badges""title""title-metadata""emphasized""excerpt""bottom-metadata""actions""children";grid-template-columns:100%;grid-template-rows:repeat(7,auto)}:host .result-root.with-sections.display-list.image-none atomic-result-section-visual{display:none}}:host .result-root.with-sections.display-grid a,:host .result-root.with-sections.display-grid button{position:relative}@media (min-width:1024px){:host .result-root.with-sections.display-grid.image-large{grid-template-areas:"badges""visual""title""title-metadata""emphasized""excerpt""children""bottom-metadata""actions";grid-template-columns:100%;grid-template-rows:repeat(9,auto)}:is(:host .result-root.with-sections.display-grid.image-large.density-comfortable.image-large,:host .result-root.with-sections.display-grid.image-large.density-comfortable.image-small) atomic-result-section-visual{margin:0 auto 2rem}:host .result-root.with-sections.display-grid.image-large.density-comfortable.image-icon atomic-result-section-badges{margin-bottom:2rem}:host .result-root.with-sections.display-grid.image-large.density-comfortable.image-icon atomic-result-section-visual{height:2rem;width:2rem}:host .result-root.with-sections.display-grid.image-large.density-comfortable atomic-result-section-visual{margin-bottom:.5rem}:host .result-root.with-sections.display-grid.image-large.density-comfortable atomic-result-section-badges{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);--row-height:2rem;margin-bottom:1rem}:host .result-root.with-sections.display-grid.image-large.density-comfortable atomic-result-section-actions{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);--row-height:2.5rem;margin-top:2.25rem}:host .result-root.with-sections.display-grid.image-large.density-comfortable atomic-result-section-title{--font-size:var(--atomic-text-2xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:2;line-height:var(--line-height);word-break:break-word;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}:host .result-root.with-sections.display-grid.image-large.density-comfortable atomic-result-section-title-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.475rem}:host .result-root.with-sections.display-grid.image-large.density-comfortable atomic-result-section-emphasized{--font-size:var(--atomic-text-2xl);font-size:var(--font-size);font-weight:500;--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:host .result-root.with-sections.display-grid.image-large.density-comfortable atomic-result-section-excerpt{--font-size:var(--atomic-text-lg);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:3;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:2.25rem;overflow:hidden}:host .result-root.with-sections.display-grid.image-large.density-comfortable atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:1.75rem;max-height:4rem}:is(:host .result-root.with-sections.display-grid.image-large.density-normal.image-large,:host .result-root.with-sections.display-grid.image-large.density-normal.image-small) atomic-result-section-visual{margin:0 auto 1.5rem}:host .result-root.with-sections.display-grid.image-large.density-normal.image-icon atomic-result-section-badges{margin-bottom:1.5rem}:host .result-root.with-sections.display-grid.image-large.density-normal.image-icon atomic-result-section-visual{height:2rem;width:2rem}:host .result-root.with-sections.display-grid.image-large.density-normal atomic-result-section-visual{margin-bottom:.5rem}:host .result-root.with-sections.display-grid.image-large.density-normal atomic-result-section-badges{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);--row-height:2rem;margin-bottom:1rem}:host .result-root.with-sections.display-grid.image-large.density-normal atomic-result-section-actions{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);--row-height:2rem;margin-top:1.75rem}:host .result-root.with-sections.display-grid.image-large.density-normal atomic-result-section-title{--font-size:var(--atomic-text-xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:2;line-height:var(--line-height);word-break:break-word;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}:host .result-root.with-sections.display-grid.image-large.density-normal atomic-result-section-title-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.475rem}:host .result-root.with-sections.display-grid.image-large.density-normal atomic-result-section-emphasized{--font-size:var(--atomic-text-2xl);font-size:var(--font-size);font-weight:500;--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:host .result-root.with-sections.display-grid.image-large.density-normal atomic-result-section-excerpt{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:2;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:1.75rem;overflow:hidden}:host .result-root.with-sections.display-grid.image-large.density-normal atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:1.375rem;max-height:3.5rem}:is(:host .result-root.with-sections.display-grid.image-large.density-compact.image-large,:host .result-root.with-sections.display-grid.image-large.density-compact.image-small) atomic-result-section-visual{margin:0 auto 1rem}:host .result-root.with-sections.display-grid.image-large.density-compact.image-icon atomic-result-section-badges{margin-bottom:1rem}:host .result-root.with-sections.display-grid.image-large.density-compact.image-icon atomic-result-section-visual{height:2rem;width:2rem}:host .result-root.with-sections.display-grid.image-large.density-compact atomic-result-section-visual{margin-bottom:.5rem}:host .result-root.with-sections.display-grid.image-large.density-compact atomic-result-section-badges{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);--row-height:2rem;margin-bottom:1rem}:host .result-root.with-sections.display-grid.image-large.density-compact atomic-result-section-actions{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);--row-height:2rem;margin-top:1.25rem}:host .result-root.with-sections.display-grid.image-large.density-compact atomic-result-section-title{--font-size:var(--atomic-text-xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:2;line-height:var(--line-height);word-break:break-word;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}:host .result-root.with-sections.display-grid.image-large.density-compact atomic-result-section-title-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.475rem}:host .result-root.with-sections.display-grid.image-large.density-compact atomic-result-section-emphasized{--font-size:var(--atomic-text-2xl);font-size:var(--font-size);font-weight:500;--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:host .result-root.with-sections.display-grid.image-large.density-compact atomic-result-section-excerpt{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:1;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:1.25rem;overflow:hidden}:host .result-root.with-sections.display-grid.image-large.density-compact atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.9375rem;max-height:3.25rem}:host .result-root.with-sections.display-grid.image-large.image-large atomic-result-section-visual{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){:host .result-root.with-sections.display-grid.image-large.image-large atomic-result-section-visual{height:19.75rem}}:host .result-root.with-sections.display-grid.image-large.image-large atomic-result-section-visual{width:100%}:host .result-root.with-sections.display-grid.image-large.image-large atomic-result-section-badges{margin-bottom:1rem}:host .result-root.with-sections.display-grid.image-large.image-small atomic-result-section-visual{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){:host .result-root.with-sections.display-grid.image-large.image-small atomic-result-section-visual{height:14rem}}:host .result-root.with-sections.display-grid.image-large.image-small atomic-result-section-visual{width:100%}:host .result-root.with-sections.display-grid.image-large.image-none atomic-result-section-visual{display:none}}@media not all and (min-width:1024px){:host .result-root.with-sections.display-grid.image-large atomic-result-section-children atomic-insight-result-children::part(children-root),:host .result-root.with-sections.display-grid.image-large atomic-result-section-children atomic-result-children::part(children-root){border-top:1px var(--tw-border-style) var(--atomic-neutral)}:host .result-root.with-sections.display-grid.image-large.density-comfortable atomic-result-section-visual{margin-right:1rem}:host .result-root.with-sections.display-grid.image-large.density-comfortable atomic-result-section-badges{--row-height:2rem;margin-bottom:1rem}:host .result-root.with-sections.display-grid.image-large.density-comfortable atomic-result-section-actions{--row-height:2.5rem;margin-top:1rem}:host .result-root.with-sections.display-grid.image-large.density-comfortable atomic-result-section-title{--font-size:var(--atomic-text-xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:host .result-root.with-sections.display-grid.image-large.density-comfortable atomic-result-section-excerpt{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:2;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:1.25rem;max-height:2.5rem;overflow:hidden}:host .result-root.with-sections.display-grid.image-large.density-comfortable atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.75rem;max-height:4rem}:host .result-root.with-sections.display-grid.image-large.density-comfortable atomic-result-section-title-metadata{margin-top:.475rem}:is(:host .result-root.with-sections.display-grid.image-large.density-comfortable atomic-result-children,:host .result-root.with-sections.display-grid.image-large.density-comfortable atomic-insight-result-children)::part(children-root){margin-inline:-1rem;margin-top:1rem;padding-top:1.75rem;padding-inline:1rem}:is(:host .result-root.with-sections.display-grid.image-large.density-comfortable atomic-result-children,:host .result-root.with-sections.display-grid.image-large.density-comfortable atomic-insight-result-children)::part(show-hide-button){margin-bottom:1.25rem;margin-top:1.25rem}:host .result-root.with-sections.display-grid.image-large.density-comfortable .placeholder,:host .result-root.with-sections.display-grid.image-large.density-comfortable.child-result:not(.last-child){margin-bottom:1.75rem}:host .result-root.with-sections.display-grid.image-large.density-normal atomic-result-section-visual{margin-right:1rem}:host .result-root.with-sections.display-grid.image-large.density-normal atomic-result-section-badges{--row-height:2rem;margin-bottom:1rem}:host .result-root.with-sections.display-grid.image-large.density-normal atomic-result-section-actions{--row-height:2.5rem;margin-top:.75rem}:host .result-root.with-sections.display-grid.image-large.density-normal atomic-result-section-title{--font-size:var(--atomic-text-xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:host .result-root.with-sections.display-grid.image-large.density-normal atomic-result-section-excerpt{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:2;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:1rem;max-height:2.5rem;overflow:hidden}:host .result-root.with-sections.display-grid.image-large.density-normal atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.625rem;max-height:3.5rem}:host .result-root.with-sections.display-grid.image-large.density-normal atomic-result-section-title-metadata{margin-top:.475rem}:is(:host .result-root.with-sections.display-grid.image-large.density-normal atomic-result-children,:host .result-root.with-sections.display-grid.image-large.density-normal atomic-insight-result-children)::part(children-root){margin-inline:-1rem;margin-top:1rem;padding-top:1.5rem;padding-inline:1rem}:is(:host .result-root.with-sections.display-grid.image-large.density-normal atomic-result-children,:host .result-root.with-sections.display-grid.image-large.density-normal atomic-insight-result-children)::part(show-hide-button){margin-bottom:.875rem;margin-top:.875rem}:host .result-root.with-sections.display-grid.image-large.density-normal .placeholder,:host .result-root.with-sections.display-grid.image-large.density-normal.child-result:not(.last-child){margin-bottom:1.5rem}:host .result-root.with-sections.display-grid.image-large.density-compact atomic-result-section-visual{margin-right:1rem}:host .result-root.with-sections.display-grid.image-large.density-compact atomic-result-section-badges{--row-height:2rem;margin-bottom:1rem}:host .result-root.with-sections.display-grid.image-large.density-compact atomic-result-section-actions{--row-height:2.5rem;margin-top:.5em}:host .result-root.with-sections.display-grid.image-large.density-compact atomic-result-section-title{--font-size:var(--atomic-text-xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:host .result-root.with-sections.display-grid.image-large.density-compact atomic-result-section-excerpt{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:1;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:.75rem;max-height:1.25rem;overflow:hidden}:host .result-root.with-sections.display-grid.image-large.density-compact atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.4375rem;max-height:3.25rem}:host .result-root.with-sections.display-grid.image-large.density-compact atomic-result-section-title-metadata{margin-top:.475rem}:is(:host .result-root.with-sections.display-grid.image-large.density-compact atomic-result-children,:host .result-root.with-sections.display-grid.image-large.density-compact atomic-insight-result-children)::part(children-root){margin-inline:-1rem;margin-top:1rem;padding-top:1rem;padding-inline:1rem}:is(:host .result-root.with-sections.display-grid.image-large.density-compact atomic-result-children,:host .result-root.with-sections.display-grid.image-large.density-compact atomic-insight-result-children)::part(show-hide-button){margin-bottom:.475rem;margin-top:.475rem}:host .result-root.with-sections.display-grid.image-large.density-compact .placeholder,:host .result-root.with-sections.display-grid.image-large.density-compact.child-result:not(.last-child){margin-bottom:1rem}:host .result-root.with-sections.display-grid.image-large.image-large{grid-template-areas:"visual""badges""title""title-metadata""emphasized""excerpt""bottom-metadata""actions""children";grid-template-columns:100%;grid-template-rows:repeat(8,auto)}:host .result-root.with-sections.display-grid.image-large.image-large atomic-result-section-visual{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){:host .result-root.with-sections.display-grid.image-large.image-large atomic-result-section-visual{height:7.25rem}}:host .result-root.with-sections.display-grid.image-large.image-large atomic-result-section-visual{margin-bottom:1rem;margin-right:0;width:100%}:host .result-root.with-sections.display-grid.image-large.image-small{grid-template-areas:"badges badges""visual title""visual title-metadata""visual emphasized""visual.""excerpt excerpt""bottom-metadata bottom-metadata""actions actions""children children";grid-template-columns:auto minmax(0,1fr);grid-template-rows:repeat(4,auto) minmax(0,1fr) repeat(3,auto)}:host .result-root.with-sections.display-grid.image-large.image-small atomic-result-section-visual{height:24vw;margin-bottom:1rem;width:24vw}:host .result-root.with-sections.display-grid.image-large.image-icon{grid-template-areas:"badges badges""visual title""visual title-metadata""visual emphasized""visual excerpt""visual bottom-metadata""visual actions""visual children";grid-template-columns:auto minmax(0,1fr);grid-template-rows:repeat(7,auto) 1fr}:host .result-root.with-sections.display-grid.image-large.image-icon atomic-result-section-visual{height:2rem;margin-bottom:0;width:2rem}:host .result-root.with-sections.display-grid.image-large.image-none{grid-template-areas:"badges""title""title-metadata""emphasized""excerpt""bottom-metadata""actions""children";grid-template-columns:100%;grid-template-rows:repeat(7,auto)}:host .result-root.with-sections.display-grid.image-large.image-none atomic-result-section-visual{display:none}}@media (min-width:1024px){:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none,:host .result-root.with-sections.display-grid.image-small{grid-template-areas:"badges""visual""title""title-metadata""emphasized""excerpt""children""bottom-metadata""actions";grid-template-columns:100%;grid-template-rows:repeat(9,auto)}:is(:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable.image-large,:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable.image-small) atomic-result-section-visual{margin:0 auto 2rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable.image-icon atomic-result-section-badges{margin-bottom:2rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable.image-icon atomic-result-section-visual{height:2rem;width:2rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable atomic-result-section-visual{margin-bottom:.5rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable atomic-result-section-badges{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);--row-height:2rem;margin-bottom:1rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable atomic-result-section-actions{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);--row-height:2.5rem;margin-top:2.25rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable atomic-result-section-title{--font-size:var(--atomic-text-2xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:2;line-height:var(--line-height);word-break:break-word;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable atomic-result-section-title-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.475rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable atomic-result-section-emphasized{--font-size:var(--atomic-text-2xl);font-size:var(--font-size);font-weight:500;--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable atomic-result-section-excerpt{--font-size:var(--atomic-text-lg);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:3;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:2.25rem;overflow:hidden}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:1.75rem;max-height:4rem}:is(:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal.image-large,:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal.image-small) atomic-result-section-visual{margin:0 auto 1.5rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal.image-icon atomic-result-section-badges{margin-bottom:1.5rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal.image-icon atomic-result-section-visual{height:2rem;width:2rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal atomic-result-section-visual{margin-bottom:.5rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal atomic-result-section-badges{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);--row-height:2rem;margin-bottom:1rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal atomic-result-section-actions{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);--row-height:2rem;margin-top:1.75rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal atomic-result-section-title{--font-size:var(--atomic-text-xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:2;line-height:var(--line-height);word-break:break-word;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal atomic-result-section-title-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.475rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal atomic-result-section-emphasized{--font-size:var(--atomic-text-2xl);font-size:var(--font-size);font-weight:500;--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal atomic-result-section-excerpt{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:2;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:1.75rem;overflow:hidden}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:1.375rem;max-height:3.5rem}:is(:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact.image-large,:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact.image-small) atomic-result-section-visual{margin:0 auto 1rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact.image-icon atomic-result-section-badges{margin-bottom:1rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact.image-icon atomic-result-section-visual{height:2rem;width:2rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact atomic-result-section-visual{margin-bottom:.5rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact atomic-result-section-badges{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);--row-height:2rem;margin-bottom:1rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact atomic-result-section-actions{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);--row-height:2rem;margin-top:1.25rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact atomic-result-section-title{--font-size:var(--atomic-text-xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:2;line-height:var(--line-height);word-break:break-word;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact atomic-result-section-title-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.475rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact atomic-result-section-emphasized{--font-size:var(--atomic-text-2xl);font-size:var(--font-size);font-weight:500;--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact atomic-result-section-excerpt{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:1;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:1.25rem;overflow:hidden}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.9375rem;max-height:3.25rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).image-large atomic-result-section-visual{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).image-large atomic-result-section-visual{height:19.75rem}}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).image-large atomic-result-section-visual{width:100%}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).image-large atomic-result-section-badges{margin-bottom:1rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).image-small atomic-result-section-visual{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).image-small atomic-result-section-visual{height:14rem}}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).image-small atomic-result-section-visual{width:100%}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).image-none atomic-result-section-visual{display:none}}@media not all and (min-width:1024px){:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none,:host .result-root.with-sections.display-grid.image-small{grid-template-areas:"badges""visual""title""title-metadata""emphasized""excerpt""children""bottom-metadata""actions";grid-template-columns:100%;grid-template-rows:repeat(9,auto)}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable atomic-result-section-visual{margin-bottom:1rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable.image-small atomic-result-section-visual{height:10.25rem;width:10.25rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable atomic-result-section-badges{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);--row-height:2rem;margin-bottom:1rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable atomic-result-section-actions{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);--row-height:2rem;margin-top:1.25rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable atomic-result-section-title{--font-size:var(--atomic-text-lg);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:2;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;max-height:3rem;overflow:hidden}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable atomic-result-section-title-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.475rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable atomic-result-section-emphasized{--font-size:var(--atomic-text-2xl);font-size:var(--font-size);font-weight:500;--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable atomic-result-section-excerpt{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:2;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:1.25rem;overflow:hidden}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:1rem;max-height:3rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable atomic-result-section-children{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:1.25rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal atomic-result-section-visual{margin-bottom:.75rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal.image-small atomic-result-section-visual{height:10.25rem;width:10.25rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal atomic-result-section-badges{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);--row-height:2rem;margin-bottom:1rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal atomic-result-section-actions{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);--row-height:2rem;margin-top:1rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal atomic-result-section-title{--font-size:var(--atomic-text-lg);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:2;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;max-height:3rem;overflow:hidden}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal atomic-result-section-title-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.475rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal atomic-result-section-emphasized{--font-size:var(--atomic-text-2xl);font-size:var(--font-size);font-weight:500;--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal atomic-result-section-excerpt{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:2;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:1rem;overflow:hidden}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.75rem;max-height:3rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal atomic-result-section-children{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:1rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact atomic-result-section-visual{margin-bottom:.5rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact.image-large atomic-result-section-visual{width:100%}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact.image-small atomic-result-section-visual{height:10.25rem;width:10.25rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact atomic-result-section-badges{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);--row-height:2rem;margin-bottom:1rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact atomic-result-section-actions{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);--row-height:2rem;margin-top:.75rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact atomic-result-section-title{--font-size:var(--atomic-text-lg);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:2;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;max-height:3rem;overflow:hidden}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact atomic-result-section-title-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.475rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact atomic-result-section-emphasized{--font-size:var(--atomic-text-2xl);font-size:var(--font-size);font-weight:500;--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact atomic-result-section-excerpt{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:1;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:.75rem;overflow:hidden}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.5rem;max-height:3rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact atomic-result-section-children{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.75rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).image-small atomic-result-section-visual{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).image-small atomic-result-section-visual{height:9rem}}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).image-small atomic-result-section-visual{width:100%}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).image-icon atomic-result-section-visual{height:2rem;width:2rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).image-none atomic-result-section-visual{display:none}}:host .result-root.with-sections.display-table.image-large.density-compact atomic-result-section-visual{height:10.25rem;width:10.25rem}:host .result-root.with-sections.display-table atomic-result-section-children atomic-insight-result-children::part(children-root),:host .result-root.with-sections.display-table atomic-result-section-children atomic-result-children::part(children-root){border-color:var(--atomic-neutral);border-radius:16px;border-style:var(--tw-border-style);border-width:1px}:host .result-root.with-sections.display-table.density-comfortable atomic-result-section-visual{margin-right:1.5rem}:host .result-root.with-sections.display-table.density-comfortable atomic-result-section-actions,:host .result-root.with-sections.display-table.density-comfortable atomic-result-section-badges{--row-height:2rem;margin-bottom:1.5rem}:host .result-root.with-sections.display-table.density-comfortable atomic-result-section-title{--font-size:var(--atomic-text-2xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:host .result-root.with-sections.display-table.density-comfortable atomic-result-section-excerpt{--font-size:var(--atomic-text-lg);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:3;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:1.75rem;max-height:4.5rem;overflow:hidden}:host .result-root.with-sections.display-table.density-comfortable atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:1.25rem;max-height:4rem}:host .result-root.with-sections.display-table.density-comfortable atomic-result-section-title-metadata{margin-top:.475rem}:is(:host .result-root.with-sections.display-table.density-comfortable atomic-result-children,:host .result-root.with-sections.display-table.density-comfortable atomic-insight-result-children)::part(children-root){border-color:var(--atomic-neutral);border-radius:16px;border-style:var(--tw-border-style);border-width:1px;margin-top:1.25rem;padding:1.75rem}:is(:host .result-root.with-sections.display-table.density-comfortable atomic-result-children,:host .result-root.with-sections.display-table.density-comfortable atomic-insight-result-children)::part(show-hide-button){margin-bottom:1.25rem;margin-top:1.25rem}:host .result-root.with-sections.display-table.density-comfortable .placeholder,:host .result-root.with-sections.display-table.density-comfortable.child-result:not(.last-child){margin-bottom:1.75rem}:host .result-root.with-sections.display-table.density-normal atomic-result-section-visual{margin-right:1rem}:host .result-root.with-sections.display-table.density-normal atomic-result-section-actions,:host .result-root.with-sections.display-table.density-normal atomic-result-section-badges{--row-height:2rem;margin-bottom:1rem}:host .result-root.with-sections.display-table.density-normal atomic-result-section-title{--font-size:var(--atomic-text-xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:host .result-root.with-sections.display-table.density-normal atomic-result-section-excerpt{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:2;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:1.25rem;max-height:2.5rem;overflow:hidden}:host .result-root.with-sections.display-table.density-normal atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.875rem;max-height:3.5rem}:host .result-root.with-sections.display-table.density-normal atomic-result-section-title-metadata{margin-top:.475rem}:is(:host .result-root.with-sections.display-table.density-normal atomic-result-children,:host .result-root.with-sections.display-table.density-normal atomic-insight-result-children)::part(children-root){border-color:var(--atomic-neutral);border-radius:16px;border-style:var(--tw-border-style);border-width:1px;margin-top:.875rem;padding:1.5rem}:is(:host .result-root.with-sections.display-table.density-normal atomic-result-children,:host .result-root.with-sections.display-table.density-normal atomic-insight-result-children)::part(show-hide-button){margin-bottom:.875rem;margin-top:.875rem}:host .result-root.with-sections.display-table.density-normal .placeholder,:host .result-root.with-sections.display-table.density-normal.child-result:not(.last-child){margin-bottom:1.5rem}:host .result-root.with-sections.display-table.density-compact atomic-result-section-visual{margin-right:1rem}:host .result-root.with-sections.display-table.density-compact atomic-result-section-actions,:host .result-root.with-sections.display-table.density-compact atomic-result-section-badges{--row-height:2rem;margin-bottom:1rem}:host .result-root.with-sections.display-table.density-compact atomic-result-section-title{--font-size:var(--atomic-text-xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:host .result-root.with-sections.display-table.density-compact atomic-result-section-excerpt{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:1;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:1rem;max-height:1.25rem;overflow:hidden}:host .result-root.with-sections.display-table.density-compact atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.6875rem;max-height:3.25rem}:host .result-root.with-sections.display-table.density-compact atomic-result-section-title-metadata{margin-top:.475rem}:is(:host .result-root.with-sections.display-table.density-compact atomic-result-children,:host .result-root.with-sections.display-table.density-compact atomic-insight-result-children)::part(children-root){border-color:var(--atomic-neutral);border-radius:16px;border-style:var(--tw-border-style);border-width:1px;margin-top:.475rem;padding:1rem}:is(:host .result-root.with-sections.display-table.density-compact atomic-result-children,:host .result-root.with-sections.display-table.density-compact atomic-insight-result-children)::part(show-hide-button){margin-bottom:.475rem;margin-top:.475rem}:host .result-root.with-sections.display-table.density-compact .placeholder,:host .result-root.with-sections.display-table.density-compact.child-result:not(.last-child){margin-bottom:1rem}:host .result-root.with-sections.display-table.image-large,:host .result-root.with-sections.display-table.image-small{grid-template-areas:"badges badges.actions""visual title title title""visual title-metadata title-metadata title-metadata""visual emphasized emphasized emphasized""visual excerpt excerpt excerpt""visual bottom-metadata bottom-metadata bottom-metadata""visual children children children";grid-template-columns:minmax(0,min-content) auto 1fr auto;grid-template-rows:repeat(6,auto) minmax(0,1fr)}:is(:host .result-root.with-sections.display-table.image-large.density-comfortable,:host .result-root.with-sections.display-table.image-large.density-normal) atomic-result-section-visual{height:20.375rem;width:20.375rem}:is(:host .result-root.with-sections.display-table.image-small,:host .result-root.with-sections.display-table.image-large.density-compact) atomic-result-section-visual{height:10rem;width:10rem}:host .result-root.with-sections.display-table.image-icon{grid-template-areas:"badges badges.actions""visual title title title""visual title-metadata title-metadata title-metadata""visual emphasized emphasized emphasized""visual excerpt excerpt excerpt""visual bottom-metadata bottom-metadata bottom-metadata""visual children children children";grid-template-columns:minmax(0,min-content) auto 1fr auto;grid-template-rows:repeat(7,minmax(0,min-content))}:host .result-root.with-sections.display-table.image-icon atomic-result-section-visual{height:2rem;width:2rem}:host .result-root.with-sections.display-table.image-none{grid-template-areas:"badges.actions""title title title""title-metadata title-metadata title-metadata""emphasized emphasized emphasized""excerpt excerpt excerpt""bottom-metadata bottom-metadata bottom-metadata""children children children";grid-template-columns:auto 1fr auto;grid-template-rows:repeat(6,auto)}:host .link-container,:host .result-root atomic-table-element,:host .result-root.with-sections.display-table.image-none atomic-result-section-visual{display:none}}:host .result-root.display-grid atomic-result-section-actions{display:none}:host .result-root .badge{width:14rem}:host .result-root .action{width:10rem}:host .result-root .title{grid-gap:.5rem;display:grid;grid-auto-flow:column;height:var(--line-height);max-width:100%;width:30rem}:host .result-root .fields-placeholder{grid-column-gap:.5rem;display:grid;grid-template-columns:repeat(auto-fill,min(11rem,40%))}:host .result-root .fields-placeholder .field-value-placeholder{height:var(--font-size);margin:calc((var(--line-height) - var(--font-size))/2) 0}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}`;
|
|
13248
|
+
AtomicResultPlaceholder.styles = lit.css`/*! tailwindcss v4.3.2 | MIT License | https://tailwindcss.com */@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,::backdrop,:after,:before{--tw-font-weight:initial;--tw-border-style:solid}}}@layer components{:host :host{font-family:var(--atomic-font-family);--tw-font-weight:var(--atomic-font-normal);font-weight:var(--atomic-font-normal)}:host atomic-result-section-actions,:host atomic-result-section-badges{text-align:left}:host atomic-result-section-title-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:host atomic-result-section-emphasized{--font-size:var(--atomic-text-2xl);font-size:var(--font-size);font-weight:500;--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.5rem}:host .result-root.with-sections{display:grid;justify-items:stretch}:host .result-root.with-sections atomic-result-section-visual{grid-area:visual}:host .result-root.with-sections atomic-result-section-badges{grid-area:badges}:host .result-root.with-sections atomic-result-section-actions{grid-area:actions}:host .result-root.with-sections atomic-result-section-actions atomic-result-quickview{display:inline-block}:host .result-root.with-sections atomic-result-section-title{color:var(--atomic-on-background);grid-area:title}:host .result-root.with-sections atomic-result-section-title-metadata{grid-area:title-metadata}:host .result-root.with-sections atomic-result-section-emphasized{grid-area:emphasized}:host .result-root.with-sections atomic-result-section-excerpt{color:var(--atomic-neutral-dark);grid-area:excerpt}:host .result-root.with-sections atomic-result-section-bottom-metadata{color:var(--atomic-neutral-dark);grid-area:bottom-metadata}:host .result-root.with-sections atomic-result-section-children{grid-area:children}:host .result-root.with-sections atomic-result-section-actions,:host .result-root.with-sections atomic-result-section-badges{display:flex;flex-wrap:wrap;gap:.5rem;max-height:calc(var(--row-height,2rem)*2 + .5rem)}:host .result-root.with-sections atomic-result-section-actions,:host .result-root.with-sections atomic-result-section-badges,:host .result-root.with-sections atomic-result-section-bottom-metadata,:host .result-root.with-sections atomic-result-section-emphasized,:host .result-root.with-sections atomic-result-section-excerpt,:host .result-root.with-sections atomic-result-section-title,:host .result-root.with-sections atomic-result-section-title-metadata,:host .result-root.with-sections atomic-result-section-visual{overflow:hidden;text-overflow:ellipsis}:host .result-root.with-sections.image-icon atomic-result-section-visual{border-radius:var(--atomic-border-radius)}@media (min-width:1024px){:host .result-root.with-sections.display-list.image-large.density-compact atomic-result-section-visual{height:10.25rem;width:10.25rem}:host .result-root.with-sections.display-list atomic-result-section-children atomic-insight-result-children::part(children-root),:host .result-root.with-sections.display-list atomic-result-section-children atomic-result-children::part(children-root){border-color:var(--atomic-neutral);border-radius:16px;border-style:var(--tw-border-style);border-width:1px}:host .result-root.with-sections.display-list.density-comfortable atomic-result-section-visual{margin-right:1.5rem}:host .result-root.with-sections.display-list.density-comfortable atomic-result-section-actions,:host .result-root.with-sections.display-list.density-comfortable atomic-result-section-badges{--row-height:2rem;margin-bottom:1.5rem}:host .result-root.with-sections.display-list.density-comfortable atomic-result-section-title{--font-size:var(--atomic-text-2xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:host .result-root.with-sections.display-list.density-comfortable atomic-result-section-excerpt{--font-size:var(--atomic-text-lg);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:3;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:1.75rem;max-height:4.5rem;overflow:hidden}:host .result-root.with-sections.display-list.density-comfortable atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:1.25rem;max-height:4rem}:host .result-root.with-sections.display-list.density-comfortable atomic-result-section-title-metadata{margin-top:.475rem}:is(:host .result-root.with-sections.display-list.density-comfortable atomic-result-children,:host .result-root.with-sections.display-list.density-comfortable atomic-insight-result-children)::part(children-root){border-color:var(--atomic-neutral);border-radius:16px;border-style:var(--tw-border-style);border-width:1px;margin-top:1.25rem;padding:1.75rem}:is(:host .result-root.with-sections.display-list.density-comfortable atomic-result-children,:host .result-root.with-sections.display-list.density-comfortable atomic-insight-result-children)::part(show-hide-button){margin-bottom:1.25rem;margin-top:1.25rem}:host .result-root.with-sections.display-list.density-comfortable .placeholder,:host .result-root.with-sections.display-list.density-comfortable.child-result:not(.last-child){margin-bottom:1.75rem}:host .result-root.with-sections.display-list.density-normal atomic-result-section-visual{margin-right:1rem}:host .result-root.with-sections.display-list.density-normal atomic-result-section-actions,:host .result-root.with-sections.display-list.density-normal atomic-result-section-badges{--row-height:2rem;margin-bottom:1rem}:host .result-root.with-sections.display-list.density-normal atomic-result-section-title{--font-size:var(--atomic-text-xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:host .result-root.with-sections.display-list.density-normal atomic-result-section-excerpt{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:2;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:1.25rem;max-height:2.5rem;overflow:hidden}:host .result-root.with-sections.display-list.density-normal atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.875rem;max-height:3.5rem}:host .result-root.with-sections.display-list.density-normal atomic-result-section-title-metadata{margin-top:.475rem}:is(:host .result-root.with-sections.display-list.density-normal atomic-result-children,:host .result-root.with-sections.display-list.density-normal atomic-insight-result-children)::part(children-root){border-color:var(--atomic-neutral);border-radius:16px;border-style:var(--tw-border-style);border-width:1px;margin-top:.875rem;padding:1.5rem}:is(:host .result-root.with-sections.display-list.density-normal atomic-result-children,:host .result-root.with-sections.display-list.density-normal atomic-insight-result-children)::part(show-hide-button){margin-bottom:.875rem;margin-top:.875rem}:host .result-root.with-sections.display-list.density-normal .placeholder,:host .result-root.with-sections.display-list.density-normal.child-result:not(.last-child){margin-bottom:1.5rem}:host .result-root.with-sections.display-list.density-compact atomic-result-section-visual{margin-right:1rem}:host .result-root.with-sections.display-list.density-compact atomic-result-section-actions,:host .result-root.with-sections.display-list.density-compact atomic-result-section-badges{--row-height:2rem;margin-bottom:1rem}:host .result-root.with-sections.display-list.density-compact atomic-result-section-title{--font-size:var(--atomic-text-xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:host .result-root.with-sections.display-list.density-compact atomic-result-section-excerpt{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:1;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:1rem;max-height:1.25rem;overflow:hidden}:host .result-root.with-sections.display-list.density-compact atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.6875rem;max-height:3.25rem}:host .result-root.with-sections.display-list.density-compact atomic-result-section-title-metadata{margin-top:.475rem}:is(:host .result-root.with-sections.display-list.density-compact atomic-result-children,:host .result-root.with-sections.display-list.density-compact atomic-insight-result-children)::part(children-root){border-color:var(--atomic-neutral);border-radius:16px;border-style:var(--tw-border-style);border-width:1px;margin-top:.475rem;padding:1rem}:is(:host .result-root.with-sections.display-list.density-compact atomic-result-children,:host .result-root.with-sections.display-list.density-compact atomic-insight-result-children)::part(show-hide-button){margin-bottom:.475rem;margin-top:.475rem}:host .result-root.with-sections.display-list.density-compact .placeholder,:host .result-root.with-sections.display-list.density-compact.child-result:not(.last-child){margin-bottom:1rem}:host .result-root.with-sections.display-list.image-large,:host .result-root.with-sections.display-list.image-small{grid-template-areas:"badges badges.actions""visual title title title""visual title-metadata title-metadata title-metadata""visual emphasized emphasized emphasized""visual excerpt excerpt excerpt""visual bottom-metadata bottom-metadata bottom-metadata""visual children children children";grid-template-columns:minmax(0,min-content) auto 1fr auto;grid-template-rows:repeat(6,auto) minmax(0,1fr)}:is(:host .result-root.with-sections.display-list.image-large.density-comfortable,:host .result-root.with-sections.display-list.image-large.density-normal) atomic-result-section-visual{height:20.375rem;width:20.375rem}:is(:host .result-root.with-sections.display-list.image-small,:host .result-root.with-sections.display-list.image-large.density-compact) atomic-result-section-visual{height:10rem;width:10rem}:host .result-root.with-sections.display-list.image-icon{grid-template-areas:"badges badges.actions""visual title title title""visual title-metadata title-metadata title-metadata""visual emphasized emphasized emphasized""visual excerpt excerpt excerpt""visual bottom-metadata bottom-metadata bottom-metadata""visual children children children";grid-template-columns:minmax(0,min-content) auto 1fr auto;grid-template-rows:repeat(7,minmax(0,min-content))}:host .result-root.with-sections.display-list.image-icon atomic-result-section-visual{height:2rem;width:2rem}:host .result-root.with-sections.display-list.image-none{grid-template-areas:"badges.actions""title title title""title-metadata title-metadata title-metadata""emphasized emphasized emphasized""excerpt excerpt excerpt""bottom-metadata bottom-metadata bottom-metadata""children children children";grid-template-columns:auto 1fr auto;grid-template-rows:repeat(6,auto)}:host .result-root.with-sections.display-list.image-none atomic-result-section-visual{display:none}}@media not all and (min-width:1024px){:host .result-root.with-sections.display-list atomic-result-section-children atomic-insight-result-children::part(children-root),:host .result-root.with-sections.display-list atomic-result-section-children atomic-result-children::part(children-root){border-top:1px var(--tw-border-style) var(--atomic-neutral)}:host .result-root.with-sections.display-list.density-comfortable atomic-result-section-visual{margin-right:1rem}:host .result-root.with-sections.display-list.density-comfortable atomic-result-section-badges{--row-height:2rem;margin-bottom:1rem}:host .result-root.with-sections.display-list.density-comfortable atomic-result-section-actions{--row-height:2.5rem;margin-top:1rem}:host .result-root.with-sections.display-list.density-comfortable atomic-result-section-title{--font-size:var(--atomic-text-xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:host .result-root.with-sections.display-list.density-comfortable atomic-result-section-excerpt{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:2;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:1.25rem;max-height:2.5rem;overflow:hidden}:host .result-root.with-sections.display-list.density-comfortable atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.75rem;max-height:4rem}:host .result-root.with-sections.display-list.density-comfortable atomic-result-section-title-metadata{margin-top:.475rem}:is(:host .result-root.with-sections.display-list.density-comfortable atomic-result-children,:host .result-root.with-sections.display-list.density-comfortable atomic-insight-result-children)::part(children-root){margin-inline:-1rem;margin-top:1rem;padding-top:1.75rem;padding-inline:1rem}:is(:host .result-root.with-sections.display-list.density-comfortable atomic-result-children,:host .result-root.with-sections.display-list.density-comfortable atomic-insight-result-children)::part(show-hide-button){margin-bottom:1.25rem;margin-top:1.25rem}:host .result-root.with-sections.display-list.density-comfortable .placeholder,:host .result-root.with-sections.display-list.density-comfortable.child-result:not(.last-child){margin-bottom:1.75rem}:host .result-root.with-sections.display-list.density-normal atomic-result-section-visual{margin-right:1rem}:host .result-root.with-sections.display-list.density-normal atomic-result-section-badges{--row-height:2rem;margin-bottom:1rem}:host .result-root.with-sections.display-list.density-normal atomic-result-section-actions{--row-height:2.5rem;margin-top:.75rem}:host .result-root.with-sections.display-list.density-normal atomic-result-section-title{--font-size:var(--atomic-text-xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:host .result-root.with-sections.display-list.density-normal atomic-result-section-excerpt{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:2;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:1rem;max-height:2.5rem;overflow:hidden}:host .result-root.with-sections.display-list.density-normal atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.625rem;max-height:3.5rem}:host .result-root.with-sections.display-list.density-normal atomic-result-section-title-metadata{margin-top:.475rem}:is(:host .result-root.with-sections.display-list.density-normal atomic-result-children,:host .result-root.with-sections.display-list.density-normal atomic-insight-result-children)::part(children-root){margin-inline:-1rem;margin-top:1rem;padding-top:1.5rem;padding-inline:1rem}:is(:host .result-root.with-sections.display-list.density-normal atomic-result-children,:host .result-root.with-sections.display-list.density-normal atomic-insight-result-children)::part(show-hide-button){margin-bottom:.875rem;margin-top:.875rem}:host .result-root.with-sections.display-list.density-normal .placeholder,:host .result-root.with-sections.display-list.density-normal.child-result:not(.last-child){margin-bottom:1.5rem}:host .result-root.with-sections.display-list.density-compact atomic-result-section-visual{margin-right:1rem}:host .result-root.with-sections.display-list.density-compact atomic-result-section-badges{--row-height:2rem;margin-bottom:1rem}:host .result-root.with-sections.display-list.density-compact atomic-result-section-actions{--row-height:2.5rem;margin-top:.5em}:host .result-root.with-sections.display-list.density-compact atomic-result-section-title{--font-size:var(--atomic-text-xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:host .result-root.with-sections.display-list.density-compact atomic-result-section-excerpt{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:1;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:.75rem;max-height:1.25rem;overflow:hidden}:host .result-root.with-sections.display-list.density-compact atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.4375rem;max-height:3.25rem}:host .result-root.with-sections.display-list.density-compact atomic-result-section-title-metadata{margin-top:.475rem}:is(:host .result-root.with-sections.display-list.density-compact atomic-result-children,:host .result-root.with-sections.display-list.density-compact atomic-insight-result-children)::part(children-root){margin-inline:-1rem;margin-top:1rem;padding-top:1rem;padding-inline:1rem}:is(:host .result-root.with-sections.display-list.density-compact atomic-result-children,:host .result-root.with-sections.display-list.density-compact atomic-insight-result-children)::part(show-hide-button){margin-bottom:.475rem;margin-top:.475rem}:host .result-root.with-sections.display-list.density-compact .placeholder,:host .result-root.with-sections.display-list.density-compact.child-result:not(.last-child){margin-bottom:1rem}:host .result-root.with-sections.display-list.image-large{grid-template-areas:"visual""badges""title""title-metadata""emphasized""excerpt""bottom-metadata""actions""children";grid-template-columns:100%;grid-template-rows:repeat(8,auto)}:host .result-root.with-sections.display-list.image-large atomic-result-section-visual{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){:host .result-root.with-sections.display-list.image-large atomic-result-section-visual{height:7.25rem}}:host .result-root.with-sections.display-list.image-large atomic-result-section-visual{margin-bottom:1rem;margin-right:0;width:100%}:host .result-root.with-sections.display-list.image-small{grid-template-areas:"badges badges""visual title""visual title-metadata""visual emphasized""visual.""excerpt excerpt""bottom-metadata bottom-metadata""actions actions""children children";grid-template-columns:auto minmax(0,1fr);grid-template-rows:repeat(4,auto) minmax(0,1fr) repeat(3,auto)}:host .result-root.with-sections.display-list.image-small atomic-result-section-visual{height:24vw;margin-bottom:1rem;width:24vw}:host .result-root.with-sections.display-list.image-icon{grid-template-areas:"badges badges""visual title""visual title-metadata""visual emphasized""visual excerpt""visual bottom-metadata""visual actions""visual children";grid-template-columns:auto minmax(0,1fr);grid-template-rows:repeat(7,auto) 1fr}:host .result-root.with-sections.display-list.image-icon atomic-result-section-visual{height:2rem;margin-bottom:0;width:2rem}:host .result-root.with-sections.display-list.image-none{grid-template-areas:"badges""title""title-metadata""emphasized""excerpt""bottom-metadata""actions""children";grid-template-columns:100%;grid-template-rows:repeat(7,auto)}:host .result-root.with-sections.display-list.image-none atomic-result-section-visual{display:none}}:host .result-root.with-sections.display-grid a,:host .result-root.with-sections.display-grid button{position:relative}@media (min-width:1024px){:host .result-root.with-sections.display-grid.image-large{grid-template-areas:"badges""visual""title""title-metadata""emphasized""excerpt""children""bottom-metadata""actions";grid-template-columns:100%;grid-template-rows:repeat(9,auto)}:is(:host .result-root.with-sections.display-grid.image-large.density-comfortable.image-large,:host .result-root.with-sections.display-grid.image-large.density-comfortable.image-small) atomic-result-section-visual{margin:0 auto 2rem}:host .result-root.with-sections.display-grid.image-large.density-comfortable.image-icon atomic-result-section-badges{margin-bottom:2rem}:host .result-root.with-sections.display-grid.image-large.density-comfortable.image-icon atomic-result-section-visual{height:2rem;width:2rem}:host .result-root.with-sections.display-grid.image-large.density-comfortable atomic-result-section-visual{margin-bottom:.5rem}:host .result-root.with-sections.display-grid.image-large.density-comfortable atomic-result-section-badges{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);--row-height:2rem;margin-bottom:1rem}:host .result-root.with-sections.display-grid.image-large.density-comfortable atomic-result-section-actions{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);--row-height:2.5rem;margin-top:2.25rem}:host .result-root.with-sections.display-grid.image-large.density-comfortable atomic-result-section-title{--font-size:var(--atomic-text-2xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:2;line-height:var(--line-height);word-break:break-word;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}:host .result-root.with-sections.display-grid.image-large.density-comfortable atomic-result-section-title-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.475rem}:host .result-root.with-sections.display-grid.image-large.density-comfortable atomic-result-section-emphasized{--font-size:var(--atomic-text-2xl);font-size:var(--font-size);font-weight:500;--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:host .result-root.with-sections.display-grid.image-large.density-comfortable atomic-result-section-excerpt{--font-size:var(--atomic-text-lg);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:3;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:2.25rem;overflow:hidden}:host .result-root.with-sections.display-grid.image-large.density-comfortable atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:1.75rem;max-height:4rem}:is(:host .result-root.with-sections.display-grid.image-large.density-normal.image-large,:host .result-root.with-sections.display-grid.image-large.density-normal.image-small) atomic-result-section-visual{margin:0 auto 1.5rem}:host .result-root.with-sections.display-grid.image-large.density-normal.image-icon atomic-result-section-badges{margin-bottom:1.5rem}:host .result-root.with-sections.display-grid.image-large.density-normal.image-icon atomic-result-section-visual{height:2rem;width:2rem}:host .result-root.with-sections.display-grid.image-large.density-normal atomic-result-section-visual{margin-bottom:.5rem}:host .result-root.with-sections.display-grid.image-large.density-normal atomic-result-section-badges{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);--row-height:2rem;margin-bottom:1rem}:host .result-root.with-sections.display-grid.image-large.density-normal atomic-result-section-actions{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);--row-height:2rem;margin-top:1.75rem}:host .result-root.with-sections.display-grid.image-large.density-normal atomic-result-section-title{--font-size:var(--atomic-text-xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:2;line-height:var(--line-height);word-break:break-word;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}:host .result-root.with-sections.display-grid.image-large.density-normal atomic-result-section-title-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.475rem}:host .result-root.with-sections.display-grid.image-large.density-normal atomic-result-section-emphasized{--font-size:var(--atomic-text-2xl);font-size:var(--font-size);font-weight:500;--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:host .result-root.with-sections.display-grid.image-large.density-normal atomic-result-section-excerpt{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:2;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:1.75rem;overflow:hidden}:host .result-root.with-sections.display-grid.image-large.density-normal atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:1.375rem;max-height:3.5rem}:is(:host .result-root.with-sections.display-grid.image-large.density-compact.image-large,:host .result-root.with-sections.display-grid.image-large.density-compact.image-small) atomic-result-section-visual{margin:0 auto 1rem}:host .result-root.with-sections.display-grid.image-large.density-compact.image-icon atomic-result-section-badges{margin-bottom:1rem}:host .result-root.with-sections.display-grid.image-large.density-compact.image-icon atomic-result-section-visual{height:2rem;width:2rem}:host .result-root.with-sections.display-grid.image-large.density-compact atomic-result-section-visual{margin-bottom:.5rem}:host .result-root.with-sections.display-grid.image-large.density-compact atomic-result-section-badges{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);--row-height:2rem;margin-bottom:1rem}:host .result-root.with-sections.display-grid.image-large.density-compact atomic-result-section-actions{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);--row-height:2rem;margin-top:1.25rem}:host .result-root.with-sections.display-grid.image-large.density-compact atomic-result-section-title{--font-size:var(--atomic-text-xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:2;line-height:var(--line-height);word-break:break-word;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}:host .result-root.with-sections.display-grid.image-large.density-compact atomic-result-section-title-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.475rem}:host .result-root.with-sections.display-grid.image-large.density-compact atomic-result-section-emphasized{--font-size:var(--atomic-text-2xl);font-size:var(--font-size);font-weight:500;--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:host .result-root.with-sections.display-grid.image-large.density-compact atomic-result-section-excerpt{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:1;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:1.25rem;overflow:hidden}:host .result-root.with-sections.display-grid.image-large.density-compact atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.9375rem;max-height:3.25rem}:host .result-root.with-sections.display-grid.image-large.image-large atomic-result-section-visual{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){:host .result-root.with-sections.display-grid.image-large.image-large atomic-result-section-visual{height:19.75rem}}:host .result-root.with-sections.display-grid.image-large.image-large atomic-result-section-visual{width:100%}:host .result-root.with-sections.display-grid.image-large.image-large atomic-result-section-badges{margin-bottom:1rem}:host .result-root.with-sections.display-grid.image-large.image-small atomic-result-section-visual{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){:host .result-root.with-sections.display-grid.image-large.image-small atomic-result-section-visual{height:14rem}}:host .result-root.with-sections.display-grid.image-large.image-small atomic-result-section-visual{width:100%}:host .result-root.with-sections.display-grid.image-large.image-none atomic-result-section-visual{display:none}}@media not all and (min-width:1024px){:host .result-root.with-sections.display-grid.image-large atomic-result-section-children atomic-insight-result-children::part(children-root),:host .result-root.with-sections.display-grid.image-large atomic-result-section-children atomic-result-children::part(children-root){border-top:1px var(--tw-border-style) var(--atomic-neutral)}:host .result-root.with-sections.display-grid.image-large.density-comfortable atomic-result-section-visual{margin-right:1rem}:host .result-root.with-sections.display-grid.image-large.density-comfortable atomic-result-section-badges{--row-height:2rem;margin-bottom:1rem}:host .result-root.with-sections.display-grid.image-large.density-comfortable atomic-result-section-actions{--row-height:2.5rem;margin-top:1rem}:host .result-root.with-sections.display-grid.image-large.density-comfortable atomic-result-section-title{--font-size:var(--atomic-text-xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:host .result-root.with-sections.display-grid.image-large.density-comfortable atomic-result-section-excerpt{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:2;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:1.25rem;max-height:2.5rem;overflow:hidden}:host .result-root.with-sections.display-grid.image-large.density-comfortable atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.75rem;max-height:4rem}:host .result-root.with-sections.display-grid.image-large.density-comfortable atomic-result-section-title-metadata{margin-top:.475rem}:is(:host .result-root.with-sections.display-grid.image-large.density-comfortable atomic-result-children,:host .result-root.with-sections.display-grid.image-large.density-comfortable atomic-insight-result-children)::part(children-root){margin-inline:-1rem;margin-top:1rem;padding-top:1.75rem;padding-inline:1rem}:is(:host .result-root.with-sections.display-grid.image-large.density-comfortable atomic-result-children,:host .result-root.with-sections.display-grid.image-large.density-comfortable atomic-insight-result-children)::part(show-hide-button){margin-bottom:1.25rem;margin-top:1.25rem}:host .result-root.with-sections.display-grid.image-large.density-comfortable .placeholder,:host .result-root.with-sections.display-grid.image-large.density-comfortable.child-result:not(.last-child){margin-bottom:1.75rem}:host .result-root.with-sections.display-grid.image-large.density-normal atomic-result-section-visual{margin-right:1rem}:host .result-root.with-sections.display-grid.image-large.density-normal atomic-result-section-badges{--row-height:2rem;margin-bottom:1rem}:host .result-root.with-sections.display-grid.image-large.density-normal atomic-result-section-actions{--row-height:2.5rem;margin-top:.75rem}:host .result-root.with-sections.display-grid.image-large.density-normal atomic-result-section-title{--font-size:var(--atomic-text-xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:host .result-root.with-sections.display-grid.image-large.density-normal atomic-result-section-excerpt{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:2;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:1rem;max-height:2.5rem;overflow:hidden}:host .result-root.with-sections.display-grid.image-large.density-normal atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.625rem;max-height:3.5rem}:host .result-root.with-sections.display-grid.image-large.density-normal atomic-result-section-title-metadata{margin-top:.475rem}:is(:host .result-root.with-sections.display-grid.image-large.density-normal atomic-result-children,:host .result-root.with-sections.display-grid.image-large.density-normal atomic-insight-result-children)::part(children-root){margin-inline:-1rem;margin-top:1rem;padding-top:1.5rem;padding-inline:1rem}:is(:host .result-root.with-sections.display-grid.image-large.density-normal atomic-result-children,:host .result-root.with-sections.display-grid.image-large.density-normal atomic-insight-result-children)::part(show-hide-button){margin-bottom:.875rem;margin-top:.875rem}:host .result-root.with-sections.display-grid.image-large.density-normal .placeholder,:host .result-root.with-sections.display-grid.image-large.density-normal.child-result:not(.last-child){margin-bottom:1.5rem}:host .result-root.with-sections.display-grid.image-large.density-compact atomic-result-section-visual{margin-right:1rem}:host .result-root.with-sections.display-grid.image-large.density-compact atomic-result-section-badges{--row-height:2rem;margin-bottom:1rem}:host .result-root.with-sections.display-grid.image-large.density-compact atomic-result-section-actions{--row-height:2.5rem;margin-top:.5em}:host .result-root.with-sections.display-grid.image-large.density-compact atomic-result-section-title{--font-size:var(--atomic-text-xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:host .result-root.with-sections.display-grid.image-large.density-compact atomic-result-section-excerpt{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:1;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:.75rem;max-height:1.25rem;overflow:hidden}:host .result-root.with-sections.display-grid.image-large.density-compact atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.4375rem;max-height:3.25rem}:host .result-root.with-sections.display-grid.image-large.density-compact atomic-result-section-title-metadata{margin-top:.475rem}:is(:host .result-root.with-sections.display-grid.image-large.density-compact atomic-result-children,:host .result-root.with-sections.display-grid.image-large.density-compact atomic-insight-result-children)::part(children-root){margin-inline:-1rem;margin-top:1rem;padding-top:1rem;padding-inline:1rem}:is(:host .result-root.with-sections.display-grid.image-large.density-compact atomic-result-children,:host .result-root.with-sections.display-grid.image-large.density-compact atomic-insight-result-children)::part(show-hide-button){margin-bottom:.475rem;margin-top:.475rem}:host .result-root.with-sections.display-grid.image-large.density-compact .placeholder,:host .result-root.with-sections.display-grid.image-large.density-compact.child-result:not(.last-child){margin-bottom:1rem}:host .result-root.with-sections.display-grid.image-large.image-large{grid-template-areas:"visual""badges""title""title-metadata""emphasized""excerpt""bottom-metadata""actions""children";grid-template-columns:100%;grid-template-rows:repeat(8,auto)}:host .result-root.with-sections.display-grid.image-large.image-large atomic-result-section-visual{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){:host .result-root.with-sections.display-grid.image-large.image-large atomic-result-section-visual{height:7.25rem}}:host .result-root.with-sections.display-grid.image-large.image-large atomic-result-section-visual{margin-bottom:1rem;margin-right:0;width:100%}:host .result-root.with-sections.display-grid.image-large.image-small{grid-template-areas:"badges badges""visual title""visual title-metadata""visual emphasized""visual.""excerpt excerpt""bottom-metadata bottom-metadata""actions actions""children children";grid-template-columns:auto minmax(0,1fr);grid-template-rows:repeat(4,auto) minmax(0,1fr) repeat(3,auto)}:host .result-root.with-sections.display-grid.image-large.image-small atomic-result-section-visual{height:24vw;margin-bottom:1rem;width:24vw}:host .result-root.with-sections.display-grid.image-large.image-icon{grid-template-areas:"badges badges""visual title""visual title-metadata""visual emphasized""visual excerpt""visual bottom-metadata""visual actions""visual children";grid-template-columns:auto minmax(0,1fr);grid-template-rows:repeat(7,auto) 1fr}:host .result-root.with-sections.display-grid.image-large.image-icon atomic-result-section-visual{height:2rem;margin-bottom:0;width:2rem}:host .result-root.with-sections.display-grid.image-large.image-none{grid-template-areas:"badges""title""title-metadata""emphasized""excerpt""bottom-metadata""actions""children";grid-template-columns:100%;grid-template-rows:repeat(7,auto)}:host .result-root.with-sections.display-grid.image-large.image-none atomic-result-section-visual{display:none}}@media (min-width:1024px){:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none,:host .result-root.with-sections.display-grid.image-small{grid-template-areas:"badges""visual""title""title-metadata""emphasized""excerpt""children""bottom-metadata""actions";grid-template-columns:100%;grid-template-rows:repeat(9,auto)}:is(:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable.image-large,:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable.image-small) atomic-result-section-visual{margin:0 auto 2rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable.image-icon atomic-result-section-badges{margin-bottom:2rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable.image-icon atomic-result-section-visual{height:2rem;width:2rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable atomic-result-section-visual{margin-bottom:.5rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable atomic-result-section-badges{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);--row-height:2rem;margin-bottom:1rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable atomic-result-section-actions{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);--row-height:2.5rem;margin-top:2.25rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable atomic-result-section-title{--font-size:var(--atomic-text-2xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:2;line-height:var(--line-height);word-break:break-word;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable atomic-result-section-title-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.475rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable atomic-result-section-emphasized{--font-size:var(--atomic-text-2xl);font-size:var(--font-size);font-weight:500;--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable atomic-result-section-excerpt{--font-size:var(--atomic-text-lg);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:3;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:2.25rem;overflow:hidden}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:1.75rem;max-height:4rem}:is(:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal.image-large,:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal.image-small) atomic-result-section-visual{margin:0 auto 1.5rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal.image-icon atomic-result-section-badges{margin-bottom:1.5rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal.image-icon atomic-result-section-visual{height:2rem;width:2rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal atomic-result-section-visual{margin-bottom:.5rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal atomic-result-section-badges{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);--row-height:2rem;margin-bottom:1rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal atomic-result-section-actions{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);--row-height:2rem;margin-top:1.75rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal atomic-result-section-title{--font-size:var(--atomic-text-xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:2;line-height:var(--line-height);word-break:break-word;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal atomic-result-section-title-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.475rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal atomic-result-section-emphasized{--font-size:var(--atomic-text-2xl);font-size:var(--font-size);font-weight:500;--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal atomic-result-section-excerpt{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:2;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:1.75rem;overflow:hidden}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:1.375rem;max-height:3.5rem}:is(:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact.image-large,:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact.image-small) atomic-result-section-visual{margin:0 auto 1rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact.image-icon atomic-result-section-badges{margin-bottom:1rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact.image-icon atomic-result-section-visual{height:2rem;width:2rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact atomic-result-section-visual{margin-bottom:.5rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact atomic-result-section-badges{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);--row-height:2rem;margin-bottom:1rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact atomic-result-section-actions{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);--row-height:2rem;margin-top:1.25rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact atomic-result-section-title{--font-size:var(--atomic-text-xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:2;line-height:var(--line-height);word-break:break-word;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact atomic-result-section-title-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.475rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact atomic-result-section-emphasized{--font-size:var(--atomic-text-2xl);font-size:var(--font-size);font-weight:500;--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact atomic-result-section-excerpt{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:1;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:1.25rem;overflow:hidden}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.9375rem;max-height:3.25rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).image-large atomic-result-section-visual{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).image-large atomic-result-section-visual{height:19.75rem}}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).image-large atomic-result-section-visual{width:100%}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).image-large atomic-result-section-badges{margin-bottom:1rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).image-small atomic-result-section-visual{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).image-small atomic-result-section-visual{height:14rem}}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).image-small atomic-result-section-visual{width:100%}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).image-none atomic-result-section-visual{display:none}}@media not all and (min-width:1024px){:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none,:host .result-root.with-sections.display-grid.image-small{grid-template-areas:"badges""visual""title""title-metadata""emphasized""excerpt""children""bottom-metadata""actions";grid-template-columns:100%;grid-template-rows:repeat(9,auto)}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable atomic-result-section-visual{margin-bottom:1rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable.image-small atomic-result-section-visual{height:10.25rem;width:10.25rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable atomic-result-section-badges{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);--row-height:2rem;margin-bottom:1rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable atomic-result-section-actions{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);--row-height:2rem;margin-top:1.25rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable atomic-result-section-title{--font-size:var(--atomic-text-lg);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:2;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;max-height:3rem;overflow:hidden}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable atomic-result-section-title-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.475rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable atomic-result-section-emphasized{--font-size:var(--atomic-text-2xl);font-size:var(--font-size);font-weight:500;--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable atomic-result-section-excerpt{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:2;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:1.25rem;overflow:hidden}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:1rem;max-height:3rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-comfortable atomic-result-section-children{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:1.25rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal atomic-result-section-visual{margin-bottom:.75rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal.image-small atomic-result-section-visual{height:10.25rem;width:10.25rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal atomic-result-section-badges{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);--row-height:2rem;margin-bottom:1rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal atomic-result-section-actions{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);--row-height:2rem;margin-top:1rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal atomic-result-section-title{--font-size:var(--atomic-text-lg);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:2;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;max-height:3rem;overflow:hidden}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal atomic-result-section-title-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.475rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal atomic-result-section-emphasized{--font-size:var(--atomic-text-2xl);font-size:var(--font-size);font-weight:500;--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal atomic-result-section-excerpt{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:2;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:1rem;overflow:hidden}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.75rem;max-height:3rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-normal atomic-result-section-children{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:1rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact atomic-result-section-visual{margin-bottom:.5rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact.image-large atomic-result-section-visual{width:100%}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact.image-small atomic-result-section-visual{height:10.25rem;width:10.25rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact atomic-result-section-badges{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);--row-height:2rem;margin-bottom:1rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact atomic-result-section-actions{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);--row-height:2rem;margin-top:.75rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact atomic-result-section-title{--font-size:var(--atomic-text-lg);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:2;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;max-height:3rem;overflow:hidden}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact atomic-result-section-title-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.475rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact atomic-result-section-emphasized{--font-size:var(--atomic-text-2xl);font-size:var(--font-size);font-weight:500;--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact atomic-result-section-excerpt{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:1;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:.75rem;overflow:hidden}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.5rem;max-height:3rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).density-compact atomic-result-section-children{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.75rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).image-small atomic-result-section-visual{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).image-small atomic-result-section-visual{height:9rem}}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).image-small atomic-result-section-visual{width:100%}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).image-icon atomic-result-section-visual{height:2rem;width:2rem}:is(:host .result-root.with-sections.display-grid.image-small,:host .result-root.with-sections.display-grid.image-icon,:host .result-root.with-sections.display-grid.image-none).image-none atomic-result-section-visual{display:none}}:host .result-root.with-sections.display-table.image-large.density-compact atomic-result-section-visual{height:10.25rem;width:10.25rem}:host .result-root.with-sections.display-table atomic-result-section-children atomic-insight-result-children::part(children-root),:host .result-root.with-sections.display-table atomic-result-section-children atomic-result-children::part(children-root){border-color:var(--atomic-neutral);border-radius:16px;border-style:var(--tw-border-style);border-width:1px}:host .result-root.with-sections.display-table.density-comfortable atomic-result-section-visual{margin-right:1.5rem}:host .result-root.with-sections.display-table.density-comfortable atomic-result-section-actions,:host .result-root.with-sections.display-table.density-comfortable atomic-result-section-badges{--row-height:2rem;margin-bottom:1.5rem}:host .result-root.with-sections.display-table.density-comfortable atomic-result-section-title{--font-size:var(--atomic-text-2xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:host .result-root.with-sections.display-table.density-comfortable atomic-result-section-excerpt{--font-size:var(--atomic-text-lg);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:3;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:1.75rem;max-height:4.5rem;overflow:hidden}:host .result-root.with-sections.display-table.density-comfortable atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:1.25rem;max-height:4rem}:host .result-root.with-sections.display-table.density-comfortable atomic-result-section-title-metadata{margin-top:.475rem}:is(:host .result-root.with-sections.display-table.density-comfortable atomic-result-children,:host .result-root.with-sections.display-table.density-comfortable atomic-insight-result-children)::part(children-root){border-color:var(--atomic-neutral);border-radius:16px;border-style:var(--tw-border-style);border-width:1px;margin-top:1.25rem;padding:1.75rem}:is(:host .result-root.with-sections.display-table.density-comfortable atomic-result-children,:host .result-root.with-sections.display-table.density-comfortable atomic-insight-result-children)::part(show-hide-button){margin-bottom:1.25rem;margin-top:1.25rem}:host .result-root.with-sections.display-table.density-comfortable .placeholder,:host .result-root.with-sections.display-table.density-comfortable.child-result:not(.last-child){margin-bottom:1.75rem}:host .result-root.with-sections.display-table.density-normal atomic-result-section-visual{margin-right:1rem}:host .result-root.with-sections.display-table.density-normal atomic-result-section-actions,:host .result-root.with-sections.display-table.density-normal atomic-result-section-badges{--row-height:2rem;margin-bottom:1rem}:host .result-root.with-sections.display-table.density-normal atomic-result-section-title{--font-size:var(--atomic-text-xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:host .result-root.with-sections.display-table.density-normal atomic-result-section-excerpt{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:2;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:1.25rem;max-height:2.5rem;overflow:hidden}:host .result-root.with-sections.display-table.density-normal atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.875rem;max-height:3.5rem}:host .result-root.with-sections.display-table.density-normal atomic-result-section-title-metadata{margin-top:.475rem}:is(:host .result-root.with-sections.display-table.density-normal atomic-result-children,:host .result-root.with-sections.display-table.density-normal atomic-insight-result-children)::part(children-root){border-color:var(--atomic-neutral);border-radius:16px;border-style:var(--tw-border-style);border-width:1px;margin-top:.875rem;padding:1.5rem}:is(:host .result-root.with-sections.display-table.density-normal atomic-result-children,:host .result-root.with-sections.display-table.density-normal atomic-insight-result-children)::part(show-hide-button){margin-bottom:.875rem;margin-top:.875rem}:host .result-root.with-sections.display-table.density-normal .placeholder,:host .result-root.with-sections.display-table.density-normal.child-result:not(.last-child){margin-bottom:1.5rem}:host .result-root.with-sections.display-table.density-compact atomic-result-section-visual{margin-right:1rem}:host .result-root.with-sections.display-table.density-compact atomic-result-section-actions,:host .result-root.with-sections.display-table.density-compact atomic-result-section-badges{--row-height:2rem;margin-bottom:1rem}:host .result-root.with-sections.display-table.density-compact atomic-result-section-title{--font-size:var(--atomic-text-xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}:host .result-root.with-sections.display-table.density-compact atomic-result-section-excerpt{--font-size:var(--atomic-text-base);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:1;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;margin-top:1rem;max-height:1.25rem;overflow:hidden}:host .result-root.with-sections.display-table.density-compact atomic-result-section-bottom-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.6875rem;max-height:3.25rem}:host .result-root.with-sections.display-table.density-compact atomic-result-section-title-metadata{margin-top:.475rem}:is(:host .result-root.with-sections.display-table.density-compact atomic-result-children,:host .result-root.with-sections.display-table.density-compact atomic-insight-result-children)::part(children-root){border-color:var(--atomic-neutral);border-radius:16px;border-style:var(--tw-border-style);border-width:1px;margin-top:.475rem;padding:1rem}:is(:host .result-root.with-sections.display-table.density-compact atomic-result-children,:host .result-root.with-sections.display-table.density-compact atomic-insight-result-children)::part(show-hide-button){margin-bottom:.475rem;margin-top:.475rem}:host .result-root.with-sections.display-table.density-compact .placeholder,:host .result-root.with-sections.display-table.density-compact.child-result:not(.last-child){margin-bottom:1rem}:host .result-root.with-sections.display-table.image-large,:host .result-root.with-sections.display-table.image-small{grid-template-areas:"badges badges.actions""visual title title title""visual title-metadata title-metadata title-metadata""visual emphasized emphasized emphasized""visual excerpt excerpt excerpt""visual bottom-metadata bottom-metadata bottom-metadata""visual children children children";grid-template-columns:minmax(0,min-content) auto 1fr auto;grid-template-rows:repeat(6,auto) minmax(0,1fr)}:is(:host .result-root.with-sections.display-table.image-large.density-comfortable,:host .result-root.with-sections.display-table.image-large.density-normal) atomic-result-section-visual{height:20.375rem;width:20.375rem}:is(:host .result-root.with-sections.display-table.image-small,:host .result-root.with-sections.display-table.image-large.density-compact) atomic-result-section-visual{height:10rem;width:10rem}:host .result-root.with-sections.display-table.image-icon{grid-template-areas:"badges badges.actions""visual title title title""visual title-metadata title-metadata title-metadata""visual emphasized emphasized emphasized""visual excerpt excerpt excerpt""visual bottom-metadata bottom-metadata bottom-metadata""visual children children children";grid-template-columns:minmax(0,min-content) auto 1fr auto;grid-template-rows:repeat(7,minmax(0,min-content))}:host .result-root.with-sections.display-table.image-icon atomic-result-section-visual{height:2rem;width:2rem}:host .result-root.with-sections.display-table.image-none{grid-template-areas:"badges.actions""title title title""title-metadata title-metadata title-metadata""emphasized emphasized emphasized""excerpt excerpt excerpt""bottom-metadata bottom-metadata bottom-metadata""children children children";grid-template-columns:auto 1fr auto;grid-template-rows:repeat(6,auto)}:host .link-container,:host .result-root atomic-table-element,:host .result-root.with-sections.display-table.image-none atomic-result-section-visual{display:none}}:host .result-root.display-grid atomic-result-section-actions{display:none}:host .result-root .badge{width:14rem}:host .result-root .action{width:10rem}:host .result-root .title{grid-gap:.5rem;display:grid;grid-auto-flow:column;height:var(--line-height);max-width:100%;width:30rem}:host .result-root .fields-placeholder{grid-column-gap:.5rem;display:grid;grid-template-columns:repeat(auto-fill,min(11rem,40%))}:host .result-root .fields-placeholder .field-value-placeholder{height:var(--font-size);margin:calc((var(--line-height) - var(--font-size))/2) 0}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}`;
|
|
12543
13249
|
_ts_decorate$C([
|
|
12544
13250
|
decorators_js.property({
|
|
12545
13251
|
type: String
|
|
@@ -12640,7 +13346,7 @@ class AtomicResultTablePlaceholder extends lit.LitElement {
|
|
|
12640
13346
|
`;
|
|
12641
13347
|
}
|
|
12642
13348
|
}
|
|
12643
|
-
AtomicResultTablePlaceholder.styles = lit.css`/*! tailwindcss v4.3.
|
|
13349
|
+
AtomicResultTablePlaceholder.styles = lit.css`/*! tailwindcss v4.3.2 | MIT License | https://tailwindcss.com */@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,::backdrop,:after,:before{--tw-border-style:solid}}}:host{display:grid}.list-root.display-table{border-collapse:separate;border-spacing:0;min-width:100%}.list-root.display-table td,.list-root.display-table th{border-color:var(--atomic-neutral);border-style:var(--tw-border-style);border-width:1px;font-family:var(--atomic-font-family);font-size:var(--atomic-text-sm);line-height:var(--tw-leading,var(--text-sm--line-height,1.42857));line-height:1rem;white-space:nowrap}:is(.list-root.display-table th,.list-root.display-table td):not(:first-child){border-left:none}:is(.list-root.display-table th,.list-root.display-table td):first-child{min-width:19rem}.list-root.display-table th{background-color:var(--atomic-neutral-light);border-bottom:none;color:#000;font-weight:700;padding:1rem var(--padding);text-align:left}.list-root.display-table th:first-child{border-top-left-radius:var(--atomic-border-radius-xl)}.list-root.display-table th:last-child{border-top-right-radius:var(--atomic-border-radius-xl)}.list-root.display-table td{border-top:none;color:var(--atomic-neutral-dark);padding:var(--padding);vertical-align:top}.list-root.display-table.density-comfortable{--padding:2rem}.list-root.display-table.density-normal{--padding:1.5rem}.list-root.display-table.density-compact{--padding:1rem}.list-root.display-table{border-color:var(--atomic-neutral);border-radius:var(--atomic-border-radius-xl);border-style:var(--tw-border-style);border-width:1px}.list-root.display-table tbody tr:not(:last-child),.list-root.display-table thead tr{position:relative}:is(.list-root.display-table thead tr,.list-root.display-table tbody tr:not(:last-child)):after{background-color:var(--atomic-neutral);bottom:0;content:" ";display:block;height:1px;left:var(--padding);position:absolute;right:var(--padding)}.list-root.display-table td,.list-root.display-table th{border-color:#0000;border-radius:initial}.list-root.display-table th{background-color:#0000}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}`;
|
|
12644
13350
|
_ts_decorate$B([
|
|
12645
13351
|
decorators_js.property({
|
|
12646
13352
|
type: String
|
|
@@ -12741,17 +13447,17 @@ const renderItemList = ({ props })=>(children)=>{
|
|
|
12741
13447
|
return children;
|
|
12742
13448
|
};
|
|
12743
13449
|
|
|
12744
|
-
const styles$5 = lit.css`/*! tailwindcss v4.3.
|
|
12745
|
-
|
|
13450
|
+
const styles$5 = lit.css`/*! tailwindcss v4.3.2 | MIT License | https://tailwindcss.com */@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,::backdrop,:after,:before{--tw-border-style:solid}}}:host [part~=outline][part~=result-list-grid-clickable-container]{border:1px solid #0000;border-radius:1rem;padding:1rem;position:relative;transition:all .12s ease-out}:host [part~=outline][part~=result-list-grid-clickable-container]:hover{border-color:var(--atomic-neutral);border-style:var(--tw-border-style);border-width:1px;box-shadow:0 10px 25px var(--atomic-neutral);cursor:pointer}:host [part=result-list-grid-clickable]:focus-visible{border-color:var(--atomic-primary);border-radius:2px;border-style:var(--tw-border-style);border-width:2px;color:var(--atomic-primary);cursor:pointer;display:inline-block;position:absolute;text-align:center;text-decoration:underline}:host [part=result-list-grid-clickable]:not(:focus){clip:rect(1px,1px,1px,1px);overflow:hidden;padding:0;position:absolute}:host .list-wrapper{word-break:break-word}:host .list-root.display-grid{display:grid;justify-content:space-evenly}:host .list-root.display-grid .result-component{box-sizing:border-box;height:100%}@media (min-width:1024px){:host .list-root.display-grid{grid-template-columns:repeat(auto-fit,minmax(17rem,1fr))}:host .list-root.display-grid.density-comfortable{grid-row-gap:4rem;grid-column-gap:1.5rem}:host .list-root.display-grid.density-compact,:host .list-root.display-grid.density-normal{grid-row-gap:3rem;grid-column-gap:1.5rem}:host .list-root.display-grid.image-large{grid-template-columns:repeat(auto-fill,minmax(19rem,1fr))}@media not all and (min-width:1024px){:host .list-root.display-grid.image-small{grid-template-columns:repeat(3,1fr)}}@media (min-width:1024px){:host .list-root.display-grid.image-small{grid-template-columns:repeat(3,1fr)}}@media (min-width:1280px){:host .list-root.display-grid.image-small{grid-template-columns:repeat(4,1fr)}}}@media not all and (min-width:1024px){@media not all and (min-width:768px){:host .list-root.display-grid.image-large.density-comfortable [part~=outline]:before{margin:2rem 0}:host .list-root.display-grid.image-large.density-normal [part~=outline]:before{margin:1.5rem 0}@media not all and (min-width:1024px){:host .list-root.display-grid.image-large.density-normal [part~=outline]:before{margin:1.75rem 0}}:host .list-root.display-grid.image-large.density-compact [part~=outline]:before{margin:1rem 0}@media not all and (min-width:1024px){:host .list-root.display-grid.image-large.density-compact [part~=outline]:before{margin:1.5rem 0}}:host .list-root.display-grid.image-large [part~=outline]:before{background-color:var(--atomic-neutral);content:" ";display:block;height:1px}:host .list-root.display-grid.image-large [part~=outline]:first-of-type:before{display:none}:host .list-root.display-grid.image-large atomic-result-placeholder:before{background-color:#0000}:host .list-root.display-grid.image-large{grid-template-columns:minmax(auto,35rem)}}@media (min-width:768px){:host .list-root.display-grid.image-large [part~=outline]{border-color:var(--atomic-neutral);border-radius:1rem;border-style:var(--tw-border-style);border-width:1px;padding:1rem}:host .list-root.display-grid.image-large atomic-result-placeholder{border-color:#0000}:host .list-root.display-grid.image-large{grid-column-gap:.5rem;grid-row-gap:.5rem;grid-template-columns:1fr 1fr}}:is(:host .list-root.display-grid.image-small,:host .list-root.display-grid.image-icon,:host .list-root.display-grid.image-none) [part~=outline]{border-color:var(--atomic-neutral);border-radius:1rem;border-style:var(--tw-border-style);border-width:1px;padding:1rem}:is(:host .list-root.display-grid.image-small,:host .list-root.display-grid.image-icon,:host .list-root.display-grid.image-none) atomic-result-placeholder{border-color:#0000}:host .list-root.display-grid.image-icon,:host .list-root.display-grid.image-none,:host .list-root.display-grid.image-small{grid-column-gap:.5rem;grid-row-gap:.5rem}@media not all and (min-width:640px){:host .list-root.display-grid.image-icon,:host .list-root.display-grid.image-none,:host .list-root.display-grid.image-small{grid-template-columns:minmax(0,1fr)}}@media (min-width:768px){:host .list-root.display-grid.image-icon,:host .list-root.display-grid.image-none,:host .list-root.display-grid.image-small{grid-template-columns:minmax(0,1fr) minmax(0,1fr)}}@media (min-width:1024px){:host .list-root.display-grid.image-icon,:host .list-root.display-grid.image-none,:host .list-root.display-grid.image-small{grid-template-columns:minmax(0,1fr) minmax(0,1fr) minmax(0,1fr)}}}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}`;
|
|
13451
|
+
var grid_display_tw_css = styles$5;
|
|
12746
13452
|
|
|
12747
|
-
const styles$4 = lit.css`/*! tailwindcss v4.3.
|
|
12748
|
-
|
|
13453
|
+
const styles$4 = lit.css`/*! tailwindcss v4.3.2 | MIT License | https://tailwindcss.com */@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,::backdrop,:after,:before{--tw-border-style:solid}}}[part~=divider]:not(:last-child){border-bottom-color:var(--atomic-neutral);padding-bottom:1rem}[part~=divider]{margin-bottom:1rem}.list-root.display-list{display:flex;flex-direction:column}.list-root.display-list .result-component,.list-root.display-list atomic-result-placeholder{width:auto}@media (min-width:1024px){.list-root.display-list.density-comfortable [part~=outline]:before{margin:2rem 0}.list-root.display-list.density-normal [part~=outline]:before{margin:1.5rem 0}@media not all and (min-width:1024px){.list-root.display-list.density-normal [part~=outline]:before{margin:1.75rem 0}}.list-root.display-list.density-compact [part~=outline]:before{margin:1rem 0}@media not all and (min-width:1024px){.list-root.display-list.density-compact [part~=outline]:before{margin:1.5rem 0}}.list-root.display-list [part~=outline]:before{background-color:var(--atomic-neutral);content:" ";display:block;height:1px}.list-root.display-list [part~=outline]:first-of-type:before{display:none}.list-root.display-list atomic-result-placeholder:before{background-color:#0000}}@media not all and (min-width:1024px){.list-root.display-list.image-large.density-comfortable [part~=outline]:before{margin:2rem 0}.list-root.display-list.image-large.density-normal [part~=outline]:before{margin:1.5rem 0}@media not all and (min-width:1024px){.list-root.display-list.image-large.density-normal [part~=outline]:before{margin:1.75rem 0}}.list-root.display-list.image-large.density-compact [part~=outline]:before{margin:1rem 0}@media not all and (min-width:1024px){.list-root.display-list.image-large.density-compact [part~=outline]:before{margin:1.5rem 0}}.list-root.display-list.image-large [part~=outline]:before{background-color:var(--atomic-neutral);content:" ";display:block;height:1px}.list-root.display-list.image-large [part~=outline]:first-of-type:before{display:none}.list-root.display-list.image-large atomic-result-placeholder:before{background-color:#0000}.list-root.display-list.image-large{display:grid;grid-template-columns:minmax(auto,35rem);justify-content:space-evenly}.list-root.display-list.image-icon,.list-root.display-list.image-none,.list-root.display-list.image-small{grid-row-gap:1rem}:is(.list-root.display-list.image-small,.list-root.display-list.image-icon,.list-root.display-list.image-none) [part~=outline]{border-color:var(--atomic-neutral);border-radius:1rem;border-style:var(--tw-border-style);border-width:1px;padding:1rem}:is(.list-root.display-list.image-small,.list-root.display-list.image-icon,.list-root.display-list.image-none) atomic-result-placeholder{border-color:#0000}}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}`;
|
|
13454
|
+
var list_display_tw_css = styles$4;
|
|
12749
13455
|
|
|
12750
13456
|
const styles$3 = lit.css`.list-wrapper.placeholder{.result-component,table.list-root{display:none}}.list-wrapper:not(.placeholder){atomic-result-placeholder,atomic-result-table-placeholder{display:none}}.list-root.loading{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}@keyframes pulse{0%,to{opacity:.6}50%{opacity:.2}}`;
|
|
12751
|
-
|
|
13457
|
+
var placeholders_tw_css = styles$3;
|
|
12752
13458
|
|
|
12753
|
-
const styles$2 = lit.css`/*! tailwindcss v4.3.
|
|
12754
|
-
|
|
13459
|
+
const styles$2 = lit.css`/*! tailwindcss v4.3.2 | MIT License | https://tailwindcss.com */@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,::backdrop,:after,:before{--tw-border-style:solid}}}.list-wrapper.display-table{display:grid;overflow-x:auto}.list-root.display-table{border-collapse:separate;border-spacing:0;min-width:100%}.list-root.display-table td,.list-root.display-table th{border-color:var(--atomic-neutral);border-style:var(--tw-border-style);border-width:1px;font-family:var(--atomic-font-family);font-size:var(--atomic-text-sm);line-height:var(--tw-leading,var(--text-sm--line-height,1.42857));line-height:1rem;white-space:nowrap}:is(.list-root.display-table th,.list-root.display-table td):not(:first-child){border-left:none}:is(.list-root.display-table th,.list-root.display-table td):first-child{min-width:19rem}.list-root.display-table th{background-color:var(--atomic-neutral-light);border-bottom:none;color:#000;font-weight:700;padding:1rem var(--padding);text-align:left}.list-root.display-table th:first-child{border-top-left-radius:var(--atomic-border-radius-xl)}.list-root.display-table th:last-child{border-top-right-radius:var(--atomic-border-radius-xl)}.list-root.display-table td{border-top:none;color:var(--atomic-neutral-dark);padding:var(--padding);vertical-align:top}.list-root.display-table.density-comfortable{--padding:2rem}.list-root.display-table.density-normal{--padding:1.5rem}.list-root.display-table.density-compact{--padding:1rem}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}`;
|
|
13460
|
+
var table_display_tw_css = styles$2;
|
|
12755
13461
|
|
|
12756
13462
|
function _ts_decorate$A(decorators, target, key, desc) {
|
|
12757
13463
|
var c = arguments.length, r = c < 3 ? target : null === desc ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
@@ -13161,7 +13867,7 @@ AtomicCommerceProductList$1.styles = [
|
|
|
13161
13867
|
table_display_tw_css,
|
|
13162
13868
|
list_display_tw_css,
|
|
13163
13869
|
grid_display_tw_css,
|
|
13164
|
-
lit.css`/*! tailwindcss v4.3.
|
|
13870
|
+
lit.css`/*! tailwindcss v4.3.2 | MIT License | https://tailwindcss.com */:host .result-link{color:var(--atomic-on-background)}:host .result-link:focus-visible,:host .result-link:hover{color:var(--atomic-primary);text-decoration:underline}:host .result-link:focus{outline:none}:host .result-link:visited{color:var(--atomic-visited)}:host .result-grid{grid-template-columns:repeat(5,minmax(0,1fr));justify-items:center}:host .result-grid a{justify-content:center}:host .result-list{display:flex;flex-direction:column}:host .result-list .result-item{display:flex;flex-wrap:wrap;max-width:600px;width:100%}:host .result-list .result-item .result-details{align-content:center}@media (min-width:1024px){:host .result-grid{display:grid}}@media not all and (min-width:1024px){:host .result-grid{display:flex;flex-direction:column}}`
|
|
13165
13871
|
];
|
|
13166
13872
|
_ts_decorate$z([
|
|
13167
13873
|
decorators_js.state(),
|
|
@@ -14490,7 +15196,7 @@ let AtomicCommerceRecommendationList$1 = class AtomicCommerceRecommendationList
|
|
|
14490
15196
|
};
|
|
14491
15197
|
AtomicCommerceRecommendationList$1.styles = [
|
|
14492
15198
|
placeholders_tw_css,
|
|
14493
|
-
lit.css`/*! tailwindcss v4.3.
|
|
15199
|
+
lit.css`/*! tailwindcss v4.3.2 | MIT License | https://tailwindcss.com */@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,::backdrop,:after,:before{--tw-border-style:solid;--tw-font-weight:initial}}}:host [part~=outline][part~=result-list-grid-clickable-container]{border:1px solid #0000;border-radius:1rem;padding:1rem;position:relative;transition:all .12s ease-out}:host [part~=outline][part~=result-list-grid-clickable-container]:hover{border-color:var(--atomic-neutral);border-style:var(--tw-border-style);border-width:1px;box-shadow:0 10px 25px var(--atomic-neutral);cursor:pointer}:host [part=result-list-grid-clickable]:focus-visible{border-color:var(--atomic-primary);border-radius:2px;border-style:var(--tw-border-style);border-width:2px;color:var(--atomic-primary);cursor:pointer;display:inline-block;position:absolute;text-align:center;text-decoration:underline}:host [part=result-list-grid-clickable]:not(:focus){clip:rect(1px,1px,1px,1px);overflow:hidden;padding:0;position:absolute}:host .list-wrapper{word-break:break-word}:host .list-root.display-grid{display:grid;justify-content:space-evenly}:host .list-root.display-grid .result-component{box-sizing:border-box;height:100%}:host .list-root [part~=outline]{border-color:var(--atomic-neutral);border-radius:1rem;border-style:var(--tw-border-style);border-width:1px;padding:1rem}:host .list-root atomic-result-placeholder{border-color:#0000}:host .list-root{grid-column-gap:.5rem;grid-row-gap:.5rem;grid-template-columns:repeat(var(--atomic-recs-number-of-columns,1),minmax(0,1fr));grid-template-rows:repeat(var(--atomic-recs-number-of-rows,1),minmax(0,1fr))}:host [part=label]{font-family:var(--atomic-font-family);font-size:var(--atomic-text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height,1.33333));--tw-font-weight:var(--atomic-font-bold);font-weight:var(--atomic-font-bold)}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-font-weight{syntax:"*";inherits:false}`
|
|
14494
15200
|
];
|
|
14495
15201
|
_ts_decorate$u([
|
|
14496
15202
|
decorators_js.state(),
|
|
@@ -14826,7 +15532,7 @@ class AtomicModal extends InitializeBindingsMixin(lit.LitElement) {
|
|
|
14826
15532
|
};
|
|
14827
15533
|
}
|
|
14828
15534
|
}
|
|
14829
|
-
AtomicModal.styles = lit.css`/*! tailwindcss v4.3.
|
|
15535
|
+
AtomicModal.styles = lit.css`/*! tailwindcss v4.3.2 | MIT License | https://tailwindcss.com */@keyframes scaleUp{0%{opacity:0;transform:scale(.7)translateY(150vh)}to{opacity:1;transform:scale(1)translateY(0)}}@keyframes slideDown{0%{opacity:1;transform:translateY(0)}to{opacity:0;transform:translateY(150vh)}}article.animate-open{animation:var(--animate-scale-up-modal,scaleUp .5s cubic-bezier(.165,.84,.44,1) forwards)}article.animate-close{animation:var(--animate-slide-down-modal,slideDown .5s linear forwards)}.grid-template-modal{grid-template:". . ."1fr".modal."". . ."3fr/1fr min(30rem,100%) 1fr}`;
|
|
14830
15536
|
_ts_decorate$t([
|
|
14831
15537
|
decorators_js.state(),
|
|
14832
15538
|
_ts_metadata$l("design:type", "u" < typeof AnyBindings ? Object : AnyBindings)
|
|
@@ -15708,7 +16414,7 @@ const getPartialInstantItemShowAllElement = (i18n, i18nKey)=>({
|
|
|
15708
16414
|
const renderInstantItemShowAllButton = ({ i18n, i18nKey })=>{
|
|
15709
16415
|
const template = lit.html`<div
|
|
15710
16416
|
part="instant-results-show-all-button"
|
|
15711
|
-
class="pointer-events-none
|
|
16417
|
+
class="text-primary pointer-events-none bg-transparent"
|
|
15712
16418
|
>
|
|
15713
16419
|
${i18n.t(i18nKey)}
|
|
15714
16420
|
</div>`;
|
|
@@ -18301,7 +19007,7 @@ AtomicCommerceSearchBox$1.shadowRootOptions = {
|
|
|
18301
19007
|
...lit.LitElement.shadowRootOptions,
|
|
18302
19008
|
delegatesFocus: true
|
|
18303
19009
|
};
|
|
18304
|
-
AtomicCommerceSearchBox$1.styles = lit.css`/*! tailwindcss v4.3.1 | MIT License | https://tailwindcss.com */@layer properties{*,::backdrop,:after,:before{--tw-translate-x:0;--tw-translate-y:0;--tw-translate-z:0;--tw-scale-x:1;--tw-scale-y:1;--tw-scale-z:1;--tw-rotate-x:initial;--tw-rotate-y:initial;--tw-rotate-z:initial;--tw-skew-x:initial;--tw-skew-y:initial;--tw-space-x-reverse:0;--tw-divide-y-reverse:0;--tw-border-style:solid;--tw-gradient-position:initial;--tw-gradient-from:#0000;--tw-gradient-via:#0000;--tw-gradient-to:#0000;--tw-gradient-stops:initial;--tw-gradient-via-stops:initial;--tw-gradient-from-position:0%;--tw-gradient-via-position:50%;--tw-gradient-to-position:100%;--tw-leading:initial;--tw-font-weight:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000;--tw-outline-style:solid;--tw-blur:initial;--tw-brightness:initial;--tw-contrast:initial;--tw-grayscale:initial;--tw-hue-rotate:initial;--tw-invert:initial;--tw-opacity:initial;--tw-saturate:initial;--tw-sepia:initial;--tw-drop-shadow:initial;--tw-drop-shadow-color:initial;--tw-drop-shadow-alpha:100%;--tw-drop-shadow-size:initial;--tw-duration:initial;--tw-ease:initial;--tw-content:""}@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,::backdrop,:after,:before{--tw-translate-x:0;--tw-translate-y:0;--tw-translate-z:0;--tw-scale-x:1;--tw-scale-y:1;--tw-scale-z:1;--tw-rotate-x:initial;--tw-rotate-y:initial;--tw-rotate-z:initial;--tw-skew-x:initial;--tw-skew-y:initial;--tw-space-y-reverse:0;--tw-space-x-reverse:0;--tw-divide-y-reverse:0;--tw-border-style:solid;--tw-gradient-position:initial;--tw-gradient-from:#0000;--tw-gradient-via:#0000;--tw-gradient-to:#0000;--tw-gradient-stops:initial;--tw-gradient-via-stops:initial;--tw-gradient-from-position:0%;--tw-gradient-via-position:50%;--tw-gradient-to-position:100%;--tw-leading:initial;--tw-font-weight:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000;--tw-outline-style:solid;--tw-blur:initial;--tw-brightness:initial;--tw-contrast:initial;--tw-grayscale:initial;--tw-hue-rotate:initial;--tw-invert:initial;--tw-opacity:initial;--tw-saturate:initial;--tw-sepia:initial;--tw-drop-shadow:initial;--tw-drop-shadow-color:initial;--tw-drop-shadow-alpha:100%;--tw-drop-shadow-size:initial;--tw-duration:initial;--tw-ease:initial;--tw-content:""}}}@layer theme;@layer base{*,::backdrop,:after,:before{border:0 solid;box-sizing:border-box;margin:0;padding:0}::file-selector-button{border:0 solid;box-sizing:border-box;margin:0;padding:0}:host,html{-webkit-text-size-adjust:100%;font-family:var(--default-font-family,var(--atomic-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"));font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);line-height:1.5;tab-size:4;-webkit-tap-highlight-color:transparent}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-size:1em;font-variation-settings:var(--default-mono-font-variation-settings,normal)}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-collapse:collapse;border-color:inherit;text-indent:0}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}menu,ol,ul{list-style:none}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}button,input,optgroup,select,textarea{background-color:#0000;border-radius:0;color:inherit;font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;opacity:1}::file-selector-button{background-color:#0000;border-radius:0;color:inherit;font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;opacity:1}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:currentColor}@supports (color:color-mix(in lab,red,red)){::placeholder{color:color-mix(in oklab,currentcolor 50%,transparent)}}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit,::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}::-webkit-calendar-picker-indicator{line-height:1}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){appearance:button}::file-selector-button{appearance:button}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}:host{display:block}:host,button,input,select{font-family:var(--atomic-font-family);font-size:var(--atomic-text-base);line-height:var(--tw-leading,1.5);--tw-font-weight:var(--atomic-font-normal);font-weight:var(--atomic-font-normal)}button{cursor:pointer}:host(.atomic-hidden){display:none}.ripple{animation:ripple var(--animation-duration) linear;border-radius:50%;pointer-events:none;position:absolute;transform:scale(0)}.ripple-relative{position:relative}.ripple-parent{overflow:hidden}@keyframes ripple{to{opacity:0;transform:scale(4)}}}@layer components{.input-primary{background-color:var(--atomic-background);border-color:var(--atomic-neutral);border-radius:var(--atomic-border-radius);border-style:var(--tw-border-style);border-width:1px}@media (hover:hover){.input-primary:hover{border-color:var(--atomic-primary-light)}}.input-primary:focus-visible{border-color:var(--atomic-primary);--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--atomic-ring-primary);--tw-outline-style:none;outline-style:none}.btn-radio{appearance:none}.btn-radio:before{--tw-content:attr(value);content:var(--tw-content)}.btn-primary{background-color:var(--atomic-primary);border-radius:var(--atomic-border-radius);color:var(--atomic-on-primary)}@media (hover:hover){.btn-primary:hover{background-color:var(--atomic-primary-light)}}.btn-primary:focus-visible{background-color:var(--atomic-primary-light);--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--atomic-ring-primary);--tw-outline-style:none;outline-style:none}.btn-primary:disabled{background-color:var(--atomic-disabled);cursor:not-allowed}.btn-outline-primary{background-color:var(--atomic-background);border-color:var(--atomic-neutral);border-radius:var(--atomic-border-radius);border-style:var(--tw-border-style);border-width:1px;color:var(--atomic-primary)}@media (hover:hover){.btn-outline-primary:hover{border-color:var(--atomic-primary-light);color:var(--atomic-primary-light)}}.btn-outline-primary:focus-visible{border-color:var(--atomic-primary);color:var(--atomic-primary);--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--atomic-ring-primary);--tw-outline-style:none;outline-style:none}.btn-outline-primary:disabled{border-color:var(--atomic-neutral);color:var(--atomic-neutral);cursor:not-allowed}.btn-text-primary{background-color:var(--atomic-background);border-radius:var(--atomic-border-radius);color:var(--atomic-primary)}@media (hover:hover){.btn-text-primary:hover{background-color:var(--atomic-neutral-light)}}.btn-text-primary:focus-visible{background-color:var(--atomic-neutral-light);--tw-outline-style:none;outline-style:none}.btn-outline-neutral{background-color:var(--atomic-background);border-color:var(--atomic-neutral);border-radius:var(--atomic-border-radius);border-style:var(--tw-border-style);border-width:1px;color:var(--atomic-on-background)}@media (hover:hover){.btn-outline-neutral:hover{border-color:var(--atomic-primary);color:var(--atomic-primary)}}.btn-outline-neutral:focus-visible{border-color:var(--atomic-primary);color:var(--atomic-primary);--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--atomic-ring-primary);--tw-outline-style:none;outline-style:none}.btn-outline-neutral:disabled{border-color:var(--atomic-neutral);color:var(--atomic-on-background);cursor:not-allowed;opacity:.5}.btn-outline-bg-neutral{background-color:var(--atomic-background);border-color:var(--atomic-neutral);border-radius:var(--atomic-border-radius);border-style:var(--tw-border-style);border-width:1px;color:var(--atomic-on-background)}@media (hover:hover){.btn-outline-bg-neutral:hover{background-color:var(--atomic-neutral-light);border-color:var(--atomic-primary);color:var(--atomic-primary)}}.btn-outline-bg-neutral:focus-visible{background-color:var(--atomic-neutral-light);border-color:var(--atomic-primary);color:var(--atomic-primary);--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--atomic-ring-primary);--tw-outline-style:none;outline-style:none}.btn-outline-bg-neutral:disabled{border-color:var(--atomic-neutral);color:var(--atomic-on-background);cursor:not-allowed;opacity:.5}.btn-outline-bg-error{background-color:var(--atomic-background);border-color:var(--atomic-neutral);border-radius:var(--atomic-border-radius);border-style:var(--tw-border-style);border-width:1px;color:var(--atomic-on-background)}@media (hover:hover){.btn-outline-bg-error:hover{background-color:var(--atomic-neutral-light);border-color:var(--atomic-primary);color:var(--atomic-primary)}}.btn-outline-bg-error:focus-visible{background-color:var(--atomic-neutral-light);border-color:var(--atomic-primary);color:var(--atomic-primary);--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--atomic-ring-primary);--tw-outline-style:none;outline-style:none}.btn-outline-bg-error:disabled{border-color:var(--atomic-neutral);color:var(--atomic-on-background);cursor:not-allowed;opacity:.5}.btn-outline-error{background-color:var(--atomic-background);border-color:var(--atomic-neutral);border-radius:var(--atomic-border-radius);border-style:var(--tw-border-style);border-width:1px;color:var(--atomic-on-background)}@media (hover:hover){.btn-outline-error:hover{border-color:var(--atomic-error);color:var(--atomic-error)}}.btn-outline-error:focus-visible{border-color:var(--atomic-error);color:var(--atomic-error);--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--atomic-ring-primary);--tw-outline-style:none;outline-style:none}.btn-outline-error:disabled{border-color:var(--atomic-neutral);color:var(--atomic-on-background);cursor:not-allowed;opacity:.5}.btn-text-neutral{background-color:var(--atomic-background);border-radius:var(--atomic-border-radius);color:var(--atomic-on-background)}@media (hover:hover){.btn-text-neutral:hover{background-color:var(--atomic-neutral-light);color:var(--atomic-primary)}}.btn-text-neutral:focus-visible{background-color:var(--atomic-neutral-light);color:var(--atomic-primary);--tw-outline-style:none;outline-style:none}.btn-text-transparent{color:var(--atomic-on-background)}@media (hover:hover){.btn-text-transparent:hover{color:var(--atomic-primary-light)}}.btn-text-transparent:focus-visible{color:var(--atomic-primary-light)}.btn-square-neutral{background-color:var(--atomic-background);border-color:var(--atomic-neutral);border-style:var(--tw-border-style);border-width:1px;color:var(--atomic-on-background)}@media (hover:hover){.btn-square-neutral:hover{background-color:var(--atomic-neutral-light)}}.btn-square-neutral:focus-visible{background-color:var(--atomic-neutral-light);--tw-outline-style:none;outline-style:none}.btn-page{border-style:var(--tw-border-style);border-width:0;display:grid;font-size:var(--atomic-text-lg);height:2.5rem;line-height:var(--tw-leading,1.55556);place-items:center;width:2.5rem}@media (hover:hover){.btn-page:hover{border-style:var(--tw-border-style);border-width:1px}}.btn-page:focus-visible{border-style:var(--tw-border-style);border-width:1px}.btn-page.selected{border-color:var(--atomic-primary);border-style:var(--tw-border-style);border-width:2px;--tw-font-weight:var(--atomic-font-bold);font-weight:var(--atomic-font-bold)}}@layer utilities{.\\@container{container-type:inline-size}.pointer-events-auto{pointer-events:auto}.pointer-events-none{pointer-events:none}.collapse{visibility:collapse}.invisible{visibility:hidden}.visible{visibility:visible}.sr-only{border-width:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;white-space:nowrap;width:1px}.absolute,.sr-only{position:absolute}.fixed{position:fixed}.relative{position:relative}.static{position:static}.sticky{position:sticky}.inset-0{inset:0}.-top-2{top:-.5rem}.-top-4{top:-1rem}.top-0{top:0}.top-1\\/2{top:50%}.top-\\[4px\\]{top:4px}.top-full{top:100%}.top-px{top:1px}.-right-2{right:-.5rem}.right-0{right:0}.right-1{right:.25rem}.right-2{right:.5rem}.right-6{right:1.5rem}.right-12{right:3rem}.right-px{right:1px}.bottom-0{bottom:0}.bottom-1{bottom:.25rem}.bottom-2{bottom:.5rem}.bottom-px{bottom:1px}.left-0{left:0}.left-1{left:.25rem}.left-2{left:.5rem}.left-\\[15px\\]{left:15px}.isolate{isolation:isolate}.z-0{z-index:0}.z-1{z-index:1}.z-10{z-index:10}.z-9998{z-index:9998}.z-9999{z-index:9999}.order-last{order:9999}.col-span-2{grid-column:span 2/span 2}.container{width:100%}@media (min-width:1024px){.container{max-width:1024px}}@media (min-width:40rem){.container{max-width:40rem}}@media (min-width:48rem){.container{max-width:48rem}}@media (min-width:64rem){.container{max-width:64rem}}@media (min-width:80rem){.container{max-width:80rem}}@media (min-width:96rem){.container{max-width:96rem}}.container\\!{width:100%!important}@media (min-width:1024px){.container\\!{max-width:1024px!important}}@media (min-width:40rem){.container\\!{max-width:40rem!important}}@media (min-width:48rem){.container\\!{max-width:48rem!important}}@media (min-width:64rem){.container\\!{max-width:64rem!important}}@media (min-width:80rem){.container\\!{max-width:80rem!important}}@media (min-width:96rem){.container\\!{max-width:96rem!important}}.m-0{margin:0}.m-2{margin:.5rem}.mx-0{margin-inline:0}.mx-0\\.5{margin-inline:.125rem}.mx-1{margin-inline:.25rem}.mx-6{margin-inline:1.5rem}.mx-16{margin-inline:4rem}.mx-auto{margin-inline:auto}.-my-2{margin-block:-.5rem}.my-2{margin-block:.5rem}.my-3{margin-block:.75rem}.my-4{margin-block:1rem}.my-6{margin-block:1.5rem}.my-auto{margin-block:auto}.mt-0{margin-top:0}.mt-1{margin-top:.25rem}.mt-1\\.5{margin-top:.375rem}.mt-2{margin-top:.5rem}.mt-2\\.5{margin-top:.625rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-6{margin-top:1.5rem}.mt-7{margin-top:1.75rem}.mt-8{margin-top:2rem}.mt-10{margin-top:2.5rem}.mt-px{margin-top:1px}.mr-0{margin-right:0}.mr-0\\.5{margin-right:.125rem}.mr-1{margin-right:.25rem}.mr-1\\.5{margin-right:.375rem}.mr-2{margin-right:.5rem}.mr-3{margin-right:.75rem}.mr-6{margin-right:1.5rem}.mr-auto{margin-right:auto}.mb-0{margin-bottom:0}.mb-1{margin-bottom:.25rem}.mb-2{margin-bottom:.5rem}.mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}.mb-6{margin-bottom:1.5rem}.ml-0\\.5{margin-left:.125rem}.ml-1{margin-left:.25rem}.ml-2{margin-left:.5rem}.ml-4{margin-left:1rem}.ml-6{margin-left:1.5rem}.ml-auto{margin-left:auto}.box-border{box-sizing:border-box}.box-content{box-sizing:content-box}.line-clamp-1{-webkit-line-clamp:1}.line-clamp-1,.line-clamp-2{-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.line-clamp-2{-webkit-line-clamp:2}.line-clamp-3{-webkit-line-clamp:3}.line-clamp-3,.line-clamp-4{-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.line-clamp-4{-webkit-line-clamp:4}.line-clamp-none{-webkit-line-clamp:unset;-webkit-box-orient:horizontal;display:block;overflow:visible}.block{display:block}.contents{display:contents}.flex{display:flex}.grid{display:grid}.hidden{display:none}.inline{display:inline}.inline-block{display:inline-block}.inline-flex{display:inline-flex}.table{display:table}.table-column{display:table-column}.aspect-square-\\[auto\\]{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){.aspect-square-\\[auto\\]{height:auto}}.aspect-square{aspect-ratio:1}.size-\\[27px\\]{height:27px;width:27px}.h-1{height:.25rem}.h-2{height:.5rem}.h-2\\.5{height:.625rem}.h-3{height:.75rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-5\\/6{height:83.3333%}.h-6{height:1.5rem}.h-7{height:1.75rem}.h-8{height:2rem}.h-9{height:2.25rem}.h-10{height:2.5rem}.h-12{height:3rem}.h-\\[2\\.6rem\\]{height:2.6rem}.h-\\[9px\\]{height:9px}.h-auto{height:auto}.h-full{height:100%}.max-h-96{max-height:24rem}.min-h-3{min-height:.75rem}.min-h-5{min-height:1.25rem}.min-h-10{min-height:2.5rem}.min-lines-2{min-height:calc(var(--line-height)*2)}.min-lines-3{min-height:calc(var(--line-height)*3)}.w-0\\.5{width:.125rem}.w-1{width:.25rem}.w-1\\/2{width:50%}.w-2{width:.5rem}.w-2\\.5{width:.625rem}.w-3{width:.75rem}.w-3\\.5{width:.875rem}.w-3\\/5{width:60%}.w-4{width:1rem}.w-5{width:1.25rem}.w-5\\/6{width:83.3333%}.w-6{width:1.5rem}.w-7{width:1.75rem}.w-8{width:2rem}.w-9{width:2.25rem}.w-10{width:2.5rem}.w-12{width:3rem}.w-20{width:5rem}.w-26{width:6.5rem}.w-32{width:8rem}.w-36{width:9rem}.w-48{width:12rem}.w-60{width:15rem}.w-64{width:16rem}.w-72{width:18rem}.w-100{width:25rem}.w-\\[2\\.6rem\\]{width:2.6rem}.w-\\[10px\\]{width:10px}.w-auto{width:auto}.w-fit{width:fit-content}.w-full{width:100%}.w-max{width:max-content}.w-px{width:1px}.max-w-4\\/5{max-width:80%}.max-w-60{max-width:15rem}.max-w-\\[30ch\\]{max-width:30ch}.max-w-full{max-width:100%}.max-w-lg{max-width:32rem}.max-w-max{max-width:max-content}.min-w-0{min-width:0}.min-w-10{min-width:2.5rem}.min-w-20{min-width:5rem}.min-w-24{min-width:6rem}.min-w-full{min-width:100%}.flex-1{flex:1}.flex-none{flex:none}.flex-shrink{flex-shrink:1}.flex-shrink-0,.shrink-0{flex-shrink:0}.flex-grow,.grow{flex-grow:1}.basis-1\\/2{flex-basis:50%}.basis-8{flex-basis:2rem}.-translate-x-1\\/2{--tw-translate-x:-50%}.-translate-x-1\\/2,.translate-x-1\\/2{translate:var(--tw-translate-x) var(--tw-translate-y)}.translate-x-1\\/2{--tw-translate-x:50%}.-translate-y-1\\/2{--tw-translate-y:-50%;translate:var(--tw-translate-x) var(--tw-translate-y)}.scale-75{--tw-scale-x:75%;--tw-scale-y:75%;--tw-scale-z:75%}.scale-100,.scale-75{scale:var(--tw-scale-x) var(--tw-scale-y)}.scale-100{--tw-scale-x:100%;--tw-scale-y:100%;--tw-scale-z:100%}.rotate-180{rotate:180deg}.transform{transform:var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,)}.animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}.animate-spin{animation:spin 1s linear infinite}.cursor-\\[inherit\\]{cursor:inherit}.cursor-pointer{cursor:pointer}.resize{resize:both}.resize-none{resize:none}.\\[scrollbar-gutter\\:stable_both-edges\\]{scrollbar-gutter:stable both-edges}.list-outside{list-style-position:outside}.list-decimal{list-style-type:decimal}.list-disc{list-style-type:disc}.list-none{list-style-type:none}.appearance-none{appearance:none}.grid-cols-\\[min-content_1fr\\]{grid-template-columns:min-content 1fr}.grid-cols-\\[min-content_auto\\]{grid-template-columns:min-content auto}.flex-col{flex-direction:column}.flex-row{flex-direction:row}.flex-nowrap{flex-wrap:nowrap}.flex-wrap{flex-wrap:wrap}.place-items-center{place-items:center}.content-center{align-content:center}.items-baseline{align-items:baseline}.items-center{align-items:center}.items-start{align-items:flex-start}.items-stretch{align-items:stretch}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.justify-end{justify-content:flex-end}.gap-0\\.5{gap:.125rem}.gap-1{gap:.25rem}.gap-1\\.5{gap:.375rem}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-8{gap:2rem}:where(.space-y-1>:not(:last-child)){--tw-space-y-reverse:0;margin-block-end:calc(.25rem*(1 - var(--tw-space-y-reverse)));margin-block-start:calc(.25rem*var(--tw-space-y-reverse))}.gap-x-1\\.5{column-gap:.375rem}.gap-x-2{column-gap:.5rem}.gap-x-4{column-gap:1rem}:where(.space-x-1\\.5>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-end:calc(.375rem*(1 - var(--tw-space-x-reverse)));margin-inline-start:calc(.375rem*var(--tw-space-x-reverse))}.gap-y-0\\.5{row-gap:.125rem}:where(.divide-y>:not(:last-child)){--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-bottom-width:calc(1px*(1 - var(--tw-divide-y-reverse)));border-top-style:var(--tw-border-style);border-top-width:calc(1px*var(--tw-divide-y-reverse))}:where(.divide-neutral>:not(:last-child)){border-color:var(--atomic-neutral)}.self-center{align-self:center}.self-start{align-self:flex-start}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-visible{overflow:visible}.overflow-x-auto{overflow-x:auto}.overflow-x-scroll{overflow-x:scroll}.overflow-y-auto{overflow-y:auto}.scroll-smooth{scroll-behavior:smooth}.rounded{border-radius:var(--atomic-border-radius)}.rounded-3xl{border-radius:1.5rem}.rounded-full{border-radius:3.40282e+38px}.rounded-lg{border-radius:var(--atomic-border-radius-lg)}.rounded-md{border-radius:var(--atomic-border-radius-md)}.rounded-none{border-radius:0}.rounded-sm{border-radius:var(--atomic-border-radius)}.rounded-xl{border-radius:var(--atomic-border-radius-xl)}.rounded-tl-none{border-top-left-radius:0}.rounded-r-none{border-bottom-right-radius:0;border-top-right-radius:0}.border{border-style:var(--tw-border-style);border-width:1px}.border-0{border-style:var(--tw-border-style);border-width:0}.border-t{border-top-style:var(--tw-border-style);border-top-width:1px}.border-r{border-right-style:var(--tw-border-style);border-right-width:1px}.border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-l{border-left-style:var(--tw-border-style);border-left-width:1px}.border-none{--tw-border-style:none;border-style:none}.border-solid{--tw-border-style:solid;border-style:solid}.border-error{border-color:var(--atomic-error)}.border-gray-200{border-color:oklch(92.8% .006 264.531)}.border-neutral{border-color:var(--atomic-neutral)}.border-neutral-dark{border-color:var(--atomic-neutral-dark)}.border-neutral-dim{border-color:var(--atomic-neutral-dim)}.border-primary{border-color:var(--atomic-primary)}.border-primary-light{border-color:var(--atomic-primary-light)}.border-b-neutral-dim{border-bottom-color:var(--atomic-neutral-dim)}.border-l-neutral-dim{border-left-color:var(--atomic-neutral-dim)}.bg-\\[\\#F1F2FF\\]{background-color:#f1f2ff}.bg-\\[rgba\\(40\\,40\\,40\\,0\\.8\\)\\]{background-color:#282828cc}.bg-background{background-color:var(--atomic-background)}.bg-error{background-color:var(--atomic-error)}.bg-gray-50{background-color:oklch(98.5% .002 247.839)}.bg-neutral{background-color:var(--atomic-neutral)}.bg-neutral-dark{background-color:var(--atomic-neutral-dark)}.bg-neutral-dim{background-color:var(--atomic-neutral-dim)}.bg-neutral-light{background-color:var(--atomic-neutral-light)}.bg-primary{background-color:var(--atomic-primary)}.bg-success{background-color:var(--atomic-success)}.bg-transparent{background-color:#0000}.bg-white{background-color:#fff}.bg-linear-to-l{--tw-gradient-position:to left}@supports (background-image:linear-gradient(in lab,red,red)){.bg-linear-to-l{--tw-gradient-position:to left in oklab}}.bg-linear-to-l{background-image:linear-gradient(var(--tw-gradient-stops))}.bg-linear-to-r{--tw-gradient-position:to right}@supports (background-image:linear-gradient(in lab,red,red)){.bg-linear-to-r{--tw-gradient-position:to right in oklab}}.bg-linear-to-r{background-image:linear-gradient(var(--tw-gradient-stops))}.from-background\\/60{--tw-gradient-from:#fff9}@supports (color:color-mix(in lab,red,red)){.from-background\\/60{--tw-gradient-from:color-mix(in oklab,var(--atomic-background) 60%,transparent)}}.from-background\\/60{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from) var(--tw-gradient-from-position),var(--tw-gradient-to) var(--tw-gradient-to-position))}.from-more-results-progress-bar-color-from{--tw-gradient-from:var(--atomic-more-results-progress-bar-color-from,var(--atomic-primary-dark));--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from) var(--tw-gradient-from-position),var(--tw-gradient-to) var(--tw-gradient-to-position))}.to-more-results-progress-bar-color-to{--tw-gradient-to:var(--atomic-more-results-progress-bar-color-to,var(--atomic-primary-light));--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from) var(--tw-gradient-from-position),var(--tw-gradient-to) var(--tw-gradient-to-position))}.fill-current{fill:currentColor}.stroke-\\[1\\.25\\]{stroke-width:1.25px}.object-contain{object-fit:contain}.p-0{padding:0}.p-1{padding:.25rem}.p-2{padding:.5rem}.p-2\\.5{padding:.625rem}.p-3{padding:.75rem}.p-3\\.5{padding:.875rem}.p-4{padding:1rem}.p-6{padding:1.5rem}.p-7{padding:1.75rem}.p-8{padding:2rem}.px-1{padding-inline:.25rem}.px-2{padding-inline:.5rem}.px-2\\.5{padding-inline:.625rem}.px-3{padding-inline:.75rem}.px-4{padding-inline:1rem}.px-6{padding-inline:1.5rem}.px-7{padding-inline:1.75rem}.px-9{padding-inline:2.25rem}.py-0\\.5{padding-block:.125rem}.py-1{padding-block:.25rem}.py-1\\.5{padding-block:.375rem}.py-2{padding-block:.5rem}.py-2\\.5{padding-block:.625rem}.py-3{padding-block:.75rem}.py-3\\.5{padding-block:.875rem}.py-4{padding-block:1rem}.py-4\\.5{padding-block:1.125rem}.py-5{padding-block:1.25rem}.py-6{padding-block:1.5rem}.pt-0\\.5{padding-top:.125rem}.pt-2{padding-top:.5rem}.pt-6{padding-top:1.5rem}.pt-8{padding-top:2rem}.pr-2{padding-right:.5rem}.pr-4{padding-right:1rem}.pr-6{padding-right:1.5rem}.pr-24{padding-right:6rem}.pb-1{padding-bottom:.25rem}.pb-3{padding-bottom:.75rem}.pb-4{padding-bottom:1rem}.pb-5{padding-bottom:1.25rem}.pb-6{padding-bottom:1.5rem}.pl-0{padding-left:0}.pl-1{padding-left:.25rem}.pl-2{padding-left:.5rem}.pl-3{padding-left:.75rem}.pl-7{padding-left:1.75rem}.pl-9{padding-left:2.25rem}.pl-10{padding-left:2.5rem}.text-center{text-align:center}.text-left{text-align:left}.align-baseline{vertical-align:baseline}.align-bottom{vertical-align:bottom}.align-middle{vertical-align:middle}.font-sans{font-family:var(--atomic-font-family)}.set-font-size-sm{--font-size:var(--atomic-text-sm);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));font-size:var(--font-size);line-height:var(--line-height)}.text-2xl{font-size:var(--atomic-text-2xl);line-height:var(--tw-leading,1.33333)}.text-base{font-size:var(--atomic-text-base);line-height:var(--tw-leading,1.5)}.text-lg{font-size:var(--atomic-text-lg);line-height:var(--tw-leading,1.55556)}.text-sm{font-size:var(--atomic-text-sm);line-height:var(--tw-leading,1.42857)}.text-xl{font-size:var(--atomic-text-xl);line-height:var(--tw-leading,1.4)}.text-xs{font-size:.75rem;line-height:var(--tw-leading,1.33333)}.text-xs\\/\\[1rem\\]{font-size:.75rem;line-height:1rem}.leading-4{--tw-leading:1rem;line-height:1rem}.leading-5{--tw-leading:1.25rem;line-height:1.25rem}.leading-6{--tw-leading:1.5rem;line-height:1.5rem}.leading-8{--tw-leading:2rem;line-height:2rem}.leading-10{--tw-leading:2.5rem;line-height:2.5rem}.leading-\\[1\\.5\\]{--tw-leading:1.5;line-height:1.5}.leading-\\[calc\\(1\\/\\.75\\)\\]{--tw-leading:1.33333;line-height:1.33333}.leading-\\[var\\(--line-height\\)\\]{--tw-leading:var(--line-height);line-height:var(--line-height)}.leading-none{--tw-leading:1;line-height:1}.font-bold{--tw-font-weight:var(--atomic-font-bold);font-weight:var(--atomic-font-bold)}.font-light{--tw-font-weight:300;font-weight:300}.font-medium{--tw-font-weight:500;font-weight:500}.font-normal{--tw-font-weight:var(--atomic-font-normal);font-weight:var(--atomic-font-normal)}.font-semibold{--tw-font-weight:600;font-weight:600}.break-words{overflow-wrap:break-word}.break-all{word-break:break-all}.break-keep{word-break:keep-all}.text-ellipsis{text-overflow:ellipsis}.whitespace-normal{white-space:normal}.whitespace-nowrap{white-space:nowrap}.whitespace-pre-wrap{white-space:pre-wrap}.text-\\[\\#54698D\\]{color:#54698d}.text-\\[inherit\\]{color:inherit}.text-black{color:#000}.text-error{color:var(--atomic-error)}.text-gray-500{color:oklch(55.1% .027 264.364)}.text-gray-600{color:oklch(44.6% .03 256.802)}.text-gray-700{color:oklch(37.3% .034 259.733)}.text-gray-900{color:oklch(21% .034 264.665)}.text-green-600{color:oklch(62.7% .194 149.214)}.text-inline-code{color:var(--atomic-inline-code)}.text-neutral{color:var(--atomic-neutral)}.text-neutral-dark{color:var(--atomic-neutral-dark)}.text-on-background{color:var(--atomic-on-background)}.text-on-primary{color:var(--atomic-on-primary)}.text-primary{color:var(--atomic-primary)}.text-primary-light{color:var(--atomic-primary-light)}.text-rating-icon-active{color:var(--atomic-rating-icon-active-color,#f6ce3c)}.text-rating-icon-inactive{color:var(--atomic-rating-icon-inactive-color,var(--atomic-neutral))}.text-red-600{color:oklch(57.7% .245 27.325)}.text-success{color:var(--atomic-success)}.text-transparent{color:#0000}.capitalize{text-transform:capitalize}.lowercase{text-transform:lowercase}.italic{font-style:italic}.line-through{text-decoration-line:line-through}.placeholder-neutral-dark::placeholder{color:var(--atomic-neutral-dark)}.opacity-0{opacity:0}.opacity-50{opacity:.5}.opacity-60{opacity:.6}.opacity-80{opacity:.8}.shadow{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a)}.shadow,.shadow-inner-primary{box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-inner-primary{--tw-shadow:inset 0 0 0 1px var(--tw-shadow-color,var(--atomic-primary))}.shadow-lg{--tw-shadow:0px 2px 8px var(--tw-shadow-color,#e5e8e8bf)}.shadow-lg,.shadow-t-lg{box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-t-lg{--tw-shadow:0px -2px 8px var(--tw-shadow-color,#e5e8e8bf)}.ring,.ring-1{--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor)}.ring,.ring-1,.ring-3{box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring-3{--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor)}.ring-primary{--tw-ring-color:var(--atomic-primary)}.ring-ring-primary{--tw-ring-color:var(--atomic-ring-primary)}.outline{outline-width:1px}.outline,.outline-2{outline-style:var(--tw-outline-style)}.outline-2{outline-width:2px}.outline-error{outline-color:var(--atomic-error)}.outline-neutral{outline-color:var(--atomic-neutral)}.outline-primary{outline-color:var(--atomic-primary)}.blur{--tw-blur:blur(8px)}.blur,.grayscale{filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}.grayscale{--tw-grayscale:grayscale(100%)}.invert{--tw-invert:invert(100%)}.filter,.invert{filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}.transition{transition-duration:var(--tw-duration,var(--default-transition-duration,.15s));transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function,cubic-bezier(.4,0,.2,1)))}.transition-\\[visibility\\]{transition-duration:var(--tw-duration,var(--default-transition-duration,.15s));transition-property:visibility;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function,cubic-bezier(.4,0,.2,1)))}.transition-all{transition-duration:var(--tw-duration,var(--default-transition-duration,.15s));transition-property:all;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function,cubic-bezier(.4,0,.2,1)))}.transition-colors{transition-duration:var(--tw-duration,var(--default-transition-duration,.15s));transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function,cubic-bezier(.4,0,.2,1)))}.transition-opacity{transition-duration:var(--tw-duration,var(--default-transition-duration,.15s));transition-property:opacity;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function,cubic-bezier(.4,0,.2,1)))}.duration-150{--tw-duration:.15s;transition-duration:.15s}.duration-200{--tw-duration:.2s;transition-duration:.2s}.duration-300{--tw-duration:.3s;transition-duration:.3s}.duration-500{--tw-duration:.5s;transition-duration:.5s}.ease-in-out{--tw-ease:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1)}.outline-none{--tw-outline-style:none;outline-style:none}.\\[grid-area\\:modal\\]{grid-area:modal}@media (hover:hover){.group-hover\\:visible:is(:where(.group):hover *){visibility:visible}.group-hover\\:bg-neutral-dark:is(:where(.group):hover *){background-color:var(--atomic-neutral-dark)}.group-hover\\:text-error:is(:where(.group):hover *){color:var(--atomic-error)}.group-hover\\:text-primary:is(:where(.group):hover *){color:var(--atomic-primary)}.group-hover\\:text-primary-light:is(:where(.group):hover *){color:var(--atomic-primary-light)}}.group-focus\\:text-primary:is(:where(.group):focus *){color:var(--atomic-primary)}.group-focus\\:text-primary-light:is(:where(.group):focus *){color:var(--atomic-primary-light)}.group-focus-visible\\:text-error:is(:where(.group):focus-visible *){color:var(--atomic-error)}.group-focus-visible\\:text-primary:is(:where(.group):focus-visible *){color:var(--atomic-primary)}.peer-focus-within\\:border-primary-light:is(:where(.peer):focus-within~*){border-color:var(--atomic-primary-light)}.peer-focus-within\\:text-primary-light:is(:where(.peer):focus-within~*){color:var(--atomic-primary-light)}@media (hover:hover){.peer-hover\\:border-primary-light:is(:where(.peer):hover~*){border-color:var(--atomic-primary-light)}.peer-hover\\:text-error:is(:where(.peer):hover~*){color:var(--atomic-error)}.peer-hover\\:text-primary-light:is(:where(.peer):hover~*){color:var(--atomic-primary-light)}}.before\\:absolute:before{content:var(--tw-content);position:absolute}.before\\:top-\\[-8px\\]:before{content:var(--tw-content);top:-8px}.before\\:left-0:before{content:var(--tw-content);left:0}.before\\:inline:before{content:var(--tw-content);display:inline}.before\\:h-\\[8px\\]:before{content:var(--tw-content);height:8px}.before\\:w-px:before{content:var(--tw-content);width:1px}.before\\:bg-neutral:before{background-color:var(--atomic-neutral);content:var(--tw-content)}.before\\:transition-colors:before{content:var(--tw-content);transition-duration:var(--tw-duration,var(--default-transition-duration,.15s));transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function,cubic-bezier(.4,0,.2,1)))}.before\\:duration-150:before{content:var(--tw-content);--tw-duration:.15s;transition-duration:.15s}.before\\:content-\\[\\'\\'\\]:before{--tw-content:"";content:var(--tw-content)}.before\\:content-\\[\\'\\,\\\\00a0\\'\\]:before{--tw-content:", ";content:var(--tw-content)}@media (hover:hover){.group-hover\\:before\\:bg-neutral-dark:is(:where(.group):hover *):before{background-color:var(--atomic-neutral-dark);content:var(--tw-content)}}.after\\:absolute:after{content:var(--tw-content);position:absolute}.after\\:-bottom-0\\.5:after{bottom:-.125rem;content:var(--tw-content)}.after\\:bottom-\\[-8px\\]:after{bottom:-8px;content:var(--tw-content)}.after\\:left-0:after{content:var(--tw-content);left:0}.after\\:block:after{content:var(--tw-content);display:block}.after\\:h-1:after{content:var(--tw-content);height:.25rem}.after\\:h-\\[8px\\]:after{content:var(--tw-content);height:8px}.after\\:w-full:after{content:var(--tw-content);width:100%}.after\\:w-px:after{content:var(--tw-content);width:1px}.after\\:rounded:after{border-radius:var(--atomic-border-radius);content:var(--tw-content)}.after\\:bg-neutral:after{background-color:var(--atomic-neutral);content:var(--tw-content)}.after\\:bg-primary:after{background-color:var(--atomic-primary);content:var(--tw-content)}.after\\:transition-colors:after{content:var(--tw-content);transition-duration:var(--tw-duration,var(--default-transition-duration,.15s));transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function,cubic-bezier(.4,0,.2,1)))}.after\\:duration-150:after{content:var(--tw-content);--tw-duration:.15s;transition-duration:.15s}.after\\:content-\\[\\'\\'\\]:after{--tw-content:"";content:var(--tw-content)}@media (hover:hover){.group-hover\\:after\\:bg-neutral-dark:is(:where(.group):hover *):after{background-color:var(--atomic-neutral-dark);content:var(--tw-content)}}.focus-within\\:border-disabled:focus-within{border-color:var(--atomic-disabled)}.focus-within\\:border-primary:focus-within{border-color:var(--atomic-primary)}.focus-within\\:ring-3:focus-within{--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-within\\:ring-neutral:focus-within{--tw-ring-color:var(--atomic-neutral)}.focus-within\\:ring-ring-primary:focus-within{--tw-ring-color:var(--atomic-ring-primary)}@media (hover:hover){.hover\\:border:hover{border-style:var(--tw-border-style);border-width:1px}.hover\\:border-error:hover{border-color:var(--atomic-error)}.hover\\:border-primary-light:hover{border-color:var(--atomic-primary-light)}.hover\\:bg-error:hover{background-color:var(--atomic-error)}.hover\\:bg-neutral-light:hover{background-color:var(--atomic-neutral-light)}.hover\\:bg-primary-light:hover{background-color:var(--atomic-primary-light)}.hover\\:bg-transparent:hover{background-color:#0000}.hover\\:fill-white:hover{fill:#fff}.hover\\:text-error:hover{color:var(--atomic-error)}.hover\\:text-primary:hover{color:var(--atomic-primary)}.hover\\:text-primary-light:hover{color:var(--atomic-primary-light)}.hover\\:text-success:hover{color:var(--atomic-success)}.hover\\:underline:hover{text-decoration-line:underline}.hover\\:opacity-100:hover{opacity:1}.hover\\:shadow-sm:hover{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}}.focus\\:opacity-100:focus{opacity:1}.focus\\:outline-hidden:focus{--tw-outline-style:none;outline-style:none}@media (forced-colors:active){.focus\\:outline-hidden:focus{outline:2px solid #0000;outline-offset:2px}}.focus-visible\\:border:focus-visible{border-style:var(--tw-border-style);border-width:1px}.focus-visible\\:border-error:focus-visible{border-color:var(--atomic-error)}.focus-visible\\:border-primary:focus-visible{border-color:var(--atomic-primary)}.focus-visible\\:border-primary-light:focus-visible{border-color:var(--atomic-primary-light)}.focus-visible\\:bg-error:focus-visible{background-color:var(--atomic-error)}.focus-visible\\:bg-neutral-light:focus-visible{background-color:var(--atomic-neutral-light)}.focus-visible\\:bg-primary-light:focus-visible{background-color:var(--atomic-primary-light)}.focus-visible\\:text-primary:focus-visible{color:var(--atomic-primary)}.focus-visible\\:text-primary-light:focus-visible{color:var(--atomic-primary-light)}.focus-visible\\:underline:focus-visible{text-decoration-line:underline}.focus-visible\\:ring-2:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-visible\\:ring-primary:focus-visible{--tw-ring-color:var(--atomic-primary)}.focus-visible\\:ring-offset-2:focus-visible{--tw-ring-offset-width:2px;--tw-ring-offset-shadow:var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)}.focus-visible\\:outline-none:focus-visible{--tw-outline-style:none;outline-style:none}.disabled\\:bg-primary\\/60:disabled{background-color:#126ce099}@supports (color:color-mix(in lab,red,red)){.disabled\\:bg-primary\\/60:disabled{background-color:color-mix(in oklab,var(--atomic-primary) 60%,transparent)}}.disabled\\:opacity-100:disabled{opacity:1}@media (min-width:1024px){.desktop\\:mt-2{margin-top:.5rem}}@media (min-width:40rem){.sm\\:px-6{padding-inline:1.5rem}}.\\[part\\=\\"breadcrumb-button\\"\\]\\:visible:is(){visibility:visible}}.loading{--tw-gradient-from:var(--atomic-primary-dark);--tw-gradient-to:var(--atomic-primary-light);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from) var(--tw-gradient-from-position),var(--tw-gradient-to) var(--tw-gradient-to-position))}.loading:after{background-color:var(--atomic-background);border-radius:3.40282e+38px;content:"";height:83.3333%;position:absolute;width:83.3333%}[part=textarea-expander]:after{content:attr(data-replicated-value) " ";visibility:hidden}[part=textarea-expander]>[part=textarea]{-ms-overflow-style:none;scrollbar-width:none}[part=textarea-expander]>[part=textarea]::-webkit-scrollbar{display:none}[part=textarea-expander]:after,[part=textarea-expander]>[part=textarea]{color:var(--atomic-neutral-dark);font-size:var(--atomic-text-lg);height:100%;line-height:var(--tw-leading,1.55556);resize:none;white-space:nowrap;z-index:10;--tw-outline-style:none;background-color:#0000;flex-grow:1;grid-area:1/1/2/2;outline-style:none;overflow:hidden;padding-block:.875rem;padding-inline:1rem}[part=textarea-expander].expanded:after,[part=textarea-expander].expanded>[part=textarea]{max-height:8em;overflow-y:auto;white-space:pre-wrap}[part~=instant-results-item]{padding:.75rem}[part~=instant-results-show-all]{border-top:1px var(--tw-border-style) var(--atomic-neutral);box-sizing:content-box;justify-content:center;margin-top:auto;padding-block:.25rem}[part~=instant-results-show-all] button{background-color:#0000}[part~=suggestions-left]+[part~=suggestions-right]{border-left:1px var(--tw-border-style) var(--atomic-neutral)}[part~=suggestions-wrapper]{flex-direction:column}@media (min-width:1024px){[part~=suggestions-wrapper]{flex-direction:row}}:host{position:relative;z-index:10}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-scale-x{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-y{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-z{syntax:"*";inherits:false;initial-value:1}@property --tw-rotate-x{syntax:"*";inherits:false}@property --tw-rotate-y{syntax:"*";inherits:false}@property --tw-rotate-z{syntax:"*";inherits:false}@property --tw-skew-x{syntax:"*";inherits:false}@property --tw-skew-y{syntax:"*";inherits:false}@property --tw-space-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-space-x-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-divide-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-gradient-position{syntax:"*";inherits:false}@property --tw-gradient-from{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-via{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-to{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-stops{syntax:"*";inherits:false}@property --tw-gradient-via-stops{syntax:"*";inherits:false}@property --tw-gradient-from-position{syntax:"<length-percentage>";inherits:false;initial-value:0%}@property --tw-gradient-via-position{syntax:"<length-percentage>";inherits:false;initial-value:50%}@property --tw-gradient-to-position{syntax:"<length-percentage>";inherits:false;initial-value:100%}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-outline-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-drop-shadow-color{syntax:"*";inherits:false}@property --tw-drop-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-drop-shadow-size{syntax:"*";inherits:false}@property --tw-duration{syntax:"*";inherits:false}@property --tw-ease{syntax:"*";inherits:false}@property --tw-content{syntax:"*";inherits:false;initial-value:""}@keyframes spin{to{transform:rotate(1turn)}}@keyframes pulse{50%{opacity:.5}}`;
|
|
19010
|
+
AtomicCommerceSearchBox$1.styles = lit.css`/*! tailwindcss v4.3.2 | MIT License | https://tailwindcss.com */@layer properties{*,::backdrop,:after,:before{--tw-translate-x:0;--tw-translate-y:0;--tw-translate-z:0;--tw-scale-x:1;--tw-scale-y:1;--tw-scale-z:1;--tw-rotate-x:initial;--tw-rotate-y:initial;--tw-rotate-z:initial;--tw-skew-x:initial;--tw-skew-y:initial;--tw-space-x-reverse:0;--tw-divide-y-reverse:0;--tw-border-style:solid;--tw-gradient-position:initial;--tw-gradient-from:#0000;--tw-gradient-via:#0000;--tw-gradient-to:#0000;--tw-gradient-stops:initial;--tw-gradient-via-stops:initial;--tw-gradient-from-position:0%;--tw-gradient-via-position:50%;--tw-gradient-to-position:100%;--tw-leading:initial;--tw-font-weight:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000;--tw-outline-style:solid;--tw-blur:initial;--tw-brightness:initial;--tw-contrast:initial;--tw-grayscale:initial;--tw-hue-rotate:initial;--tw-invert:initial;--tw-opacity:initial;--tw-saturate:initial;--tw-sepia:initial;--tw-drop-shadow:initial;--tw-drop-shadow-color:initial;--tw-drop-shadow-alpha:100%;--tw-drop-shadow-size:initial;--tw-duration:initial;--tw-ease:initial;--tw-content:""}@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,::backdrop,:after,:before{--tw-translate-x:0;--tw-translate-y:0;--tw-translate-z:0;--tw-scale-x:1;--tw-scale-y:1;--tw-scale-z:1;--tw-rotate-x:initial;--tw-rotate-y:initial;--tw-rotate-z:initial;--tw-skew-x:initial;--tw-skew-y:initial;--tw-space-y-reverse:0;--tw-space-x-reverse:0;--tw-divide-y-reverse:0;--tw-border-style:solid;--tw-gradient-position:initial;--tw-gradient-from:#0000;--tw-gradient-via:#0000;--tw-gradient-to:#0000;--tw-gradient-stops:initial;--tw-gradient-via-stops:initial;--tw-gradient-from-position:0%;--tw-gradient-via-position:50%;--tw-gradient-to-position:100%;--tw-leading:initial;--tw-font-weight:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000;--tw-outline-style:solid;--tw-blur:initial;--tw-brightness:initial;--tw-contrast:initial;--tw-grayscale:initial;--tw-hue-rotate:initial;--tw-invert:initial;--tw-opacity:initial;--tw-saturate:initial;--tw-sepia:initial;--tw-drop-shadow:initial;--tw-drop-shadow-color:initial;--tw-drop-shadow-alpha:100%;--tw-drop-shadow-size:initial;--tw-duration:initial;--tw-ease:initial;--tw-content:""}}}@layer theme;@layer base{*,::backdrop,:after,:before{border:0 solid;box-sizing:border-box;margin:0;padding:0}::file-selector-button{border:0 solid;box-sizing:border-box;margin:0;padding:0}:host,html{-webkit-text-size-adjust:100%;font-family:var(--default-font-family,var(--atomic-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"));font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);line-height:1.5;tab-size:4;-webkit-tap-highlight-color:transparent}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-size:1em;font-variation-settings:var(--default-mono-font-variation-settings,normal)}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-collapse:collapse;border-color:inherit;text-indent:0}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}menu,ol,ul{list-style:none}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}button,input,optgroup,select,textarea{background-color:#0000;border-radius:0;color:inherit;font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;opacity:1}::file-selector-button{background-color:#0000;border-radius:0;color:inherit;font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;opacity:1}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:currentColor}@supports (color:color-mix(in lab,red,red)){::placeholder{color:color-mix(in oklab,currentcolor 50%,transparent)}}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit,::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}::-webkit-calendar-picker-indicator{line-height:1}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){appearance:button}::file-selector-button{appearance:button}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}:host{display:block}:host,button,input,select{font-family:var(--atomic-font-family);font-size:var(--atomic-text-base);line-height:var(--tw-leading,1.5);--tw-font-weight:var(--atomic-font-normal);font-weight:var(--atomic-font-normal)}button{cursor:pointer}:host(.atomic-hidden){display:none}.ripple{animation:ripple var(--animation-duration) linear;border-radius:50%;pointer-events:none;position:absolute;transform:scale(0)}.ripple-relative{position:relative}.ripple-parent{overflow:hidden}@keyframes ripple{to{opacity:0;transform:scale(4)}}}@layer components{.input-primary{background-color:var(--atomic-background);border-color:var(--atomic-neutral);border-radius:var(--atomic-border-radius);border-style:var(--tw-border-style);border-width:1px}@media (hover:hover){.input-primary:hover{border-color:var(--atomic-primary-light)}}.input-primary:focus-visible{border-color:var(--atomic-primary);--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--atomic-ring-primary);--tw-outline-style:none;outline-style:none}.btn-radio{appearance:none}.btn-radio:before{--tw-content:attr(value);content:var(--tw-content)}.btn-primary{background-color:var(--atomic-primary);border-radius:var(--atomic-border-radius);color:var(--atomic-on-primary)}@media (hover:hover){.btn-primary:hover{background-color:var(--atomic-primary-light)}}.btn-primary:focus-visible{background-color:var(--atomic-primary-light);--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--atomic-ring-primary);--tw-outline-style:none;outline-style:none}.btn-primary:disabled{background-color:var(--atomic-disabled);cursor:not-allowed}.btn-outline-primary{background-color:var(--atomic-background);border-color:var(--atomic-neutral);border-radius:var(--atomic-border-radius);border-style:var(--tw-border-style);border-width:1px;color:var(--atomic-primary)}@media (hover:hover){.btn-outline-primary:hover{border-color:var(--atomic-primary-light);color:var(--atomic-primary-light)}}.btn-outline-primary:focus-visible{border-color:var(--atomic-primary);color:var(--atomic-primary);--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--atomic-ring-primary);--tw-outline-style:none;outline-style:none}.btn-outline-primary:disabled{border-color:var(--atomic-neutral);color:var(--atomic-neutral);cursor:not-allowed}.btn-text-primary{background-color:var(--atomic-background);border-radius:var(--atomic-border-radius);color:var(--atomic-primary)}@media (hover:hover){.btn-text-primary:hover{background-color:var(--atomic-neutral-light)}}.btn-text-primary:focus-visible{background-color:var(--atomic-neutral-light);--tw-outline-style:none;outline-style:none}.btn-outline-neutral{background-color:var(--atomic-background);border-color:var(--atomic-neutral);border-radius:var(--atomic-border-radius);border-style:var(--tw-border-style);border-width:1px;color:var(--atomic-on-background)}@media (hover:hover){.btn-outline-neutral:hover{border-color:var(--atomic-primary);color:var(--atomic-primary)}}.btn-outline-neutral:focus-visible{border-color:var(--atomic-primary);color:var(--atomic-primary);--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--atomic-ring-primary);--tw-outline-style:none;outline-style:none}.btn-outline-neutral:disabled{border-color:var(--atomic-neutral);color:var(--atomic-on-background);cursor:not-allowed;opacity:.5}.btn-outline-bg-neutral{background-color:var(--atomic-background);border-color:var(--atomic-neutral);border-radius:var(--atomic-border-radius);border-style:var(--tw-border-style);border-width:1px;color:var(--atomic-on-background)}@media (hover:hover){.btn-outline-bg-neutral:hover{background-color:var(--atomic-neutral-light);border-color:var(--atomic-primary);color:var(--atomic-primary)}}.btn-outline-bg-neutral:focus-visible{background-color:var(--atomic-neutral-light);border-color:var(--atomic-primary);color:var(--atomic-primary);--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--atomic-ring-primary);--tw-outline-style:none;outline-style:none}.btn-outline-bg-neutral:disabled{border-color:var(--atomic-neutral);color:var(--atomic-on-background);cursor:not-allowed;opacity:.5}.btn-outline-bg-error{background-color:var(--atomic-background);border-color:var(--atomic-neutral);border-radius:var(--atomic-border-radius);border-style:var(--tw-border-style);border-width:1px;color:var(--atomic-on-background)}@media (hover:hover){.btn-outline-bg-error:hover{background-color:var(--atomic-neutral-light);border-color:var(--atomic-primary);color:var(--atomic-primary)}}.btn-outline-bg-error:focus-visible{background-color:var(--atomic-neutral-light);border-color:var(--atomic-primary);color:var(--atomic-primary);--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--atomic-ring-primary);--tw-outline-style:none;outline-style:none}.btn-outline-bg-error:disabled{border-color:var(--atomic-neutral);color:var(--atomic-on-background);cursor:not-allowed;opacity:.5}.btn-outline-error{background-color:var(--atomic-background);border-color:var(--atomic-neutral);border-radius:var(--atomic-border-radius);border-style:var(--tw-border-style);border-width:1px;color:var(--atomic-on-background)}@media (hover:hover){.btn-outline-error:hover{border-color:var(--atomic-error);color:var(--atomic-error)}}.btn-outline-error:focus-visible{border-color:var(--atomic-error);color:var(--atomic-error);--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--atomic-ring-primary);--tw-outline-style:none;outline-style:none}.btn-outline-error:disabled{border-color:var(--atomic-neutral);color:var(--atomic-on-background);cursor:not-allowed;opacity:.5}.btn-text-neutral{background-color:var(--atomic-background);border-radius:var(--atomic-border-radius);color:var(--atomic-on-background)}@media (hover:hover){.btn-text-neutral:hover{background-color:var(--atomic-neutral-light);color:var(--atomic-primary)}}.btn-text-neutral:focus-visible{background-color:var(--atomic-neutral-light);color:var(--atomic-primary);--tw-outline-style:none;outline-style:none}.btn-text-transparent{color:var(--atomic-on-background)}@media (hover:hover){.btn-text-transparent:hover{color:var(--atomic-primary-light)}}.btn-text-transparent:focus-visible{color:var(--atomic-primary-light)}.btn-square-neutral{background-color:var(--atomic-background);border-color:var(--atomic-neutral);border-style:var(--tw-border-style);border-width:1px;color:var(--atomic-on-background)}@media (hover:hover){.btn-square-neutral:hover{background-color:var(--atomic-neutral-light)}}.btn-square-neutral:focus-visible{background-color:var(--atomic-neutral-light);--tw-outline-style:none;outline-style:none}.btn-page{border-style:var(--tw-border-style);border-width:0;display:grid;font-size:var(--atomic-text-lg);height:2.5rem;line-height:var(--tw-leading,1.55556);place-items:center;width:2.5rem}@media (hover:hover){.btn-page:hover{border-style:var(--tw-border-style);border-width:1px}}.btn-page:focus-visible{border-style:var(--tw-border-style);border-width:1px}.btn-page.selected{border-color:var(--atomic-primary);border-style:var(--tw-border-style);border-width:2px;--tw-font-weight:var(--atomic-font-bold);font-weight:var(--atomic-font-bold)}}@layer utilities{.\\@container{container-type:inline-size}.pointer-events-auto{pointer-events:auto}.pointer-events-none{pointer-events:none}.collapse{visibility:collapse}.invisible{visibility:hidden}.visible{visibility:visible}.sr-only{border-width:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;white-space:nowrap;width:1px}.absolute,.sr-only{position:absolute}.fixed{position:fixed}.relative{position:relative}.static{position:static}.sticky{position:sticky}.inset-0{inset:0}.-top-2{top:-.5rem}.-top-4{top:-1rem}.top-0{top:0}.top-1\\/2{top:50%}.top-\\[4px\\]{top:4px}.top-full{top:100%}.top-px{top:1px}.-right-2{right:-.5rem}.right-0{right:0}.right-1{right:.25rem}.right-2{right:.5rem}.right-6{right:1.5rem}.right-12{right:3rem}.right-px{right:1px}.bottom-0{bottom:0}.bottom-1{bottom:.25rem}.bottom-2{bottom:.5rem}.bottom-px{bottom:1px}.left-0{left:0}.left-1{left:.25rem}.left-2{left:.5rem}.left-\\[15px\\]{left:15px}.isolate{isolation:isolate}.z-0{z-index:0}.z-1{z-index:1}.z-10{z-index:10}.z-9998{z-index:9998}.z-9999{z-index:9999}.order-last{order:9999}.col-span-2{grid-column:span 2/span 2}.row-span-2{grid-row:span 2/span 2}.container{width:100%}@media (min-width:1024px){.container{max-width:1024px}}@media (min-width:40rem){.container{max-width:40rem}}@media (min-width:48rem){.container{max-width:48rem}}@media (min-width:64rem){.container{max-width:64rem}}@media (min-width:80rem){.container{max-width:80rem}}@media (min-width:96rem){.container{max-width:96rem}}.container\\!{width:100%!important}@media (min-width:1024px){.container\\!{max-width:1024px!important}}@media (min-width:40rem){.container\\!{max-width:40rem!important}}@media (min-width:48rem){.container\\!{max-width:48rem!important}}@media (min-width:64rem){.container\\!{max-width:64rem!important}}@media (min-width:80rem){.container\\!{max-width:80rem!important}}@media (min-width:96rem){.container\\!{max-width:96rem!important}}.m-0{margin:0}.m-2{margin:.5rem}.mx-0{margin-inline:0}.mx-0\\.5{margin-inline:.125rem}.mx-1{margin-inline:.25rem}.mx-6{margin-inline:1.5rem}.mx-16{margin-inline:4rem}.mx-auto{margin-inline:auto}.-my-2{margin-block:-.5rem}.my-1\\.5{margin-block:.375rem}.my-2{margin-block:.5rem}.my-3{margin-block:.75rem}.my-4{margin-block:1rem}.my-6{margin-block:1.5rem}.my-auto{margin-block:auto}.mt-0{margin-top:0}.mt-1{margin-top:.25rem}.mt-1\\.5{margin-top:.375rem}.mt-2{margin-top:.5rem}.mt-2\\.5{margin-top:.625rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-6{margin-top:1.5rem}.mt-7{margin-top:1.75rem}.mt-8{margin-top:2rem}.mt-10{margin-top:2.5rem}.mt-px{margin-top:1px}.mr-0{margin-right:0}.mr-0\\.5{margin-right:.125rem}.mr-1{margin-right:.25rem}.mr-1\\.5{margin-right:.375rem}.mr-2{margin-right:.5rem}.mr-3{margin-right:.75rem}.mr-6{margin-right:1.5rem}.mr-auto{margin-right:auto}.mb-0{margin-bottom:0}.mb-1{margin-bottom:.25rem}.mb-2{margin-bottom:.5rem}.mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}.mb-6{margin-bottom:1.5rem}.ml-0\\.5{margin-left:.125rem}.ml-1{margin-left:.25rem}.ml-2{margin-left:.5rem}.ml-4{margin-left:1rem}.ml-6{margin-left:1.5rem}.ml-auto{margin-left:auto}.box-border{box-sizing:border-box}.box-content{box-sizing:content-box}.line-clamp-1{-webkit-line-clamp:1}.line-clamp-1,.line-clamp-2{-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.line-clamp-2{-webkit-line-clamp:2}.line-clamp-3{-webkit-line-clamp:3}.line-clamp-3,.line-clamp-4{-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.line-clamp-4{-webkit-line-clamp:4}.line-clamp-none{-webkit-line-clamp:unset;-webkit-box-orient:horizontal;display:block;overflow:visible}.block{display:block}.contents{display:contents}.flex{display:flex}.grid{display:grid}.hidden{display:none}.inline{display:inline}.inline-block{display:inline-block}.inline-flex{display:inline-flex}.table{display:table}.table-column{display:table-column}.aspect-square-\\[auto\\]{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){.aspect-square-\\[auto\\]{height:auto}}.aspect-square{aspect-ratio:1}.size-\\[27px\\]{height:27px;width:27px}.h-1{height:.25rem}.h-2{height:.5rem}.h-2\\.5{height:.625rem}.h-3{height:.75rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-5\\/6{height:83.3333%}.h-6{height:1.5rem}.h-7{height:1.75rem}.h-8{height:2rem}.h-9{height:2.25rem}.h-10{height:2.5rem}.h-12{height:3rem}.h-\\[1lh\\]{height:1lh}.h-\\[2\\.6rem\\]{height:2.6rem}.h-\\[9px\\]{height:9px}.h-auto{height:auto}.h-full{height:100%}.max-h-96{max-height:24rem}.min-h-3{min-height:.75rem}.min-h-5{min-height:1.25rem}.min-h-10{min-height:2.5rem}.min-lines-2{min-height:calc(var(--line-height)*2)}.min-lines-3{min-height:calc(var(--line-height)*3)}.w-0\\.5{width:.125rem}.w-1{width:.25rem}.w-1\\/2{width:50%}.w-2{width:.5rem}.w-2\\.5{width:.625rem}.w-3{width:.75rem}.w-3\\.5{width:.875rem}.w-3\\/5{width:60%}.w-4{width:1rem}.w-5{width:1.25rem}.w-5\\/6{width:83.3333%}.w-6{width:1.5rem}.w-7{width:1.75rem}.w-8{width:2rem}.w-9{width:2.25rem}.w-10{width:2.5rem}.w-12{width:3rem}.w-20{width:5rem}.w-26{width:6.5rem}.w-32{width:8rem}.w-36{width:9rem}.w-48{width:12rem}.w-60{width:15rem}.w-64{width:16rem}.w-72{width:18rem}.w-100{width:25rem}.w-\\[2\\.6rem\\]{width:2.6rem}.w-auto{width:auto}.w-fit{width:fit-content}.w-full{width:100%}.w-max{width:max-content}.w-px{width:1px}.max-w-4\\/5{max-width:80%}.max-w-60{max-width:15rem}.max-w-\\[30ch\\]{max-width:30ch}.max-w-full{max-width:100%}.max-w-lg{max-width:32rem}.max-w-max{max-width:max-content}.min-w-0{min-width:0}.min-w-10{min-width:2.5rem}.min-w-20{min-width:5rem}.min-w-24{min-width:6rem}.min-w-full{min-width:100%}.flex-1{flex:1}.flex-none{flex:none}.flex-shrink{flex-shrink:1}.flex-shrink-0,.shrink-0{flex-shrink:0}.flex-grow,.grow{flex-grow:1}.basis-1\\/2{flex-basis:50%}.basis-8{flex-basis:2rem}.-translate-x-1\\/2{--tw-translate-x:-50%}.-translate-x-1\\/2,.translate-x-1\\/2{translate:var(--tw-translate-x) var(--tw-translate-y)}.translate-x-1\\/2{--tw-translate-x:50%}.-translate-y-1\\/2{--tw-translate-y:-50%;translate:var(--tw-translate-x) var(--tw-translate-y)}.scale-75{--tw-scale-x:75%;--tw-scale-y:75%;--tw-scale-z:75%}.scale-100,.scale-75{scale:var(--tw-scale-x) var(--tw-scale-y)}.scale-100{--tw-scale-x:100%;--tw-scale-y:100%;--tw-scale-z:100%}.rotate-180{rotate:180deg}.transform{transform:var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,)}.animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}.animate-spin{animation:spin 1s linear infinite}.cursor-\\[inherit\\]{cursor:inherit}.cursor-pointer{cursor:pointer}.resize{resize:both}.resize-none{resize:none}.\\[scrollbar-gutter\\:stable_both-edges\\]{scrollbar-gutter:stable both-edges}.list-outside{list-style-position:outside}.list-decimal{list-style-type:decimal}.list-disc{list-style-type:disc}.list-none{list-style-type:none}.appearance-none{appearance:none}.grid-cols-\\[10px_1fr\\]{grid-template-columns:10px 1fr}.grid-cols-\\[min-content_1fr\\]{grid-template-columns:min-content 1fr}.grid-cols-\\[min-content_auto\\]{grid-template-columns:min-content auto}.flex-col{flex-direction:column}.flex-row{flex-direction:row}.flex-nowrap{flex-wrap:nowrap}.flex-wrap{flex-wrap:wrap}.place-items-center{place-items:center}.content-center{align-content:center}.items-baseline{align-items:baseline}.items-center{align-items:center}.items-start{align-items:flex-start}.items-stretch{align-items:stretch}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.justify-end{justify-content:flex-end}.gap-0\\.5{gap:.125rem}.gap-1{gap:.25rem}.gap-1\\.5{gap:.375rem}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-8{gap:2rem}:where(.space-y-1>:not(:last-child)){--tw-space-y-reverse:0;margin-block-end:calc(.25rem*(1 - var(--tw-space-y-reverse)));margin-block-start:calc(.25rem*var(--tw-space-y-reverse))}.gap-x-1\\.5{column-gap:.375rem}.gap-x-2{column-gap:.5rem}.gap-x-3{column-gap:.75rem}.gap-x-4{column-gap:1rem}:where(.space-x-1\\.5>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-end:calc(.375rem*(1 - var(--tw-space-x-reverse)));margin-inline-start:calc(.375rem*var(--tw-space-x-reverse))}.gap-y-0\\.5{row-gap:.125rem}:where(.divide-y>:not(:last-child)){--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-bottom-width:calc(1px*(1 - var(--tw-divide-y-reverse)));border-top-style:var(--tw-border-style);border-top-width:calc(1px*var(--tw-divide-y-reverse))}:where(.divide-neutral>:not(:last-child)){border-color:var(--atomic-neutral)}.self-center{align-self:center}.self-start{align-self:flex-start}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-visible{overflow:visible}.overflow-x-auto{overflow-x:auto}.overflow-x-scroll{overflow-x:scroll}.overflow-y-auto{overflow-y:auto}.scroll-smooth{scroll-behavior:smooth}.rounded{border-radius:var(--atomic-border-radius)}.rounded-3xl{border-radius:1.5rem}.rounded-full{border-radius:3.40282e+38px}.rounded-lg{border-radius:var(--atomic-border-radius-lg)}.rounded-md{border-radius:var(--atomic-border-radius-md)}.rounded-none{border-radius:0}.rounded-sm{border-radius:var(--atomic-border-radius)}.rounded-xl{border-radius:var(--atomic-border-radius-xl)}.rounded-tl-none{border-top-left-radius:0}.rounded-r-none{border-bottom-right-radius:0;border-top-right-radius:0}.border{border-style:var(--tw-border-style);border-width:1px}.border-0{border-style:var(--tw-border-style);border-width:0}.border-t{border-top-style:var(--tw-border-style);border-top-width:1px}.border-r{border-right-style:var(--tw-border-style);border-right-width:1px}.border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-l{border-left-style:var(--tw-border-style);border-left-width:1px}.border-none{--tw-border-style:none;border-style:none}.border-solid{--tw-border-style:solid;border-style:solid}.border-error{border-color:var(--atomic-error)}.border-gray-200{border-color:oklch(92.8% .006 264.531)}.border-neutral{border-color:var(--atomic-neutral)}.border-neutral-dark{border-color:var(--atomic-neutral-dark)}.border-neutral-dim{border-color:var(--atomic-neutral-dim)}.border-primary{border-color:var(--atomic-primary)}.border-primary-light{border-color:var(--atomic-primary-light)}.border-b-neutral-dim{border-bottom-color:var(--atomic-neutral-dim)}.border-l-neutral-dim{border-left-color:var(--atomic-neutral-dim)}.bg-\\[\\#F1F2FF\\]{background-color:#f1f2ff}.bg-\\[rgba\\(40\\,40\\,40\\,0\\.8\\)\\]{background-color:#282828cc}.bg-background{background-color:var(--atomic-background)}.bg-error{background-color:var(--atomic-error)}.bg-gray-50{background-color:oklch(98.5% .002 247.839)}.bg-neutral{background-color:var(--atomic-neutral)}.bg-neutral-dark{background-color:var(--atomic-neutral-dark)}.bg-neutral-dim{background-color:var(--atomic-neutral-dim)}.bg-neutral-light{background-color:var(--atomic-neutral-light)}.bg-primary{background-color:var(--atomic-primary)}.bg-success{background-color:var(--atomic-success)}.bg-transparent{background-color:#0000}.bg-white{background-color:#fff}.bg-linear-to-l{--tw-gradient-position:to left}@supports (background-image:linear-gradient(in lab,red,red)){.bg-linear-to-l{--tw-gradient-position:to left in oklab}}.bg-linear-to-l{background-image:linear-gradient(var(--tw-gradient-stops))}.bg-linear-to-r{--tw-gradient-position:to right}@supports (background-image:linear-gradient(in lab,red,red)){.bg-linear-to-r{--tw-gradient-position:to right in oklab}}.bg-linear-to-r{background-image:linear-gradient(var(--tw-gradient-stops))}.from-background\\/60{--tw-gradient-from:#fff9}@supports (color:color-mix(in lab,red,red)){.from-background\\/60{--tw-gradient-from:color-mix(in oklab,var(--atomic-background) 60%,transparent)}}.from-background\\/60{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from) var(--tw-gradient-from-position),var(--tw-gradient-to) var(--tw-gradient-to-position))}.from-more-results-progress-bar-color-from{--tw-gradient-from:var(--atomic-more-results-progress-bar-color-from,var(--atomic-primary-dark));--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from) var(--tw-gradient-from-position),var(--tw-gradient-to) var(--tw-gradient-to-position))}.to-more-results-progress-bar-color-to{--tw-gradient-to:var(--atomic-more-results-progress-bar-color-to,var(--atomic-primary-light));--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from) var(--tw-gradient-from-position),var(--tw-gradient-to) var(--tw-gradient-to-position))}.fill-current{fill:currentColor}.stroke-\\[1\\.25\\]{stroke-width:1.25px}.object-contain{object-fit:contain}.p-0{padding:0}.p-1{padding:.25rem}.p-2{padding:.5rem}.p-2\\.5{padding:.625rem}.p-3{padding:.75rem}.p-3\\.5{padding:.875rem}.p-4{padding:1rem}.p-6{padding:1.5rem}.p-7{padding:1.75rem}.p-8{padding:2rem}.px-1{padding-inline:.25rem}.px-2{padding-inline:.5rem}.px-2\\.5{padding-inline:.625rem}.px-3{padding-inline:.75rem}.px-4{padding-inline:1rem}.px-6{padding-inline:1.5rem}.px-7{padding-inline:1.75rem}.px-9{padding-inline:2.25rem}.py-0\\.5{padding-block:.125rem}.py-1{padding-block:.25rem}.py-1\\.5{padding-block:.375rem}.py-2{padding-block:.5rem}.py-2\\.5{padding-block:.625rem}.py-3{padding-block:.75rem}.py-3\\.5{padding-block:.875rem}.py-4{padding-block:1rem}.py-4\\.5{padding-block:1.125rem}.py-5{padding-block:1.25rem}.py-6{padding-block:1.5rem}.pt-0\\.5{padding-top:.125rem}.pt-2{padding-top:.5rem}.pt-6{padding-top:1.5rem}.pt-8{padding-top:2rem}.pr-2{padding-right:.5rem}.pr-4{padding-right:1rem}.pr-6{padding-right:1.5rem}.pr-24{padding-right:6rem}.pb-1{padding-bottom:.25rem}.pb-3{padding-bottom:.75rem}.pb-4{padding-bottom:1rem}.pb-5{padding-bottom:1.25rem}.pb-6{padding-bottom:1.5rem}.pl-0{padding-left:0}.pl-1{padding-left:.25rem}.pl-2{padding-left:.5rem}.pl-3{padding-left:.75rem}.pl-7{padding-left:1.75rem}.pl-9{padding-left:2.25rem}.pl-10{padding-left:2.5rem}.text-center{text-align:center}.text-left{text-align:left}.align-baseline{vertical-align:baseline}.align-bottom{vertical-align:bottom}.align-middle{vertical-align:middle}.font-sans{font-family:var(--atomic-font-family)}.set-font-size-sm{--font-size:var(--atomic-text-sm);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));font-size:var(--font-size);line-height:var(--line-height)}.text-2xl{font-size:var(--atomic-text-2xl);line-height:var(--tw-leading,1.33333)}.text-base{font-size:var(--atomic-text-base);line-height:var(--tw-leading,1.5)}.text-lg{font-size:var(--atomic-text-lg);line-height:var(--tw-leading,1.55556)}.text-sm{font-size:var(--atomic-text-sm);line-height:var(--tw-leading,1.42857)}.text-xl{font-size:var(--atomic-text-xl);line-height:var(--tw-leading,1.4)}.text-xs{font-size:.75rem;line-height:var(--tw-leading,1.33333)}.text-xs\\/\\[1rem\\]{font-size:.75rem;line-height:1rem}.leading-4{--tw-leading:1rem;line-height:1rem}.leading-5{--tw-leading:1.25rem;line-height:1.25rem}.leading-6{--tw-leading:1.5rem;line-height:1.5rem}.leading-8{--tw-leading:2rem;line-height:2rem}.leading-10{--tw-leading:2.5rem;line-height:2.5rem}.leading-\\[1\\.5\\]{--tw-leading:1.5;line-height:1.5}.leading-\\[calc\\(1\\/\\.75\\)\\]{--tw-leading:1.33333;line-height:1.33333}.leading-\\[var\\(--line-height\\)\\]{--tw-leading:var(--line-height);line-height:var(--line-height)}.leading-none{--tw-leading:1;line-height:1}.font-bold{--tw-font-weight:var(--atomic-font-bold);font-weight:var(--atomic-font-bold)}.font-light{--tw-font-weight:300;font-weight:300}.font-medium{--tw-font-weight:500;font-weight:500}.font-normal{--tw-font-weight:var(--atomic-font-normal);font-weight:var(--atomic-font-normal)}.font-semibold{--tw-font-weight:600;font-weight:600}.break-words{overflow-wrap:break-word}.break-all{word-break:break-all}.break-keep{word-break:keep-all}.text-ellipsis{text-overflow:ellipsis}.whitespace-normal{white-space:normal}.whitespace-nowrap{white-space:nowrap}.whitespace-pre-wrap{white-space:pre-wrap}.text-\\[\\#54698D\\]{color:#54698d}.text-\\[inherit\\]{color:inherit}.text-black{color:#000}.text-error{color:var(--atomic-error)}.text-gray-500{color:oklch(55.1% .027 264.364)}.text-gray-600{color:oklch(44.6% .03 256.802)}.text-gray-700{color:oklch(37.3% .034 259.733)}.text-gray-900{color:oklch(21% .034 264.665)}.text-green-600{color:oklch(62.7% .194 149.214)}.text-inline-code{color:var(--atomic-inline-code)}.text-neutral{color:var(--atomic-neutral)}.text-neutral-dark{color:var(--atomic-neutral-dark)}.text-on-background{color:var(--atomic-on-background)}.text-on-primary{color:var(--atomic-on-primary)}.text-primary{color:var(--atomic-primary)}.text-primary-light{color:var(--atomic-primary-light)}.text-rating-icon-active{color:var(--atomic-rating-icon-active-color,#f6ce3c)}.text-rating-icon-inactive{color:var(--atomic-rating-icon-inactive-color,var(--atomic-neutral))}.text-red-600{color:oklch(57.7% .245 27.325)}.text-success{color:var(--atomic-success)}.text-transparent{color:#0000}.capitalize{text-transform:capitalize}.lowercase{text-transform:lowercase}.italic{font-style:italic}.line-through{text-decoration-line:line-through}.placeholder-neutral-dark::placeholder{color:var(--atomic-neutral-dark)}.opacity-0{opacity:0}.opacity-50{opacity:.5}.opacity-60{opacity:.6}.opacity-80{opacity:.8}.shadow{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a)}.shadow,.shadow-inner-primary{box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-inner-primary{--tw-shadow:inset 0 0 0 1px var(--tw-shadow-color,var(--atomic-primary))}.shadow-lg{--tw-shadow:0px 2px 8px var(--tw-shadow-color,#e5e8e8bf)}.shadow-lg,.shadow-t-lg{box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-t-lg{--tw-shadow:0px -2px 8px var(--tw-shadow-color,#e5e8e8bf)}.ring,.ring-1{--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor)}.ring,.ring-1,.ring-3{box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring-3{--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor)}.ring-primary{--tw-ring-color:var(--atomic-primary)}.ring-ring-primary{--tw-ring-color:var(--atomic-ring-primary)}.outline{outline-width:1px}.outline,.outline-2{outline-style:var(--tw-outline-style)}.outline-2{outline-width:2px}.outline-error{outline-color:var(--atomic-error)}.outline-neutral{outline-color:var(--atomic-neutral)}.outline-primary{outline-color:var(--atomic-primary)}.blur{--tw-blur:blur(8px)}.blur,.grayscale{filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}.grayscale{--tw-grayscale:grayscale(100%)}.invert{--tw-invert:invert(100%)}.filter,.invert{filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}.transition{transition-duration:var(--tw-duration,var(--default-transition-duration,.15s));transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function,cubic-bezier(.4,0,.2,1)))}.transition-\\[visibility\\]{transition-duration:var(--tw-duration,var(--default-transition-duration,.15s));transition-property:visibility;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function,cubic-bezier(.4,0,.2,1)))}.transition-all{transition-duration:var(--tw-duration,var(--default-transition-duration,.15s));transition-property:all;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function,cubic-bezier(.4,0,.2,1)))}.transition-colors{transition-duration:var(--tw-duration,var(--default-transition-duration,.15s));transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function,cubic-bezier(.4,0,.2,1)))}.transition-opacity{transition-duration:var(--tw-duration,var(--default-transition-duration,.15s));transition-property:opacity;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function,cubic-bezier(.4,0,.2,1)))}.duration-150{--tw-duration:.15s;transition-duration:.15s}.duration-200{--tw-duration:.2s;transition-duration:.2s}.duration-300{--tw-duration:.3s;transition-duration:.3s}.duration-500{--tw-duration:.5s;transition-duration:.5s}.ease-in-out{--tw-ease:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1)}.outline-none{--tw-outline-style:none;outline-style:none}.\\[grid-area\\:modal\\]{grid-area:modal}@media (hover:hover){.group-hover\\:visible:is(:where(.group):hover *){visibility:visible}.group-hover\\:bg-neutral-dark:is(:where(.group):hover *){background-color:var(--atomic-neutral-dark)}.group-hover\\:text-error:is(:where(.group):hover *){color:var(--atomic-error)}.group-hover\\:text-primary:is(:where(.group):hover *){color:var(--atomic-primary)}.group-hover\\:text-primary-light:is(:where(.group):hover *){color:var(--atomic-primary-light)}}.group-focus\\:text-primary:is(:where(.group):focus *){color:var(--atomic-primary)}.group-focus\\:text-primary-light:is(:where(.group):focus *){color:var(--atomic-primary-light)}.group-focus-visible\\:text-error:is(:where(.group):focus-visible *){color:var(--atomic-error)}.group-focus-visible\\:text-primary:is(:where(.group):focus-visible *){color:var(--atomic-primary)}.group-has-\\[button\\:hover\\]\\/title\\:bg-neutral-dark:is(:where(.group\\/title):has(:is(button:hover)) *){background-color:var(--atomic-neutral-dark)}.peer-focus-within\\:border-primary-light:is(:where(.peer):focus-within~*){border-color:var(--atomic-primary-light)}.peer-focus-within\\:text-primary-light:is(:where(.peer):focus-within~*){color:var(--atomic-primary-light)}@media (hover:hover){.peer-hover\\:border-primary-light:is(:where(.peer):hover~*){border-color:var(--atomic-primary-light)}.peer-hover\\:text-error:is(:where(.peer):hover~*){color:var(--atomic-error)}.peer-hover\\:text-primary-light:is(:where(.peer):hover~*){color:var(--atomic-primary-light)}}.before\\:absolute:before{content:var(--tw-content);position:absolute}.before\\:top-\\[-8px\\]:before{content:var(--tw-content);top:-8px}.before\\:left-0:before{content:var(--tw-content);left:0}.before\\:inline:before{content:var(--tw-content);display:inline}.before\\:h-\\[8px\\]:before{content:var(--tw-content);height:8px}.before\\:w-px:before{content:var(--tw-content);width:1px}.before\\:bg-neutral:before{background-color:var(--atomic-neutral);content:var(--tw-content)}.before\\:transition-colors:before{content:var(--tw-content);transition-duration:var(--tw-duration,var(--default-transition-duration,.15s));transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function,cubic-bezier(.4,0,.2,1)))}.before\\:duration-150:before{content:var(--tw-content);--tw-duration:.15s;transition-duration:.15s}.before\\:content-\\[\\'\\'\\]:before{--tw-content:"";content:var(--tw-content)}.before\\:content-\\[\\'\\,\\\\00a0\\'\\]:before{--tw-content:", ";content:var(--tw-content)}@media (hover:hover){.group-hover\\:before\\:bg-neutral-dark:is(:where(.group):hover *):before{background-color:var(--atomic-neutral-dark);content:var(--tw-content)}}.after\\:absolute:after{content:var(--tw-content);position:absolute}.after\\:-bottom-0\\.5:after{bottom:-.125rem;content:var(--tw-content)}.after\\:bottom-\\[-8px\\]:after{bottom:-8px;content:var(--tw-content)}.after\\:left-0:after{content:var(--tw-content);left:0}.after\\:block:after{content:var(--tw-content);display:block}.after\\:h-1:after{content:var(--tw-content);height:.25rem}.after\\:h-\\[8px\\]:after{content:var(--tw-content);height:8px}.after\\:w-full:after{content:var(--tw-content);width:100%}.after\\:w-px:after{content:var(--tw-content);width:1px}.after\\:rounded:after{border-radius:var(--atomic-border-radius);content:var(--tw-content)}.after\\:bg-neutral:after{background-color:var(--atomic-neutral);content:var(--tw-content)}.after\\:bg-primary:after{background-color:var(--atomic-primary);content:var(--tw-content)}.after\\:transition-colors:after{content:var(--tw-content);transition-duration:var(--tw-duration,var(--default-transition-duration,.15s));transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function,cubic-bezier(.4,0,.2,1)))}.after\\:duration-150:after{content:var(--tw-content);--tw-duration:.15s;transition-duration:.15s}.after\\:content-\\[\\'\\'\\]:after{--tw-content:"";content:var(--tw-content)}@media (hover:hover){.group-hover\\:after\\:bg-neutral-dark:is(:where(.group):hover *):after{background-color:var(--atomic-neutral-dark);content:var(--tw-content)}}.focus-within\\:border-disabled:focus-within{border-color:var(--atomic-disabled)}.focus-within\\:border-primary:focus-within{border-color:var(--atomic-primary)}.focus-within\\:ring-3:focus-within{--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-within\\:ring-neutral:focus-within{--tw-ring-color:var(--atomic-neutral)}.focus-within\\:ring-ring-primary:focus-within{--tw-ring-color:var(--atomic-ring-primary)}@media (hover:hover){.hover\\:border:hover{border-style:var(--tw-border-style);border-width:1px}.hover\\:border-error:hover{border-color:var(--atomic-error)}.hover\\:border-primary-light:hover{border-color:var(--atomic-primary-light)}.hover\\:bg-error:hover{background-color:var(--atomic-error)}.hover\\:bg-neutral:hover{background-color:var(--atomic-neutral)}.hover\\:bg-neutral-dark:hover{background-color:var(--atomic-neutral-dark)}.hover\\:bg-neutral-light:hover{background-color:var(--atomic-neutral-light)}.hover\\:bg-primary-light:hover{background-color:var(--atomic-primary-light)}.hover\\:bg-transparent:hover{background-color:#0000}.hover\\:fill-white:hover{fill:#fff}.hover\\:text-error:hover{color:var(--atomic-error)}.hover\\:text-primary:hover{color:var(--atomic-primary)}.hover\\:text-primary-light:hover{color:var(--atomic-primary-light)}.hover\\:text-success:hover{color:var(--atomic-success)}.hover\\:underline:hover{text-decoration-line:underline}.hover\\:opacity-100:hover{opacity:1}.hover\\:shadow-sm:hover{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}}.focus\\:opacity-100:focus{opacity:1}.focus\\:outline-hidden:focus{--tw-outline-style:none;outline-style:none}@media (forced-colors:active){.focus\\:outline-hidden:focus{outline:2px solid #0000;outline-offset:2px}}.focus-visible\\:border:focus-visible{border-style:var(--tw-border-style);border-width:1px}.focus-visible\\:border-error:focus-visible{border-color:var(--atomic-error)}.focus-visible\\:border-primary:focus-visible{border-color:var(--atomic-primary)}.focus-visible\\:border-primary-light:focus-visible{border-color:var(--atomic-primary-light)}.focus-visible\\:bg-error:focus-visible{background-color:var(--atomic-error)}.focus-visible\\:bg-neutral-light:focus-visible{background-color:var(--atomic-neutral-light)}.focus-visible\\:bg-primary-light:focus-visible{background-color:var(--atomic-primary-light)}.focus-visible\\:text-primary:focus-visible{color:var(--atomic-primary)}.focus-visible\\:text-primary-light:focus-visible{color:var(--atomic-primary-light)}.focus-visible\\:underline:focus-visible{text-decoration-line:underline}.focus-visible\\:ring-2:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-visible\\:ring-primary:focus-visible{--tw-ring-color:var(--atomic-primary)}.focus-visible\\:ring-offset-2:focus-visible{--tw-ring-offset-width:2px;--tw-ring-offset-shadow:var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)}.focus-visible\\:outline-none:focus-visible{--tw-outline-style:none;outline-style:none}.disabled\\:bg-primary\\/60:disabled{background-color:#126ce099}@supports (color:color-mix(in lab,red,red)){.disabled\\:bg-primary\\/60:disabled{background-color:color-mix(in oklab,var(--atomic-primary) 60%,transparent)}}.disabled\\:opacity-100:disabled{opacity:1}@media (min-width:1024px){.desktop\\:mt-2{margin-top:.5rem}}@media (min-width:40rem){.sm\\:px-6{padding-inline:1.5rem}}.\\[part\\=\\"breadcrumb-button\\"\\]\\:visible:is(){visibility:visible}}.loading{--tw-gradient-from:var(--atomic-primary-dark);--tw-gradient-to:var(--atomic-primary-light);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from) var(--tw-gradient-from-position),var(--tw-gradient-to) var(--tw-gradient-to-position))}.loading:after{background-color:var(--atomic-background);border-radius:3.40282e+38px;content:"";height:83.3333%;position:absolute;width:83.3333%}[part=textarea-expander]:after{content:attr(data-replicated-value) " ";visibility:hidden}[part=textarea-expander]>[part=textarea]{-ms-overflow-style:none;scrollbar-width:none}[part=textarea-expander]>[part=textarea]::-webkit-scrollbar{display:none}[part=textarea-expander]:after,[part=textarea-expander]>[part=textarea]{color:var(--atomic-neutral-dark);font-size:var(--atomic-text-lg);height:100%;line-height:var(--tw-leading,1.55556);resize:none;white-space:nowrap;z-index:10;--tw-outline-style:none;background-color:#0000;flex-grow:1;grid-area:1/1/2/2;outline-style:none;overflow:hidden;padding-block:.875rem;padding-inline:1rem}[part=textarea-expander].expanded:after,[part=textarea-expander].expanded>[part=textarea]{max-height:8em;overflow-y:auto;white-space:pre-wrap}[part~=instant-results-item]{padding:.75rem}[part~=instant-results-show-all]{border-top:1px var(--tw-border-style) var(--atomic-neutral);box-sizing:content-box;justify-content:center;margin-top:auto;padding-block:.25rem}[part~=instant-results-show-all] button{background-color:#0000}[part~=suggestions-left]+[part~=suggestions-right]{border-left:1px var(--tw-border-style) var(--atomic-neutral)}[part~=suggestions-wrapper]{flex-direction:column}@media (min-width:1024px){[part~=suggestions-wrapper]{flex-direction:row}}:host{position:relative;z-index:10}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-scale-x{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-y{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-z{syntax:"*";inherits:false;initial-value:1}@property --tw-rotate-x{syntax:"*";inherits:false}@property --tw-rotate-y{syntax:"*";inherits:false}@property --tw-rotate-z{syntax:"*";inherits:false}@property --tw-skew-x{syntax:"*";inherits:false}@property --tw-skew-y{syntax:"*";inherits:false}@property --tw-space-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-space-x-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-divide-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-gradient-position{syntax:"*";inherits:false}@property --tw-gradient-from{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-via{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-to{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-stops{syntax:"*";inherits:false}@property --tw-gradient-via-stops{syntax:"*";inherits:false}@property --tw-gradient-from-position{syntax:"<length-percentage>";inherits:false;initial-value:0%}@property --tw-gradient-via-position{syntax:"<length-percentage>";inherits:false;initial-value:50%}@property --tw-gradient-to-position{syntax:"<length-percentage>";inherits:false;initial-value:100%}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-outline-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-drop-shadow-color{syntax:"*";inherits:false}@property --tw-drop-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-drop-shadow-size{syntax:"*";inherits:false}@property --tw-duration{syntax:"*";inherits:false}@property --tw-ease{syntax:"*";inherits:false}@property --tw-content{syntax:"*";inherits:false;initial-value:""}@keyframes spin{to{transform:rotate(1turn)}}@keyframes pulse{50%{opacity:.5}}`;
|
|
18305
19011
|
_ts_decorate$n([
|
|
18306
19012
|
decorators_js.state(),
|
|
18307
19013
|
_ts_metadata$f("design:type", "u" < typeof CommerceBindings ? Object : CommerceBindings)
|
|
@@ -19303,8 +20009,8 @@ AtomicProductPrice$1 = _ts_decorate$f([
|
|
|
19303
20009
|
bindings()
|
|
19304
20010
|
], AtomicProductPrice$1);
|
|
19305
20011
|
|
|
19306
|
-
const styles = lit.css`/*! tailwindcss v4.3.
|
|
19307
|
-
|
|
20012
|
+
const styles = lit.css`/*! tailwindcss v4.3.2 | MIT License | https://tailwindcss.com */@layer components{:is(:is(atomic-product-rating,atomic-result-rating) .text-rating-icon-active,:is(atomic-product-rating,atomic-result-rating) .text-rating-icon-inactive) svg path{stroke:var(--atomic-rating-icon-outline-color,none)}}`;
|
|
20013
|
+
var atomic_rating_tw_css = styles;
|
|
19308
20014
|
|
|
19309
20015
|
const computeNumberOfStars = (value, field)=>{
|
|
19310
20016
|
if (null === value) return null;
|
|
@@ -19497,7 +20203,7 @@ function _ts_decorate$d(decorators, target, key, desc) {
|
|
|
19497
20203
|
else for(var i = decorators.length - 1; i >= 0; i--)if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
19498
20204
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
19499
20205
|
}
|
|
19500
|
-
let AtomicProductSectionActions$1 = class AtomicProductSectionActions extends ItemSectionMixin(lit.LitElement, lit.css`/*! tailwindcss v4.3.
|
|
20206
|
+
let AtomicProductSectionActions$1 = class AtomicProductSectionActions extends ItemSectionMixin(lit.LitElement, lit.css`/*! tailwindcss v4.3.2 | MIT License | https://tailwindcss.com */atomic-product-section-actions.with-sections{overflow:hidden;text-overflow:ellipsis}atomic-product-section-actions{text-align:left}atomic-product-section-actions.with-sections{grid-area:actions}atomic-product-section-actions.with-sections atomic-result-quickview{display:inline-block}atomic-product-section-actions.with-sections{max-height:calc(var(--row-height,2rem)*2 + .5rem);--row-height:2rem;display:flex;flex-wrap:wrap;gap:.5rem}@media (min-width:1024px){atomic-product-section-actions.with-sections.display-list.density-comfortable{margin-bottom:1.5rem}atomic-product-section-actions.with-sections.display-list.density-compact,atomic-product-section-actions.with-sections.display-list.density-normal{margin-bottom:1rem}atomic-product-section-actions.with-sections.display-grid.density-comfortable{--row-height:2.5rem;margin-top:2.25rem}atomic-product-section-actions.with-sections.display-grid.density-normal{margin-top:1.75rem}atomic-product-section-actions.with-sections.display-grid.density-compact,atomic-product-section-actions.with-sections.display-grid.density-normal{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}atomic-product-section-actions.with-sections.display-grid.density-compact{margin-top:1.25rem}}@media not all and (min-width:1024px){atomic-product-section-actions.with-sections.display-list.density-comfortable{margin-top:1rem}atomic-product-section-actions.with-sections.display-list.density-normal{margin-top:.75rem}atomic-product-section-actions.with-sections.display-list.density-compact{margin-top:.5em}atomic-product-section-actions.with-sections.display-list{--row-height:2.5rem}atomic-product-section-actions.with-sections.display-grid.image-large.density-comfortable{margin-top:1rem}atomic-product-section-actions.with-sections.display-grid.image-large.density-normal{margin-top:.75rem}atomic-product-section-actions.with-sections.display-grid.image-large.density-compact{margin-top:.5em}atomic-product-section-actions.with-sections.display-grid.image-large{--row-height:2.5rem}:is(atomic-product-section-actions.with-sections.display-grid.image-small,atomic-product-section-actions.with-sections.display-grid.image-icon,atomic-product-section-actions.with-sections.display-grid.image-none).density-comfortable{margin-top:1.25rem}:is(atomic-product-section-actions.with-sections.display-grid.image-small,atomic-product-section-actions.with-sections.display-grid.image-icon,atomic-product-section-actions.with-sections.display-grid.image-none).density-normal{margin-top:1rem}:is(atomic-product-section-actions.with-sections.display-grid.image-small,atomic-product-section-actions.with-sections.display-grid.image-icon,atomic-product-section-actions.with-sections.display-grid.image-none).density-compact{margin-top:.75rem}}atomic-product-section-actions.with-sections.display-table.density-comfortable{margin-bottom:1.5rem}atomic-product-section-actions.with-sections.display-table.density-compact,atomic-product-section-actions.with-sections.display-table.density-normal{margin-bottom:1rem}`) {
|
|
19501
20207
|
};
|
|
19502
20208
|
AtomicProductSectionActions$1 = _ts_decorate$d([
|
|
19503
20209
|
decorators_js.customElement('atomic-product-section-actions')
|
|
@@ -19509,7 +20215,7 @@ function _ts_decorate$c(decorators, target, key, desc) {
|
|
|
19509
20215
|
else for(var i = decorators.length - 1; i >= 0; i--)if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
19510
20216
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
19511
20217
|
}
|
|
19512
|
-
let AtomicProductSectionBadges$1 = class AtomicProductSectionBadges extends ItemSectionMixin(lit.LitElement, lit.css`/*! tailwindcss v4.3.
|
|
20218
|
+
let AtomicProductSectionBadges$1 = class AtomicProductSectionBadges extends ItemSectionMixin(lit.LitElement, lit.css`/*! tailwindcss v4.3.2 | MIT License | https://tailwindcss.com */atomic-product-section-badges{text-align:left}atomic-product-section-badges.with-sections{max-height:calc(var(--row-height,2rem)*2 + .5rem);text-overflow:ellipsis;--row-height:2rem;display:flex;flex-wrap:wrap;gap:.5rem;grid-area:badges;margin-bottom:1rem;overflow:hidden}@media (min-width:1024px){atomic-product-section-badges.with-sections.display-list.density-comfortable{margin-bottom:1.5rem}atomic-product-section-badges.with-sections.display-grid.image-icon.density-comfortable{margin-bottom:2rem}atomic-product-section-badges.with-sections.display-grid.image-icon.density-normal{margin-bottom:1.5rem}atomic-product-section-badges.with-sections.display-grid{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}}@media not all and (min-width:1024px){atomic-product-section-badges.with-sections.display-grid.image-icon,atomic-product-section-badges.with-sections.display-grid.image-none,atomic-product-section-badges.with-sections.display-grid.image-small,atomic-product-section-badges.with-sections.display-list{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}}atomic-product-section-badges.with-sections.display-table.density-comfortable{margin-bottom:1.5rem}`) {
|
|
19513
20219
|
};
|
|
19514
20220
|
AtomicProductSectionBadges$1 = _ts_decorate$c([
|
|
19515
20221
|
decorators_js.customElement('atomic-product-section-badges')
|
|
@@ -19521,7 +20227,7 @@ function _ts_decorate$b(decorators, target, key, desc) {
|
|
|
19521
20227
|
else for(var i = decorators.length - 1; i >= 0; i--)if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
19522
20228
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
19523
20229
|
}
|
|
19524
|
-
let AtomicProductSectionBottomMetadata$1 = class AtomicProductSectionBottomMetadata extends ItemSectionMixin(lit.LitElement, lit.css`/*! tailwindcss v4.3.
|
|
20230
|
+
let AtomicProductSectionBottomMetadata$1 = class AtomicProductSectionBottomMetadata extends ItemSectionMixin(lit.LitElement, lit.css`/*! tailwindcss v4.3.2 | MIT License | https://tailwindcss.com */atomic-product-section-bottom-metadata.with-sections{color:var(--atomic-neutral-dark);text-overflow:ellipsis;--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));grid-area:bottom-metadata;line-height:var(--line-height);overflow:hidden}@media (min-width:1024px){atomic-product-section-bottom-metadata.with-sections.display-list.density-comfortable{margin-top:1.25rem;max-height:4rem}atomic-product-section-bottom-metadata.with-sections.display-list.density-normal{margin-top:.875rem;max-height:3.5rem}atomic-product-section-bottom-metadata.with-sections.display-list.density-compact{margin-top:.6875rem;max-height:3.25rem}atomic-product-section-bottom-metadata.with-sections.display-grid.density-comfortable{margin-top:1.75rem;max-height:4rem}atomic-product-section-bottom-metadata.with-sections.display-grid.density-normal{margin-top:1.375rem;max-height:3.5rem}atomic-product-section-bottom-metadata.with-sections.display-grid.density-compact{margin-top:.9375rem;max-height:3.25rem}}@media not all and (min-width:1024px){atomic-product-section-bottom-metadata.with-sections.display-list.density-comfortable{margin-top:.75rem;max-height:4rem}atomic-product-section-bottom-metadata.with-sections.display-list.density-normal{margin-top:.625rem;max-height:3.5rem}atomic-product-section-bottom-metadata.with-sections.display-list.density-compact{margin-top:.4375rem;max-height:3.25rem}atomic-product-section-bottom-metadata.with-sections.display-grid.image-large.density-comfortable{margin-top:.75rem;max-height:4rem}atomic-product-section-bottom-metadata.with-sections.display-grid.image-large.density-normal{margin-top:.625rem;max-height:3.5rem}atomic-product-section-bottom-metadata.with-sections.display-grid.image-large.density-compact{margin-top:.4375rem;max-height:3.25rem}atomic-product-section-bottom-metadata.with-sections.display-grid.image-icon,atomic-product-section-bottom-metadata.with-sections.display-grid.image-none,atomic-product-section-bottom-metadata.with-sections.display-grid.image-small{max-height:3rem}:is(atomic-product-section-bottom-metadata.with-sections.display-grid.image-small,atomic-product-section-bottom-metadata.with-sections.display-grid.image-icon,atomic-product-section-bottom-metadata.with-sections.display-grid.image-none).density-comfortable{margin-top:1rem}:is(atomic-product-section-bottom-metadata.with-sections.display-grid.image-small,atomic-product-section-bottom-metadata.with-sections.display-grid.image-icon,atomic-product-section-bottom-metadata.with-sections.display-grid.image-none).density-normal{margin-top:.75rem}:is(atomic-product-section-bottom-metadata.with-sections.display-grid.image-small,atomic-product-section-bottom-metadata.with-sections.display-grid.image-icon,atomic-product-section-bottom-metadata.with-sections.display-grid.image-none).density-compact{margin-top:.5rem}}atomic-product-section-bottom-metadata.with-sections.display-table.density-comfortable{margin-top:1.25rem;max-height:4rem}atomic-product-section-bottom-metadata.with-sections.display-table.density-normal{margin-top:.875rem;max-height:3.5rem}atomic-product-section-bottom-metadata.with-sections.display-table.density-compact{margin-top:.6875rem;max-height:3.25rem}`) {
|
|
19525
20231
|
};
|
|
19526
20232
|
AtomicProductSectionBottomMetadata$1 = _ts_decorate$b([
|
|
19527
20233
|
decorators_js.customElement('atomic-product-section-bottom-metadata')
|
|
@@ -19533,7 +20239,7 @@ function _ts_decorate$a(decorators, target, key, desc) {
|
|
|
19533
20239
|
else for(var i = decorators.length - 1; i >= 0; i--)if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
19534
20240
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
19535
20241
|
}
|
|
19536
|
-
let AtomicProductSectionChildren$1 = class AtomicProductSectionChildren extends ItemSectionMixin(lit.LitElement, lit.css`/*! tailwindcss v4.3.1 | MIT License | https://tailwindcss.com */@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,::backdrop,:after,:before{--tw-border-style:solid}}}atomic-product-section-children.with-sections{grid-area:children}@media (min-width:1024px){atomic-product-section-children.with-sections.display-list atomic-insight-result-children::part(children-root),atomic-product-section-children.with-sections.display-list atomic-result-children::part(children-root){border-color:var(--atomic-neutral);border-radius:16px;border-style:var(--tw-border-style);border-width:1px}:is(atomic-product-section-children.with-sections.display-list.density-comfortable atomic-result-children,atomic-product-section-children.with-sections.display-list.density-comfortable atomic-insight-result-children)::part(children-root){border-color:var(--atomic-neutral);border-radius:16px;border-style:var(--tw-border-style);border-width:1px;margin-top:1.25rem;padding:1.75rem}:is(atomic-product-section-children.with-sections.display-list.density-comfortable atomic-result-children,atomic-product-section-children.with-sections.display-list.density-comfortable atomic-insight-result-children)::part(show-hide-button){margin-bottom:1.25rem;margin-top:1.25rem}atomic-product-section-children.with-sections.display-list.density-comfortable .placeholder,atomic-product-section-children.with-sections.display-list.density-comfortable.child-result:not(.last-child){margin-bottom:1.75rem}atomic-product-section-children.with-sections.display-list.density-normal{margin-top:1rem}:is(atomic-product-section-children.with-sections.display-list.density-normal atomic-result-children,atomic-product-section-children.with-sections.display-list.density-normal atomic-insight-result-children)::part(children-root){border-color:var(--atomic-neutral);border-radius:16px;border-style:var(--tw-border-style);border-width:1px;margin-top:.875rem;padding:1.5rem}:is(atomic-product-section-children.with-sections.display-list.density-normal atomic-result-children,atomic-product-section-children.with-sections.display-list.density-normal atomic-insight-result-children)::part(show-hide-button){margin-bottom:.875rem;margin-top:.875rem}atomic-product-section-children.with-sections.display-list.density-normal .placeholder,atomic-product-section-children.with-sections.display-list.density-normal.child-result:not(.last-child){margin-bottom:1.5rem}atomic-product-section-children.with-sections.display-list.density-compact{margin-top:.75rem}:is(atomic-product-section-children.with-sections.display-list.density-compact atomic-result-children,atomic-product-section-children.with-sections.display-list.density-compact atomic-insight-result-children)::part(children-root){border-color:var(--atomic-neutral);border-radius:16px;border-style:var(--tw-border-style);border-width:1px;margin-top:.475rem;padding:1rem}:is(atomic-product-section-children.with-sections.display-list.density-compact atomic-result-children,atomic-product-section-children.with-sections.display-list.density-compact atomic-insight-result-children)::part(show-hide-button){margin-bottom:.475rem;margin-top:.475rem}atomic-product-section-children.with-sections.display-list.density-compact .placeholder,atomic-product-section-children.with-sections.display-list.density-compact.child-result:not(.last-child){margin-bottom:1rem}}@media not all and (min-width:1024px){atomic-product-section-children.with-sections.display-grid.image-large atomic-insight-result-children::part(children-root),atomic-product-section-children.with-sections.display-grid.image-large atomic-result-children::part(children-root),atomic-product-section-children.with-sections.display-list atomic-insight-result-children::part(children-root),atomic-product-section-children.with-sections.display-list atomic-result-children::part(children-root){border-top:1px var(--tw-border-style) var(--atomic-neutral)}:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-comfortable{margin-top:1.25rem}:is(:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-comfortable atomic-result-children,:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-comfortable atomic-insight-result-children)::part(children-root){margin-inline:calc(var(--spacing,.25rem)*-4);margin-top:calc(var(--spacing,.25rem)*4);padding-top:1.75rem;padding-inline:calc(var(--spacing,.25rem)*4)}:is(:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-comfortable atomic-result-children,:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-comfortable atomic-insight-result-children)::part(show-hide-button){margin-bottom:1.25rem;margin-top:1.25rem}:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-comfortable .placeholder,:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-comfortable.child-result:not(.last-child){margin-bottom:1.75rem}:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-normal{margin-top:1rem}:is(:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-normal atomic-result-children,:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-normal atomic-insight-result-children)::part(children-root){margin-inline:calc(var(--spacing,.25rem)*-4);margin-top:calc(var(--spacing,.25rem)*4);padding-top:1.5rem;padding-inline:calc(var(--spacing,.25rem)*4)}:is(:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-normal atomic-result-children,:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-normal atomic-insight-result-children)::part(show-hide-button){margin-bottom:.875rem;margin-top:.875rem}:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-normal .placeholder,:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-normal.child-result:not(.last-child){margin-bottom:1.5rem}:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-compact{margin-top:.75rem}:is(:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-compact atomic-result-children,:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-compact atomic-insight-result-children)::part(children-root){margin-inline:calc(var(--spacing,.25rem)*-4);margin-top:calc(var(--spacing,.25rem)*4);padding-top:1rem;padding-inline:calc(var(--spacing,.25rem)*4)}:is(:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-compact atomic-result-children,:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-compact atomic-insight-result-children)::part(show-hide-button){margin-bottom:.475rem;margin-top:.475rem}:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-compact .placeholder,:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-compact.child-result:not(.last-child){margin-bottom:1rem}}atomic-product-section-children.with-sections.display-table atomic-insight-result-children::part(children-root),atomic-product-section-children.with-sections.display-table atomic-result-children::part(children-root){border-color:var(--atomic-neutral);border-radius:16px;border-style:var(--tw-border-style);border-width:1px}:is(atomic-product-section-children.with-sections.display-table.density-comfortable atomic-result-children,atomic-product-section-children.with-sections.display-table.density-comfortable atomic-insight-result-children)::part(children-root){border-color:var(--atomic-neutral);border-radius:16px;border-style:var(--tw-border-style);border-width:1px;margin-top:1.25rem;padding:1.75rem}:is(atomic-product-section-children.with-sections.display-table.density-comfortable atomic-result-children,atomic-product-section-children.with-sections.display-table.density-comfortable atomic-insight-result-children)::part(show-hide-button){margin-bottom:1.25rem;margin-top:1.25rem}atomic-product-section-children.with-sections.display-table.density-comfortable .placeholder,atomic-product-section-children.with-sections.display-table.density-comfortable.child-result:not(.last-child){margin-bottom:1.75rem}atomic-product-section-children.with-sections.display-table.density-normal{margin-top:1rem}:is(atomic-product-section-children.with-sections.display-table.density-normal atomic-result-children,atomic-product-section-children.with-sections.display-table.density-normal atomic-insight-result-children)::part(children-root){border-color:var(--atomic-neutral);border-radius:16px;border-style:var(--tw-border-style);border-width:1px;margin-top:.875rem;padding:1.5rem}:is(atomic-product-section-children.with-sections.display-table.density-normal atomic-result-children,atomic-product-section-children.with-sections.display-table.density-normal atomic-insight-result-children)::part(show-hide-button){margin-bottom:.875rem;margin-top:.875rem}atomic-product-section-children.with-sections.display-table.density-normal .placeholder,atomic-product-section-children.with-sections.display-table.density-normal.child-result:not(.last-child){margin-bottom:1.5rem}atomic-product-section-children.with-sections.display-table.density-compact{margin-top:.75rem}:is(atomic-product-section-children.with-sections.display-table.density-compact atomic-result-children,atomic-product-section-children.with-sections.display-table.density-compact atomic-insight-result-children)::part(children-root){border-color:var(--atomic-neutral);border-radius:16px;border-style:var(--tw-border-style);border-width:1px;margin-top:.475rem;padding:1rem}:is(atomic-product-section-children.with-sections.display-table.density-compact atomic-result-children,atomic-product-section-children.with-sections.display-table.density-compact atomic-insight-result-children)::part(show-hide-button){margin-bottom:.475rem;margin-top:.475rem}atomic-product-section-children.with-sections.display-table.density-compact .placeholder,atomic-product-section-children.with-sections.display-table.density-compact.child-result:not(.last-child){margin-bottom:1rem}:is(atomic-product-section-children.with-sections.image-icon,atomic-product-section-children.with-sections.image-none) .product-child{height:calc(var(--spacing,.25rem)*8);width:calc(var(--spacing,.25rem)*8)}:is(atomic-product-section-children.with-sections.display-grid.image-large,atomic-product-section-children.with-sections.display-grid.image-small) .product-child{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){:is(atomic-product-section-children.with-sections.display-grid.image-large,atomic-product-section-children.with-sections.display-grid.image-small) .product-child{height:auto}}:is(atomic-product-section-children.with-sections.display-grid.image-large,atomic-product-section-children.with-sections.display-grid.image-small) .product-child{width:16.6667%}@media not all and (min-width:1024px){atomic-product-section-children.with-sections.display-grid.image-small .product-child{max-width:calc(var(--spacing,.25rem)*19)}}@media (min-width:1024px){:is(atomic-product-section-children.with-sections.display-list.image-large.density-comfortable,atomic-product-section-children.with-sections.display-list.image-large.density-normal) .product-child{height:calc(var(--spacing,.25rem)*27);width:calc(var(--spacing,.25rem)*27)}:is(atomic-product-section-children.with-sections.display-list.image-small,atomic-product-section-children.with-sections.display-list.image-large.density-compact) .product-child{height:calc(var(--spacing,.25rem)*8);width:calc(var(--spacing,.25rem)*8)}}@media not all and (min-width:1024px){atomic-product-section-children.with-sections.display-list.image-large .product-child{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){atomic-product-section-children.with-sections.display-list.image-large .product-child{height:auto}}atomic-product-section-children.with-sections.display-list.image-large .product-child{width:16.6667%}atomic-product-section-children.with-sections.display-list.image-small .product-child{height:calc(var(--spacing,.25rem)*8);width:calc(var(--spacing,.25rem)*8)}}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}`) {
|
|
20242
|
+
let AtomicProductSectionChildren$1 = class AtomicProductSectionChildren extends ItemSectionMixin(lit.LitElement, lit.css`/*! tailwindcss v4.3.2 | MIT License | https://tailwindcss.com */@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,::backdrop,:after,:before{--tw-border-style:solid}}}atomic-product-section-children.with-sections{grid-area:children}@media (min-width:1024px){atomic-product-section-children.with-sections.display-list atomic-insight-result-children::part(children-root),atomic-product-section-children.with-sections.display-list atomic-result-children::part(children-root){border-color:var(--atomic-neutral);border-radius:16px;border-style:var(--tw-border-style);border-width:1px}:is(atomic-product-section-children.with-sections.display-list.density-comfortable atomic-result-children,atomic-product-section-children.with-sections.display-list.density-comfortable atomic-insight-result-children)::part(children-root){border-color:var(--atomic-neutral);border-radius:16px;border-style:var(--tw-border-style);border-width:1px;margin-top:1.25rem;padding:1.75rem}:is(atomic-product-section-children.with-sections.display-list.density-comfortable atomic-result-children,atomic-product-section-children.with-sections.display-list.density-comfortable atomic-insight-result-children)::part(show-hide-button){margin-bottom:1.25rem;margin-top:1.25rem}atomic-product-section-children.with-sections.display-list.density-comfortable .placeholder,atomic-product-section-children.with-sections.display-list.density-comfortable.child-result:not(.last-child){margin-bottom:1.75rem}atomic-product-section-children.with-sections.display-list.density-normal{margin-top:1rem}:is(atomic-product-section-children.with-sections.display-list.density-normal atomic-result-children,atomic-product-section-children.with-sections.display-list.density-normal atomic-insight-result-children)::part(children-root){border-color:var(--atomic-neutral);border-radius:16px;border-style:var(--tw-border-style);border-width:1px;margin-top:.875rem;padding:1.5rem}:is(atomic-product-section-children.with-sections.display-list.density-normal atomic-result-children,atomic-product-section-children.with-sections.display-list.density-normal atomic-insight-result-children)::part(show-hide-button){margin-bottom:.875rem;margin-top:.875rem}atomic-product-section-children.with-sections.display-list.density-normal .placeholder,atomic-product-section-children.with-sections.display-list.density-normal.child-result:not(.last-child){margin-bottom:1.5rem}atomic-product-section-children.with-sections.display-list.density-compact{margin-top:.75rem}:is(atomic-product-section-children.with-sections.display-list.density-compact atomic-result-children,atomic-product-section-children.with-sections.display-list.density-compact atomic-insight-result-children)::part(children-root){border-color:var(--atomic-neutral);border-radius:16px;border-style:var(--tw-border-style);border-width:1px;margin-top:.475rem;padding:1rem}:is(atomic-product-section-children.with-sections.display-list.density-compact atomic-result-children,atomic-product-section-children.with-sections.display-list.density-compact atomic-insight-result-children)::part(show-hide-button){margin-bottom:.475rem;margin-top:.475rem}atomic-product-section-children.with-sections.display-list.density-compact .placeholder,atomic-product-section-children.with-sections.display-list.density-compact.child-result:not(.last-child){margin-bottom:1rem}}@media not all and (min-width:1024px){atomic-product-section-children.with-sections.display-grid.image-large atomic-insight-result-children::part(children-root),atomic-product-section-children.with-sections.display-grid.image-large atomic-result-children::part(children-root),atomic-product-section-children.with-sections.display-list atomic-insight-result-children::part(children-root),atomic-product-section-children.with-sections.display-list atomic-result-children::part(children-root){border-top:1px var(--tw-border-style) var(--atomic-neutral)}:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-comfortable{margin-top:1.25rem}:is(:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-comfortable atomic-result-children,:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-comfortable atomic-insight-result-children)::part(children-root){margin-inline:calc(var(--spacing,.25rem)*-4);margin-top:calc(var(--spacing,.25rem)*4);padding-top:1.75rem;padding-inline:calc(var(--spacing,.25rem)*4)}:is(:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-comfortable atomic-result-children,:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-comfortable atomic-insight-result-children)::part(show-hide-button){margin-bottom:1.25rem;margin-top:1.25rem}:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-comfortable .placeholder,:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-comfortable.child-result:not(.last-child){margin-bottom:1.75rem}:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-normal{margin-top:1rem}:is(:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-normal atomic-result-children,:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-normal atomic-insight-result-children)::part(children-root){margin-inline:calc(var(--spacing,.25rem)*-4);margin-top:calc(var(--spacing,.25rem)*4);padding-top:1.5rem;padding-inline:calc(var(--spacing,.25rem)*4)}:is(:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-normal atomic-result-children,:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-normal atomic-insight-result-children)::part(show-hide-button){margin-bottom:.875rem;margin-top:.875rem}:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-normal .placeholder,:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-normal.child-result:not(.last-child){margin-bottom:1.5rem}:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-compact{margin-top:.75rem}:is(:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-compact atomic-result-children,:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-compact atomic-insight-result-children)::part(children-root){margin-inline:calc(var(--spacing,.25rem)*-4);margin-top:calc(var(--spacing,.25rem)*4);padding-top:1rem;padding-inline:calc(var(--spacing,.25rem)*4)}:is(:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-compact atomic-result-children,:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-compact atomic-insight-result-children)::part(show-hide-button){margin-bottom:.475rem;margin-top:.475rem}:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-compact .placeholder,:is(atomic-product-section-children.with-sections.display-grid.image-small,atomic-product-section-children.with-sections.display-grid.image-icon,atomic-product-section-children.with-sections.display-grid.image-none).density-compact.child-result:not(.last-child){margin-bottom:1rem}}atomic-product-section-children.with-sections.display-table atomic-insight-result-children::part(children-root),atomic-product-section-children.with-sections.display-table atomic-result-children::part(children-root){border-color:var(--atomic-neutral);border-radius:16px;border-style:var(--tw-border-style);border-width:1px}:is(atomic-product-section-children.with-sections.display-table.density-comfortable atomic-result-children,atomic-product-section-children.with-sections.display-table.density-comfortable atomic-insight-result-children)::part(children-root){border-color:var(--atomic-neutral);border-radius:16px;border-style:var(--tw-border-style);border-width:1px;margin-top:1.25rem;padding:1.75rem}:is(atomic-product-section-children.with-sections.display-table.density-comfortable atomic-result-children,atomic-product-section-children.with-sections.display-table.density-comfortable atomic-insight-result-children)::part(show-hide-button){margin-bottom:1.25rem;margin-top:1.25rem}atomic-product-section-children.with-sections.display-table.density-comfortable .placeholder,atomic-product-section-children.with-sections.display-table.density-comfortable.child-result:not(.last-child){margin-bottom:1.75rem}atomic-product-section-children.with-sections.display-table.density-normal{margin-top:1rem}:is(atomic-product-section-children.with-sections.display-table.density-normal atomic-result-children,atomic-product-section-children.with-sections.display-table.density-normal atomic-insight-result-children)::part(children-root){border-color:var(--atomic-neutral);border-radius:16px;border-style:var(--tw-border-style);border-width:1px;margin-top:.875rem;padding:1.5rem}:is(atomic-product-section-children.with-sections.display-table.density-normal atomic-result-children,atomic-product-section-children.with-sections.display-table.density-normal atomic-insight-result-children)::part(show-hide-button){margin-bottom:.875rem;margin-top:.875rem}atomic-product-section-children.with-sections.display-table.density-normal .placeholder,atomic-product-section-children.with-sections.display-table.density-normal.child-result:not(.last-child){margin-bottom:1.5rem}atomic-product-section-children.with-sections.display-table.density-compact{margin-top:.75rem}:is(atomic-product-section-children.with-sections.display-table.density-compact atomic-result-children,atomic-product-section-children.with-sections.display-table.density-compact atomic-insight-result-children)::part(children-root){border-color:var(--atomic-neutral);border-radius:16px;border-style:var(--tw-border-style);border-width:1px;margin-top:.475rem;padding:1rem}:is(atomic-product-section-children.with-sections.display-table.density-compact atomic-result-children,atomic-product-section-children.with-sections.display-table.density-compact atomic-insight-result-children)::part(show-hide-button){margin-bottom:.475rem;margin-top:.475rem}atomic-product-section-children.with-sections.display-table.density-compact .placeholder,atomic-product-section-children.with-sections.display-table.density-compact.child-result:not(.last-child){margin-bottom:1rem}:is(atomic-product-section-children.with-sections.image-icon,atomic-product-section-children.with-sections.image-none) .product-child{height:calc(var(--spacing,.25rem)*8);width:calc(var(--spacing,.25rem)*8)}:is(atomic-product-section-children.with-sections.display-grid.image-large,atomic-product-section-children.with-sections.display-grid.image-small) .product-child{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){:is(atomic-product-section-children.with-sections.display-grid.image-large,atomic-product-section-children.with-sections.display-grid.image-small) .product-child{height:auto}}:is(atomic-product-section-children.with-sections.display-grid.image-large,atomic-product-section-children.with-sections.display-grid.image-small) .product-child{width:16.6667%}@media not all and (min-width:1024px){atomic-product-section-children.with-sections.display-grid.image-small .product-child{max-width:calc(var(--spacing,.25rem)*19)}}@media (min-width:1024px){:is(atomic-product-section-children.with-sections.display-list.image-large.density-comfortable,atomic-product-section-children.with-sections.display-list.image-large.density-normal) .product-child{height:calc(var(--spacing,.25rem)*27);width:calc(var(--spacing,.25rem)*27)}:is(atomic-product-section-children.with-sections.display-list.image-small,atomic-product-section-children.with-sections.display-list.image-large.density-compact) .product-child{height:calc(var(--spacing,.25rem)*8);width:calc(var(--spacing,.25rem)*8)}}@media not all and (min-width:1024px){atomic-product-section-children.with-sections.display-list.image-large .product-child{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){atomic-product-section-children.with-sections.display-list.image-large .product-child{height:auto}}atomic-product-section-children.with-sections.display-list.image-large .product-child{width:16.6667%}atomic-product-section-children.with-sections.display-list.image-small .product-child{height:calc(var(--spacing,.25rem)*8);width:calc(var(--spacing,.25rem)*8)}}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}`) {
|
|
19537
20243
|
};
|
|
19538
20244
|
AtomicProductSectionChildren$1 = _ts_decorate$a([
|
|
19539
20245
|
decorators_js.customElement('atomic-product-section-children')
|
|
@@ -19545,7 +20251,7 @@ function _ts_decorate$9(decorators, target, key, desc) {
|
|
|
19545
20251
|
else for(var i = decorators.length - 1; i >= 0; i--)if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
19546
20252
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
19547
20253
|
}
|
|
19548
|
-
let AtomicProductSectionDescription$1 = class AtomicProductSectionDescription extends ItemSectionMixin(lit.LitElement, lit.css`/*! tailwindcss v4.3.
|
|
20254
|
+
let AtomicProductSectionDescription$1 = class AtomicProductSectionDescription extends ItemSectionMixin(lit.LitElement, lit.css`/*! tailwindcss v4.3.2 | MIT License | https://tailwindcss.com */atomic-product-section-description.with-sections{color:var(--atomic-neutral-dark);-webkit-line-clamp:2;text-overflow:ellipsis;-webkit-box-orient:vertical;display:-webkit-box;grid-area:excerpt;overflow:hidden}@media (min-width:1024px){atomic-product-section-description.with-sections.density-comfortable{--font-size:var(--atomic-text-lg);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:3;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}atomic-product-section-description.with-sections.density-compact{-webkit-line-clamp:1;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}atomic-product-section-description.with-sections.display-list.density-comfortable{margin-top:1.75rem;max-height:4.5rem}atomic-product-section-description.with-sections.display-list.density-normal{margin-top:1.25rem;max-height:2.5rem}atomic-product-section-description.with-sections.display-list.density-compact{margin-top:1rem;max-height:1.25rem}atomic-product-section-description.with-sections.display-grid.density-comfortable{margin-top:2.25rem}atomic-product-section-description.with-sections.display-grid.density-normal{margin-top:1.75rem}atomic-product-section-description.with-sections.display-grid.density-compact{margin-top:1.25rem}}@media not all and (min-width:1024px){atomic-product-section-description.with-sections.display-list.density-comfortable,atomic-product-section-description.with-sections.display-list.density-normal{max-height:2.5rem}atomic-product-section-description.with-sections.display-list.density-comfortable{margin-top:1.25rem}atomic-product-section-description.with-sections.display-list.density-normal{margin-top:1rem}atomic-product-section-description.with-sections.display-grid.image-large.density-comfortable,atomic-product-section-description.with-sections.display-grid.image-large.density-normal{max-height:2.5rem}atomic-product-section-description.with-sections.display-grid.image-large.density-comfortable{margin-top:1.25rem}atomic-product-section-description.with-sections.display-grid.image-large.density-normal{margin-top:1rem}:is(atomic-product-section-description.with-sections.display-grid.image-small,atomic-product-section-description.with-sections.display-grid.image-icon,atomic-product-section-description.with-sections.display-grid.image-none).density-comfortable{margin-top:1.25rem}:is(atomic-product-section-description.with-sections.display-grid.image-small,atomic-product-section-description.with-sections.display-grid.image-icon,atomic-product-section-description.with-sections.display-grid.image-none).density-normal{margin-top:1rem}:is(atomic-product-section-description.with-sections.display-grid.image-small,atomic-product-section-description.with-sections.display-grid.image-icon,atomic-product-section-description.with-sections.display-grid.image-none).density-compact{-webkit-line-clamp:1;-webkit-box-orient:vertical;display:-webkit-box;margin-top:.75rem;overflow:hidden}}atomic-product-section-description.with-sections.display-table.density-comfortable{margin-top:1.75rem;max-height:4.5rem}atomic-product-section-description.with-sections.display-table.density-normal{margin-top:1.25rem;max-height:2.5rem}atomic-product-section-description.with-sections.display-table.density-compact{margin-top:1rem;max-height:1.25rem}atomic-product-section-description.with-sections.display-grid.density-comfortable{margin-top:1.25rem}atomic-product-section-description.with-sections.display-grid.density-normal{margin-top:.75rem}atomic-product-section-description.with-sections.display-grid.density-compact{margin-top:.25rem}`) {
|
|
19549
20255
|
};
|
|
19550
20256
|
AtomicProductSectionDescription$1 = _ts_decorate$9([
|
|
19551
20257
|
decorators_js.customElement("atomic-product-section-description")
|
|
@@ -19557,7 +20263,7 @@ function _ts_decorate$8(decorators, target, key, desc) {
|
|
|
19557
20263
|
else for(var i = decorators.length - 1; i >= 0; i--)if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
19558
20264
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
19559
20265
|
}
|
|
19560
|
-
let AtomicProductSectionEmphasized$1 = class AtomicProductSectionEmphasized extends ItemSectionMixin(lit.LitElement, lit.css`/*! tailwindcss v4.3.
|
|
20266
|
+
let AtomicProductSectionEmphasized$1 = class AtomicProductSectionEmphasized extends ItemSectionMixin(lit.LitElement, lit.css`/*! tailwindcss v4.3.2 | MIT License | https://tailwindcss.com */atomic-product-section-emphasized.with-sections{overflow:hidden;text-overflow:ellipsis}atomic-product-section-emphasized{--font-size:var(--atomic-text-2xl);font-size:var(--font-size);font-weight:500;--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height);margin-top:.5rem}atomic-product-section-emphasized.with-sections{grid-area:emphasized}`) {
|
|
19561
20267
|
};
|
|
19562
20268
|
AtomicProductSectionEmphasized$1 = _ts_decorate$8([
|
|
19563
20269
|
decorators_js.customElement('atomic-product-section-emphasized')
|
|
@@ -19569,7 +20275,7 @@ function _ts_decorate$7(decorators, target, key, desc) {
|
|
|
19569
20275
|
else for(var i = decorators.length - 1; i >= 0; i--)if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
19570
20276
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
19571
20277
|
}
|
|
19572
|
-
let AtomicProductSectionMetadata$1 = class AtomicProductSectionMetadata extends ItemSectionMixin(lit.LitElement, lit.css`/*! tailwindcss v4.3.
|
|
20278
|
+
let AtomicProductSectionMetadata$1 = class AtomicProductSectionMetadata extends ItemSectionMixin(lit.LitElement, lit.css`/*! tailwindcss v4.3.2 | MIT License | https://tailwindcss.com */atomic-product-section-metadata.with-sections{overflow:hidden;text-overflow:ellipsis}atomic-product-section-metadata{--font-size:var(--atomic-text-sm);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}atomic-product-section-metadata.with-sections{grid-area:title-metadata;margin-top:.475rem}`) {
|
|
19573
20279
|
};
|
|
19574
20280
|
AtomicProductSectionMetadata$1 = _ts_decorate$7([
|
|
19575
20281
|
decorators_js.customElement('atomic-product-section-metadata')
|
|
@@ -19581,7 +20287,7 @@ function _ts_decorate$6(decorators, target, key, desc) {
|
|
|
19581
20287
|
else for(var i = decorators.length - 1; i >= 0; i--)if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
19582
20288
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
19583
20289
|
}
|
|
19584
|
-
let AtomicProductSectionName$1 = class AtomicProductSectionName extends ItemSectionMixin(lit.LitElement, lit.css`/*! tailwindcss v4.3.
|
|
20290
|
+
let AtomicProductSectionName$1 = class AtomicProductSectionName extends ItemSectionMixin(lit.LitElement, lit.css`/*! tailwindcss v4.3.2 | MIT License | https://tailwindcss.com */atomic-product-section-name.with-sections{color:var(--atomic-on-background);text-overflow:ellipsis;--font-size:var(--atomic-text-xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));grid-area:title;line-height:var(--line-height);overflow:hidden}atomic-product-section-name.with-sections.density-comfortable{--font-size:var(--atomic-text-2xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}@media (min-width:1024px){atomic-product-section-name.with-sections.display-grid{-webkit-line-clamp:2;word-break:break-word;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}}@media not all and (min-width:1024px){atomic-product-section-name.with-sections.display-grid.image-large,atomic-product-section-name.with-sections.display-list{--font-size:var(--atomic-text-xl);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));line-height:var(--line-height)}atomic-product-section-name.with-sections.display-grid.image-icon,atomic-product-section-name.with-sections.display-grid.image-none,atomic-product-section-name.with-sections.display-grid.image-small{--font-size:var(--atomic-text-lg);font-size:var(--font-size);--line-height:calc(var(--font-size)*var(--atomic-line-height-ratio));-webkit-line-clamp:2;line-height:var(--line-height);-webkit-box-orient:vertical;display:-webkit-box;max-height:3rem;overflow:hidden}}atomic-product-section-name .with-sections.display-grid{-webkit-line-clamp:2;min-height:calc(var(--line-height)*2);-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}`) {
|
|
19585
20291
|
};
|
|
19586
20292
|
AtomicProductSectionName$1 = _ts_decorate$6([
|
|
19587
20293
|
decorators_js.customElement('atomic-product-section-name')
|
|
@@ -19596,7 +20302,7 @@ function _ts_decorate$5(decorators, target, key, desc) {
|
|
|
19596
20302
|
function _ts_metadata$5(k, v) {
|
|
19597
20303
|
if ("object" == typeof Reflect && "function" == typeof Reflect.metadata) return Reflect.metadata(k, v);
|
|
19598
20304
|
}
|
|
19599
|
-
let AtomicProductSectionVisual$1 = class AtomicProductSectionVisual extends ItemSectionMixin(lit.LitElement, lit.css`/*! tailwindcss v4.3.
|
|
20305
|
+
let AtomicProductSectionVisual$1 = class AtomicProductSectionVisual extends ItemSectionMixin(lit.LitElement, lit.css`/*! tailwindcss v4.3.2 | MIT License | https://tailwindcss.com */atomic-product-section-visual.with-sections{grid-area:visual;overflow:hidden;text-overflow:ellipsis}atomic-product-section-visual.with-sections.image-icon{border-radius:var(--atomic-border-radius);height:2rem;width:2rem}atomic-product-section-visual.with-sections.image-none{display:none}@media (min-width:1024px){atomic-product-section-visual.with-sections.display-list{margin-right:1rem}atomic-product-section-visual.with-sections.display-list.density-comfortable{margin-right:1.5rem}atomic-product-section-visual.with-sections.display-list.image-large.density-compact{height:10rem;width:10rem}atomic-product-section-visual.with-sections.display-list.image-large.density-comfortable,atomic-product-section-visual.with-sections.display-list.image-large.density-normal{height:20.375rem;width:20.375rem}atomic-product-section-visual.with-sections.display-list.image-small{height:10rem;width:10rem}atomic-product-section-visual.with-sections.display-grid{margin-bottom:.5rem}:is(atomic-product-section-visual.with-sections.display-grid.image-large,atomic-product-section-visual.with-sections.display-grid.image-small).density-comfortable{margin:0 auto 2rem}:is(atomic-product-section-visual.with-sections.display-grid.image-large,atomic-product-section-visual.with-sections.display-grid.image-small).density-normal{margin:0 auto 1.5rem}:is(atomic-product-section-visual.with-sections.display-grid.image-large,atomic-product-section-visual.with-sections.display-grid.image-small).density-compact{margin:0 auto 1rem}atomic-product-section-visual.with-sections.display-grid.image-large,atomic-product-section-visual.with-sections.display-grid.image-small{width:100%}atomic-product-section-visual.with-sections.display-grid.image-large{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){atomic-product-section-visual.with-sections.display-grid.image-large{height:19.75rem}}atomic-product-section-visual.with-sections.display-grid.image-small{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){atomic-product-section-visual.with-sections.display-grid.image-small{height:14rem}}}@media not all and (min-width:1024px){atomic-product-section-visual.with-sections.display-list{margin-right:1rem}atomic-product-section-visual.with-sections.display-list.image-large{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){atomic-product-section-visual.with-sections.display-list.image-large{height:7.25rem}}atomic-product-section-visual.with-sections.display-list.image-large{margin-bottom:1rem;margin-right:0;width:100%}atomic-product-section-visual.with-sections.display-list.image-small{height:24vw;margin-bottom:1rem;width:24vw}atomic-product-section-visual.with-sections.display-list.image-icon{margin-bottom:0}atomic-product-section-visual.with-sections.display-grid.image-large{margin-right:1rem}atomic-product-section-visual.with-sections.display-grid.image-large.image-large{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){atomic-product-section-visual.with-sections.display-grid.image-large.image-large{height:7.25rem}}atomic-product-section-visual.with-sections.display-grid.image-large.image-large{margin-bottom:1rem;margin-right:0;width:100%}atomic-product-section-visual.with-sections.display-grid.image-large.image-small{height:24vw;margin-bottom:1rem;width:24vw}atomic-product-section-visual.with-sections.display-grid.image-large.image-icon{margin-bottom:0}:is(:is(atomic-product-section-visual.with-sections.display-grid.image-small,atomic-product-section-visual.with-sections.display-grid.image-icon,atomic-product-section-visual.with-sections.display-grid.image-none).image-large,:is(atomic-product-section-visual.with-sections.display-grid.image-small,atomic-product-section-visual.with-sections.display-grid.image-icon,atomic-product-section-visual.with-sections.display-grid.image-none).image-small).density-comfortable{margin-bottom:1rem}:is(:is(atomic-product-section-visual.with-sections.display-grid.image-small,atomic-product-section-visual.with-sections.display-grid.image-icon,atomic-product-section-visual.with-sections.display-grid.image-none).image-large,:is(atomic-product-section-visual.with-sections.display-grid.image-small,atomic-product-section-visual.with-sections.display-grid.image-icon,atomic-product-section-visual.with-sections.display-grid.image-none).image-small).density-normal{margin-bottom:.75rem}:is(:is(atomic-product-section-visual.with-sections.display-grid.image-small,atomic-product-section-visual.with-sections.display-grid.image-icon,atomic-product-section-visual.with-sections.display-grid.image-none).image-large,:is(atomic-product-section-visual.with-sections.display-grid.image-small,atomic-product-section-visual.with-sections.display-grid.image-icon,atomic-product-section-visual.with-sections.display-grid.image-none).image-small).density-compact{margin-bottom:.5rem}:is(atomic-product-section-visual.with-sections.display-grid.image-small,atomic-product-section-visual.with-sections.display-grid.image-icon,atomic-product-section-visual.with-sections.display-grid.image-none).image-large,:is(atomic-product-section-visual.with-sections.display-grid.image-small,atomic-product-section-visual.with-sections.display-grid.image-icon,atomic-product-section-visual.with-sections.display-grid.image-none).image-small{width:100%}:is(atomic-product-section-visual.with-sections.display-grid.image-small,atomic-product-section-visual.with-sections.display-grid.image-icon,atomic-product-section-visual.with-sections.display-grid.image-none).image-small{aspect-ratio:1;height:auto}@supports not (aspect-ratio:1/1){:is(atomic-product-section-visual.with-sections.display-grid.image-small,atomic-product-section-visual.with-sections.display-grid.image-icon,atomic-product-section-visual.with-sections.display-grid.image-none).image-small{height:9rem}}:is(atomic-product-section-visual.with-sections.display-grid.image-small,atomic-product-section-visual.with-sections.display-grid.image-icon,atomic-product-section-visual.with-sections.display-grid.image-none).image-small{height:10.25rem;width:10.25rem}}atomic-product-section-visual.with-sections.display-table{margin-right:1rem}atomic-product-section-visual.with-sections.display-table.density-comfortable{margin-right:1.5rem}atomic-product-section-visual.with-sections.display-table.image-large.density-compact{height:10rem;width:10rem}atomic-product-section-visual.with-sections.display-table.image-large.density-comfortable,atomic-product-section-visual.with-sections.display-table.image-large.density-normal{height:20.375rem;width:20.375rem}atomic-product-section-visual.with-sections.display-table.image-small{height:10rem;width:10rem}atomic-product-section-visual .with-sections.image-icon atomic-product-image::part(indicator),atomic-product-section-visual .with-sections.image-icon atomic-product-image::part(next-button),atomic-product-section-visual .with-sections.image-icon atomic-product-image::part(previous-button){display:none}`) {
|
|
19600
20306
|
};
|
|
19601
20307
|
_ts_decorate$5([
|
|
19602
20308
|
decorators_js.property({
|
|
@@ -20147,7 +20853,7 @@ AtomicGeneratedAnswerFeedbackModal$1.options = [
|
|
|
20147
20853
|
correspondingAnswer: 'readable'
|
|
20148
20854
|
}
|
|
20149
20855
|
];
|
|
20150
|
-
AtomicGeneratedAnswerFeedbackModal$1.styles = lit.css`/*! tailwindcss v4.3.
|
|
20856
|
+
AtomicGeneratedAnswerFeedbackModal$1.styles = lit.css`/*! tailwindcss v4.3.2 | MIT License | https://tailwindcss.com */[part=generated-answer-feedback-modal]::part(container){min-width:calc(var(--spacing,.25rem)*170)}[part=generated-answer-feedback-modal]::part(body),[part=generated-answer-feedback-modal]::part(footer),[part=generated-answer-feedback-modal]::part(header){max-width:calc(var(--spacing,.25rem)*170)}@media not all and (min-width:1024px){[part=generated-answer-feedback-modal]::part(container){min-width:100%;width:auto}[part=generated-answer-feedback-modal]::part(body),[part=generated-answer-feedback-modal]::part(footer),[part=generated-answer-feedback-modal]::part(header){max-width:100%}[part=generated-answer-feedback-modal] [part=buttons] .required-label{font-size:var(--atomic-text-sm);line-height:var(--tw-leading,var(--text-sm--line-height,1.42857))}[part=generated-answer-feedback-modal] [part=form] .answer-evaluation{display:block}[part=generated-answer-feedback-modal] [part=form] .options{margin-top:calc(var(--spacing,.25rem)*2)}[part=generated-answer-feedback-modal] [part=modal-header] .hide{display:none}}[part=form] .active{background-color:var(--atomic-primary-background);border-color:var(--atomic-primary-light);color:var(--atomic-primary-light)}[part=form] .text-error-red{color:var(--atomic-inline-code)}`;
|
|
20151
20857
|
_ts_decorate$3([
|
|
20152
20858
|
decorators_js.property({
|
|
20153
20859
|
type: Boolean,
|